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
59338016fd6d55021365620a4e595bdf43a8cc28
95809243d68745337017f5b0bde1cc6862a47407
/src/300.cpp
96b9ad850d0eacff24546f06986fd5823418ff85
[]
no_license
liuyaqiao/Algorithms
403ea768f5cf39583e86b86baca84c05c0e34f65
14193efc60bd3ec9cef48e777fdba022ce190285
refs/heads/master
2020-04-07T11:52:14.974453
2019-03-22T17:04:32
2019-03-22T17:04:32
158,344,870
0
0
null
null
null
null
UTF-8
C++
false
false
912
cpp
class Solution { public: int lengthOfLIS(vector<int>& nums) { //corner case if (nums.size() == 0) { return 0; } if (nums.size() == 1) { return 1; } //init vector<int> dp(nums.size()); for (int i = 0; i < nums.size(); i++) { dp[i] = 1; } for (int i = 0; i < nums.size(); i++) { for (int j = 0; j < i; j++) { if (nums[i] > nums[j]) { dp[i] = max(dp[i], dp[j] + 1); } } } int res = 0; for (int i = 0; i < nums.size(); i++) { if (res < dp[i]) { res = dp[i]; } } return res; } int max(int a, int b) { if (a > b) { return a; } else { return b; } } };
[ "liu.yaqi@husky.neu.edu" ]
liu.yaqi@husky.neu.edu
a67440cfab94044c990e190af36ad02c082c4243
67b31056866e6cfa3e9631f3bd7552da4d2c7beb
/code-arduino/code-arduino.ino
6b9234b47f9b130167f88d8599ba05ddbc967473
[ "MIT" ]
permissive
Matheus-Pontes/Serial-Tkinter-Pic-Arduino
d1b69e35015ded7deb8b0cc358ad7726c19295d9
4ea6fd6a5a332bc08dc510bc3721d5cf523cb5a9
refs/heads/master
2023-08-11T12:23:53.479858
2021-10-12T21:46:19
2021-10-12T21:46:19
285,647,984
1
0
null
null
null
null
UTF-8
C++
false
false
1,734
ino
/* =========================================== * Algoritmo que laz a leitura do LM35 * e converte em kelvin(K) e fahrenheit(°F) * e tambem um teste de leds * * Integration with Python Interface (tkinter) * =========================================== */ const int sensor = A0; // Pino AN0 para leitura do sensor int value_sensor = 0; // variable to store the value sensor int led = 8; // Pino onde o led está D8 char serial_rd; // Variavel que recebe o que foi enviado pela interface void setup(){ Serial.begin(9600); // iniciando comunicação pinMode(led, OUTPUT); // Define o led como saída pinMode(sensor, INPUT); // Define sensor como entrada } void loop() { if(Serial.available()) { serial_rd = Serial.read(); // Recebe o que foi enviado pela interface if(serial_rd == '1'){ digitalWrite(led, HIGH); // If(Se) receber 1 liga o led } if(serial_rd == '2'){ digitalWrite(led, LOW); // If(Se) receber 2 desliga o led } value_sensor = analogRead(sensor); // Variavel que armazena o valor do sensor 0 - 1023 // Convertendo os valores de (bits) para ser como medidas de temperaturas value_sensor = value_sensor * 500; // o sensor está ligado a 5 volts e ele envia 0.01 volt por grau value_sensor = value_sensor / 1023; // e dividindo por 1023 conseguimos o valor real de leitura em °C Serial.println(value_sensor); // Escreve/envia o valor pela serial delay(1000); } }
[ "pontesm10@outlook.com" ]
pontesm10@outlook.com
be27918b1c7fe577525e5a873a819aa2bb311f0a
9c937188dd41d9ede155bc6e0e7c1d5c8c825b09
/CSSO-Tema6/CSSO-Tema6/CSSO-Tema6.cpp
722c7e4965607b84921392bb0694b6c1bac5f417
[]
no_license
DorianPopa/CSSO-FII
47588d8a0d59b0262b05e26844c6e7fb71f52282
b9a156bc748539891c3818dba31c7c8e80c388ab
refs/heads/master
2023-08-23T12:07:52.333421
2021-10-21T14:11:27
2021-10-21T14:11:27
219,007,995
0
0
null
null
null
null
UTF-8
C++
false
false
4,502
cpp
// CSSO-Tema6.cpp : This file contains the 'main' function. Program execution begins and ends there. // #define _WINSOCK_DEPRECATED_NO_WARNINGS #include <windows.h> #include <stdio.h> #include "CommandHandler.h" #pragma comment(lib, "Ws2_32.lib") int recvfromTimeOutUDP(SOCKET socket, long sec, long usec) { // Setup timeval variable struct timeval timeout; struct fd_set fds; timeout.tv_sec = sec; timeout.tv_usec = usec; // Setup fd_set structure FD_ZERO(&fds); FD_SET(socket, &fds); // Return value: // -1: error occurred // 0: timed out // > 0: data ready to be read return select(0, &fds, 0, 0, &timeout); } int main() { WSADATA wsaData; SOCKET ReceivingSocket; SOCKADDR_IN ReceiverAddr; int Port = 5150; char * ReceiveBuf; int BufLength = 1024; SOCKADDR_IN SenderAddr; int SenderAddrSize = sizeof(SenderAddr); int ByteReceived = 5, SelectTiming, ErrorCode; char ch = 'Y'; ReceiveBuf = (char*)malloc(BufLength * sizeof(char)); CommandHandler* cmdExecuter = new CommandHandler(); // Init Winsock if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0) { printf("Server: WSAStartup failed with error %ld\n", WSAGetLastError()); return -1; } else printf("Server: The Winsock DLL status is %s.\n", wsaData.szSystemStatus); // Create a new socket ReceivingSocket = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); if (ReceivingSocket == INVALID_SOCKET) { printf("Server: Error at socket() : %ld\n", WSAGetLastError()); WSACleanup(); return -1; } else printf("Server: socket() is OK!\n"); // Set up a SOCKADDR_IN structure ReceiverAddr.sin_family = AF_INET; // The IPv4 family ReceiverAddr.sin_port = htons(Port); ReceiverAddr.sin_addr.s_addr = htonl(INADDR_ANY); // Recieve from any address // Bind the address to the socket if (bind(ReceivingSocket, (SOCKADDR*)&ReceiverAddr, sizeof(ReceiverAddr)) == SOCKET_ERROR) { printf("Server: bind() failed! Error: %ld.\n", WSAGetLastError()); closesocket(ReceivingSocket); WSACleanup(); return -1; } else printf("Server: bind() is OK!\n"); // Print final server information getsockname(ReceivingSocket, (SOCKADDR*)&ReceiverAddr, (int*)sizeof(ReceiverAddr)); printf("Server: Receiving IP(s) used: %s\n", inet_ntoa(ReceiverAddr.sin_addr)); printf("Server: Receiving port used: %d\n", htons(ReceiverAddr.sin_port)); printf("Server: I\'m ready to receive data...\n"); SelectTiming = recvfromTimeOutUDP(ReceivingSocket, 20, 0); switch (SelectTiming) { case 0: // Timed out, do whatever you want to handle this situation printf("Server : Timeout while waiting for the client!...\n"); break; case -1: // Error occurred, maybe we should display an error message? printf("Server: Some error encountered with code number: %ld\n", WSAGetLastError()); break; default: { while (1) { // Call recvfrom() to get it then display the received data... ByteReceived = recvfrom(ReceivingSocket, ReceiveBuf, BufLength, 0, (SOCKADDR*)&SenderAddr, &SenderAddrSize); if (ByteReceived > 0) { printf("Server: Total Bytes received: %d\n", ByteReceived); printf("Server: The data is:\n###################\n%s\n###################\n", ReceiveBuf); printf("Server: Executing command \n\n"); int commandResult = cmdExecuter->ExecuteCommand(ReceiveBuf); printf("Server: Command executed with result: %d\n", commandResult); } else if (ByteReceived <= 0) printf("Server: Connection closed with error code: %ld\n", WSAGetLastError()); else printf("Server: recvfrom() failed with error code: %d\n", WSAGetLastError()); // Some info on the sender side getpeername(ReceivingSocket, (SOCKADDR*)&SenderAddr, &SenderAddrSize); printf("Server: Sending IP used: %s\n", inet_ntoa(SenderAddr.sin_addr)); printf("Server: Sending port used: %d\n\n", htons(SenderAddr.sin_port)); } } } // When your application is finished receiving datagrams close the socket. printf("Server: Finished receiving.Closing the listening socket...\n"); if (closesocket(ReceivingSocket) != 0) printf("Server: closesocket() failed!Error code : %ld\n", WSAGetLastError()); else printf("Server: closesocket() is OK...\n"); // When your application is finished call WSACleanup. printf("Server: Cleaning up...\n"); if (WSACleanup() != 0) printf("Server: WSACleanup() failed!Error code : %ld\n", WSAGetLastError()); else printf("Server: WSACleanup() is OK\n"); return 0; }
[ "popa.dorian98@gmail.com" ]
popa.dorian98@gmail.com
de4eb67c8d33ac2dcabb38dbf8f5d60a75d2922c
a569fb03d0cb162983b1c22f3f907d5777dafdb0
/laba7/CAVL.cpp
fef6fc394302c58553e7d03202e6391df1280cc0
[]
no_license
moskovets/TiSD_all
a7a44ed636da3814b89d72f4dc57bf3dc30b3283
b89695497e444f5bc96a5cd5e6deadf035bce1ed
refs/heads/master
2021-05-04T06:52:04.488177
2016-12-13T15:50:02
2016-12-13T15:50:02
70,521,942
3
2
null
2016-11-01T16:55:20
2016-10-10T19:36:43
C++
UTF-8
C++
false
false
5,222
cpp
// // Created by moskov on 05.12.16. // #include "CAVL.h" template <typename T> void CAVL<T>::free_tree(AVL_Node<T> * &tmp) { if(tmp) { free_tree(tmp->left); free_tree(tmp->right); delete tmp; } } template <typename T> CAVL<T>::~CAVL() { free_tree(head); count_of_element = 0; head = NULL; } template <typename T> void CAVL<T>::Insert(T x) { AVL_Node<T> * tmp = new AVL_Node<T>(x); add_to_avl(head, tmp); } template <typename T> bool CAVL<T>::Remove(T x) { return delete_from_avl(head, x); } template <typename T> int CAVL<T>::height(AVL_Node<T> *t) { return t == NULL ? 0 : t->h; } template <typename T> int CAVL<T>::difference_of_h(AVL_Node<T> *t) { return height(t->right) - height(t->left); } template <typename T> int CAVL<T>::cnt_value(AVL_Node<T> * t) { return t == NULL ? 0 : t->cnt; } template <typename T> T CAVL<T>::key_value(AVL_Node<T> * t) { return t == NULL ? (0) : t->key;/////////что это?////////////////TODO } template <typename T> void CAVL<T>::right(AVL_Node<T> * &t) { AVL_Node<T>* tmp = t->left; int a, b, c; a = cnt_value(t->right); b = cnt_value(tmp->left); c = cnt_value(tmp->right); t->left = tmp->right; tmp->right = t; t->h = max(height(t->left), height(t->right)) + 1; t->cnt = a + c + 1; tmp->h = max(height(tmp->left), height(tmp->right)) + 1; //tmp->cnt = cnt_value(tmp->left) + cnt_value(tmp->right) + 1; tmp->cnt = a + b + c + 2; t = tmp; } /*AVL_Node<T>* right(AVL_Node<T>* p) // правый поворот вокруг p { AVL_Node<T>* q = p->left; p->left = q->right; q->right = p; p->h = max(height(p->left), height(p->right)) + 1; q->h = max(height(q->left), height(q->right)) + 1; return q; } AVL_Node<T>* left(AVL_Node<T>* q) // левый поворот вокруг q { AVL_Node<T>* p = q->right; q->right = p->left; p->left = q; q->h = max(height(q->left), height(q->right)) + 1; p->h = max(height(p->left), height(p->right)) + 1; return p; } */ template <typename T> void CAVL<T>::left(AVL_Node<T> * &t) { AVL_Node<T>* tmp = t->right; int a, b, c; a = cnt_value(t->left); b = cnt_value(tmp->left); c = cnt_value(tmp->right); t->right = tmp->left; tmp->left = t; t->h = max(height(t->left), height(t->right)) + 1; t->cnt = a + b + 1; tmp->h = max(height(tmp->left), height(tmp->right)) + 1; //tmp->cnt = cnt_value(tmp->left) + cnt_value(tmp->right) + 1; tmp->cnt = a + b + c + 2; t = tmp; } template <typename T> void CAVL<T>::balance(AVL_Node<T>* &t) // балансировка узла p { t->h = max(height(t->left), height(t->right)) + 1; t->cnt = cnt_value(t->left) + cnt_value(t->right) + 1; if(difference_of_h(t) == 2) { if(difference_of_h(t->right) < 0) right(t->right); return left(t); } if(difference_of_h(t) == (-2)) { if(difference_of_h(t->left) > 0) left(t->left); return right(t); } } template <typename T> int CAVL<T>::Memory() { //cout << count_of_element << endl; return count_of_element * sizeof(*head); } template <typename T> void CAVL<T>::add_to_avl(AVL_Node<T>* &t, AVL_Node<T>* tmp) { if(t == NULL) { t = tmp; count_of_element++; return; } if(t->key == tmp->key) { //cout << "ok"; t->key.count++; return; } if(t->key < tmp->key) { add_to_avl(t->right, tmp); } else { add_to_avl(t->left, tmp); } balance(t); t->cnt++; //cout << t->key << " " << t->cnt << " " << cnt_value(t->left) << endl; //AVL_Node<T>* tl = t->left; //AVL_Node<T>* tr = t->right; //if(tl != NULL) { t->cnt += tl->cnt; } //if(tr != NULL) { t->cnt += tr->cnt; } //t->cnt = tl->cnt + tr->cnt; } template <typename T> AVL_Node<T>* CAVL<T>::findmin(AVL_Node<T>* t) { return t->left == NULL ? t : findmin(t->left); } template <typename T> AVL_Node<T>* CAVL<T>::removemin(AVL_Node<T>* t) { if( t->left == NULL) return t->right; t->left = removemin(t->left); balance(t); return t; } template <typename T> bool CAVL<T>::delete_from_avl(AVL_Node<T>* &t, T x) { if(t == NULL) { return false; } if(x < t->key) { delete_from_avl(t->left, x); } else if(x > t->key) { delete_from_avl(t->right, x); } else { if(--t->key.count == 0) { AVL_Node<T> *i = t->left; AVL_Node<T> *j = t->right; count_of_element--; delete t; t = NULL; if (j == NULL) { t = i; return true; } AVL_Node<T> *m = findmin(j); m->right = removemin(j); m->left = i; balance(m); t = m; } } t->cnt--; balance(t); return true; } template <typename T> bool CAVL<T>::Search(T x) { AVL_Node<T> *tmp = head; while(tmp) { if(tmp->key == x) { return true; } if(tmp->key < x) { tmp = tmp->left; } else { tmp = tmp->right; } } return false; }
[ "moskovets@yandex.ru" ]
moskovets@yandex.ru
9000a92d8ed2afcd995fed85b2e0c76cce36dbad
f9b962990b85bb47462a55caf31376f7e786f964
/GhostCore/play/pressure.cpp
93977d156295bf3633035a34352af1cc3ca5aa51
[]
no_license
nagisasaka/INSTRUMENTS-GHOST-PLAY
90f46d8a7551daf73a461b4cdd5082860967fda5
a2a0809f49c1410355c315380f4ca08f9b628f8e
refs/heads/master
2021-01-10T22:13:43.487509
2011-11-26T19:07:55
2011-11-26T19:07:55
2,857,225
2
0
null
null
null
null
SHIFT_JIS
C++
false
false
32,321
cpp
/* * Ghost Play - Autonomous Violin-Player Imitation Device * * Copyright (C) 2009-2012 Masato Fujino <fujino@fairydevices.jp> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "pressure.hpp" #include "../actuator/controller.hpp" #include "../calibration.hpp" #include "../vecmath.hpp" #include "baseGeometry.hpp" #include "../error.hpp" const double Pressure::MaxMM = 5.0;//最大押し込み幅[mm] Pressure::Pressure() { geometry = new BaseGeometry(); calibration = new Calibration(); calibration->Load(); } Pressure::~Pressure() { delete calibration; delete geometry; } /*! * \brief * [0,100]正規化表現を実際の押し込み幅に変換して返す.上位層では正規化表現を利用しているので,実値は,ベースジオメトリでの計算のみに使用. * * \param percent * [0,100]正規化表現.上位層で利用している. * * \returns * 実際の押し込み幅[mm] * */ double Pressure::ConvertToMM(double percent) { return (percent/100.)*MaxMM; } /*! * \brief * 圧力付加対象弦を指定する * * \param string * 弦番号[1,7] * * */ void Pressure::SetPlayerString(int _playerString) { //圧力付加対象弦 playerString = _playerString; } /*! * \brief * 圧力ベクタを指定する * * \param v * 圧力ベクタ系列 * */ void Pressure::SetPressureVector(QVector<double> p) { pressureVector = p; } /*! * \brief * 初期位置・終了位置を指定する * * \param _startString * 初期位置[1,3,5] * * \param _endString * 終了位置[1,3,5] * */ void Pressure::SetStringPair(int _startString, int _endString) { startString = _startString; endString = _endString; } /*! * \brief * 左側弦を演奏しながら左側に一段階移弦する(新汎用実装;ほぼ安定な演奏中移弦) * OK * * \param nb_string * 全位置[0,1,2,3,4,5,6] * * \remarks * 残余半径のステップ割は,着弦対象弦への残余半径減少スピードが遅すぎ,弓圧変化速度が速い場合に,ベースが逆に動く副作用がある.これは明らかに非効率. * 従って,最後の変曲点までは平行条件(もしくは二円接触条件)により平行付圧して,最後の変曲点以降で残余半径を一次で減少させる. * */ void Pressure::ToLeftSideWithIgen(QVector<double> &axis0, QVector<double> &axis1,int nb_string) { double pos0 = 0; double pos1 = 0; if(nb_string == 0){ //左側弦が存在しない Error::Critical(0, QObject::tr("[ PRESSURE ] Invalid nb_string: %1").arg(nb_string)); } if(nb_string % 2 == 0){ //// 単弦位置 //// //左側弦は両弦位置,演奏弦と移弦先が異なるので問題が難しい.最後の変曲点までは平行条件で平行付圧して,最後の変曲点以降で残余半径を一気に落とす //移弦先位置 int left_string = nb_string - 1; //弓の弾性変形の補正係数(最大押込み幅の調整によって変化する) //double reformCoef = 0.5; //移弦先位置では着弦(弓圧ゼロ),演奏弦は残余弓圧が存在する場合があるが,許容できない仕様(和音の片弦だけを強く弾くことはできない) //つまり,単弦位置から両弦位置へ演奏中移弦する場合は,残余弓圧がゼロであることが必須. if(pressureVector[pressureVector.size()-1] != 0){ Error::Critical(0, QObject::tr("[ PRESSURE ] 単弦位置から両弦位置への演奏中移弦では,残余弓圧はゼロでなければなりません.")); } //最後の変曲点を探す int lastLocalMaxIndex = 0; double maxValue = 0; for(int i=0;i<pressureVector.size()-1;i++){ if(pressureVector[i] < pressureVector[i+1]){ lastLocalMaxIndex = i+1; maxValue = pressureVector[i+1]; } if(maxValue == pressureVector[i]){ lastLocalMaxIndex = i; } } //平行移動条件で単弦単純与圧 for(int i=0;i<lastLocalMaxIndex;i++){ double deltaL = ConvertToMM(pressureVector[i]); geometry->deltaL(deltaL, pos0, pos1, nb_string); axis0.append(pos0); axis1.append(pos1); } //平行移動条件での単弦単純与圧終了時点での残余半径を求める double lastResidue = geometry->residualRadius2(pos0,pos1,left_string-1); double residueByStep = lastResidue / (double)(pressureVector.size()-(lastLocalMaxIndex+1)); //二円接触条件で与圧 int lineCounter = 0; for(int i=lastLocalMaxIndex; i<pressureVector.size();i++){ //共通接線条件下,相対的に左弦を演奏する //右側;オリジナル押込み double deltaL0 = ConvertToMM(pressureVector[i]); //左側; double deltaL1 = residueByStep*lineCounter - lastResidue; geometry->commonTangent(deltaL0, deltaL1, pos0, pos1, left_string); axis0.append(pos0); axis1.append(pos1); lineCounter++; } }else{ //// 両弦位置 //// //左側弦は単弦位置,演奏弦と移弦先が同じなので問題は比較的簡単. //両弦位置からdeltaL1与圧し,平行条件でdeltaL1を与えるpos0とpos1に対して残余半径を求め,deltaL0を0.5mmずつ平行条件に近づくように追い込むステップを //平行条件に一致するまで繰り返し,平行条件に一致した後は,残りの弓圧ベクトルを平行条件与圧で消化する. //両弦位置を構成する左側弦 int left_string = nb_string - 1; //両弦位置を構成する右側弦 int right_string = nb_string + 1; //1ステップで追い込んでよい最大幅(おおまかな値) double step = 5.0 / (double)pressureVector.size(); int parallelTransIndex = 0; //pressureVectorが連続していれば前の残余弓圧と今回の初期弓圧は当然に一致する.ここで特段の配慮をする必要はない. for(int i=0;i<pressureVector.size();i++){ //共通接線条件下,相対的に左弦を演奏する //左側;オリジナル押込み deltaL1 double deltaL1 = ConvertToMM(pressureVector[i]); //平行条件与圧でdeltaL1を与えるpos0_refとpos1_refは? double pos0_ref = 0; double pos1_ref = 0; geometry->deltaL(deltaL1, pos0_ref, pos1_ref, left_string); //平行条件での右弦への距離は double residue = geometry->residualRadius2(pos0_ref,pos1_ref,right_string)*(-1.); //右側への押込み距離を決定する double deltaL0 = 0; if(i != 0){ //現在の直線pos0,pos1と右弦との距離は? double curr_residue = geometry->residualRadius2(pos0,pos1,right_string)*(-1.); //正で返る→負へ //平行条件との距離の差は? double curr_diff = residue - curr_residue; //収束判定(ここは少し微妙) if(qAbs(curr_diff) < 0.2){ // 0.5mm / 10msec //十分収束しているので一気に平行条件へ落とす deltaL0 = residue; //追い込み完了 parallelTransIndex = i; //平行条件へ与圧する }else{ //まだ追い込める if(curr_diff < 0){ //左弦への距離が内側 deltaL0 = (-1.)*step*i; }else{ //左弦の距離が外側(内側へ追い込んでいく) deltaL0 = (+1.)*step*i; } } } geometry->commonTangent(deltaL0, deltaL1, pos0, pos1, nb_string); axis0.append(pos0); axis1.append(pos1); if(parallelTransIndex != 0){ break; } } if(parallelTransIndex == 0){ Error::Critical(0,QObject::tr("[ PRESSURE ] 両弦位置からの右方向演奏中移弦制御が収束しませんでした.")); } for(int i=parallelTransIndex+1;i<pressureVector.size();i++){ double deltaL = ConvertToMM(pressureVector[i]); geometry->deltaL(deltaL, pos0, pos1, left_string); axis0.append(pos0); axis1.append(pos1); } } } /*! * \brief * 右側弦を演奏しながら右側に一段階移弦する(新汎用実装;ほぼ安定な演奏中移弦) * OK * * \param nb_string * 全位置[0,1,2,3,4,5,6] * * \remarks * 残余半径のステップ割は,着弦対象弦への残余半径減少スピードが遅すぎ,弓圧変化速度が速い場合に,ベースが逆に動く副作用がある.これは明らかに非効率. * 従って,最後の変曲点までは平行条件(もしくは二円接触条件)により平行付圧して,最後の変曲点以降で残余半径を一次で減少させる. * */ void Pressure::ToRightSideWithIgen(QVector<double> &axis0, QVector<double> &axis1,int nb_string) { double pos0 = 0; double pos1 = 0; if(nb_string == 6){ //右側弦が存在しない Error::Critical(0, QObject::tr("[ PRESSURE ] Invalid nb_string: %1 ( Right side string does not exists! )").arg(nb_string)); } if(nb_string % 2 == 0){ //// 単弦位置 //// //右側弦は両弦位置,最後の変曲点までは平行与圧し,最後の変曲点以降で残余半径を一気に減少させる //移弦先位置 int right_string = nb_string + 1; //弓の弾性変形の補正係数(最大押込み幅の調整によって変化する) //double reformCoef = 0.5; //移弦先位置では着弦(弓圧ゼロ),演奏弦は残余弓圧が存在する場合があるが,許容できない仕様(和音の片弦だけを強く弾くことはできない) //つまり,単弦位置から両弦位置へ演奏中移弦する場合は,残余弓圧がゼロであることが必須. if(pressureVector[pressureVector.size()-1] != 0){ Error::Critical(0, QObject::tr("[ PRESSURE ] 単弦位置から両弦位置への演奏中移弦では,残余弓圧はゼロでなければなりません(右側移弦)")); } //最後の変曲点を探す int lastLocalMaxIndex = 0; double maxValue = 0; for(int i=0;i<pressureVector.size()-1;i++){ if(pressureVector[i] < pressureVector[i+1]){ lastLocalMaxIndex = i+1; maxValue = pressureVector[i+1]; } if(maxValue == pressureVector[i]){ lastLocalMaxIndex = i; } } //平行移動条件で単弦単純与圧 for(int i=0;i<lastLocalMaxIndex;i++){ double deltaL = ConvertToMM(pressureVector[i]); geometry->deltaL(deltaL, pos0, pos1, nb_string); axis0.append(pos0); axis1.append(pos1); } //平行移動条件での単弦単純与圧終了時点での残余半径を求める double lastResidue = geometry->residualRadius2(pos0,pos1,right_string+1); // 正の値で返る ... double residueByStep = lastResidue / (double)(pressureVector.size()-(lastLocalMaxIndex+1)); //二円接触条件で与圧 int lineCounter = 0; for(int i=lastLocalMaxIndex; i<pressureVector.size();i++){ //共通接線条件下,相対的に左弦を演奏する //右側; double deltaL0 = residueByStep*lineCounter - lastResidue; // マイナス値→ゼロへ OK //左側;オリジナル押込み double deltaL1 = ConvertToMM(pressureVector[i]); //右弦位置で両円接触条件で展開 geometry->commonTangent(deltaL0, deltaL1, pos0, pos1, right_string); axis0.append(pos0); axis1.append(pos1); lineCounter++; if(i == pressureVector.size()-1){ std::cout << std::endl; } } }else{ //// 両弦位置 //// //右側弦は単弦位置,演奏弦と移弦先が同じなので問題は比較的簡単. //両弦位置からdeltaL1与圧し,平行条件でdeltaL1を与えるpos0とpos1に対して残余半径を求め,deltaL0を0.5mmずつ平行条件に近づくように追い込むステップを //平行条件に一致するまで繰り返し,平行条件に一致した後は,残りの弓圧ベクトルを平行条件与圧で消化する. //両弦位置を構成する左側弦 int left_string = nb_string - 1; //両弦位置を構成する右側弦 int right_string = nb_string + 1; //1ステップで追い込んでよい最大幅(おおまかな値) double step = 5.0 / (double)pressureVector.size(); int parallelTransIndex = 0; //pressureVectorが連続していれば前の残余弓圧と今回の初期弓圧は当然に一致する.ここで特段の配慮をする必要はない. for(int i=0;i<pressureVector.size();i++){ //共通接線条件下,相対的に右弦を演奏する //右側;オリジナル押込み deltaL0 double deltaL0 = ConvertToMM(pressureVector[i]); //平行条件でdeltaL0を与えるpos0とpos1は? double pos0_ref = 0; double pos1_ref = 0; geometry->deltaL(deltaL0, pos0_ref, pos1_ref, right_string); //直線pos0_ref-pos1_refと左弦への距離は(これが現在のdeltaL0で平行条件に至るための距離) double residue = geometry->residualRadius2(pos0_ref,pos1_ref,left_string)*(-1.); // 正で返る→負へ //左側への押込み距離を決定する double deltaL1 = 0; if(i != 0){ //現在の直線pos0,pos1と左弦との距離は? double curr_residue = geometry->residualRadius2(pos0,pos1,left_string)*(-1.); //正で返る→負へ //平行条件との距離の差は? double curr_diff = residue - curr_residue; //収束判定(ここは少し微妙) if(qAbs(curr_diff) < 0.2){ // 0.5mm / 10msec //十分収束しているので一気に平行条件へ落とす deltaL1 = residue; //追い込み完了 parallelTransIndex = i; //平行条件へ与圧する }else{ //まだ追い込める if(curr_diff < 0){ //左弦への距離が内側 deltaL1 = (-1.)*step*i; }else{ //左弦の距離が外側(内側へ追い込んでいく) deltaL1 = (+1.)*step*i; } } } geometry->commonTangent(deltaL0, deltaL1, pos0, pos1, nb_string); axis0.append(pos0); axis1.append(pos1); if(parallelTransIndex != 0){ break; } } //平行与圧 if(parallelTransIndex == 0){ Error::Critical(0,QObject::tr("[ PRESSURE ] 両弦位置からの右方向演奏中移弦制御が収束しませんでした.")); } for(int i=parallelTransIndex+1;i<pressureVector.size();i++){ double deltaL = ConvertToMM(pressureVector[i]); geometry->deltaL(deltaL, pos0, pos1, right_string); axis0.append(pos0); axis1.append(pos1); } } } /*! * \brief * 単純平行移動条件による弓圧付加関数(両弦圧力付加と事実上同じ動きになる) * * \param axis0 * 軸0の制御ベクトル * * \param axis1 * 軸1の制御ベクトル * * \param nb_string * 弦位置番号 * */ void Pressure::SinglePressure(QVector<double> &axis0, QVector<double> &axis1,int nb_string) { double pos0 = 0; double pos1 = 0; for(int i=0;i<pressureVector.size();i++){ double dL = ConvertToMM(pressureVector[i]); geometry->deltaL(dL,pos0,pos1,nb_string); axis0.append(pos0); axis1.append(pos1); } } /*! * \brief * 両弦を演奏する * * \param nb_string * 両弦位置を指定[1,3,5] * */ void Pressure::ToBothSide(QVector<double> &axis0, QVector<double> &axis1,int nb_string) { double pos0 = 0; double pos1 = 0; for(int i=0;i<pressureVector.size();i++){ //共通接線条件下,両弦を演奏する(deltaL0:変化,deltaL1:変化(等率)) double deltaL0 = ConvertToMM(pressureVector[i]); //右側 double deltaL1 = deltaL0; //左側 geometry->commonTangent(deltaL0, deltaL1, pos0, pos1, nb_string); axis0.append(pos0); axis1.append(pos1); } } /*! * \brief * 両弦位置から相対的に向かって左側弦を演奏する(新実装;弓の弾性変形を考慮して,両弦を押し込む実装) * OK * * \param nb_string * 両弦位置を指定[1,3,5] * * \remarks * 弓の弾性変形を厳密に計算するためには,軸2の位置が必要になり,軸0,1と軸2の独立性が失われるため近似する. * */ void Pressure::ToLeftSide(QVector<double> &axis0, QVector<double> &axis1,int nb_string) { double pos0 = 0; double pos1 = 0; //pressureVectorが連続していれば前の残余弓圧と今回の初期弓圧は当然に一致する.ここで特段の配慮をする必要はない. for(int i=0;i<pressureVector.size();i++){ //共通接線条件下,相対的に左弦を演奏する(deltaL0:一定,deltaL1:変化) //double deltaL0 = 0; //右側 ; オリジナル double deltaL0 = ConvertToMM(pressureVector[i])*0.5; //右側 ; 弾性変形考慮によりn掛けで同一方向へ押し込む(係数は「最大押込幅」の調整によって変わると思われる) double deltaL1 = ConvertToMM(pressureVector[i]); //左側 geometry->commonTangent(deltaL0, deltaL1, pos0, pos1, nb_string); axis0.append(pos0); axis1.append(pos1); } } /*! * \brief * 右側弦を演奏する(新実装;弓の弾性変形を考慮して,両弦を押し込む実装) * OK * * \param nb_string * 両弦位置を指定[1,3,5] * * \remarks * TODO * */ void Pressure::ToRightSide(QVector<double> &axis0, QVector<double> &axis1,int nb_string) { double pos0 = 0; double pos1 = 0; for(int i=0;i<pressureVector.size();i++){ //共通接線条件下,相対的に右弦を演奏する(deltaL0:変化,deltaL1:一定) double deltaL0 = ConvertToMM(pressureVector[i]); //右側 double deltaL1 = ConvertToMM(pressureVector[i])*0.5; //左側 ... 弓の弾性変形考慮0.5掛けでこちらも押し込む //double deltaL1 = 0; //左側 ... オリジナル geometry->commonTangent(deltaL0, deltaL1, pos0, pos1, nb_string); axis0.append(pos0); axis1.append(pos1); } } /*! * \brief * 圧力ベクタをプリペアする(開始弦位置と終了弦位置に制限のない新実装) * 0 1弦 * 1 1-2弦 * 2 2弦 * 3 2-3弦 * 4 3弦 * 5 3-4弦 * 6 4弦 * * \param axis0 * 軸0の制御ベクタ(appendされます) * * \param axis1 * 軸1の制御ベクタ(appendされます) * */ void Pressure::Prepare(QVector<double> &axis0, QVector<double> &axis1) { if(startString % 2 == 0){ //開始弦が単弦位置 if(startString != playerString){ //開始弦と演奏弦は同一弦でなければならない Error::Critical(0, QObject::tr("開始弦と演奏弦は同一弦でなければなりません: %1 != %2").arg(startString).arg(playerString)); } if(startString - endString == 1){ //左側弦へ演奏中移弦 ToLeftSideWithIgen(axis0, axis1, startString); }else if(startString - endString == -1){ //右側弦へ演奏中移弦 ToRightSideWithIgen(axis0, axis1, startString); }else{ //演奏中移弦せず平行与圧(遠隔弦の場合,演奏中移弦した後,その方向へ一段階演奏中移弦しても良いが,移弦クラスで演奏後に移弦する設計とする) SinglePressure(axis0, axis1, startString); } }else{ //開始弦が両弦位置 if(!(startString == playerString || startString - playerString == 1 || startString - playerString == -1)){ //開始弦と演奏弦の関係はこの通り Error::Critical(0, QObject::tr("両弦位置では,演奏弦は同一位置か両弦位置に含まれる左右の単弦である必要があります: %1, %2").arg(startString).arg(playerString)); } if(startString == playerString){ //終了弦に関わらず両円接触条件与圧 ToBothSide(axis0,axis1,startString); }else if(startString - playerString == 1){ //左側弦演奏時 if(endString == startString){ //元の位置に戻る場合のみ ToLeftSide(axis0,axis1,startString); }else{ //それ以外は全て演奏弦先に移弦させる(右遠隔弦の場合,その方向へ戻してもよいが,移弦クラスで演奏後に移弦する設計とする) ToLeftSideWithIgen(axis0,axis1,startString); } }else if(startString - playerString == -1){ //右側弦演奏時 if(endString == startString){ //元の位置に戻る場合のみ ToRightSide(axis0,axis1,startString); }else{ //それ以外は全て演奏弦先に移弦させる(右遠隔弦の場合,その方向へ戻してもよいが,移弦クラスで演奏後に移弦する設計とする) ToRightSideWithIgen(axis0,axis1,startString); } } } } /*! * \brief * 左側弦を演奏しながら左側に一段階移弦する(新実装;残余半径のステップ割) * * \param nb_string * 全位置[0,1,2,3,4,5,6] * */ /* void Pressure::ToLeftSideWithIgen(QVector<double> &axis0, QVector<double> &axis1,int nb_string) { double pos0 = 0; double pos1 = 0; //初期状態を計算する //Controller *controller = Controller::GetInstance(); //ActuatorStatus status0 = controller->axis[0]->GetStatus(); //ActuatorStatus status1 = controller->axis[1]->GetStatus(); //【設計指針】 //初期状態は,キャリブレーションされた初期弦位置であることに注意.弓圧が掛かっている状態からの遷移を //サポートしていないことに注意.つまり,各ボーイング単位で必ず弓圧力はゼロに落ちていることが前提. // //初期状態を引き継ぎたい場合は,Bowing::Prepare()の引数をpitchunitのように追加して,Base::Prepare()にも //追加,最後にPressure::Prepare()に追加して,この関数まで引っ張ってくる. //そして,その状態からの残余半径を再計算する(geometry->margin[]はキャリブレーション位置からのマージンなので使わない) if(nb_string == 0){ Error::Critical(0,QObject::tr("ToLeftSideWithIgen(): Invalid nb_string: %1").arg(nb_string)); } //移弦するための残余半径 double radius = 0; //もともとシングル位置の場合 if(nb_string == 2){ //2弦シングル位置から,2弦を演奏しながら,1-2弦位置へ(1弦に着地) radius = geometry->margin[2].leftMargin; // 2弦シングル位置での左側マージン }else if(nb_string == 4){ //3弦シングル位置から,3弦を演奏しながら,2-3弦位置へ(2弦に着地) radius = geometry->margin[4].leftMargin; // 3弦シングル位置での左側マージン }else if(nb_string == 6){ //4弦シングル位置から,4弦を演奏しながら,3-4弦位置へ(3弦に着地) radius = geometry->margin[6].leftMargin; // 4弦シングル位置での左側マージン } //もともと両弦位置の場合 if(nb_string == 1){ //1-2弦位置から1弦を演奏しながら,1弦シングル位置へ radius = geometry->margin[0].rightMargin; // 1弦シングル位置での右側マージン }else if(nb_string == 3){ //2-3弦位置から2弦を演奏しながら,2弦シングル位置へ radius = geometry->margin[2].rightMargin; // 1つ左の弦位置の右マージン }else if(nb_string == 5){ //3-4弦位置から3弦を演奏しながら,3弦シングル位置へ radius = geometry->margin[4].rightMargin; } //移弦先弦への残余半径を検索 //double radius = geometry->residualRadius(status0.Position, status1.Position, to_string); //移弦に必要なΔLを求める double step_deltaL = radius/(double)pressureVector.size(); for(int i=0;i<pressureVector.size();i++){ //共通接線条件下,2弦を演奏する double deltaL0 = 0; //右側 double deltaL1 = 0; //左側 if(nb_string % 2 == 0){//2,4,6 //もともとシングル位置の場合 deltaL0 = ConvertToMM(pressureVector[i]); //右側(左側へ移動するので,もともと左側へ一段階移弦した位置に対しての右側は弓圧付加対象 deltaL1 = (-radius)+step_deltaL*i; //左側(こちらは着弦対象) //共通接線条件下 geometry->commonTangent(deltaL0, deltaL1, pos0, pos1, nb_string-1); //左側へ一段階移弦した初期位置で計算 }else{ //もともと両弦位置の場合 deltaL0 = (-radius)+step_deltaL*i; //右側(着弦対象) deltaL1 = ConvertToMM(pressureVector[i]); //左側(弓圧付加対象) //共通接線条件下 geometry->commonTangent(deltaL0, deltaL1, pos0, pos1, nb_string); //指定位置で計算 } axis0.append(pos0); axis1.append(pos1); } } */ /*! * \brief * 左側弦を演奏しながら左側に一段階移弦する(旧汎用実装) * * \param nb_string * 両弦位置を指定[1,3,5] * */ /* void Pressure::ToLeftSideWithIgen(QVector<double> &axis0, QVector<double> &axis1,int nb_string) { double pos0 = 0; double pos1 = 0; //初期状態を計算する Controller *controller = Controller::GetInstance(); ActuatorStatus status0 = controller->axis[0]->GetStatus(); ActuatorStatus status1 = controller->axis[1]->GetStatus(); int to_string = 0; if(nb_string == 1){ Error::Critical(0,QObject::tr("ToRightSideWithIgen() の指定が不正")); }else if(nb_string == 3){ //2-3弦位置から2弦を演奏しながら1-2弦位置へ(第1弦に着地) to_string = 0; }else if(nb_string == 5){ //3-4弦位置から3弦を演奏しながら2-3弦位置へ(第2弦に着地) to_string = 1; } //移弦先弦への残余半径を検索 double radius = geometry->residualRadius(status0.Position, status1.Position, to_string); //移弦に必要なΔLを求める double step_deltaL = radius/(double)pressureVector.size(); for(int i=0;i<pressureVector.size();i++){ //共通接線条件下,2弦を演奏する double deltaL0 = ConvertToMM(pressureVector[i]); //右側 double deltaL1 = (-radius)+step_deltaL*i; //左側 //共通接線条件下 geometry->commonTangent(deltaL0, deltaL1, pos0, pos1, nb_string-2); //左側へ一段階移弦した初期位置で計算 axis0.append(pos0); axis1.append(pos1); } } */ /*! * \brief * 圧力ベクタをプリペアする(旧一般化実装) * StartString[1,3,5], EndString[1,3,5] * 0 1弦 * 1 1-2弦 * 2 2弦 * 3 2-3弦 * 4 3弦 * 5 3-4弦 * 6 4弦 * * \param axis0 * 軸0の制御ベクタ(appendされます) * * \param axis1 * 軸1の制御ベクタ(appendされます) * */ /* void Pressure::Prepare(QVector<double> &axis0, QVector<double> &axis1) { if(startString == 1){ //1-2弦両弦位置から if(endString == 1){ //1-2弦両弦位置へ(移弦無し) if(playerString == 0){ //1弦を演奏 ToLeftSide(axis0,axis1,startString); }else if(playerString == 1){ //1-2弦両弦を演奏 ToBothSide(axis0,axis1,startString); }else if(playerString == 2){ //2弦を演奏 ToRightSide(axis0,axis1,startString); } }else if(endString == 3){ // ... endString == 5 と等しい //2-3弦両弦位置へ if(playerString == 0){ //1弦を演奏する ToLeftSide(axis0,axis1,startString); }else if(playerString == 1){ //1-2両弦を演奏する ToBothSide(axis0,axis1,startString); }else if(playerString == 2){ //2弦を演奏する(演奏しながら2-3弦両弦位置へ移弦) ToRightSideWithIgen(axis0,axis1,startString); } }else if(endString == 5){// ... endString == 3 と等しい //3-4弦両弦位置へ if(playerString == 0){ //1弦を演奏する ToLeftSide(axis0,axis1,startString); }else if(playerString == 1){ //1-2両弦を演奏する ToBothSide(axis0,axis1,startString); }else if(playerString == 2){ //2弦を演奏する(演奏しながら2-3弦両弦位置へ移弦)→その後3-4弦両弦位置へ移弦 ToRightSideWithIgen(axis0,axis1,startString); } } }else if(startString == 3){ //2-3弦両弦位置から if(endString == 1){ //1-2弦両弦位置へ if(playerString == 2){ //2弦を演奏する(演奏しながら1-2弦両弦位置へ移弦) ToLeftSideWithIgen(axis0,axis1,startString); }else if(playerString == 3){ //2-3弦両弦を演奏する ToBothSide(axis0,axis1,startString); }else if(playerString == 4){ //3弦を演奏する ToRightSide(axis0,axis1,startString); } }else if(endString == 3){ //2-3弦両弦位置へ(移弦無し) if(playerString == 2){ //2弦を演奏する ToLeftSide(axis0,axis1,startString); }else if(playerString == 3){ //2-3弦両弦を演奏する ToBothSide(axis0,axis1,startString); }else if(playerString == 4){ //3弦を演奏する ToRightSide(axis0,axis1,startString); } }else if(endString == 5){ //3-4弦両弦位置へ if(playerString == 2){ //2弦を演奏する ToLeftSide(axis0,axis1,startString); }else if(playerString == 3){ //2-3弦両弦を演奏する ToBothSide(axis0,axis1,startString); }else if(playerString == 4){ //3弦を演奏する(演奏しながら3-4弦両弦位置へ移弦) ToRightSideWithIgen(axis0,axis1,startString); } } }else if(startString == 5){ //3-4弦両弦位置から if(endString == 1){ // ... endString == 3 と等しい //1-2弦両弦位置へ if(playerString == 4){ //3弦を演奏する(演奏しながら2-3弦両弦位置へ移弦)→その後1-2弦両弦位置へ移弦 ToLeftSideWithIgen(axis0,axis1,startString); }else if(playerString == 5){ //3-4弦両弦を演奏する ToBothSide(axis0,axis1,startString); }else if(playerString == 6){ //4弦を演奏する ToRightSide(axis0,axis1,startString); } }else if(endString == 3){// ... endString == 1 と等しい //2-3弦両弦位置へ if(playerString == 4){ //3弦を演奏する(演奏しながら2-3弦両弦位置へ移弦) ToLeftSideWithIgen(axis0,axis1,startString); }else if(playerString == 5){ //3-4弦を演奏する ToBothSide(axis0,axis1,startString); }else if(playerString == 6){ //4弦を演奏する ToRightSide(axis0,axis1,startString); } }else if(endString == 5){ //3-4弦両弦位置へ(移弦無し) if(playerString == 4){ ToLeftSide(axis0,axis1,startString); }else if(playerString == 5){ ToBothSide(axis0,axis1,startString); }else if(playerString == 6){ ToRightSide(axis0,axis1,startString); } } } } */ /*! * \brief * 右側弦を演奏しながら右側に一段階移弦する(旧汎用実装) * * \param nb_string * 両弦位置を指定[1,3,5] * */ /* void Pressure::ToRightSideWithIgen(QVector<double> &axis0, QVector<double> &axis1,int nb_string) { double pos0 = 0; double pos1 = 0; //初期状態を計算する Controller *controller = Controller::GetInstance(); ActuatorStatus status0 = controller->axis[0]->GetStatus(); ActuatorStatus status1 = controller->axis[1]->GetStatus(); int to_string = 0; if(nb_string == 1){ //1-2弦位置から2弦を演奏しながら2-3弦位置へ(第3弦に着地) to_string = 2; }else if(nb_string == 3){ //2-3弦位置から3弦を演奏しながら3-4弦位置へ(第4弦に着地) to_string = 3; }else if(nb_string == 5){ Error::Critical(0,QObject::tr("ToRightSideWithIgen() の指定が不正")); } //移弦先弦への残余半径を検索 double radius = geometry->residualRadius(status0.Position, status1.Position, to_string); //移弦に必要なΔLを求める double step_deltaL = radius/(double)pressureVector.size(); for(int i=0;i<pressureVector.size();i++){ //共通接線条件下,2弦を演奏する: deltaL0一定,deltaL1変化 double deltaL0 = (-radius)+step_deltaL*i; //右側 double deltaL1 = ConvertToMM(pressureVector[i]); //左側 //共通接線条件下 geometry->commonTangent(deltaL0, deltaL1, pos0, pos1, nb_string+2); //右側へ一段階移弦した初期位置で計算 axis0.append(pos0); axis1.append(pos1); } } */
[ "fujino@fairydevices.jp" ]
fujino@fairydevices.jp
a35cb5b21bf87ae47b1bf81908b14cb1be38b600
e26aae81d4b8f5ecd4bda2e133c8f567fc243c66
/Source/dooble_about.cc
5bdb78a495d79b73888bcf46b65c3a4cb4fd96f3
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
yourAlginis/dooble
3794fe4ad5523f52a836272cf6c1a7f01747a4c6
90537c9d561ee9e1331d1499ce378ab486c25f80
refs/heads/master
2023-07-05T07:19:37.755461
2021-08-14T20:07:21
2021-08-14T20:07:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,261
cc
/* ** Copyright (c) 2008 - present, Alexis Megas. ** All rights reserved. ** ** Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions ** are met: ** 1. Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** 2. Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in the ** documentation and/or other materials provided with the distribution. ** 3. The name of the author may not be used to endorse or promote products ** derived from Dooble without specific prior written permission. ** ** DOOBLE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR ** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, ** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT ** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ** DOOBLE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include <QCryptographicHash> #include <QKeyEvent> #include <QShortcut> #include <QtConcurrent> #include "dooble_about.h" #include "dooble_version.h" dooble_about::dooble_about(void):QMainWindow() { m_ui.setupUi(this); m_ui.digest->clear(); connect(m_ui.license, SIGNAL(linkActivated(const QString &)), this, SLOT(slot_link_activated(const QString &))); connect(m_ui.release_notes, SIGNAL(linkActivated(const QString &)), this, SLOT(slot_link_activated(const QString &))); connect(this, SIGNAL(file_digest_computed(const QByteArray &)), this, SLOT(slot_file_digest_computed(const QByteArray &))); new QShortcut(QKeySequence(tr("Ctrl+W")), this, SLOT(close(void))); QString qversion(""); const auto tmp = qVersion(); if(tmp) qversion = tmp; qversion = qversion.trimmed(); if(qversion.isEmpty()) qversion = "unknown"; m_ui.license->setText (tr("<a href=\"qrc://Documentation/DOOBLE-LICENSE.html\">" "Dooble 3-Clause BSD License</a>")); auto text (tr("Architecture %1.<br>Qt version %2 (runtime %3)."). arg(DOOBLE_ARCHITECTURE_STR). arg(QT_VERSION_STR). arg(qversion)); m_ui.local_information->setText(text); m_ui.release_notes->setText (tr("<a href=\"qrc://Documentation/RELEASE-NOTES.html\">" "Release Notes</a>")); m_ui.version->setText (tr("Dooble version %1, Hyperspace.").arg(DOOBLE_VERSION_STRING)); compute_self_digest(); } dooble_about::~dooble_about() { m_future.cancel(); m_future.waitForFinished(); } void dooble_about::compute_self_digest(void) { m_future.cancel(); m_future.waitForFinished(); m_future = QtConcurrent::run (this, &dooble_about::compute_self_digest_task, QApplication::applicationFilePath()); } void dooble_about::compute_self_digest_task(const QString &file_path) { QByteArray buffer(4096, 0); QCryptographicHash hash(QCryptographicHash::Sha3_512); QFile file(file_path); if(file.open(QIODevice::ReadOnly)) { qint64 rc = 0; while((rc = file.read(buffer.data(), buffer.length())) > 0) if(m_future.isCanceled()) break; else hash.addData(buffer, static_cast<int> (rc)); } file.close(); if(!m_future.isCanceled()) emit file_digest_computed(hash.result()); } void dooble_about::keyPressEvent(QKeyEvent *event) { if(event && event->key() == Qt::Key_Escape) close(); QMainWindow::keyPressEvent(event); } void dooble_about::slot_file_digest_computed(const QByteArray &digest) { m_ui.digest->setText (tr("The SHA3-512 digest of %1 is %2."). arg(QApplication::applicationFilePath()). arg(digest.toHex().insert(64, '\n').constData())); resize(sizeHint()); } void dooble_about::slot_link_activated(const QString &url) { emit link_activated(QUrl::fromUserInput(url)); }
[ "textbrowser@gmail.com" ]
textbrowser@gmail.com
83624ee698b421381de6ffcb1529e13d4222198a
ded20af005253b4c7afa2d19b50dc811fc77d8c2
/cs140/lab7/double_checker.cpp
0e967d5734582425091d3f0996a4b36a99bb0621
[]
no_license
bopopescu/projects-2
8f1df5fa70204502eabc5cd912ecf507897bd8d8
49c978b3c9f17804e4b90acdc7a474b401d48019
refs/heads/master
2021-09-02T08:39:53.804832
2018-01-01T01:59:34
2018-01-01T01:59:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
976
cpp
#include <fcntl.h> #include "code_processor.h" void Code_Processor::Double_Check_Internals() { int fd; int npn; User *u; map <string, User *>::iterator uit; set <string>::iterator pit; npn = 0; for (uit = Names.begin(); uit != Names.end(); uit++) { u = uit->second; for (pit = u->phone_numbers.begin(); pit != u->phone_numbers.end(); pit++) { npn++; if (Phones.find(*pit) == Phones.end()) { cerr << "Error -- phone " << *pit << " from user " << u->username << " is not in Phones.\n"; exit(1); } if (Phones[*pit] != u) { cerr << "Error -- phone " << *pit << " is not registered to user " << u->username << ".\n"; exit(1); } } } if (npn != Phones.size()) { cerr << "Phones.size() does not match the number of user phones.\n"; exit(1); } fd = open("/dev/null", O_RDONLY); if (fd > 4) { cerr << "You have too many files open.\n"; exit(1); } close(fd); }
[ "W4D3@users.noreply.github.com" ]
W4D3@users.noreply.github.com
cfd058b58b852c9d9dc909338073309423299ea6
35cdd76c43de6251c179a61f1309e09aa884bac2
/src/ConnectTest/protobuf/person.pb.h
774f746d2c1d8c5353444a94bf73800398777ff9
[ "BSD-3-Clause" ]
permissive
bmjoy/mjserver
04e9679e19214294f782c7df6bdf02994e1ae3b8
712aa488199ab7b94070f00b73d61543a1612e0f
refs/heads/master
2020-03-06T22:54:48.756764
2017-06-08T12:59:45
2017-06-08T12:59:45
null
0
0
null
null
null
null
UTF-8
C++
false
true
18,848
h
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: person.proto #ifndef PROTOBUF_person_2eproto__INCLUDED #define PROTOBUF_person_2eproto__INCLUDED #include <string> #include <google/protobuf/stubs/common.h> #if GOOGLE_PROTOBUF_VERSION < 2006000 #error This file was generated by a newer version of protoc which is #error incompatible with your Protocol Buffer headers. Please update #error your headers. #endif #if 2006001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION #error This file was generated by an older version of protoc which is #error incompatible with your Protocol Buffer headers. Please #error regenerate this file with a newer version of protoc. #endif #include <google/protobuf/generated_message_util.h> #include <google/protobuf/message.h> #include <google/protobuf/repeated_field.h> #include <google/protobuf/extension_set.h> #include <google/protobuf/generated_enum_reflection.h> #include <google/protobuf/unknown_field_set.h> // @@protoc_insertion_point(includes) // Internal implementation detail -- do not call these. void protobuf_AddDesc_person_2eproto(); void protobuf_AssignDesc_person_2eproto(); void protobuf_ShutdownFile_person_2eproto(); class Person; class Phone; enum Phone_PHONE_TYPE { Phone_PHONE_TYPE_MOBILE = 1, Phone_PHONE_TYPE_HOME = 2 }; bool Phone_PHONE_TYPE_IsValid(int value); const Phone_PHONE_TYPE Phone_PHONE_TYPE_PHONE_TYPE_MIN = Phone_PHONE_TYPE_MOBILE; const Phone_PHONE_TYPE Phone_PHONE_TYPE_PHONE_TYPE_MAX = Phone_PHONE_TYPE_HOME; const int Phone_PHONE_TYPE_PHONE_TYPE_ARRAYSIZE = Phone_PHONE_TYPE_PHONE_TYPE_MAX + 1; const ::google::protobuf::EnumDescriptor* Phone_PHONE_TYPE_descriptor(); inline const ::std::string& Phone_PHONE_TYPE_Name(Phone_PHONE_TYPE value) { return ::google::protobuf::internal::NameOfEnum( Phone_PHONE_TYPE_descriptor(), value); } inline bool Phone_PHONE_TYPE_Parse( const ::std::string& name, Phone_PHONE_TYPE* value) { return ::google::protobuf::internal::ParseNamedEnum<Phone_PHONE_TYPE>( Phone_PHONE_TYPE_descriptor(), name, value); } // =================================================================== class Person : public ::google::protobuf::Message { public: Person(); virtual ~Person(); Person(const Person& from); inline Person& operator=(const Person& from) { CopyFrom(from); return *this; } inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _unknown_fields_; } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return &_unknown_fields_; } static const ::google::protobuf::Descriptor* descriptor(); static const Person& default_instance(); void Swap(Person* other); // implements Message ---------------------------------------------- Person* New() const; void CopyFrom(const ::google::protobuf::Message& from); void MergeFrom(const ::google::protobuf::Message& from); void CopyFrom(const Person& from); void MergeFrom(const Person& from); void Clear(); bool IsInitialized() const; int ByteSize() const; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input); void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const; ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const; int GetCachedSize() const { return _cached_size_; } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const; public: ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // required int32 id = 1; inline bool has_id() const; inline void clear_id(); static const int kIdFieldNumber = 1; inline ::google::protobuf::int32 id() const; inline void set_id(::google::protobuf::int32 value); // required string name = 2; inline bool has_name() const; inline void clear_name(); static const int kNameFieldNumber = 2; inline const ::std::string& name() const; inline void set_name(const ::std::string& value); inline void set_name(const char* value); inline void set_name(const char* value, size_t size); inline ::std::string* mutable_name(); inline ::std::string* release_name(); inline void set_allocated_name(::std::string* name); // optional string email = 3; inline bool has_email() const; inline void clear_email(); static const int kEmailFieldNumber = 3; inline const ::std::string& email() const; inline void set_email(const ::std::string& value); inline void set_email(const char* value); inline void set_email(const char* value, size_t size); inline ::std::string* mutable_email(); inline ::std::string* release_email(); inline void set_allocated_email(::std::string* email); GOOGLE_PROTOBUF_EXTENSION_ACCESSORS(Person) // @@protoc_insertion_point(class_scope:Person) private: inline void set_has_id(); inline void clear_has_id(); inline void set_has_name(); inline void clear_has_name(); inline void set_has_email(); inline void clear_has_email(); ::google::protobuf::internal::ExtensionSet _extensions_; ::google::protobuf::UnknownFieldSet _unknown_fields_; ::google::protobuf::uint32 _has_bits_[1]; mutable int _cached_size_; ::std::string* name_; ::std::string* email_; ::google::protobuf::int32 id_; friend void protobuf_AddDesc_person_2eproto(); friend void protobuf_AssignDesc_person_2eproto(); friend void protobuf_ShutdownFile_person_2eproto(); void InitAsDefaultInstance(); static Person* default_instance_; }; // ------------------------------------------------------------------- class Phone : public ::google::protobuf::Message { public: Phone(); virtual ~Phone(); Phone(const Phone& from); inline Phone& operator=(const Phone& from) { CopyFrom(from); return *this; } inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _unknown_fields_; } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return &_unknown_fields_; } static const ::google::protobuf::Descriptor* descriptor(); static const Phone& default_instance(); void Swap(Phone* other); // implements Message ---------------------------------------------- Phone* New() const; void CopyFrom(const ::google::protobuf::Message& from); void MergeFrom(const ::google::protobuf::Message& from); void CopyFrom(const Phone& from); void MergeFrom(const Phone& from); void Clear(); bool IsInitialized() const; int ByteSize() const; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input); void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const; ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const; int GetCachedSize() const { return _cached_size_; } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const; public: ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- typedef Phone_PHONE_TYPE PHONE_TYPE; static const PHONE_TYPE MOBILE = Phone_PHONE_TYPE_MOBILE; static const PHONE_TYPE HOME = Phone_PHONE_TYPE_HOME; static inline bool PHONE_TYPE_IsValid(int value) { return Phone_PHONE_TYPE_IsValid(value); } static const PHONE_TYPE PHONE_TYPE_MIN = Phone_PHONE_TYPE_PHONE_TYPE_MIN; static const PHONE_TYPE PHONE_TYPE_MAX = Phone_PHONE_TYPE_PHONE_TYPE_MAX; static const int PHONE_TYPE_ARRAYSIZE = Phone_PHONE_TYPE_PHONE_TYPE_ARRAYSIZE; static inline const ::google::protobuf::EnumDescriptor* PHONE_TYPE_descriptor() { return Phone_PHONE_TYPE_descriptor(); } static inline const ::std::string& PHONE_TYPE_Name(PHONE_TYPE value) { return Phone_PHONE_TYPE_Name(value); } static inline bool PHONE_TYPE_Parse(const ::std::string& name, PHONE_TYPE* value) { return Phone_PHONE_TYPE_Parse(name, value); } // accessors ------------------------------------------------------- // optional string num = 1; inline bool has_num() const; inline void clear_num(); static const int kNumFieldNumber = 1; inline const ::std::string& num() const; inline void set_num(const ::std::string& value); inline void set_num(const char* value); inline void set_num(const char* value, size_t size); inline ::std::string* mutable_num(); inline ::std::string* release_num(); inline void set_allocated_num(::std::string* num); // optional .Phone.PHONE_TYPE type = 2; inline bool has_type() const; inline void clear_type(); static const int kTypeFieldNumber = 2; inline ::Phone_PHONE_TYPE type() const; inline void set_type(::Phone_PHONE_TYPE value); static const int kPhonesFieldNumber = 10; static ::google::protobuf::internal::ExtensionIdentifier< ::Person, ::google::protobuf::internal::RepeatedMessageTypeTraits< ::Phone >, 11, false > phones; // @@protoc_insertion_point(class_scope:Phone) private: inline void set_has_num(); inline void clear_has_num(); inline void set_has_type(); inline void clear_has_type(); ::google::protobuf::UnknownFieldSet _unknown_fields_; ::google::protobuf::uint32 _has_bits_[1]; mutable int _cached_size_; ::std::string* num_; int type_; friend void protobuf_AddDesc_person_2eproto(); friend void protobuf_AssignDesc_person_2eproto(); friend void protobuf_ShutdownFile_person_2eproto(); void InitAsDefaultInstance(); static Phone* default_instance_; }; // =================================================================== // =================================================================== // Person // required int32 id = 1; inline bool Person::has_id() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void Person::set_has_id() { _has_bits_[0] |= 0x00000001u; } inline void Person::clear_has_id() { _has_bits_[0] &= ~0x00000001u; } inline void Person::clear_id() { id_ = 0; clear_has_id(); } inline ::google::protobuf::int32 Person::id() const { // @@protoc_insertion_point(field_get:Person.id) return id_; } inline void Person::set_id(::google::protobuf::int32 value) { set_has_id(); id_ = value; // @@protoc_insertion_point(field_set:Person.id) } // required string name = 2; inline bool Person::has_name() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void Person::set_has_name() { _has_bits_[0] |= 0x00000002u; } inline void Person::clear_has_name() { _has_bits_[0] &= ~0x00000002u; } inline void Person::clear_name() { if (name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { name_->clear(); } clear_has_name(); } inline const ::std::string& Person::name() const { // @@protoc_insertion_point(field_get:Person.name) return *name_; } inline void Person::set_name(const ::std::string& value) { set_has_name(); if (name_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { name_ = new ::std::string; } name_->assign(value); // @@protoc_insertion_point(field_set:Person.name) } inline void Person::set_name(const char* value) { set_has_name(); if (name_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { name_ = new ::std::string; } name_->assign(value); // @@protoc_insertion_point(field_set_char:Person.name) } inline void Person::set_name(const char* value, size_t size) { set_has_name(); if (name_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { name_ = new ::std::string; } name_->assign(reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_set_pointer:Person.name) } inline ::std::string* Person::mutable_name() { set_has_name(); if (name_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { name_ = new ::std::string; } // @@protoc_insertion_point(field_mutable:Person.name) return name_; } inline ::std::string* Person::release_name() { clear_has_name(); if (name_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { return NULL; } else { ::std::string* temp = name_; name_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); return temp; } } inline void Person::set_allocated_name(::std::string* name) { if (name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete name_; } if (name) { set_has_name(); name_ = name; } else { clear_has_name(); name_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } // @@protoc_insertion_point(field_set_allocated:Person.name) } // optional string email = 3; inline bool Person::has_email() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void Person::set_has_email() { _has_bits_[0] |= 0x00000004u; } inline void Person::clear_has_email() { _has_bits_[0] &= ~0x00000004u; } inline void Person::clear_email() { if (email_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { email_->clear(); } clear_has_email(); } inline const ::std::string& Person::email() const { // @@protoc_insertion_point(field_get:Person.email) return *email_; } inline void Person::set_email(const ::std::string& value) { set_has_email(); if (email_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { email_ = new ::std::string; } email_->assign(value); // @@protoc_insertion_point(field_set:Person.email) } inline void Person::set_email(const char* value) { set_has_email(); if (email_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { email_ = new ::std::string; } email_->assign(value); // @@protoc_insertion_point(field_set_char:Person.email) } inline void Person::set_email(const char* value, size_t size) { set_has_email(); if (email_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { email_ = new ::std::string; } email_->assign(reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_set_pointer:Person.email) } inline ::std::string* Person::mutable_email() { set_has_email(); if (email_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { email_ = new ::std::string; } // @@protoc_insertion_point(field_mutable:Person.email) return email_; } inline ::std::string* Person::release_email() { clear_has_email(); if (email_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { return NULL; } else { ::std::string* temp = email_; email_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); return temp; } } inline void Person::set_allocated_email(::std::string* email) { if (email_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete email_; } if (email) { set_has_email(); email_ = email; } else { clear_has_email(); email_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } // @@protoc_insertion_point(field_set_allocated:Person.email) } // ------------------------------------------------------------------- // Phone // optional string num = 1; inline bool Phone::has_num() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void Phone::set_has_num() { _has_bits_[0] |= 0x00000001u; } inline void Phone::clear_has_num() { _has_bits_[0] &= ~0x00000001u; } inline void Phone::clear_num() { if (num_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { num_->clear(); } clear_has_num(); } inline const ::std::string& Phone::num() const { // @@protoc_insertion_point(field_get:Phone.num) return *num_; } inline void Phone::set_num(const ::std::string& value) { set_has_num(); if (num_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { num_ = new ::std::string; } num_->assign(value); // @@protoc_insertion_point(field_set:Phone.num) } inline void Phone::set_num(const char* value) { set_has_num(); if (num_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { num_ = new ::std::string; } num_->assign(value); // @@protoc_insertion_point(field_set_char:Phone.num) } inline void Phone::set_num(const char* value, size_t size) { set_has_num(); if (num_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { num_ = new ::std::string; } num_->assign(reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_set_pointer:Phone.num) } inline ::std::string* Phone::mutable_num() { set_has_num(); if (num_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { num_ = new ::std::string; } // @@protoc_insertion_point(field_mutable:Phone.num) return num_; } inline ::std::string* Phone::release_num() { clear_has_num(); if (num_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { return NULL; } else { ::std::string* temp = num_; num_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); return temp; } } inline void Phone::set_allocated_num(::std::string* num) { if (num_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete num_; } if (num) { set_has_num(); num_ = num; } else { clear_has_num(); num_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } // @@protoc_insertion_point(field_set_allocated:Phone.num) } // optional .Phone.PHONE_TYPE type = 2; inline bool Phone::has_type() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void Phone::set_has_type() { _has_bits_[0] |= 0x00000002u; } inline void Phone::clear_has_type() { _has_bits_[0] &= ~0x00000002u; } inline void Phone::clear_type() { type_ = 1; clear_has_type(); } inline ::Phone_PHONE_TYPE Phone::type() const { // @@protoc_insertion_point(field_get:Phone.type) return static_cast< ::Phone_PHONE_TYPE >(type_); } inline void Phone::set_type(::Phone_PHONE_TYPE value) { assert(::Phone_PHONE_TYPE_IsValid(value)); set_has_type(); type_ = value; // @@protoc_insertion_point(field_set:Phone.type) } // @@protoc_insertion_point(namespace_scope) #ifndef SWIG namespace google { namespace protobuf { template <> struct is_proto_enum< ::Phone_PHONE_TYPE> : ::google::protobuf::internal::true_type {}; template <> inline const EnumDescriptor* GetEnumDescriptor< ::Phone_PHONE_TYPE>() { return ::Phone_PHONE_TYPE_descriptor(); } } // namespace google } // namespace protobuf #endif // SWIG // @@protoc_insertion_point(global_scope) #endif // PROTOBUF_person_2eproto__INCLUDED
[ "358197995@qq.com" ]
358197995@qq.com
7ac62f5a1581693fc56371c3807f0876aebd138d
ad28b63a95825167e9e015db4fe9c98f3c14a49e
/QVideoRenderWidget.cpp
6bd9b3d8678daa75ea1809109c46330764e617a6
[]
no_license
ZhouYing-bit/QtRenderYUV420P
23dc6c53eaf0cf6bc495eda2957a8c3cd9136658
aff82f570bc1c2b704e1873649069d4993359854
refs/heads/main
2023-07-18T01:35:54.009036
2021-09-02T06:06:22
2021-09-02T06:06:22
null
0
0
null
null
null
null
GB18030
C++
false
false
7,770
cpp
#include "QVideoRenderWidget.h" #include <QWeakPointer> #include <QPointer> #include <QOpenGLVertexArrayObject> #include <QOpenGLTexture> #include <QOpenGLShaderProgram> #include <QOpenGLBuffer> #include <QTimer> #include <thread> #include <memory> #include <iostream> #include <cstdlib> #include <cstdint> #define GLVERSION "#version 330 core\n" #define GET_SHADER(arg) GLVERSION#arg const char* vertex_shader = GET_SHADER( layout (location = 0) in vec3 aPos; layout (location = 1) in vec2 aTexCoord; out vec2 TexCoord; void main() { gl_Position = vec4(aPos, 1.0); TexCoord = aTexCoord; } ); const char* frag_shader = GET_SHADER( out vec4 FragColor; in vec2 TexCoord; uniform sampler2D texY; uniform sampler2D texU; uniform sampler2D texV; void main() { vec3 rgb; vec3 yuv; yuv.x = texture(texY, TexCoord).r - 0.0625; yuv.y = texture(texU, TexCoord).r - 0.5; yuv.z = texture(texV, TexCoord).r - 0.5; rgb = mat3(1.164, 1.164, 1.164, 0.0, -0.213, 2.114, 1.792, -0.534, 0.0) * yuv; FragColor = vec4(rgb, 1.0); } ); QVideoRenderWidget::QVideoRenderWidget(QWidget *parent) : QOpenGLWidget(parent) { } QVideoRenderWidget::~QVideoRenderWidget() { // Make sure the context is current and then explicitly // destroy all underlying OpenGL resources. makeCurrent(); m_vao->destroy(); m_vbo_yuv->destroy(); delete m_vbo_yuv; delete m_vao; delete m_shaderProgram; doneCurrent(); } void QVideoRenderWidget::setTextureI420PData(uint8_t* Buffer[3],int Stride[3], int width, int height) { if (m_width!=width || m_height!=height) { makeCurrent();//If you need to call the standard OpenGL API functions from other places (e.g. in your widget's constructor or in your own paint functions), you must call makeCurrent() first. //创建yuv 纹理 for (int i = 0; i < 3; i++) { m_texture_2d_array[i] = QSharedPointer<QOpenGLTexture>( new QOpenGLTexture(QOpenGLTexture::Target2D)); if (i == 0) { m_texture_2d_array[i]->setSize(width, height); } else { m_texture_2d_array[i]->setSize(width / 2, height / 2); } m_texture_2d_array[i]->setMinMagFilters(QOpenGLTexture::LinearMipMapLinear, QOpenGLTexture::Linear); m_texture_2d_array[i]->create(); m_texture_2d_array[i]->setFormat(QOpenGLTexture::R8_UNorm); m_texture_2d_array[i]->allocateStorage(); } doneCurrent(); } m_yTexture_data = std::shared_ptr<uint8_t[]>(new uint8_t[width * height], std::default_delete<uint8_t[]>()); m_uTexture_data = std::shared_ptr<uint8_t[]>(new uint8_t[width * height/4], std::default_delete<uint8_t[]>()); m_vTexture_data = std::shared_ptr<uint8_t[]>(new uint8_t[width * height/4], std::default_delete<uint8_t[]>()); //copy y const uint8_t* p_ydata = Buffer[0]; uint8_t* ypoint = m_yTexture_data.get(); for (int i=0; i<height; i++) { memcpy(ypoint, p_ydata, width); p_ydata = p_ydata + Stride[0]; ypoint = ypoint + width; } // copy u const uint8_t* p_udata = Buffer[1]; uint8_t* upoint = m_uTexture_data.get(); for (int i = 0; i < height/2; i++) { memcpy(upoint, p_udata, width/2); p_udata = p_udata + Stride[1]; upoint = upoint + width / 2; } // copy v const uint8_t* p_vdata = Buffer[2]; uint8_t* vpoint = m_vTexture_data.get(); for (int i = 0; i < height/2; i++) { memcpy(vpoint, p_vdata, width/2); p_vdata = p_vdata + Stride[2]; vpoint = vpoint + width / 2; } update(); } void QVideoRenderWidget::clearTextureColor() { m_yTexture_data.reset(); m_uTexture_data.reset(); m_vTexture_data.reset(); update(); } void QVideoRenderWidget::initializeGL() { initializeOpenGLFunctions();//Initializes OpenGL function resolution for the current context. glClearColor(0.0f, 0.0f, 0.0f, 1.0f); //设置背景色为黑色 //makeCurrent();//使用当前窗口的上下文 //创建shader program m_shaderProgram = new QOpenGLShaderProgram(this); m_shaderProgram->addShaderFromSourceCode(QOpenGLShader::Vertex, vertex_shader); m_shaderProgram->addShaderFromSourceCode(QOpenGLShader::Fragment, frag_shader); m_shaderProgram->link(); float vertices[] = { //顶点坐标 纹理坐标 -1.0f, -1.0f, 0.0f, 0.0f, 1.0f, //左下角 1.0f, -1.0f, 0.0f, 1.0f, 1.0f, //右下角 -1.0f, 1.0f, 0.0f, 0.0f, 0.0f, //左上角 1.0f, 1.0f, 0.0f, 1.0f, 0.0f //右上角 }; //创建VAO、VBO m_vao = new QOpenGLVertexArrayObject(this); m_vao->create(); m_vao->bind(); glPixelStorei(GL_UNPACK_ALIGNMENT, 1);//非常关键,设置对齐。如果stride不等于宽度,需要告诉gl数据的对齐方式。否则可能出现UV颜色与Y无法重叠的问题 m_vbo_yuv = new QOpenGLBuffer(QOpenGLBuffer::VertexBuffer); m_vbo_yuv->create();//相当于glGenBuffer m_vbo_yuv->bind(); //相当于glBindBuffer m_vbo_yuv->allocate(vertices, sizeof(vertices));//相当于glBufferData //告诉OpenGL如何读取顶点及纹理:首先得到属性的location,然后指定每个location的[数据类型、长度、读取步长、起始偏移量]这四个参数 // 如果在顶点着色器中没有指定layout(location=) 这个说明,则可以使用该方法获取到属性的location uint32_t aPos = m_shaderProgram->attributeLocation("aPos"); uint32_t aTexCoord = m_shaderProgram->attributeLocation("aTexCoord"); //告诉Shader顶点坐标如何读取,相当于调用了glVertexAttribPointer。这部执行完,只是告诉GPU如何读取,还需要激活对应顶点属性,否则GPU还是无法读取到数据的 m_shaderProgram->setAttributeBuffer(aPos, GL_FLOAT, 0, 3, sizeof(float) * 5); //告诉Shader纹理坐标如何读取,相当于调用了glVertexAttribPointer m_shaderProgram->setAttributeBuffer(aTexCoord, GL_FLOAT, 3*sizeof(float), 2, sizeof(float) * 5); //通过location激活对应的顶点属性,那么GPU才能读取相应顶点属性。默认情况下即使 m_shaderProgram->enableAttributeArray(aPos); m_shaderProgram->enableAttributeArray(aTexCoord); //此时已经完成了VBO与VAO绑定,可以对VBO和VAO进行解绑了 m_vao->release(); m_vbo_yuv->release(); } void QVideoRenderWidget::resizeGL(int w, int h) { Q_UNUSED(w); Q_UNUSED(h); } void QVideoRenderWidget::paintGL() { glClear(GL_COLOR_BUFFER_BIT);//渲染glClearColor设置的颜色 m_shaderProgram->bind(); m_vao->bind(); if (m_yTexture_data.use_count()!=0 && m_uTexture_data.use_count() != 0 && m_vTexture_data.use_count() != 0) { //告诉OpenGL每个着色器采样器属于哪个纹理单元,相当于调用 glUniform1i(glGetUniformLocation(ourShader.ID, "texture1"), 0); m_shaderProgram->setUniformValue("texY", 0); m_shaderProgram->setUniformValue("texU", 1); m_shaderProgram->setUniformValue("texV", 2); //设置YUV数据到纹理中 m_texture_2d_array[0]->setData(QOpenGLTexture::Red, QOpenGLTexture::UInt8, m_yTexture_data.get()); m_texture_2d_array[0]->bind(0);//激活纹理 m_texture_2d_array[1]->setData(QOpenGLTexture::Red, QOpenGLTexture::UInt8, m_uTexture_data.get()); m_texture_2d_array[1]->bind(1); m_texture_2d_array[2]->setData(QOpenGLTexture::Red, QOpenGLTexture::UInt8, m_vTexture_data.get()); m_texture_2d_array[2]->bind(2); glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);//使用VAO进行绘制 m_texture_2d_array[0]->release(); m_texture_2d_array[1]->release(); m_texture_2d_array[2]->release(); } m_vao->release(); m_shaderProgram->release(); }
[ "chengkeke@xdf.cn" ]
chengkeke@xdf.cn
bbdaad8eab2ed7e0b856b4f3a6b00574a0771908
50071106b807a17cbfa81ed9f14603e9d85dab79
/3Sicht/Temp/il2cppOutput/il2cppOutput/Il2CppGenericMethodPointerTable.cpp
eecdf8ddcaf9c35bf834092ca801d6dc0259606d
[]
no_license
JoJoMat/3Sicht_3
2b14f2f09dae6e2475bec46eeb28f2f8b3d666a2
d9dd3219b17c899f7e74c83b3d347985ec7173bf
refs/heads/master
2020-03-17T06:26:17.011640
2018-06-26T21:50:10
2018-06-26T21:50:10
133,355,449
0
0
null
null
null
null
UTF-8
C++
false
false
804,566
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include "class-internals.h" #include "codegen/il2cpp-codegen.h" extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisRuntimeObject_m1061365573_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisRuntimeObject_m895626464_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisRuntimeObject_m521876506_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisRuntimeObject_m2788686457_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisRuntimeObject_m780039149_gshared (); extern "C" void Array_InternalArray__Insert_TisRuntimeObject_m829673612_gshared (); extern "C" void Array_InternalArray__IndexOf_TisRuntimeObject_m1498065733_gshared (); extern "C" void Array_InternalArray__get_Item_TisRuntimeObject_m2330279297_gshared (); extern "C" void Array_InternalArray__set_Item_TisRuntimeObject_m4285049544_gshared (); extern "C" void Array_get_swapper_TisRuntimeObject_m2258489685_gshared (); extern "C" void Array_Sort_TisRuntimeObject_m85020251_gshared (); extern "C" void Array_Sort_TisRuntimeObject_TisRuntimeObject_m36732424_gshared (); extern "C" void Array_Sort_TisRuntimeObject_m4255439794_gshared (); extern "C" void Array_Sort_TisRuntimeObject_TisRuntimeObject_m1367771962_gshared (); extern "C" void Array_Sort_TisRuntimeObject_m475275282_gshared (); extern "C" void Array_Sort_TisRuntimeObject_TisRuntimeObject_m3380033719_gshared (); extern "C" void Array_Sort_TisRuntimeObject_m2728156023_gshared (); extern "C" void Array_Sort_TisRuntimeObject_TisRuntimeObject_m1003063565_gshared (); extern "C" void Array_Sort_TisRuntimeObject_m1437567983_gshared (); extern "C" void Array_Sort_TisRuntimeObject_m2943170623_gshared (); extern "C" void Array_qsort_TisRuntimeObject_TisRuntimeObject_m3184056212_gshared (); extern "C" void Array_compare_TisRuntimeObject_m3039563230_gshared (); extern "C" void Array_qsort_TisRuntimeObject_m1411767430_gshared (); extern "C" void Array_swap_TisRuntimeObject_TisRuntimeObject_m2177050148_gshared (); extern "C" void Array_swap_TisRuntimeObject_m53566345_gshared (); extern "C" void Array_Resize_TisRuntimeObject_m968409085_gshared (); extern "C" void Array_Resize_TisRuntimeObject_m1658325674_gshared (); extern "C" void Array_TrueForAll_TisRuntimeObject_m975684368_gshared (); extern "C" void Array_ForEach_TisRuntimeObject_m305217434_gshared (); extern "C" void Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m1163047977_gshared (); extern "C" void Array_FindLastIndex_TisRuntimeObject_m2295482160_gshared (); extern "C" void Array_FindLastIndex_TisRuntimeObject_m1647963004_gshared (); extern "C" void Array_FindLastIndex_TisRuntimeObject_m2914859451_gshared (); extern "C" void Array_FindIndex_TisRuntimeObject_m2944083098_gshared (); extern "C" void Array_FindIndex_TisRuntimeObject_m2253920087_gshared (); extern "C" void Array_FindIndex_TisRuntimeObject_m1672129868_gshared (); extern "C" void Array_BinarySearch_TisRuntimeObject_m770947464_gshared (); extern "C" void Array_BinarySearch_TisRuntimeObject_m3568587325_gshared (); extern "C" void Array_BinarySearch_TisRuntimeObject_m3808310464_gshared (); extern "C" void Array_BinarySearch_TisRuntimeObject_m961893957_gshared (); extern "C" void Array_IndexOf_TisRuntimeObject_m1240301136_gshared (); extern "C" void Array_IndexOf_TisRuntimeObject_m2755879071_gshared (); extern "C" void Array_IndexOf_TisRuntimeObject_m4048940068_gshared (); extern "C" void Array_LastIndexOf_TisRuntimeObject_m2379510054_gshared (); extern "C" void Array_LastIndexOf_TisRuntimeObject_m2638975840_gshared (); extern "C" void Array_LastIndexOf_TisRuntimeObject_m4256129932_gshared (); extern "C" void Array_FindAll_TisRuntimeObject_m1610030647_gshared (); extern "C" void Array_Exists_TisRuntimeObject_m2188141736_gshared (); extern "C" void Array_AsReadOnly_TisRuntimeObject_m2112537407_gshared (); extern "C" void Array_Find_TisRuntimeObject_m3366654318_gshared (); extern "C" void Array_FindLast_TisRuntimeObject_m1322295653_gshared (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m800271743_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1375766095_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3662936426_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3813347646_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m4145370587_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m913007673_AdjustorThunk (); extern "C" void ArrayReadOnlyList_1_get_Item_m3275158178_gshared (); extern "C" void ArrayReadOnlyList_1_set_Item_m195435846_gshared (); extern "C" void ArrayReadOnlyList_1_get_Count_m4067070299_gshared (); extern "C" void ArrayReadOnlyList_1_get_IsReadOnly_m3687088003_gshared (); extern "C" void ArrayReadOnlyList_1__ctor_m2986637366_gshared (); extern "C" void ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m1646542672_gshared (); extern "C" void ArrayReadOnlyList_1_Add_m2512965_gshared (); extern "C" void ArrayReadOnlyList_1_Clear_m583752151_gshared (); extern "C" void ArrayReadOnlyList_1_Contains_m3104807942_gshared (); extern "C" void ArrayReadOnlyList_1_CopyTo_m1615525345_gshared (); extern "C" void ArrayReadOnlyList_1_GetEnumerator_m1996858739_gshared (); extern "C" void ArrayReadOnlyList_1_IndexOf_m3070285270_gshared (); extern "C" void ArrayReadOnlyList_1_Insert_m2135691088_gshared (); extern "C" void ArrayReadOnlyList_1_Remove_m1886434108_gshared (); extern "C" void ArrayReadOnlyList_1_RemoveAt_m3263839274_gshared (); extern "C" void ArrayReadOnlyList_1_ReadOnlyError_m2372437592_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m3781222795_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m1233336434_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0__ctor_m3849356650_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m858423442_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Dispose_m740720339_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Reset_m468484277_gshared (); extern "C" void Comparer_1_get_Default_m955532339_gshared (); extern "C" void Comparer_1__ctor_m2187240463_gshared (); extern "C" void Comparer_1__cctor_m658175612_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m2254467403_gshared (); extern "C" void DefaultComparer__ctor_m2740545469_gshared (); extern "C" void DefaultComparer_Compare_m4167574466_gshared (); extern "C" void GenericComparer_1__ctor_m3325936871_gshared (); extern "C" void GenericComparer_1_Compare_m1834403076_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_get_Item_m355489265_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_set_Item_m3004846803_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m1405444137_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_get_SyncRoot_m2624485468_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m185947375_gshared (); extern "C" void Dictionary_2_get_Count_m1797529547_gshared (); extern "C" void Dictionary_2_get_Item_m1598946997_gshared (); extern "C" void Dictionary_2_set_Item_m1756571216_gshared (); extern "C" void Dictionary_2_get_Keys_m4108006725_gshared (); extern "C" void Dictionary_2_get_Values_m786887416_gshared (); extern "C" void Dictionary_2__ctor_m708317604_gshared (); extern "C" void Dictionary_2__ctor_m160681237_gshared (); extern "C" void Dictionary_2__ctor_m3893778414_gshared (); extern "C" void Dictionary_2__ctor_m4214077210_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_Add_m4109081375_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_Remove_m3321599987_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m2277145928_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m605138704_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m1063220191_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m2839505182_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_CopyTo_m27068836_gshared (); extern "C" void Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m2405287926_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m3270769191_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_GetEnumerator_m2864308741_gshared (); extern "C" void Dictionary_2_Init_m2670846130_gshared (); extern "C" void Dictionary_2_InitArrays_m261323892_gshared (); extern "C" void Dictionary_2_CopyToCheck_m3091063542_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m3467440197_gshared (); extern "C" void Dictionary_2_make_pair_m2796251664_gshared (); extern "C" void Dictionary_2_pick_key_m2459065302_gshared (); extern "C" void Dictionary_2_pick_value_m110055003_gshared (); extern "C" void Dictionary_2_CopyTo_m602402590_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m3520135933_gshared (); extern "C" void Dictionary_2_Resize_m1514691046_gshared (); extern "C" void Dictionary_2_Add_m3012675072_gshared (); extern "C" void Dictionary_2_Clear_m735415786_gshared (); extern "C" void Dictionary_2_ContainsKey_m2779636752_gshared (); extern "C" void Dictionary_2_ContainsValue_m1112258460_gshared (); extern "C" void Dictionary_2_GetObjectData_m3925856015_gshared (); extern "C" void Dictionary_2_OnDeserialization_m2718680465_gshared (); extern "C" void Dictionary_2_Remove_m120453767_gshared (); extern "C" void Dictionary_2_TryGetValue_m1570512094_gshared (); extern "C" void Dictionary_2_ToTKey_m3001432085_gshared (); extern "C" void Dictionary_2_ToTValue_m3922411703_gshared (); extern "C" void Dictionary_2_ContainsKeyValuePair_m1778894115_gshared (); extern "C" void Dictionary_2_GetEnumerator_m744221790_gshared (); extern "C" void Dictionary_2_U3CCopyToU3Em__0_m1688958209_gshared (); extern "C" void ShimEnumerator_get_Entry_m2222535689_gshared (); extern "C" void ShimEnumerator_get_Key_m3723168551_gshared (); extern "C" void ShimEnumerator_get_Value_m299816337_gshared (); extern "C" void ShimEnumerator_get_Current_m466008989_gshared (); extern "C" void ShimEnumerator__ctor_m2233334988_gshared (); extern "C" void ShimEnumerator_MoveNext_m920275559_gshared (); extern "C" void ShimEnumerator_Reset_m2505802806_gshared (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m2496478190_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3779374343_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m1987119682_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2983937311_AdjustorThunk (); extern "C" void Enumerator_get_Current_m4176976547_AdjustorThunk (); extern "C" void Enumerator_get_CurrentKey_m186503325_AdjustorThunk (); extern "C" void Enumerator_get_CurrentValue_m3338745702_AdjustorThunk (); extern "C" void Enumerator__ctor_m3324182150_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m127364948_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1177349169_AdjustorThunk (); extern "C" void Enumerator_Reset_m3433221214_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m1996681083_AdjustorThunk (); extern "C" void Enumerator_VerifyCurrent_m3087992914_AdjustorThunk (); extern "C" void Enumerator_Dispose_m3981538965_AdjustorThunk (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_get_IsReadOnly_m3157992222_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_get_IsSynchronized_m1634248423_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_get_SyncRoot_m1003293719_gshared (); extern "C" void KeyCollection_get_Count_m2117159956_gshared (); extern "C" void KeyCollection__ctor_m2492357513_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Add_m494496692_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Clear_m2692652147_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Contains_m3872629850_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Remove_m1465794535_gshared (); extern "C" void KeyCollection_System_Collections_Generic_IEnumerableU3CTKeyU3E_GetEnumerator_m1581998780_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_CopyTo_m2756696251_gshared (); extern "C" void KeyCollection_System_Collections_IEnumerable_GetEnumerator_m3639915599_gshared (); extern "C" void KeyCollection_CopyTo_m3771142613_gshared (); extern "C" void KeyCollection_GetEnumerator_m1620653010_gshared (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m3308799541_AdjustorThunk (); extern "C" void Enumerator_get_Current_m2666918164_AdjustorThunk (); extern "C" void Enumerator__ctor_m1408518527_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m600113779_AdjustorThunk (); extern "C" void Enumerator_Dispose_m1410808854_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m2795814929_AdjustorThunk (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m2252920151_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_get_IsSynchronized_m702279060_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_get_SyncRoot_m378882773_gshared (); extern "C" void ValueCollection_get_Count_m1228431254_gshared (); extern "C" void ValueCollection__ctor_m2589144683_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m2719680877_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m2231418884_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m2788297912_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m873703429_gshared (); extern "C" void ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m2145854468_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_CopyTo_m1736624698_gshared (); extern "C" void ValueCollection_System_Collections_IEnumerable_GetEnumerator_m867611359_gshared (); extern "C" void ValueCollection_CopyTo_m2956389258_gshared (); extern "C" void ValueCollection_GetEnumerator_m3184933048_gshared (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m2285759774_AdjustorThunk (); extern "C" void Enumerator_get_Current_m1812171614_AdjustorThunk (); extern "C" void Enumerator__ctor_m274067448_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2917518155_AdjustorThunk (); extern "C" void Enumerator_Dispose_m3831882424_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1216505623_AdjustorThunk (); extern "C" void Transform_1__ctor_m2432054060_gshared (); extern "C" void Transform_1_Invoke_m105422582_gshared (); extern "C" void Transform_1_BeginInvoke_m2406369028_gshared (); extern "C" void Transform_1_EndInvoke_m3464611542_gshared (); extern "C" void EqualityComparer_1_get_Default_m2134247227_gshared (); extern "C" void EqualityComparer_1__ctor_m1226987867_gshared (); extern "C" void EqualityComparer_1__cctor_m2229216760_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2234888621_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m180483247_gshared (); extern "C" void DefaultComparer__ctor_m2785366304_gshared (); extern "C" void DefaultComparer_GetHashCode_m3446749322_gshared (); extern "C" void DefaultComparer_Equals_m493988598_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m3847401727_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m3024628867_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m232882392_gshared (); extern "C" void KeyValuePair_2_get_Key_m3616154391_AdjustorThunk (); extern "C" void KeyValuePair_2_set_Key_m3439756417_AdjustorThunk (); extern "C" void KeyValuePair_2_get_Value_m1133818727_AdjustorThunk (); extern "C" void KeyValuePair_2_set_Value_m1577818753_AdjustorThunk (); extern "C" void KeyValuePair_2__ctor_m2379978259_AdjustorThunk (); extern "C" void KeyValuePair_2_ToString_m2228374540_AdjustorThunk (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2691025661_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m1632261736_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m1734500523_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m3758462990_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m4268539027_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m3911245036_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m552502527_gshared (); extern "C" void List_1_get_Capacity_m477456838_gshared (); extern "C" void List_1_set_Capacity_m1848905259_gshared (); extern "C" void List_1_get_Count_m2578084153_gshared (); extern "C" void List_1_get_Item_m3429602625_gshared (); extern "C" void List_1_set_Item_m467956411_gshared (); extern "C" void List_1__ctor_m1050391651_gshared (); extern "C" void List_1__ctor_m1009086596_gshared (); extern "C" void List_1__cctor_m857631386_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m4277243517_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m1072426657_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m2633715279_gshared (); extern "C" void List_1_System_Collections_IList_Add_m135794602_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m2617140172_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m2147252028_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m101659838_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m3079733979_gshared (); extern "C" void List_1_Add_m2010010167_gshared (); extern "C" void List_1_GrowIfNeeded_m3883258899_gshared (); extern "C" void List_1_AddCollection_m149925955_gshared (); extern "C" void List_1_AddEnumerable_m3589431244_gshared (); extern "C" void List_1_AddRange_m512686440_gshared (); extern "C" void List_1_AsReadOnly_m3931188076_gshared (); extern "C" void List_1_Clear_m417446133_gshared (); extern "C" void List_1_Contains_m3512536564_gshared (); extern "C" void List_1_CopyTo_m1107046416_gshared (); extern "C" void List_1_Find_m1570482308_gshared (); extern "C" void List_1_CheckMatch_m1267174972_gshared (); extern "C" void List_1_GetIndex_m2142993296_gshared (); extern "C" void List_1_GetEnumerator_m1890021129_gshared (); extern "C" void List_1_IndexOf_m4001833717_gshared (); extern "C" void List_1_Shift_m3434006642_gshared (); extern "C" void List_1_CheckIndex_m2752144736_gshared (); extern "C" void List_1_Insert_m3999169406_gshared (); extern "C" void List_1_CheckCollection_m882901420_gshared (); extern "C" void List_1_Remove_m3066209805_gshared (); extern "C" void List_1_RemoveAll_m850523263_gshared (); extern "C" void List_1_RemoveAt_m1328922483_gshared (); extern "C" void List_1_Reverse_m1530330158_gshared (); extern "C" void List_1_Sort_m2255577092_gshared (); extern "C" void List_1_Sort_m1421787270_gshared (); extern "C" void List_1_ToArray_m947305826_gshared (); extern "C" void List_1_TrimExcess_m1464440019_gshared (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m3373950736_AdjustorThunk (); extern "C" void Enumerator_get_Current_m3151885473_AdjustorThunk (); extern "C" void Enumerator__ctor_m3938023982_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m4157184873_AdjustorThunk (); extern "C" void Enumerator_Dispose_m4255813784_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m1588355104_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1527513816_AdjustorThunk (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3067433935_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m2495173517_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m2479151167_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m3620393055_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m912851640_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m2450803891_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m1245840806_gshared (); extern "C" void Collection_1_get_Count_m1439557314_gshared (); extern "C" void Collection_1_get_Item_m429829695_gshared (); extern "C" void Collection_1_set_Item_m1684325624_gshared (); extern "C" void Collection_1__ctor_m1376898809_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m4194959607_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m3543553986_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m3409091478_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m2280746269_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m1094330909_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m896462526_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m2330378506_gshared (); extern "C" void Collection_1_Add_m3002165671_gshared (); extern "C" void Collection_1_Clear_m2878609403_gshared (); extern "C" void Collection_1_ClearItems_m3473629723_gshared (); extern "C" void Collection_1_Contains_m3222322229_gshared (); extern "C" void Collection_1_CopyTo_m2403478356_gshared (); extern "C" void Collection_1_GetEnumerator_m3758841778_gshared (); extern "C" void Collection_1_IndexOf_m2694193795_gshared (); extern "C" void Collection_1_Insert_m425905491_gshared (); extern "C" void Collection_1_InsertItem_m3442436065_gshared (); extern "C" void Collection_1_Remove_m1906063519_gshared (); extern "C" void Collection_1_RemoveAt_m2852663586_gshared (); extern "C" void Collection_1_RemoveItem_m547891757_gshared (); extern "C" void Collection_1_SetItem_m3036962973_gshared (); extern "C" void Collection_1_IsValidItem_m2761956323_gshared (); extern "C" void Collection_1_ConvertItem_m82089564_gshared (); extern "C" void Collection_1_CheckWritable_m977553180_gshared (); extern "C" void Collection_1_IsSynchronized_m2538526955_gshared (); extern "C" void Collection_1_IsFixedSize_m133605360_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1236220829_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3734683640_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m754207087_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m843419588_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m1527392327_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m1070407257_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m4003928181_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m2034626354_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m887210948_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m3511793686_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m2761664076_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m2740520438_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m2219540105_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m3329379370_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m536877777_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m538353563_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3581094289_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m1078287960_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3645908496_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m1147413795_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m3057404717_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m3116032917_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m2575796389_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m855210743_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m120177801_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1146004852_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m1282511963_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m1450973777_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m3852247529_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m2818673370_gshared (); extern "C" void CustomAttributeData_UnboxValues_TisRuntimeObject_m135428054_gshared (); extern "C" void MonoProperty_GetterAdapterFrame_TisRuntimeObject_TisRuntimeObject_m3972492874_gshared (); extern "C" void MonoProperty_StaticGetterAdapterFrame_TisRuntimeObject_m4065796595_gshared (); extern "C" void Getter_2__ctor_m419924152_gshared (); extern "C" void Getter_2_Invoke_m1903644918_gshared (); extern "C" void Getter_2_BeginInvoke_m2617991787_gshared (); extern "C" void Getter_2_EndInvoke_m360193471_gshared (); extern "C" void StaticGetter_1__ctor_m2122384146_gshared (); extern "C" void StaticGetter_1_Invoke_m1102126299_gshared (); extern "C" void StaticGetter_1_BeginInvoke_m2600419369_gshared (); extern "C" void StaticGetter_1_EndInvoke_m2178125383_gshared (); extern "C" void Activator_CreateInstance_TisRuntimeObject_m806221875_gshared (); extern "C" void Action_1__ctor_m3440087355_gshared (); extern "C" void Action_1_Invoke_m311322625_gshared (); extern "C" void Action_1_BeginInvoke_m3281016298_gshared (); extern "C" void Action_1_EndInvoke_m3278274667_gshared (); extern "C" void Comparison_1__ctor_m3785833715_gshared (); extern "C" void Comparison_1_Invoke_m1029021892_gshared (); extern "C" void Comparison_1_BeginInvoke_m915033125_gshared (); extern "C" void Comparison_1_EndInvoke_m2478010663_gshared (); extern "C" void Converter_2__ctor_m3059313310_gshared (); extern "C" void Converter_2_Invoke_m2220022895_gshared (); extern "C" void Converter_2_BeginInvoke_m3296492155_gshared (); extern "C" void Converter_2_EndInvoke_m2718104535_gshared (); extern "C" void Predicate_1__ctor_m3884549188_gshared (); extern "C" void Predicate_1_Invoke_m3416559410_gshared (); extern "C" void Predicate_1_BeginInvoke_m121965034_gshared (); extern "C" void Predicate_1_EndInvoke_m1249537320_gshared (); extern "C" void Queue_1_System_Collections_ICollection_get_IsSynchronized_m3756886688_gshared (); extern "C" void Queue_1_System_Collections_ICollection_get_SyncRoot_m3752710819_gshared (); extern "C" void Queue_1_get_Count_m1010294281_gshared (); extern "C" void Queue_1__ctor_m1315711005_gshared (); extern "C" void Queue_1__ctor_m1520538743_gshared (); extern "C" void Queue_1_System_Collections_ICollection_CopyTo_m1381238417_gshared (); extern "C" void Queue_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1323349089_gshared (); extern "C" void Queue_1_System_Collections_IEnumerable_GetEnumerator_m1575899823_gshared (); extern "C" void Queue_1_Dequeue_m1949820287_gshared (); extern "C" void Queue_1_Peek_m3260056443_gshared (); extern "C" void Queue_1_GetEnumerator_m77213749_gshared (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m612272632_AdjustorThunk (); extern "C" void Enumerator_get_Current_m167144786_AdjustorThunk (); extern "C" void Enumerator__ctor_m2786901343_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2636486063_AdjustorThunk (); extern "C" void Enumerator_Dispose_m2147178829_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1638266641_AdjustorThunk (); extern "C" void Stack_1_System_Collections_ICollection_get_IsSynchronized_m1539046096_gshared (); extern "C" void Stack_1_System_Collections_ICollection_get_SyncRoot_m2098097639_gshared (); extern "C" void Stack_1_get_Count_m3408157211_gshared (); extern "C" void Stack_1__ctor_m1378959583_gshared (); extern "C" void Stack_1_System_Collections_ICollection_CopyTo_m1054745582_gshared (); extern "C" void Stack_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m2149678782_gshared (); extern "C" void Stack_1_System_Collections_IEnumerable_GetEnumerator_m1363265822_gshared (); extern "C" void Stack_1_Peek_m3794781229_gshared (); extern "C" void Stack_1_Pop_m1456191726_gshared (); extern "C" void Stack_1_Push_m1490794354_gshared (); extern "C" void Stack_1_GetEnumerator_m3406944153_gshared (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m3732337186_AdjustorThunk (); extern "C" void Enumerator_get_Current_m1667659980_AdjustorThunk (); extern "C" void Enumerator__ctor_m4283487163_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3722345629_AdjustorThunk (); extern "C" void Enumerator_Dispose_m528683406_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m3778067395_AdjustorThunk (); extern "C" void HashSet_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m932326475_gshared (); extern "C" void HashSet_1_get_Count_m2964592468_gshared (); extern "C" void HashSet_1__ctor_m3407365539_gshared (); extern "C" void HashSet_1__ctor_m496292356_gshared (); extern "C" void HashSet_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m2971716434_gshared (); extern "C" void HashSet_1_System_Collections_Generic_ICollectionU3CTU3E_CopyTo_m890156821_gshared (); extern "C" void HashSet_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m233456357_gshared (); extern "C" void HashSet_1_System_Collections_IEnumerable_GetEnumerator_m290677219_gshared (); extern "C" void HashSet_1_Init_m3816028331_gshared (); extern "C" void HashSet_1_InitArrays_m771550293_gshared (); extern "C" void HashSet_1_SlotsContainsAt_m305119738_gshared (); extern "C" void HashSet_1_CopyTo_m3865468104_gshared (); extern "C" void HashSet_1_CopyTo_m2502620744_gshared (); extern "C" void HashSet_1_Resize_m626962152_gshared (); extern "C" void HashSet_1_GetLinkHashCode_m3053354261_gshared (); extern "C" void HashSet_1_GetItemHashCode_m3354044758_gshared (); extern "C" void HashSet_1_Add_m2029516687_gshared (); extern "C" void HashSet_1_Clear_m3482708259_gshared (); extern "C" void HashSet_1_Contains_m3422306564_gshared (); extern "C" void HashSet_1_Remove_m1054781458_gshared (); extern "C" void HashSet_1_GetObjectData_m1906512877_gshared (); extern "C" void HashSet_1_OnDeserialization_m3019229117_gshared (); extern "C" void HashSet_1_GetEnumerator_m3636174652_gshared (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m4112336414_AdjustorThunk (); extern "C" void Enumerator_get_Current_m827635699_AdjustorThunk (); extern "C" void Enumerator__ctor_m3384875254_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m133384938_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1905266032_AdjustorThunk (); extern "C" void Enumerator_Dispose_m3509624940_AdjustorThunk (); extern "C" void Enumerator_CheckState_m599655721_AdjustorThunk (); extern "C" void PrimeHelper__cctor_m1530032506_gshared (); extern "C" void PrimeHelper_TestPrime_m3010210482_gshared (); extern "C" void PrimeHelper_CalcPrime_m622727595_gshared (); extern "C" void PrimeHelper_ToPrime_m3690412876_gshared (); extern "C" void Enumerable_Any_TisRuntimeObject_m4198608373_gshared (); extern "C" void Enumerable_ElementAt_TisRuntimeObject_m1929135165_gshared (); extern "C" void Enumerable_ElementAt_TisRuntimeObject_m2310517236_gshared (); extern "C" void Enumerable_First_TisRuntimeObject_m3886887804_gshared (); extern "C" void Enumerable_Where_TisRuntimeObject_m3304874649_gshared (); extern "C" void Enumerable_CreateWhereIterator_TisRuntimeObject_m3902582581_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_Generic_IEnumeratorU3CTSourceU3E_get_Current_m2522591477_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_IEnumerator_get_Current_m2506618260_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1__ctor_m229492427_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_IEnumerable_GetEnumerator_m913688147_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_Generic_IEnumerableU3CTSourceU3E_GetEnumerator_m424042336_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_MoveNext_m677996141_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_Dispose_m3188639800_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_Reset_m2752060840_gshared (); extern "C" void Action_2__ctor_m3544748329_gshared (); extern "C" void Action_2_Invoke_m2552234505_gshared (); extern "C" void Action_2_BeginInvoke_m2369053499_gshared (); extern "C" void Action_2_EndInvoke_m2463206587_gshared (); extern "C" void Func_2__ctor_m1750628244_gshared (); extern "C" void Func_2_Invoke_m643249845_gshared (); extern "C" void Func_2_BeginInvoke_m588850945_gshared (); extern "C" void Func_2_EndInvoke_m467107774_gshared (); extern "C" void Func_3__ctor_m1838222199_gshared (); extern "C" void Func_3_Invoke_m2029885960_gshared (); extern "C" void Func_3_BeginInvoke_m3358642834_gshared (); extern "C" void Func_3_EndInvoke_m3268133350_gshared (); extern "C" void ScriptableObject_CreateInstance_TisRuntimeObject_m3905140222_gshared (); extern "C" void Component_GetComponent_TisRuntimeObject_m3911438514_gshared (); extern "C" void Component_GetComponentInChildren_TisRuntimeObject_m3677314132_gshared (); extern "C" void Component_GetComponentInChildren_TisRuntimeObject_m213871049_gshared (); extern "C" void Component_GetComponentsInChildren_TisRuntimeObject_m383824618_gshared (); extern "C" void Component_GetComponentsInChildren_TisRuntimeObject_m2622688794_gshared (); extern "C" void Component_GetComponentInParent_TisRuntimeObject_m1122972099_gshared (); extern "C" void Component_GetComponentsInParent_TisRuntimeObject_m1857724459_gshared (); extern "C" void Component_GetComponents_TisRuntimeObject_m3116428220_gshared (); extern "C" void Component_GetComponents_TisRuntimeObject_m882198082_gshared (); extern "C" void GameObject_GetComponent_TisRuntimeObject_m2623187931_gshared (); extern "C" void GameObject_GetComponentInChildren_TisRuntimeObject_m3964687670_gshared (); extern "C" void GameObject_GetComponentInChildren_TisRuntimeObject_m1303988628_gshared (); extern "C" void GameObject_GetComponents_TisRuntimeObject_m200632572_gshared (); extern "C" void GameObject_GetComponents_TisRuntimeObject_m3031919194_gshared (); extern "C" void GameObject_GetComponentsInChildren_TisRuntimeObject_m550503383_gshared (); extern "C" void GameObject_GetComponentsInChildren_TisRuntimeObject_m834439109_gshared (); extern "C" void GameObject_GetComponentsInChildren_TisRuntimeObject_m981462682_gshared (); extern "C" void GameObject_GetComponentsInParent_TisRuntimeObject_m312122771_gshared (); extern "C" void GameObject_AddComponent_TisRuntimeObject_m1936832001_gshared (); extern "C" void Mesh_GetAllocArrayFromChannel_TisRuntimeObject_m30292444_gshared (); extern "C" void Mesh_GetAllocArrayFromChannel_TisRuntimeObject_m521155822_gshared (); extern "C" void Mesh_SafeLength_TisRuntimeObject_m23144414_gshared (); extern "C" void Mesh_SetArrayForChannel_TisRuntimeObject_m3414184877_gshared (); extern "C" void Mesh_SetListForChannel_TisRuntimeObject_m2219216180_gshared (); extern "C" void Mesh_SetListForChannel_TisRuntimeObject_m1091554221_gshared (); extern "C" void Mesh_SetUvsImpl_TisRuntimeObject_m3795827252_gshared (); extern "C" void Resources_GetBuiltinResource_TisRuntimeObject_m1258805920_gshared (); extern "C" void Object_Instantiate_TisRuntimeObject_m2529452318_gshared (); extern "C" void Object_Instantiate_TisRuntimeObject_m3137538187_gshared (); extern "C" void PlayableHandle_IsPlayableOfType_TisRuntimeObject_m1482431189_AdjustorThunk (); extern "C" void AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m2284308923_gshared (); extern "C" void BaseInvokableCall_ThrowOnInvalidArg_TisRuntimeObject_m1513315670_gshared (); extern "C" void InvokableCall_1__ctor_m1399418579_gshared (); extern "C" void InvokableCall_1__ctor_m3675005126_gshared (); extern "C" void InvokableCall_1_add_Delegate_m214925300_gshared (); extern "C" void InvokableCall_1_remove_Delegate_m1732743910_gshared (); extern "C" void InvokableCall_1_Invoke_m3497402695_gshared (); extern "C" void InvokableCall_1_Invoke_m3780078352_gshared (); extern "C" void InvokableCall_1_Find_m3855095711_gshared (); extern "C" void InvokableCall_2__ctor_m2980086722_gshared (); extern "C" void InvokableCall_2_Invoke_m3880183626_gshared (); extern "C" void InvokableCall_2_Find_m4184885066_gshared (); extern "C" void InvokableCall_3__ctor_m51380105_gshared (); extern "C" void InvokableCall_3_Invoke_m4178052795_gshared (); extern "C" void InvokableCall_3_Find_m2951247658_gshared (); extern "C" void InvokableCall_4__ctor_m2928080066_gshared (); extern "C" void InvokableCall_4_Invoke_m1364529709_gshared (); extern "C" void InvokableCall_4_Find_m3126866019_gshared (); extern "C" void CachedInvokableCall_1__ctor_m121495989_gshared (); extern "C" void CachedInvokableCall_1_Invoke_m2061631442_gshared (); extern "C" void CachedInvokableCall_1_Invoke_m2182990583_gshared (); extern "C" void UnityAction_1__ctor_m2126082808_gshared (); extern "C" void UnityAction_1_Invoke_m3644766083_gshared (); extern "C" void UnityAction_1_BeginInvoke_m3223624649_gshared (); extern "C" void UnityAction_1_EndInvoke_m65894640_gshared (); extern "C" void UnityEvent_1__ctor_m2855279480_gshared (); extern "C" void UnityEvent_1_AddListener_m1647046786_gshared (); extern "C" void UnityEvent_1_RemoveListener_m2702756690_gshared (); extern "C" void UnityEvent_1_FindMethod_Impl_m2142463460_gshared (); extern "C" void UnityEvent_1_GetDelegate_m1984546387_gshared (); extern "C" void UnityEvent_1_GetDelegate_m1514210201_gshared (); extern "C" void UnityEvent_1_Invoke_m2945776058_gshared (); extern "C" void UnityAction_2__ctor_m3325273233_gshared (); extern "C" void UnityAction_2_Invoke_m4024552531_gshared (); extern "C" void UnityAction_2_BeginInvoke_m2840674252_gshared (); extern "C" void UnityAction_2_EndInvoke_m6160853_gshared (); extern "C" void UnityEvent_2__ctor_m3803756136_gshared (); extern "C" void UnityEvent_2_FindMethod_Impl_m3354524215_gshared (); extern "C" void UnityEvent_2_GetDelegate_m3807668201_gshared (); extern "C" void UnityAction_3__ctor_m1740681241_gshared (); extern "C" void UnityAction_3_Invoke_m1337776202_gshared (); extern "C" void UnityAction_3_BeginInvoke_m1839123188_gshared (); extern "C" void UnityAction_3_EndInvoke_m2366393261_gshared (); extern "C" void UnityEvent_3__ctor_m3929043880_gshared (); extern "C" void UnityEvent_3_FindMethod_Impl_m177743803_gshared (); extern "C" void UnityEvent_3_GetDelegate_m211316539_gshared (); extern "C" void UnityAction_4__ctor_m182154702_gshared (); extern "C" void UnityAction_4_Invoke_m3626668293_gshared (); extern "C" void UnityAction_4_BeginInvoke_m2320576894_gshared (); extern "C" void UnityAction_4_EndInvoke_m703135933_gshared (); extern "C" void UnityEvent_4__ctor_m473803078_gshared (); extern "C" void UnityEvent_4_FindMethod_Impl_m2141028291_gshared (); extern "C" void UnityEvent_4_GetDelegate_m4249785950_gshared (); extern "C" void ExecuteEvents_ValidateEventData_TisRuntimeObject_m2692109954_gshared (); extern "C" void ExecuteEvents_Execute_TisRuntimeObject_m1195791612_gshared (); extern "C" void ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m2007576797_gshared (); extern "C" void ExecuteEvents_ShouldSendToComponent_TisRuntimeObject_m3349623293_gshared (); extern "C" void ExecuteEvents_GetEventList_TisRuntimeObject_m183275163_gshared (); extern "C" void ExecuteEvents_CanHandleEvent_TisRuntimeObject_m2833515883_gshared (); extern "C" void ExecuteEvents_GetEventHandler_TisRuntimeObject_m375711041_gshared (); extern "C" void EventFunction_1__ctor_m3207717260_gshared (); extern "C" void EventFunction_1_Invoke_m844862080_gshared (); extern "C" void EventFunction_1_BeginInvoke_m1553983874_gshared (); extern "C" void EventFunction_1_EndInvoke_m3570692597_gshared (); extern "C" void Dropdown_GetOrAddComponent_TisRuntimeObject_m2648300723_gshared (); extern "C" void SetPropertyUtility_SetClass_TisRuntimeObject_m3506358140_gshared (); extern "C" void LayoutGroup_SetProperty_TisRuntimeObject_m813420649_gshared (); extern "C" void IndexedSet_1_get_Count_m3510019948_gshared (); extern "C" void IndexedSet_1_get_IsReadOnly_m1011840144_gshared (); extern "C" void IndexedSet_1_get_Item_m3243149242_gshared (); extern "C" void IndexedSet_1_set_Item_m3375988439_gshared (); extern "C" void IndexedSet_1__ctor_m3212275535_gshared (); extern "C" void IndexedSet_1_Add_m3958875218_gshared (); extern "C" void IndexedSet_1_AddUnique_m3388388319_gshared (); extern "C" void IndexedSet_1_Remove_m1749165782_gshared (); extern "C" void IndexedSet_1_GetEnumerator_m4027201741_gshared (); extern "C" void IndexedSet_1_System_Collections_IEnumerable_GetEnumerator_m2799238754_gshared (); extern "C" void IndexedSet_1_Clear_m451795416_gshared (); extern "C" void IndexedSet_1_Contains_m695402695_gshared (); extern "C" void IndexedSet_1_CopyTo_m345797441_gshared (); extern "C" void IndexedSet_1_IndexOf_m1548095776_gshared (); extern "C" void IndexedSet_1_Insert_m2525240425_gshared (); extern "C" void IndexedSet_1_RemoveAt_m702723071_gshared (); extern "C" void IndexedSet_1_RemoveAll_m2119606941_gshared (); extern "C" void IndexedSet_1_Sort_m1054890392_gshared (); extern "C" void ListPool_1_Get_m2716078124_gshared (); extern "C" void ListPool_1_Release_m480042757_gshared (); extern "C" void ListPool_1__cctor_m2754104963_gshared (); extern "C" void ListPool_1_U3Cs_ListPoolU3Em__0_m1708627665_gshared (); extern "C" void ObjectPool_1_get_countAll_m182155429_gshared (); extern "C" void ObjectPool_1_set_countAll_m3784122210_gshared (); extern "C" void ObjectPool_1_get_countActive_m4201190489_gshared (); extern "C" void ObjectPool_1_get_countInactive_m944127356_gshared (); extern "C" void ObjectPool_1__ctor_m1224093248_gshared (); extern "C" void ObjectPool_1_Get_m2003462831_gshared (); extern "C" void ObjectPool_1_Release_m1651503565_gshared (); extern "C" void JSONLazyCreator_Set_TisRuntimeObject_m1142734845_gshared (); extern "C" void DragMe_FindInParents_TisRuntimeObject_m2778210754_gshared (); extern "C" void UnityEvent_1_FindMethod_Impl_m2128067185_gshared (); extern "C" void UnityEvent_1_GetDelegate_m882894867_gshared (); extern "C" void UnityEvent_1_FindMethod_Impl_m2254601784_gshared (); extern "C" void UnityEvent_1_GetDelegate_m718679363_gshared (); extern "C" void UnityEvent_1_FindMethod_Impl_m4258129175_gshared (); extern "C" void UnityEvent_1_GetDelegate_m1951767835_gshared (); extern "C" void UnityEvent_1_FindMethod_Impl_m4045542878_gshared (); extern "C" void UnityEvent_1_GetDelegate_m2013878526_gshared (); extern "C" void UnityEvent_1_FindMethod_Impl_m3528377140_gshared (); extern "C" void UnityEvent_1_GetDelegate_m619894016_gshared (); extern "C" void Dictionary_2__ctor_m1044343494_gshared (); extern "C" void Dictionary_2_Add_m139753235_gshared (); extern "C" void Dictionary_2_TryGetValue_m4007148950_gshared (); extern "C" void GenericComparer_1__ctor_m786446731_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m4161447419_gshared (); extern "C" void GenericComparer_1__ctor_m463544340_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m1964679576_gshared (); extern "C" void Nullable_1__ctor_m761154185_AdjustorThunk (); extern "C" void Nullable_1_get_HasValue_m3184086096_AdjustorThunk (); extern "C" void Nullable_1_get_Value_m520687914_AdjustorThunk (); extern "C" void GenericComparer_1__ctor_m4148046422_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m3705102400_gshared (); extern "C" void CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t3886750721_m3671563852_gshared (); extern "C" void Array_AsReadOnly_TisCustomAttributeTypedArgument_t3886750721_m357286841_gshared (); extern "C" void CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t2457599825_m2685380802_gshared (); extern "C" void Array_AsReadOnly_TisCustomAttributeNamedArgument_t2457599825_m3278017012_gshared (); extern "C" void GenericComparer_1__ctor_m4053634897_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m143310818_gshared (); extern "C" void Dictionary_2__ctor_m3770216999_gshared (); extern "C" void Dictionary_2_Add_m3192830802_gshared (); extern "C" void Array_BinarySearch_TisInt32_t4167366966_m2054927821_gshared (); extern "C" void Dictionary_2_TryGetValue_m5539851_gshared (); extern "C" void Dictionary_2__ctor_m1148323402_gshared (); extern "C" void CachedInvokableCall_1__ctor_m1362223084_gshared (); extern "C" void CachedInvokableCall_1__ctor_m56745344_gshared (); extern "C" void CachedInvokableCall_1__ctor_m1848156342_gshared (); extern "C" void Mesh_SafeLength_TisInt32_t4167366966_m3578136558_gshared (); extern "C" void Mesh_GetAllocArrayFromChannel_TisVector3_t298406706_m4238274547_gshared (); extern "C" void Mesh_SetArrayForChannel_TisVector3_t298406706_m4086366530_gshared (); extern "C" void Mesh_GetAllocArrayFromChannel_TisVector4_t2979484471_m1561167087_gshared (); extern "C" void Mesh_GetAllocArrayFromChannel_TisVector2_t524314224_m2791133860_gshared (); extern "C" void Mesh_SetArrayForChannel_TisVector2_t524314224_m2029196376_gshared (); extern "C" void Mesh_GetAllocArrayFromChannel_TisColor32_t2751477055_m1188676107_gshared (); extern "C" void Mesh_SetListForChannel_TisVector3_t298406706_m1697917516_gshared (); extern "C" void Mesh_SetListForChannel_TisVector4_t2979484471_m3114307207_gshared (); extern "C" void Mesh_SetListForChannel_TisColor32_t2751477055_m854653016_gshared (); extern "C" void Mesh_SetUvsImpl_TisVector2_t524314224_m2112189020_gshared (); extern "C" void List_1__ctor_m2102348400_gshared (); extern "C" void List_1_Add_m996052063_gshared (); extern "C" void UnityEvent_1_Invoke_m980174627_gshared (); extern "C" void Func_2__ctor_m304659289_gshared (); extern "C" void UnityEvent_1__ctor_m44327589_gshared (); extern "C" void UnityAction_2_Invoke_m2443720087_gshared (); extern "C" void UnityAction_1_Invoke_m1154995372_gshared (); extern "C" void UnityAction_2_Invoke_m520086341_gshared (); extern "C" void Queue_1__ctor_m2629644020_gshared (); extern "C" void Queue_1_Dequeue_m4205589848_gshared (); extern "C" void Queue_1_get_Count_m545828861_gshared (); extern "C" void List_1__ctor_m3160508110_gshared (); extern "C" void List_1__ctor_m2677308577_gshared (); extern "C" void List_1__ctor_m1793659374_gshared (); extern "C" void PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_t320595731_m2335301355_AdjustorThunk (); extern "C" void PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t3739674446_m1177349756_AdjustorThunk (); extern "C" void PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_t4189659927_m1653780724_AdjustorThunk (); extern "C" void Action_2_Invoke_m4269707513_gshared (); extern "C" void Action_1_Invoke_m1260265150_gshared (); extern "C" void Action_2__ctor_m371134203_gshared (); extern "C" void Dictionary_2_TryGetValue_m2867451530_gshared (); extern "C" void Dictionary_2_set_Item_m446796511_gshared (); extern "C" void Dictionary_2__ctor_m203116983_gshared (); extern "C" void Func_3_Invoke_m3956961358_gshared (); extern "C" void Func_2_Invoke_m1103204028_gshared (); extern "C" void List_1__ctor_m3189641231_gshared (); extern "C" void List_1_get_Item_m318301083_gshared (); extern "C" void List_1_get_Count_m3704073514_gshared (); extern "C" void List_1_Clear_m2343285148_gshared (); extern "C" void List_1_Sort_m3983681507_gshared (); extern "C" void Comparison_1__ctor_m839404374_gshared (); extern "C" void List_1_Add_m3998968448_gshared (); extern "C" void Comparison_1__ctor_m3946937666_gshared (); extern "C" void Array_Sort_TisRaycastHit_t1187910868_m969961653_gshared (); extern "C" void Dictionary_2_Add_m1032177729_gshared (); extern "C" void Dictionary_2_Remove_m2116338307_gshared (); extern "C" void Dictionary_2_get_Values_m2660935657_gshared (); extern "C" void ValueCollection_GetEnumerator_m467226975_gshared (); extern "C" void Enumerator_get_Current_m59367935_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m4250006211_AdjustorThunk (); extern "C" void Enumerator_Dispose_m3629451996_AdjustorThunk (); extern "C" void Dictionary_2_Clear_m3607329374_gshared (); extern "C" void Dictionary_2_GetEnumerator_m336407494_gshared (); extern "C" void Enumerator_get_Current_m1153027106_AdjustorThunk (); extern "C" void KeyValuePair_2_get_Value_m3431978132_AdjustorThunk (); extern "C" void KeyValuePair_2_get_Key_m1312675473_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m372188218_AdjustorThunk (); extern "C" void Enumerator_Dispose_m2658583404_AdjustorThunk (); extern "C" void KeyValuePair_2_ToString_m171262776_AdjustorThunk (); extern "C" void SetPropertyUtility_SetStruct_TisAspectMode_t951188678_m4079134829_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisSingle_t2195714798_m775961307_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisFitMode_t2058464158_m783440714_gshared (); extern "C" void UnityEvent_1_Invoke_m2955462519_gshared (); extern "C" void UnityEvent_1_AddListener_m868896826_gshared (); extern "C" void UnityEvent_1__ctor_m4197236747_gshared (); extern "C" void UnityEvent_1_Invoke_m3136789473_gshared (); extern "C" void UnityEvent_1_AddListener_m1077547778_gshared (); extern "C" void UnityEvent_1__ctor_m2695294233_gshared (); extern "C" void TweenRunner_1__ctor_m2159360697_gshared (); extern "C" void TweenRunner_1_Init_m3440776157_gshared (); extern "C" void UnityAction_1__ctor_m1441173728_gshared (); extern "C" void UnityEvent_1_AddListener_m1917460257_gshared (); extern "C" void UnityAction_1__ctor_m4156950658_gshared (); extern "C" void TweenRunner_1_StartTween_m1277416251_gshared (); extern "C" void TweenRunner_1__ctor_m3547774147_gshared (); extern "C" void TweenRunner_1_Init_m3685604772_gshared (); extern "C" void TweenRunner_1_StopTween_m4020807896_gshared (); extern "C" void UnityAction_1__ctor_m4211782467_gshared (); extern "C" void TweenRunner_1_StartTween_m1329285191_gshared (); extern "C" void LayoutGroup_SetProperty_TisCorner_t2850903084_m3424038417_gshared (); extern "C" void LayoutGroup_SetProperty_TisAxis_t2922767740_m3210776553_gshared (); extern "C" void LayoutGroup_SetProperty_TisVector2_t524314224_m574672978_gshared (); extern "C" void LayoutGroup_SetProperty_TisConstraint_t1569595837_m286205184_gshared (); extern "C" void LayoutGroup_SetProperty_TisInt32_t4167366966_m1297098443_gshared (); extern "C" void LayoutGroup_SetProperty_TisSingle_t2195714798_m4200697781_gshared (); extern "C" void LayoutGroup_SetProperty_TisBoolean_t4021514083_m123151588_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisType_t3815042632_m1552100398_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisBoolean_t4021514083_m3978484072_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisFillMethod_t1221938191_m169314664_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisInt32_t4167366966_m845536444_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisContentType_t4244931986_m1984637216_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisLineType_t3109191858_m1453271124_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisInputType_t1324044641_m3940799413_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisTouchScreenKeyboardType_t3568928621_m1436572660_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisCharacterValidation_t1183248476_m2943001579_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisChar_t4197180777_m1934740893_gshared (); extern "C" void LayoutGroup_SetProperty_TisTextAnchor_t3760248182_m1432069665_gshared (); extern "C" void Func_2__ctor_m2010220105_gshared (); extern "C" void Func_2_Invoke_m3452871365_gshared (); extern "C" void UnityEvent_1_Invoke_m1369333103_gshared (); extern "C" void UnityEvent_1__ctor_m1629106407_gshared (); extern "C" void ListPool_1_Get_m1640687839_gshared (); extern "C" void List_1_get_Count_m1738117266_gshared (); extern "C" void List_1_get_Capacity_m1379969350_gshared (); extern "C" void List_1_set_Capacity_m3730606979_gshared (); extern "C" void ListPool_1_Release_m1375022592_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisDirection_t2639783532_m3074622628_gshared (); extern "C" void UnityEvent_1_RemoveListener_m1209587995_gshared (); extern "C" void UnityEvent_1_Invoke_m1615022310_gshared (); extern "C" void UnityEvent_1__ctor_m1701369400_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisNavigation_t2995866575_m501864514_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisTransition_t1673715936_m4121454238_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisColorBlock_t1308791080_m1516733110_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisSpriteState_t480832711_m2824386568_gshared (); extern "C" void List_1_get_Item_m1681326719_gshared (); extern "C" void List_1_Add_m3617587075_gshared (); extern "C" void List_1_set_Item_m3286577148_gshared (); extern "C" void SetPropertyUtility_SetStruct_TisDirection_t532465023_m3453151692_gshared (); extern "C" void ListPool_1_Get_m2134867389_gshared (); extern "C" void ListPool_1_Get_m3974720867_gshared (); extern "C" void ListPool_1_Get_m895273276_gshared (); extern "C" void ListPool_1_Get_m437256342_gshared (); extern "C" void ListPool_1_Get_m28702544_gshared (); extern "C" void List_1_AddRange_m1322589985_gshared (); extern "C" void List_1_AddRange_m3551702064_gshared (); extern "C" void List_1_AddRange_m2540016062_gshared (); extern "C" void List_1_AddRange_m38132872_gshared (); extern "C" void List_1_AddRange_m869230131_gshared (); extern "C" void List_1_Clear_m1176347092_gshared (); extern "C" void List_1_Clear_m1849808068_gshared (); extern "C" void List_1_Clear_m1460450211_gshared (); extern "C" void List_1_Clear_m3411001434_gshared (); extern "C" void List_1_Clear_m3101899268_gshared (); extern "C" void List_1_get_Count_m3130412464_gshared (); extern "C" void List_1_get_Count_m65032495_gshared (); extern "C" void List_1_get_Item_m2540237484_gshared (); extern "C" void List_1_get_Item_m1066348555_gshared (); extern "C" void List_1_get_Item_m2760508249_gshared (); extern "C" void List_1_get_Item_m2341429240_gshared (); extern "C" void List_1_set_Item_m1155406533_gshared (); extern "C" void List_1_set_Item_m1129357134_gshared (); extern "C" void List_1_set_Item_m965210213_gshared (); extern "C" void List_1_set_Item_m2642958258_gshared (); extern "C" void ListPool_1_Release_m3347270737_gshared (); extern "C" void ListPool_1_Release_m3155447159_gshared (); extern "C" void ListPool_1_Release_m1647594459_gshared (); extern "C" void ListPool_1_Release_m3090018896_gshared (); extern "C" void ListPool_1_Release_m1936830020_gshared (); extern "C" void List_1_Add_m1671420930_gshared (); extern "C" void List_1_Add_m2292730652_gshared (); extern "C" void List_1_Add_m973719390_gshared (); extern "C" void List_1_Add_m1870400422_gshared (); extern "C" void Enumerable_ElementAt_TisKeyValuePair_2_t3838208718_m3515065688_gshared (); extern "C" void Func_2__ctor_m3958147523_gshared (); extern "C" void Enumerable_Where_TisKeyValuePair_2_t3838208718_m3483801365_gshared (); extern "C" void Enumerable_First_TisKeyValuePair_2_t3838208718_m3761269173_gshared (); extern "C" void Dictionary_2_get_Item_m2218474045_gshared (); extern "C" void List_1__ctor_m3312630909_gshared (); extern "C" void List_1_Clear_m79520251_gshared (); extern "C" void List_1_Add_m3722182463_gshared (); extern "C" void List_1_get_Item_m3809990321_gshared (); extern "C" void List_1_get_Count_m1195256785_gshared (); extern "C" void List_1_set_Item_m1783050219_gshared (); extern "C" void List_1_RemoveAt_m621558353_gshared (); extern "C" void Array_get_swapper_TisLevelManagerList_t2308881597_m1217505319_gshared (); extern "C" void Array_get_swapper_TisInt32_t4167366966_m2419671408_gshared (); extern "C" void Array_get_swapper_TisCustomAttributeNamedArgument_t2457599825_m1450040702_gshared (); extern "C" void Array_get_swapper_TisCustomAttributeTypedArgument_t3886750721_m1458420812_gshared (); extern "C" void Array_get_swapper_TisColor32_t2751477055_m2555577594_gshared (); extern "C" void Array_get_swapper_TisRaycastResult_t2422751240_m1178035085_gshared (); extern "C" void Array_get_swapper_TisUICharInfo_t1969298608_m4037761048_gshared (); extern "C" void Array_get_swapper_TisUILineInfo_t335496833_m2775264060_gshared (); extern "C" void Array_get_swapper_TisUIVertex_t1250770280_m2037419490_gshared (); extern "C" void Array_get_swapper_TisVector2_t524314224_m943727961_gshared (); extern "C" void Array_get_swapper_TisVector3_t298406706_m1473526098_gshared (); extern "C" void Array_get_swapper_TisVector4_t2979484471_m41529317_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisBenutzerPW_t3993975976_m1398484745_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisLevelManagerList_t2308881597_m1881868223_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisModels_t93544135_m3186343124_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisTableRange_t2273327377_m921675880_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisClientCertificateType_t2322709846_m979588985_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisBoolean_t4021514083_m991923502_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisByte_t2712847921_m4132781172_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisChar_t4197180777_m4134415232_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t1489291961_m3228980187_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisLink_t1298993810_m2071535975_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4266255930_m4020969876_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2117714080_m191679270_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1159377151_m3710116558_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1305230034_m2861546587_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3838208718_m1849496545_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisLink_t871362263_m1879441506_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisSlot_t646771150_m1335067453_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisSlot_t1619562839_m2484168669_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisDateTime_t2547387390_m623344042_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisDecimal_t3966699860_m3588127643_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisDouble_t339827693_m1370426531_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisInt16_t3856708424_m1213833830_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisInt32_t4167366966_m2673978540_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisInt64_t2408544963_m2538937348_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisIntPtr_t_m707320967_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t2457599825_m2230235891_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t3886750721_m2404127491_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisLabelData_t1310448249_m249635465_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisLabelFixup_t2905765948_m1517918608_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisILTokenInfo_t2153999167_m4165172933_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisMonoResource_t119149808_m1944325407_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisMonoWin32Resource_t206024608_m2666763913_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisRefEmitPermissionSet_t715845335_m2515392462_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisParameterModifier_t376389310_m2736109492_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisResourceCacheItem_t1320965396_m4089592460_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisResourceInfo_t2484257846_m1024839088_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisTypeTag_t4285455534_m4104740926_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisSByte_t428380402_m985926950_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t3142710829_m600667461_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisSingle_t2195714798_m875988375_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisMark_t1839454258_m3279817123_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisTimeSpan_t129343636_m567274387_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisUInt16_t278453288_m1161854142_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisUInt32_t346584147_m1547644847_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisUInt64_t1634845782_m3894707600_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisUriScheme_t3261313531_m1005843216_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisToggles_t2831120859_m3417641089_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisTogglesTut_t2696597271_m2443702875_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisColor_t3622910849_m2433715214_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisColor32_t2751477055_m1410720474_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisContactPoint_t3605395583_m473219016_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisRaycastResult_t2422751240_m2980005001_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisKeyframe_t2174701810_m2458282719_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisPlayableBinding_t202000793_m2589468724_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisRaycastHit_t1187910868_m371189204_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t3865340945_m2122685166_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisHitInfo_t143095646_m31821323_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisGcAchievementData_t410448212_m2705037158_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisGcScoreData_t4278176256_m2600351227_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisTouch_t2985979242_m1978004139_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisContentType_t4244931986_m3524495065_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisUICharInfo_t1969298608_m1364797669_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisUILineInfo_t335496833_m861194438_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisUIVertex_t1250770280_m2970807315_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisWorkRequest_t1197224859_m2940797567_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisVector2_t524314224_m4002355332_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisVector3_t298406706_m1178007448_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisVector4_t2979484471_m3196023689_gshared (); extern "C" void Array_InternalArray__ICollection_Contains_TisWorlds_t2374095355_m267354811_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisBenutzerPW_t3993975976_m1137676970_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisLevelManagerList_t2308881597_m2256064610_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisModels_t93544135_m2134570873_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisTableRange_t2273327377_m184333359_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisClientCertificateType_t2322709846_m3127641465_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisBoolean_t4021514083_m1493995952_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisByte_t2712847921_m43362844_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisChar_t4197180777_m3176096199_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t1489291961_m1345945714_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisLink_t1298993810_m4188386099_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4266255930_m4048899100_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2117714080_m78869401_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1159377151_m2591279537_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1305230034_m1113971830_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3838208718_m2895510084_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisLink_t871362263_m2399216828_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisSlot_t646771150_m1042444708_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisSlot_t1619562839_m2943369554_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisDateTime_t2547387390_m4073868894_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisDecimal_t3966699860_m1800286883_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisDouble_t339827693_m2668884230_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisInt16_t3856708424_m3144516922_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisInt32_t4167366966_m1420471075_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisInt64_t2408544963_m4231037832_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisIntPtr_t_m448672977_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t2457599825_m3185908624_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t3886750721_m2337252438_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisLabelData_t1310448249_m1195922862_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisLabelFixup_t2905765948_m1779033765_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisILTokenInfo_t2153999167_m2569353302_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisMonoResource_t119149808_m582770843_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisMonoWin32Resource_t206024608_m4126403756_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisRefEmitPermissionSet_t715845335_m1388759781_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisParameterModifier_t376389310_m330293624_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisResourceCacheItem_t1320965396_m4070398499_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisResourceInfo_t2484257846_m1936955093_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisTypeTag_t4285455534_m1309866442_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisSByte_t428380402_m3538223738_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t3142710829_m1744331487_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisSingle_t2195714798_m3432866039_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisMark_t1839454258_m310615892_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisTimeSpan_t129343636_m2278609907_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisUInt16_t278453288_m2626966408_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisUInt32_t346584147_m1498147604_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisUInt64_t1634845782_m923385548_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisUriScheme_t3261313531_m1752794331_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisToggles_t2831120859_m1959957284_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisTogglesTut_t2696597271_m3749446118_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisColor_t3622910849_m4258792844_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisColor32_t2751477055_m981907668_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisContactPoint_t3605395583_m1969423659_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisRaycastResult_t2422751240_m2221728628_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisKeyframe_t2174701810_m1119415896_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisPlayableBinding_t202000793_m1449701647_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisRaycastHit_t1187910868_m46543770_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t3865340945_m4228459202_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisHitInfo_t143095646_m245425135_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisGcAchievementData_t410448212_m2668768732_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisGcScoreData_t4278176256_m1867450039_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisTouch_t2985979242_m290463939_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisContentType_t4244931986_m506915177_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisUICharInfo_t1969298608_m712277129_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisUILineInfo_t335496833_m215963816_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisUIVertex_t1250770280_m625396900_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisWorkRequest_t1197224859_m2935729330_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisVector2_t524314224_m1311561054_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisVector3_t298406706_m2544974850_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisVector4_t2979484471_m2576256932_gshared (); extern "C" void Array_InternalArray__ICollection_Remove_TisWorlds_t2374095355_m3327347804_gshared (); extern "C" void Enumerable_CreateWhereIterator_TisKeyValuePair_2_t3838208718_m1134120976_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisBenutzerPW_t3993975976_m2754867296_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisLevelManagerList_t2308881597_m1538437259_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisModels_t93544135_m643340710_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisTableRange_t2273327377_m591080292_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisClientCertificateType_t2322709846_m1987399002_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisBoolean_t4021514083_m575119708_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisByte_t2712847921_m4187152659_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisChar_t4197180777_m1033282946_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisDictionaryEntry_t1489291961_m3635855247_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t1298993810_m2651182814_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4266255930_m2700828287_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2117714080_m214828127_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1159377151_m2743872328_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1305230034_m1588822679_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3838208718_m2215677469_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t871362263_m3750875380_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t646771150_m3966828976_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t1619562839_m3908218660_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisDateTime_t2547387390_m1235082609_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisDecimal_t3966699860_m1422824643_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisDouble_t339827693_m3928165001_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisInt16_t3856708424_m2112327033_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisInt32_t4167366966_m1311588597_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisInt64_t2408544963_m3125068714_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisIntPtr_t_m20807206_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeNamedArgument_t2457599825_m3695586139_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeTypedArgument_t3886750721_m520564222_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisLabelData_t1310448249_m1883366921_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisLabelFixup_t2905765948_m1191902248_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisILTokenInfo_t2153999167_m1061763361_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisMonoResource_t119149808_m2160567085_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisMonoWin32Resource_t206024608_m4233927233_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisRefEmitPermissionSet_t715845335_m3069146564_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisParameterModifier_t376389310_m682107350_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisResourceCacheItem_t1320965396_m1956751809_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisResourceInfo_t2484257846_m2162849929_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisTypeTag_t4285455534_m3478435971_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisSByte_t428380402_m349337737_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisX509ChainStatus_t3142710829_m609303689_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisSingle_t2195714798_m3049081576_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisMark_t1839454258_m2030274028_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisTimeSpan_t129343636_m3938119373_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisUInt16_t278453288_m424174583_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisUInt32_t346584147_m1162332557_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisUInt64_t1634845782_m121208911_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisUriScheme_t3261313531_m3501282635_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisToggles_t2831120859_m196000156_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisTogglesTut_t2696597271_m736026176_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisColor_t3622910849_m4078559766_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisColor32_t2751477055_m2392670350_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint_t3605395583_m2627948564_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastResult_t2422751240_m1465210523_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisKeyframe_t2174701810_m2432321100_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisPlayableBinding_t202000793_m309376188_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit_t1187910868_m470225189_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit2D_t3865340945_m2545536470_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisHitInfo_t143095646_m3042198072_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisGcAchievementData_t410448212_m618514581_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisGcScoreData_t4278176256_m3654695391_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisTouch_t2985979242_m3004886542_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisContentType_t4244931986_m1789477393_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisUICharInfo_t1969298608_m4032563177_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisUILineInfo_t335496833_m2841361668_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisUIVertex_t1250770280_m1163148021_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisWorkRequest_t1197224859_m3720026382_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisVector2_t524314224_m1343047365_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisVector3_t298406706_m2735255681_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisVector4_t2979484471_m2510912457_gshared (); extern "C" void Array_InternalArray__IEnumerable_GetEnumerator_TisWorlds_t2374095355_m3097257265_gshared (); extern "C" void Array_BinarySearch_TisInt32_t4167366966_m3674557384_gshared (); extern "C" void Array_compare_TisLevelManagerList_t2308881597_m3854053518_gshared (); extern "C" void Array_compare_TisInt32_t4167366966_m1962051264_gshared (); extern "C" void Array_compare_TisCustomAttributeNamedArgument_t2457599825_m1388725596_gshared (); extern "C" void Array_compare_TisCustomAttributeTypedArgument_t3886750721_m3025325816_gshared (); extern "C" void Array_compare_TisColor32_t2751477055_m2936834497_gshared (); extern "C" void Array_compare_TisRaycastResult_t2422751240_m1526034924_gshared (); extern "C" void Array_compare_TisUICharInfo_t1969298608_m725808044_gshared (); extern "C" void Array_compare_TisUILineInfo_t335496833_m538521005_gshared (); extern "C" void Array_compare_TisUIVertex_t1250770280_m1460095346_gshared (); extern "C" void Array_compare_TisVector2_t524314224_m660346502_gshared (); extern "C" void Array_compare_TisVector3_t298406706_m368530871_gshared (); extern "C" void Array_compare_TisVector4_t2979484471_m4099737387_gshared (); extern "C" void Array_IndexOf_TisLevelManagerList_t2308881597_m144941025_gshared (); extern "C" void Array_IndexOf_TisInt32_t4167366966_m1551703251_gshared (); extern "C" void Array_IndexOf_TisCustomAttributeNamedArgument_t2457599825_m3319569537_gshared (); extern "C" void Array_IndexOf_TisCustomAttributeNamedArgument_t2457599825_m3613997469_gshared (); extern "C" void Array_IndexOf_TisCustomAttributeTypedArgument_t3886750721_m943282969_gshared (); extern "C" void Array_IndexOf_TisCustomAttributeTypedArgument_t3886750721_m254954266_gshared (); extern "C" void Array_IndexOf_TisColor32_t2751477055_m592876506_gshared (); extern "C" void Array_IndexOf_TisRaycastResult_t2422751240_m44558222_gshared (); extern "C" void Array_IndexOf_TisUICharInfo_t1969298608_m3044561830_gshared (); extern "C" void Array_IndexOf_TisUILineInfo_t335496833_m2194636557_gshared (); extern "C" void Array_IndexOf_TisUIVertex_t1250770280_m2524529344_gshared (); extern "C" void Array_IndexOf_TisVector2_t524314224_m151510283_gshared (); extern "C" void Array_IndexOf_TisVector3_t298406706_m3243737063_gshared (); extern "C" void Array_IndexOf_TisVector4_t2979484471_m47463824_gshared (); extern "C" void Array_InternalArray__IndexOf_TisBenutzerPW_t3993975976_m3262583877_gshared (); extern "C" void Array_InternalArray__IndexOf_TisLevelManagerList_t2308881597_m79327771_gshared (); extern "C" void Array_InternalArray__IndexOf_TisModels_t93544135_m1481870659_gshared (); extern "C" void Array_InternalArray__IndexOf_TisTableRange_t2273327377_m3572644484_gshared (); extern "C" void Array_InternalArray__IndexOf_TisClientCertificateType_t2322709846_m4147121483_gshared (); extern "C" void Array_InternalArray__IndexOf_TisBoolean_t4021514083_m1406410610_gshared (); extern "C" void Array_InternalArray__IndexOf_TisByte_t2712847921_m3219359432_gshared (); extern "C" void Array_InternalArray__IndexOf_TisChar_t4197180777_m1842944159_gshared (); extern "C" void Array_InternalArray__IndexOf_TisDictionaryEntry_t1489291961_m3606519230_gshared (); extern "C" void Array_InternalArray__IndexOf_TisLink_t1298993810_m3903398259_gshared (); extern "C" void Array_InternalArray__IndexOf_TisKeyValuePair_2_t4266255930_m3090539742_gshared (); extern "C" void Array_InternalArray__IndexOf_TisKeyValuePair_2_t2117714080_m4227356214_gshared (); extern "C" void Array_InternalArray__IndexOf_TisKeyValuePair_2_t1159377151_m2502486537_gshared (); extern "C" void Array_InternalArray__IndexOf_TisKeyValuePair_2_t1305230034_m2712893714_gshared (); extern "C" void Array_InternalArray__IndexOf_TisKeyValuePair_2_t3838208718_m184780239_gshared (); extern "C" void Array_InternalArray__IndexOf_TisLink_t871362263_m4196323042_gshared (); extern "C" void Array_InternalArray__IndexOf_TisSlot_t646771150_m3826788364_gshared (); extern "C" void Array_InternalArray__IndexOf_TisSlot_t1619562839_m561322783_gshared (); extern "C" void Array_InternalArray__IndexOf_TisDateTime_t2547387390_m301604682_gshared (); extern "C" void Array_InternalArray__IndexOf_TisDecimal_t3966699860_m959037974_gshared (); extern "C" void Array_InternalArray__IndexOf_TisDouble_t339827693_m1175612324_gshared (); extern "C" void Array_InternalArray__IndexOf_TisInt16_t3856708424_m213152810_gshared (); extern "C" void Array_InternalArray__IndexOf_TisInt32_t4167366966_m155943784_gshared (); extern "C" void Array_InternalArray__IndexOf_TisInt64_t2408544963_m278879678_gshared (); extern "C" void Array_InternalArray__IndexOf_TisIntPtr_t_m2171989950_gshared (); extern "C" void Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t2457599825_m3243308751_gshared (); extern "C" void Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t3886750721_m16440611_gshared (); extern "C" void Array_InternalArray__IndexOf_TisLabelData_t1310448249_m4176445771_gshared (); extern "C" void Array_InternalArray__IndexOf_TisLabelFixup_t2905765948_m4056479101_gshared (); extern "C" void Array_InternalArray__IndexOf_TisILTokenInfo_t2153999167_m642777824_gshared (); extern "C" void Array_InternalArray__IndexOf_TisMonoResource_t119149808_m451149296_gshared (); extern "C" void Array_InternalArray__IndexOf_TisMonoWin32Resource_t206024608_m1659412446_gshared (); extern "C" void Array_InternalArray__IndexOf_TisRefEmitPermissionSet_t715845335_m2430505057_gshared (); extern "C" void Array_InternalArray__IndexOf_TisParameterModifier_t376389310_m520571811_gshared (); extern "C" void Array_InternalArray__IndexOf_TisResourceCacheItem_t1320965396_m1451193494_gshared (); extern "C" void Array_InternalArray__IndexOf_TisResourceInfo_t2484257846_m566675034_gshared (); extern "C" void Array_InternalArray__IndexOf_TisTypeTag_t4285455534_m3126715815_gshared (); extern "C" void Array_InternalArray__IndexOf_TisSByte_t428380402_m1959632191_gshared (); extern "C" void Array_InternalArray__IndexOf_TisX509ChainStatus_t3142710829_m1495209617_gshared (); extern "C" void Array_InternalArray__IndexOf_TisSingle_t2195714798_m1465984328_gshared (); extern "C" void Array_InternalArray__IndexOf_TisMark_t1839454258_m48714600_gshared (); extern "C" void Array_InternalArray__IndexOf_TisTimeSpan_t129343636_m1245326305_gshared (); extern "C" void Array_InternalArray__IndexOf_TisUInt16_t278453288_m1596661518_gshared (); extern "C" void Array_InternalArray__IndexOf_TisUInt32_t346584147_m2988120568_gshared (); extern "C" void Array_InternalArray__IndexOf_TisUInt64_t1634845782_m3738546551_gshared (); extern "C" void Array_InternalArray__IndexOf_TisUriScheme_t3261313531_m274905018_gshared (); extern "C" void Array_InternalArray__IndexOf_TisToggles_t2831120859_m3221007770_gshared (); extern "C" void Array_InternalArray__IndexOf_TisTogglesTut_t2696597271_m3291212216_gshared (); extern "C" void Array_InternalArray__IndexOf_TisColor_t3622910849_m946919865_gshared (); extern "C" void Array_InternalArray__IndexOf_TisColor32_t2751477055_m1978122800_gshared (); extern "C" void Array_InternalArray__IndexOf_TisContactPoint_t3605395583_m3493988861_gshared (); extern "C" void Array_InternalArray__IndexOf_TisRaycastResult_t2422751240_m2301077238_gshared (); extern "C" void Array_InternalArray__IndexOf_TisKeyframe_t2174701810_m2475960207_gshared (); extern "C" void Array_InternalArray__IndexOf_TisPlayableBinding_t202000793_m147993959_gshared (); extern "C" void Array_InternalArray__IndexOf_TisRaycastHit_t1187910868_m3834191597_gshared (); extern "C" void Array_InternalArray__IndexOf_TisRaycastHit2D_t3865340945_m3466750301_gshared (); extern "C" void Array_InternalArray__IndexOf_TisHitInfo_t143095646_m3761922610_gshared (); extern "C" void Array_InternalArray__IndexOf_TisGcAchievementData_t410448212_m3425045752_gshared (); extern "C" void Array_InternalArray__IndexOf_TisGcScoreData_t4278176256_m1539315700_gshared (); extern "C" void Array_InternalArray__IndexOf_TisTouch_t2985979242_m3676812433_gshared (); extern "C" void Array_InternalArray__IndexOf_TisContentType_t4244931986_m3504941009_gshared (); extern "C" void Array_InternalArray__IndexOf_TisUICharInfo_t1969298608_m2863000547_gshared (); extern "C" void Array_InternalArray__IndexOf_TisUILineInfo_t335496833_m1728931693_gshared (); extern "C" void Array_InternalArray__IndexOf_TisUIVertex_t1250770280_m508411357_gshared (); extern "C" void Array_InternalArray__IndexOf_TisWorkRequest_t1197224859_m473354502_gshared (); extern "C" void Array_InternalArray__IndexOf_TisVector2_t524314224_m2851699678_gshared (); extern "C" void Array_InternalArray__IndexOf_TisVector3_t298406706_m3553316109_gshared (); extern "C" void Array_InternalArray__IndexOf_TisVector4_t2979484471_m996539751_gshared (); extern "C" void Array_InternalArray__IndexOf_TisWorlds_t2374095355_m1227299707_gshared (); extern "C" void Mesh_SafeLength_TisColor32_t2751477055_m954248310_gshared (); extern "C" void Mesh_SafeLength_TisVector2_t524314224_m3935288024_gshared (); extern "C" void Mesh_SafeLength_TisVector3_t298406706_m1224884450_gshared (); extern "C" void Mesh_SafeLength_TisVector4_t2979484471_m1875581356_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisBenutzerPW_t3993975976_m2540861271_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisLevelManagerList_t2308881597_m212139307_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisModels_t93544135_m1596373922_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisTableRange_t2273327377_m2505139109_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisClientCertificateType_t2322709846_m742703523_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisBoolean_t4021514083_m1012699754_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisByte_t2712847921_m3418252781_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisChar_t4197180777_m947624147_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisDictionaryEntry_t1489291961_m4101777875_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisLink_t1298993810_m132826540_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4266255930_m946209669_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2117714080_m1878834460_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1159377151_m970255049_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1305230034_m231068921_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3838208718_m2056098066_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisLink_t871362263_m1432056089_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisSlot_t646771150_m3555054201_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisSlot_t1619562839_m668303019_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisDateTime_t2547387390_m2214775655_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisDecimal_t3966699860_m2509938907_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisDouble_t339827693_m3026187683_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisInt16_t3856708424_m3230806219_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisInt32_t4167366966_m635729765_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisInt64_t2408544963_m224934452_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisIntPtr_t_m1144539200_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t2457599825_m2819073346_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t3886750721_m2464008314_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisLabelData_t1310448249_m1769010659_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisLabelFixup_t2905765948_m1341209596_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisILTokenInfo_t2153999167_m3840642720_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisMonoResource_t119149808_m3114133429_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisMonoWin32Resource_t206024608_m2560973443_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisRefEmitPermissionSet_t715845335_m2135620125_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisParameterModifier_t376389310_m3906525594_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisResourceCacheItem_t1320965396_m869695486_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisResourceInfo_t2484257846_m1892998110_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisTypeTag_t4285455534_m513816032_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisSByte_t428380402_m3179386124_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisX509ChainStatus_t3142710829_m1644010597_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisSingle_t2195714798_m3434424711_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisMark_t1839454258_m2946527583_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisTimeSpan_t129343636_m2967447552_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisUInt16_t278453288_m2331248041_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisUInt32_t346584147_m3816118992_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisUInt64_t1634845782_m974656912_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisUriScheme_t3261313531_m3019349566_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisToggles_t2831120859_m1579806479_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisTogglesTut_t2696597271_m2083306495_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisColor_t3622910849_m1223442393_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisColor32_t2751477055_m868794674_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisContactPoint_t3605395583_m1386659890_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisRaycastResult_t2422751240_m2219112978_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisKeyframe_t2174701810_m562972272_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisPlayableBinding_t202000793_m3052288329_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisRaycastHit_t1187910868_m1371796584_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisRaycastHit2D_t3865340945_m1434846180_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisHitInfo_t143095646_m4289053952_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisGcAchievementData_t410448212_m1403540031_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisGcScoreData_t4278176256_m4121023098_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisTouch_t2985979242_m2773465958_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisContentType_t4244931986_m4222413392_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisUICharInfo_t1969298608_m2922690701_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisUILineInfo_t335496833_m337935941_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisUIVertex_t1250770280_m2270412485_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisWorkRequest_t1197224859_m3043766390_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisVector2_t524314224_m2897893460_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisVector3_t298406706_m3229956754_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisVector4_t2979484471_m1331029886_gshared (); extern "C" void Array_InternalArray__ICollection_Add_TisWorlds_t2374095355_m816891400_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisBenutzerPW_t3993975976_m2305338578_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisLevelManagerList_t2308881597_m4134144912_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisModels_t93544135_m1667873320_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisTableRange_t2273327377_m839400705_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisClientCertificateType_t2322709846_m1034134194_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisBoolean_t4021514083_m76405449_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisByte_t2712847921_m1537816791_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisChar_t4197180777_m4212912270_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisDictionaryEntry_t1489291961_m91850926_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisLink_t1298993810_m3004768805_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t4266255930_m3275421670_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t2117714080_m3061516048_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t1159377151_m1402317104_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t1305230034_m1806431570_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t3838208718_m3641320881_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisLink_t871362263_m3262590238_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisSlot_t646771150_m2447371851_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisSlot_t1619562839_m3580400988_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisDateTime_t2547387390_m101004557_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisDecimal_t3966699860_m2816723572_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisDouble_t339827693_m1953644745_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisInt16_t3856708424_m2027937264_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisInt32_t4167366966_m4201786403_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisInt64_t2408544963_m3479182866_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisIntPtr_t_m1273184816_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisCustomAttributeNamedArgument_t2457599825_m3708683890_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisCustomAttributeTypedArgument_t3886750721_m1503849792_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisLabelData_t1310448249_m1745929223_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisLabelFixup_t2905765948_m488870305_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisILTokenInfo_t2153999167_m3671743756_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisMonoResource_t119149808_m198486972_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisMonoWin32Resource_t206024608_m3977127395_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisRefEmitPermissionSet_t715845335_m4218897720_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisParameterModifier_t376389310_m3896307123_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisResourceCacheItem_t1320965396_m9878285_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisResourceInfo_t2484257846_m1466956766_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisTypeTag_t4285455534_m2114800466_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisSByte_t428380402_m2384823785_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisX509ChainStatus_t3142710829_m3630364276_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisSingle_t2195714798_m1798083483_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisMark_t1839454258_m3229667387_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisTimeSpan_t129343636_m120987291_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisUInt16_t278453288_m3104119907_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisUInt32_t346584147_m2866946858_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisUInt64_t1634845782_m1046924363_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisUriScheme_t3261313531_m4062936799_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisToggles_t2831120859_m21587168_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisTogglesTut_t2696597271_m2713858251_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisColor_t3622910849_m3450578333_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisColor32_t2751477055_m3419510270_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisContactPoint_t3605395583_m4062784210_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisRaycastResult_t2422751240_m4173978484_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisKeyframe_t2174701810_m1823478025_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisPlayableBinding_t202000793_m3238705274_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisRaycastHit_t1187910868_m1867129864_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisRaycastHit2D_t3865340945_m602482430_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisHitInfo_t143095646_m2834194435_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisGcAchievementData_t410448212_m2834660452_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisGcScoreData_t4278176256_m260891565_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisTouch_t2985979242_m1684975509_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisContentType_t4244931986_m4229712170_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisUICharInfo_t1969298608_m2372181248_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisUILineInfo_t335496833_m3977084416_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisUIVertex_t1250770280_m3705793910_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisWorkRequest_t1197224859_m299030757_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisVector2_t524314224_m1783634868_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisVector3_t298406706_m2666890573_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisVector4_t2979484471_m3376660601_gshared (); extern "C" void Array_InternalArray__ICollection_CopyTo_TisWorlds_t2374095355_m1342293351_gshared (); extern "C" void Array_InternalArray__Insert_TisBenutzerPW_t3993975976_m4204571963_gshared (); extern "C" void Array_InternalArray__Insert_TisLevelManagerList_t2308881597_m472166920_gshared (); extern "C" void Array_InternalArray__Insert_TisModels_t93544135_m2361600984_gshared (); extern "C" void Array_InternalArray__Insert_TisTableRange_t2273327377_m2560585778_gshared (); extern "C" void Array_InternalArray__Insert_TisClientCertificateType_t2322709846_m1770059869_gshared (); extern "C" void Array_InternalArray__Insert_TisBoolean_t4021514083_m3795757602_gshared (); extern "C" void Array_InternalArray__Insert_TisByte_t2712847921_m3556324169_gshared (); extern "C" void Array_InternalArray__Insert_TisChar_t4197180777_m1109132548_gshared (); extern "C" void Array_InternalArray__Insert_TisDictionaryEntry_t1489291961_m859018424_gshared (); extern "C" void Array_InternalArray__Insert_TisLink_t1298993810_m694281915_gshared (); extern "C" void Array_InternalArray__Insert_TisKeyValuePair_2_t4266255930_m1781577845_gshared (); extern "C" void Array_InternalArray__Insert_TisKeyValuePair_2_t2117714080_m2036622066_gshared (); extern "C" void Array_InternalArray__Insert_TisKeyValuePair_2_t1159377151_m3802789349_gshared (); extern "C" void Array_InternalArray__Insert_TisKeyValuePair_2_t1305230034_m3414903901_gshared (); extern "C" void Array_InternalArray__Insert_TisKeyValuePair_2_t3838208718_m2016731447_gshared (); extern "C" void Array_InternalArray__Insert_TisLink_t871362263_m2373358686_gshared (); extern "C" void Array_InternalArray__Insert_TisSlot_t646771150_m804950614_gshared (); extern "C" void Array_InternalArray__Insert_TisSlot_t1619562839_m47126550_gshared (); extern "C" void Array_InternalArray__Insert_TisDateTime_t2547387390_m2984889988_gshared (); extern "C" void Array_InternalArray__Insert_TisDecimal_t3966699860_m1707291196_gshared (); extern "C" void Array_InternalArray__Insert_TisDouble_t339827693_m3811210834_gshared (); extern "C" void Array_InternalArray__Insert_TisInt16_t3856708424_m1372957669_gshared (); extern "C" void Array_InternalArray__Insert_TisInt32_t4167366966_m3735225974_gshared (); extern "C" void Array_InternalArray__Insert_TisInt64_t2408544963_m4221868327_gshared (); extern "C" void Array_InternalArray__Insert_TisIntPtr_t_m66448727_gshared (); extern "C" void Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t2457599825_m3280428286_gshared (); extern "C" void Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t3886750721_m1210920240_gshared (); extern "C" void Array_InternalArray__Insert_TisLabelData_t1310448249_m1613214087_gshared (); extern "C" void Array_InternalArray__Insert_TisLabelFixup_t2905765948_m620581496_gshared (); extern "C" void Array_InternalArray__Insert_TisILTokenInfo_t2153999167_m249949032_gshared (); extern "C" void Array_InternalArray__Insert_TisMonoResource_t119149808_m857910372_gshared (); extern "C" void Array_InternalArray__Insert_TisMonoWin32Resource_t206024608_m1304437718_gshared (); extern "C" void Array_InternalArray__Insert_TisRefEmitPermissionSet_t715845335_m3081408122_gshared (); extern "C" void Array_InternalArray__Insert_TisParameterModifier_t376389310_m2598774926_gshared (); extern "C" void Array_InternalArray__Insert_TisResourceCacheItem_t1320965396_m2339140611_gshared (); extern "C" void Array_InternalArray__Insert_TisResourceInfo_t2484257846_m1443452189_gshared (); extern "C" void Array_InternalArray__Insert_TisTypeTag_t4285455534_m1144691727_gshared (); extern "C" void Array_InternalArray__Insert_TisSByte_t428380402_m3672718342_gshared (); extern "C" void Array_InternalArray__Insert_TisX509ChainStatus_t3142710829_m2332513571_gshared (); extern "C" void Array_InternalArray__Insert_TisSingle_t2195714798_m1920760203_gshared (); extern "C" void Array_InternalArray__Insert_TisMark_t1839454258_m3397643828_gshared (); extern "C" void Array_InternalArray__Insert_TisTimeSpan_t129343636_m1145375422_gshared (); extern "C" void Array_InternalArray__Insert_TisUInt16_t278453288_m1093155303_gshared (); extern "C" void Array_InternalArray__Insert_TisUInt32_t346584147_m3524718288_gshared (); extern "C" void Array_InternalArray__Insert_TisUInt64_t1634845782_m3734899577_gshared (); extern "C" void Array_InternalArray__Insert_TisUriScheme_t3261313531_m3765191366_gshared (); extern "C" void Array_InternalArray__Insert_TisToggles_t2831120859_m541065870_gshared (); extern "C" void Array_InternalArray__Insert_TisTogglesTut_t2696597271_m2302358723_gshared (); extern "C" void Array_InternalArray__Insert_TisColor_t3622910849_m19736494_gshared (); extern "C" void Array_InternalArray__Insert_TisColor32_t2751477055_m658135066_gshared (); extern "C" void Array_InternalArray__Insert_TisContactPoint_t3605395583_m3856122771_gshared (); extern "C" void Array_InternalArray__Insert_TisRaycastResult_t2422751240_m806950013_gshared (); extern "C" void Array_InternalArray__Insert_TisKeyframe_t2174701810_m1251483451_gshared (); extern "C" void Array_InternalArray__Insert_TisPlayableBinding_t202000793_m1680224689_gshared (); extern "C" void Array_InternalArray__Insert_TisRaycastHit_t1187910868_m375059270_gshared (); extern "C" void Array_InternalArray__Insert_TisRaycastHit2D_t3865340945_m3257100195_gshared (); extern "C" void Array_InternalArray__Insert_TisHitInfo_t143095646_m1157232724_gshared (); extern "C" void Array_InternalArray__Insert_TisGcAchievementData_t410448212_m1016264544_gshared (); extern "C" void Array_InternalArray__Insert_TisGcScoreData_t4278176256_m1365103787_gshared (); extern "C" void Array_InternalArray__Insert_TisTouch_t2985979242_m3179842228_gshared (); extern "C" void Array_InternalArray__Insert_TisContentType_t4244931986_m1581134454_gshared (); extern "C" void Array_InternalArray__Insert_TisUICharInfo_t1969298608_m90522264_gshared (); extern "C" void Array_InternalArray__Insert_TisUILineInfo_t335496833_m2271306608_gshared (); extern "C" void Array_InternalArray__Insert_TisUIVertex_t1250770280_m572017903_gshared (); extern "C" void Array_InternalArray__Insert_TisWorkRequest_t1197224859_m1444805430_gshared (); extern "C" void Array_InternalArray__Insert_TisVector2_t524314224_m2738163265_gshared (); extern "C" void Array_InternalArray__Insert_TisVector3_t298406706_m3966302285_gshared (); extern "C" void Array_InternalArray__Insert_TisVector4_t2979484471_m4189553811_gshared (); extern "C" void Array_InternalArray__Insert_TisWorlds_t2374095355_m3743808117_gshared (); extern "C" void Array_InternalArray__set_Item_TisBenutzerPW_t3993975976_m784117895_gshared (); extern "C" void Array_InternalArray__set_Item_TisLevelManagerList_t2308881597_m822608817_gshared (); extern "C" void Array_InternalArray__set_Item_TisModels_t93544135_m2087300298_gshared (); extern "C" void Array_InternalArray__set_Item_TisTableRange_t2273327377_m502293779_gshared (); extern "C" void Array_InternalArray__set_Item_TisClientCertificateType_t2322709846_m3777103594_gshared (); extern "C" void Array_InternalArray__set_Item_TisBoolean_t4021514083_m654480149_gshared (); extern "C" void Array_InternalArray__set_Item_TisByte_t2712847921_m872569235_gshared (); extern "C" void Array_InternalArray__set_Item_TisChar_t4197180777_m2714706123_gshared (); extern "C" void Array_InternalArray__set_Item_TisDictionaryEntry_t1489291961_m1957769635_gshared (); extern "C" void Array_InternalArray__set_Item_TisLink_t1298993810_m17131244_gshared (); extern "C" void Array_InternalArray__set_Item_TisKeyValuePair_2_t4266255930_m3663036369_gshared (); extern "C" void Array_InternalArray__set_Item_TisKeyValuePair_2_t2117714080_m2968247184_gshared (); extern "C" void Array_InternalArray__set_Item_TisKeyValuePair_2_t1159377151_m1072847714_gshared (); extern "C" void Array_InternalArray__set_Item_TisKeyValuePair_2_t1305230034_m3785211509_gshared (); extern "C" void Array_InternalArray__set_Item_TisKeyValuePair_2_t3838208718_m2503075905_gshared (); extern "C" void Array_InternalArray__set_Item_TisLink_t871362263_m2732807341_gshared (); extern "C" void Array_InternalArray__set_Item_TisSlot_t646771150_m222228502_gshared (); extern "C" void Array_InternalArray__set_Item_TisSlot_t1619562839_m2401142308_gshared (); extern "C" void Array_InternalArray__set_Item_TisDateTime_t2547387390_m1456112903_gshared (); extern "C" void Array_InternalArray__set_Item_TisDecimal_t3966699860_m3614497616_gshared (); extern "C" void Array_InternalArray__set_Item_TisDouble_t339827693_m3293600329_gshared (); extern "C" void Array_InternalArray__set_Item_TisInt16_t3856708424_m1187828133_gshared (); extern "C" void Array_InternalArray__set_Item_TisInt32_t4167366966_m577974753_gshared (); extern "C" void Array_InternalArray__set_Item_TisInt64_t2408544963_m3867353130_gshared (); extern "C" void Array_InternalArray__set_Item_TisIntPtr_t_m1334926046_gshared (); extern "C" void Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t2457599825_m2634707410_gshared (); extern "C" void Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t3886750721_m4171647719_gshared (); extern "C" void Array_InternalArray__set_Item_TisLabelData_t1310448249_m2596614078_gshared (); extern "C" void Array_InternalArray__set_Item_TisLabelFixup_t2905765948_m3157242046_gshared (); extern "C" void Array_InternalArray__set_Item_TisILTokenInfo_t2153999167_m3468194516_gshared (); extern "C" void Array_InternalArray__set_Item_TisMonoResource_t119149808_m4248833918_gshared (); extern "C" void Array_InternalArray__set_Item_TisMonoWin32Resource_t206024608_m3515400068_gshared (); extern "C" void Array_InternalArray__set_Item_TisRefEmitPermissionSet_t715845335_m1497818398_gshared (); extern "C" void Array_InternalArray__set_Item_TisParameterModifier_t376389310_m2208605747_gshared (); extern "C" void Array_InternalArray__set_Item_TisResourceCacheItem_t1320965396_m3163155290_gshared (); extern "C" void Array_InternalArray__set_Item_TisResourceInfo_t2484257846_m2985804109_gshared (); extern "C" void Array_InternalArray__set_Item_TisTypeTag_t4285455534_m3989347044_gshared (); extern "C" void Array_InternalArray__set_Item_TisSByte_t428380402_m164527822_gshared (); extern "C" void Array_InternalArray__set_Item_TisX509ChainStatus_t3142710829_m2691757802_gshared (); extern "C" void Array_InternalArray__set_Item_TisSingle_t2195714798_m4014302982_gshared (); extern "C" void Array_InternalArray__set_Item_TisMark_t1839454258_m2505166496_gshared (); extern "C" void Array_InternalArray__set_Item_TisTimeSpan_t129343636_m2905201011_gshared (); extern "C" void Array_InternalArray__set_Item_TisUInt16_t278453288_m1568212025_gshared (); extern "C" void Array_InternalArray__set_Item_TisUInt32_t346584147_m579613156_gshared (); extern "C" void Array_InternalArray__set_Item_TisUInt64_t1634845782_m3050969958_gshared (); extern "C" void Array_InternalArray__set_Item_TisUriScheme_t3261313531_m2167613805_gshared (); extern "C" void Array_InternalArray__set_Item_TisToggles_t2831120859_m2535752445_gshared (); extern "C" void Array_InternalArray__set_Item_TisTogglesTut_t2696597271_m1363769774_gshared (); extern "C" void Array_InternalArray__set_Item_TisColor_t3622910849_m3163164599_gshared (); extern "C" void Array_InternalArray__set_Item_TisColor32_t2751477055_m4145125965_gshared (); extern "C" void Array_InternalArray__set_Item_TisContactPoint_t3605395583_m3539738370_gshared (); extern "C" void Array_InternalArray__set_Item_TisRaycastResult_t2422751240_m2323777961_gshared (); extern "C" void Array_InternalArray__set_Item_TisKeyframe_t2174701810_m1498397348_gshared (); extern "C" void Array_InternalArray__set_Item_TisPlayableBinding_t202000793_m2280025352_gshared (); extern "C" void Array_InternalArray__set_Item_TisRaycastHit_t1187910868_m1571615057_gshared (); extern "C" void Array_InternalArray__set_Item_TisRaycastHit2D_t3865340945_m1921014628_gshared (); extern "C" void Array_InternalArray__set_Item_TisHitInfo_t143095646_m3540040591_gshared (); extern "C" void Array_InternalArray__set_Item_TisGcAchievementData_t410448212_m842604708_gshared (); extern "C" void Array_InternalArray__set_Item_TisGcScoreData_t4278176256_m3040141641_gshared (); extern "C" void Array_InternalArray__set_Item_TisTouch_t2985979242_m3843032450_gshared (); extern "C" void Array_InternalArray__set_Item_TisContentType_t4244931986_m560461313_gshared (); extern "C" void Array_InternalArray__set_Item_TisUICharInfo_t1969298608_m677124254_gshared (); extern "C" void Array_InternalArray__set_Item_TisUILineInfo_t335496833_m1202158142_gshared (); extern "C" void Array_InternalArray__set_Item_TisUIVertex_t1250770280_m4113829406_gshared (); extern "C" void Array_InternalArray__set_Item_TisWorkRequest_t1197224859_m3662423196_gshared (); extern "C" void Array_InternalArray__set_Item_TisVector2_t524314224_m1673243196_gshared (); extern "C" void Array_InternalArray__set_Item_TisVector3_t298406706_m727835116_gshared (); extern "C" void Array_InternalArray__set_Item_TisVector4_t2979484471_m2650307325_gshared (); extern "C" void Array_InternalArray__set_Item_TisWorlds_t2374095355_m201733922_gshared (); extern "C" void Array_qsort_TisLevelManagerList_t2308881597_TisLevelManagerList_t2308881597_m1134562453_gshared (); extern "C" void Array_qsort_TisLevelManagerList_t2308881597_m1946278044_gshared (); extern "C" void Array_qsort_TisInt32_t4167366966_TisInt32_t4167366966_m3401441840_gshared (); extern "C" void Array_qsort_TisInt32_t4167366966_m3555984278_gshared (); extern "C" void Array_qsort_TisCustomAttributeNamedArgument_t2457599825_TisCustomAttributeNamedArgument_t2457599825_m1003456686_gshared (); extern "C" void Array_qsort_TisCustomAttributeNamedArgument_t2457599825_m1564094853_gshared (); extern "C" void Array_qsort_TisCustomAttributeTypedArgument_t3886750721_TisCustomAttributeTypedArgument_t3886750721_m3871132922_gshared (); extern "C" void Array_qsort_TisCustomAttributeTypedArgument_t3886750721_m1212374071_gshared (); extern "C" void Array_qsort_TisColor32_t2751477055_TisColor32_t2751477055_m3815154788_gshared (); extern "C" void Array_qsort_TisColor32_t2751477055_m2890970592_gshared (); extern "C" void Array_qsort_TisRaycastResult_t2422751240_TisRaycastResult_t2422751240_m3895234714_gshared (); extern "C" void Array_qsort_TisRaycastResult_t2422751240_m4048178963_gshared (); extern "C" void Array_qsort_TisRaycastHit_t1187910868_m3116684545_gshared (); extern "C" void Array_qsort_TisUICharInfo_t1969298608_TisUICharInfo_t1969298608_m1149999885_gshared (); extern "C" void Array_qsort_TisUICharInfo_t1969298608_m616784197_gshared (); extern "C" void Array_qsort_TisUILineInfo_t335496833_TisUILineInfo_t335496833_m3817601615_gshared (); extern "C" void Array_qsort_TisUILineInfo_t335496833_m3231397484_gshared (); extern "C" void Array_qsort_TisUIVertex_t1250770280_TisUIVertex_t1250770280_m60576334_gshared (); extern "C" void Array_qsort_TisUIVertex_t1250770280_m681723338_gshared (); extern "C" void Array_qsort_TisVector2_t524314224_TisVector2_t524314224_m1470656088_gshared (); extern "C" void Array_qsort_TisVector2_t524314224_m3044408165_gshared (); extern "C" void Array_qsort_TisVector3_t298406706_TisVector3_t298406706_m3282791330_gshared (); extern "C" void Array_qsort_TisVector3_t298406706_m2269646004_gshared (); extern "C" void Array_qsort_TisVector4_t2979484471_TisVector4_t2979484471_m720732929_gshared (); extern "C" void Array_qsort_TisVector4_t2979484471_m816657529_gshared (); extern "C" void Array_Resize_TisLevelManagerList_t2308881597_m448093286_gshared (); extern "C" void Array_Resize_TisLevelManagerList_t2308881597_m1804440992_gshared (); extern "C" void Array_Resize_TisInt32_t4167366966_m406944823_gshared (); extern "C" void Array_Resize_TisInt32_t4167366966_m2295631314_gshared (); extern "C" void Array_Resize_TisCustomAttributeNamedArgument_t2457599825_m3008585463_gshared (); extern "C" void Array_Resize_TisCustomAttributeNamedArgument_t2457599825_m1465161785_gshared (); extern "C" void Array_Resize_TisCustomAttributeTypedArgument_t3886750721_m4016526873_gshared (); extern "C" void Array_Resize_TisCustomAttributeTypedArgument_t3886750721_m2542881202_gshared (); extern "C" void Array_Resize_TisColor32_t2751477055_m4223909277_gshared (); extern "C" void Array_Resize_TisColor32_t2751477055_m3657790326_gshared (); extern "C" void Array_Resize_TisRaycastResult_t2422751240_m1833985598_gshared (); extern "C" void Array_Resize_TisRaycastResult_t2422751240_m2559521962_gshared (); extern "C" void Array_Resize_TisUICharInfo_t1969298608_m1903271376_gshared (); extern "C" void Array_Resize_TisUICharInfo_t1969298608_m254805498_gshared (); extern "C" void Array_Resize_TisUILineInfo_t335496833_m1918825852_gshared (); extern "C" void Array_Resize_TisUILineInfo_t335496833_m1266422096_gshared (); extern "C" void Array_Resize_TisUIVertex_t1250770280_m848831585_gshared (); extern "C" void Array_Resize_TisUIVertex_t1250770280_m4116267789_gshared (); extern "C" void Array_Resize_TisVector2_t524314224_m1815114596_gshared (); extern "C" void Array_Resize_TisVector2_t524314224_m80313357_gshared (); extern "C" void Array_Resize_TisVector3_t298406706_m3349008030_gshared (); extern "C" void Array_Resize_TisVector3_t298406706_m1235104780_gshared (); extern "C" void Array_Resize_TisVector4_t2979484471_m994882045_gshared (); extern "C" void Array_Resize_TisVector4_t2979484471_m618782369_gshared (); extern "C" void Array_Sort_TisLevelManagerList_t2308881597_TisLevelManagerList_t2308881597_m1376997358_gshared (); extern "C" void Array_Sort_TisLevelManagerList_t2308881597_m3327617732_gshared (); extern "C" void Array_Sort_TisLevelManagerList_t2308881597_m3428240736_gshared (); extern "C" void Array_Sort_TisInt32_t4167366966_TisInt32_t4167366966_m2806363690_gshared (); extern "C" void Array_Sort_TisInt32_t4167366966_m1448023195_gshared (); extern "C" void Array_Sort_TisInt32_t4167366966_m3474804318_gshared (); extern "C" void Array_Sort_TisCustomAttributeNamedArgument_t2457599825_TisCustomAttributeNamedArgument_t2457599825_m4150972144_gshared (); extern "C" void Array_Sort_TisCustomAttributeNamedArgument_t2457599825_m1053861374_gshared (); extern "C" void Array_Sort_TisCustomAttributeNamedArgument_t2457599825_m3415186096_gshared (); extern "C" void Array_Sort_TisCustomAttributeTypedArgument_t3886750721_TisCustomAttributeTypedArgument_t3886750721_m1256151242_gshared (); extern "C" void Array_Sort_TisCustomAttributeTypedArgument_t3886750721_m2410863361_gshared (); extern "C" void Array_Sort_TisCustomAttributeTypedArgument_t3886750721_m2437209736_gshared (); extern "C" void Array_Sort_TisColor32_t2751477055_TisColor32_t2751477055_m2519281656_gshared (); extern "C" void Array_Sort_TisColor32_t2751477055_m519896447_gshared (); extern "C" void Array_Sort_TisColor32_t2751477055_m3086985176_gshared (); extern "C" void Array_Sort_TisRaycastResult_t2422751240_TisRaycastResult_t2422751240_m4006721714_gshared (); extern "C" void Array_Sort_TisRaycastResult_t2422751240_m2430817507_gshared (); extern "C" void Array_Sort_TisRaycastResult_t2422751240_m2184890353_gshared (); extern "C" void Array_Sort_TisRaycastHit_t1187910868_m2107960306_gshared (); extern "C" void Array_Sort_TisUICharInfo_t1969298608_TisUICharInfo_t1969298608_m585974581_gshared (); extern "C" void Array_Sort_TisUICharInfo_t1969298608_m3265545392_gshared (); extern "C" void Array_Sort_TisUICharInfo_t1969298608_m2460026412_gshared (); extern "C" void Array_Sort_TisUILineInfo_t335496833_TisUILineInfo_t335496833_m320804204_gshared (); extern "C" void Array_Sort_TisUILineInfo_t335496833_m3828810358_gshared (); extern "C" void Array_Sort_TisUILineInfo_t335496833_m1676566871_gshared (); extern "C" void Array_Sort_TisUIVertex_t1250770280_TisUIVertex_t1250770280_m2690782948_gshared (); extern "C" void Array_Sort_TisUIVertex_t1250770280_m1943856722_gshared (); extern "C" void Array_Sort_TisUIVertex_t1250770280_m3957018108_gshared (); extern "C" void Array_Sort_TisVector2_t524314224_TisVector2_t524314224_m1340762808_gshared (); extern "C" void Array_Sort_TisVector2_t524314224_m303756357_gshared (); extern "C" void Array_Sort_TisVector2_t524314224_m317592866_gshared (); extern "C" void Array_Sort_TisVector3_t298406706_TisVector3_t298406706_m2830705005_gshared (); extern "C" void Array_Sort_TisVector3_t298406706_m3067885655_gshared (); extern "C" void Array_Sort_TisVector3_t298406706_m2319546211_gshared (); extern "C" void Array_Sort_TisVector4_t2979484471_TisVector4_t2979484471_m3225632443_gshared (); extern "C" void Array_Sort_TisVector4_t2979484471_m1010182708_gshared (); extern "C" void Array_Sort_TisVector4_t2979484471_m1991385457_gshared (); extern "C" void Array_swap_TisLevelManagerList_t2308881597_TisLevelManagerList_t2308881597_m2057823501_gshared (); extern "C" void Array_swap_TisLevelManagerList_t2308881597_m3625158952_gshared (); extern "C" void Array_swap_TisInt32_t4167366966_TisInt32_t4167366966_m854402285_gshared (); extern "C" void Array_swap_TisInt32_t4167366966_m1042463546_gshared (); extern "C" void Array_swap_TisCustomAttributeNamedArgument_t2457599825_TisCustomAttributeNamedArgument_t2457599825_m4049711816_gshared (); extern "C" void Array_swap_TisCustomAttributeNamedArgument_t2457599825_m762841425_gshared (); extern "C" void Array_swap_TisCustomAttributeTypedArgument_t3886750721_TisCustomAttributeTypedArgument_t3886750721_m116033847_gshared (); extern "C" void Array_swap_TisCustomAttributeTypedArgument_t3886750721_m784248794_gshared (); extern "C" void Array_swap_TisColor32_t2751477055_TisColor32_t2751477055_m1273124482_gshared (); extern "C" void Array_swap_TisColor32_t2751477055_m42978036_gshared (); extern "C" void Array_swap_TisRaycastResult_t2422751240_TisRaycastResult_t2422751240_m705672665_gshared (); extern "C" void Array_swap_TisRaycastResult_t2422751240_m3624774825_gshared (); extern "C" void Array_swap_TisRaycastHit_t1187910868_m3478203801_gshared (); extern "C" void Array_swap_TisUICharInfo_t1969298608_TisUICharInfo_t1969298608_m1300325385_gshared (); extern "C" void Array_swap_TisUICharInfo_t1969298608_m1328678757_gshared (); extern "C" void Array_swap_TisUILineInfo_t335496833_TisUILineInfo_t335496833_m3030356588_gshared (); extern "C" void Array_swap_TisUILineInfo_t335496833_m1655746997_gshared (); extern "C" void Array_swap_TisUIVertex_t1250770280_TisUIVertex_t1250770280_m1617632364_gshared (); extern "C" void Array_swap_TisUIVertex_t1250770280_m3409296710_gshared (); extern "C" void Array_swap_TisVector2_t524314224_TisVector2_t524314224_m821579087_gshared (); extern "C" void Array_swap_TisVector2_t524314224_m3729201719_gshared (); extern "C" void Array_swap_TisVector3_t298406706_TisVector3_t298406706_m3333991879_gshared (); extern "C" void Array_swap_TisVector3_t298406706_m3187338747_gshared (); extern "C" void Array_swap_TisVector4_t2979484471_TisVector4_t2979484471_m382320968_gshared (); extern "C" void Array_swap_TisVector4_t2979484471_m4244856950_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisDictionaryEntry_t1489291961_TisDictionaryEntry_t1489291961_m1028126951_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t4266255930_TisKeyValuePair_2_t4266255930_m3421010058_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t4266255930_TisRuntimeObject_m2524506367_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisInt32_t4167366966_TisInt32_t4167366966_m1332829965_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisInt32_t4167366966_TisRuntimeObject_m2966129696_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m2243248111_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t4266255930_m3314876048_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisInt32_t4167366966_m4273846995_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m1282507972_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisDictionaryEntry_t1489291961_TisDictionaryEntry_t1489291961_m3644868468_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t2117714080_TisKeyValuePair_2_t2117714080_m1117812060_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t2117714080_TisRuntimeObject_m1122238808_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisIntPtr_t_TisIntPtr_t_m2193023224_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisIntPtr_t_TisRuntimeObject_m1113566459_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m4036630838_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t2117714080_m3342239361_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisIntPtr_t_m4232983603_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m4286272054_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisBoolean_t4021514083_TisBoolean_t4021514083_m3249136845_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisBoolean_t4021514083_TisRuntimeObject_m401386733_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisDictionaryEntry_t1489291961_TisDictionaryEntry_t1489291961_m2109010238_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t1159377151_TisKeyValuePair_2_t1159377151_m1436447686_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t1159377151_TisRuntimeObject_m2453383910_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m2837394539_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisBoolean_t4021514083_m673121942_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t1159377151_m977813604_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m3044072997_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisDictionaryEntry_t1489291961_TisDictionaryEntry_t1489291961_m3496308718_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t1305230034_TisKeyValuePair_2_t1305230034_m1050328604_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t1305230034_TisRuntimeObject_m1309865385_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisInt32_t4167366966_TisInt32_t4167366966_m3460220616_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisInt32_t4167366966_TisRuntimeObject_m4032348104_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m3064237102_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t1305230034_m3857172675_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisInt32_t4167366966_m2743284366_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m2474429877_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisDictionaryEntry_t1489291961_TisDictionaryEntry_t1489291961_m1606010780_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t3838208718_TisKeyValuePair_2_t3838208718_m3494609920_gshared (); extern "C" void Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t3838208718_TisRuntimeObject_m623701280_gshared (); extern "C" void Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t3838208718_m2954036666_gshared (); extern "C" void BaseInvokableCall_ThrowOnInvalidArg_TisBoolean_t4021514083_m416848974_gshared (); extern "C" void BaseInvokableCall_ThrowOnInvalidArg_TisInt32_t4167366966_m2734036684_gshared (); extern "C" void BaseInvokableCall_ThrowOnInvalidArg_TisSingle_t2195714798_m761164872_gshared (); extern "C" void BaseInvokableCall_ThrowOnInvalidArg_TisColor_t3622910849_m1840021560_gshared (); extern "C" void BaseInvokableCall_ThrowOnInvalidArg_TisVector2_t524314224_m2569991451_gshared (); extern "C" void Mesh_SetListForChannel_TisVector2_t524314224_m443614536_gshared (); extern "C" void Array_InternalArray__get_Item_TisBenutzerPW_t3993975976_m1639814727_gshared (); extern "C" void Array_InternalArray__get_Item_TisLevelManagerList_t2308881597_m941772306_gshared (); extern "C" void Array_InternalArray__get_Item_TisModels_t93544135_m296746746_gshared (); extern "C" void Array_InternalArray__get_Item_TisTableRange_t2273327377_m364776286_gshared (); extern "C" void Array_InternalArray__get_Item_TisClientCertificateType_t2322709846_m3053415679_gshared (); extern "C" void Array_InternalArray__get_Item_TisBoolean_t4021514083_m3366484361_gshared (); extern "C" void Array_InternalArray__get_Item_TisByte_t2712847921_m1578298498_gshared (); extern "C" void Array_InternalArray__get_Item_TisChar_t4197180777_m1630069085_gshared (); extern "C" void Array_InternalArray__get_Item_TisDictionaryEntry_t1489291961_m2425725057_gshared (); extern "C" void Array_InternalArray__get_Item_TisLink_t1298993810_m3084220358_gshared (); extern "C" void Array_InternalArray__get_Item_TisKeyValuePair_2_t4266255930_m87251705_gshared (); extern "C" void Array_InternalArray__get_Item_TisKeyValuePair_2_t2117714080_m2430827259_gshared (); extern "C" void Array_InternalArray__get_Item_TisKeyValuePair_2_t1159377151_m2774899278_gshared (); extern "C" void Array_InternalArray__get_Item_TisKeyValuePair_2_t1305230034_m3874756037_gshared (); extern "C" void Array_InternalArray__get_Item_TisKeyValuePair_2_t3838208718_m1087517288_gshared (); extern "C" void Array_InternalArray__get_Item_TisLink_t871362263_m2487540438_gshared (); extern "C" void Array_InternalArray__get_Item_TisSlot_t646771150_m3270896876_gshared (); extern "C" void Array_InternalArray__get_Item_TisSlot_t1619562839_m1923465207_gshared (); extern "C" void Array_InternalArray__get_Item_TisDateTime_t2547387390_m561618117_gshared (); extern "C" void Array_InternalArray__get_Item_TisDecimal_t3966699860_m671091884_gshared (); extern "C" void Array_InternalArray__get_Item_TisDouble_t339827693_m94388747_gshared (); extern "C" void Array_InternalArray__get_Item_TisInt16_t3856708424_m1513402322_gshared (); extern "C" void Array_InternalArray__get_Item_TisInt32_t4167366966_m3785370868_gshared (); extern "C" void Array_InternalArray__get_Item_TisInt64_t2408544963_m532229124_gshared (); extern "C" void Array_InternalArray__get_Item_TisIntPtr_t_m3911013803_gshared (); extern "C" void Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t2457599825_m3711151542_gshared (); extern "C" void Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t3886750721_m1462064263_gshared (); extern "C" void Array_InternalArray__get_Item_TisLabelData_t1310448249_m1678487538_gshared (); extern "C" void Array_InternalArray__get_Item_TisLabelFixup_t2905765948_m793596388_gshared (); extern "C" void Array_InternalArray__get_Item_TisILTokenInfo_t2153999167_m2803871293_gshared (); extern "C" void Array_InternalArray__get_Item_TisMonoResource_t119149808_m807576399_gshared (); extern "C" void Array_InternalArray__get_Item_TisMonoWin32Resource_t206024608_m3767811123_gshared (); extern "C" void Array_InternalArray__get_Item_TisRefEmitPermissionSet_t715845335_m3955804016_gshared (); extern "C" void Array_InternalArray__get_Item_TisParameterModifier_t376389310_m4129411515_gshared (); extern "C" void Array_InternalArray__get_Item_TisResourceCacheItem_t1320965396_m3594979532_gshared (); extern "C" void Array_InternalArray__get_Item_TisResourceInfo_t2484257846_m901436690_gshared (); extern "C" void Array_InternalArray__get_Item_TisTypeTag_t4285455534_m458132345_gshared (); extern "C" void Array_InternalArray__get_Item_TisSByte_t428380402_m4027572474_gshared (); extern "C" void Array_InternalArray__get_Item_TisX509ChainStatus_t3142710829_m722931353_gshared (); extern "C" void Array_InternalArray__get_Item_TisSingle_t2195714798_m1798636985_gshared (); extern "C" void Array_InternalArray__get_Item_TisMark_t1839454258_m15158400_gshared (); extern "C" void Array_InternalArray__get_Item_TisTimeSpan_t129343636_m286491354_gshared (); extern "C" void Array_InternalArray__get_Item_TisUInt16_t278453288_m1405603003_gshared (); extern "C" void Array_InternalArray__get_Item_TisUInt32_t346584147_m1394526997_gshared (); extern "C" void Array_InternalArray__get_Item_TisUInt64_t1634845782_m2223544972_gshared (); extern "C" void Array_InternalArray__get_Item_TisUriScheme_t3261313531_m168954460_gshared (); extern "C" void Array_InternalArray__get_Item_TisToggles_t2831120859_m2511784120_gshared (); extern "C" void Array_InternalArray__get_Item_TisTogglesTut_t2696597271_m2917176687_gshared (); extern "C" void Array_InternalArray__get_Item_TisColor_t3622910849_m2174067477_gshared (); extern "C" void Array_InternalArray__get_Item_TisColor32_t2751477055_m1868278734_gshared (); extern "C" void Array_InternalArray__get_Item_TisContactPoint_t3605395583_m475520696_gshared (); extern "C" void Array_InternalArray__get_Item_TisRaycastResult_t2422751240_m3876052552_gshared (); extern "C" void Array_InternalArray__get_Item_TisKeyframe_t2174701810_m3447503451_gshared (); extern "C" void Array_InternalArray__get_Item_TisPlayableBinding_t202000793_m338527195_gshared (); extern "C" void Array_InternalArray__get_Item_TisRaycastHit_t1187910868_m2859541404_gshared (); extern "C" void Array_InternalArray__get_Item_TisRaycastHit2D_t3865340945_m3923482987_gshared (); extern "C" void Array_InternalArray__get_Item_TisHitInfo_t143095646_m4147395697_gshared (); extern "C" void Array_InternalArray__get_Item_TisGcAchievementData_t410448212_m2028810548_gshared (); extern "C" void Array_InternalArray__get_Item_TisGcScoreData_t4278176256_m957029011_gshared (); extern "C" void Array_InternalArray__get_Item_TisTouch_t2985979242_m635534293_gshared (); extern "C" void Array_InternalArray__get_Item_TisContentType_t4244931986_m857383035_gshared (); extern "C" void Array_InternalArray__get_Item_TisUICharInfo_t1969298608_m685959927_gshared (); extern "C" void Array_InternalArray__get_Item_TisUILineInfo_t335496833_m1902229011_gshared (); extern "C" void Array_InternalArray__get_Item_TisUIVertex_t1250770280_m1870850544_gshared (); extern "C" void Array_InternalArray__get_Item_TisWorkRequest_t1197224859_m1002515595_gshared (); extern "C" void Array_InternalArray__get_Item_TisVector2_t524314224_m2309099148_gshared (); extern "C" void Array_InternalArray__get_Item_TisVector3_t298406706_m4207670707_gshared (); extern "C" void Array_InternalArray__get_Item_TisVector4_t2979484471_m4028071756_gshared (); extern "C" void Array_InternalArray__get_Item_TisWorlds_t2374095355_m969904493_gshared (); extern "C" void Mesh_GetAllocArrayFromChannel_TisVector2_t524314224_m2858776280_gshared (); extern "C" void Mesh_GetAllocArrayFromChannel_TisVector3_t298406706_m3011721871_gshared (); extern "C" void Mesh_GetAllocArrayFromChannel_TisVector4_t2979484471_m559431034_gshared (); extern "C" void Enumerable_ElementAt_TisKeyValuePair_2_t3838208718_m1832326784_gshared (); extern "C" void Action_1__ctor_m1867251254_gshared (); extern "C" void Action_1_BeginInvoke_m1559925620_gshared (); extern "C" void Action_1_EndInvoke_m3650103837_gshared (); extern "C" void Action_2_BeginInvoke_m3225566325_gshared (); extern "C" void Action_2_EndInvoke_m4289807925_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0__ctor_m2331507144_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m1910595620_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m341167801_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m3741015137_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Dispose_m2928357184_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Reset_m157477952_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0__ctor_m3938913077_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m934719756_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m3816894891_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m3528827788_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Dispose_m296196750_gshared (); extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Reset_m1224203810_gshared (); extern "C" void ArrayReadOnlyList_1__ctor_m3542285803_gshared (); extern "C" void ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m1461094058_gshared (); extern "C" void ArrayReadOnlyList_1_get_Item_m2987335553_gshared (); extern "C" void ArrayReadOnlyList_1_set_Item_m2288958316_gshared (); extern "C" void ArrayReadOnlyList_1_get_Count_m3080258109_gshared (); extern "C" void ArrayReadOnlyList_1_get_IsReadOnly_m621742565_gshared (); extern "C" void ArrayReadOnlyList_1_Add_m1368408192_gshared (); extern "C" void ArrayReadOnlyList_1_Clear_m3720268532_gshared (); extern "C" void ArrayReadOnlyList_1_Contains_m2287788353_gshared (); extern "C" void ArrayReadOnlyList_1_CopyTo_m2030142291_gshared (); extern "C" void ArrayReadOnlyList_1_GetEnumerator_m3078548189_gshared (); extern "C" void ArrayReadOnlyList_1_IndexOf_m2526509387_gshared (); extern "C" void ArrayReadOnlyList_1_Insert_m3789181325_gshared (); extern "C" void ArrayReadOnlyList_1_Remove_m1414922031_gshared (); extern "C" void ArrayReadOnlyList_1_RemoveAt_m2067346983_gshared (); extern "C" void ArrayReadOnlyList_1_ReadOnlyError_m3938485205_gshared (); extern "C" void ArrayReadOnlyList_1__ctor_m1687942460_gshared (); extern "C" void ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m3960072259_gshared (); extern "C" void ArrayReadOnlyList_1_get_Item_m1801704689_gshared (); extern "C" void ArrayReadOnlyList_1_set_Item_m2466701773_gshared (); extern "C" void ArrayReadOnlyList_1_get_Count_m2287988486_gshared (); extern "C" void ArrayReadOnlyList_1_get_IsReadOnly_m3286656158_gshared (); extern "C" void ArrayReadOnlyList_1_Add_m2990887014_gshared (); extern "C" void ArrayReadOnlyList_1_Clear_m1435562610_gshared (); extern "C" void ArrayReadOnlyList_1_Contains_m726904112_gshared (); extern "C" void ArrayReadOnlyList_1_CopyTo_m2228145506_gshared (); extern "C" void ArrayReadOnlyList_1_GetEnumerator_m893747968_gshared (); extern "C" void ArrayReadOnlyList_1_IndexOf_m2483405623_gshared (); extern "C" void ArrayReadOnlyList_1_Insert_m1681561889_gshared (); extern "C" void ArrayReadOnlyList_1_Remove_m388643886_gshared (); extern "C" void ArrayReadOnlyList_1_RemoveAt_m3421182070_gshared (); extern "C" void ArrayReadOnlyList_1_ReadOnlyError_m2557836598_gshared (); extern "C" void InternalEnumerator_1__ctor_m2954555614_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m621216111_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2708641681_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m3595590113_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m118153131_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2145303665_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1909215430_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1130579338_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3209113514_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1354196259_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1310904675_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3273073448_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1749170280_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1699055824_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m331260876_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m350305386_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1284966993_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1831005034_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m463073499_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1577080488_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3149675672_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1507520104_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1823792195_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1552976843_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2077904836_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1852503017_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1347939924_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m4265644527_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2987634118_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2099112446_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3159582858_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1819667470_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m903490052_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1056046638_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3035749156_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m171320860_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2257047447_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3218203776_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1602328809_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2477428637_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2860513495_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m4239517125_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2970282489_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3524714682_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m192594889_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1019486149_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m964779798_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1144478610_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m4075204165_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m152398125_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m176254425_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1315944378_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1303644926_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2473847258_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2765353950_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m926827729_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3588683778_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m225091919_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1336535_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3168718875_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3240220137_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3492341497_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m276692195_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m982860432_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2477917440_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2766009755_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2531483620_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1849944513_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3653199239_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m652082494_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1691435856_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2818933470_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3790265890_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1867973080_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2276104400_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m185280300_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m4229683352_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1208955867_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m265251778_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3194531693_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2544812909_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2163370643_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3702257913_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3918695363_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2383925307_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2548808973_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m707107321_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m3789368008_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1532580241_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m746318391_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3722273560_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m156891836_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1535710891_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1594096137_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3367010762_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3002072864_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2042020692_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1539175683_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2630433543_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m605038429_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3775236641_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m516120937_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3423192447_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1684204418_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1847035345_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1197912107_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2152325101_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m659956940_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2248088200_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m49466819_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3331303039_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1929558503_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3768468326_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3235002042_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m4185615929_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3529075420_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m11928062_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1996518999_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1940482398_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3940061595_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m797791525_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3184161955_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3218670575_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2609229290_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m734896839_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m4162718622_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2009997529_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m384336365_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m943379288_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m3231542969_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2119309803_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2547868553_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1496511723_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m942171010_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3906751592_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1342822209_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2962384531_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m706661590_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m148385370_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3592453161_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m718461907_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m3574700231_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2197148805_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3588684615_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2216598972_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1312228207_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3195168433_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2905821414_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2228471020_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m961554721_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1049080820_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m904095276_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3359359569_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m845770530_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2366543594_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m312897904_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2626006088_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1955839169_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4103461567_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m381312276_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3695518708_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3741092175_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1757258302_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m720506133_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1995478411_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m3926309811_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m63971460_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1430666954_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2149267684_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m622194692_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2271113815_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2406569796_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m385415656_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1486578125_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2224777342_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3438748692_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3744097948_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m3771557484_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1187031621_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2259979444_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3206013439_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1562319719_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2156464500_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2268675538_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m432541996_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m190475148_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2353119765_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3852572132_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2265717861_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m608682809_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m198451628_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1304399508_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2191008063_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1337006413_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2150298411_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m424788309_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3501209602_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m558248804_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3532474580_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3835359602_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3963505726_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1658462019_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3763133621_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1262356332_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1360257828_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1368792949_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3414302523_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2183064769_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1026228656_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3080577109_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3359475296_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1404613783_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2832737226_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m310841788_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3748048874_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m4105881341_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1242770844_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2304571289_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m560460330_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1922363589_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m474280076_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2317167207_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2903677548_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2877646458_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2213450065_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1462450161_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1311658855_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2252767536_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3025379094_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3438105506_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1282316670_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m4122483747_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m939800944_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3670090156_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3903591958_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2717672878_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m286665964_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2475473881_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1816627747_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3704788043_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1855967696_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1591885875_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m574450348_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m284910735_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2365251219_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2295348129_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m359064270_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3077042088_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1844716427_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m786613463_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m643407953_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m4249182996_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3732221897_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2332488018_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2597810018_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m908602246_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m450451254_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m737496674_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3880760329_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m983123554_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3252609157_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m35336930_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m198020718_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1127609415_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2093850970_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2170875542_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m295234806_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m419778309_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2816101918_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2238110506_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2908495714_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m773596757_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2476821320_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m323180976_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2932635695_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3711361361_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1964608148_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2733029860_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m393157977_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m4002815211_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m4236685595_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1762731946_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3491436000_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2145359333_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3611097332_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2967979357_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1819726936_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m551887749_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2621847094_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2249065832_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2154111598_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1280953117_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2790586739_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2480423859_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3534736362_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1480383077_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2722915826_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m655691125_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3371111470_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1373961216_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1558061542_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m142939733_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m272374290_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m3940075483_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2793324796_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2247053161_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2827807128_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3990010472_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1955567765_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2911367132_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3983224181_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3694853055_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3746559084_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2322505650_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m431312153_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1533402526_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m702627516_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3260998282_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3231179789_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m981317795_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1264862208_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1676712754_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3592685261_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2169370909_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m887310966_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1519890311_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m501646942_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2273966252_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2289690223_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3740096797_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3960121478_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2309830939_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m549534391_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m438865398_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m4292146206_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3048158376_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2817316791_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2126727513_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1543287904_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m944623400_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2116305105_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3969825731_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1156652209_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m906741733_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2548023587_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m234834466_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3266424213_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2181589682_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1792711905_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3699740935_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4268622422_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1378154407_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m525023810_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3205836086_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1749921727_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1810271023_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m97342327_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m4094021704_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2627623589_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2020445678_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2632413630_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2888652107_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3514059145_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m3799620392_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2398787112_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3192151726_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m697376228_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2763081452_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1535284039_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1750268589_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3975641656_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m3210456976_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m1357061361_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2434483971_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3354168180_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m3581377393_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m2995093898_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1770635135_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m3251892365_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3468521213_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3380912865_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2461835203_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3283418413_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m4200923779_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m766092231_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1862549010_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3794436730_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2334298401_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3484245270_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m4218131491_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m738345377_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1098731584_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m763600615_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m797655115_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m1393825554_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1976519977_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m502141539_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3255284624_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2683712916_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m1359619596_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3246817258_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m4212690315_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m2548085301_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m706626501_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1443989230_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m414585065_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m914655433_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m2742206882_AdjustorThunk (); extern "C" void InternalEnumerator_1__ctor_m690112672_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m337039808_AdjustorThunk (); extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1057057084_AdjustorThunk (); extern "C" void InternalEnumerator_1_Dispose_m2239216693_AdjustorThunk (); extern "C" void InternalEnumerator_1_MoveNext_m3428757321_AdjustorThunk (); extern "C" void InternalEnumerator_1_get_Current_m1511526714_AdjustorThunk (); extern "C" void DefaultComparer__ctor_m1518904427_gshared (); extern "C" void DefaultComparer_Compare_m180341257_gshared (); extern "C" void DefaultComparer__ctor_m3691432185_gshared (); extern "C" void DefaultComparer_Compare_m1186418147_gshared (); extern "C" void DefaultComparer__ctor_m2520792823_gshared (); extern "C" void DefaultComparer_Compare_m171777074_gshared (); extern "C" void DefaultComparer__ctor_m2383809651_gshared (); extern "C" void DefaultComparer_Compare_m1377513784_gshared (); extern "C" void DefaultComparer__ctor_m1135990511_gshared (); extern "C" void DefaultComparer_Compare_m4045020474_gshared (); extern "C" void DefaultComparer__ctor_m257303511_gshared (); extern "C" void DefaultComparer_Compare_m3792593597_gshared (); extern "C" void DefaultComparer__ctor_m706234635_gshared (); extern "C" void DefaultComparer_Compare_m2895730461_gshared (); extern "C" void DefaultComparer__ctor_m3144182115_gshared (); extern "C" void DefaultComparer_Compare_m3139143409_gshared (); extern "C" void DefaultComparer__ctor_m2085016497_gshared (); extern "C" void DefaultComparer_Compare_m1004594602_gshared (); extern "C" void DefaultComparer__ctor_m3507207572_gshared (); extern "C" void DefaultComparer_Compare_m1151109652_gshared (); extern "C" void DefaultComparer__ctor_m2150478794_gshared (); extern "C" void DefaultComparer_Compare_m1681300516_gshared (); extern "C" void DefaultComparer__ctor_m3095422300_gshared (); extern "C" void DefaultComparer_Compare_m1078315542_gshared (); extern "C" void DefaultComparer__ctor_m3960260142_gshared (); extern "C" void DefaultComparer_Compare_m1692362760_gshared (); extern "C" void DefaultComparer__ctor_m3087461155_gshared (); extern "C" void DefaultComparer_Compare_m681077376_gshared (); extern "C" void DefaultComparer__ctor_m915283052_gshared (); extern "C" void DefaultComparer_Compare_m2310684883_gshared (); extern "C" void DefaultComparer__ctor_m901461582_gshared (); extern "C" void DefaultComparer_Compare_m4247789379_gshared (); extern "C" void Comparer_1__ctor_m2389195041_gshared (); extern "C" void Comparer_1__cctor_m684393505_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m1877479000_gshared (); extern "C" void Comparer_1_get_Default_m2560889371_gshared (); extern "C" void Comparer_1__ctor_m373265150_gshared (); extern "C" void Comparer_1__cctor_m2253929821_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m1789359811_gshared (); extern "C" void Comparer_1_get_Default_m823137468_gshared (); extern "C" void Comparer_1__ctor_m1227107450_gshared (); extern "C" void Comparer_1__cctor_m893012121_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m942767232_gshared (); extern "C" void Comparer_1_get_Default_m2741542078_gshared (); extern "C" void Comparer_1__ctor_m3477737230_gshared (); extern "C" void Comparer_1__cctor_m3609703628_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m395195913_gshared (); extern "C" void Comparer_1_get_Default_m616822732_gshared (); extern "C" void Comparer_1__ctor_m187380777_gshared (); extern "C" void Comparer_1__cctor_m2264815890_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m1143873396_gshared (); extern "C" void Comparer_1_get_Default_m1898235373_gshared (); extern "C" void Comparer_1__ctor_m3101467896_gshared (); extern "C" void Comparer_1__cctor_m2891722579_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m1537522823_gshared (); extern "C" void Comparer_1_get_Default_m3673896534_gshared (); extern "C" void Comparer_1__ctor_m536798075_gshared (); extern "C" void Comparer_1__cctor_m9783457_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m3566832957_gshared (); extern "C" void Comparer_1_get_Default_m295347534_gshared (); extern "C" void Comparer_1__ctor_m1990700529_gshared (); extern "C" void Comparer_1__cctor_m543673492_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m1121897463_gshared (); extern "C" void Comparer_1_get_Default_m3960571354_gshared (); extern "C" void Comparer_1__ctor_m919845466_gshared (); extern "C" void Comparer_1__cctor_m2925566354_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m1255410834_gshared (); extern "C" void Comparer_1_get_Default_m2322270732_gshared (); extern "C" void Comparer_1__ctor_m370242207_gshared (); extern "C" void Comparer_1__cctor_m3728113484_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m1065691606_gshared (); extern "C" void Comparer_1_get_Default_m3443010208_gshared (); extern "C" void Comparer_1__ctor_m1364081744_gshared (); extern "C" void Comparer_1__cctor_m2683845479_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m1085817454_gshared (); extern "C" void Comparer_1_get_Default_m2135587558_gshared (); extern "C" void Comparer_1__ctor_m1982288092_gshared (); extern "C" void Comparer_1__cctor_m2505897972_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m1585360692_gshared (); extern "C" void Comparer_1_get_Default_m3196820089_gshared (); extern "C" void Comparer_1__ctor_m2766918855_gshared (); extern "C" void Comparer_1__cctor_m3772043511_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m2405984150_gshared (); extern "C" void Comparer_1_get_Default_m1603913412_gshared (); extern "C" void Comparer_1__ctor_m620592517_gshared (); extern "C" void Comparer_1__cctor_m3618303085_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m4155993926_gshared (); extern "C" void Comparer_1_get_Default_m2438234297_gshared (); extern "C" void Comparer_1__ctor_m294536072_gshared (); extern "C" void Comparer_1__cctor_m313900081_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m2581908568_gshared (); extern "C" void Comparer_1_get_Default_m1705698745_gshared (); extern "C" void Comparer_1__ctor_m3413926793_gshared (); extern "C" void Comparer_1__cctor_m4032306312_gshared (); extern "C" void Comparer_1_System_Collections_IComparer_Compare_m3674729749_gshared (); extern "C" void Comparer_1_get_Default_m1528955527_gshared (); extern "C" void Enumerator__ctor_m1932705720_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m211234110_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3291317232_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1363867281_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m1324897511_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3303291872_AdjustorThunk (); extern "C" void Enumerator_get_CurrentKey_m3102505877_AdjustorThunk (); extern "C" void Enumerator_get_CurrentValue_m3307438096_AdjustorThunk (); extern "C" void Enumerator_Reset_m448283569_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m2133093440_AdjustorThunk (); extern "C" void Enumerator_VerifyCurrent_m2035321264_AdjustorThunk (); extern "C" void Enumerator__ctor_m2788532977_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m3583867014_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m32287131_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m300494221_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m1456456808_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2237094973_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1557465500_AdjustorThunk (); extern "C" void Enumerator_get_Current_m1001791183_AdjustorThunk (); extern "C" void Enumerator_get_CurrentKey_m3824944329_AdjustorThunk (); extern "C" void Enumerator_get_CurrentValue_m3866415129_AdjustorThunk (); extern "C" void Enumerator_Reset_m536862429_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m2825396839_AdjustorThunk (); extern "C" void Enumerator_VerifyCurrent_m1723295917_AdjustorThunk (); extern "C" void Enumerator_Dispose_m267234577_AdjustorThunk (); extern "C" void Enumerator__ctor_m1197046281_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m1342153644_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1058536535_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m2830243707_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3351109082_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1860996797_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m519528409_AdjustorThunk (); extern "C" void Enumerator_get_Current_m2366863555_AdjustorThunk (); extern "C" void Enumerator_get_CurrentKey_m1709452556_AdjustorThunk (); extern "C" void Enumerator_get_CurrentValue_m1225153626_AdjustorThunk (); extern "C" void Enumerator_Reset_m2381302484_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m1255047066_AdjustorThunk (); extern "C" void Enumerator_VerifyCurrent_m3460286802_AdjustorThunk (); extern "C" void Enumerator_Dispose_m2069432408_AdjustorThunk (); extern "C" void Enumerator__ctor_m3292914202_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m2762311908_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3205553024_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m2921627203_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4074892837_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2553251025_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1459653649_AdjustorThunk (); extern "C" void Enumerator_get_Current_m3979892791_AdjustorThunk (); extern "C" void Enumerator_get_CurrentKey_m667162401_AdjustorThunk (); extern "C" void Enumerator_get_CurrentValue_m305623701_AdjustorThunk (); extern "C" void Enumerator_Reset_m455828868_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m3772829388_AdjustorThunk (); extern "C" void Enumerator_VerifyCurrent_m1103918958_AdjustorThunk (); extern "C" void Enumerator_Dispose_m896111175_AdjustorThunk (); extern "C" void Enumerator__ctor_m1825055562_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m3270328167_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m49427229_AdjustorThunk (); extern "C" void Enumerator_Dispose_m2658312612_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m4001332805_AdjustorThunk (); extern "C" void Enumerator_get_Current_m976821678_AdjustorThunk (); extern "C" void Enumerator__ctor_m4179268629_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m395432428_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2303063541_AdjustorThunk (); extern "C" void Enumerator_Dispose_m3569424230_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m404813974_AdjustorThunk (); extern "C" void Enumerator_get_Current_m427037079_AdjustorThunk (); extern "C" void Enumerator__ctor_m4086444019_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m2576107779_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2288898442_AdjustorThunk (); extern "C" void Enumerator_Dispose_m1990423163_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m4123541973_AdjustorThunk (); extern "C" void Enumerator_get_Current_m652977417_AdjustorThunk (); extern "C" void Enumerator__ctor_m3878017316_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m2621392120_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3522185447_AdjustorThunk (); extern "C" void Enumerator_Dispose_m24428298_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m2189578951_AdjustorThunk (); extern "C" void Enumerator_get_Current_m3821758309_AdjustorThunk (); extern "C" void KeyCollection__ctor_m1640243250_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Add_m33268894_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Clear_m617370654_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Contains_m3322626803_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Remove_m1789933409_gshared (); extern "C" void KeyCollection_System_Collections_Generic_IEnumerableU3CTKeyU3E_GetEnumerator_m2020714538_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_CopyTo_m2797306409_gshared (); extern "C" void KeyCollection_System_Collections_IEnumerable_GetEnumerator_m911670557_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_get_IsReadOnly_m2568452855_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_get_IsSynchronized_m893771413_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_get_SyncRoot_m323077812_gshared (); extern "C" void KeyCollection_CopyTo_m3908655029_gshared (); extern "C" void KeyCollection_GetEnumerator_m3976526469_gshared (); extern "C" void KeyCollection_get_Count_m4140937719_gshared (); extern "C" void KeyCollection__ctor_m3852927763_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Add_m4004752208_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Clear_m623095589_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Contains_m109702748_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Remove_m2889927377_gshared (); extern "C" void KeyCollection_System_Collections_Generic_IEnumerableU3CTKeyU3E_GetEnumerator_m2137849265_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_CopyTo_m2971312336_gshared (); extern "C" void KeyCollection_System_Collections_IEnumerable_GetEnumerator_m3680605832_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_get_IsReadOnly_m237008770_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_get_IsSynchronized_m181092864_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_get_SyncRoot_m1259921786_gshared (); extern "C" void KeyCollection_CopyTo_m421771826_gshared (); extern "C" void KeyCollection_GetEnumerator_m2960276691_gshared (); extern "C" void KeyCollection_get_Count_m3134313436_gshared (); extern "C" void KeyCollection__ctor_m2107813742_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Add_m101938036_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Clear_m1378692357_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Contains_m4134559388_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Remove_m1174986174_gshared (); extern "C" void KeyCollection_System_Collections_Generic_IEnumerableU3CTKeyU3E_GetEnumerator_m3592177831_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_CopyTo_m3139844533_gshared (); extern "C" void KeyCollection_System_Collections_IEnumerable_GetEnumerator_m3567016897_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_get_IsReadOnly_m3676062312_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_get_IsSynchronized_m1448338196_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_get_SyncRoot_m1453715844_gshared (); extern "C" void KeyCollection_CopyTo_m1147098729_gshared (); extern "C" void KeyCollection_GetEnumerator_m2377606753_gshared (); extern "C" void KeyCollection_get_Count_m2856732479_gshared (); extern "C" void KeyCollection__ctor_m4239680610_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Add_m367506214_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Clear_m2977115764_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Contains_m505955065_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Remove_m387242715_gshared (); extern "C" void KeyCollection_System_Collections_Generic_IEnumerableU3CTKeyU3E_GetEnumerator_m682724645_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_CopyTo_m4150039953_gshared (); extern "C" void KeyCollection_System_Collections_IEnumerable_GetEnumerator_m177876556_gshared (); extern "C" void KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_get_IsReadOnly_m2550279615_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_get_IsSynchronized_m1099042751_gshared (); extern "C" void KeyCollection_System_Collections_ICollection_get_SyncRoot_m188410405_gshared (); extern "C" void KeyCollection_CopyTo_m121542817_gshared (); extern "C" void KeyCollection_GetEnumerator_m3178015012_gshared (); extern "C" void KeyCollection_get_Count_m2607519796_gshared (); extern "C" void ShimEnumerator__ctor_m1575617985_gshared (); extern "C" void ShimEnumerator_MoveNext_m2566043092_gshared (); extern "C" void ShimEnumerator_get_Entry_m3698941915_gshared (); extern "C" void ShimEnumerator_get_Key_m445546879_gshared (); extern "C" void ShimEnumerator_get_Value_m3277359826_gshared (); extern "C" void ShimEnumerator_get_Current_m1230646031_gshared (); extern "C" void ShimEnumerator_Reset_m2416281426_gshared (); extern "C" void ShimEnumerator__ctor_m552008432_gshared (); extern "C" void ShimEnumerator_MoveNext_m3111893793_gshared (); extern "C" void ShimEnumerator_get_Entry_m3803995640_gshared (); extern "C" void ShimEnumerator_get_Key_m3317293239_gshared (); extern "C" void ShimEnumerator_get_Value_m2850306264_gshared (); extern "C" void ShimEnumerator_get_Current_m1600038489_gshared (); extern "C" void ShimEnumerator_Reset_m2285286534_gshared (); extern "C" void ShimEnumerator__ctor_m648064161_gshared (); extern "C" void ShimEnumerator_MoveNext_m2959320417_gshared (); extern "C" void ShimEnumerator_get_Entry_m31432330_gshared (); extern "C" void ShimEnumerator_get_Key_m3229158492_gshared (); extern "C" void ShimEnumerator_get_Value_m1721172434_gshared (); extern "C" void ShimEnumerator_get_Current_m1405126092_gshared (); extern "C" void ShimEnumerator_Reset_m1643491539_gshared (); extern "C" void ShimEnumerator__ctor_m567765412_gshared (); extern "C" void ShimEnumerator_MoveNext_m133996972_gshared (); extern "C" void ShimEnumerator_get_Entry_m966461454_gshared (); extern "C" void ShimEnumerator_get_Key_m4272764842_gshared (); extern "C" void ShimEnumerator_get_Value_m1273273545_gshared (); extern "C" void ShimEnumerator_get_Current_m1379132162_gshared (); extern "C" void ShimEnumerator_Reset_m1265558806_gshared (); extern "C" void Transform_1__ctor_m676598450_gshared (); extern "C" void Transform_1_Invoke_m1800738111_gshared (); extern "C" void Transform_1_BeginInvoke_m4238473456_gshared (); extern "C" void Transform_1_EndInvoke_m2030752143_gshared (); extern "C" void Transform_1__ctor_m1857260943_gshared (); extern "C" void Transform_1_Invoke_m991186210_gshared (); extern "C" void Transform_1_BeginInvoke_m594858484_gshared (); extern "C" void Transform_1_EndInvoke_m4264587799_gshared (); extern "C" void Transform_1__ctor_m4064255561_gshared (); extern "C" void Transform_1_Invoke_m1176102625_gshared (); extern "C" void Transform_1_BeginInvoke_m269959766_gshared (); extern "C" void Transform_1_EndInvoke_m86866110_gshared (); extern "C" void Transform_1__ctor_m2699736995_gshared (); extern "C" void Transform_1_Invoke_m4188541259_gshared (); extern "C" void Transform_1_BeginInvoke_m1857837173_gshared (); extern "C" void Transform_1_EndInvoke_m1979342741_gshared (); extern "C" void Transform_1__ctor_m1284558098_gshared (); extern "C" void Transform_1_Invoke_m3613816418_gshared (); extern "C" void Transform_1_BeginInvoke_m1249276119_gshared (); extern "C" void Transform_1_EndInvoke_m617619879_gshared (); extern "C" void Transform_1__ctor_m4195597845_gshared (); extern "C" void Transform_1_Invoke_m1298805565_gshared (); extern "C" void Transform_1_BeginInvoke_m628639072_gshared (); extern "C" void Transform_1_EndInvoke_m1996317949_gshared (); extern "C" void Transform_1__ctor_m4241615619_gshared (); extern "C" void Transform_1_Invoke_m1206853375_gshared (); extern "C" void Transform_1_BeginInvoke_m2840686006_gshared (); extern "C" void Transform_1_EndInvoke_m4086378267_gshared (); extern "C" void Transform_1__ctor_m1367806119_gshared (); extern "C" void Transform_1_Invoke_m2406349658_gshared (); extern "C" void Transform_1_BeginInvoke_m2380884374_gshared (); extern "C" void Transform_1_EndInvoke_m283122546_gshared (); extern "C" void Transform_1__ctor_m862055785_gshared (); extern "C" void Transform_1_Invoke_m3298597565_gshared (); extern "C" void Transform_1_BeginInvoke_m3913405589_gshared (); extern "C" void Transform_1_EndInvoke_m461598693_gshared (); extern "C" void Transform_1__ctor_m1014649038_gshared (); extern "C" void Transform_1_Invoke_m1462281805_gshared (); extern "C" void Transform_1_BeginInvoke_m3634866754_gshared (); extern "C" void Transform_1_EndInvoke_m67862664_gshared (); extern "C" void Transform_1__ctor_m1261948378_gshared (); extern "C" void Transform_1_Invoke_m173857780_gshared (); extern "C" void Transform_1_BeginInvoke_m3337769480_gshared (); extern "C" void Transform_1_EndInvoke_m2833214024_gshared (); extern "C" void Transform_1__ctor_m547893235_gshared (); extern "C" void Transform_1_Invoke_m3856094792_gshared (); extern "C" void Transform_1_BeginInvoke_m633701249_gshared (); extern "C" void Transform_1_EndInvoke_m3835720970_gshared (); extern "C" void Transform_1__ctor_m3323127732_gshared (); extern "C" void Transform_1_Invoke_m1083809126_gshared (); extern "C" void Transform_1_BeginInvoke_m1726063881_gshared (); extern "C" void Transform_1_EndInvoke_m822331337_gshared (); extern "C" void Transform_1__ctor_m4024721738_gshared (); extern "C" void Transform_1_Invoke_m2341343355_gshared (); extern "C" void Transform_1_BeginInvoke_m1169141982_gshared (); extern "C" void Transform_1_EndInvoke_m3952767380_gshared (); extern "C" void Transform_1__ctor_m2153130131_gshared (); extern "C" void Transform_1_Invoke_m3658939646_gshared (); extern "C" void Transform_1_BeginInvoke_m1396611415_gshared (); extern "C" void Transform_1_EndInvoke_m1306784283_gshared (); extern "C" void Transform_1__ctor_m201697272_gshared (); extern "C" void Transform_1_Invoke_m840651980_gshared (); extern "C" void Transform_1_BeginInvoke_m3549154960_gshared (); extern "C" void Transform_1_EndInvoke_m4112095977_gshared (); extern "C" void Transform_1__ctor_m481711863_gshared (); extern "C" void Transform_1_Invoke_m3331823665_gshared (); extern "C" void Transform_1_BeginInvoke_m1423783309_gshared (); extern "C" void Transform_1_EndInvoke_m1324116401_gshared (); extern "C" void Transform_1__ctor_m1888019603_gshared (); extern "C" void Transform_1_Invoke_m3837942491_gshared (); extern "C" void Transform_1_BeginInvoke_m3673740331_gshared (); extern "C" void Transform_1_EndInvoke_m1338670938_gshared (); extern "C" void Enumerator__ctor_m1237793372_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m1950047646_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2411799088_AdjustorThunk (); extern "C" void Enumerator__ctor_m1667991109_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m278043749_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m988661337_AdjustorThunk (); extern "C" void Enumerator_Dispose_m15794726_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m3164439263_AdjustorThunk (); extern "C" void Enumerator_get_Current_m3533083868_AdjustorThunk (); extern "C" void Enumerator__ctor_m3090964528_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m3278907484_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2013670379_AdjustorThunk (); extern "C" void Enumerator_Dispose_m2175679295_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m3885680707_AdjustorThunk (); extern "C" void Enumerator_get_Current_m3183449403_AdjustorThunk (); extern "C" void Enumerator__ctor_m302877487_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m696841066_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m996849071_AdjustorThunk (); extern "C" void Enumerator_Dispose_m3823589726_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m2908309428_AdjustorThunk (); extern "C" void Enumerator_get_Current_m2834104167_AdjustorThunk (); extern "C" void ValueCollection__ctor_m1415446457_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m634638146_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m2338087175_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m2568101772_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m969238026_gshared (); extern "C" void ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m1083042434_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_CopyTo_m1275731581_gshared (); extern "C" void ValueCollection_System_Collections_IEnumerable_GetEnumerator_m849775743_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m1927998075_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_get_IsSynchronized_m4181803206_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_get_SyncRoot_m1725858077_gshared (); extern "C" void ValueCollection_CopyTo_m2863853517_gshared (); extern "C" void ValueCollection_get_Count_m4100622354_gshared (); extern "C" void ValueCollection__ctor_m4180764892_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3640270864_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m3880963637_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m1458961292_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1091714430_gshared (); extern "C" void ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m1420198846_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_CopyTo_m335812388_gshared (); extern "C" void ValueCollection_System_Collections_IEnumerable_GetEnumerator_m2243102889_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m4239076308_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_get_IsSynchronized_m1837129004_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_get_SyncRoot_m2688941712_gshared (); extern "C" void ValueCollection_CopyTo_m3991743707_gshared (); extern "C" void ValueCollection_GetEnumerator_m2858474616_gshared (); extern "C" void ValueCollection_get_Count_m4272810970_gshared (); extern "C" void ValueCollection__ctor_m1554341859_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m2435700008_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m2255358480_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m333388705_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1423091888_gshared (); extern "C" void ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m336319794_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_CopyTo_m2838714798_gshared (); extern "C" void ValueCollection_System_Collections_IEnumerable_GetEnumerator_m2854059652_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m1065759156_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_get_IsSynchronized_m4059376031_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_get_SyncRoot_m2883279531_gshared (); extern "C" void ValueCollection_CopyTo_m1052833874_gshared (); extern "C" void ValueCollection_GetEnumerator_m323155277_gshared (); extern "C" void ValueCollection_get_Count_m1095971517_gshared (); extern "C" void ValueCollection__ctor_m3547620709_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3253971041_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m677038586_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m3742354739_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2910470120_gshared (); extern "C" void ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m1158316693_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_CopyTo_m1303592393_gshared (); extern "C" void ValueCollection_System_Collections_IEnumerable_GetEnumerator_m2538945376_gshared (); extern "C" void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m2924378724_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_get_IsSynchronized_m2356795503_gshared (); extern "C" void ValueCollection_System_Collections_ICollection_get_SyncRoot_m1521180200_gshared (); extern "C" void ValueCollection_CopyTo_m2559096955_gshared (); extern "C" void ValueCollection_GetEnumerator_m3426609542_gshared (); extern "C" void ValueCollection_get_Count_m883885252_gshared (); extern "C" void Dictionary_2__ctor_m1236760181_gshared (); extern "C" void Dictionary_2__ctor_m911507367_gshared (); extern "C" void Dictionary_2__ctor_m2674884109_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_get_Item_m610844593_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_set_Item_m3860674848_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_Add_m710987906_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_Remove_m3437860263_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m301579029_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_get_SyncRoot_m3809750667_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m1523593609_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m1231269831_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m3318716154_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m1924001334_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m2356680282_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_CopyTo_m1351303294_gshared (); extern "C" void Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m325348467_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m119238237_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_GetEnumerator_m1193240929_gshared (); extern "C" void Dictionary_2_get_Count_m391810322_gshared (); extern "C" void Dictionary_2_Init_m2480808204_gshared (); extern "C" void Dictionary_2_InitArrays_m2793627763_gshared (); extern "C" void Dictionary_2_CopyToCheck_m2911768893_gshared (); extern "C" void Dictionary_2_make_pair_m3572836657_gshared (); extern "C" void Dictionary_2_pick_key_m1031500116_gshared (); extern "C" void Dictionary_2_pick_value_m1333367471_gshared (); extern "C" void Dictionary_2_CopyTo_m1151700738_gshared (); extern "C" void Dictionary_2_Resize_m3919687029_gshared (); extern "C" void Dictionary_2_ContainsKey_m963952177_gshared (); extern "C" void Dictionary_2_ContainsValue_m4096001372_gshared (); extern "C" void Dictionary_2_GetObjectData_m2223119208_gshared (); extern "C" void Dictionary_2_OnDeserialization_m3801211549_gshared (); extern "C" void Dictionary_2_get_Keys_m3157716565_gshared (); extern "C" void Dictionary_2_ToTKey_m3780617256_gshared (); extern "C" void Dictionary_2_ToTValue_m1626854695_gshared (); extern "C" void Dictionary_2_ContainsKeyValuePair_m4250826812_gshared (); extern "C" void Dictionary_2_U3CCopyToU3Em__0_m1415143054_gshared (); extern "C" void Dictionary_2__ctor_m567859500_gshared (); extern "C" void Dictionary_2__ctor_m1211475800_gshared (); extern "C" void Dictionary_2__ctor_m3551192152_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_get_Item_m906161431_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_set_Item_m1511368127_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_Add_m604814162_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_Remove_m3017629136_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m1894809189_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_get_SyncRoot_m3419576335_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m889110014_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m2764462274_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m514139052_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m3456314249_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m123768782_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_CopyTo_m913787792_gshared (); extern "C" void Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m3339300066_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m2443758172_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_GetEnumerator_m974098721_gshared (); extern "C" void Dictionary_2_get_Count_m3014647369_gshared (); extern "C" void Dictionary_2_get_Item_m2134446735_gshared (); extern "C" void Dictionary_2_set_Item_m2123996821_gshared (); extern "C" void Dictionary_2_Init_m1356777212_gshared (); extern "C" void Dictionary_2_InitArrays_m314368110_gshared (); extern "C" void Dictionary_2_CopyToCheck_m2778727080_gshared (); extern "C" void Dictionary_2_make_pair_m2130998385_gshared (); extern "C" void Dictionary_2_pick_key_m3814291534_gshared (); extern "C" void Dictionary_2_pick_value_m3279776701_gshared (); extern "C" void Dictionary_2_CopyTo_m159058756_gshared (); extern "C" void Dictionary_2_Resize_m791215551_gshared (); extern "C" void Dictionary_2_Add_m4284638573_gshared (); extern "C" void Dictionary_2_Clear_m3750639056_gshared (); extern "C" void Dictionary_2_ContainsKey_m2603164442_gshared (); extern "C" void Dictionary_2_ContainsValue_m3610836447_gshared (); extern "C" void Dictionary_2_GetObjectData_m954572173_gshared (); extern "C" void Dictionary_2_OnDeserialization_m4082088316_gshared (); extern "C" void Dictionary_2_Remove_m2330118211_gshared (); extern "C" void Dictionary_2_get_Keys_m4277465684_gshared (); extern "C" void Dictionary_2_get_Values_m2282744792_gshared (); extern "C" void Dictionary_2_ToTKey_m797771183_gshared (); extern "C" void Dictionary_2_ToTValue_m4030802029_gshared (); extern "C" void Dictionary_2_ContainsKeyValuePair_m1950088615_gshared (); extern "C" void Dictionary_2_GetEnumerator_m1914440661_gshared (); extern "C" void Dictionary_2_U3CCopyToU3Em__0_m2756117116_gshared (); extern "C" void Dictionary_2__ctor_m4171579736_gshared (); extern "C" void Dictionary_2__ctor_m2734272568_gshared (); extern "C" void Dictionary_2__ctor_m1859287152_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_get_Item_m536127790_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_set_Item_m878802643_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_Add_m2380759635_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_Remove_m1403698240_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m3404178983_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_get_SyncRoot_m2747053404_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m3808051992_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m339011641_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m2905379232_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m2769547780_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m2561310750_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_CopyTo_m400238926_gshared (); extern "C" void Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m1096657896_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m3466926568_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_GetEnumerator_m917541689_gshared (); extern "C" void Dictionary_2_get_Count_m1170566910_gshared (); extern "C" void Dictionary_2_get_Item_m3521102497_gshared (); extern "C" void Dictionary_2_set_Item_m1548998947_gshared (); extern "C" void Dictionary_2_Init_m492988845_gshared (); extern "C" void Dictionary_2_InitArrays_m2648249695_gshared (); extern "C" void Dictionary_2_CopyToCheck_m3755937996_gshared (); extern "C" void Dictionary_2_make_pair_m4190808215_gshared (); extern "C" void Dictionary_2_pick_key_m1099122715_gshared (); extern "C" void Dictionary_2_pick_value_m4053283801_gshared (); extern "C" void Dictionary_2_CopyTo_m1834839979_gshared (); extern "C" void Dictionary_2_Resize_m3988909210_gshared (); extern "C" void Dictionary_2_Clear_m3519158142_gshared (); extern "C" void Dictionary_2_ContainsKey_m2603154382_gshared (); extern "C" void Dictionary_2_ContainsValue_m2678002877_gshared (); extern "C" void Dictionary_2_GetObjectData_m4214020049_gshared (); extern "C" void Dictionary_2_OnDeserialization_m3974896677_gshared (); extern "C" void Dictionary_2_Remove_m2202982133_gshared (); extern "C" void Dictionary_2_TryGetValue_m2163337365_gshared (); extern "C" void Dictionary_2_get_Keys_m1935473563_gshared (); extern "C" void Dictionary_2_get_Values_m4120272651_gshared (); extern "C" void Dictionary_2_ToTKey_m3370249913_gshared (); extern "C" void Dictionary_2_ToTValue_m2747413486_gshared (); extern "C" void Dictionary_2_ContainsKeyValuePair_m2011580307_gshared (); extern "C" void Dictionary_2_GetEnumerator_m4056314804_gshared (); extern "C" void Dictionary_2_U3CCopyToU3Em__0_m2265140307_gshared (); extern "C" void Dictionary_2__ctor_m577611851_gshared (); extern "C" void Dictionary_2__ctor_m299030681_gshared (); extern "C" void Dictionary_2__ctor_m822355699_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_get_Item_m2682151733_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_set_Item_m2884647835_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_Add_m3798508847_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_Remove_m1473228301_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m3886527093_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_get_SyncRoot_m3668442143_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m3582235455_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m851809423_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m3230677473_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m3949724133_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m3637015309_gshared (); extern "C" void Dictionary_2_System_Collections_ICollection_CopyTo_m1002291241_gshared (); extern "C" void Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m3660471986_gshared (); extern "C" void Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m1954424144_gshared (); extern "C" void Dictionary_2_System_Collections_IDictionary_GetEnumerator_m3222665199_gshared (); extern "C" void Dictionary_2_get_Count_m2707693104_gshared (); extern "C" void Dictionary_2_get_Item_m3261534240_gshared (); extern "C" void Dictionary_2_set_Item_m3466787846_gshared (); extern "C" void Dictionary_2_Init_m4086167419_gshared (); extern "C" void Dictionary_2_InitArrays_m2395196332_gshared (); extern "C" void Dictionary_2_CopyToCheck_m3814618449_gshared (); extern "C" void Dictionary_2_make_pair_m1674152097_gshared (); extern "C" void Dictionary_2_pick_key_m1151235035_gshared (); extern "C" void Dictionary_2_pick_value_m992604438_gshared (); extern "C" void Dictionary_2_CopyTo_m2266336956_gshared (); extern "C" void Dictionary_2_Resize_m1724070239_gshared (); extern "C" void Dictionary_2_Clear_m3402859905_gshared (); extern "C" void Dictionary_2_ContainsKey_m890832683_gshared (); extern "C" void Dictionary_2_ContainsValue_m687726003_gshared (); extern "C" void Dictionary_2_GetObjectData_m3655979928_gshared (); extern "C" void Dictionary_2_OnDeserialization_m735313247_gshared (); extern "C" void Dictionary_2_Remove_m894537905_gshared (); extern "C" void Dictionary_2_get_Keys_m2998652350_gshared (); extern "C" void Dictionary_2_get_Values_m2943534514_gshared (); extern "C" void Dictionary_2_ToTKey_m4174560562_gshared (); extern "C" void Dictionary_2_ToTValue_m1153547755_gshared (); extern "C" void Dictionary_2_ContainsKeyValuePair_m2220971416_gshared (); extern "C" void Dictionary_2_GetEnumerator_m1071499790_gshared (); extern "C" void Dictionary_2_U3CCopyToU3Em__0_m2192983895_gshared (); extern "C" void DefaultComparer__ctor_m4287051514_gshared (); extern "C" void DefaultComparer_GetHashCode_m3575189270_gshared (); extern "C" void DefaultComparer_Equals_m805876074_gshared (); extern "C" void DefaultComparer__ctor_m127511833_gshared (); extern "C" void DefaultComparer_GetHashCode_m4130189241_gshared (); extern "C" void DefaultComparer_Equals_m1116690853_gshared (); extern "C" void DefaultComparer__ctor_m4290088680_gshared (); extern "C" void DefaultComparer_GetHashCode_m3619540784_gshared (); extern "C" void DefaultComparer_Equals_m1844461034_gshared (); extern "C" void DefaultComparer__ctor_m4079137524_gshared (); extern "C" void DefaultComparer_GetHashCode_m2268564971_gshared (); extern "C" void DefaultComparer_Equals_m143060914_gshared (); extern "C" void DefaultComparer__ctor_m3731598987_gshared (); extern "C" void DefaultComparer_GetHashCode_m1255286512_gshared (); extern "C" void DefaultComparer_Equals_m1288496910_gshared (); extern "C" void DefaultComparer__ctor_m3668702051_gshared (); extern "C" void DefaultComparer_GetHashCode_m178097091_gshared (); extern "C" void DefaultComparer_Equals_m2587814972_gshared (); extern "C" void DefaultComparer__ctor_m367260208_gshared (); extern "C" void DefaultComparer_GetHashCode_m1685269894_gshared (); extern "C" void DefaultComparer_Equals_m1424884629_gshared (); extern "C" void DefaultComparer__ctor_m743190626_gshared (); extern "C" void DefaultComparer_GetHashCode_m584818857_gshared (); extern "C" void DefaultComparer_Equals_m2915166525_gshared (); extern "C" void DefaultComparer__ctor_m2273814836_gshared (); extern "C" void DefaultComparer_GetHashCode_m85878157_gshared (); extern "C" void DefaultComparer_Equals_m3785921427_gshared (); extern "C" void DefaultComparer__ctor_m881761050_gshared (); extern "C" void DefaultComparer_GetHashCode_m276963922_gshared (); extern "C" void DefaultComparer_Equals_m2802271618_gshared (); extern "C" void DefaultComparer__ctor_m2840001211_gshared (); extern "C" void DefaultComparer_GetHashCode_m1713794888_gshared (); extern "C" void DefaultComparer_Equals_m3728939217_gshared (); extern "C" void DefaultComparer__ctor_m1612363185_gshared (); extern "C" void DefaultComparer_GetHashCode_m1307469668_gshared (); extern "C" void DefaultComparer_Equals_m3796260152_gshared (); extern "C" void DefaultComparer__ctor_m980467630_gshared (); extern "C" void DefaultComparer_GetHashCode_m622089866_gshared (); extern "C" void DefaultComparer_Equals_m1429745851_gshared (); extern "C" void DefaultComparer__ctor_m296788562_gshared (); extern "C" void DefaultComparer_GetHashCode_m780002017_gshared (); extern "C" void DefaultComparer_Equals_m3851784329_gshared (); extern "C" void DefaultComparer__ctor_m3449172644_gshared (); extern "C" void DefaultComparer_GetHashCode_m2824479219_gshared (); extern "C" void DefaultComparer_Equals_m3618094951_gshared (); extern "C" void DefaultComparer__ctor_m1809057149_gshared (); extern "C" void DefaultComparer_GetHashCode_m465719594_gshared (); extern "C" void DefaultComparer_Equals_m2921249275_gshared (); extern "C" void DefaultComparer__ctor_m1953549997_gshared (); extern "C" void DefaultComparer_GetHashCode_m874192872_gshared (); extern "C" void DefaultComparer_Equals_m2330570202_gshared (); extern "C" void DefaultComparer__ctor_m3081182801_gshared (); extern "C" void DefaultComparer_GetHashCode_m1693883480_gshared (); extern "C" void DefaultComparer_Equals_m497494263_gshared (); extern "C" void DefaultComparer__ctor_m2894407821_gshared (); extern "C" void DefaultComparer_GetHashCode_m3059103547_gshared (); extern "C" void DefaultComparer_Equals_m2010554665_gshared (); extern "C" void DefaultComparer__ctor_m1281737037_gshared (); extern "C" void DefaultComparer_GetHashCode_m2985200493_gshared (); extern "C" void DefaultComparer_Equals_m3156368455_gshared (); extern "C" void DefaultComparer__ctor_m762132641_gshared (); extern "C" void DefaultComparer_GetHashCode_m2559288676_gshared (); extern "C" void DefaultComparer_Equals_m3516798012_gshared (); extern "C" void DefaultComparer__ctor_m2967928856_gshared (); extern "C" void DefaultComparer_GetHashCode_m4003792886_gshared (); extern "C" void DefaultComparer_Equals_m2123040058_gshared (); extern "C" void DefaultComparer__ctor_m990668258_gshared (); extern "C" void DefaultComparer_GetHashCode_m2725903915_gshared (); extern "C" void DefaultComparer_Equals_m2122609100_gshared (); extern "C" void DefaultComparer__ctor_m2685489623_gshared (); extern "C" void DefaultComparer_GetHashCode_m3587445831_gshared (); extern "C" void DefaultComparer_Equals_m1946812117_gshared (); extern "C" void DefaultComparer__ctor_m1617918264_gshared (); extern "C" void DefaultComparer_GetHashCode_m2468694692_gshared (); extern "C" void DefaultComparer_Equals_m3678017191_gshared (); extern "C" void DefaultComparer__ctor_m2007472862_gshared (); extern "C" void DefaultComparer_GetHashCode_m3695314175_gshared (); extern "C" void DefaultComparer_Equals_m1846165276_gshared (); extern "C" void DefaultComparer__ctor_m2234358168_gshared (); extern "C" void DefaultComparer_GetHashCode_m126569997_gshared (); extern "C" void DefaultComparer_Equals_m2312487822_gshared (); extern "C" void DefaultComparer__ctor_m2573431077_gshared (); extern "C" void DefaultComparer_GetHashCode_m595875479_gshared (); extern "C" void DefaultComparer_Equals_m3875361309_gshared (); extern "C" void DefaultComparer__ctor_m1575772970_gshared (); extern "C" void DefaultComparer_GetHashCode_m3409538098_gshared (); extern "C" void DefaultComparer_Equals_m3310428997_gshared (); extern "C" void DefaultComparer__ctor_m1807728018_gshared (); extern "C" void DefaultComparer_GetHashCode_m3628145146_gshared (); extern "C" void DefaultComparer_Equals_m3150378811_gshared (); extern "C" void DefaultComparer__ctor_m3908322572_gshared (); extern "C" void DefaultComparer_GetHashCode_m1406491120_gshared (); extern "C" void DefaultComparer_Equals_m4082443764_gshared (); extern "C" void DefaultComparer__ctor_m3380593289_gshared (); extern "C" void DefaultComparer_GetHashCode_m1678236462_gshared (); extern "C" void DefaultComparer_Equals_m4148841951_gshared (); extern "C" void DefaultComparer__ctor_m444128612_gshared (); extern "C" void DefaultComparer_GetHashCode_m4271557968_gshared (); extern "C" void DefaultComparer_Equals_m3003126031_gshared (); extern "C" void DefaultComparer__ctor_m3587847642_gshared (); extern "C" void DefaultComparer_GetHashCode_m1786284_gshared (); extern "C" void DefaultComparer_Equals_m120670601_gshared (); extern "C" void DefaultComparer__ctor_m1854623067_gshared (); extern "C" void DefaultComparer_GetHashCode_m659999565_gshared (); extern "C" void DefaultComparer_Equals_m75059424_gshared (); extern "C" void EqualityComparer_1__ctor_m1933123809_gshared (); extern "C" void EqualityComparer_1__cctor_m3224568227_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m551609164_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2683681979_gshared (); extern "C" void EqualityComparer_1_get_Default_m2076668306_gshared (); extern "C" void EqualityComparer_1__ctor_m2788146272_gshared (); extern "C" void EqualityComparer_1__cctor_m968346744_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m4017490325_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1066466867_gshared (); extern "C" void EqualityComparer_1_get_Default_m2020013755_gshared (); extern "C" void EqualityComparer_1__ctor_m645023447_gshared (); extern "C" void EqualityComparer_1__cctor_m3593441850_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3787887070_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m569375659_gshared (); extern "C" void EqualityComparer_1_get_Default_m3686998346_gshared (); extern "C" void EqualityComparer_1__ctor_m3306974606_gshared (); extern "C" void EqualityComparer_1__cctor_m752833162_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m645832135_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1348762830_gshared (); extern "C" void EqualityComparer_1_get_Default_m2829958781_gshared (); extern "C" void EqualityComparer_1__ctor_m912680102_gshared (); extern "C" void EqualityComparer_1__cctor_m3138596347_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1005773357_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2569920777_gshared (); extern "C" void EqualityComparer_1_get_Default_m1695315902_gshared (); extern "C" void EqualityComparer_1__ctor_m3695555271_gshared (); extern "C" void EqualityComparer_1__cctor_m277196996_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1154557244_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2931428962_gshared (); extern "C" void EqualityComparer_1_get_Default_m1290452204_gshared (); extern "C" void EqualityComparer_1__ctor_m288061241_gshared (); extern "C" void EqualityComparer_1__cctor_m2356091058_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1591818648_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1010051365_gshared (); extern "C" void EqualityComparer_1_get_Default_m869546503_gshared (); extern "C" void EqualityComparer_1__ctor_m2170578092_gshared (); extern "C" void EqualityComparer_1__cctor_m3715153213_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2352119632_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2118522241_gshared (); extern "C" void EqualityComparer_1_get_Default_m1606847676_gshared (); extern "C" void EqualityComparer_1__ctor_m1260628127_gshared (); extern "C" void EqualityComparer_1__cctor_m1418089978_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2982182139_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1213019447_gshared (); extern "C" void EqualityComparer_1_get_Default_m1535390024_gshared (); extern "C" void EqualityComparer_1__ctor_m3425358987_gshared (); extern "C" void EqualityComparer_1__cctor_m1196868518_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2422615522_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2624859679_gshared (); extern "C" void EqualityComparer_1_get_Default_m593856285_gshared (); extern "C" void EqualityComparer_1__ctor_m3082084599_gshared (); extern "C" void EqualityComparer_1__cctor_m707076076_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3400315825_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m835274384_gshared (); extern "C" void EqualityComparer_1_get_Default_m690333762_gshared (); extern "C" void EqualityComparer_1__ctor_m864221863_gshared (); extern "C" void EqualityComparer_1__cctor_m3138806165_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1890008542_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m134577717_gshared (); extern "C" void EqualityComparer_1_get_Default_m2446050567_gshared (); extern "C" void EqualityComparer_1__ctor_m2572393354_gshared (); extern "C" void EqualityComparer_1__cctor_m1988782318_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2488637672_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2093562621_gshared (); extern "C" void EqualityComparer_1_get_Default_m1142661861_gshared (); extern "C" void EqualityComparer_1__ctor_m2413023078_gshared (); extern "C" void EqualityComparer_1__cctor_m2688810316_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1720104629_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2374250338_gshared (); extern "C" void EqualityComparer_1_get_Default_m1566777087_gshared (); extern "C" void EqualityComparer_1__ctor_m414786351_gshared (); extern "C" void EqualityComparer_1__cctor_m1152980880_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1841426328_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3056898185_gshared (); extern "C" void EqualityComparer_1_get_Default_m797400271_gshared (); extern "C" void EqualityComparer_1__ctor_m4103572790_gshared (); extern "C" void EqualityComparer_1__cctor_m3757314143_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3241639113_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m627355947_gshared (); extern "C" void EqualityComparer_1_get_Default_m3902484748_gshared (); extern "C" void EqualityComparer_1__ctor_m2153688690_gshared (); extern "C" void EqualityComparer_1__cctor_m1701682930_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m613143623_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2998811658_gshared (); extern "C" void EqualityComparer_1_get_Default_m1922745967_gshared (); extern "C" void EqualityComparer_1__ctor_m1781630856_gshared (); extern "C" void EqualityComparer_1__cctor_m3200882692_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3581472179_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2422095487_gshared (); extern "C" void EqualityComparer_1_get_Default_m4102682644_gshared (); extern "C" void EqualityComparer_1__ctor_m3842719472_gshared (); extern "C" void EqualityComparer_1__cctor_m2011114383_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1971009563_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m472618491_gshared (); extern "C" void EqualityComparer_1_get_Default_m3885389334_gshared (); extern "C" void EqualityComparer_1__ctor_m1251038811_gshared (); extern "C" void EqualityComparer_1__cctor_m3152331076_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m43242650_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1579974143_gshared (); extern "C" void EqualityComparer_1_get_Default_m3324387557_gshared (); extern "C" void EqualityComparer_1__ctor_m1148009743_gshared (); extern "C" void EqualityComparer_1__cctor_m742185089_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m705426722_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2502303946_gshared (); extern "C" void EqualityComparer_1_get_Default_m821478721_gshared (); extern "C" void EqualityComparer_1__ctor_m1570131054_gshared (); extern "C" void EqualityComparer_1__cctor_m686650623_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2304582594_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3053730592_gshared (); extern "C" void EqualityComparer_1_get_Default_m3372874590_gshared (); extern "C" void EqualityComparer_1__ctor_m4079733270_gshared (); extern "C" void EqualityComparer_1__cctor_m1862084479_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3719593070_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3331708851_gshared (); extern "C" void EqualityComparer_1_get_Default_m638892080_gshared (); extern "C" void EqualityComparer_1__ctor_m1494335013_gshared (); extern "C" void EqualityComparer_1__cctor_m2850446058_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2186343374_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m634638603_gshared (); extern "C" void EqualityComparer_1_get_Default_m605119732_gshared (); extern "C" void EqualityComparer_1__ctor_m658300190_gshared (); extern "C" void EqualityComparer_1__cctor_m4229826398_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m347077511_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3777549956_gshared (); extern "C" void EqualityComparer_1_get_Default_m212488887_gshared (); extern "C" void EqualityComparer_1__ctor_m172622962_gshared (); extern "C" void EqualityComparer_1__cctor_m42207435_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1050279713_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m959023308_gshared (); extern "C" void EqualityComparer_1_get_Default_m50476167_gshared (); extern "C" void EqualityComparer_1__ctor_m13093163_gshared (); extern "C" void EqualityComparer_1__cctor_m4232844587_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3167789584_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3354744659_gshared (); extern "C" void EqualityComparer_1_get_Default_m1843906983_gshared (); extern "C" void EqualityComparer_1__ctor_m4061715534_gshared (); extern "C" void EqualityComparer_1__cctor_m2724849420_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m4187985035_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3138148484_gshared (); extern "C" void EqualityComparer_1_get_Default_m1458679509_gshared (); extern "C" void EqualityComparer_1__ctor_m812215943_gshared (); extern "C" void EqualityComparer_1__cctor_m4020342648_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m435058997_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m318903271_gshared (); extern "C" void EqualityComparer_1_get_Default_m1663858310_gshared (); extern "C" void EqualityComparer_1__ctor_m1671741169_gshared (); extern "C" void EqualityComparer_1__cctor_m1486177641_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1949596126_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3366347610_gshared (); extern "C" void EqualityComparer_1_get_Default_m612693911_gshared (); extern "C" void EqualityComparer_1__ctor_m4085932743_gshared (); extern "C" void EqualityComparer_1__cctor_m2902114609_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2345743112_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m212461080_gshared (); extern "C" void EqualityComparer_1_get_Default_m3720039670_gshared (); extern "C" void EqualityComparer_1__ctor_m2294168876_gshared (); extern "C" void EqualityComparer_1__cctor_m215795640_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1392361904_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m717321180_gshared (); extern "C" void EqualityComparer_1_get_Default_m2535589392_gshared (); extern "C" void EqualityComparer_1__ctor_m3233704498_gshared (); extern "C" void EqualityComparer_1__cctor_m1485589315_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m794083502_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m4037177133_gshared (); extern "C" void EqualityComparer_1_get_Default_m737537283_gshared (); extern "C" void EqualityComparer_1__ctor_m4170988197_gshared (); extern "C" void EqualityComparer_1__cctor_m2965101138_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m4036792675_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3214665233_gshared (); extern "C" void EqualityComparer_1_get_Default_m2353658711_gshared (); extern "C" void EqualityComparer_1__ctor_m1635177929_gshared (); extern "C" void EqualityComparer_1__cctor_m1412260765_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1502555323_gshared (); extern "C" void EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m4015849054_gshared (); extern "C" void EqualityComparer_1_get_Default_m3006382926_gshared (); extern "C" void GenericComparer_1_Compare_m4205618454_gshared (); extern "C" void GenericComparer_1_Compare_m4183348257_gshared (); extern "C" void GenericComparer_1_Compare_m3683903376_gshared (); extern "C" void GenericComparer_1__ctor_m920546494_gshared (); extern "C" void GenericComparer_1_Compare_m1247847359_gshared (); extern "C" void GenericComparer_1_Compare_m967204384_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m2098194875_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m1149064754_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m2157516676_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m2315946589_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m1935284038_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m1488137292_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m1156963088_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m3845358403_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m2247249554_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m2904728679_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m643619696_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m4255948105_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m1192946004_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m3898698568_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m1446369262_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m1820023349_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m2424727697_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m3995447479_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m2535191635_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m58189748_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m2548956539_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m923150140_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m1382500069_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m55805152_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m2982470946_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m1697872063_gshared (); extern "C" void GenericEqualityComparer_1__ctor_m3219012417_gshared (); extern "C" void GenericEqualityComparer_1_GetHashCode_m3928566805_gshared (); extern "C" void GenericEqualityComparer_1_Equals_m64651512_gshared (); extern "C" void KeyValuePair_2__ctor_m3965257906_AdjustorThunk (); extern "C" void KeyValuePair_2_set_Key_m4233192552_AdjustorThunk (); extern "C" void KeyValuePair_2_set_Value_m2702403328_AdjustorThunk (); extern "C" void KeyValuePair_2__ctor_m2673976027_AdjustorThunk (); extern "C" void KeyValuePair_2_get_Key_m3954314318_AdjustorThunk (); extern "C" void KeyValuePair_2_set_Key_m3048003816_AdjustorThunk (); extern "C" void KeyValuePair_2_get_Value_m1586222204_AdjustorThunk (); extern "C" void KeyValuePair_2_set_Value_m4260225429_AdjustorThunk (); extern "C" void KeyValuePair_2_ToString_m2185527923_AdjustorThunk (); extern "C" void KeyValuePair_2__ctor_m24129874_AdjustorThunk (); extern "C" void KeyValuePair_2_get_Key_m3893176000_AdjustorThunk (); extern "C" void KeyValuePair_2_set_Key_m918513216_AdjustorThunk (); extern "C" void KeyValuePair_2_get_Value_m2208938938_AdjustorThunk (); extern "C" void KeyValuePair_2_set_Value_m565741334_AdjustorThunk (); extern "C" void KeyValuePair_2_ToString_m1481886236_AdjustorThunk (); extern "C" void KeyValuePair_2__ctor_m1355931474_AdjustorThunk (); extern "C" void KeyValuePair_2_get_Key_m3415087411_AdjustorThunk (); extern "C" void KeyValuePair_2_set_Key_m3683785655_AdjustorThunk (); extern "C" void KeyValuePair_2_get_Value_m1311359916_AdjustorThunk (); extern "C" void KeyValuePair_2_set_Value_m4094318473_AdjustorThunk (); extern "C" void KeyValuePair_2_ToString_m23305852_AdjustorThunk (); extern "C" void Enumerator__ctor_m1672709521_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3122699246_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m998487813_AdjustorThunk (); extern "C" void Enumerator_Dispose_m3925669121_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m517882014_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1731122728_AdjustorThunk (); extern "C" void Enumerator_get_Current_m2785625607_AdjustorThunk (); extern "C" void Enumerator__ctor_m3944103773_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m924139895_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m4103447546_AdjustorThunk (); extern "C" void Enumerator_Dispose_m3507354134_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m1822803489_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m923696734_AdjustorThunk (); extern "C" void Enumerator_get_Current_m732871371_AdjustorThunk (); extern "C" void Enumerator__ctor_m2127359327_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2193553327_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m924592800_AdjustorThunk (); extern "C" void Enumerator_Dispose_m2606530049_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m2937031278_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m3044398244_AdjustorThunk (); extern "C" void Enumerator_get_Current_m528805479_AdjustorThunk (); extern "C" void Enumerator__ctor_m258697733_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2551033967_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m2512990036_AdjustorThunk (); extern "C" void Enumerator_Dispose_m798228755_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m1803191043_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1578505683_AdjustorThunk (); extern "C" void Enumerator_get_Current_m1775028691_AdjustorThunk (); extern "C" void Enumerator__ctor_m4284146690_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2523963925_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m3914039914_AdjustorThunk (); extern "C" void Enumerator_Dispose_m153707690_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m1033897662_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1815426781_AdjustorThunk (); extern "C" void Enumerator_get_Current_m1751498197_AdjustorThunk (); extern "C" void Enumerator__ctor_m921841691_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1836153125_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m144568892_AdjustorThunk (); extern "C" void Enumerator_Dispose_m1080240083_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m3625431915_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m3873844206_AdjustorThunk (); extern "C" void Enumerator_get_Current_m95707242_AdjustorThunk (); extern "C" void Enumerator__ctor_m3178021524_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1764068132_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m1128607861_AdjustorThunk (); extern "C" void Enumerator_Dispose_m2512428910_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m77474253_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m3568345539_AdjustorThunk (); extern "C" void Enumerator_get_Current_m585643312_AdjustorThunk (); extern "C" void Enumerator__ctor_m3056213292_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1681726028_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m98487539_AdjustorThunk (); extern "C" void Enumerator_Dispose_m335229239_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m3855305898_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m3544348264_AdjustorThunk (); extern "C" void Enumerator_get_Current_m2555575122_AdjustorThunk (); extern "C" void Enumerator__ctor_m837897804_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m4165607924_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m2904519665_AdjustorThunk (); extern "C" void Enumerator_Dispose_m3165983978_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m2919552752_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m2718187494_AdjustorThunk (); extern "C" void Enumerator_get_Current_m182922851_AdjustorThunk (); extern "C" void Enumerator__ctor_m236856046_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3845990740_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m3591803454_AdjustorThunk (); extern "C" void Enumerator_Dispose_m2873352670_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m1921730258_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1694723019_AdjustorThunk (); extern "C" void Enumerator_get_Current_m3124528665_AdjustorThunk (); extern "C" void Enumerator__ctor_m1678657565_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2828603750_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m2093120632_AdjustorThunk (); extern "C" void Enumerator_Dispose_m855362281_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m3303546729_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m2515179802_AdjustorThunk (); extern "C" void Enumerator_get_Current_m2642897278_AdjustorThunk (); extern "C" void Enumerator__ctor_m3870467211_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m502124952_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m183470590_AdjustorThunk (); extern "C" void Enumerator_Dispose_m2779901466_AdjustorThunk (); extern "C" void Enumerator_VerifyState_m1415731116_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m1930375270_AdjustorThunk (); extern "C" void Enumerator_get_Current_m1341661348_AdjustorThunk (); extern "C" void List_1__ctor_m1020983581_gshared (); extern "C" void List_1__cctor_m3480299483_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1516900347_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m2108381968_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m986991681_gshared (); extern "C" void List_1_System_Collections_IList_Add_m4286548227_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m4228591908_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m4207165274_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m3989831869_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m3775851259_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m568271488_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m1356358097_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m3780823475_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m2495572776_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m3066706491_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m1494564871_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m3677314888_gshared (); extern "C" void List_1_GrowIfNeeded_m540698050_gshared (); extern "C" void List_1_AddCollection_m2740573745_gshared (); extern "C" void List_1_AddEnumerable_m3194479579_gshared (); extern "C" void List_1_AddRange_m3951483742_gshared (); extern "C" void List_1_AsReadOnly_m3041064276_gshared (); extern "C" void List_1_Contains_m3210297751_gshared (); extern "C" void List_1_CopyTo_m1779673057_gshared (); extern "C" void List_1_Find_m1385776633_gshared (); extern "C" void List_1_CheckMatch_m719857816_gshared (); extern "C" void List_1_GetIndex_m2687340177_gshared (); extern "C" void List_1_GetEnumerator_m2041209774_gshared (); extern "C" void List_1_IndexOf_m549763026_gshared (); extern "C" void List_1_Shift_m41692727_gshared (); extern "C" void List_1_CheckIndex_m2577866259_gshared (); extern "C" void List_1_Insert_m4200988969_gshared (); extern "C" void List_1_CheckCollection_m1364282795_gshared (); extern "C" void List_1_Remove_m3679811868_gshared (); extern "C" void List_1_RemoveAll_m3721346343_gshared (); extern "C" void List_1_Reverse_m609823754_gshared (); extern "C" void List_1_Sort_m2018028247_gshared (); extern "C" void List_1_Sort_m3619736086_gshared (); extern "C" void List_1_ToArray_m3258061174_gshared (); extern "C" void List_1_TrimExcess_m2600274723_gshared (); extern "C" void List_1_get_Capacity_m377502274_gshared (); extern "C" void List_1_set_Capacity_m2897286690_gshared (); extern "C" void List_1__ctor_m2815773125_gshared (); extern "C" void List_1__cctor_m1389202275_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m3781192228_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m3366797796_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m3224970312_gshared (); extern "C" void List_1_System_Collections_IList_Add_m3568467501_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m41724761_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m1070445891_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m2923284945_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m2565920091_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1555260921_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m1776955946_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m606395073_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m1947916732_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m2680070019_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m593430200_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m3900531425_gshared (); extern "C" void List_1_GrowIfNeeded_m3370306227_gshared (); extern "C" void List_1_AddCollection_m1995106263_gshared (); extern "C" void List_1_AddEnumerable_m2304083842_gshared (); extern "C" void List_1_AsReadOnly_m3440615827_gshared (); extern "C" void List_1_Contains_m3888575812_gshared (); extern "C" void List_1_CopyTo_m174482672_gshared (); extern "C" void List_1_Find_m2279569015_gshared (); extern "C" void List_1_CheckMatch_m3166718029_gshared (); extern "C" void List_1_GetIndex_m2060916298_gshared (); extern "C" void List_1_GetEnumerator_m1096390891_gshared (); extern "C" void List_1_IndexOf_m2736461437_gshared (); extern "C" void List_1_Shift_m3716304737_gshared (); extern "C" void List_1_CheckIndex_m776877181_gshared (); extern "C" void List_1_Insert_m3001479835_gshared (); extern "C" void List_1_CheckCollection_m3183808193_gshared (); extern "C" void List_1_Remove_m912038523_gshared (); extern "C" void List_1_RemoveAll_m1954592362_gshared (); extern "C" void List_1_RemoveAt_m658944309_gshared (); extern "C" void List_1_Reverse_m2525414228_gshared (); extern "C" void List_1_Sort_m736845995_gshared (); extern "C" void List_1_Sort_m2370346202_gshared (); extern "C" void List_1_ToArray_m3806714133_gshared (); extern "C" void List_1_TrimExcess_m19413009_gshared (); extern "C" void List_1_get_Capacity_m1376946650_gshared (); extern "C" void List_1_set_Capacity_m3410711852_gshared (); extern "C" void List_1_get_Item_m1924278799_gshared (); extern "C" void List_1_set_Item_m2577060719_gshared (); extern "C" void List_1__ctor_m201468323_gshared (); extern "C" void List_1__ctor_m2506761879_gshared (); extern "C" void List_1__cctor_m1556439326_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m3272790150_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m1574118614_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m2572711050_gshared (); extern "C" void List_1_System_Collections_IList_Add_m2441884723_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m1769286835_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m4196507295_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m1373277872_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m1126140118_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2526512658_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m2328225230_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m1934960338_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m3407652536_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m475859460_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m3746181800_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m2730096697_gshared (); extern "C" void List_1_Add_m2665956441_gshared (); extern "C" void List_1_GrowIfNeeded_m3472955005_gshared (); extern "C" void List_1_AddCollection_m606137917_gshared (); extern "C" void List_1_AddEnumerable_m2565868279_gshared (); extern "C" void List_1_AddRange_m3509690821_gshared (); extern "C" void List_1_AsReadOnly_m2161316779_gshared (); extern "C" void List_1_Clear_m279584585_gshared (); extern "C" void List_1_Contains_m982404162_gshared (); extern "C" void List_1_CopyTo_m3464684617_gshared (); extern "C" void List_1_Find_m1669905926_gshared (); extern "C" void List_1_CheckMatch_m4084205327_gshared (); extern "C" void List_1_GetIndex_m2214788992_gshared (); extern "C" void List_1_GetEnumerator_m2922140209_gshared (); extern "C" void List_1_IndexOf_m3771344345_gshared (); extern "C" void List_1_Shift_m2668486620_gshared (); extern "C" void List_1_CheckIndex_m3086394577_gshared (); extern "C" void List_1_Insert_m1457100006_gshared (); extern "C" void List_1_CheckCollection_m1656575632_gshared (); extern "C" void List_1_Remove_m2959721843_gshared (); extern "C" void List_1_RemoveAll_m3699052280_gshared (); extern "C" void List_1_RemoveAt_m3089079954_gshared (); extern "C" void List_1_Reverse_m2069804007_gshared (); extern "C" void List_1_Sort_m3510661149_gshared (); extern "C" void List_1_Sort_m582571083_gshared (); extern "C" void List_1_ToArray_m147531996_gshared (); extern "C" void List_1_TrimExcess_m4148863248_gshared (); extern "C" void List_1_get_Capacity_m3855480061_gshared (); extern "C" void List_1_set_Capacity_m3066077012_gshared (); extern "C" void List_1_get_Count_m3642875151_gshared (); extern "C" void List_1_get_Item_m3085214563_gshared (); extern "C" void List_1_set_Item_m1016959200_gshared (); extern "C" void List_1__ctor_m1901578253_gshared (); extern "C" void List_1__ctor_m2624172469_gshared (); extern "C" void List_1__cctor_m3380546662_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m2910732820_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m1075134219_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m4190297507_gshared (); extern "C" void List_1_System_Collections_IList_Add_m3849190546_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m645988788_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m56372037_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m2433412885_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m2505146164_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2901221715_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m2542494665_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m271314281_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m1132524629_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m168481983_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m3560291487_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m1436607593_gshared (); extern "C" void List_1_Add_m1582773386_gshared (); extern "C" void List_1_GrowIfNeeded_m3640910231_gshared (); extern "C" void List_1_AddCollection_m1775751742_gshared (); extern "C" void List_1_AddEnumerable_m3031261685_gshared (); extern "C" void List_1_AddRange_m671696424_gshared (); extern "C" void List_1_AsReadOnly_m910198309_gshared (); extern "C" void List_1_Clear_m103149515_gshared (); extern "C" void List_1_Contains_m3738080405_gshared (); extern "C" void List_1_CopyTo_m2592990198_gshared (); extern "C" void List_1_Find_m1664382713_gshared (); extern "C" void List_1_CheckMatch_m691407412_gshared (); extern "C" void List_1_GetIndex_m3084441127_gshared (); extern "C" void List_1_GetEnumerator_m2025556259_gshared (); extern "C" void List_1_IndexOf_m644479004_gshared (); extern "C" void List_1_Shift_m2888164258_gshared (); extern "C" void List_1_CheckIndex_m2297015467_gshared (); extern "C" void List_1_Insert_m3758614643_gshared (); extern "C" void List_1_CheckCollection_m2888431814_gshared (); extern "C" void List_1_Remove_m2386316251_gshared (); extern "C" void List_1_RemoveAll_m104489147_gshared (); extern "C" void List_1_RemoveAt_m2811639224_gshared (); extern "C" void List_1_Reverse_m1391700301_gshared (); extern "C" void List_1_Sort_m3116615894_gshared (); extern "C" void List_1_Sort_m3711248601_gshared (); extern "C" void List_1_ToArray_m320526359_gshared (); extern "C" void List_1_TrimExcess_m3764182707_gshared (); extern "C" void List_1_get_Capacity_m3531960238_gshared (); extern "C" void List_1_set_Capacity_m81455837_gshared (); extern "C" void List_1_get_Count_m3704916869_gshared (); extern "C" void List_1_get_Item_m3638845425_gshared (); extern "C" void List_1_set_Item_m3082435025_gshared (); extern "C" void List_1__ctor_m2081854003_gshared (); extern "C" void List_1__ctor_m465552044_gshared (); extern "C" void List_1__cctor_m1600971377_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m804095962_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m2060327509_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m255007193_gshared (); extern "C" void List_1_System_Collections_IList_Add_m4125816716_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m1724433247_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m2491212007_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m2084317549_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m450740828_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m29402316_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m2392878718_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m2684265884_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m225396251_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m4047523555_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m2192105552_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m415631391_gshared (); extern "C" void List_1_GrowIfNeeded_m2887634069_gshared (); extern "C" void List_1_AddCollection_m2594729342_gshared (); extern "C" void List_1_AddEnumerable_m1876568274_gshared (); extern "C" void List_1_AsReadOnly_m1470568150_gshared (); extern "C" void List_1_Contains_m728022135_gshared (); extern "C" void List_1_CopyTo_m2269260862_gshared (); extern "C" void List_1_Find_m3915678039_gshared (); extern "C" void List_1_CheckMatch_m2299550153_gshared (); extern "C" void List_1_GetIndex_m1067679250_gshared (); extern "C" void List_1_GetEnumerator_m2765980962_gshared (); extern "C" void List_1_IndexOf_m1455646585_gshared (); extern "C" void List_1_Shift_m2776720498_gshared (); extern "C" void List_1_CheckIndex_m3162538324_gshared (); extern "C" void List_1_Insert_m2693758469_gshared (); extern "C" void List_1_CheckCollection_m1081154596_gshared (); extern "C" void List_1_Remove_m3487974926_gshared (); extern "C" void List_1_RemoveAll_m2775278636_gshared (); extern "C" void List_1_RemoveAt_m2543356230_gshared (); extern "C" void List_1_Reverse_m976170234_gshared (); extern "C" void List_1_Sort_m310292403_gshared (); extern "C" void List_1_Sort_m3742686837_gshared (); extern "C" void List_1_ToArray_m284823132_gshared (); extern "C" void List_1_TrimExcess_m3710122484_gshared (); extern "C" void List_1_get_Capacity_m4130902103_gshared (); extern "C" void List_1_set_Capacity_m851465391_gshared (); extern "C" void List_1_get_Count_m1071105287_gshared (); extern "C" void List_1__ctor_m1362890411_gshared (); extern "C" void List_1__cctor_m295807148_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m417016462_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m2841319798_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m4062345351_gshared (); extern "C" void List_1_System_Collections_IList_Add_m1642522212_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m3111765843_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m3054283633_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m190654975_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m194050409_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2148843779_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m1036201298_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m707340834_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m3871391651_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m3429237851_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m144042536_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m718936355_gshared (); extern "C" void List_1_GrowIfNeeded_m3068681164_gshared (); extern "C" void List_1_AddCollection_m1031631355_gshared (); extern "C" void List_1_AddEnumerable_m1060933874_gshared (); extern "C" void List_1_AddRange_m1286645080_gshared (); extern "C" void List_1_AsReadOnly_m2368652634_gshared (); extern "C" void List_1_Contains_m2164606231_gshared (); extern "C" void List_1_CopyTo_m1271393797_gshared (); extern "C" void List_1_Find_m3036820755_gshared (); extern "C" void List_1_CheckMatch_m782511699_gshared (); extern "C" void List_1_GetIndex_m2770313194_gshared (); extern "C" void List_1_GetEnumerator_m3056485503_gshared (); extern "C" void List_1_IndexOf_m2231856141_gshared (); extern "C" void List_1_Shift_m4205588753_gshared (); extern "C" void List_1_CheckIndex_m2832038365_gshared (); extern "C" void List_1_Insert_m423300062_gshared (); extern "C" void List_1_CheckCollection_m1483208718_gshared (); extern "C" void List_1_Remove_m2282313366_gshared (); extern "C" void List_1_RemoveAll_m3733814181_gshared (); extern "C" void List_1_RemoveAt_m884534633_gshared (); extern "C" void List_1_Reverse_m1751048926_gshared (); extern "C" void List_1_Sort_m1509933471_gshared (); extern "C" void List_1_ToArray_m1774650457_gshared (); extern "C" void List_1_TrimExcess_m1005974623_gshared (); extern "C" void List_1_get_Capacity_m1792407338_gshared (); extern "C" void List_1_set_Capacity_m3930015681_gshared (); extern "C" void List_1_set_Item_m2743361490_gshared (); extern "C" void List_1__ctor_m3706016226_gshared (); extern "C" void List_1__cctor_m510439346_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m3106801896_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m577876011_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m3040175955_gshared (); extern "C" void List_1_System_Collections_IList_Add_m2079446923_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m2169480_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m4100262163_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m2842140231_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m662699922_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m4203848964_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m3366001594_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m860559348_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m299890450_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m409235149_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m2719533473_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m3077593456_gshared (); extern "C" void List_1_Add_m1215282702_gshared (); extern "C" void List_1_GrowIfNeeded_m228736242_gshared (); extern "C" void List_1_AddCollection_m3419285679_gshared (); extern "C" void List_1_AddEnumerable_m1667719140_gshared (); extern "C" void List_1_AddRange_m3132828194_gshared (); extern "C" void List_1_AsReadOnly_m3623320584_gshared (); extern "C" void List_1_Clear_m448422425_gshared (); extern "C" void List_1_Contains_m4019630614_gshared (); extern "C" void List_1_CopyTo_m1855351132_gshared (); extern "C" void List_1_Find_m2054772433_gshared (); extern "C" void List_1_CheckMatch_m2150342797_gshared (); extern "C" void List_1_GetIndex_m89120418_gshared (); extern "C" void List_1_GetEnumerator_m319397653_gshared (); extern "C" void List_1_IndexOf_m2139439518_gshared (); extern "C" void List_1_Shift_m1005042784_gshared (); extern "C" void List_1_CheckIndex_m4187033419_gshared (); extern "C" void List_1_Insert_m809719227_gshared (); extern "C" void List_1_CheckCollection_m1650345758_gshared (); extern "C" void List_1_Remove_m3035767932_gshared (); extern "C" void List_1_RemoveAll_m979999828_gshared (); extern "C" void List_1_RemoveAt_m3832322544_gshared (); extern "C" void List_1_Reverse_m3606653199_gshared (); extern "C" void List_1_Sort_m1472049079_gshared (); extern "C" void List_1_Sort_m2826842987_gshared (); extern "C" void List_1_ToArray_m2911354459_gshared (); extern "C" void List_1_TrimExcess_m1947122780_gshared (); extern "C" void List_1_get_Capacity_m3505301635_gshared (); extern "C" void List_1_set_Capacity_m3149877192_gshared (); extern "C" void List_1_get_Count_m1526705637_gshared (); extern "C" void List_1_get_Item_m2349306705_gshared (); extern "C" void List_1_set_Item_m719098823_gshared (); extern "C" void List_1__ctor_m1554619828_gshared (); extern "C" void List_1__cctor_m1971983909_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m4115464786_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m218245676_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m3499618345_gshared (); extern "C" void List_1_System_Collections_IList_Add_m1935914966_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m580090415_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m1104332735_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m3284781699_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m3786068702_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m4111506543_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m2270800316_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m973497386_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m491201249_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m2698133978_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m1966415369_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m3485920103_gshared (); extern "C" void List_1_Add_m3882277125_gshared (); extern "C" void List_1_GrowIfNeeded_m2602748154_gshared (); extern "C" void List_1_AddCollection_m1743474446_gshared (); extern "C" void List_1_AddEnumerable_m1845674684_gshared (); extern "C" void List_1_AddRange_m817509934_gshared (); extern "C" void List_1_AsReadOnly_m959091769_gshared (); extern "C" void List_1_Clear_m3287826517_gshared (); extern "C" void List_1_Contains_m3067953645_gshared (); extern "C" void List_1_CopyTo_m3800325008_gshared (); extern "C" void List_1_Find_m387465024_gshared (); extern "C" void List_1_CheckMatch_m4040082864_gshared (); extern "C" void List_1_GetIndex_m449713972_gshared (); extern "C" void List_1_GetEnumerator_m2371965976_gshared (); extern "C" void List_1_IndexOf_m1460966372_gshared (); extern "C" void List_1_Shift_m2968731627_gshared (); extern "C" void List_1_CheckIndex_m45796781_gshared (); extern "C" void List_1_Insert_m4167233230_gshared (); extern "C" void List_1_CheckCollection_m3573118613_gshared (); extern "C" void List_1_Remove_m1452275302_gshared (); extern "C" void List_1_RemoveAll_m3945495935_gshared (); extern "C" void List_1_RemoveAt_m2455825539_gshared (); extern "C" void List_1_Reverse_m1394467514_gshared (); extern "C" void List_1_Sort_m1393751737_gshared (); extern "C" void List_1_Sort_m3228725011_gshared (); extern "C" void List_1_ToArray_m429094733_gshared (); extern "C" void List_1_TrimExcess_m3310187612_gshared (); extern "C" void List_1_get_Capacity_m2025011607_gshared (); extern "C" void List_1_set_Capacity_m935115676_gshared (); extern "C" void List_1_get_Count_m419519634_gshared (); extern "C" void List_1_get_Item_m3357232827_gshared (); extern "C" void List_1_set_Item_m1913067430_gshared (); extern "C" void List_1__ctor_m1842478078_gshared (); extern "C" void List_1__cctor_m2847203467_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1876356810_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m1323624543_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m864832161_gshared (); extern "C" void List_1_System_Collections_IList_Add_m1767443596_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m2876433834_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m1520906369_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m3198623644_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m2966655893_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3218451994_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m2061651173_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m352967137_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m494798214_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m2207908840_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m3203269595_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m137877279_gshared (); extern "C" void List_1_GrowIfNeeded_m2889980444_gshared (); extern "C" void List_1_AddCollection_m4001261088_gshared (); extern "C" void List_1_AddEnumerable_m508276677_gshared (); extern "C" void List_1_AddRange_m897490967_gshared (); extern "C" void List_1_AsReadOnly_m318050259_gshared (); extern "C" void List_1_Clear_m1717011394_gshared (); extern "C" void List_1_Contains_m710136060_gshared (); extern "C" void List_1_CopyTo_m3608573650_gshared (); extern "C" void List_1_Find_m2070592070_gshared (); extern "C" void List_1_CheckMatch_m17543138_gshared (); extern "C" void List_1_GetIndex_m2414953608_gshared (); extern "C" void List_1_GetEnumerator_m2506095854_gshared (); extern "C" void List_1_IndexOf_m365010556_gshared (); extern "C" void List_1_Shift_m1183934761_gshared (); extern "C" void List_1_CheckIndex_m802744892_gshared (); extern "C" void List_1_Insert_m1992981833_gshared (); extern "C" void List_1_CheckCollection_m2729005177_gshared (); extern "C" void List_1_Remove_m79564018_gshared (); extern "C" void List_1_RemoveAll_m617466345_gshared (); extern "C" void List_1_RemoveAt_m3136664007_gshared (); extern "C" void List_1_Reverse_m3223693015_gshared (); extern "C" void List_1_Sort_m3006064929_gshared (); extern "C" void List_1_Sort_m647316299_gshared (); extern "C" void List_1_ToArray_m3514335341_gshared (); extern "C" void List_1_TrimExcess_m2607454056_gshared (); extern "C" void List_1__ctor_m908397213_gshared (); extern "C" void List_1__ctor_m893956928_gshared (); extern "C" void List_1__cctor_m4210230781_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m100811717_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m4279217564_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m3673457197_gshared (); extern "C" void List_1_System_Collections_IList_Add_m2563123533_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m2865309714_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m374202364_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m450088950_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m1845611497_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3824609717_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m1142241856_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m3222745665_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m1203376690_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m637891271_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m1584691315_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m1285950192_gshared (); extern "C" void List_1_GrowIfNeeded_m4181755087_gshared (); extern "C" void List_1_AddCollection_m1262365279_gshared (); extern "C" void List_1_AddEnumerable_m27421497_gshared (); extern "C" void List_1_AsReadOnly_m1115102685_gshared (); extern "C" void List_1_Contains_m3860782450_gshared (); extern "C" void List_1_CopyTo_m1540787997_gshared (); extern "C" void List_1_Find_m3507000042_gshared (); extern "C" void List_1_CheckMatch_m1907583117_gshared (); extern "C" void List_1_GetIndex_m2440763250_gshared (); extern "C" void List_1_GetEnumerator_m3165528243_gshared (); extern "C" void List_1_IndexOf_m1642346540_gshared (); extern "C" void List_1_Shift_m1874655014_gshared (); extern "C" void List_1_CheckIndex_m3967830241_gshared (); extern "C" void List_1_Insert_m1562709744_gshared (); extern "C" void List_1_CheckCollection_m3926685078_gshared (); extern "C" void List_1_Remove_m175412813_gshared (); extern "C" void List_1_RemoveAll_m3591716362_gshared (); extern "C" void List_1_RemoveAt_m496538446_gshared (); extern "C" void List_1_Reverse_m3889448885_gshared (); extern "C" void List_1_Sort_m3418811171_gshared (); extern "C" void List_1_Sort_m1753974085_gshared (); extern "C" void List_1_ToArray_m2464170370_gshared (); extern "C" void List_1_TrimExcess_m2091631752_gshared (); extern "C" void List_1_get_Capacity_m2874693586_gshared (); extern "C" void List_1_set_Capacity_m1782645815_gshared (); extern "C" void List_1_get_Count_m467084503_gshared (); extern "C" void List_1__ctor_m805753889_gshared (); extern "C" void List_1__ctor_m3183088424_gshared (); extern "C" void List_1__cctor_m415374281_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m48108753_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m1379389465_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m326795334_gshared (); extern "C" void List_1_System_Collections_IList_Add_m833247038_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m1521479470_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m1071561249_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m1225931494_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m112108385_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3412170927_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m1422597533_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m3618112806_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m2524067166_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m2151783497_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m2891473640_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m1990236732_gshared (); extern "C" void List_1_GrowIfNeeded_m3558017526_gshared (); extern "C" void List_1_AddCollection_m2604788661_gshared (); extern "C" void List_1_AddEnumerable_m123997745_gshared (); extern "C" void List_1_AsReadOnly_m2924650994_gshared (); extern "C" void List_1_Contains_m3418300876_gshared (); extern "C" void List_1_CopyTo_m2531848027_gshared (); extern "C" void List_1_Find_m1079053193_gshared (); extern "C" void List_1_CheckMatch_m829620297_gshared (); extern "C" void List_1_GetIndex_m3431405265_gshared (); extern "C" void List_1_GetEnumerator_m69537818_gshared (); extern "C" void List_1_IndexOf_m740603171_gshared (); extern "C" void List_1_Shift_m1407444043_gshared (); extern "C" void List_1_CheckIndex_m534938740_gshared (); extern "C" void List_1_Insert_m3762834193_gshared (); extern "C" void List_1_CheckCollection_m3686283821_gshared (); extern "C" void List_1_Remove_m409340136_gshared (); extern "C" void List_1_RemoveAll_m422591268_gshared (); extern "C" void List_1_RemoveAt_m2492464061_gshared (); extern "C" void List_1_Reverse_m1505825779_gshared (); extern "C" void List_1_Sort_m2856899304_gshared (); extern "C" void List_1_Sort_m1170540862_gshared (); extern "C" void List_1_ToArray_m733806239_gshared (); extern "C" void List_1_TrimExcess_m1122018100_gshared (); extern "C" void List_1_get_Capacity_m2917946361_gshared (); extern "C" void List_1_set_Capacity_m1512076499_gshared (); extern "C" void List_1__ctor_m841318514_gshared (); extern "C" void List_1__ctor_m1805125203_gshared (); extern "C" void List_1__cctor_m3610311971_gshared (); extern "C" void List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1649200788_gshared (); extern "C" void List_1_System_Collections_ICollection_CopyTo_m2140404931_gshared (); extern "C" void List_1_System_Collections_IEnumerable_GetEnumerator_m394391294_gshared (); extern "C" void List_1_System_Collections_IList_Add_m3102476066_gshared (); extern "C" void List_1_System_Collections_IList_Contains_m3814112866_gshared (); extern "C" void List_1_System_Collections_IList_IndexOf_m3026000507_gshared (); extern "C" void List_1_System_Collections_IList_Insert_m1621338390_gshared (); extern "C" void List_1_System_Collections_IList_Remove_m2623226334_gshared (); extern "C" void List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1640729755_gshared (); extern "C" void List_1_System_Collections_ICollection_get_IsSynchronized_m1486427040_gshared (); extern "C" void List_1_System_Collections_ICollection_get_SyncRoot_m186575900_gshared (); extern "C" void List_1_System_Collections_IList_get_IsFixedSize_m3910719997_gshared (); extern "C" void List_1_System_Collections_IList_get_IsReadOnly_m4128239551_gshared (); extern "C" void List_1_System_Collections_IList_get_Item_m3351606790_gshared (); extern "C" void List_1_System_Collections_IList_set_Item_m227171669_gshared (); extern "C" void List_1_GrowIfNeeded_m4207691066_gshared (); extern "C" void List_1_AddCollection_m176179102_gshared (); extern "C" void List_1_AddEnumerable_m1770245979_gshared (); extern "C" void List_1_AsReadOnly_m3870541098_gshared (); extern "C" void List_1_Contains_m116349133_gshared (); extern "C" void List_1_CopyTo_m2927282515_gshared (); extern "C" void List_1_Find_m316174039_gshared (); extern "C" void List_1_CheckMatch_m3866856888_gshared (); extern "C" void List_1_GetIndex_m1868778996_gshared (); extern "C" void List_1_GetEnumerator_m4013950553_gshared (); extern "C" void List_1_IndexOf_m2892715258_gshared (); extern "C" void List_1_Shift_m3822524403_gshared (); extern "C" void List_1_CheckIndex_m152287138_gshared (); extern "C" void List_1_Insert_m2977615926_gshared (); extern "C" void List_1_CheckCollection_m1422512165_gshared (); extern "C" void List_1_Remove_m2329782977_gshared (); extern "C" void List_1_RemoveAll_m2000549891_gshared (); extern "C" void List_1_RemoveAt_m317370417_gshared (); extern "C" void List_1_Reverse_m941114871_gshared (); extern "C" void List_1_Sort_m2088124192_gshared (); extern "C" void List_1_Sort_m2021831076_gshared (); extern "C" void List_1_ToArray_m2483529909_gshared (); extern "C" void List_1_TrimExcess_m3349637858_gshared (); extern "C" void List_1_get_Capacity_m659565435_gshared (); extern "C" void List_1_set_Capacity_m3583509191_gshared (); extern "C" void List_1_get_Count_m2215100161_gshared (); extern "C" void Enumerator__ctor_m2546422631_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2117722656_AdjustorThunk (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m11128439_AdjustorThunk (); extern "C" void Enumerator_Dispose_m3270569160_AdjustorThunk (); extern "C" void Enumerator_MoveNext_m212007510_AdjustorThunk (); extern "C" void Enumerator_get_Current_m785608888_AdjustorThunk (); extern "C" void Queue_1__ctor_m1109302110_gshared (); extern "C" void Queue_1_System_Collections_ICollection_CopyTo_m3566303409_gshared (); extern "C" void Queue_1_System_Collections_ICollection_get_IsSynchronized_m3525326430_gshared (); extern "C" void Queue_1_System_Collections_ICollection_get_SyncRoot_m2190434209_gshared (); extern "C" void Queue_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1520286443_gshared (); extern "C" void Queue_1_System_Collections_IEnumerable_GetEnumerator_m3662107000_gshared (); extern "C" void Queue_1_Peek_m227790364_gshared (); extern "C" void Queue_1_GetEnumerator_m3147450358_gshared (); extern "C" void Collection_1__ctor_m370603304_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m4230905361_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m4273296862_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m3365352663_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m3569916674_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m3648729211_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m1474619724_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m188145979_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m2494973927_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m2046428674_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m3531435498_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m2610796512_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m1620963876_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m1876645811_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m2267381573_gshared (); extern "C" void Collection_1_Add_m3207253709_gshared (); extern "C" void Collection_1_Clear_m892932569_gshared (); extern "C" void Collection_1_ClearItems_m1309537980_gshared (); extern "C" void Collection_1_Contains_m3029924880_gshared (); extern "C" void Collection_1_CopyTo_m2284819389_gshared (); extern "C" void Collection_1_GetEnumerator_m3707353131_gshared (); extern "C" void Collection_1_IndexOf_m2968605598_gshared (); extern "C" void Collection_1_Insert_m3152401660_gshared (); extern "C" void Collection_1_InsertItem_m2968618240_gshared (); extern "C" void Collection_1_Remove_m1157527859_gshared (); extern "C" void Collection_1_RemoveAt_m945382277_gshared (); extern "C" void Collection_1_RemoveItem_m2488072228_gshared (); extern "C" void Collection_1_get_Count_m1978071579_gshared (); extern "C" void Collection_1_get_Item_m1661890000_gshared (); extern "C" void Collection_1_set_Item_m2496556911_gshared (); extern "C" void Collection_1_SetItem_m2231566296_gshared (); extern "C" void Collection_1_IsValidItem_m3695211745_gshared (); extern "C" void Collection_1_ConvertItem_m1032642141_gshared (); extern "C" void Collection_1_CheckWritable_m2534535911_gshared (); extern "C" void Collection_1_IsSynchronized_m3330012987_gshared (); extern "C" void Collection_1_IsFixedSize_m3773378248_gshared (); extern "C" void Collection_1__ctor_m2282344788_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2417181154_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m2506836065_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m2040186119_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m957883076_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m1067071264_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m1497681041_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m1204277084_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m2243157697_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m108152855_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m3456717455_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m701191331_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m3427758186_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m112339209_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m3303603295_gshared (); extern "C" void Collection_1_Add_m2815885385_gshared (); extern "C" void Collection_1_Clear_m3226494904_gshared (); extern "C" void Collection_1_ClearItems_m1997416416_gshared (); extern "C" void Collection_1_Contains_m966675107_gshared (); extern "C" void Collection_1_CopyTo_m1094363646_gshared (); extern "C" void Collection_1_GetEnumerator_m2249558442_gshared (); extern "C" void Collection_1_IndexOf_m139243320_gshared (); extern "C" void Collection_1_Insert_m1202646927_gshared (); extern "C" void Collection_1_InsertItem_m3979273071_gshared (); extern "C" void Collection_1_Remove_m2711613382_gshared (); extern "C" void Collection_1_RemoveAt_m1841732761_gshared (); extern "C" void Collection_1_RemoveItem_m3888427133_gshared (); extern "C" void Collection_1_get_Count_m976858874_gshared (); extern "C" void Collection_1_get_Item_m3182302697_gshared (); extern "C" void Collection_1_set_Item_m1440261380_gshared (); extern "C" void Collection_1_SetItem_m396206318_gshared (); extern "C" void Collection_1_IsValidItem_m2971081804_gshared (); extern "C" void Collection_1_ConvertItem_m2372856419_gshared (); extern "C" void Collection_1_CheckWritable_m4111223566_gshared (); extern "C" void Collection_1_IsSynchronized_m1594949616_gshared (); extern "C" void Collection_1_IsFixedSize_m1706121588_gshared (); extern "C" void Collection_1__ctor_m1564356161_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3676785608_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m1442329782_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m4143420582_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m1953474797_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m3232346846_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m3634909912_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m846433347_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m3594318635_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m303948101_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m239880731_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m2810535980_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m3940895184_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m1522935612_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m3301188171_gshared (); extern "C" void Collection_1_Add_m1643058260_gshared (); extern "C" void Collection_1_Clear_m2842246590_gshared (); extern "C" void Collection_1_ClearItems_m3607851213_gshared (); extern "C" void Collection_1_Contains_m808847723_gshared (); extern "C" void Collection_1_CopyTo_m2138111407_gshared (); extern "C" void Collection_1_GetEnumerator_m367473183_gshared (); extern "C" void Collection_1_IndexOf_m1729157306_gshared (); extern "C" void Collection_1_Insert_m2449244420_gshared (); extern "C" void Collection_1_InsertItem_m1649875636_gshared (); extern "C" void Collection_1_Remove_m4179719101_gshared (); extern "C" void Collection_1_RemoveAt_m3031910304_gshared (); extern "C" void Collection_1_RemoveItem_m4259909138_gshared (); extern "C" void Collection_1_get_Count_m4016575725_gshared (); extern "C" void Collection_1_get_Item_m2823660093_gshared (); extern "C" void Collection_1_set_Item_m1058151935_gshared (); extern "C" void Collection_1_SetItem_m3166309743_gshared (); extern "C" void Collection_1_IsValidItem_m220103751_gshared (); extern "C" void Collection_1_ConvertItem_m4066041643_gshared (); extern "C" void Collection_1_CheckWritable_m2459169921_gshared (); extern "C" void Collection_1_IsSynchronized_m2385423500_gshared (); extern "C" void Collection_1_IsFixedSize_m4021093834_gshared (); extern "C" void Collection_1__ctor_m1037763311_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m800866293_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m2498698546_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m2146624406_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m4202115202_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m1452315789_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m1917169199_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m3614417080_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m2242132549_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m335681125_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m1824327949_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m3510230228_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m489344879_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m1551171936_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m1477034698_gshared (); extern "C" void Collection_1_Add_m3226399184_gshared (); extern "C" void Collection_1_Clear_m908877058_gshared (); extern "C" void Collection_1_ClearItems_m3984321499_gshared (); extern "C" void Collection_1_Contains_m528069259_gshared (); extern "C" void Collection_1_CopyTo_m2220834530_gshared (); extern "C" void Collection_1_GetEnumerator_m725876408_gshared (); extern "C" void Collection_1_IndexOf_m3471752011_gshared (); extern "C" void Collection_1_Insert_m2959139902_gshared (); extern "C" void Collection_1_InsertItem_m4246158777_gshared (); extern "C" void Collection_1_Remove_m2888763458_gshared (); extern "C" void Collection_1_RemoveAt_m4116760013_gshared (); extern "C" void Collection_1_RemoveItem_m1799073249_gshared (); extern "C" void Collection_1_get_Count_m827473269_gshared (); extern "C" void Collection_1_get_Item_m750103853_gshared (); extern "C" void Collection_1_set_Item_m2005759795_gshared (); extern "C" void Collection_1_SetItem_m1556026097_gshared (); extern "C" void Collection_1_IsValidItem_m1186917187_gshared (); extern "C" void Collection_1_ConvertItem_m1121464645_gshared (); extern "C" void Collection_1_CheckWritable_m3479911675_gshared (); extern "C" void Collection_1_IsSynchronized_m732123088_gshared (); extern "C" void Collection_1_IsFixedSize_m1520287836_gshared (); extern "C" void Collection_1__ctor_m1658537192_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1890378160_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m1224653290_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m543131426_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m636559570_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m1778411030_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m1885789871_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m2450142546_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m3874417038_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m1212887170_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m2211704655_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m2006617540_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m4294742991_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m3561608521_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m1791043954_gshared (); extern "C" void Collection_1_Add_m4273303132_gshared (); extern "C" void Collection_1_Clear_m469411639_gshared (); extern "C" void Collection_1_ClearItems_m1139347032_gshared (); extern "C" void Collection_1_Contains_m923923904_gshared (); extern "C" void Collection_1_CopyTo_m3767941084_gshared (); extern "C" void Collection_1_GetEnumerator_m3016336636_gshared (); extern "C" void Collection_1_IndexOf_m2268990561_gshared (); extern "C" void Collection_1_Insert_m785389697_gshared (); extern "C" void Collection_1_InsertItem_m3349627829_gshared (); extern "C" void Collection_1_Remove_m3796873544_gshared (); extern "C" void Collection_1_RemoveAt_m768213386_gshared (); extern "C" void Collection_1_RemoveItem_m3361938438_gshared (); extern "C" void Collection_1_get_Count_m3310718131_gshared (); extern "C" void Collection_1_get_Item_m1099155791_gshared (); extern "C" void Collection_1_set_Item_m1257957670_gshared (); extern "C" void Collection_1_SetItem_m81427131_gshared (); extern "C" void Collection_1_IsValidItem_m1692259322_gshared (); extern "C" void Collection_1_ConvertItem_m3572965793_gshared (); extern "C" void Collection_1_CheckWritable_m4202467247_gshared (); extern "C" void Collection_1_IsSynchronized_m314243679_gshared (); extern "C" void Collection_1_IsFixedSize_m1261355321_gshared (); extern "C" void Collection_1__ctor_m862647250_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1379246212_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m113925245_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m3263345794_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m3490921927_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m1487304508_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m1032965762_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m4174029425_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m1995593999_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m2303238103_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m2049591139_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m3729574195_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m2829881063_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m2793215997_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m1769258335_gshared (); extern "C" void Collection_1_Add_m3966287673_gshared (); extern "C" void Collection_1_Clear_m2974920160_gshared (); extern "C" void Collection_1_ClearItems_m2972420279_gshared (); extern "C" void Collection_1_Contains_m510430922_gshared (); extern "C" void Collection_1_CopyTo_m2579473771_gshared (); extern "C" void Collection_1_GetEnumerator_m1222108015_gshared (); extern "C" void Collection_1_IndexOf_m3193115429_gshared (); extern "C" void Collection_1_Insert_m1209383239_gshared (); extern "C" void Collection_1_InsertItem_m2166291923_gshared (); extern "C" void Collection_1_Remove_m1776618446_gshared (); extern "C" void Collection_1_RemoveAt_m1459785997_gshared (); extern "C" void Collection_1_RemoveItem_m1361664840_gshared (); extern "C" void Collection_1_get_Count_m3846839564_gshared (); extern "C" void Collection_1_get_Item_m930989744_gshared (); extern "C" void Collection_1_set_Item_m1132680922_gshared (); extern "C" void Collection_1_SetItem_m158751453_gshared (); extern "C" void Collection_1_IsValidItem_m3336103651_gshared (); extern "C" void Collection_1_ConvertItem_m3185056835_gshared (); extern "C" void Collection_1_CheckWritable_m3724778730_gshared (); extern "C" void Collection_1_IsSynchronized_m1454294255_gshared (); extern "C" void Collection_1_IsFixedSize_m869657125_gshared (); extern "C" void Collection_1__ctor_m407913131_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m51957980_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m1215521680_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m255200458_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m1035933190_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m445585478_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m986541995_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m96105577_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m4164492859_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m1182735405_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m3673515248_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m1323706603_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m3571741302_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m3233778008_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m3049800723_gshared (); extern "C" void Collection_1_Add_m4240053368_gshared (); extern "C" void Collection_1_Clear_m3262948717_gshared (); extern "C" void Collection_1_ClearItems_m749831004_gshared (); extern "C" void Collection_1_Contains_m1952288870_gshared (); extern "C" void Collection_1_CopyTo_m587616220_gshared (); extern "C" void Collection_1_GetEnumerator_m43477077_gshared (); extern "C" void Collection_1_IndexOf_m1845471149_gshared (); extern "C" void Collection_1_Insert_m1715766615_gshared (); extern "C" void Collection_1_InsertItem_m435581539_gshared (); extern "C" void Collection_1_Remove_m2649483549_gshared (); extern "C" void Collection_1_RemoveAt_m4095861854_gshared (); extern "C" void Collection_1_RemoveItem_m1551254624_gshared (); extern "C" void Collection_1_get_Count_m2342416945_gshared (); extern "C" void Collection_1_get_Item_m1571712592_gshared (); extern "C" void Collection_1_set_Item_m2671771820_gshared (); extern "C" void Collection_1_SetItem_m4259979234_gshared (); extern "C" void Collection_1_IsValidItem_m313175405_gshared (); extern "C" void Collection_1_ConvertItem_m3887677175_gshared (); extern "C" void Collection_1_CheckWritable_m3550453538_gshared (); extern "C" void Collection_1_IsSynchronized_m1460309414_gshared (); extern "C" void Collection_1_IsFixedSize_m3685890525_gshared (); extern "C" void Collection_1__ctor_m1684523968_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m705932263_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m1600131133_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m2660980356_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m4074072555_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m3088678649_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m2244934388_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m1537461248_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m1367853497_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m2220833130_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m180011498_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m1735839943_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m44581794_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m1738640380_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m1464874538_gshared (); extern "C" void Collection_1_Add_m2371688404_gshared (); extern "C" void Collection_1_Clear_m348720743_gshared (); extern "C" void Collection_1_ClearItems_m2867530510_gshared (); extern "C" void Collection_1_Contains_m1531958020_gshared (); extern "C" void Collection_1_CopyTo_m3283595001_gshared (); extern "C" void Collection_1_GetEnumerator_m2838834415_gshared (); extern "C" void Collection_1_IndexOf_m4227445723_gshared (); extern "C" void Collection_1_Insert_m3792413348_gshared (); extern "C" void Collection_1_InsertItem_m2994433596_gshared (); extern "C" void Collection_1_Remove_m2750923526_gshared (); extern "C" void Collection_1_RemoveAt_m3946676102_gshared (); extern "C" void Collection_1_RemoveItem_m2506429527_gshared (); extern "C" void Collection_1_get_Count_m1049265413_gshared (); extern "C" void Collection_1_get_Item_m1266757967_gshared (); extern "C" void Collection_1_set_Item_m3094872498_gshared (); extern "C" void Collection_1_SetItem_m4261730051_gshared (); extern "C" void Collection_1_IsValidItem_m2741101058_gshared (); extern "C" void Collection_1_ConvertItem_m1424491515_gshared (); extern "C" void Collection_1_CheckWritable_m2104350537_gshared (); extern "C" void Collection_1_IsSynchronized_m1205076640_gshared (); extern "C" void Collection_1_IsFixedSize_m808435129_gshared (); extern "C" void Collection_1__ctor_m357534278_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1759251300_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m1191140336_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m2251920450_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m3016900633_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m3067386754_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m1002170697_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m4250293152_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m784795206_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m1286478435_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m191247020_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m2552253207_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m3742055318_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m2188528202_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m985119204_gshared (); extern "C" void Collection_1_Add_m2479233035_gshared (); extern "C" void Collection_1_Clear_m4017857709_gshared (); extern "C" void Collection_1_ClearItems_m3743175722_gshared (); extern "C" void Collection_1_Contains_m4983498_gshared (); extern "C" void Collection_1_CopyTo_m3178244425_gshared (); extern "C" void Collection_1_GetEnumerator_m3337355776_gshared (); extern "C" void Collection_1_IndexOf_m3717897106_gshared (); extern "C" void Collection_1_Insert_m108252817_gshared (); extern "C" void Collection_1_InsertItem_m155467040_gshared (); extern "C" void Collection_1_Remove_m3202258894_gshared (); extern "C" void Collection_1_RemoveAt_m1138947571_gshared (); extern "C" void Collection_1_RemoveItem_m2990428884_gshared (); extern "C" void Collection_1_get_Count_m3879225044_gshared (); extern "C" void Collection_1_get_Item_m2707891070_gshared (); extern "C" void Collection_1_set_Item_m169276279_gshared (); extern "C" void Collection_1_SetItem_m3867638948_gshared (); extern "C" void Collection_1_IsValidItem_m3556158270_gshared (); extern "C" void Collection_1_ConvertItem_m3169362545_gshared (); extern "C" void Collection_1_CheckWritable_m2319555243_gshared (); extern "C" void Collection_1_IsSynchronized_m129523919_gshared (); extern "C" void Collection_1_IsFixedSize_m981312982_gshared (); extern "C" void Collection_1__ctor_m4260923922_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2880840078_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m1993653391_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m510811711_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m2145738377_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m3344981453_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m662793316_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m568404499_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m1170523906_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m1022313875_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m4103395116_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m338726744_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m3360535719_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m576540095_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m2471011709_gshared (); extern "C" void Collection_1_Add_m4189103800_gshared (); extern "C" void Collection_1_Clear_m1001902820_gshared (); extern "C" void Collection_1_ClearItems_m126085553_gshared (); extern "C" void Collection_1_Contains_m3188361173_gshared (); extern "C" void Collection_1_CopyTo_m397598120_gshared (); extern "C" void Collection_1_GetEnumerator_m830938352_gshared (); extern "C" void Collection_1_IndexOf_m3521391127_gshared (); extern "C" void Collection_1_Insert_m3676110539_gshared (); extern "C" void Collection_1_InsertItem_m1091353653_gshared (); extern "C" void Collection_1_Remove_m1479728347_gshared (); extern "C" void Collection_1_RemoveAt_m2716636335_gshared (); extern "C" void Collection_1_RemoveItem_m3018553662_gshared (); extern "C" void Collection_1_get_Count_m481585279_gshared (); extern "C" void Collection_1_get_Item_m3622502310_gshared (); extern "C" void Collection_1_set_Item_m3277550669_gshared (); extern "C" void Collection_1_SetItem_m4068044190_gshared (); extern "C" void Collection_1_IsValidItem_m4062595238_gshared (); extern "C" void Collection_1_ConvertItem_m4292528661_gshared (); extern "C" void Collection_1_CheckWritable_m260225172_gshared (); extern "C" void Collection_1_IsSynchronized_m3411727864_gshared (); extern "C" void Collection_1_IsFixedSize_m3050738713_gshared (); extern "C" void Collection_1__ctor_m1598038395_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2085103535_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m3161594172_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m1720648455_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m1825196050_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m2398367108_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m2973531340_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m4133261863_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m1735336159_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m775124517_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m2204353810_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m673830421_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m3948341756_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m1648808019_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m1208325592_gshared (); extern "C" void Collection_1_Add_m2243753696_gshared (); extern "C" void Collection_1_Clear_m1705549534_gshared (); extern "C" void Collection_1_ClearItems_m2180022014_gshared (); extern "C" void Collection_1_Contains_m957312676_gshared (); extern "C" void Collection_1_CopyTo_m536100724_gshared (); extern "C" void Collection_1_GetEnumerator_m3396036611_gshared (); extern "C" void Collection_1_IndexOf_m2147604397_gshared (); extern "C" void Collection_1_Insert_m3142623580_gshared (); extern "C" void Collection_1_InsertItem_m1104379172_gshared (); extern "C" void Collection_1_Remove_m1588099251_gshared (); extern "C" void Collection_1_RemoveAt_m3977284983_gshared (); extern "C" void Collection_1_RemoveItem_m223652455_gshared (); extern "C" void Collection_1_get_Count_m3722526935_gshared (); extern "C" void Collection_1_get_Item_m470030422_gshared (); extern "C" void Collection_1_set_Item_m2456895106_gshared (); extern "C" void Collection_1_SetItem_m1032509344_gshared (); extern "C" void Collection_1_IsValidItem_m4030585605_gshared (); extern "C" void Collection_1_ConvertItem_m1765056477_gshared (); extern "C" void Collection_1_CheckWritable_m771588254_gshared (); extern "C" void Collection_1_IsSynchronized_m3067846108_gshared (); extern "C" void Collection_1_IsFixedSize_m2233061059_gshared (); extern "C" void Collection_1__ctor_m3539754069_gshared (); extern "C" void Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1771005219_gshared (); extern "C" void Collection_1_System_Collections_ICollection_CopyTo_m493563714_gshared (); extern "C" void Collection_1_System_Collections_IEnumerable_GetEnumerator_m956197710_gshared (); extern "C" void Collection_1_System_Collections_IList_Add_m1442039487_gshared (); extern "C" void Collection_1_System_Collections_IList_Contains_m358188699_gshared (); extern "C" void Collection_1_System_Collections_IList_IndexOf_m1746385248_gshared (); extern "C" void Collection_1_System_Collections_IList_Insert_m318861005_gshared (); extern "C" void Collection_1_System_Collections_IList_Remove_m3626426357_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_IsSynchronized_m918347343_gshared (); extern "C" void Collection_1_System_Collections_ICollection_get_SyncRoot_m1237459834_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsFixedSize_m1270410136_gshared (); extern "C" void Collection_1_System_Collections_IList_get_IsReadOnly_m3875841446_gshared (); extern "C" void Collection_1_System_Collections_IList_get_Item_m2496684628_gshared (); extern "C" void Collection_1_System_Collections_IList_set_Item_m3722249710_gshared (); extern "C" void Collection_1_Add_m3520201468_gshared (); extern "C" void Collection_1_Clear_m264312017_gshared (); extern "C" void Collection_1_ClearItems_m2238836353_gshared (); extern "C" void Collection_1_Contains_m844131527_gshared (); extern "C" void Collection_1_CopyTo_m2992397915_gshared (); extern "C" void Collection_1_GetEnumerator_m2082652486_gshared (); extern "C" void Collection_1_IndexOf_m340707316_gshared (); extern "C" void Collection_1_Insert_m321751199_gshared (); extern "C" void Collection_1_InsertItem_m2734021805_gshared (); extern "C" void Collection_1_Remove_m836240285_gshared (); extern "C" void Collection_1_RemoveAt_m1717481822_gshared (); extern "C" void Collection_1_RemoveItem_m4270379919_gshared (); extern "C" void Collection_1_get_Count_m2208909054_gshared (); extern "C" void Collection_1_get_Item_m2658951905_gshared (); extern "C" void Collection_1_set_Item_m1690053936_gshared (); extern "C" void Collection_1_SetItem_m935751489_gshared (); extern "C" void Collection_1_IsValidItem_m1135547855_gshared (); extern "C" void Collection_1_ConvertItem_m1713764229_gshared (); extern "C" void Collection_1_CheckWritable_m70532477_gshared (); extern "C" void Collection_1_IsSynchronized_m1628985721_gshared (); extern "C" void Collection_1_IsFixedSize_m3544443312_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m3791327764_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m3301033772_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m82283595_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m927451218_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m343046777_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m1054720687_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m141381488_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m1474757378_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2268246545_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m1050690529_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3571397372_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m2909357569_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m620345736_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m2235784655_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m933123645_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m2083067326_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m3069512161_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1171379537_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m269357388_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m3931236467_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m1925431362_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m744471768_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m4034059193_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m321298145_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m1202802495_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m3594386898_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m925626784_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m1096070070_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m2839998955_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m2433832779_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m2389428128_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m2386779399_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m3824889284_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m44596766_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m3598941268_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m1080524970_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m3057537900_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3035778237_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m244076465_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m181148251_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m2332356122_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m3607648604_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m258656558_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m2221494978_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m3010857992_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m656817739_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m904938906_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1923952176_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m3827774553_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m3393952332_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m2461315549_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m4141972181_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m4176488195_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m398746221_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m513992354_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m1883850068_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m3906219476_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m1913351367_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m2081927786_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m4188483961_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m2880611626_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m3084349535_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m3408673321_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m3889440497_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m162873891_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m2347584249_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m2347062888_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3523524435_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m846392288_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m4130632587_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m1403598162_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m3040924488_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m3096277387_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m1562329493_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m1980676884_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m1600401410_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m2827031731_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1450544420_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m174336642_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m3430667458_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m3446312175_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3770014726_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m3093876282_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m1156561653_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m1224230312_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m2205140191_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m3185883722_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m1124648084_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m931090318_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m2569879855_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m1435233979_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m776396001_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m581493919_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m2131592847_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m3491742021_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3378632286_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m2078367952_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m477144818_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2257810765_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m3309068197_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m2783225576_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m3602674223_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m186268900_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m3108877045_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m371923433_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m3900241_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m854206670_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m3302463352_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2421522198_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m4177626205_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m2215062109_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m4104654136_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m1629908694_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m3382541009_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m4029916821_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m1590679193_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m3804331402_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m2853691202_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m1198813529_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m2041155270_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m2051673857_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m3473044375_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2847064637_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m4178948641_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m2077059022_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3052292110_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m3434336733_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3827004573_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2615649304_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m1740702185_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m2342147693_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m1060075357_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m3665001063_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m3656310254_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m3208174360_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m1221414440_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m233056980_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m4259063435_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m1250359493_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m65312773_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m658766930_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m2549965753_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m2860709879_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m2421119277_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m876684185_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m3654303666_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m2036384270_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m3560891737_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m3416295294_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m290453617_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m1280205074_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m96690563_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m277026783_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m3334416264_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m198574596_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3686912555_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m77482646_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m1125768080_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2976428727_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m2106284868_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3617398146_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m1702886803_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m2501170889_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m1101844283_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m1967352704_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m3575044260_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m3542056846_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m414530363_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2795670345_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m3163026961_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m2228303956_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m1133270299_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m3384883925_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m4234059967_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m3988905077_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m1696778232_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m1900163338_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m893001455_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m2210582196_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m804302590_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m1302552978_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m1956676091_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2880839618_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m3348500519_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m2502650283_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m2205328453_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1422313866_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m2500166725_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m906425705_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m3378426672_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m2695810870_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m3730422579_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m1700672028_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m3544445602_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m1925662645_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m2962345889_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m3820196292_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m3176119858_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m3394054842_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m794257605_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m2460974179_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3830336754_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m894950708_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m1024239684_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m3168561469_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m1579400666_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m1817830058_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m4153978071_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m2581518772_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m3364998067_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m570479235_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m1503494183_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2144873582_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m1477704761_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m2403000844_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3855008123_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m2067247954_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m4241685464_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1708118676_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m833932186_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3107263221_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m170328923_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m1022192878_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m1335669717_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m1057690090_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m3186049426_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m3335711177_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1110433431_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m522662272_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m2678794268_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m4134062767_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3342020913_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m3145532553_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m139775773_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m3137174107_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m3437194485_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m2496861992_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m4032564811_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m3537681225_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m294882198_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m1762959247_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m1095633093_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m1354999746_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m3810042746_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m3551984894_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3236584704_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m3642025694_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m2744735364_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3091483510_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m3364041995_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3246606354_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m2322461581_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m1541669924_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m2308585277_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m240767043_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m3930201107_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m2021493480_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m3493539393_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2698962302_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m774110280_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m3164477_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3123198989_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m2804705849_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m3561825056_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m759581256_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m195304470_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m2770266142_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m3355211400_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m2598165562_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m2436074604_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m1258937741_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m77816370_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2015084482_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m1143496603_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m2494624595_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m75805821_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1769686930_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m2746105468_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1297343998_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m3503428121_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m4208042932_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m3713087082_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m1101764939_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m3584152087_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m2849116687_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m3990606515_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m3174834349_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m2647511229_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m3773066746_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m1096056381_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m3992669118_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m771988920_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m40260717_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m339396424_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m4019351030_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m4102050090_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m1140126666_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m837985983_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m3396299880_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m540417879_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m1616453670_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m4098060367_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2016262503_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m15093415_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m1450470050_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3397157393_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m2483638661_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3439380116_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1091630510_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m4164422585_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3307724209_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m2679810904_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m829970382_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m1226779575_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m4070713259_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m3173525563_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m2295067401_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1413395251_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2320294339_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m476056295_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m1541227818_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m2140102848_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m1694932108_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m3181547020_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m3879318229_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m705835259_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m1138268964_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m218189195_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m3518411841_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m423007365_gshared (); extern "C" void ReadOnlyCollection_1__ctor_m3339099643_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m7408334_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m3250354375_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m4136757688_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m2210079064_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3331007004_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1309715206_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3412723531_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m917453567_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m610598606_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m1602866616_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Add_m3604324672_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Clear_m107747551_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Contains_m125134211_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_IndexOf_m4261402499_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Insert_m785956446_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_Remove_m461798447_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m3337572784_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2619534079_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m444434369_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m3937404293_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m310085384_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_get_Item_m3875472584_gshared (); extern "C" void ReadOnlyCollection_1_System_Collections_IList_set_Item_m1060889398_gshared (); extern "C" void ReadOnlyCollection_1_Contains_m2345160103_gshared (); extern "C" void ReadOnlyCollection_1_CopyTo_m96511817_gshared (); extern "C" void ReadOnlyCollection_1_GetEnumerator_m2309536646_gshared (); extern "C" void ReadOnlyCollection_1_IndexOf_m4078614084_gshared (); extern "C" void ReadOnlyCollection_1_get_Count_m3917919846_gshared (); extern "C" void ReadOnlyCollection_1_get_Item_m4082210165_gshared (); extern "C" void Comparison_1__ctor_m3052056276_gshared (); extern "C" void Comparison_1_Invoke_m3470545525_gshared (); extern "C" void Comparison_1_BeginInvoke_m3491481975_gshared (); extern "C" void Comparison_1_EndInvoke_m1296865916_gshared (); extern "C" void Comparison_1__ctor_m3388426865_gshared (); extern "C" void Comparison_1_Invoke_m106791065_gshared (); extern "C" void Comparison_1_BeginInvoke_m1674965123_gshared (); extern "C" void Comparison_1_EndInvoke_m2567983005_gshared (); extern "C" void Comparison_1__ctor_m920043136_gshared (); extern "C" void Comparison_1_Invoke_m4168979157_gshared (); extern "C" void Comparison_1_BeginInvoke_m817558709_gshared (); extern "C" void Comparison_1_EndInvoke_m3532239146_gshared (); extern "C" void Comparison_1__ctor_m3364624778_gshared (); extern "C" void Comparison_1_Invoke_m1074596548_gshared (); extern "C" void Comparison_1_BeginInvoke_m2605187963_gshared (); extern "C" void Comparison_1_EndInvoke_m4086463822_gshared (); extern "C" void Comparison_1__ctor_m3963736951_gshared (); extern "C" void Comparison_1_Invoke_m1507778531_gshared (); extern "C" void Comparison_1_BeginInvoke_m2141390384_gshared (); extern "C" void Comparison_1_EndInvoke_m2403115798_gshared (); extern "C" void Comparison_1_Invoke_m1465381063_gshared (); extern "C" void Comparison_1_BeginInvoke_m4216609694_gshared (); extern "C" void Comparison_1_EndInvoke_m1347286341_gshared (); extern "C" void Comparison_1_Invoke_m1121502121_gshared (); extern "C" void Comparison_1_BeginInvoke_m1435205092_gshared (); extern "C" void Comparison_1_EndInvoke_m2469163587_gshared (); extern "C" void Comparison_1__ctor_m336925466_gshared (); extern "C" void Comparison_1_Invoke_m4277779933_gshared (); extern "C" void Comparison_1_BeginInvoke_m3886843251_gshared (); extern "C" void Comparison_1_EndInvoke_m1466690643_gshared (); extern "C" void Comparison_1__ctor_m1601300920_gshared (); extern "C" void Comparison_1_Invoke_m4112634467_gshared (); extern "C" void Comparison_1_BeginInvoke_m750130844_gshared (); extern "C" void Comparison_1_EndInvoke_m4292435518_gshared (); extern "C" void Comparison_1__ctor_m1218529312_gshared (); extern "C" void Comparison_1_Invoke_m110547008_gshared (); extern "C" void Comparison_1_BeginInvoke_m344255918_gshared (); extern "C" void Comparison_1_EndInvoke_m4079241771_gshared (); extern "C" void Comparison_1__ctor_m2542072805_gshared (); extern "C" void Comparison_1_Invoke_m3322309996_gshared (); extern "C" void Comparison_1_BeginInvoke_m1447645065_gshared (); extern "C" void Comparison_1_EndInvoke_m3783115725_gshared (); extern "C" void Comparison_1__ctor_m908222641_gshared (); extern "C" void Comparison_1_Invoke_m1491091937_gshared (); extern "C" void Comparison_1_BeginInvoke_m3096545952_gshared (); extern "C" void Comparison_1_EndInvoke_m3445464161_gshared (); extern "C" void Comparison_1__ctor_m2802180781_gshared (); extern "C" void Comparison_1_Invoke_m1753569942_gshared (); extern "C" void Comparison_1_BeginInvoke_m650992744_gshared (); extern "C" void Comparison_1_EndInvoke_m1532201052_gshared (); extern "C" void Func_2_Invoke_m3879188777_gshared (); extern "C" void Func_2_BeginInvoke_m2423949116_gshared (); extern "C" void Func_2_EndInvoke_m693312050_gshared (); extern "C" void Func_2_BeginInvoke_m3793888214_gshared (); extern "C" void Func_2_EndInvoke_m368871119_gshared (); extern "C" void Func_2_BeginInvoke_m2171057164_gshared (); extern "C" void Func_2_EndInvoke_m3620171036_gshared (); extern "C" void Func_3__ctor_m305757758_gshared (); extern "C" void Func_3_BeginInvoke_m1086974890_gshared (); extern "C" void Func_3_EndInvoke_m943917912_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1__ctor_m197260272_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_Generic_IEnumeratorU3CTSourceU3E_get_Current_m1146236170_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_IEnumerator_get_Current_m2557332908_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_IEnumerable_GetEnumerator_m3085544518_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_Generic_IEnumerableU3CTSourceU3E_GetEnumerator_m4141780510_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_MoveNext_m3312678137_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_Dispose_m539787504_gshared (); extern "C" void U3CCreateWhereIteratorU3Ec__Iterator1D_1_Reset_m3810816857_gshared (); extern "C" void Nullable_1_Equals_m489083600_AdjustorThunk (); extern "C" void Nullable_1_Equals_m2289713265_AdjustorThunk (); extern "C" void Nullable_1_GetHashCode_m1417295600_AdjustorThunk (); extern "C" void Nullable_1_ToString_m3085298852_AdjustorThunk (); extern "C" void Predicate_1__ctor_m2609824702_gshared (); extern "C" void Predicate_1_Invoke_m240525233_gshared (); extern "C" void Predicate_1_BeginInvoke_m4047419182_gshared (); extern "C" void Predicate_1_EndInvoke_m2441994808_gshared (); extern "C" void Predicate_1__ctor_m799046752_gshared (); extern "C" void Predicate_1_Invoke_m2365391106_gshared (); extern "C" void Predicate_1_BeginInvoke_m2509918657_gshared (); extern "C" void Predicate_1_EndInvoke_m4014618618_gshared (); extern "C" void Predicate_1__ctor_m3062707901_gshared (); extern "C" void Predicate_1_Invoke_m3126475681_gshared (); extern "C" void Predicate_1_BeginInvoke_m1153576441_gshared (); extern "C" void Predicate_1_EndInvoke_m2327933578_gshared (); extern "C" void Predicate_1__ctor_m4198773481_gshared (); extern "C" void Predicate_1_Invoke_m2820373031_gshared (); extern "C" void Predicate_1_BeginInvoke_m2545191857_gshared (); extern "C" void Predicate_1_EndInvoke_m2478057285_gshared (); extern "C" void Predicate_1__ctor_m313202572_gshared (); extern "C" void Predicate_1_Invoke_m668864835_gshared (); extern "C" void Predicate_1_BeginInvoke_m250976720_gshared (); extern "C" void Predicate_1_EndInvoke_m2237298311_gshared (); extern "C" void Predicate_1__ctor_m2185452373_gshared (); extern "C" void Predicate_1_Invoke_m18296867_gshared (); extern "C" void Predicate_1_BeginInvoke_m643517825_gshared (); extern "C" void Predicate_1_EndInvoke_m2198356246_gshared (); extern "C" void Predicate_1__ctor_m707109560_gshared (); extern "C" void Predicate_1_Invoke_m103487328_gshared (); extern "C" void Predicate_1_BeginInvoke_m234181952_gshared (); extern "C" void Predicate_1_EndInvoke_m4228897372_gshared (); extern "C" void Predicate_1__ctor_m1342395208_gshared (); extern "C" void Predicate_1_Invoke_m4201920764_gshared (); extern "C" void Predicate_1_BeginInvoke_m3629434209_gshared (); extern "C" void Predicate_1_EndInvoke_m826374582_gshared (); extern "C" void Predicate_1__ctor_m2086775979_gshared (); extern "C" void Predicate_1_Invoke_m2019251798_gshared (); extern "C" void Predicate_1_BeginInvoke_m1081892072_gshared (); extern "C" void Predicate_1_EndInvoke_m4134250121_gshared (); extern "C" void Predicate_1__ctor_m3156687499_gshared (); extern "C" void Predicate_1_Invoke_m3823832842_gshared (); extern "C" void Predicate_1_BeginInvoke_m2472079403_gshared (); extern "C" void Predicate_1_EndInvoke_m1161053553_gshared (); extern "C" void Predicate_1__ctor_m921240138_gshared (); extern "C" void Predicate_1_Invoke_m4227926478_gshared (); extern "C" void Predicate_1_BeginInvoke_m697577769_gshared (); extern "C" void Predicate_1_EndInvoke_m2861007309_gshared (); extern "C" void Predicate_1__ctor_m3048767094_gshared (); extern "C" void Predicate_1_Invoke_m1366409322_gshared (); extern "C" void Predicate_1_BeginInvoke_m3162440439_gshared (); extern "C" void Predicate_1_EndInvoke_m826537991_gshared (); extern "C" void CachedInvokableCall_1_Invoke_m379905952_gshared (); extern "C" void CachedInvokableCall_1_Invoke_m2847788136_gshared (); extern "C" void CachedInvokableCall_1_Invoke_m391711637_gshared (); extern "C" void CachedInvokableCall_1_Invoke_m1371871437_gshared (); extern "C" void CachedInvokableCall_1_Invoke_m2105137230_gshared (); extern "C" void CachedInvokableCall_1_Invoke_m1304240999_gshared (); extern "C" void InvokableCall_1__ctor_m1062097604_gshared (); extern "C" void InvokableCall_1__ctor_m3391642668_gshared (); extern "C" void InvokableCall_1_add_Delegate_m3057641972_gshared (); extern "C" void InvokableCall_1_remove_Delegate_m425265903_gshared (); extern "C" void InvokableCall_1_Invoke_m3252559530_gshared (); extern "C" void InvokableCall_1_Invoke_m3622444960_gshared (); extern "C" void InvokableCall_1_Find_m1373737916_gshared (); extern "C" void InvokableCall_1__ctor_m2230237455_gshared (); extern "C" void InvokableCall_1__ctor_m2598850239_gshared (); extern "C" void InvokableCall_1_add_Delegate_m1646950674_gshared (); extern "C" void InvokableCall_1_remove_Delegate_m568393649_gshared (); extern "C" void InvokableCall_1_Invoke_m597729448_gshared (); extern "C" void InvokableCall_1_Invoke_m3873687077_gshared (); extern "C" void InvokableCall_1_Find_m163237239_gshared (); extern "C" void InvokableCall_1__ctor_m2349844892_gshared (); extern "C" void InvokableCall_1__ctor_m498284623_gshared (); extern "C" void InvokableCall_1_add_Delegate_m1802672725_gshared (); extern "C" void InvokableCall_1_remove_Delegate_m697871437_gshared (); extern "C" void InvokableCall_1_Invoke_m1079852676_gshared (); extern "C" void InvokableCall_1_Invoke_m2153390693_gshared (); extern "C" void InvokableCall_1_Find_m318140336_gshared (); extern "C" void InvokableCall_1__ctor_m3734588311_gshared (); extern "C" void InvokableCall_1__ctor_m2338538582_gshared (); extern "C" void InvokableCall_1_add_Delegate_m2953171886_gshared (); extern "C" void InvokableCall_1_remove_Delegate_m3251908241_gshared (); extern "C" void InvokableCall_1_Invoke_m1715970447_gshared (); extern "C" void InvokableCall_1_Invoke_m2235168695_gshared (); extern "C" void InvokableCall_1_Find_m2424443978_gshared (); extern "C" void InvokableCall_1__ctor_m1830436394_gshared (); extern "C" void InvokableCall_1__ctor_m592418486_gshared (); extern "C" void InvokableCall_1_add_Delegate_m3210951458_gshared (); extern "C" void InvokableCall_1_remove_Delegate_m555265154_gshared (); extern "C" void InvokableCall_1_Invoke_m3214151739_gshared (); extern "C" void InvokableCall_1_Invoke_m1280268590_gshared (); extern "C" void InvokableCall_1_Find_m2771745809_gshared (); extern "C" void UnityAction_1_Invoke_m2924060324_gshared (); extern "C" void UnityAction_1_BeginInvoke_m1162043626_gshared (); extern "C" void UnityAction_1_EndInvoke_m3923431266_gshared (); extern "C" void UnityAction_1__ctor_m3680125764_gshared (); extern "C" void UnityAction_1_Invoke_m1421617105_gshared (); extern "C" void UnityAction_1_BeginInvoke_m1600633797_gshared (); extern "C" void UnityAction_1_EndInvoke_m2542276270_gshared (); extern "C" void UnityAction_1_Invoke_m3993379585_gshared (); extern "C" void UnityAction_1_BeginInvoke_m2044205602_gshared (); extern "C" void UnityAction_1_EndInvoke_m843067224_gshared (); extern "C" void UnityAction_1_Invoke_m1000667363_gshared (); extern "C" void UnityAction_1_BeginInvoke_m816293144_gshared (); extern "C" void UnityAction_1_EndInvoke_m352508044_gshared (); extern "C" void UnityAction_1__ctor_m3749982331_gshared (); extern "C" void UnityAction_1_BeginInvoke_m1828981303_gshared (); extern "C" void UnityAction_1_EndInvoke_m3523038506_gshared (); extern "C" void UnityAction_1__ctor_m757090816_gshared (); extern "C" void UnityAction_1_Invoke_m3548817394_gshared (); extern "C" void UnityAction_1_BeginInvoke_m3909650933_gshared (); extern "C" void UnityAction_1_EndInvoke_m3086013720_gshared (); extern "C" void UnityAction_2__ctor_m3331265227_gshared (); extern "C" void UnityAction_2_BeginInvoke_m3112562744_gshared (); extern "C" void UnityAction_2_EndInvoke_m3885372031_gshared (); extern "C" void UnityAction_2__ctor_m386010435_gshared (); extern "C" void UnityAction_2_BeginInvoke_m1276764692_gshared (); extern "C" void UnityAction_2_EndInvoke_m3472917982_gshared (); extern "C" void UnityEvent_1_RemoveListener_m468199011_gshared (); extern "C" void UnityEvent_1_GetDelegate_m3371221286_gshared (); extern "C" void UnityEvent_1_AddListener_m1022511408_gshared (); extern "C" void UnityEvent_1_RemoveListener_m3127045211_gshared (); extern "C" void UnityEvent_1_GetDelegate_m2223012614_gshared (); extern "C" void UnityEvent_1_GetDelegate_m678464238_gshared (); extern "C" void UnityEvent_1_RemoveListener_m3616775890_gshared (); extern "C" void UnityEvent_1_GetDelegate_m2618250299_gshared (); extern "C" void UnityEvent_1_AddListener_m457015346_gshared (); extern "C" void UnityEvent_1_RemoveListener_m34807495_gshared (); extern "C" void UnityEvent_1_GetDelegate_m3928273224_gshared (); extern "C" void U3CStartU3Ec__Iterator0__ctor_m841773104_gshared (); extern "C" void U3CStartU3Ec__Iterator0_MoveNext_m390743004_gshared (); extern "C" void U3CStartU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m1537412609_gshared (); extern "C" void U3CStartU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m1331664746_gshared (); extern "C" void U3CStartU3Ec__Iterator0_Dispose_m3989512742_gshared (); extern "C" void U3CStartU3Ec__Iterator0_Reset_m3593022934_gshared (); extern "C" void U3CStartU3Ec__Iterator0__ctor_m3034754479_gshared (); extern "C" void U3CStartU3Ec__Iterator0_MoveNext_m2157455638_gshared (); extern "C" void U3CStartU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m197372441_gshared (); extern "C" void U3CStartU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m31586940_gshared (); extern "C" void U3CStartU3Ec__Iterator0_Dispose_m1710031825_gshared (); extern "C" void U3CStartU3Ec__Iterator0_Reset_m2293606729_gshared (); extern "C" void TweenRunner_1_Start_m4151158540_gshared (); extern "C" void TweenRunner_1_Start_m2522678208_gshared (); extern "C" void TweenRunner_1_StopTween_m1901433528_gshared (); extern "C" void ListPool_1__cctor_m4165687330_gshared (); extern "C" void ListPool_1_U3Cs_ListPoolU3Em__0_m1918497668_gshared (); extern "C" void ListPool_1__cctor_m3681584993_gshared (); extern "C" void ListPool_1_U3Cs_ListPoolU3Em__0_m4188550806_gshared (); extern "C" void ListPool_1__cctor_m859108057_gshared (); extern "C" void ListPool_1_U3Cs_ListPoolU3Em__0_m1917081687_gshared (); extern "C" void ListPool_1__cctor_m745322712_gshared (); extern "C" void ListPool_1_U3Cs_ListPoolU3Em__0_m1924088315_gshared (); extern "C" void ListPool_1__cctor_m461968650_gshared (); extern "C" void ListPool_1_U3Cs_ListPoolU3Em__0_m1758303803_gshared (); extern "C" void ListPool_1__cctor_m2814328564_gshared (); extern "C" void ListPool_1_U3Cs_ListPoolU3Em__0_m2140013071_gshared (); extern const Il2CppMethodPointer g_Il2CppGenericMethodPointers[4640] = { NULL/* 0*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisRuntimeObject_m1061365573_gshared/* 1*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisRuntimeObject_m895626464_gshared/* 2*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisRuntimeObject_m521876506_gshared/* 3*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisRuntimeObject_m2788686457_gshared/* 4*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisRuntimeObject_m780039149_gshared/* 5*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisRuntimeObject_m829673612_gshared/* 6*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisRuntimeObject_m1498065733_gshared/* 7*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisRuntimeObject_m2330279297_gshared/* 8*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisRuntimeObject_m4285049544_gshared/* 9*/, (Il2CppMethodPointer)&Array_get_swapper_TisRuntimeObject_m2258489685_gshared/* 10*/, (Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m85020251_gshared/* 11*/, (Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_TisRuntimeObject_m36732424_gshared/* 12*/, (Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m4255439794_gshared/* 13*/, (Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_TisRuntimeObject_m1367771962_gshared/* 14*/, (Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m475275282_gshared/* 15*/, (Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_TisRuntimeObject_m3380033719_gshared/* 16*/, (Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m2728156023_gshared/* 17*/, (Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_TisRuntimeObject_m1003063565_gshared/* 18*/, (Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m1437567983_gshared/* 19*/, (Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m2943170623_gshared/* 20*/, (Il2CppMethodPointer)&Array_qsort_TisRuntimeObject_TisRuntimeObject_m3184056212_gshared/* 21*/, (Il2CppMethodPointer)&Array_compare_TisRuntimeObject_m3039563230_gshared/* 22*/, (Il2CppMethodPointer)&Array_qsort_TisRuntimeObject_m1411767430_gshared/* 23*/, (Il2CppMethodPointer)&Array_swap_TisRuntimeObject_TisRuntimeObject_m2177050148_gshared/* 24*/, (Il2CppMethodPointer)&Array_swap_TisRuntimeObject_m53566345_gshared/* 25*/, (Il2CppMethodPointer)&Array_Resize_TisRuntimeObject_m968409085_gshared/* 26*/, (Il2CppMethodPointer)&Array_Resize_TisRuntimeObject_m1658325674_gshared/* 27*/, (Il2CppMethodPointer)&Array_TrueForAll_TisRuntimeObject_m975684368_gshared/* 28*/, (Il2CppMethodPointer)&Array_ForEach_TisRuntimeObject_m305217434_gshared/* 29*/, (Il2CppMethodPointer)&Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m1163047977_gshared/* 30*/, (Il2CppMethodPointer)&Array_FindLastIndex_TisRuntimeObject_m2295482160_gshared/* 31*/, (Il2CppMethodPointer)&Array_FindLastIndex_TisRuntimeObject_m1647963004_gshared/* 32*/, (Il2CppMethodPointer)&Array_FindLastIndex_TisRuntimeObject_m2914859451_gshared/* 33*/, (Il2CppMethodPointer)&Array_FindIndex_TisRuntimeObject_m2944083098_gshared/* 34*/, (Il2CppMethodPointer)&Array_FindIndex_TisRuntimeObject_m2253920087_gshared/* 35*/, (Il2CppMethodPointer)&Array_FindIndex_TisRuntimeObject_m1672129868_gshared/* 36*/, (Il2CppMethodPointer)&Array_BinarySearch_TisRuntimeObject_m770947464_gshared/* 37*/, (Il2CppMethodPointer)&Array_BinarySearch_TisRuntimeObject_m3568587325_gshared/* 38*/, (Il2CppMethodPointer)&Array_BinarySearch_TisRuntimeObject_m3808310464_gshared/* 39*/, (Il2CppMethodPointer)&Array_BinarySearch_TisRuntimeObject_m961893957_gshared/* 40*/, (Il2CppMethodPointer)&Array_IndexOf_TisRuntimeObject_m1240301136_gshared/* 41*/, (Il2CppMethodPointer)&Array_IndexOf_TisRuntimeObject_m2755879071_gshared/* 42*/, (Il2CppMethodPointer)&Array_IndexOf_TisRuntimeObject_m4048940068_gshared/* 43*/, (Il2CppMethodPointer)&Array_LastIndexOf_TisRuntimeObject_m2379510054_gshared/* 44*/, (Il2CppMethodPointer)&Array_LastIndexOf_TisRuntimeObject_m2638975840_gshared/* 45*/, (Il2CppMethodPointer)&Array_LastIndexOf_TisRuntimeObject_m4256129932_gshared/* 46*/, (Il2CppMethodPointer)&Array_FindAll_TisRuntimeObject_m1610030647_gshared/* 47*/, (Il2CppMethodPointer)&Array_Exists_TisRuntimeObject_m2188141736_gshared/* 48*/, (Il2CppMethodPointer)&Array_AsReadOnly_TisRuntimeObject_m2112537407_gshared/* 49*/, (Il2CppMethodPointer)&Array_Find_TisRuntimeObject_m3366654318_gshared/* 50*/, (Il2CppMethodPointer)&Array_FindLast_TisRuntimeObject_m1322295653_gshared/* 51*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m800271743_AdjustorThunk/* 52*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1375766095_AdjustorThunk/* 53*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3662936426_AdjustorThunk/* 54*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3813347646_AdjustorThunk/* 55*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m4145370587_AdjustorThunk/* 56*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m913007673_AdjustorThunk/* 57*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Item_m3275158178_gshared/* 58*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_set_Item_m195435846_gshared/* 59*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Count_m4067070299_gshared/* 60*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_get_IsReadOnly_m3687088003_gshared/* 61*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1__ctor_m2986637366_gshared/* 62*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m1646542672_gshared/* 63*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Add_m2512965_gshared/* 64*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Clear_m583752151_gshared/* 65*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Contains_m3104807942_gshared/* 66*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_CopyTo_m1615525345_gshared/* 67*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_GetEnumerator_m1996858739_gshared/* 68*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_IndexOf_m3070285270_gshared/* 69*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Insert_m2135691088_gshared/* 70*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Remove_m1886434108_gshared/* 71*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_RemoveAt_m3263839274_gshared/* 72*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_ReadOnlyError_m2372437592_gshared/* 73*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m3781222795_gshared/* 74*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m1233336434_gshared/* 75*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0__ctor_m3849356650_gshared/* 76*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m858423442_gshared/* 77*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Dispose_m740720339_gshared/* 78*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Reset_m468484277_gshared/* 79*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m955532339_gshared/* 80*/, (Il2CppMethodPointer)&Comparer_1__ctor_m2187240463_gshared/* 81*/, (Il2CppMethodPointer)&Comparer_1__cctor_m658175612_gshared/* 82*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m2254467403_gshared/* 83*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2740545469_gshared/* 84*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m4167574466_gshared/* 85*/, (Il2CppMethodPointer)&GenericComparer_1__ctor_m3325936871_gshared/* 86*/, (Il2CppMethodPointer)&GenericComparer_1_Compare_m1834403076_gshared/* 87*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_get_Item_m355489265_gshared/* 88*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_set_Item_m3004846803_gshared/* 89*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m1405444137_gshared/* 90*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_SyncRoot_m2624485468_gshared/* 91*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m185947375_gshared/* 92*/, (Il2CppMethodPointer)&Dictionary_2_get_Count_m1797529547_gshared/* 93*/, (Il2CppMethodPointer)&Dictionary_2_get_Item_m1598946997_gshared/* 94*/, (Il2CppMethodPointer)&Dictionary_2_set_Item_m1756571216_gshared/* 95*/, (Il2CppMethodPointer)&Dictionary_2_get_Keys_m4108006725_gshared/* 96*/, (Il2CppMethodPointer)&Dictionary_2_get_Values_m786887416_gshared/* 97*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m708317604_gshared/* 98*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m160681237_gshared/* 99*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m3893778414_gshared/* 100*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m4214077210_gshared/* 101*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Add_m4109081375_gshared/* 102*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Remove_m3321599987_gshared/* 103*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m2277145928_gshared/* 104*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m605138704_gshared/* 105*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m1063220191_gshared/* 106*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m2839505182_gshared/* 107*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_CopyTo_m27068836_gshared/* 108*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m2405287926_gshared/* 109*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m3270769191_gshared/* 110*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_GetEnumerator_m2864308741_gshared/* 111*/, (Il2CppMethodPointer)&Dictionary_2_Init_m2670846130_gshared/* 112*/, (Il2CppMethodPointer)&Dictionary_2_InitArrays_m261323892_gshared/* 113*/, (Il2CppMethodPointer)&Dictionary_2_CopyToCheck_m3091063542_gshared/* 114*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m3467440197_gshared/* 115*/, (Il2CppMethodPointer)&Dictionary_2_make_pair_m2796251664_gshared/* 116*/, (Il2CppMethodPointer)&Dictionary_2_pick_key_m2459065302_gshared/* 117*/, (Il2CppMethodPointer)&Dictionary_2_pick_value_m110055003_gshared/* 118*/, (Il2CppMethodPointer)&Dictionary_2_CopyTo_m602402590_gshared/* 119*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m3520135933_gshared/* 120*/, (Il2CppMethodPointer)&Dictionary_2_Resize_m1514691046_gshared/* 121*/, (Il2CppMethodPointer)&Dictionary_2_Add_m3012675072_gshared/* 122*/, (Il2CppMethodPointer)&Dictionary_2_Clear_m735415786_gshared/* 123*/, (Il2CppMethodPointer)&Dictionary_2_ContainsKey_m2779636752_gshared/* 124*/, (Il2CppMethodPointer)&Dictionary_2_ContainsValue_m1112258460_gshared/* 125*/, (Il2CppMethodPointer)&Dictionary_2_GetObjectData_m3925856015_gshared/* 126*/, (Il2CppMethodPointer)&Dictionary_2_OnDeserialization_m2718680465_gshared/* 127*/, (Il2CppMethodPointer)&Dictionary_2_Remove_m120453767_gshared/* 128*/, (Il2CppMethodPointer)&Dictionary_2_TryGetValue_m1570512094_gshared/* 129*/, (Il2CppMethodPointer)&Dictionary_2_ToTKey_m3001432085_gshared/* 130*/, (Il2CppMethodPointer)&Dictionary_2_ToTValue_m3922411703_gshared/* 131*/, (Il2CppMethodPointer)&Dictionary_2_ContainsKeyValuePair_m1778894115_gshared/* 132*/, (Il2CppMethodPointer)&Dictionary_2_GetEnumerator_m744221790_gshared/* 133*/, (Il2CppMethodPointer)&Dictionary_2_U3CCopyToU3Em__0_m1688958209_gshared/* 134*/, (Il2CppMethodPointer)&ShimEnumerator_get_Entry_m2222535689_gshared/* 135*/, (Il2CppMethodPointer)&ShimEnumerator_get_Key_m3723168551_gshared/* 136*/, (Il2CppMethodPointer)&ShimEnumerator_get_Value_m299816337_gshared/* 137*/, (Il2CppMethodPointer)&ShimEnumerator_get_Current_m466008989_gshared/* 138*/, (Il2CppMethodPointer)&ShimEnumerator__ctor_m2233334988_gshared/* 139*/, (Il2CppMethodPointer)&ShimEnumerator_MoveNext_m920275559_gshared/* 140*/, (Il2CppMethodPointer)&ShimEnumerator_Reset_m2505802806_gshared/* 141*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2496478190_AdjustorThunk/* 142*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3779374343_AdjustorThunk/* 143*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m1987119682_AdjustorThunk/* 144*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2983937311_AdjustorThunk/* 145*/, (Il2CppMethodPointer)&Enumerator_get_Current_m4176976547_AdjustorThunk/* 146*/, (Il2CppMethodPointer)&Enumerator_get_CurrentKey_m186503325_AdjustorThunk/* 147*/, (Il2CppMethodPointer)&Enumerator_get_CurrentValue_m3338745702_AdjustorThunk/* 148*/, (Il2CppMethodPointer)&Enumerator__ctor_m3324182150_AdjustorThunk/* 149*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m127364948_AdjustorThunk/* 150*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1177349169_AdjustorThunk/* 151*/, (Il2CppMethodPointer)&Enumerator_Reset_m3433221214_AdjustorThunk/* 152*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m1996681083_AdjustorThunk/* 153*/, (Il2CppMethodPointer)&Enumerator_VerifyCurrent_m3087992914_AdjustorThunk/* 154*/, (Il2CppMethodPointer)&Enumerator_Dispose_m3981538965_AdjustorThunk/* 155*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_get_IsReadOnly_m3157992222_gshared/* 156*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_get_IsSynchronized_m1634248423_gshared/* 157*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_get_SyncRoot_m1003293719_gshared/* 158*/, (Il2CppMethodPointer)&KeyCollection_get_Count_m2117159956_gshared/* 159*/, (Il2CppMethodPointer)&KeyCollection__ctor_m2492357513_gshared/* 160*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Add_m494496692_gshared/* 161*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Clear_m2692652147_gshared/* 162*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Contains_m3872629850_gshared/* 163*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Remove_m1465794535_gshared/* 164*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_IEnumerableU3CTKeyU3E_GetEnumerator_m1581998780_gshared/* 165*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_CopyTo_m2756696251_gshared/* 166*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_IEnumerable_GetEnumerator_m3639915599_gshared/* 167*/, (Il2CppMethodPointer)&KeyCollection_CopyTo_m3771142613_gshared/* 168*/, (Il2CppMethodPointer)&KeyCollection_GetEnumerator_m1620653010_gshared/* 169*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3308799541_AdjustorThunk/* 170*/, (Il2CppMethodPointer)&Enumerator_get_Current_m2666918164_AdjustorThunk/* 171*/, (Il2CppMethodPointer)&Enumerator__ctor_m1408518527_AdjustorThunk/* 172*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m600113779_AdjustorThunk/* 173*/, (Il2CppMethodPointer)&Enumerator_Dispose_m1410808854_AdjustorThunk/* 174*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m2795814929_AdjustorThunk/* 175*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m2252920151_gshared/* 176*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_IsSynchronized_m702279060_gshared/* 177*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_SyncRoot_m378882773_gshared/* 178*/, (Il2CppMethodPointer)&ValueCollection_get_Count_m1228431254_gshared/* 179*/, (Il2CppMethodPointer)&ValueCollection__ctor_m2589144683_gshared/* 180*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m2719680877_gshared/* 181*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m2231418884_gshared/* 182*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m2788297912_gshared/* 183*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m873703429_gshared/* 184*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m2145854468_gshared/* 185*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_CopyTo_m1736624698_gshared/* 186*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_IEnumerable_GetEnumerator_m867611359_gshared/* 187*/, (Il2CppMethodPointer)&ValueCollection_CopyTo_m2956389258_gshared/* 188*/, (Il2CppMethodPointer)&ValueCollection_GetEnumerator_m3184933048_gshared/* 189*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2285759774_AdjustorThunk/* 190*/, (Il2CppMethodPointer)&Enumerator_get_Current_m1812171614_AdjustorThunk/* 191*/, (Il2CppMethodPointer)&Enumerator__ctor_m274067448_AdjustorThunk/* 192*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2917518155_AdjustorThunk/* 193*/, (Il2CppMethodPointer)&Enumerator_Dispose_m3831882424_AdjustorThunk/* 194*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1216505623_AdjustorThunk/* 195*/, (Il2CppMethodPointer)&Transform_1__ctor_m2432054060_gshared/* 196*/, (Il2CppMethodPointer)&Transform_1_Invoke_m105422582_gshared/* 197*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m2406369028_gshared/* 198*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m3464611542_gshared/* 199*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2134247227_gshared/* 200*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m1226987867_gshared/* 201*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m2229216760_gshared/* 202*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2234888621_gshared/* 203*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m180483247_gshared/* 204*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2785366304_gshared/* 205*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3446749322_gshared/* 206*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m493988598_gshared/* 207*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m3847401727_gshared/* 208*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m3024628867_gshared/* 209*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m232882392_gshared/* 210*/, (Il2CppMethodPointer)&KeyValuePair_2_get_Key_m3616154391_AdjustorThunk/* 211*/, (Il2CppMethodPointer)&KeyValuePair_2_set_Key_m3439756417_AdjustorThunk/* 212*/, (Il2CppMethodPointer)&KeyValuePair_2_get_Value_m1133818727_AdjustorThunk/* 213*/, (Il2CppMethodPointer)&KeyValuePair_2_set_Value_m1577818753_AdjustorThunk/* 214*/, (Il2CppMethodPointer)&KeyValuePair_2__ctor_m2379978259_AdjustorThunk/* 215*/, (Il2CppMethodPointer)&KeyValuePair_2_ToString_m2228374540_AdjustorThunk/* 216*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2691025661_gshared/* 217*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m1632261736_gshared/* 218*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m1734500523_gshared/* 219*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m3758462990_gshared/* 220*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m4268539027_gshared/* 221*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m3911245036_gshared/* 222*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m552502527_gshared/* 223*/, (Il2CppMethodPointer)&List_1_get_Capacity_m477456838_gshared/* 224*/, (Il2CppMethodPointer)&List_1_set_Capacity_m1848905259_gshared/* 225*/, (Il2CppMethodPointer)&List_1_get_Count_m2578084153_gshared/* 226*/, (Il2CppMethodPointer)&List_1_get_Item_m3429602625_gshared/* 227*/, (Il2CppMethodPointer)&List_1_set_Item_m467956411_gshared/* 228*/, (Il2CppMethodPointer)&List_1__ctor_m1050391651_gshared/* 229*/, (Il2CppMethodPointer)&List_1__ctor_m1009086596_gshared/* 230*/, (Il2CppMethodPointer)&List_1__cctor_m857631386_gshared/* 231*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m4277243517_gshared/* 232*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m1072426657_gshared/* 233*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m2633715279_gshared/* 234*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m135794602_gshared/* 235*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m2617140172_gshared/* 236*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m2147252028_gshared/* 237*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m101659838_gshared/* 238*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m3079733979_gshared/* 239*/, (Il2CppMethodPointer)&List_1_Add_m2010010167_gshared/* 240*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m3883258899_gshared/* 241*/, (Il2CppMethodPointer)&List_1_AddCollection_m149925955_gshared/* 242*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m3589431244_gshared/* 243*/, (Il2CppMethodPointer)&List_1_AddRange_m512686440_gshared/* 244*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m3931188076_gshared/* 245*/, (Il2CppMethodPointer)&List_1_Clear_m417446133_gshared/* 246*/, (Il2CppMethodPointer)&List_1_Contains_m3512536564_gshared/* 247*/, (Il2CppMethodPointer)&List_1_CopyTo_m1107046416_gshared/* 248*/, (Il2CppMethodPointer)&List_1_Find_m1570482308_gshared/* 249*/, (Il2CppMethodPointer)&List_1_CheckMatch_m1267174972_gshared/* 250*/, (Il2CppMethodPointer)&List_1_GetIndex_m2142993296_gshared/* 251*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m1890021129_gshared/* 252*/, (Il2CppMethodPointer)&List_1_IndexOf_m4001833717_gshared/* 253*/, (Il2CppMethodPointer)&List_1_Shift_m3434006642_gshared/* 254*/, (Il2CppMethodPointer)&List_1_CheckIndex_m2752144736_gshared/* 255*/, (Il2CppMethodPointer)&List_1_Insert_m3999169406_gshared/* 256*/, (Il2CppMethodPointer)&List_1_CheckCollection_m882901420_gshared/* 257*/, (Il2CppMethodPointer)&List_1_Remove_m3066209805_gshared/* 258*/, (Il2CppMethodPointer)&List_1_RemoveAll_m850523263_gshared/* 259*/, (Il2CppMethodPointer)&List_1_RemoveAt_m1328922483_gshared/* 260*/, (Il2CppMethodPointer)&List_1_Reverse_m1530330158_gshared/* 261*/, (Il2CppMethodPointer)&List_1_Sort_m2255577092_gshared/* 262*/, (Il2CppMethodPointer)&List_1_Sort_m1421787270_gshared/* 263*/, (Il2CppMethodPointer)&List_1_ToArray_m947305826_gshared/* 264*/, (Il2CppMethodPointer)&List_1_TrimExcess_m1464440019_gshared/* 265*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3373950736_AdjustorThunk/* 266*/, (Il2CppMethodPointer)&Enumerator_get_Current_m3151885473_AdjustorThunk/* 267*/, (Il2CppMethodPointer)&Enumerator__ctor_m3938023982_AdjustorThunk/* 268*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m4157184873_AdjustorThunk/* 269*/, (Il2CppMethodPointer)&Enumerator_Dispose_m4255813784_AdjustorThunk/* 270*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m1588355104_AdjustorThunk/* 271*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1527513816_AdjustorThunk/* 272*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3067433935_gshared/* 273*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m2495173517_gshared/* 274*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m2479151167_gshared/* 275*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m3620393055_gshared/* 276*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m912851640_gshared/* 277*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m2450803891_gshared/* 278*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m1245840806_gshared/* 279*/, (Il2CppMethodPointer)&Collection_1_get_Count_m1439557314_gshared/* 280*/, (Il2CppMethodPointer)&Collection_1_get_Item_m429829695_gshared/* 281*/, (Il2CppMethodPointer)&Collection_1_set_Item_m1684325624_gshared/* 282*/, (Il2CppMethodPointer)&Collection_1__ctor_m1376898809_gshared/* 283*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m4194959607_gshared/* 284*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m3543553986_gshared/* 285*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m3409091478_gshared/* 286*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m2280746269_gshared/* 287*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1094330909_gshared/* 288*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m896462526_gshared/* 289*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m2330378506_gshared/* 290*/, (Il2CppMethodPointer)&Collection_1_Add_m3002165671_gshared/* 291*/, (Il2CppMethodPointer)&Collection_1_Clear_m2878609403_gshared/* 292*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m3473629723_gshared/* 293*/, (Il2CppMethodPointer)&Collection_1_Contains_m3222322229_gshared/* 294*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m2403478356_gshared/* 295*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m3758841778_gshared/* 296*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m2694193795_gshared/* 297*/, (Il2CppMethodPointer)&Collection_1_Insert_m425905491_gshared/* 298*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m3442436065_gshared/* 299*/, (Il2CppMethodPointer)&Collection_1_Remove_m1906063519_gshared/* 300*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m2852663586_gshared/* 301*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m547891757_gshared/* 302*/, (Il2CppMethodPointer)&Collection_1_SetItem_m3036962973_gshared/* 303*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m2761956323_gshared/* 304*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m82089564_gshared/* 305*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m977553180_gshared/* 306*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m2538526955_gshared/* 307*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m133605360_gshared/* 308*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1236220829_gshared/* 309*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3734683640_gshared/* 310*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m754207087_gshared/* 311*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m843419588_gshared/* 312*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m1527392327_gshared/* 313*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m1070407257_gshared/* 314*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m4003928181_gshared/* 315*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m2034626354_gshared/* 316*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m887210948_gshared/* 317*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m3511793686_gshared/* 318*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m2761664076_gshared/* 319*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m2740520438_gshared/* 320*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m2219540105_gshared/* 321*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m3329379370_gshared/* 322*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m536877777_gshared/* 323*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m538353563_gshared/* 324*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3581094289_gshared/* 325*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m1078287960_gshared/* 326*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3645908496_gshared/* 327*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m1147413795_gshared/* 328*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m3057404717_gshared/* 329*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m3116032917_gshared/* 330*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m2575796389_gshared/* 331*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m855210743_gshared/* 332*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m120177801_gshared/* 333*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1146004852_gshared/* 334*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m1282511963_gshared/* 335*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m1450973777_gshared/* 336*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m3852247529_gshared/* 337*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m2818673370_gshared/* 338*/, (Il2CppMethodPointer)&CustomAttributeData_UnboxValues_TisRuntimeObject_m135428054_gshared/* 339*/, (Il2CppMethodPointer)&MonoProperty_GetterAdapterFrame_TisRuntimeObject_TisRuntimeObject_m3972492874_gshared/* 340*/, (Il2CppMethodPointer)&MonoProperty_StaticGetterAdapterFrame_TisRuntimeObject_m4065796595_gshared/* 341*/, (Il2CppMethodPointer)&Getter_2__ctor_m419924152_gshared/* 342*/, (Il2CppMethodPointer)&Getter_2_Invoke_m1903644918_gshared/* 343*/, (Il2CppMethodPointer)&Getter_2_BeginInvoke_m2617991787_gshared/* 344*/, (Il2CppMethodPointer)&Getter_2_EndInvoke_m360193471_gshared/* 345*/, (Il2CppMethodPointer)&StaticGetter_1__ctor_m2122384146_gshared/* 346*/, (Il2CppMethodPointer)&StaticGetter_1_Invoke_m1102126299_gshared/* 347*/, (Il2CppMethodPointer)&StaticGetter_1_BeginInvoke_m2600419369_gshared/* 348*/, (Il2CppMethodPointer)&StaticGetter_1_EndInvoke_m2178125383_gshared/* 349*/, (Il2CppMethodPointer)&Activator_CreateInstance_TisRuntimeObject_m806221875_gshared/* 350*/, (Il2CppMethodPointer)&Action_1__ctor_m3440087355_gshared/* 351*/, (Il2CppMethodPointer)&Action_1_Invoke_m311322625_gshared/* 352*/, (Il2CppMethodPointer)&Action_1_BeginInvoke_m3281016298_gshared/* 353*/, (Il2CppMethodPointer)&Action_1_EndInvoke_m3278274667_gshared/* 354*/, (Il2CppMethodPointer)&Comparison_1__ctor_m3785833715_gshared/* 355*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m1029021892_gshared/* 356*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m915033125_gshared/* 357*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m2478010663_gshared/* 358*/, (Il2CppMethodPointer)&Converter_2__ctor_m3059313310_gshared/* 359*/, (Il2CppMethodPointer)&Converter_2_Invoke_m2220022895_gshared/* 360*/, (Il2CppMethodPointer)&Converter_2_BeginInvoke_m3296492155_gshared/* 361*/, (Il2CppMethodPointer)&Converter_2_EndInvoke_m2718104535_gshared/* 362*/, (Il2CppMethodPointer)&Predicate_1__ctor_m3884549188_gshared/* 363*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m3416559410_gshared/* 364*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m121965034_gshared/* 365*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m1249537320_gshared/* 366*/, (Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_get_IsSynchronized_m3756886688_gshared/* 367*/, (Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_get_SyncRoot_m3752710819_gshared/* 368*/, (Il2CppMethodPointer)&Queue_1_get_Count_m1010294281_gshared/* 369*/, (Il2CppMethodPointer)&Queue_1__ctor_m1315711005_gshared/* 370*/, (Il2CppMethodPointer)&Queue_1__ctor_m1520538743_gshared/* 371*/, (Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_CopyTo_m1381238417_gshared/* 372*/, (Il2CppMethodPointer)&Queue_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1323349089_gshared/* 373*/, (Il2CppMethodPointer)&Queue_1_System_Collections_IEnumerable_GetEnumerator_m1575899823_gshared/* 374*/, (Il2CppMethodPointer)&Queue_1_Dequeue_m1949820287_gshared/* 375*/, (Il2CppMethodPointer)&Queue_1_Peek_m3260056443_gshared/* 376*/, (Il2CppMethodPointer)&Queue_1_GetEnumerator_m77213749_gshared/* 377*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m612272632_AdjustorThunk/* 378*/, (Il2CppMethodPointer)&Enumerator_get_Current_m167144786_AdjustorThunk/* 379*/, (Il2CppMethodPointer)&Enumerator__ctor_m2786901343_AdjustorThunk/* 380*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2636486063_AdjustorThunk/* 381*/, (Il2CppMethodPointer)&Enumerator_Dispose_m2147178829_AdjustorThunk/* 382*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1638266641_AdjustorThunk/* 383*/, (Il2CppMethodPointer)&Stack_1_System_Collections_ICollection_get_IsSynchronized_m1539046096_gshared/* 384*/, (Il2CppMethodPointer)&Stack_1_System_Collections_ICollection_get_SyncRoot_m2098097639_gshared/* 385*/, (Il2CppMethodPointer)&Stack_1_get_Count_m3408157211_gshared/* 386*/, (Il2CppMethodPointer)&Stack_1__ctor_m1378959583_gshared/* 387*/, (Il2CppMethodPointer)&Stack_1_System_Collections_ICollection_CopyTo_m1054745582_gshared/* 388*/, (Il2CppMethodPointer)&Stack_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m2149678782_gshared/* 389*/, (Il2CppMethodPointer)&Stack_1_System_Collections_IEnumerable_GetEnumerator_m1363265822_gshared/* 390*/, (Il2CppMethodPointer)&Stack_1_Peek_m3794781229_gshared/* 391*/, (Il2CppMethodPointer)&Stack_1_Pop_m1456191726_gshared/* 392*/, (Il2CppMethodPointer)&Stack_1_Push_m1490794354_gshared/* 393*/, (Il2CppMethodPointer)&Stack_1_GetEnumerator_m3406944153_gshared/* 394*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3732337186_AdjustorThunk/* 395*/, (Il2CppMethodPointer)&Enumerator_get_Current_m1667659980_AdjustorThunk/* 396*/, (Il2CppMethodPointer)&Enumerator__ctor_m4283487163_AdjustorThunk/* 397*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3722345629_AdjustorThunk/* 398*/, (Il2CppMethodPointer)&Enumerator_Dispose_m528683406_AdjustorThunk/* 399*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m3778067395_AdjustorThunk/* 400*/, (Il2CppMethodPointer)&HashSet_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m932326475_gshared/* 401*/, (Il2CppMethodPointer)&HashSet_1_get_Count_m2964592468_gshared/* 402*/, (Il2CppMethodPointer)&HashSet_1__ctor_m3407365539_gshared/* 403*/, (Il2CppMethodPointer)&HashSet_1__ctor_m496292356_gshared/* 404*/, (Il2CppMethodPointer)&HashSet_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m2971716434_gshared/* 405*/, (Il2CppMethodPointer)&HashSet_1_System_Collections_Generic_ICollectionU3CTU3E_CopyTo_m890156821_gshared/* 406*/, (Il2CppMethodPointer)&HashSet_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m233456357_gshared/* 407*/, (Il2CppMethodPointer)&HashSet_1_System_Collections_IEnumerable_GetEnumerator_m290677219_gshared/* 408*/, (Il2CppMethodPointer)&HashSet_1_Init_m3816028331_gshared/* 409*/, (Il2CppMethodPointer)&HashSet_1_InitArrays_m771550293_gshared/* 410*/, (Il2CppMethodPointer)&HashSet_1_SlotsContainsAt_m305119738_gshared/* 411*/, (Il2CppMethodPointer)&HashSet_1_CopyTo_m3865468104_gshared/* 412*/, (Il2CppMethodPointer)&HashSet_1_CopyTo_m2502620744_gshared/* 413*/, (Il2CppMethodPointer)&HashSet_1_Resize_m626962152_gshared/* 414*/, (Il2CppMethodPointer)&HashSet_1_GetLinkHashCode_m3053354261_gshared/* 415*/, (Il2CppMethodPointer)&HashSet_1_GetItemHashCode_m3354044758_gshared/* 416*/, (Il2CppMethodPointer)&HashSet_1_Add_m2029516687_gshared/* 417*/, (Il2CppMethodPointer)&HashSet_1_Clear_m3482708259_gshared/* 418*/, (Il2CppMethodPointer)&HashSet_1_Contains_m3422306564_gshared/* 419*/, (Il2CppMethodPointer)&HashSet_1_Remove_m1054781458_gshared/* 420*/, (Il2CppMethodPointer)&HashSet_1_GetObjectData_m1906512877_gshared/* 421*/, (Il2CppMethodPointer)&HashSet_1_OnDeserialization_m3019229117_gshared/* 422*/, (Il2CppMethodPointer)&HashSet_1_GetEnumerator_m3636174652_gshared/* 423*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m4112336414_AdjustorThunk/* 424*/, (Il2CppMethodPointer)&Enumerator_get_Current_m827635699_AdjustorThunk/* 425*/, (Il2CppMethodPointer)&Enumerator__ctor_m3384875254_AdjustorThunk/* 426*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m133384938_AdjustorThunk/* 427*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1905266032_AdjustorThunk/* 428*/, (Il2CppMethodPointer)&Enumerator_Dispose_m3509624940_AdjustorThunk/* 429*/, (Il2CppMethodPointer)&Enumerator_CheckState_m599655721_AdjustorThunk/* 430*/, (Il2CppMethodPointer)&PrimeHelper__cctor_m1530032506_gshared/* 431*/, (Il2CppMethodPointer)&PrimeHelper_TestPrime_m3010210482_gshared/* 432*/, (Il2CppMethodPointer)&PrimeHelper_CalcPrime_m622727595_gshared/* 433*/, (Il2CppMethodPointer)&PrimeHelper_ToPrime_m3690412876_gshared/* 434*/, (Il2CppMethodPointer)&Enumerable_Any_TisRuntimeObject_m4198608373_gshared/* 435*/, (Il2CppMethodPointer)&Enumerable_ElementAt_TisRuntimeObject_m1929135165_gshared/* 436*/, (Il2CppMethodPointer)&Enumerable_ElementAt_TisRuntimeObject_m2310517236_gshared/* 437*/, (Il2CppMethodPointer)&Enumerable_First_TisRuntimeObject_m3886887804_gshared/* 438*/, (Il2CppMethodPointer)&Enumerable_Where_TisRuntimeObject_m3304874649_gshared/* 439*/, (Il2CppMethodPointer)&Enumerable_CreateWhereIterator_TisRuntimeObject_m3902582581_gshared/* 440*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_Generic_IEnumeratorU3CTSourceU3E_get_Current_m2522591477_gshared/* 441*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_IEnumerator_get_Current_m2506618260_gshared/* 442*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1__ctor_m229492427_gshared/* 443*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_IEnumerable_GetEnumerator_m913688147_gshared/* 444*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_Generic_IEnumerableU3CTSourceU3E_GetEnumerator_m424042336_gshared/* 445*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_MoveNext_m677996141_gshared/* 446*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_Dispose_m3188639800_gshared/* 447*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_Reset_m2752060840_gshared/* 448*/, (Il2CppMethodPointer)&Action_2__ctor_m3544748329_gshared/* 449*/, (Il2CppMethodPointer)&Action_2_Invoke_m2552234505_gshared/* 450*/, (Il2CppMethodPointer)&Action_2_BeginInvoke_m2369053499_gshared/* 451*/, (Il2CppMethodPointer)&Action_2_EndInvoke_m2463206587_gshared/* 452*/, (Il2CppMethodPointer)&Func_2__ctor_m1750628244_gshared/* 453*/, (Il2CppMethodPointer)&Func_2_Invoke_m643249845_gshared/* 454*/, (Il2CppMethodPointer)&Func_2_BeginInvoke_m588850945_gshared/* 455*/, (Il2CppMethodPointer)&Func_2_EndInvoke_m467107774_gshared/* 456*/, (Il2CppMethodPointer)&Func_3__ctor_m1838222199_gshared/* 457*/, (Il2CppMethodPointer)&Func_3_Invoke_m2029885960_gshared/* 458*/, (Il2CppMethodPointer)&Func_3_BeginInvoke_m3358642834_gshared/* 459*/, (Il2CppMethodPointer)&Func_3_EndInvoke_m3268133350_gshared/* 460*/, (Il2CppMethodPointer)&ScriptableObject_CreateInstance_TisRuntimeObject_m3905140222_gshared/* 461*/, (Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m3911438514_gshared/* 462*/, (Il2CppMethodPointer)&Component_GetComponentInChildren_TisRuntimeObject_m3677314132_gshared/* 463*/, (Il2CppMethodPointer)&Component_GetComponentInChildren_TisRuntimeObject_m213871049_gshared/* 464*/, (Il2CppMethodPointer)&Component_GetComponentsInChildren_TisRuntimeObject_m383824618_gshared/* 465*/, (Il2CppMethodPointer)&Component_GetComponentsInChildren_TisRuntimeObject_m2622688794_gshared/* 466*/, (Il2CppMethodPointer)&Component_GetComponentInParent_TisRuntimeObject_m1122972099_gshared/* 467*/, (Il2CppMethodPointer)&Component_GetComponentsInParent_TisRuntimeObject_m1857724459_gshared/* 468*/, (Il2CppMethodPointer)&Component_GetComponents_TisRuntimeObject_m3116428220_gshared/* 469*/, (Il2CppMethodPointer)&Component_GetComponents_TisRuntimeObject_m882198082_gshared/* 470*/, (Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2623187931_gshared/* 471*/, (Il2CppMethodPointer)&GameObject_GetComponentInChildren_TisRuntimeObject_m3964687670_gshared/* 472*/, (Il2CppMethodPointer)&GameObject_GetComponentInChildren_TisRuntimeObject_m1303988628_gshared/* 473*/, (Il2CppMethodPointer)&GameObject_GetComponents_TisRuntimeObject_m200632572_gshared/* 474*/, (Il2CppMethodPointer)&GameObject_GetComponents_TisRuntimeObject_m3031919194_gshared/* 475*/, (Il2CppMethodPointer)&GameObject_GetComponentsInChildren_TisRuntimeObject_m550503383_gshared/* 476*/, (Il2CppMethodPointer)&GameObject_GetComponentsInChildren_TisRuntimeObject_m834439109_gshared/* 477*/, (Il2CppMethodPointer)&GameObject_GetComponentsInChildren_TisRuntimeObject_m981462682_gshared/* 478*/, (Il2CppMethodPointer)&GameObject_GetComponentsInParent_TisRuntimeObject_m312122771_gshared/* 479*/, (Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m1936832001_gshared/* 480*/, (Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisRuntimeObject_m30292444_gshared/* 481*/, (Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisRuntimeObject_m521155822_gshared/* 482*/, (Il2CppMethodPointer)&Mesh_SafeLength_TisRuntimeObject_m23144414_gshared/* 483*/, (Il2CppMethodPointer)&Mesh_SetArrayForChannel_TisRuntimeObject_m3414184877_gshared/* 484*/, (Il2CppMethodPointer)&Mesh_SetListForChannel_TisRuntimeObject_m2219216180_gshared/* 485*/, (Il2CppMethodPointer)&Mesh_SetListForChannel_TisRuntimeObject_m1091554221_gshared/* 486*/, (Il2CppMethodPointer)&Mesh_SetUvsImpl_TisRuntimeObject_m3795827252_gshared/* 487*/, (Il2CppMethodPointer)&Resources_GetBuiltinResource_TisRuntimeObject_m1258805920_gshared/* 488*/, (Il2CppMethodPointer)&Object_Instantiate_TisRuntimeObject_m2529452318_gshared/* 489*/, (Il2CppMethodPointer)&Object_Instantiate_TisRuntimeObject_m3137538187_gshared/* 490*/, (Il2CppMethodPointer)&PlayableHandle_IsPlayableOfType_TisRuntimeObject_m1482431189_AdjustorThunk/* 491*/, (Il2CppMethodPointer)&AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m2284308923_gshared/* 492*/, (Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisRuntimeObject_m1513315670_gshared/* 493*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m1399418579_gshared/* 494*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m3675005126_gshared/* 495*/, (Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m214925300_gshared/* 496*/, (Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m1732743910_gshared/* 497*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m3497402695_gshared/* 498*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m3780078352_gshared/* 499*/, (Il2CppMethodPointer)&InvokableCall_1_Find_m3855095711_gshared/* 500*/, (Il2CppMethodPointer)&InvokableCall_2__ctor_m2980086722_gshared/* 501*/, (Il2CppMethodPointer)&InvokableCall_2_Invoke_m3880183626_gshared/* 502*/, (Il2CppMethodPointer)&InvokableCall_2_Find_m4184885066_gshared/* 503*/, (Il2CppMethodPointer)&InvokableCall_3__ctor_m51380105_gshared/* 504*/, (Il2CppMethodPointer)&InvokableCall_3_Invoke_m4178052795_gshared/* 505*/, (Il2CppMethodPointer)&InvokableCall_3_Find_m2951247658_gshared/* 506*/, (Il2CppMethodPointer)&InvokableCall_4__ctor_m2928080066_gshared/* 507*/, (Il2CppMethodPointer)&InvokableCall_4_Invoke_m1364529709_gshared/* 508*/, (Il2CppMethodPointer)&InvokableCall_4_Find_m3126866019_gshared/* 509*/, (Il2CppMethodPointer)&CachedInvokableCall_1__ctor_m121495989_gshared/* 510*/, (Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m2061631442_gshared/* 511*/, (Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m2182990583_gshared/* 512*/, (Il2CppMethodPointer)&UnityAction_1__ctor_m2126082808_gshared/* 513*/, (Il2CppMethodPointer)&UnityAction_1_Invoke_m3644766083_gshared/* 514*/, (Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m3223624649_gshared/* 515*/, (Il2CppMethodPointer)&UnityAction_1_EndInvoke_m65894640_gshared/* 516*/, (Il2CppMethodPointer)&UnityEvent_1__ctor_m2855279480_gshared/* 517*/, (Il2CppMethodPointer)&UnityEvent_1_AddListener_m1647046786_gshared/* 518*/, (Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m2702756690_gshared/* 519*/, (Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m2142463460_gshared/* 520*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m1984546387_gshared/* 521*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m1514210201_gshared/* 522*/, (Il2CppMethodPointer)&UnityEvent_1_Invoke_m2945776058_gshared/* 523*/, (Il2CppMethodPointer)&UnityAction_2__ctor_m3325273233_gshared/* 524*/, (Il2CppMethodPointer)&UnityAction_2_Invoke_m4024552531_gshared/* 525*/, (Il2CppMethodPointer)&UnityAction_2_BeginInvoke_m2840674252_gshared/* 526*/, (Il2CppMethodPointer)&UnityAction_2_EndInvoke_m6160853_gshared/* 527*/, (Il2CppMethodPointer)&UnityEvent_2__ctor_m3803756136_gshared/* 528*/, (Il2CppMethodPointer)&UnityEvent_2_FindMethod_Impl_m3354524215_gshared/* 529*/, (Il2CppMethodPointer)&UnityEvent_2_GetDelegate_m3807668201_gshared/* 530*/, (Il2CppMethodPointer)&UnityAction_3__ctor_m1740681241_gshared/* 531*/, (Il2CppMethodPointer)&UnityAction_3_Invoke_m1337776202_gshared/* 532*/, (Il2CppMethodPointer)&UnityAction_3_BeginInvoke_m1839123188_gshared/* 533*/, (Il2CppMethodPointer)&UnityAction_3_EndInvoke_m2366393261_gshared/* 534*/, (Il2CppMethodPointer)&UnityEvent_3__ctor_m3929043880_gshared/* 535*/, (Il2CppMethodPointer)&UnityEvent_3_FindMethod_Impl_m177743803_gshared/* 536*/, (Il2CppMethodPointer)&UnityEvent_3_GetDelegate_m211316539_gshared/* 537*/, (Il2CppMethodPointer)&UnityAction_4__ctor_m182154702_gshared/* 538*/, (Il2CppMethodPointer)&UnityAction_4_Invoke_m3626668293_gshared/* 539*/, (Il2CppMethodPointer)&UnityAction_4_BeginInvoke_m2320576894_gshared/* 540*/, (Il2CppMethodPointer)&UnityAction_4_EndInvoke_m703135933_gshared/* 541*/, (Il2CppMethodPointer)&UnityEvent_4__ctor_m473803078_gshared/* 542*/, (Il2CppMethodPointer)&UnityEvent_4_FindMethod_Impl_m2141028291_gshared/* 543*/, (Il2CppMethodPointer)&UnityEvent_4_GetDelegate_m4249785950_gshared/* 544*/, (Il2CppMethodPointer)&ExecuteEvents_ValidateEventData_TisRuntimeObject_m2692109954_gshared/* 545*/, (Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m1195791612_gshared/* 546*/, (Il2CppMethodPointer)&ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m2007576797_gshared/* 547*/, (Il2CppMethodPointer)&ExecuteEvents_ShouldSendToComponent_TisRuntimeObject_m3349623293_gshared/* 548*/, (Il2CppMethodPointer)&ExecuteEvents_GetEventList_TisRuntimeObject_m183275163_gshared/* 549*/, (Il2CppMethodPointer)&ExecuteEvents_CanHandleEvent_TisRuntimeObject_m2833515883_gshared/* 550*/, (Il2CppMethodPointer)&ExecuteEvents_GetEventHandler_TisRuntimeObject_m375711041_gshared/* 551*/, (Il2CppMethodPointer)&EventFunction_1__ctor_m3207717260_gshared/* 552*/, (Il2CppMethodPointer)&EventFunction_1_Invoke_m844862080_gshared/* 553*/, (Il2CppMethodPointer)&EventFunction_1_BeginInvoke_m1553983874_gshared/* 554*/, (Il2CppMethodPointer)&EventFunction_1_EndInvoke_m3570692597_gshared/* 555*/, (Il2CppMethodPointer)&Dropdown_GetOrAddComponent_TisRuntimeObject_m2648300723_gshared/* 556*/, (Il2CppMethodPointer)&SetPropertyUtility_SetClass_TisRuntimeObject_m3506358140_gshared/* 557*/, (Il2CppMethodPointer)&LayoutGroup_SetProperty_TisRuntimeObject_m813420649_gshared/* 558*/, (Il2CppMethodPointer)&IndexedSet_1_get_Count_m3510019948_gshared/* 559*/, (Il2CppMethodPointer)&IndexedSet_1_get_IsReadOnly_m1011840144_gshared/* 560*/, (Il2CppMethodPointer)&IndexedSet_1_get_Item_m3243149242_gshared/* 561*/, (Il2CppMethodPointer)&IndexedSet_1_set_Item_m3375988439_gshared/* 562*/, (Il2CppMethodPointer)&IndexedSet_1__ctor_m3212275535_gshared/* 563*/, (Il2CppMethodPointer)&IndexedSet_1_Add_m3958875218_gshared/* 564*/, (Il2CppMethodPointer)&IndexedSet_1_AddUnique_m3388388319_gshared/* 565*/, (Il2CppMethodPointer)&IndexedSet_1_Remove_m1749165782_gshared/* 566*/, (Il2CppMethodPointer)&IndexedSet_1_GetEnumerator_m4027201741_gshared/* 567*/, (Il2CppMethodPointer)&IndexedSet_1_System_Collections_IEnumerable_GetEnumerator_m2799238754_gshared/* 568*/, (Il2CppMethodPointer)&IndexedSet_1_Clear_m451795416_gshared/* 569*/, (Il2CppMethodPointer)&IndexedSet_1_Contains_m695402695_gshared/* 570*/, (Il2CppMethodPointer)&IndexedSet_1_CopyTo_m345797441_gshared/* 571*/, (Il2CppMethodPointer)&IndexedSet_1_IndexOf_m1548095776_gshared/* 572*/, (Il2CppMethodPointer)&IndexedSet_1_Insert_m2525240425_gshared/* 573*/, (Il2CppMethodPointer)&IndexedSet_1_RemoveAt_m702723071_gshared/* 574*/, (Il2CppMethodPointer)&IndexedSet_1_RemoveAll_m2119606941_gshared/* 575*/, (Il2CppMethodPointer)&IndexedSet_1_Sort_m1054890392_gshared/* 576*/, (Il2CppMethodPointer)&ListPool_1_Get_m2716078124_gshared/* 577*/, (Il2CppMethodPointer)&ListPool_1_Release_m480042757_gshared/* 578*/, (Il2CppMethodPointer)&ListPool_1__cctor_m2754104963_gshared/* 579*/, (Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m1708627665_gshared/* 580*/, (Il2CppMethodPointer)&ObjectPool_1_get_countAll_m182155429_gshared/* 581*/, (Il2CppMethodPointer)&ObjectPool_1_set_countAll_m3784122210_gshared/* 582*/, (Il2CppMethodPointer)&ObjectPool_1_get_countActive_m4201190489_gshared/* 583*/, (Il2CppMethodPointer)&ObjectPool_1_get_countInactive_m944127356_gshared/* 584*/, (Il2CppMethodPointer)&ObjectPool_1__ctor_m1224093248_gshared/* 585*/, (Il2CppMethodPointer)&ObjectPool_1_Get_m2003462831_gshared/* 586*/, (Il2CppMethodPointer)&ObjectPool_1_Release_m1651503565_gshared/* 587*/, (Il2CppMethodPointer)&JSONLazyCreator_Set_TisRuntimeObject_m1142734845_gshared/* 588*/, (Il2CppMethodPointer)&DragMe_FindInParents_TisRuntimeObject_m2778210754_gshared/* 589*/, (Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m2128067185_gshared/* 590*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m882894867_gshared/* 591*/, (Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m2254601784_gshared/* 592*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m718679363_gshared/* 593*/, (Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m4258129175_gshared/* 594*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m1951767835_gshared/* 595*/, (Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m4045542878_gshared/* 596*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m2013878526_gshared/* 597*/, (Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m3528377140_gshared/* 598*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m619894016_gshared/* 599*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m1044343494_gshared/* 600*/, (Il2CppMethodPointer)&Dictionary_2_Add_m139753235_gshared/* 601*/, (Il2CppMethodPointer)&Dictionary_2_TryGetValue_m4007148950_gshared/* 602*/, (Il2CppMethodPointer)&GenericComparer_1__ctor_m786446731_gshared/* 603*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m4161447419_gshared/* 604*/, (Il2CppMethodPointer)&GenericComparer_1__ctor_m463544340_gshared/* 605*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m1964679576_gshared/* 606*/, (Il2CppMethodPointer)&Nullable_1__ctor_m761154185_AdjustorThunk/* 607*/, (Il2CppMethodPointer)&Nullable_1_get_HasValue_m3184086096_AdjustorThunk/* 608*/, (Il2CppMethodPointer)&Nullable_1_get_Value_m520687914_AdjustorThunk/* 609*/, (Il2CppMethodPointer)&GenericComparer_1__ctor_m4148046422_gshared/* 610*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m3705102400_gshared/* 611*/, (Il2CppMethodPointer)&CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t3886750721_m3671563852_gshared/* 612*/, (Il2CppMethodPointer)&Array_AsReadOnly_TisCustomAttributeTypedArgument_t3886750721_m357286841_gshared/* 613*/, (Il2CppMethodPointer)&CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t2457599825_m2685380802_gshared/* 614*/, (Il2CppMethodPointer)&Array_AsReadOnly_TisCustomAttributeNamedArgument_t2457599825_m3278017012_gshared/* 615*/, (Il2CppMethodPointer)&GenericComparer_1__ctor_m4053634897_gshared/* 616*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m143310818_gshared/* 617*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m3770216999_gshared/* 618*/, (Il2CppMethodPointer)&Dictionary_2_Add_m3192830802_gshared/* 619*/, (Il2CppMethodPointer)&Array_BinarySearch_TisInt32_t4167366966_m2054927821_gshared/* 620*/, (Il2CppMethodPointer)&Dictionary_2_TryGetValue_m5539851_gshared/* 621*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m1148323402_gshared/* 622*/, (Il2CppMethodPointer)&CachedInvokableCall_1__ctor_m1362223084_gshared/* 623*/, (Il2CppMethodPointer)&CachedInvokableCall_1__ctor_m56745344_gshared/* 624*/, (Il2CppMethodPointer)&CachedInvokableCall_1__ctor_m1848156342_gshared/* 625*/, (Il2CppMethodPointer)&Mesh_SafeLength_TisInt32_t4167366966_m3578136558_gshared/* 626*/, (Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector3_t298406706_m4238274547_gshared/* 627*/, (Il2CppMethodPointer)&Mesh_SetArrayForChannel_TisVector3_t298406706_m4086366530_gshared/* 628*/, (Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector4_t2979484471_m1561167087_gshared/* 629*/, (Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector2_t524314224_m2791133860_gshared/* 630*/, (Il2CppMethodPointer)&Mesh_SetArrayForChannel_TisVector2_t524314224_m2029196376_gshared/* 631*/, (Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisColor32_t2751477055_m1188676107_gshared/* 632*/, (Il2CppMethodPointer)&Mesh_SetListForChannel_TisVector3_t298406706_m1697917516_gshared/* 633*/, (Il2CppMethodPointer)&Mesh_SetListForChannel_TisVector4_t2979484471_m3114307207_gshared/* 634*/, (Il2CppMethodPointer)&Mesh_SetListForChannel_TisColor32_t2751477055_m854653016_gshared/* 635*/, (Il2CppMethodPointer)&Mesh_SetUvsImpl_TisVector2_t524314224_m2112189020_gshared/* 636*/, (Il2CppMethodPointer)&List_1__ctor_m2102348400_gshared/* 637*/, (Il2CppMethodPointer)&List_1_Add_m996052063_gshared/* 638*/, (Il2CppMethodPointer)&UnityEvent_1_Invoke_m980174627_gshared/* 639*/, (Il2CppMethodPointer)&Func_2__ctor_m304659289_gshared/* 640*/, (Il2CppMethodPointer)&UnityEvent_1__ctor_m44327589_gshared/* 641*/, (Il2CppMethodPointer)&UnityAction_2_Invoke_m2443720087_gshared/* 642*/, (Il2CppMethodPointer)&UnityAction_1_Invoke_m1154995372_gshared/* 643*/, (Il2CppMethodPointer)&UnityAction_2_Invoke_m520086341_gshared/* 644*/, (Il2CppMethodPointer)&Queue_1__ctor_m2629644020_gshared/* 645*/, (Il2CppMethodPointer)&Queue_1_Dequeue_m4205589848_gshared/* 646*/, (Il2CppMethodPointer)&Queue_1_get_Count_m545828861_gshared/* 647*/, (Il2CppMethodPointer)&List_1__ctor_m3160508110_gshared/* 648*/, (Il2CppMethodPointer)&List_1__ctor_m2677308577_gshared/* 649*/, (Il2CppMethodPointer)&List_1__ctor_m1793659374_gshared/* 650*/, (Il2CppMethodPointer)&PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_t320595731_m2335301355_AdjustorThunk/* 651*/, (Il2CppMethodPointer)&PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t3739674446_m1177349756_AdjustorThunk/* 652*/, (Il2CppMethodPointer)&PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_t4189659927_m1653780724_AdjustorThunk/* 653*/, (Il2CppMethodPointer)&Action_2_Invoke_m4269707513_gshared/* 654*/, (Il2CppMethodPointer)&Action_1_Invoke_m1260265150_gshared/* 655*/, (Il2CppMethodPointer)&Action_2__ctor_m371134203_gshared/* 656*/, (Il2CppMethodPointer)&Dictionary_2_TryGetValue_m2867451530_gshared/* 657*/, (Il2CppMethodPointer)&Dictionary_2_set_Item_m446796511_gshared/* 658*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m203116983_gshared/* 659*/, (Il2CppMethodPointer)&Func_3_Invoke_m3956961358_gshared/* 660*/, (Il2CppMethodPointer)&Func_2_Invoke_m1103204028_gshared/* 661*/, (Il2CppMethodPointer)&List_1__ctor_m3189641231_gshared/* 662*/, (Il2CppMethodPointer)&List_1_get_Item_m318301083_gshared/* 663*/, (Il2CppMethodPointer)&List_1_get_Count_m3704073514_gshared/* 664*/, (Il2CppMethodPointer)&List_1_Clear_m2343285148_gshared/* 665*/, (Il2CppMethodPointer)&List_1_Sort_m3983681507_gshared/* 666*/, (Il2CppMethodPointer)&Comparison_1__ctor_m839404374_gshared/* 667*/, (Il2CppMethodPointer)&List_1_Add_m3998968448_gshared/* 668*/, (Il2CppMethodPointer)&Comparison_1__ctor_m3946937666_gshared/* 669*/, (Il2CppMethodPointer)&Array_Sort_TisRaycastHit_t1187910868_m969961653_gshared/* 670*/, (Il2CppMethodPointer)&Dictionary_2_Add_m1032177729_gshared/* 671*/, (Il2CppMethodPointer)&Dictionary_2_Remove_m2116338307_gshared/* 672*/, (Il2CppMethodPointer)&Dictionary_2_get_Values_m2660935657_gshared/* 673*/, (Il2CppMethodPointer)&ValueCollection_GetEnumerator_m467226975_gshared/* 674*/, (Il2CppMethodPointer)&Enumerator_get_Current_m59367935_AdjustorThunk/* 675*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m4250006211_AdjustorThunk/* 676*/, (Il2CppMethodPointer)&Enumerator_Dispose_m3629451996_AdjustorThunk/* 677*/, (Il2CppMethodPointer)&Dictionary_2_Clear_m3607329374_gshared/* 678*/, (Il2CppMethodPointer)&Dictionary_2_GetEnumerator_m336407494_gshared/* 679*/, (Il2CppMethodPointer)&Enumerator_get_Current_m1153027106_AdjustorThunk/* 680*/, (Il2CppMethodPointer)&KeyValuePair_2_get_Value_m3431978132_AdjustorThunk/* 681*/, (Il2CppMethodPointer)&KeyValuePair_2_get_Key_m1312675473_AdjustorThunk/* 682*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m372188218_AdjustorThunk/* 683*/, (Il2CppMethodPointer)&Enumerator_Dispose_m2658583404_AdjustorThunk/* 684*/, (Il2CppMethodPointer)&KeyValuePair_2_ToString_m171262776_AdjustorThunk/* 685*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisAspectMode_t951188678_m4079134829_gshared/* 686*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisSingle_t2195714798_m775961307_gshared/* 687*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisFitMode_t2058464158_m783440714_gshared/* 688*/, (Il2CppMethodPointer)&UnityEvent_1_Invoke_m2955462519_gshared/* 689*/, (Il2CppMethodPointer)&UnityEvent_1_AddListener_m868896826_gshared/* 690*/, (Il2CppMethodPointer)&UnityEvent_1__ctor_m4197236747_gshared/* 691*/, (Il2CppMethodPointer)&UnityEvent_1_Invoke_m3136789473_gshared/* 692*/, (Il2CppMethodPointer)&UnityEvent_1_AddListener_m1077547778_gshared/* 693*/, (Il2CppMethodPointer)&UnityEvent_1__ctor_m2695294233_gshared/* 694*/, (Il2CppMethodPointer)&TweenRunner_1__ctor_m2159360697_gshared/* 695*/, (Il2CppMethodPointer)&TweenRunner_1_Init_m3440776157_gshared/* 696*/, (Il2CppMethodPointer)&UnityAction_1__ctor_m1441173728_gshared/* 697*/, (Il2CppMethodPointer)&UnityEvent_1_AddListener_m1917460257_gshared/* 698*/, (Il2CppMethodPointer)&UnityAction_1__ctor_m4156950658_gshared/* 699*/, (Il2CppMethodPointer)&TweenRunner_1_StartTween_m1277416251_gshared/* 700*/, (Il2CppMethodPointer)&TweenRunner_1__ctor_m3547774147_gshared/* 701*/, (Il2CppMethodPointer)&TweenRunner_1_Init_m3685604772_gshared/* 702*/, (Il2CppMethodPointer)&TweenRunner_1_StopTween_m4020807896_gshared/* 703*/, (Il2CppMethodPointer)&UnityAction_1__ctor_m4211782467_gshared/* 704*/, (Il2CppMethodPointer)&TweenRunner_1_StartTween_m1329285191_gshared/* 705*/, (Il2CppMethodPointer)&LayoutGroup_SetProperty_TisCorner_t2850903084_m3424038417_gshared/* 706*/, (Il2CppMethodPointer)&LayoutGroup_SetProperty_TisAxis_t2922767740_m3210776553_gshared/* 707*/, (Il2CppMethodPointer)&LayoutGroup_SetProperty_TisVector2_t524314224_m574672978_gshared/* 708*/, (Il2CppMethodPointer)&LayoutGroup_SetProperty_TisConstraint_t1569595837_m286205184_gshared/* 709*/, (Il2CppMethodPointer)&LayoutGroup_SetProperty_TisInt32_t4167366966_m1297098443_gshared/* 710*/, (Il2CppMethodPointer)&LayoutGroup_SetProperty_TisSingle_t2195714798_m4200697781_gshared/* 711*/, (Il2CppMethodPointer)&LayoutGroup_SetProperty_TisBoolean_t4021514083_m123151588_gshared/* 712*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisType_t3815042632_m1552100398_gshared/* 713*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisBoolean_t4021514083_m3978484072_gshared/* 714*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisFillMethod_t1221938191_m169314664_gshared/* 715*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisInt32_t4167366966_m845536444_gshared/* 716*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisContentType_t4244931986_m1984637216_gshared/* 717*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisLineType_t3109191858_m1453271124_gshared/* 718*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisInputType_t1324044641_m3940799413_gshared/* 719*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisTouchScreenKeyboardType_t3568928621_m1436572660_gshared/* 720*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisCharacterValidation_t1183248476_m2943001579_gshared/* 721*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisChar_t4197180777_m1934740893_gshared/* 722*/, (Il2CppMethodPointer)&LayoutGroup_SetProperty_TisTextAnchor_t3760248182_m1432069665_gshared/* 723*/, (Il2CppMethodPointer)&Func_2__ctor_m2010220105_gshared/* 724*/, (Il2CppMethodPointer)&Func_2_Invoke_m3452871365_gshared/* 725*/, (Il2CppMethodPointer)&UnityEvent_1_Invoke_m1369333103_gshared/* 726*/, (Il2CppMethodPointer)&UnityEvent_1__ctor_m1629106407_gshared/* 727*/, (Il2CppMethodPointer)&ListPool_1_Get_m1640687839_gshared/* 728*/, (Il2CppMethodPointer)&List_1_get_Count_m1738117266_gshared/* 729*/, (Il2CppMethodPointer)&List_1_get_Capacity_m1379969350_gshared/* 730*/, (Il2CppMethodPointer)&List_1_set_Capacity_m3730606979_gshared/* 731*/, (Il2CppMethodPointer)&ListPool_1_Release_m1375022592_gshared/* 732*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisDirection_t2639783532_m3074622628_gshared/* 733*/, (Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m1209587995_gshared/* 734*/, (Il2CppMethodPointer)&UnityEvent_1_Invoke_m1615022310_gshared/* 735*/, (Il2CppMethodPointer)&UnityEvent_1__ctor_m1701369400_gshared/* 736*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisNavigation_t2995866575_m501864514_gshared/* 737*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisTransition_t1673715936_m4121454238_gshared/* 738*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisColorBlock_t1308791080_m1516733110_gshared/* 739*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisSpriteState_t480832711_m2824386568_gshared/* 740*/, (Il2CppMethodPointer)&List_1_get_Item_m1681326719_gshared/* 741*/, (Il2CppMethodPointer)&List_1_Add_m3617587075_gshared/* 742*/, (Il2CppMethodPointer)&List_1_set_Item_m3286577148_gshared/* 743*/, (Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisDirection_t532465023_m3453151692_gshared/* 744*/, (Il2CppMethodPointer)&ListPool_1_Get_m2134867389_gshared/* 745*/, (Il2CppMethodPointer)&ListPool_1_Get_m3974720867_gshared/* 746*/, (Il2CppMethodPointer)&ListPool_1_Get_m895273276_gshared/* 747*/, (Il2CppMethodPointer)&ListPool_1_Get_m437256342_gshared/* 748*/, (Il2CppMethodPointer)&ListPool_1_Get_m28702544_gshared/* 749*/, (Il2CppMethodPointer)&List_1_AddRange_m1322589985_gshared/* 750*/, (Il2CppMethodPointer)&List_1_AddRange_m3551702064_gshared/* 751*/, (Il2CppMethodPointer)&List_1_AddRange_m2540016062_gshared/* 752*/, (Il2CppMethodPointer)&List_1_AddRange_m38132872_gshared/* 753*/, (Il2CppMethodPointer)&List_1_AddRange_m869230131_gshared/* 754*/, (Il2CppMethodPointer)&List_1_Clear_m1176347092_gshared/* 755*/, (Il2CppMethodPointer)&List_1_Clear_m1849808068_gshared/* 756*/, (Il2CppMethodPointer)&List_1_Clear_m1460450211_gshared/* 757*/, (Il2CppMethodPointer)&List_1_Clear_m3411001434_gshared/* 758*/, (Il2CppMethodPointer)&List_1_Clear_m3101899268_gshared/* 759*/, (Il2CppMethodPointer)&List_1_get_Count_m3130412464_gshared/* 760*/, (Il2CppMethodPointer)&List_1_get_Count_m65032495_gshared/* 761*/, (Il2CppMethodPointer)&List_1_get_Item_m2540237484_gshared/* 762*/, (Il2CppMethodPointer)&List_1_get_Item_m1066348555_gshared/* 763*/, (Il2CppMethodPointer)&List_1_get_Item_m2760508249_gshared/* 764*/, (Il2CppMethodPointer)&List_1_get_Item_m2341429240_gshared/* 765*/, (Il2CppMethodPointer)&List_1_set_Item_m1155406533_gshared/* 766*/, (Il2CppMethodPointer)&List_1_set_Item_m1129357134_gshared/* 767*/, (Il2CppMethodPointer)&List_1_set_Item_m965210213_gshared/* 768*/, (Il2CppMethodPointer)&List_1_set_Item_m2642958258_gshared/* 769*/, (Il2CppMethodPointer)&ListPool_1_Release_m3347270737_gshared/* 770*/, (Il2CppMethodPointer)&ListPool_1_Release_m3155447159_gshared/* 771*/, (Il2CppMethodPointer)&ListPool_1_Release_m1647594459_gshared/* 772*/, (Il2CppMethodPointer)&ListPool_1_Release_m3090018896_gshared/* 773*/, (Il2CppMethodPointer)&ListPool_1_Release_m1936830020_gshared/* 774*/, (Il2CppMethodPointer)&List_1_Add_m1671420930_gshared/* 775*/, (Il2CppMethodPointer)&List_1_Add_m2292730652_gshared/* 776*/, (Il2CppMethodPointer)&List_1_Add_m973719390_gshared/* 777*/, (Il2CppMethodPointer)&List_1_Add_m1870400422_gshared/* 778*/, (Il2CppMethodPointer)&Enumerable_ElementAt_TisKeyValuePair_2_t3838208718_m3515065688_gshared/* 779*/, (Il2CppMethodPointer)&Func_2__ctor_m3958147523_gshared/* 780*/, (Il2CppMethodPointer)&Enumerable_Where_TisKeyValuePair_2_t3838208718_m3483801365_gshared/* 781*/, (Il2CppMethodPointer)&Enumerable_First_TisKeyValuePair_2_t3838208718_m3761269173_gshared/* 782*/, (Il2CppMethodPointer)&Dictionary_2_get_Item_m2218474045_gshared/* 783*/, (Il2CppMethodPointer)&List_1__ctor_m3312630909_gshared/* 784*/, (Il2CppMethodPointer)&List_1_Clear_m79520251_gshared/* 785*/, (Il2CppMethodPointer)&List_1_Add_m3722182463_gshared/* 786*/, (Il2CppMethodPointer)&List_1_get_Item_m3809990321_gshared/* 787*/, (Il2CppMethodPointer)&List_1_get_Count_m1195256785_gshared/* 788*/, (Il2CppMethodPointer)&List_1_set_Item_m1783050219_gshared/* 789*/, (Il2CppMethodPointer)&List_1_RemoveAt_m621558353_gshared/* 790*/, (Il2CppMethodPointer)&Array_get_swapper_TisLevelManagerList_t2308881597_m1217505319_gshared/* 791*/, (Il2CppMethodPointer)&Array_get_swapper_TisInt32_t4167366966_m2419671408_gshared/* 792*/, (Il2CppMethodPointer)&Array_get_swapper_TisCustomAttributeNamedArgument_t2457599825_m1450040702_gshared/* 793*/, (Il2CppMethodPointer)&Array_get_swapper_TisCustomAttributeTypedArgument_t3886750721_m1458420812_gshared/* 794*/, (Il2CppMethodPointer)&Array_get_swapper_TisColor32_t2751477055_m2555577594_gshared/* 795*/, (Il2CppMethodPointer)&Array_get_swapper_TisRaycastResult_t2422751240_m1178035085_gshared/* 796*/, (Il2CppMethodPointer)&Array_get_swapper_TisUICharInfo_t1969298608_m4037761048_gshared/* 797*/, (Il2CppMethodPointer)&Array_get_swapper_TisUILineInfo_t335496833_m2775264060_gshared/* 798*/, (Il2CppMethodPointer)&Array_get_swapper_TisUIVertex_t1250770280_m2037419490_gshared/* 799*/, (Il2CppMethodPointer)&Array_get_swapper_TisVector2_t524314224_m943727961_gshared/* 800*/, (Il2CppMethodPointer)&Array_get_swapper_TisVector3_t298406706_m1473526098_gshared/* 801*/, (Il2CppMethodPointer)&Array_get_swapper_TisVector4_t2979484471_m41529317_gshared/* 802*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisBenutzerPW_t3993975976_m1398484745_gshared/* 803*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisLevelManagerList_t2308881597_m1881868223_gshared/* 804*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisModels_t93544135_m3186343124_gshared/* 805*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisTableRange_t2273327377_m921675880_gshared/* 806*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisClientCertificateType_t2322709846_m979588985_gshared/* 807*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisBoolean_t4021514083_m991923502_gshared/* 808*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisByte_t2712847921_m4132781172_gshared/* 809*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisChar_t4197180777_m4134415232_gshared/* 810*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t1489291961_m3228980187_gshared/* 811*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisLink_t1298993810_m2071535975_gshared/* 812*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4266255930_m4020969876_gshared/* 813*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2117714080_m191679270_gshared/* 814*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1159377151_m3710116558_gshared/* 815*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1305230034_m2861546587_gshared/* 816*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3838208718_m1849496545_gshared/* 817*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisLink_t871362263_m1879441506_gshared/* 818*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisSlot_t646771150_m1335067453_gshared/* 819*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisSlot_t1619562839_m2484168669_gshared/* 820*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisDateTime_t2547387390_m623344042_gshared/* 821*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisDecimal_t3966699860_m3588127643_gshared/* 822*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisDouble_t339827693_m1370426531_gshared/* 823*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisInt16_t3856708424_m1213833830_gshared/* 824*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisInt32_t4167366966_m2673978540_gshared/* 825*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisInt64_t2408544963_m2538937348_gshared/* 826*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisIntPtr_t_m707320967_gshared/* 827*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t2457599825_m2230235891_gshared/* 828*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t3886750721_m2404127491_gshared/* 829*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisLabelData_t1310448249_m249635465_gshared/* 830*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisLabelFixup_t2905765948_m1517918608_gshared/* 831*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisILTokenInfo_t2153999167_m4165172933_gshared/* 832*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisMonoResource_t119149808_m1944325407_gshared/* 833*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisMonoWin32Resource_t206024608_m2666763913_gshared/* 834*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisRefEmitPermissionSet_t715845335_m2515392462_gshared/* 835*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisParameterModifier_t376389310_m2736109492_gshared/* 836*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisResourceCacheItem_t1320965396_m4089592460_gshared/* 837*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisResourceInfo_t2484257846_m1024839088_gshared/* 838*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisTypeTag_t4285455534_m4104740926_gshared/* 839*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisSByte_t428380402_m985926950_gshared/* 840*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t3142710829_m600667461_gshared/* 841*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisSingle_t2195714798_m875988375_gshared/* 842*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisMark_t1839454258_m3279817123_gshared/* 843*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisTimeSpan_t129343636_m567274387_gshared/* 844*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUInt16_t278453288_m1161854142_gshared/* 845*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUInt32_t346584147_m1547644847_gshared/* 846*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUInt64_t1634845782_m3894707600_gshared/* 847*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUriScheme_t3261313531_m1005843216_gshared/* 848*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisToggles_t2831120859_m3417641089_gshared/* 849*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisTogglesTut_t2696597271_m2443702875_gshared/* 850*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisColor_t3622910849_m2433715214_gshared/* 851*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisColor32_t2751477055_m1410720474_gshared/* 852*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisContactPoint_t3605395583_m473219016_gshared/* 853*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisRaycastResult_t2422751240_m2980005001_gshared/* 854*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyframe_t2174701810_m2458282719_gshared/* 855*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisPlayableBinding_t202000793_m2589468724_gshared/* 856*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisRaycastHit_t1187910868_m371189204_gshared/* 857*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t3865340945_m2122685166_gshared/* 858*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisHitInfo_t143095646_m31821323_gshared/* 859*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisGcAchievementData_t410448212_m2705037158_gshared/* 860*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisGcScoreData_t4278176256_m2600351227_gshared/* 861*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisTouch_t2985979242_m1978004139_gshared/* 862*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisContentType_t4244931986_m3524495065_gshared/* 863*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUICharInfo_t1969298608_m1364797669_gshared/* 864*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUILineInfo_t335496833_m861194438_gshared/* 865*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUIVertex_t1250770280_m2970807315_gshared/* 866*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisWorkRequest_t1197224859_m2940797567_gshared/* 867*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisVector2_t524314224_m4002355332_gshared/* 868*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisVector3_t298406706_m1178007448_gshared/* 869*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisVector4_t2979484471_m3196023689_gshared/* 870*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisWorlds_t2374095355_m267354811_gshared/* 871*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisBenutzerPW_t3993975976_m1137676970_gshared/* 872*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisLevelManagerList_t2308881597_m2256064610_gshared/* 873*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisModels_t93544135_m2134570873_gshared/* 874*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisTableRange_t2273327377_m184333359_gshared/* 875*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisClientCertificateType_t2322709846_m3127641465_gshared/* 876*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisBoolean_t4021514083_m1493995952_gshared/* 877*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisByte_t2712847921_m43362844_gshared/* 878*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisChar_t4197180777_m3176096199_gshared/* 879*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t1489291961_m1345945714_gshared/* 880*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisLink_t1298993810_m4188386099_gshared/* 881*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4266255930_m4048899100_gshared/* 882*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2117714080_m78869401_gshared/* 883*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1159377151_m2591279537_gshared/* 884*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1305230034_m1113971830_gshared/* 885*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3838208718_m2895510084_gshared/* 886*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisLink_t871362263_m2399216828_gshared/* 887*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisSlot_t646771150_m1042444708_gshared/* 888*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisSlot_t1619562839_m2943369554_gshared/* 889*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisDateTime_t2547387390_m4073868894_gshared/* 890*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisDecimal_t3966699860_m1800286883_gshared/* 891*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisDouble_t339827693_m2668884230_gshared/* 892*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisInt16_t3856708424_m3144516922_gshared/* 893*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisInt32_t4167366966_m1420471075_gshared/* 894*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisInt64_t2408544963_m4231037832_gshared/* 895*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisIntPtr_t_m448672977_gshared/* 896*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t2457599825_m3185908624_gshared/* 897*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t3886750721_m2337252438_gshared/* 898*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisLabelData_t1310448249_m1195922862_gshared/* 899*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisLabelFixup_t2905765948_m1779033765_gshared/* 900*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisILTokenInfo_t2153999167_m2569353302_gshared/* 901*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisMonoResource_t119149808_m582770843_gshared/* 902*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisMonoWin32Resource_t206024608_m4126403756_gshared/* 903*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisRefEmitPermissionSet_t715845335_m1388759781_gshared/* 904*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisParameterModifier_t376389310_m330293624_gshared/* 905*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisResourceCacheItem_t1320965396_m4070398499_gshared/* 906*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisResourceInfo_t2484257846_m1936955093_gshared/* 907*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisTypeTag_t4285455534_m1309866442_gshared/* 908*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisSByte_t428380402_m3538223738_gshared/* 909*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t3142710829_m1744331487_gshared/* 910*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisSingle_t2195714798_m3432866039_gshared/* 911*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisMark_t1839454258_m310615892_gshared/* 912*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisTimeSpan_t129343636_m2278609907_gshared/* 913*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUInt16_t278453288_m2626966408_gshared/* 914*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUInt32_t346584147_m1498147604_gshared/* 915*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUInt64_t1634845782_m923385548_gshared/* 916*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUriScheme_t3261313531_m1752794331_gshared/* 917*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisToggles_t2831120859_m1959957284_gshared/* 918*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisTogglesTut_t2696597271_m3749446118_gshared/* 919*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisColor_t3622910849_m4258792844_gshared/* 920*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisColor32_t2751477055_m981907668_gshared/* 921*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisContactPoint_t3605395583_m1969423659_gshared/* 922*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisRaycastResult_t2422751240_m2221728628_gshared/* 923*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyframe_t2174701810_m1119415896_gshared/* 924*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisPlayableBinding_t202000793_m1449701647_gshared/* 925*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisRaycastHit_t1187910868_m46543770_gshared/* 926*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t3865340945_m4228459202_gshared/* 927*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisHitInfo_t143095646_m245425135_gshared/* 928*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisGcAchievementData_t410448212_m2668768732_gshared/* 929*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisGcScoreData_t4278176256_m1867450039_gshared/* 930*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisTouch_t2985979242_m290463939_gshared/* 931*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisContentType_t4244931986_m506915177_gshared/* 932*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUICharInfo_t1969298608_m712277129_gshared/* 933*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUILineInfo_t335496833_m215963816_gshared/* 934*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUIVertex_t1250770280_m625396900_gshared/* 935*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisWorkRequest_t1197224859_m2935729330_gshared/* 936*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisVector2_t524314224_m1311561054_gshared/* 937*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisVector3_t298406706_m2544974850_gshared/* 938*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisVector4_t2979484471_m2576256932_gshared/* 939*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisWorlds_t2374095355_m3327347804_gshared/* 940*/, (Il2CppMethodPointer)&Enumerable_CreateWhereIterator_TisKeyValuePair_2_t3838208718_m1134120976_gshared/* 941*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisBenutzerPW_t3993975976_m2754867296_gshared/* 942*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisLevelManagerList_t2308881597_m1538437259_gshared/* 943*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisModels_t93544135_m643340710_gshared/* 944*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisTableRange_t2273327377_m591080292_gshared/* 945*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisClientCertificateType_t2322709846_m1987399002_gshared/* 946*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisBoolean_t4021514083_m575119708_gshared/* 947*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisByte_t2712847921_m4187152659_gshared/* 948*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisChar_t4197180777_m1033282946_gshared/* 949*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisDictionaryEntry_t1489291961_m3635855247_gshared/* 950*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t1298993810_m2651182814_gshared/* 951*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4266255930_m2700828287_gshared/* 952*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2117714080_m214828127_gshared/* 953*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1159377151_m2743872328_gshared/* 954*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1305230034_m1588822679_gshared/* 955*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3838208718_m2215677469_gshared/* 956*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t871362263_m3750875380_gshared/* 957*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t646771150_m3966828976_gshared/* 958*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t1619562839_m3908218660_gshared/* 959*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisDateTime_t2547387390_m1235082609_gshared/* 960*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisDecimal_t3966699860_m1422824643_gshared/* 961*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisDouble_t339827693_m3928165001_gshared/* 962*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisInt16_t3856708424_m2112327033_gshared/* 963*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisInt32_t4167366966_m1311588597_gshared/* 964*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisInt64_t2408544963_m3125068714_gshared/* 965*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisIntPtr_t_m20807206_gshared/* 966*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeNamedArgument_t2457599825_m3695586139_gshared/* 967*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeTypedArgument_t3886750721_m520564222_gshared/* 968*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisLabelData_t1310448249_m1883366921_gshared/* 969*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisLabelFixup_t2905765948_m1191902248_gshared/* 970*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisILTokenInfo_t2153999167_m1061763361_gshared/* 971*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisMonoResource_t119149808_m2160567085_gshared/* 972*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisMonoWin32Resource_t206024608_m4233927233_gshared/* 973*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisRefEmitPermissionSet_t715845335_m3069146564_gshared/* 974*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisParameterModifier_t376389310_m682107350_gshared/* 975*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisResourceCacheItem_t1320965396_m1956751809_gshared/* 976*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisResourceInfo_t2484257846_m2162849929_gshared/* 977*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisTypeTag_t4285455534_m3478435971_gshared/* 978*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisSByte_t428380402_m349337737_gshared/* 979*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisX509ChainStatus_t3142710829_m609303689_gshared/* 980*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisSingle_t2195714798_m3049081576_gshared/* 981*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisMark_t1839454258_m2030274028_gshared/* 982*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisTimeSpan_t129343636_m3938119373_gshared/* 983*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUInt16_t278453288_m424174583_gshared/* 984*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUInt32_t346584147_m1162332557_gshared/* 985*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUInt64_t1634845782_m121208911_gshared/* 986*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUriScheme_t3261313531_m3501282635_gshared/* 987*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisToggles_t2831120859_m196000156_gshared/* 988*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisTogglesTut_t2696597271_m736026176_gshared/* 989*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisColor_t3622910849_m4078559766_gshared/* 990*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisColor32_t2751477055_m2392670350_gshared/* 991*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint_t3605395583_m2627948564_gshared/* 992*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastResult_t2422751240_m1465210523_gshared/* 993*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyframe_t2174701810_m2432321100_gshared/* 994*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisPlayableBinding_t202000793_m309376188_gshared/* 995*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit_t1187910868_m470225189_gshared/* 996*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit2D_t3865340945_m2545536470_gshared/* 997*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisHitInfo_t143095646_m3042198072_gshared/* 998*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisGcAchievementData_t410448212_m618514581_gshared/* 999*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisGcScoreData_t4278176256_m3654695391_gshared/* 1000*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisTouch_t2985979242_m3004886542_gshared/* 1001*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisContentType_t4244931986_m1789477393_gshared/* 1002*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUICharInfo_t1969298608_m4032563177_gshared/* 1003*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUILineInfo_t335496833_m2841361668_gshared/* 1004*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUIVertex_t1250770280_m1163148021_gshared/* 1005*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisWorkRequest_t1197224859_m3720026382_gshared/* 1006*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisVector2_t524314224_m1343047365_gshared/* 1007*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisVector3_t298406706_m2735255681_gshared/* 1008*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisVector4_t2979484471_m2510912457_gshared/* 1009*/, (Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisWorlds_t2374095355_m3097257265_gshared/* 1010*/, (Il2CppMethodPointer)&Array_BinarySearch_TisInt32_t4167366966_m3674557384_gshared/* 1011*/, (Il2CppMethodPointer)&Array_compare_TisLevelManagerList_t2308881597_m3854053518_gshared/* 1012*/, (Il2CppMethodPointer)&Array_compare_TisInt32_t4167366966_m1962051264_gshared/* 1013*/, (Il2CppMethodPointer)&Array_compare_TisCustomAttributeNamedArgument_t2457599825_m1388725596_gshared/* 1014*/, (Il2CppMethodPointer)&Array_compare_TisCustomAttributeTypedArgument_t3886750721_m3025325816_gshared/* 1015*/, (Il2CppMethodPointer)&Array_compare_TisColor32_t2751477055_m2936834497_gshared/* 1016*/, (Il2CppMethodPointer)&Array_compare_TisRaycastResult_t2422751240_m1526034924_gshared/* 1017*/, (Il2CppMethodPointer)&Array_compare_TisUICharInfo_t1969298608_m725808044_gshared/* 1018*/, (Il2CppMethodPointer)&Array_compare_TisUILineInfo_t335496833_m538521005_gshared/* 1019*/, (Il2CppMethodPointer)&Array_compare_TisUIVertex_t1250770280_m1460095346_gshared/* 1020*/, (Il2CppMethodPointer)&Array_compare_TisVector2_t524314224_m660346502_gshared/* 1021*/, (Il2CppMethodPointer)&Array_compare_TisVector3_t298406706_m368530871_gshared/* 1022*/, (Il2CppMethodPointer)&Array_compare_TisVector4_t2979484471_m4099737387_gshared/* 1023*/, (Il2CppMethodPointer)&Array_IndexOf_TisLevelManagerList_t2308881597_m144941025_gshared/* 1024*/, (Il2CppMethodPointer)&Array_IndexOf_TisInt32_t4167366966_m1551703251_gshared/* 1025*/, (Il2CppMethodPointer)&Array_IndexOf_TisCustomAttributeNamedArgument_t2457599825_m3319569537_gshared/* 1026*/, (Il2CppMethodPointer)&Array_IndexOf_TisCustomAttributeNamedArgument_t2457599825_m3613997469_gshared/* 1027*/, (Il2CppMethodPointer)&Array_IndexOf_TisCustomAttributeTypedArgument_t3886750721_m943282969_gshared/* 1028*/, (Il2CppMethodPointer)&Array_IndexOf_TisCustomAttributeTypedArgument_t3886750721_m254954266_gshared/* 1029*/, (Il2CppMethodPointer)&Array_IndexOf_TisColor32_t2751477055_m592876506_gshared/* 1030*/, (Il2CppMethodPointer)&Array_IndexOf_TisRaycastResult_t2422751240_m44558222_gshared/* 1031*/, (Il2CppMethodPointer)&Array_IndexOf_TisUICharInfo_t1969298608_m3044561830_gshared/* 1032*/, (Il2CppMethodPointer)&Array_IndexOf_TisUILineInfo_t335496833_m2194636557_gshared/* 1033*/, (Il2CppMethodPointer)&Array_IndexOf_TisUIVertex_t1250770280_m2524529344_gshared/* 1034*/, (Il2CppMethodPointer)&Array_IndexOf_TisVector2_t524314224_m151510283_gshared/* 1035*/, (Il2CppMethodPointer)&Array_IndexOf_TisVector3_t298406706_m3243737063_gshared/* 1036*/, (Il2CppMethodPointer)&Array_IndexOf_TisVector4_t2979484471_m47463824_gshared/* 1037*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisBenutzerPW_t3993975976_m3262583877_gshared/* 1038*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisLevelManagerList_t2308881597_m79327771_gshared/* 1039*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisModels_t93544135_m1481870659_gshared/* 1040*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisTableRange_t2273327377_m3572644484_gshared/* 1041*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisClientCertificateType_t2322709846_m4147121483_gshared/* 1042*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisBoolean_t4021514083_m1406410610_gshared/* 1043*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisByte_t2712847921_m3219359432_gshared/* 1044*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisChar_t4197180777_m1842944159_gshared/* 1045*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisDictionaryEntry_t1489291961_m3606519230_gshared/* 1046*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisLink_t1298993810_m3903398259_gshared/* 1047*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyValuePair_2_t4266255930_m3090539742_gshared/* 1048*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyValuePair_2_t2117714080_m4227356214_gshared/* 1049*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyValuePair_2_t1159377151_m2502486537_gshared/* 1050*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyValuePair_2_t1305230034_m2712893714_gshared/* 1051*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyValuePair_2_t3838208718_m184780239_gshared/* 1052*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisLink_t871362263_m4196323042_gshared/* 1053*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisSlot_t646771150_m3826788364_gshared/* 1054*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisSlot_t1619562839_m561322783_gshared/* 1055*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisDateTime_t2547387390_m301604682_gshared/* 1056*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisDecimal_t3966699860_m959037974_gshared/* 1057*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisDouble_t339827693_m1175612324_gshared/* 1058*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisInt16_t3856708424_m213152810_gshared/* 1059*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisInt32_t4167366966_m155943784_gshared/* 1060*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisInt64_t2408544963_m278879678_gshared/* 1061*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisIntPtr_t_m2171989950_gshared/* 1062*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t2457599825_m3243308751_gshared/* 1063*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t3886750721_m16440611_gshared/* 1064*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisLabelData_t1310448249_m4176445771_gshared/* 1065*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisLabelFixup_t2905765948_m4056479101_gshared/* 1066*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisILTokenInfo_t2153999167_m642777824_gshared/* 1067*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisMonoResource_t119149808_m451149296_gshared/* 1068*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisMonoWin32Resource_t206024608_m1659412446_gshared/* 1069*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisRefEmitPermissionSet_t715845335_m2430505057_gshared/* 1070*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisParameterModifier_t376389310_m520571811_gshared/* 1071*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisResourceCacheItem_t1320965396_m1451193494_gshared/* 1072*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisResourceInfo_t2484257846_m566675034_gshared/* 1073*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisTypeTag_t4285455534_m3126715815_gshared/* 1074*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisSByte_t428380402_m1959632191_gshared/* 1075*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisX509ChainStatus_t3142710829_m1495209617_gshared/* 1076*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisSingle_t2195714798_m1465984328_gshared/* 1077*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisMark_t1839454258_m48714600_gshared/* 1078*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisTimeSpan_t129343636_m1245326305_gshared/* 1079*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUInt16_t278453288_m1596661518_gshared/* 1080*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUInt32_t346584147_m2988120568_gshared/* 1081*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUInt64_t1634845782_m3738546551_gshared/* 1082*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUriScheme_t3261313531_m274905018_gshared/* 1083*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisToggles_t2831120859_m3221007770_gshared/* 1084*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisTogglesTut_t2696597271_m3291212216_gshared/* 1085*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisColor_t3622910849_m946919865_gshared/* 1086*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisColor32_t2751477055_m1978122800_gshared/* 1087*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisContactPoint_t3605395583_m3493988861_gshared/* 1088*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisRaycastResult_t2422751240_m2301077238_gshared/* 1089*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyframe_t2174701810_m2475960207_gshared/* 1090*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisPlayableBinding_t202000793_m147993959_gshared/* 1091*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisRaycastHit_t1187910868_m3834191597_gshared/* 1092*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisRaycastHit2D_t3865340945_m3466750301_gshared/* 1093*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisHitInfo_t143095646_m3761922610_gshared/* 1094*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisGcAchievementData_t410448212_m3425045752_gshared/* 1095*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisGcScoreData_t4278176256_m1539315700_gshared/* 1096*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisTouch_t2985979242_m3676812433_gshared/* 1097*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisContentType_t4244931986_m3504941009_gshared/* 1098*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUICharInfo_t1969298608_m2863000547_gshared/* 1099*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUILineInfo_t335496833_m1728931693_gshared/* 1100*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUIVertex_t1250770280_m508411357_gshared/* 1101*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisWorkRequest_t1197224859_m473354502_gshared/* 1102*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisVector2_t524314224_m2851699678_gshared/* 1103*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisVector3_t298406706_m3553316109_gshared/* 1104*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisVector4_t2979484471_m996539751_gshared/* 1105*/, (Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisWorlds_t2374095355_m1227299707_gshared/* 1106*/, (Il2CppMethodPointer)&Mesh_SafeLength_TisColor32_t2751477055_m954248310_gshared/* 1107*/, (Il2CppMethodPointer)&Mesh_SafeLength_TisVector2_t524314224_m3935288024_gshared/* 1108*/, (Il2CppMethodPointer)&Mesh_SafeLength_TisVector3_t298406706_m1224884450_gshared/* 1109*/, (Il2CppMethodPointer)&Mesh_SafeLength_TisVector4_t2979484471_m1875581356_gshared/* 1110*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisBenutzerPW_t3993975976_m2540861271_gshared/* 1111*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisLevelManagerList_t2308881597_m212139307_gshared/* 1112*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisModels_t93544135_m1596373922_gshared/* 1113*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisTableRange_t2273327377_m2505139109_gshared/* 1114*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisClientCertificateType_t2322709846_m742703523_gshared/* 1115*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisBoolean_t4021514083_m1012699754_gshared/* 1116*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisByte_t2712847921_m3418252781_gshared/* 1117*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisChar_t4197180777_m947624147_gshared/* 1118*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisDictionaryEntry_t1489291961_m4101777875_gshared/* 1119*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisLink_t1298993810_m132826540_gshared/* 1120*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4266255930_m946209669_gshared/* 1121*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2117714080_m1878834460_gshared/* 1122*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1159377151_m970255049_gshared/* 1123*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1305230034_m231068921_gshared/* 1124*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3838208718_m2056098066_gshared/* 1125*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisLink_t871362263_m1432056089_gshared/* 1126*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisSlot_t646771150_m3555054201_gshared/* 1127*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisSlot_t1619562839_m668303019_gshared/* 1128*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisDateTime_t2547387390_m2214775655_gshared/* 1129*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisDecimal_t3966699860_m2509938907_gshared/* 1130*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisDouble_t339827693_m3026187683_gshared/* 1131*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisInt16_t3856708424_m3230806219_gshared/* 1132*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisInt32_t4167366966_m635729765_gshared/* 1133*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisInt64_t2408544963_m224934452_gshared/* 1134*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisIntPtr_t_m1144539200_gshared/* 1135*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t2457599825_m2819073346_gshared/* 1136*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t3886750721_m2464008314_gshared/* 1137*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisLabelData_t1310448249_m1769010659_gshared/* 1138*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisLabelFixup_t2905765948_m1341209596_gshared/* 1139*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisILTokenInfo_t2153999167_m3840642720_gshared/* 1140*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisMonoResource_t119149808_m3114133429_gshared/* 1141*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisMonoWin32Resource_t206024608_m2560973443_gshared/* 1142*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisRefEmitPermissionSet_t715845335_m2135620125_gshared/* 1143*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisParameterModifier_t376389310_m3906525594_gshared/* 1144*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisResourceCacheItem_t1320965396_m869695486_gshared/* 1145*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisResourceInfo_t2484257846_m1892998110_gshared/* 1146*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisTypeTag_t4285455534_m513816032_gshared/* 1147*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisSByte_t428380402_m3179386124_gshared/* 1148*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisX509ChainStatus_t3142710829_m1644010597_gshared/* 1149*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisSingle_t2195714798_m3434424711_gshared/* 1150*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisMark_t1839454258_m2946527583_gshared/* 1151*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisTimeSpan_t129343636_m2967447552_gshared/* 1152*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUInt16_t278453288_m2331248041_gshared/* 1153*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUInt32_t346584147_m3816118992_gshared/* 1154*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUInt64_t1634845782_m974656912_gshared/* 1155*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUriScheme_t3261313531_m3019349566_gshared/* 1156*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisToggles_t2831120859_m1579806479_gshared/* 1157*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisTogglesTut_t2696597271_m2083306495_gshared/* 1158*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisColor_t3622910849_m1223442393_gshared/* 1159*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisColor32_t2751477055_m868794674_gshared/* 1160*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisContactPoint_t3605395583_m1386659890_gshared/* 1161*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisRaycastResult_t2422751240_m2219112978_gshared/* 1162*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyframe_t2174701810_m562972272_gshared/* 1163*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisPlayableBinding_t202000793_m3052288329_gshared/* 1164*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisRaycastHit_t1187910868_m1371796584_gshared/* 1165*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisRaycastHit2D_t3865340945_m1434846180_gshared/* 1166*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisHitInfo_t143095646_m4289053952_gshared/* 1167*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisGcAchievementData_t410448212_m1403540031_gshared/* 1168*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisGcScoreData_t4278176256_m4121023098_gshared/* 1169*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisTouch_t2985979242_m2773465958_gshared/* 1170*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisContentType_t4244931986_m4222413392_gshared/* 1171*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUICharInfo_t1969298608_m2922690701_gshared/* 1172*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUILineInfo_t335496833_m337935941_gshared/* 1173*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUIVertex_t1250770280_m2270412485_gshared/* 1174*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisWorkRequest_t1197224859_m3043766390_gshared/* 1175*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisVector2_t524314224_m2897893460_gshared/* 1176*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisVector3_t298406706_m3229956754_gshared/* 1177*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisVector4_t2979484471_m1331029886_gshared/* 1178*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisWorlds_t2374095355_m816891400_gshared/* 1179*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisBenutzerPW_t3993975976_m2305338578_gshared/* 1180*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisLevelManagerList_t2308881597_m4134144912_gshared/* 1181*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisModels_t93544135_m1667873320_gshared/* 1182*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisTableRange_t2273327377_m839400705_gshared/* 1183*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisClientCertificateType_t2322709846_m1034134194_gshared/* 1184*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisBoolean_t4021514083_m76405449_gshared/* 1185*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisByte_t2712847921_m1537816791_gshared/* 1186*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisChar_t4197180777_m4212912270_gshared/* 1187*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisDictionaryEntry_t1489291961_m91850926_gshared/* 1188*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisLink_t1298993810_m3004768805_gshared/* 1189*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t4266255930_m3275421670_gshared/* 1190*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t2117714080_m3061516048_gshared/* 1191*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t1159377151_m1402317104_gshared/* 1192*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t1305230034_m1806431570_gshared/* 1193*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t3838208718_m3641320881_gshared/* 1194*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisLink_t871362263_m3262590238_gshared/* 1195*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisSlot_t646771150_m2447371851_gshared/* 1196*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisSlot_t1619562839_m3580400988_gshared/* 1197*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisDateTime_t2547387390_m101004557_gshared/* 1198*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisDecimal_t3966699860_m2816723572_gshared/* 1199*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisDouble_t339827693_m1953644745_gshared/* 1200*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisInt16_t3856708424_m2027937264_gshared/* 1201*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisInt32_t4167366966_m4201786403_gshared/* 1202*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisInt64_t2408544963_m3479182866_gshared/* 1203*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisIntPtr_t_m1273184816_gshared/* 1204*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisCustomAttributeNamedArgument_t2457599825_m3708683890_gshared/* 1205*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisCustomAttributeTypedArgument_t3886750721_m1503849792_gshared/* 1206*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisLabelData_t1310448249_m1745929223_gshared/* 1207*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisLabelFixup_t2905765948_m488870305_gshared/* 1208*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisILTokenInfo_t2153999167_m3671743756_gshared/* 1209*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisMonoResource_t119149808_m198486972_gshared/* 1210*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisMonoWin32Resource_t206024608_m3977127395_gshared/* 1211*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisRefEmitPermissionSet_t715845335_m4218897720_gshared/* 1212*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisParameterModifier_t376389310_m3896307123_gshared/* 1213*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisResourceCacheItem_t1320965396_m9878285_gshared/* 1214*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisResourceInfo_t2484257846_m1466956766_gshared/* 1215*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisTypeTag_t4285455534_m2114800466_gshared/* 1216*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisSByte_t428380402_m2384823785_gshared/* 1217*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisX509ChainStatus_t3142710829_m3630364276_gshared/* 1218*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisSingle_t2195714798_m1798083483_gshared/* 1219*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisMark_t1839454258_m3229667387_gshared/* 1220*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisTimeSpan_t129343636_m120987291_gshared/* 1221*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUInt16_t278453288_m3104119907_gshared/* 1222*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUInt32_t346584147_m2866946858_gshared/* 1223*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUInt64_t1634845782_m1046924363_gshared/* 1224*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUriScheme_t3261313531_m4062936799_gshared/* 1225*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisToggles_t2831120859_m21587168_gshared/* 1226*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisTogglesTut_t2696597271_m2713858251_gshared/* 1227*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisColor_t3622910849_m3450578333_gshared/* 1228*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisColor32_t2751477055_m3419510270_gshared/* 1229*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisContactPoint_t3605395583_m4062784210_gshared/* 1230*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisRaycastResult_t2422751240_m4173978484_gshared/* 1231*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyframe_t2174701810_m1823478025_gshared/* 1232*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisPlayableBinding_t202000793_m3238705274_gshared/* 1233*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisRaycastHit_t1187910868_m1867129864_gshared/* 1234*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisRaycastHit2D_t3865340945_m602482430_gshared/* 1235*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisHitInfo_t143095646_m2834194435_gshared/* 1236*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisGcAchievementData_t410448212_m2834660452_gshared/* 1237*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisGcScoreData_t4278176256_m260891565_gshared/* 1238*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisTouch_t2985979242_m1684975509_gshared/* 1239*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisContentType_t4244931986_m4229712170_gshared/* 1240*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUICharInfo_t1969298608_m2372181248_gshared/* 1241*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUILineInfo_t335496833_m3977084416_gshared/* 1242*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUIVertex_t1250770280_m3705793910_gshared/* 1243*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisWorkRequest_t1197224859_m299030757_gshared/* 1244*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisVector2_t524314224_m1783634868_gshared/* 1245*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisVector3_t298406706_m2666890573_gshared/* 1246*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisVector4_t2979484471_m3376660601_gshared/* 1247*/, (Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisWorlds_t2374095355_m1342293351_gshared/* 1248*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisBenutzerPW_t3993975976_m4204571963_gshared/* 1249*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisLevelManagerList_t2308881597_m472166920_gshared/* 1250*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisModels_t93544135_m2361600984_gshared/* 1251*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisTableRange_t2273327377_m2560585778_gshared/* 1252*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisClientCertificateType_t2322709846_m1770059869_gshared/* 1253*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisBoolean_t4021514083_m3795757602_gshared/* 1254*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisByte_t2712847921_m3556324169_gshared/* 1255*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisChar_t4197180777_m1109132548_gshared/* 1256*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisDictionaryEntry_t1489291961_m859018424_gshared/* 1257*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisLink_t1298993810_m694281915_gshared/* 1258*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyValuePair_2_t4266255930_m1781577845_gshared/* 1259*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyValuePair_2_t2117714080_m2036622066_gshared/* 1260*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyValuePair_2_t1159377151_m3802789349_gshared/* 1261*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyValuePair_2_t1305230034_m3414903901_gshared/* 1262*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyValuePair_2_t3838208718_m2016731447_gshared/* 1263*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisLink_t871362263_m2373358686_gshared/* 1264*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisSlot_t646771150_m804950614_gshared/* 1265*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisSlot_t1619562839_m47126550_gshared/* 1266*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisDateTime_t2547387390_m2984889988_gshared/* 1267*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisDecimal_t3966699860_m1707291196_gshared/* 1268*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisDouble_t339827693_m3811210834_gshared/* 1269*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisInt16_t3856708424_m1372957669_gshared/* 1270*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisInt32_t4167366966_m3735225974_gshared/* 1271*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisInt64_t2408544963_m4221868327_gshared/* 1272*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisIntPtr_t_m66448727_gshared/* 1273*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t2457599825_m3280428286_gshared/* 1274*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t3886750721_m1210920240_gshared/* 1275*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisLabelData_t1310448249_m1613214087_gshared/* 1276*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisLabelFixup_t2905765948_m620581496_gshared/* 1277*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisILTokenInfo_t2153999167_m249949032_gshared/* 1278*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisMonoResource_t119149808_m857910372_gshared/* 1279*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisMonoWin32Resource_t206024608_m1304437718_gshared/* 1280*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisRefEmitPermissionSet_t715845335_m3081408122_gshared/* 1281*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisParameterModifier_t376389310_m2598774926_gshared/* 1282*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisResourceCacheItem_t1320965396_m2339140611_gshared/* 1283*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisResourceInfo_t2484257846_m1443452189_gshared/* 1284*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisTypeTag_t4285455534_m1144691727_gshared/* 1285*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisSByte_t428380402_m3672718342_gshared/* 1286*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisX509ChainStatus_t3142710829_m2332513571_gshared/* 1287*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisSingle_t2195714798_m1920760203_gshared/* 1288*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisMark_t1839454258_m3397643828_gshared/* 1289*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisTimeSpan_t129343636_m1145375422_gshared/* 1290*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisUInt16_t278453288_m1093155303_gshared/* 1291*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisUInt32_t346584147_m3524718288_gshared/* 1292*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisUInt64_t1634845782_m3734899577_gshared/* 1293*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisUriScheme_t3261313531_m3765191366_gshared/* 1294*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisToggles_t2831120859_m541065870_gshared/* 1295*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisTogglesTut_t2696597271_m2302358723_gshared/* 1296*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisColor_t3622910849_m19736494_gshared/* 1297*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisColor32_t2751477055_m658135066_gshared/* 1298*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisContactPoint_t3605395583_m3856122771_gshared/* 1299*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisRaycastResult_t2422751240_m806950013_gshared/* 1300*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyframe_t2174701810_m1251483451_gshared/* 1301*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisPlayableBinding_t202000793_m1680224689_gshared/* 1302*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisRaycastHit_t1187910868_m375059270_gshared/* 1303*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisRaycastHit2D_t3865340945_m3257100195_gshared/* 1304*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisHitInfo_t143095646_m1157232724_gshared/* 1305*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisGcAchievementData_t410448212_m1016264544_gshared/* 1306*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisGcScoreData_t4278176256_m1365103787_gshared/* 1307*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisTouch_t2985979242_m3179842228_gshared/* 1308*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisContentType_t4244931986_m1581134454_gshared/* 1309*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisUICharInfo_t1969298608_m90522264_gshared/* 1310*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisUILineInfo_t335496833_m2271306608_gshared/* 1311*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisUIVertex_t1250770280_m572017903_gshared/* 1312*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisWorkRequest_t1197224859_m1444805430_gshared/* 1313*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisVector2_t524314224_m2738163265_gshared/* 1314*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisVector3_t298406706_m3966302285_gshared/* 1315*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisVector4_t2979484471_m4189553811_gshared/* 1316*/, (Il2CppMethodPointer)&Array_InternalArray__Insert_TisWorlds_t2374095355_m3743808117_gshared/* 1317*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisBenutzerPW_t3993975976_m784117895_gshared/* 1318*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisLevelManagerList_t2308881597_m822608817_gshared/* 1319*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisModels_t93544135_m2087300298_gshared/* 1320*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisTableRange_t2273327377_m502293779_gshared/* 1321*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisClientCertificateType_t2322709846_m3777103594_gshared/* 1322*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisBoolean_t4021514083_m654480149_gshared/* 1323*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisByte_t2712847921_m872569235_gshared/* 1324*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisChar_t4197180777_m2714706123_gshared/* 1325*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisDictionaryEntry_t1489291961_m1957769635_gshared/* 1326*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisLink_t1298993810_m17131244_gshared/* 1327*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyValuePair_2_t4266255930_m3663036369_gshared/* 1328*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyValuePair_2_t2117714080_m2968247184_gshared/* 1329*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyValuePair_2_t1159377151_m1072847714_gshared/* 1330*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyValuePair_2_t1305230034_m3785211509_gshared/* 1331*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyValuePair_2_t3838208718_m2503075905_gshared/* 1332*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisLink_t871362263_m2732807341_gshared/* 1333*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisSlot_t646771150_m222228502_gshared/* 1334*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisSlot_t1619562839_m2401142308_gshared/* 1335*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisDateTime_t2547387390_m1456112903_gshared/* 1336*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisDecimal_t3966699860_m3614497616_gshared/* 1337*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisDouble_t339827693_m3293600329_gshared/* 1338*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisInt16_t3856708424_m1187828133_gshared/* 1339*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisInt32_t4167366966_m577974753_gshared/* 1340*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisInt64_t2408544963_m3867353130_gshared/* 1341*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisIntPtr_t_m1334926046_gshared/* 1342*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t2457599825_m2634707410_gshared/* 1343*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t3886750721_m4171647719_gshared/* 1344*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisLabelData_t1310448249_m2596614078_gshared/* 1345*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisLabelFixup_t2905765948_m3157242046_gshared/* 1346*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisILTokenInfo_t2153999167_m3468194516_gshared/* 1347*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisMonoResource_t119149808_m4248833918_gshared/* 1348*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisMonoWin32Resource_t206024608_m3515400068_gshared/* 1349*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisRefEmitPermissionSet_t715845335_m1497818398_gshared/* 1350*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisParameterModifier_t376389310_m2208605747_gshared/* 1351*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisResourceCacheItem_t1320965396_m3163155290_gshared/* 1352*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisResourceInfo_t2484257846_m2985804109_gshared/* 1353*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisTypeTag_t4285455534_m3989347044_gshared/* 1354*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisSByte_t428380402_m164527822_gshared/* 1355*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisX509ChainStatus_t3142710829_m2691757802_gshared/* 1356*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisSingle_t2195714798_m4014302982_gshared/* 1357*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisMark_t1839454258_m2505166496_gshared/* 1358*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisTimeSpan_t129343636_m2905201011_gshared/* 1359*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUInt16_t278453288_m1568212025_gshared/* 1360*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUInt32_t346584147_m579613156_gshared/* 1361*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUInt64_t1634845782_m3050969958_gshared/* 1362*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUriScheme_t3261313531_m2167613805_gshared/* 1363*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisToggles_t2831120859_m2535752445_gshared/* 1364*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisTogglesTut_t2696597271_m1363769774_gshared/* 1365*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisColor_t3622910849_m3163164599_gshared/* 1366*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisColor32_t2751477055_m4145125965_gshared/* 1367*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisContactPoint_t3605395583_m3539738370_gshared/* 1368*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisRaycastResult_t2422751240_m2323777961_gshared/* 1369*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyframe_t2174701810_m1498397348_gshared/* 1370*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisPlayableBinding_t202000793_m2280025352_gshared/* 1371*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisRaycastHit_t1187910868_m1571615057_gshared/* 1372*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisRaycastHit2D_t3865340945_m1921014628_gshared/* 1373*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisHitInfo_t143095646_m3540040591_gshared/* 1374*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisGcAchievementData_t410448212_m842604708_gshared/* 1375*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisGcScoreData_t4278176256_m3040141641_gshared/* 1376*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisTouch_t2985979242_m3843032450_gshared/* 1377*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisContentType_t4244931986_m560461313_gshared/* 1378*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUICharInfo_t1969298608_m677124254_gshared/* 1379*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUILineInfo_t335496833_m1202158142_gshared/* 1380*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUIVertex_t1250770280_m4113829406_gshared/* 1381*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisWorkRequest_t1197224859_m3662423196_gshared/* 1382*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisVector2_t524314224_m1673243196_gshared/* 1383*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisVector3_t298406706_m727835116_gshared/* 1384*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisVector4_t2979484471_m2650307325_gshared/* 1385*/, (Il2CppMethodPointer)&Array_InternalArray__set_Item_TisWorlds_t2374095355_m201733922_gshared/* 1386*/, (Il2CppMethodPointer)&Array_qsort_TisLevelManagerList_t2308881597_TisLevelManagerList_t2308881597_m1134562453_gshared/* 1387*/, (Il2CppMethodPointer)&Array_qsort_TisLevelManagerList_t2308881597_m1946278044_gshared/* 1388*/, (Il2CppMethodPointer)&Array_qsort_TisInt32_t4167366966_TisInt32_t4167366966_m3401441840_gshared/* 1389*/, (Il2CppMethodPointer)&Array_qsort_TisInt32_t4167366966_m3555984278_gshared/* 1390*/, (Il2CppMethodPointer)&Array_qsort_TisCustomAttributeNamedArgument_t2457599825_TisCustomAttributeNamedArgument_t2457599825_m1003456686_gshared/* 1391*/, (Il2CppMethodPointer)&Array_qsort_TisCustomAttributeNamedArgument_t2457599825_m1564094853_gshared/* 1392*/, (Il2CppMethodPointer)&Array_qsort_TisCustomAttributeTypedArgument_t3886750721_TisCustomAttributeTypedArgument_t3886750721_m3871132922_gshared/* 1393*/, (Il2CppMethodPointer)&Array_qsort_TisCustomAttributeTypedArgument_t3886750721_m1212374071_gshared/* 1394*/, (Il2CppMethodPointer)&Array_qsort_TisColor32_t2751477055_TisColor32_t2751477055_m3815154788_gshared/* 1395*/, (Il2CppMethodPointer)&Array_qsort_TisColor32_t2751477055_m2890970592_gshared/* 1396*/, (Il2CppMethodPointer)&Array_qsort_TisRaycastResult_t2422751240_TisRaycastResult_t2422751240_m3895234714_gshared/* 1397*/, (Il2CppMethodPointer)&Array_qsort_TisRaycastResult_t2422751240_m4048178963_gshared/* 1398*/, (Il2CppMethodPointer)&Array_qsort_TisRaycastHit_t1187910868_m3116684545_gshared/* 1399*/, (Il2CppMethodPointer)&Array_qsort_TisUICharInfo_t1969298608_TisUICharInfo_t1969298608_m1149999885_gshared/* 1400*/, (Il2CppMethodPointer)&Array_qsort_TisUICharInfo_t1969298608_m616784197_gshared/* 1401*/, (Il2CppMethodPointer)&Array_qsort_TisUILineInfo_t335496833_TisUILineInfo_t335496833_m3817601615_gshared/* 1402*/, (Il2CppMethodPointer)&Array_qsort_TisUILineInfo_t335496833_m3231397484_gshared/* 1403*/, (Il2CppMethodPointer)&Array_qsort_TisUIVertex_t1250770280_TisUIVertex_t1250770280_m60576334_gshared/* 1404*/, (Il2CppMethodPointer)&Array_qsort_TisUIVertex_t1250770280_m681723338_gshared/* 1405*/, (Il2CppMethodPointer)&Array_qsort_TisVector2_t524314224_TisVector2_t524314224_m1470656088_gshared/* 1406*/, (Il2CppMethodPointer)&Array_qsort_TisVector2_t524314224_m3044408165_gshared/* 1407*/, (Il2CppMethodPointer)&Array_qsort_TisVector3_t298406706_TisVector3_t298406706_m3282791330_gshared/* 1408*/, (Il2CppMethodPointer)&Array_qsort_TisVector3_t298406706_m2269646004_gshared/* 1409*/, (Il2CppMethodPointer)&Array_qsort_TisVector4_t2979484471_TisVector4_t2979484471_m720732929_gshared/* 1410*/, (Il2CppMethodPointer)&Array_qsort_TisVector4_t2979484471_m816657529_gshared/* 1411*/, (Il2CppMethodPointer)&Array_Resize_TisLevelManagerList_t2308881597_m448093286_gshared/* 1412*/, (Il2CppMethodPointer)&Array_Resize_TisLevelManagerList_t2308881597_m1804440992_gshared/* 1413*/, (Il2CppMethodPointer)&Array_Resize_TisInt32_t4167366966_m406944823_gshared/* 1414*/, (Il2CppMethodPointer)&Array_Resize_TisInt32_t4167366966_m2295631314_gshared/* 1415*/, (Il2CppMethodPointer)&Array_Resize_TisCustomAttributeNamedArgument_t2457599825_m3008585463_gshared/* 1416*/, (Il2CppMethodPointer)&Array_Resize_TisCustomAttributeNamedArgument_t2457599825_m1465161785_gshared/* 1417*/, (Il2CppMethodPointer)&Array_Resize_TisCustomAttributeTypedArgument_t3886750721_m4016526873_gshared/* 1418*/, (Il2CppMethodPointer)&Array_Resize_TisCustomAttributeTypedArgument_t3886750721_m2542881202_gshared/* 1419*/, (Il2CppMethodPointer)&Array_Resize_TisColor32_t2751477055_m4223909277_gshared/* 1420*/, (Il2CppMethodPointer)&Array_Resize_TisColor32_t2751477055_m3657790326_gshared/* 1421*/, (Il2CppMethodPointer)&Array_Resize_TisRaycastResult_t2422751240_m1833985598_gshared/* 1422*/, (Il2CppMethodPointer)&Array_Resize_TisRaycastResult_t2422751240_m2559521962_gshared/* 1423*/, (Il2CppMethodPointer)&Array_Resize_TisUICharInfo_t1969298608_m1903271376_gshared/* 1424*/, (Il2CppMethodPointer)&Array_Resize_TisUICharInfo_t1969298608_m254805498_gshared/* 1425*/, (Il2CppMethodPointer)&Array_Resize_TisUILineInfo_t335496833_m1918825852_gshared/* 1426*/, (Il2CppMethodPointer)&Array_Resize_TisUILineInfo_t335496833_m1266422096_gshared/* 1427*/, (Il2CppMethodPointer)&Array_Resize_TisUIVertex_t1250770280_m848831585_gshared/* 1428*/, (Il2CppMethodPointer)&Array_Resize_TisUIVertex_t1250770280_m4116267789_gshared/* 1429*/, (Il2CppMethodPointer)&Array_Resize_TisVector2_t524314224_m1815114596_gshared/* 1430*/, (Il2CppMethodPointer)&Array_Resize_TisVector2_t524314224_m80313357_gshared/* 1431*/, (Il2CppMethodPointer)&Array_Resize_TisVector3_t298406706_m3349008030_gshared/* 1432*/, (Il2CppMethodPointer)&Array_Resize_TisVector3_t298406706_m1235104780_gshared/* 1433*/, (Il2CppMethodPointer)&Array_Resize_TisVector4_t2979484471_m994882045_gshared/* 1434*/, (Il2CppMethodPointer)&Array_Resize_TisVector4_t2979484471_m618782369_gshared/* 1435*/, (Il2CppMethodPointer)&Array_Sort_TisLevelManagerList_t2308881597_TisLevelManagerList_t2308881597_m1376997358_gshared/* 1436*/, (Il2CppMethodPointer)&Array_Sort_TisLevelManagerList_t2308881597_m3327617732_gshared/* 1437*/, (Il2CppMethodPointer)&Array_Sort_TisLevelManagerList_t2308881597_m3428240736_gshared/* 1438*/, (Il2CppMethodPointer)&Array_Sort_TisInt32_t4167366966_TisInt32_t4167366966_m2806363690_gshared/* 1439*/, (Il2CppMethodPointer)&Array_Sort_TisInt32_t4167366966_m1448023195_gshared/* 1440*/, (Il2CppMethodPointer)&Array_Sort_TisInt32_t4167366966_m3474804318_gshared/* 1441*/, (Il2CppMethodPointer)&Array_Sort_TisCustomAttributeNamedArgument_t2457599825_TisCustomAttributeNamedArgument_t2457599825_m4150972144_gshared/* 1442*/, (Il2CppMethodPointer)&Array_Sort_TisCustomAttributeNamedArgument_t2457599825_m1053861374_gshared/* 1443*/, (Il2CppMethodPointer)&Array_Sort_TisCustomAttributeNamedArgument_t2457599825_m3415186096_gshared/* 1444*/, (Il2CppMethodPointer)&Array_Sort_TisCustomAttributeTypedArgument_t3886750721_TisCustomAttributeTypedArgument_t3886750721_m1256151242_gshared/* 1445*/, (Il2CppMethodPointer)&Array_Sort_TisCustomAttributeTypedArgument_t3886750721_m2410863361_gshared/* 1446*/, (Il2CppMethodPointer)&Array_Sort_TisCustomAttributeTypedArgument_t3886750721_m2437209736_gshared/* 1447*/, (Il2CppMethodPointer)&Array_Sort_TisColor32_t2751477055_TisColor32_t2751477055_m2519281656_gshared/* 1448*/, (Il2CppMethodPointer)&Array_Sort_TisColor32_t2751477055_m519896447_gshared/* 1449*/, (Il2CppMethodPointer)&Array_Sort_TisColor32_t2751477055_m3086985176_gshared/* 1450*/, (Il2CppMethodPointer)&Array_Sort_TisRaycastResult_t2422751240_TisRaycastResult_t2422751240_m4006721714_gshared/* 1451*/, (Il2CppMethodPointer)&Array_Sort_TisRaycastResult_t2422751240_m2430817507_gshared/* 1452*/, (Il2CppMethodPointer)&Array_Sort_TisRaycastResult_t2422751240_m2184890353_gshared/* 1453*/, (Il2CppMethodPointer)&Array_Sort_TisRaycastHit_t1187910868_m2107960306_gshared/* 1454*/, (Il2CppMethodPointer)&Array_Sort_TisUICharInfo_t1969298608_TisUICharInfo_t1969298608_m585974581_gshared/* 1455*/, (Il2CppMethodPointer)&Array_Sort_TisUICharInfo_t1969298608_m3265545392_gshared/* 1456*/, (Il2CppMethodPointer)&Array_Sort_TisUICharInfo_t1969298608_m2460026412_gshared/* 1457*/, (Il2CppMethodPointer)&Array_Sort_TisUILineInfo_t335496833_TisUILineInfo_t335496833_m320804204_gshared/* 1458*/, (Il2CppMethodPointer)&Array_Sort_TisUILineInfo_t335496833_m3828810358_gshared/* 1459*/, (Il2CppMethodPointer)&Array_Sort_TisUILineInfo_t335496833_m1676566871_gshared/* 1460*/, (Il2CppMethodPointer)&Array_Sort_TisUIVertex_t1250770280_TisUIVertex_t1250770280_m2690782948_gshared/* 1461*/, (Il2CppMethodPointer)&Array_Sort_TisUIVertex_t1250770280_m1943856722_gshared/* 1462*/, (Il2CppMethodPointer)&Array_Sort_TisUIVertex_t1250770280_m3957018108_gshared/* 1463*/, (Il2CppMethodPointer)&Array_Sort_TisVector2_t524314224_TisVector2_t524314224_m1340762808_gshared/* 1464*/, (Il2CppMethodPointer)&Array_Sort_TisVector2_t524314224_m303756357_gshared/* 1465*/, (Il2CppMethodPointer)&Array_Sort_TisVector2_t524314224_m317592866_gshared/* 1466*/, (Il2CppMethodPointer)&Array_Sort_TisVector3_t298406706_TisVector3_t298406706_m2830705005_gshared/* 1467*/, (Il2CppMethodPointer)&Array_Sort_TisVector3_t298406706_m3067885655_gshared/* 1468*/, (Il2CppMethodPointer)&Array_Sort_TisVector3_t298406706_m2319546211_gshared/* 1469*/, (Il2CppMethodPointer)&Array_Sort_TisVector4_t2979484471_TisVector4_t2979484471_m3225632443_gshared/* 1470*/, (Il2CppMethodPointer)&Array_Sort_TisVector4_t2979484471_m1010182708_gshared/* 1471*/, (Il2CppMethodPointer)&Array_Sort_TisVector4_t2979484471_m1991385457_gshared/* 1472*/, (Il2CppMethodPointer)&Array_swap_TisLevelManagerList_t2308881597_TisLevelManagerList_t2308881597_m2057823501_gshared/* 1473*/, (Il2CppMethodPointer)&Array_swap_TisLevelManagerList_t2308881597_m3625158952_gshared/* 1474*/, (Il2CppMethodPointer)&Array_swap_TisInt32_t4167366966_TisInt32_t4167366966_m854402285_gshared/* 1475*/, (Il2CppMethodPointer)&Array_swap_TisInt32_t4167366966_m1042463546_gshared/* 1476*/, (Il2CppMethodPointer)&Array_swap_TisCustomAttributeNamedArgument_t2457599825_TisCustomAttributeNamedArgument_t2457599825_m4049711816_gshared/* 1477*/, (Il2CppMethodPointer)&Array_swap_TisCustomAttributeNamedArgument_t2457599825_m762841425_gshared/* 1478*/, (Il2CppMethodPointer)&Array_swap_TisCustomAttributeTypedArgument_t3886750721_TisCustomAttributeTypedArgument_t3886750721_m116033847_gshared/* 1479*/, (Il2CppMethodPointer)&Array_swap_TisCustomAttributeTypedArgument_t3886750721_m784248794_gshared/* 1480*/, (Il2CppMethodPointer)&Array_swap_TisColor32_t2751477055_TisColor32_t2751477055_m1273124482_gshared/* 1481*/, (Il2CppMethodPointer)&Array_swap_TisColor32_t2751477055_m42978036_gshared/* 1482*/, (Il2CppMethodPointer)&Array_swap_TisRaycastResult_t2422751240_TisRaycastResult_t2422751240_m705672665_gshared/* 1483*/, (Il2CppMethodPointer)&Array_swap_TisRaycastResult_t2422751240_m3624774825_gshared/* 1484*/, (Il2CppMethodPointer)&Array_swap_TisRaycastHit_t1187910868_m3478203801_gshared/* 1485*/, (Il2CppMethodPointer)&Array_swap_TisUICharInfo_t1969298608_TisUICharInfo_t1969298608_m1300325385_gshared/* 1486*/, (Il2CppMethodPointer)&Array_swap_TisUICharInfo_t1969298608_m1328678757_gshared/* 1487*/, (Il2CppMethodPointer)&Array_swap_TisUILineInfo_t335496833_TisUILineInfo_t335496833_m3030356588_gshared/* 1488*/, (Il2CppMethodPointer)&Array_swap_TisUILineInfo_t335496833_m1655746997_gshared/* 1489*/, (Il2CppMethodPointer)&Array_swap_TisUIVertex_t1250770280_TisUIVertex_t1250770280_m1617632364_gshared/* 1490*/, (Il2CppMethodPointer)&Array_swap_TisUIVertex_t1250770280_m3409296710_gshared/* 1491*/, (Il2CppMethodPointer)&Array_swap_TisVector2_t524314224_TisVector2_t524314224_m821579087_gshared/* 1492*/, (Il2CppMethodPointer)&Array_swap_TisVector2_t524314224_m3729201719_gshared/* 1493*/, (Il2CppMethodPointer)&Array_swap_TisVector3_t298406706_TisVector3_t298406706_m3333991879_gshared/* 1494*/, (Il2CppMethodPointer)&Array_swap_TisVector3_t298406706_m3187338747_gshared/* 1495*/, (Il2CppMethodPointer)&Array_swap_TisVector4_t2979484471_TisVector4_t2979484471_m382320968_gshared/* 1496*/, (Il2CppMethodPointer)&Array_swap_TisVector4_t2979484471_m4244856950_gshared/* 1497*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisDictionaryEntry_t1489291961_TisDictionaryEntry_t1489291961_m1028126951_gshared/* 1498*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t4266255930_TisKeyValuePair_2_t4266255930_m3421010058_gshared/* 1499*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t4266255930_TisRuntimeObject_m2524506367_gshared/* 1500*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisInt32_t4167366966_TisInt32_t4167366966_m1332829965_gshared/* 1501*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisInt32_t4167366966_TisRuntimeObject_m2966129696_gshared/* 1502*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m2243248111_gshared/* 1503*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t4266255930_m3314876048_gshared/* 1504*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisInt32_t4167366966_m4273846995_gshared/* 1505*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m1282507972_gshared/* 1506*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisDictionaryEntry_t1489291961_TisDictionaryEntry_t1489291961_m3644868468_gshared/* 1507*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t2117714080_TisKeyValuePair_2_t2117714080_m1117812060_gshared/* 1508*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t2117714080_TisRuntimeObject_m1122238808_gshared/* 1509*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisIntPtr_t_TisIntPtr_t_m2193023224_gshared/* 1510*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisIntPtr_t_TisRuntimeObject_m1113566459_gshared/* 1511*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m4036630838_gshared/* 1512*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t2117714080_m3342239361_gshared/* 1513*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisIntPtr_t_m4232983603_gshared/* 1514*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m4286272054_gshared/* 1515*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisBoolean_t4021514083_TisBoolean_t4021514083_m3249136845_gshared/* 1516*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisBoolean_t4021514083_TisRuntimeObject_m401386733_gshared/* 1517*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisDictionaryEntry_t1489291961_TisDictionaryEntry_t1489291961_m2109010238_gshared/* 1518*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t1159377151_TisKeyValuePair_2_t1159377151_m1436447686_gshared/* 1519*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t1159377151_TisRuntimeObject_m2453383910_gshared/* 1520*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m2837394539_gshared/* 1521*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisBoolean_t4021514083_m673121942_gshared/* 1522*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t1159377151_m977813604_gshared/* 1523*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m3044072997_gshared/* 1524*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisDictionaryEntry_t1489291961_TisDictionaryEntry_t1489291961_m3496308718_gshared/* 1525*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t1305230034_TisKeyValuePair_2_t1305230034_m1050328604_gshared/* 1526*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t1305230034_TisRuntimeObject_m1309865385_gshared/* 1527*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisInt32_t4167366966_TisInt32_t4167366966_m3460220616_gshared/* 1528*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisInt32_t4167366966_TisRuntimeObject_m4032348104_gshared/* 1529*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m3064237102_gshared/* 1530*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t1305230034_m3857172675_gshared/* 1531*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisInt32_t4167366966_m2743284366_gshared/* 1532*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m2474429877_gshared/* 1533*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisDictionaryEntry_t1489291961_TisDictionaryEntry_t1489291961_m1606010780_gshared/* 1534*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t3838208718_TisKeyValuePair_2_t3838208718_m3494609920_gshared/* 1535*/, (Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t3838208718_TisRuntimeObject_m623701280_gshared/* 1536*/, (Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t3838208718_m2954036666_gshared/* 1537*/, (Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisBoolean_t4021514083_m416848974_gshared/* 1538*/, (Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisInt32_t4167366966_m2734036684_gshared/* 1539*/, (Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisSingle_t2195714798_m761164872_gshared/* 1540*/, (Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisColor_t3622910849_m1840021560_gshared/* 1541*/, (Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisVector2_t524314224_m2569991451_gshared/* 1542*/, (Il2CppMethodPointer)&Mesh_SetListForChannel_TisVector2_t524314224_m443614536_gshared/* 1543*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisBenutzerPW_t3993975976_m1639814727_gshared/* 1544*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisLevelManagerList_t2308881597_m941772306_gshared/* 1545*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisModels_t93544135_m296746746_gshared/* 1546*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisTableRange_t2273327377_m364776286_gshared/* 1547*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisClientCertificateType_t2322709846_m3053415679_gshared/* 1548*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisBoolean_t4021514083_m3366484361_gshared/* 1549*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisByte_t2712847921_m1578298498_gshared/* 1550*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisChar_t4197180777_m1630069085_gshared/* 1551*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisDictionaryEntry_t1489291961_m2425725057_gshared/* 1552*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisLink_t1298993810_m3084220358_gshared/* 1553*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyValuePair_2_t4266255930_m87251705_gshared/* 1554*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyValuePair_2_t2117714080_m2430827259_gshared/* 1555*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyValuePair_2_t1159377151_m2774899278_gshared/* 1556*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyValuePair_2_t1305230034_m3874756037_gshared/* 1557*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyValuePair_2_t3838208718_m1087517288_gshared/* 1558*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisLink_t871362263_m2487540438_gshared/* 1559*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisSlot_t646771150_m3270896876_gshared/* 1560*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisSlot_t1619562839_m1923465207_gshared/* 1561*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisDateTime_t2547387390_m561618117_gshared/* 1562*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisDecimal_t3966699860_m671091884_gshared/* 1563*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisDouble_t339827693_m94388747_gshared/* 1564*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisInt16_t3856708424_m1513402322_gshared/* 1565*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisInt32_t4167366966_m3785370868_gshared/* 1566*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisInt64_t2408544963_m532229124_gshared/* 1567*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisIntPtr_t_m3911013803_gshared/* 1568*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t2457599825_m3711151542_gshared/* 1569*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t3886750721_m1462064263_gshared/* 1570*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisLabelData_t1310448249_m1678487538_gshared/* 1571*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisLabelFixup_t2905765948_m793596388_gshared/* 1572*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisILTokenInfo_t2153999167_m2803871293_gshared/* 1573*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisMonoResource_t119149808_m807576399_gshared/* 1574*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisMonoWin32Resource_t206024608_m3767811123_gshared/* 1575*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisRefEmitPermissionSet_t715845335_m3955804016_gshared/* 1576*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisParameterModifier_t376389310_m4129411515_gshared/* 1577*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisResourceCacheItem_t1320965396_m3594979532_gshared/* 1578*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisResourceInfo_t2484257846_m901436690_gshared/* 1579*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisTypeTag_t4285455534_m458132345_gshared/* 1580*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisSByte_t428380402_m4027572474_gshared/* 1581*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisX509ChainStatus_t3142710829_m722931353_gshared/* 1582*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisSingle_t2195714798_m1798636985_gshared/* 1583*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisMark_t1839454258_m15158400_gshared/* 1584*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisTimeSpan_t129343636_m286491354_gshared/* 1585*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUInt16_t278453288_m1405603003_gshared/* 1586*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUInt32_t346584147_m1394526997_gshared/* 1587*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUInt64_t1634845782_m2223544972_gshared/* 1588*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUriScheme_t3261313531_m168954460_gshared/* 1589*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisToggles_t2831120859_m2511784120_gshared/* 1590*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisTogglesTut_t2696597271_m2917176687_gshared/* 1591*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisColor_t3622910849_m2174067477_gshared/* 1592*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisColor32_t2751477055_m1868278734_gshared/* 1593*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisContactPoint_t3605395583_m475520696_gshared/* 1594*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisRaycastResult_t2422751240_m3876052552_gshared/* 1595*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyframe_t2174701810_m3447503451_gshared/* 1596*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisPlayableBinding_t202000793_m338527195_gshared/* 1597*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisRaycastHit_t1187910868_m2859541404_gshared/* 1598*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisRaycastHit2D_t3865340945_m3923482987_gshared/* 1599*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisHitInfo_t143095646_m4147395697_gshared/* 1600*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisGcAchievementData_t410448212_m2028810548_gshared/* 1601*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisGcScoreData_t4278176256_m957029011_gshared/* 1602*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisTouch_t2985979242_m635534293_gshared/* 1603*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisContentType_t4244931986_m857383035_gshared/* 1604*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUICharInfo_t1969298608_m685959927_gshared/* 1605*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUILineInfo_t335496833_m1902229011_gshared/* 1606*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUIVertex_t1250770280_m1870850544_gshared/* 1607*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisWorkRequest_t1197224859_m1002515595_gshared/* 1608*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisVector2_t524314224_m2309099148_gshared/* 1609*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisVector3_t298406706_m4207670707_gshared/* 1610*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisVector4_t2979484471_m4028071756_gshared/* 1611*/, (Il2CppMethodPointer)&Array_InternalArray__get_Item_TisWorlds_t2374095355_m969904493_gshared/* 1612*/, (Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector2_t524314224_m2858776280_gshared/* 1613*/, (Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector3_t298406706_m3011721871_gshared/* 1614*/, (Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector4_t2979484471_m559431034_gshared/* 1615*/, (Il2CppMethodPointer)&Enumerable_ElementAt_TisKeyValuePair_2_t3838208718_m1832326784_gshared/* 1616*/, (Il2CppMethodPointer)&Action_1__ctor_m1867251254_gshared/* 1617*/, (Il2CppMethodPointer)&Action_1_BeginInvoke_m1559925620_gshared/* 1618*/, (Il2CppMethodPointer)&Action_1_EndInvoke_m3650103837_gshared/* 1619*/, (Il2CppMethodPointer)&Action_2_BeginInvoke_m3225566325_gshared/* 1620*/, (Il2CppMethodPointer)&Action_2_EndInvoke_m4289807925_gshared/* 1621*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0__ctor_m2331507144_gshared/* 1622*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m1910595620_gshared/* 1623*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m341167801_gshared/* 1624*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m3741015137_gshared/* 1625*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Dispose_m2928357184_gshared/* 1626*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Reset_m157477952_gshared/* 1627*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0__ctor_m3938913077_gshared/* 1628*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m934719756_gshared/* 1629*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m3816894891_gshared/* 1630*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m3528827788_gshared/* 1631*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Dispose_m296196750_gshared/* 1632*/, (Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Reset_m1224203810_gshared/* 1633*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1__ctor_m3542285803_gshared/* 1634*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m1461094058_gshared/* 1635*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Item_m2987335553_gshared/* 1636*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_set_Item_m2288958316_gshared/* 1637*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Count_m3080258109_gshared/* 1638*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_get_IsReadOnly_m621742565_gshared/* 1639*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Add_m1368408192_gshared/* 1640*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Clear_m3720268532_gshared/* 1641*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Contains_m2287788353_gshared/* 1642*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_CopyTo_m2030142291_gshared/* 1643*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_GetEnumerator_m3078548189_gshared/* 1644*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_IndexOf_m2526509387_gshared/* 1645*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Insert_m3789181325_gshared/* 1646*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Remove_m1414922031_gshared/* 1647*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_RemoveAt_m2067346983_gshared/* 1648*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_ReadOnlyError_m3938485205_gshared/* 1649*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1__ctor_m1687942460_gshared/* 1650*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m3960072259_gshared/* 1651*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Item_m1801704689_gshared/* 1652*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_set_Item_m2466701773_gshared/* 1653*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Count_m2287988486_gshared/* 1654*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_get_IsReadOnly_m3286656158_gshared/* 1655*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Add_m2990887014_gshared/* 1656*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Clear_m1435562610_gshared/* 1657*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Contains_m726904112_gshared/* 1658*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_CopyTo_m2228145506_gshared/* 1659*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_GetEnumerator_m893747968_gshared/* 1660*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_IndexOf_m2483405623_gshared/* 1661*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Insert_m1681561889_gshared/* 1662*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_Remove_m388643886_gshared/* 1663*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_RemoveAt_m3421182070_gshared/* 1664*/, (Il2CppMethodPointer)&ArrayReadOnlyList_1_ReadOnlyError_m2557836598_gshared/* 1665*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2954555614_AdjustorThunk/* 1666*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m621216111_AdjustorThunk/* 1667*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2708641681_AdjustorThunk/* 1668*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3595590113_AdjustorThunk/* 1669*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m118153131_AdjustorThunk/* 1670*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2145303665_AdjustorThunk/* 1671*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1909215430_AdjustorThunk/* 1672*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1130579338_AdjustorThunk/* 1673*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3209113514_AdjustorThunk/* 1674*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1354196259_AdjustorThunk/* 1675*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1310904675_AdjustorThunk/* 1676*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3273073448_AdjustorThunk/* 1677*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1749170280_AdjustorThunk/* 1678*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1699055824_AdjustorThunk/* 1679*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m331260876_AdjustorThunk/* 1680*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m350305386_AdjustorThunk/* 1681*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1284966993_AdjustorThunk/* 1682*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1831005034_AdjustorThunk/* 1683*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m463073499_AdjustorThunk/* 1684*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1577080488_AdjustorThunk/* 1685*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3149675672_AdjustorThunk/* 1686*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1507520104_AdjustorThunk/* 1687*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1823792195_AdjustorThunk/* 1688*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1552976843_AdjustorThunk/* 1689*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2077904836_AdjustorThunk/* 1690*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1852503017_AdjustorThunk/* 1691*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1347939924_AdjustorThunk/* 1692*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m4265644527_AdjustorThunk/* 1693*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2987634118_AdjustorThunk/* 1694*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2099112446_AdjustorThunk/* 1695*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3159582858_AdjustorThunk/* 1696*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1819667470_AdjustorThunk/* 1697*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m903490052_AdjustorThunk/* 1698*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1056046638_AdjustorThunk/* 1699*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3035749156_AdjustorThunk/* 1700*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m171320860_AdjustorThunk/* 1701*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2257047447_AdjustorThunk/* 1702*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3218203776_AdjustorThunk/* 1703*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1602328809_AdjustorThunk/* 1704*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2477428637_AdjustorThunk/* 1705*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2860513495_AdjustorThunk/* 1706*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4239517125_AdjustorThunk/* 1707*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2970282489_AdjustorThunk/* 1708*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3524714682_AdjustorThunk/* 1709*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m192594889_AdjustorThunk/* 1710*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1019486149_AdjustorThunk/* 1711*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m964779798_AdjustorThunk/* 1712*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1144478610_AdjustorThunk/* 1713*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m4075204165_AdjustorThunk/* 1714*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m152398125_AdjustorThunk/* 1715*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m176254425_AdjustorThunk/* 1716*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1315944378_AdjustorThunk/* 1717*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1303644926_AdjustorThunk/* 1718*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2473847258_AdjustorThunk/* 1719*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2765353950_AdjustorThunk/* 1720*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m926827729_AdjustorThunk/* 1721*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3588683778_AdjustorThunk/* 1722*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m225091919_AdjustorThunk/* 1723*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1336535_AdjustorThunk/* 1724*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3168718875_AdjustorThunk/* 1725*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3240220137_AdjustorThunk/* 1726*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3492341497_AdjustorThunk/* 1727*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m276692195_AdjustorThunk/* 1728*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m982860432_AdjustorThunk/* 1729*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2477917440_AdjustorThunk/* 1730*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2766009755_AdjustorThunk/* 1731*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2531483620_AdjustorThunk/* 1732*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1849944513_AdjustorThunk/* 1733*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3653199239_AdjustorThunk/* 1734*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m652082494_AdjustorThunk/* 1735*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1691435856_AdjustorThunk/* 1736*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2818933470_AdjustorThunk/* 1737*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3790265890_AdjustorThunk/* 1738*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1867973080_AdjustorThunk/* 1739*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2276104400_AdjustorThunk/* 1740*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m185280300_AdjustorThunk/* 1741*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4229683352_AdjustorThunk/* 1742*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1208955867_AdjustorThunk/* 1743*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m265251778_AdjustorThunk/* 1744*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3194531693_AdjustorThunk/* 1745*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2544812909_AdjustorThunk/* 1746*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2163370643_AdjustorThunk/* 1747*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3702257913_AdjustorThunk/* 1748*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3918695363_AdjustorThunk/* 1749*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2383925307_AdjustorThunk/* 1750*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2548808973_AdjustorThunk/* 1751*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m707107321_AdjustorThunk/* 1752*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3789368008_AdjustorThunk/* 1753*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1532580241_AdjustorThunk/* 1754*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m746318391_AdjustorThunk/* 1755*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3722273560_AdjustorThunk/* 1756*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m156891836_AdjustorThunk/* 1757*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1535710891_AdjustorThunk/* 1758*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1594096137_AdjustorThunk/* 1759*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3367010762_AdjustorThunk/* 1760*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3002072864_AdjustorThunk/* 1761*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2042020692_AdjustorThunk/* 1762*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1539175683_AdjustorThunk/* 1763*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2630433543_AdjustorThunk/* 1764*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m605038429_AdjustorThunk/* 1765*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3775236641_AdjustorThunk/* 1766*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m516120937_AdjustorThunk/* 1767*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3423192447_AdjustorThunk/* 1768*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1684204418_AdjustorThunk/* 1769*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1847035345_AdjustorThunk/* 1770*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1197912107_AdjustorThunk/* 1771*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2152325101_AdjustorThunk/* 1772*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m659956940_AdjustorThunk/* 1773*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2248088200_AdjustorThunk/* 1774*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m49466819_AdjustorThunk/* 1775*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3331303039_AdjustorThunk/* 1776*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1929558503_AdjustorThunk/* 1777*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3768468326_AdjustorThunk/* 1778*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3235002042_AdjustorThunk/* 1779*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m4185615929_AdjustorThunk/* 1780*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3529075420_AdjustorThunk/* 1781*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m11928062_AdjustorThunk/* 1782*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1996518999_AdjustorThunk/* 1783*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1940482398_AdjustorThunk/* 1784*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3940061595_AdjustorThunk/* 1785*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m797791525_AdjustorThunk/* 1786*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3184161955_AdjustorThunk/* 1787*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3218670575_AdjustorThunk/* 1788*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2609229290_AdjustorThunk/* 1789*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m734896839_AdjustorThunk/* 1790*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4162718622_AdjustorThunk/* 1791*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2009997529_AdjustorThunk/* 1792*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m384336365_AdjustorThunk/* 1793*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m943379288_AdjustorThunk/* 1794*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3231542969_AdjustorThunk/* 1795*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2119309803_AdjustorThunk/* 1796*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2547868553_AdjustorThunk/* 1797*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1496511723_AdjustorThunk/* 1798*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m942171010_AdjustorThunk/* 1799*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3906751592_AdjustorThunk/* 1800*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1342822209_AdjustorThunk/* 1801*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2962384531_AdjustorThunk/* 1802*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m706661590_AdjustorThunk/* 1803*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m148385370_AdjustorThunk/* 1804*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3592453161_AdjustorThunk/* 1805*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m718461907_AdjustorThunk/* 1806*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3574700231_AdjustorThunk/* 1807*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2197148805_AdjustorThunk/* 1808*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3588684615_AdjustorThunk/* 1809*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2216598972_AdjustorThunk/* 1810*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1312228207_AdjustorThunk/* 1811*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3195168433_AdjustorThunk/* 1812*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2905821414_AdjustorThunk/* 1813*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2228471020_AdjustorThunk/* 1814*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m961554721_AdjustorThunk/* 1815*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1049080820_AdjustorThunk/* 1816*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m904095276_AdjustorThunk/* 1817*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3359359569_AdjustorThunk/* 1818*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m845770530_AdjustorThunk/* 1819*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2366543594_AdjustorThunk/* 1820*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m312897904_AdjustorThunk/* 1821*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2626006088_AdjustorThunk/* 1822*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1955839169_AdjustorThunk/* 1823*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4103461567_AdjustorThunk/* 1824*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m381312276_AdjustorThunk/* 1825*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3695518708_AdjustorThunk/* 1826*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3741092175_AdjustorThunk/* 1827*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1757258302_AdjustorThunk/* 1828*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m720506133_AdjustorThunk/* 1829*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1995478411_AdjustorThunk/* 1830*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3926309811_AdjustorThunk/* 1831*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m63971460_AdjustorThunk/* 1832*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1430666954_AdjustorThunk/* 1833*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2149267684_AdjustorThunk/* 1834*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m622194692_AdjustorThunk/* 1835*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2271113815_AdjustorThunk/* 1836*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2406569796_AdjustorThunk/* 1837*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m385415656_AdjustorThunk/* 1838*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1486578125_AdjustorThunk/* 1839*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2224777342_AdjustorThunk/* 1840*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3438748692_AdjustorThunk/* 1841*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3744097948_AdjustorThunk/* 1842*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3771557484_AdjustorThunk/* 1843*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1187031621_AdjustorThunk/* 1844*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2259979444_AdjustorThunk/* 1845*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3206013439_AdjustorThunk/* 1846*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1562319719_AdjustorThunk/* 1847*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2156464500_AdjustorThunk/* 1848*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2268675538_AdjustorThunk/* 1849*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m432541996_AdjustorThunk/* 1850*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m190475148_AdjustorThunk/* 1851*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2353119765_AdjustorThunk/* 1852*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3852572132_AdjustorThunk/* 1853*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2265717861_AdjustorThunk/* 1854*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m608682809_AdjustorThunk/* 1855*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m198451628_AdjustorThunk/* 1856*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1304399508_AdjustorThunk/* 1857*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2191008063_AdjustorThunk/* 1858*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1337006413_AdjustorThunk/* 1859*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2150298411_AdjustorThunk/* 1860*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m424788309_AdjustorThunk/* 1861*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3501209602_AdjustorThunk/* 1862*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m558248804_AdjustorThunk/* 1863*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3532474580_AdjustorThunk/* 1864*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3835359602_AdjustorThunk/* 1865*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3963505726_AdjustorThunk/* 1866*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1658462019_AdjustorThunk/* 1867*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3763133621_AdjustorThunk/* 1868*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1262356332_AdjustorThunk/* 1869*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1360257828_AdjustorThunk/* 1870*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1368792949_AdjustorThunk/* 1871*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3414302523_AdjustorThunk/* 1872*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2183064769_AdjustorThunk/* 1873*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1026228656_AdjustorThunk/* 1874*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3080577109_AdjustorThunk/* 1875*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3359475296_AdjustorThunk/* 1876*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1404613783_AdjustorThunk/* 1877*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2832737226_AdjustorThunk/* 1878*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m310841788_AdjustorThunk/* 1879*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3748048874_AdjustorThunk/* 1880*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4105881341_AdjustorThunk/* 1881*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1242770844_AdjustorThunk/* 1882*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2304571289_AdjustorThunk/* 1883*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m560460330_AdjustorThunk/* 1884*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1922363589_AdjustorThunk/* 1885*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m474280076_AdjustorThunk/* 1886*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2317167207_AdjustorThunk/* 1887*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2903677548_AdjustorThunk/* 1888*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2877646458_AdjustorThunk/* 1889*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2213450065_AdjustorThunk/* 1890*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1462450161_AdjustorThunk/* 1891*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1311658855_AdjustorThunk/* 1892*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2252767536_AdjustorThunk/* 1893*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3025379094_AdjustorThunk/* 1894*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3438105506_AdjustorThunk/* 1895*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1282316670_AdjustorThunk/* 1896*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m4122483747_AdjustorThunk/* 1897*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m939800944_AdjustorThunk/* 1898*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3670090156_AdjustorThunk/* 1899*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3903591958_AdjustorThunk/* 1900*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2717672878_AdjustorThunk/* 1901*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m286665964_AdjustorThunk/* 1902*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2475473881_AdjustorThunk/* 1903*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1816627747_AdjustorThunk/* 1904*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3704788043_AdjustorThunk/* 1905*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1855967696_AdjustorThunk/* 1906*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1591885875_AdjustorThunk/* 1907*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m574450348_AdjustorThunk/* 1908*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m284910735_AdjustorThunk/* 1909*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2365251219_AdjustorThunk/* 1910*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2295348129_AdjustorThunk/* 1911*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m359064270_AdjustorThunk/* 1912*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3077042088_AdjustorThunk/* 1913*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1844716427_AdjustorThunk/* 1914*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m786613463_AdjustorThunk/* 1915*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m643407953_AdjustorThunk/* 1916*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4249182996_AdjustorThunk/* 1917*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3732221897_AdjustorThunk/* 1918*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2332488018_AdjustorThunk/* 1919*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2597810018_AdjustorThunk/* 1920*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m908602246_AdjustorThunk/* 1921*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m450451254_AdjustorThunk/* 1922*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m737496674_AdjustorThunk/* 1923*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3880760329_AdjustorThunk/* 1924*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m983123554_AdjustorThunk/* 1925*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3252609157_AdjustorThunk/* 1926*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m35336930_AdjustorThunk/* 1927*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m198020718_AdjustorThunk/* 1928*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1127609415_AdjustorThunk/* 1929*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2093850970_AdjustorThunk/* 1930*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2170875542_AdjustorThunk/* 1931*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m295234806_AdjustorThunk/* 1932*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m419778309_AdjustorThunk/* 1933*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2816101918_AdjustorThunk/* 1934*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2238110506_AdjustorThunk/* 1935*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2908495714_AdjustorThunk/* 1936*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m773596757_AdjustorThunk/* 1937*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2476821320_AdjustorThunk/* 1938*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m323180976_AdjustorThunk/* 1939*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2932635695_AdjustorThunk/* 1940*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3711361361_AdjustorThunk/* 1941*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1964608148_AdjustorThunk/* 1942*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2733029860_AdjustorThunk/* 1943*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m393157977_AdjustorThunk/* 1944*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m4002815211_AdjustorThunk/* 1945*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4236685595_AdjustorThunk/* 1946*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1762731946_AdjustorThunk/* 1947*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3491436000_AdjustorThunk/* 1948*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2145359333_AdjustorThunk/* 1949*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3611097332_AdjustorThunk/* 1950*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2967979357_AdjustorThunk/* 1951*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1819726936_AdjustorThunk/* 1952*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m551887749_AdjustorThunk/* 1953*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2621847094_AdjustorThunk/* 1954*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2249065832_AdjustorThunk/* 1955*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2154111598_AdjustorThunk/* 1956*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1280953117_AdjustorThunk/* 1957*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2790586739_AdjustorThunk/* 1958*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2480423859_AdjustorThunk/* 1959*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3534736362_AdjustorThunk/* 1960*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1480383077_AdjustorThunk/* 1961*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2722915826_AdjustorThunk/* 1962*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m655691125_AdjustorThunk/* 1963*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3371111470_AdjustorThunk/* 1964*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1373961216_AdjustorThunk/* 1965*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1558061542_AdjustorThunk/* 1966*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m142939733_AdjustorThunk/* 1967*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m272374290_AdjustorThunk/* 1968*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3940075483_AdjustorThunk/* 1969*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2793324796_AdjustorThunk/* 1970*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2247053161_AdjustorThunk/* 1971*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2827807128_AdjustorThunk/* 1972*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3990010472_AdjustorThunk/* 1973*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1955567765_AdjustorThunk/* 1974*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2911367132_AdjustorThunk/* 1975*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3983224181_AdjustorThunk/* 1976*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3694853055_AdjustorThunk/* 1977*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3746559084_AdjustorThunk/* 1978*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2322505650_AdjustorThunk/* 1979*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m431312153_AdjustorThunk/* 1980*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1533402526_AdjustorThunk/* 1981*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m702627516_AdjustorThunk/* 1982*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3260998282_AdjustorThunk/* 1983*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3231179789_AdjustorThunk/* 1984*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m981317795_AdjustorThunk/* 1985*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1264862208_AdjustorThunk/* 1986*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1676712754_AdjustorThunk/* 1987*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3592685261_AdjustorThunk/* 1988*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2169370909_AdjustorThunk/* 1989*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m887310966_AdjustorThunk/* 1990*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1519890311_AdjustorThunk/* 1991*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m501646942_AdjustorThunk/* 1992*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2273966252_AdjustorThunk/* 1993*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2289690223_AdjustorThunk/* 1994*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3740096797_AdjustorThunk/* 1995*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3960121478_AdjustorThunk/* 1996*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2309830939_AdjustorThunk/* 1997*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m549534391_AdjustorThunk/* 1998*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m438865398_AdjustorThunk/* 1999*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4292146206_AdjustorThunk/* 2000*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3048158376_AdjustorThunk/* 2001*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2817316791_AdjustorThunk/* 2002*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2126727513_AdjustorThunk/* 2003*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1543287904_AdjustorThunk/* 2004*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m944623400_AdjustorThunk/* 2005*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2116305105_AdjustorThunk/* 2006*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3969825731_AdjustorThunk/* 2007*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1156652209_AdjustorThunk/* 2008*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m906741733_AdjustorThunk/* 2009*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2548023587_AdjustorThunk/* 2010*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m234834466_AdjustorThunk/* 2011*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3266424213_AdjustorThunk/* 2012*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2181589682_AdjustorThunk/* 2013*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1792711905_AdjustorThunk/* 2014*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3699740935_AdjustorThunk/* 2015*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4268622422_AdjustorThunk/* 2016*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1378154407_AdjustorThunk/* 2017*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m525023810_AdjustorThunk/* 2018*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3205836086_AdjustorThunk/* 2019*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1749921727_AdjustorThunk/* 2020*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1810271023_AdjustorThunk/* 2021*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m97342327_AdjustorThunk/* 2022*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m4094021704_AdjustorThunk/* 2023*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2627623589_AdjustorThunk/* 2024*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2020445678_AdjustorThunk/* 2025*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2632413630_AdjustorThunk/* 2026*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2888652107_AdjustorThunk/* 2027*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3514059145_AdjustorThunk/* 2028*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3799620392_AdjustorThunk/* 2029*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2398787112_AdjustorThunk/* 2030*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3192151726_AdjustorThunk/* 2031*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m697376228_AdjustorThunk/* 2032*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2763081452_AdjustorThunk/* 2033*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1535284039_AdjustorThunk/* 2034*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1750268589_AdjustorThunk/* 2035*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3975641656_AdjustorThunk/* 2036*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3210456976_AdjustorThunk/* 2037*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1357061361_AdjustorThunk/* 2038*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2434483971_AdjustorThunk/* 2039*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3354168180_AdjustorThunk/* 2040*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3581377393_AdjustorThunk/* 2041*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2995093898_AdjustorThunk/* 2042*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1770635135_AdjustorThunk/* 2043*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3251892365_AdjustorThunk/* 2044*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3468521213_AdjustorThunk/* 2045*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3380912865_AdjustorThunk/* 2046*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2461835203_AdjustorThunk/* 2047*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3283418413_AdjustorThunk/* 2048*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4200923779_AdjustorThunk/* 2049*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m766092231_AdjustorThunk/* 2050*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1862549010_AdjustorThunk/* 2051*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3794436730_AdjustorThunk/* 2052*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2334298401_AdjustorThunk/* 2053*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3484245270_AdjustorThunk/* 2054*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4218131491_AdjustorThunk/* 2055*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m738345377_AdjustorThunk/* 2056*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1098731584_AdjustorThunk/* 2057*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m763600615_AdjustorThunk/* 2058*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m797655115_AdjustorThunk/* 2059*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1393825554_AdjustorThunk/* 2060*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1976519977_AdjustorThunk/* 2061*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m502141539_AdjustorThunk/* 2062*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3255284624_AdjustorThunk/* 2063*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2683712916_AdjustorThunk/* 2064*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1359619596_AdjustorThunk/* 2065*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3246817258_AdjustorThunk/* 2066*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4212690315_AdjustorThunk/* 2067*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2548085301_AdjustorThunk/* 2068*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m706626501_AdjustorThunk/* 2069*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1443989230_AdjustorThunk/* 2070*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m414585065_AdjustorThunk/* 2071*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m914655433_AdjustorThunk/* 2072*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2742206882_AdjustorThunk/* 2073*/, (Il2CppMethodPointer)&InternalEnumerator_1__ctor_m690112672_AdjustorThunk/* 2074*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m337039808_AdjustorThunk/* 2075*/, (Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1057057084_AdjustorThunk/* 2076*/, (Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2239216693_AdjustorThunk/* 2077*/, (Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3428757321_AdjustorThunk/* 2078*/, (Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1511526714_AdjustorThunk/* 2079*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m1518904427_gshared/* 2080*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m180341257_gshared/* 2081*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3691432185_gshared/* 2082*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m1186418147_gshared/* 2083*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2520792823_gshared/* 2084*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m171777074_gshared/* 2085*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2383809651_gshared/* 2086*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m1377513784_gshared/* 2087*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m1135990511_gshared/* 2088*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m4045020474_gshared/* 2089*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m257303511_gshared/* 2090*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m3792593597_gshared/* 2091*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m706234635_gshared/* 2092*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m2895730461_gshared/* 2093*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3144182115_gshared/* 2094*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m3139143409_gshared/* 2095*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2085016497_gshared/* 2096*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m1004594602_gshared/* 2097*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3507207572_gshared/* 2098*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m1151109652_gshared/* 2099*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2150478794_gshared/* 2100*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m1681300516_gshared/* 2101*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3095422300_gshared/* 2102*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m1078315542_gshared/* 2103*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3960260142_gshared/* 2104*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m1692362760_gshared/* 2105*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3087461155_gshared/* 2106*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m681077376_gshared/* 2107*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m915283052_gshared/* 2108*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m2310684883_gshared/* 2109*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m901461582_gshared/* 2110*/, (Il2CppMethodPointer)&DefaultComparer_Compare_m4247789379_gshared/* 2111*/, (Il2CppMethodPointer)&Comparer_1__ctor_m2389195041_gshared/* 2112*/, (Il2CppMethodPointer)&Comparer_1__cctor_m684393505_gshared/* 2113*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1877479000_gshared/* 2114*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m2560889371_gshared/* 2115*/, (Il2CppMethodPointer)&Comparer_1__ctor_m373265150_gshared/* 2116*/, (Il2CppMethodPointer)&Comparer_1__cctor_m2253929821_gshared/* 2117*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1789359811_gshared/* 2118*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m823137468_gshared/* 2119*/, (Il2CppMethodPointer)&Comparer_1__ctor_m1227107450_gshared/* 2120*/, (Il2CppMethodPointer)&Comparer_1__cctor_m893012121_gshared/* 2121*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m942767232_gshared/* 2122*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m2741542078_gshared/* 2123*/, (Il2CppMethodPointer)&Comparer_1__ctor_m3477737230_gshared/* 2124*/, (Il2CppMethodPointer)&Comparer_1__cctor_m3609703628_gshared/* 2125*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m395195913_gshared/* 2126*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m616822732_gshared/* 2127*/, (Il2CppMethodPointer)&Comparer_1__ctor_m187380777_gshared/* 2128*/, (Il2CppMethodPointer)&Comparer_1__cctor_m2264815890_gshared/* 2129*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1143873396_gshared/* 2130*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m1898235373_gshared/* 2131*/, (Il2CppMethodPointer)&Comparer_1__ctor_m3101467896_gshared/* 2132*/, (Il2CppMethodPointer)&Comparer_1__cctor_m2891722579_gshared/* 2133*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1537522823_gshared/* 2134*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m3673896534_gshared/* 2135*/, (Il2CppMethodPointer)&Comparer_1__ctor_m536798075_gshared/* 2136*/, (Il2CppMethodPointer)&Comparer_1__cctor_m9783457_gshared/* 2137*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m3566832957_gshared/* 2138*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m295347534_gshared/* 2139*/, (Il2CppMethodPointer)&Comparer_1__ctor_m1990700529_gshared/* 2140*/, (Il2CppMethodPointer)&Comparer_1__cctor_m543673492_gshared/* 2141*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1121897463_gshared/* 2142*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m3960571354_gshared/* 2143*/, (Il2CppMethodPointer)&Comparer_1__ctor_m919845466_gshared/* 2144*/, (Il2CppMethodPointer)&Comparer_1__cctor_m2925566354_gshared/* 2145*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1255410834_gshared/* 2146*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m2322270732_gshared/* 2147*/, (Il2CppMethodPointer)&Comparer_1__ctor_m370242207_gshared/* 2148*/, (Il2CppMethodPointer)&Comparer_1__cctor_m3728113484_gshared/* 2149*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1065691606_gshared/* 2150*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m3443010208_gshared/* 2151*/, (Il2CppMethodPointer)&Comparer_1__ctor_m1364081744_gshared/* 2152*/, (Il2CppMethodPointer)&Comparer_1__cctor_m2683845479_gshared/* 2153*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1085817454_gshared/* 2154*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m2135587558_gshared/* 2155*/, (Il2CppMethodPointer)&Comparer_1__ctor_m1982288092_gshared/* 2156*/, (Il2CppMethodPointer)&Comparer_1__cctor_m2505897972_gshared/* 2157*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1585360692_gshared/* 2158*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m3196820089_gshared/* 2159*/, (Il2CppMethodPointer)&Comparer_1__ctor_m2766918855_gshared/* 2160*/, (Il2CppMethodPointer)&Comparer_1__cctor_m3772043511_gshared/* 2161*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m2405984150_gshared/* 2162*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m1603913412_gshared/* 2163*/, (Il2CppMethodPointer)&Comparer_1__ctor_m620592517_gshared/* 2164*/, (Il2CppMethodPointer)&Comparer_1__cctor_m3618303085_gshared/* 2165*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m4155993926_gshared/* 2166*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m2438234297_gshared/* 2167*/, (Il2CppMethodPointer)&Comparer_1__ctor_m294536072_gshared/* 2168*/, (Il2CppMethodPointer)&Comparer_1__cctor_m313900081_gshared/* 2169*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m2581908568_gshared/* 2170*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m1705698745_gshared/* 2171*/, (Il2CppMethodPointer)&Comparer_1__ctor_m3413926793_gshared/* 2172*/, (Il2CppMethodPointer)&Comparer_1__cctor_m4032306312_gshared/* 2173*/, (Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m3674729749_gshared/* 2174*/, (Il2CppMethodPointer)&Comparer_1_get_Default_m1528955527_gshared/* 2175*/, (Il2CppMethodPointer)&Enumerator__ctor_m1932705720_AdjustorThunk/* 2176*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m211234110_AdjustorThunk/* 2177*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3291317232_AdjustorThunk/* 2178*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1363867281_AdjustorThunk/* 2179*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m1324897511_AdjustorThunk/* 2180*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3303291872_AdjustorThunk/* 2181*/, (Il2CppMethodPointer)&Enumerator_get_CurrentKey_m3102505877_AdjustorThunk/* 2182*/, (Il2CppMethodPointer)&Enumerator_get_CurrentValue_m3307438096_AdjustorThunk/* 2183*/, (Il2CppMethodPointer)&Enumerator_Reset_m448283569_AdjustorThunk/* 2184*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m2133093440_AdjustorThunk/* 2185*/, (Il2CppMethodPointer)&Enumerator_VerifyCurrent_m2035321264_AdjustorThunk/* 2186*/, (Il2CppMethodPointer)&Enumerator__ctor_m2788532977_AdjustorThunk/* 2187*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3583867014_AdjustorThunk/* 2188*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m32287131_AdjustorThunk/* 2189*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m300494221_AdjustorThunk/* 2190*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m1456456808_AdjustorThunk/* 2191*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2237094973_AdjustorThunk/* 2192*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1557465500_AdjustorThunk/* 2193*/, (Il2CppMethodPointer)&Enumerator_get_Current_m1001791183_AdjustorThunk/* 2194*/, (Il2CppMethodPointer)&Enumerator_get_CurrentKey_m3824944329_AdjustorThunk/* 2195*/, (Il2CppMethodPointer)&Enumerator_get_CurrentValue_m3866415129_AdjustorThunk/* 2196*/, (Il2CppMethodPointer)&Enumerator_Reset_m536862429_AdjustorThunk/* 2197*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m2825396839_AdjustorThunk/* 2198*/, (Il2CppMethodPointer)&Enumerator_VerifyCurrent_m1723295917_AdjustorThunk/* 2199*/, (Il2CppMethodPointer)&Enumerator_Dispose_m267234577_AdjustorThunk/* 2200*/, (Il2CppMethodPointer)&Enumerator__ctor_m1197046281_AdjustorThunk/* 2201*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m1342153644_AdjustorThunk/* 2202*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m1058536535_AdjustorThunk/* 2203*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m2830243707_AdjustorThunk/* 2204*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3351109082_AdjustorThunk/* 2205*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1860996797_AdjustorThunk/* 2206*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m519528409_AdjustorThunk/* 2207*/, (Il2CppMethodPointer)&Enumerator_get_Current_m2366863555_AdjustorThunk/* 2208*/, (Il2CppMethodPointer)&Enumerator_get_CurrentKey_m1709452556_AdjustorThunk/* 2209*/, (Il2CppMethodPointer)&Enumerator_get_CurrentValue_m1225153626_AdjustorThunk/* 2210*/, (Il2CppMethodPointer)&Enumerator_Reset_m2381302484_AdjustorThunk/* 2211*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m1255047066_AdjustorThunk/* 2212*/, (Il2CppMethodPointer)&Enumerator_VerifyCurrent_m3460286802_AdjustorThunk/* 2213*/, (Il2CppMethodPointer)&Enumerator_Dispose_m2069432408_AdjustorThunk/* 2214*/, (Il2CppMethodPointer)&Enumerator__ctor_m3292914202_AdjustorThunk/* 2215*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2762311908_AdjustorThunk/* 2216*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3205553024_AdjustorThunk/* 2217*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m2921627203_AdjustorThunk/* 2218*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4074892837_AdjustorThunk/* 2219*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2553251025_AdjustorThunk/* 2220*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1459653649_AdjustorThunk/* 2221*/, (Il2CppMethodPointer)&Enumerator_get_Current_m3979892791_AdjustorThunk/* 2222*/, (Il2CppMethodPointer)&Enumerator_get_CurrentKey_m667162401_AdjustorThunk/* 2223*/, (Il2CppMethodPointer)&Enumerator_get_CurrentValue_m305623701_AdjustorThunk/* 2224*/, (Il2CppMethodPointer)&Enumerator_Reset_m455828868_AdjustorThunk/* 2225*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m3772829388_AdjustorThunk/* 2226*/, (Il2CppMethodPointer)&Enumerator_VerifyCurrent_m1103918958_AdjustorThunk/* 2227*/, (Il2CppMethodPointer)&Enumerator_Dispose_m896111175_AdjustorThunk/* 2228*/, (Il2CppMethodPointer)&Enumerator__ctor_m1825055562_AdjustorThunk/* 2229*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3270328167_AdjustorThunk/* 2230*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m49427229_AdjustorThunk/* 2231*/, (Il2CppMethodPointer)&Enumerator_Dispose_m2658312612_AdjustorThunk/* 2232*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m4001332805_AdjustorThunk/* 2233*/, (Il2CppMethodPointer)&Enumerator_get_Current_m976821678_AdjustorThunk/* 2234*/, (Il2CppMethodPointer)&Enumerator__ctor_m4179268629_AdjustorThunk/* 2235*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m395432428_AdjustorThunk/* 2236*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2303063541_AdjustorThunk/* 2237*/, (Il2CppMethodPointer)&Enumerator_Dispose_m3569424230_AdjustorThunk/* 2238*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m404813974_AdjustorThunk/* 2239*/, (Il2CppMethodPointer)&Enumerator_get_Current_m427037079_AdjustorThunk/* 2240*/, (Il2CppMethodPointer)&Enumerator__ctor_m4086444019_AdjustorThunk/* 2241*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2576107779_AdjustorThunk/* 2242*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2288898442_AdjustorThunk/* 2243*/, (Il2CppMethodPointer)&Enumerator_Dispose_m1990423163_AdjustorThunk/* 2244*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m4123541973_AdjustorThunk/* 2245*/, (Il2CppMethodPointer)&Enumerator_get_Current_m652977417_AdjustorThunk/* 2246*/, (Il2CppMethodPointer)&Enumerator__ctor_m3878017316_AdjustorThunk/* 2247*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2621392120_AdjustorThunk/* 2248*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3522185447_AdjustorThunk/* 2249*/, (Il2CppMethodPointer)&Enumerator_Dispose_m24428298_AdjustorThunk/* 2250*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m2189578951_AdjustorThunk/* 2251*/, (Il2CppMethodPointer)&Enumerator_get_Current_m3821758309_AdjustorThunk/* 2252*/, (Il2CppMethodPointer)&KeyCollection__ctor_m1640243250_gshared/* 2253*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Add_m33268894_gshared/* 2254*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Clear_m617370654_gshared/* 2255*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Contains_m3322626803_gshared/* 2256*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Remove_m1789933409_gshared/* 2257*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_IEnumerableU3CTKeyU3E_GetEnumerator_m2020714538_gshared/* 2258*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_CopyTo_m2797306409_gshared/* 2259*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_IEnumerable_GetEnumerator_m911670557_gshared/* 2260*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_get_IsReadOnly_m2568452855_gshared/* 2261*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_get_IsSynchronized_m893771413_gshared/* 2262*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_get_SyncRoot_m323077812_gshared/* 2263*/, (Il2CppMethodPointer)&KeyCollection_CopyTo_m3908655029_gshared/* 2264*/, (Il2CppMethodPointer)&KeyCollection_GetEnumerator_m3976526469_gshared/* 2265*/, (Il2CppMethodPointer)&KeyCollection_get_Count_m4140937719_gshared/* 2266*/, (Il2CppMethodPointer)&KeyCollection__ctor_m3852927763_gshared/* 2267*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Add_m4004752208_gshared/* 2268*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Clear_m623095589_gshared/* 2269*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Contains_m109702748_gshared/* 2270*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Remove_m2889927377_gshared/* 2271*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_IEnumerableU3CTKeyU3E_GetEnumerator_m2137849265_gshared/* 2272*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_CopyTo_m2971312336_gshared/* 2273*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_IEnumerable_GetEnumerator_m3680605832_gshared/* 2274*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_get_IsReadOnly_m237008770_gshared/* 2275*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_get_IsSynchronized_m181092864_gshared/* 2276*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_get_SyncRoot_m1259921786_gshared/* 2277*/, (Il2CppMethodPointer)&KeyCollection_CopyTo_m421771826_gshared/* 2278*/, (Il2CppMethodPointer)&KeyCollection_GetEnumerator_m2960276691_gshared/* 2279*/, (Il2CppMethodPointer)&KeyCollection_get_Count_m3134313436_gshared/* 2280*/, (Il2CppMethodPointer)&KeyCollection__ctor_m2107813742_gshared/* 2281*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Add_m101938036_gshared/* 2282*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Clear_m1378692357_gshared/* 2283*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Contains_m4134559388_gshared/* 2284*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Remove_m1174986174_gshared/* 2285*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_IEnumerableU3CTKeyU3E_GetEnumerator_m3592177831_gshared/* 2286*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_CopyTo_m3139844533_gshared/* 2287*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_IEnumerable_GetEnumerator_m3567016897_gshared/* 2288*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_get_IsReadOnly_m3676062312_gshared/* 2289*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_get_IsSynchronized_m1448338196_gshared/* 2290*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_get_SyncRoot_m1453715844_gshared/* 2291*/, (Il2CppMethodPointer)&KeyCollection_CopyTo_m1147098729_gshared/* 2292*/, (Il2CppMethodPointer)&KeyCollection_GetEnumerator_m2377606753_gshared/* 2293*/, (Il2CppMethodPointer)&KeyCollection_get_Count_m2856732479_gshared/* 2294*/, (Il2CppMethodPointer)&KeyCollection__ctor_m4239680610_gshared/* 2295*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Add_m367506214_gshared/* 2296*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Clear_m2977115764_gshared/* 2297*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Contains_m505955065_gshared/* 2298*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_Remove_m387242715_gshared/* 2299*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_IEnumerableU3CTKeyU3E_GetEnumerator_m682724645_gshared/* 2300*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_CopyTo_m4150039953_gshared/* 2301*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_IEnumerable_GetEnumerator_m177876556_gshared/* 2302*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_Generic_ICollectionU3CTKeyU3E_get_IsReadOnly_m2550279615_gshared/* 2303*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_get_IsSynchronized_m1099042751_gshared/* 2304*/, (Il2CppMethodPointer)&KeyCollection_System_Collections_ICollection_get_SyncRoot_m188410405_gshared/* 2305*/, (Il2CppMethodPointer)&KeyCollection_CopyTo_m121542817_gshared/* 2306*/, (Il2CppMethodPointer)&KeyCollection_GetEnumerator_m3178015012_gshared/* 2307*/, (Il2CppMethodPointer)&KeyCollection_get_Count_m2607519796_gshared/* 2308*/, (Il2CppMethodPointer)&ShimEnumerator__ctor_m1575617985_gshared/* 2309*/, (Il2CppMethodPointer)&ShimEnumerator_MoveNext_m2566043092_gshared/* 2310*/, (Il2CppMethodPointer)&ShimEnumerator_get_Entry_m3698941915_gshared/* 2311*/, (Il2CppMethodPointer)&ShimEnumerator_get_Key_m445546879_gshared/* 2312*/, (Il2CppMethodPointer)&ShimEnumerator_get_Value_m3277359826_gshared/* 2313*/, (Il2CppMethodPointer)&ShimEnumerator_get_Current_m1230646031_gshared/* 2314*/, (Il2CppMethodPointer)&ShimEnumerator_Reset_m2416281426_gshared/* 2315*/, (Il2CppMethodPointer)&ShimEnumerator__ctor_m552008432_gshared/* 2316*/, (Il2CppMethodPointer)&ShimEnumerator_MoveNext_m3111893793_gshared/* 2317*/, (Il2CppMethodPointer)&ShimEnumerator_get_Entry_m3803995640_gshared/* 2318*/, (Il2CppMethodPointer)&ShimEnumerator_get_Key_m3317293239_gshared/* 2319*/, (Il2CppMethodPointer)&ShimEnumerator_get_Value_m2850306264_gshared/* 2320*/, (Il2CppMethodPointer)&ShimEnumerator_get_Current_m1600038489_gshared/* 2321*/, (Il2CppMethodPointer)&ShimEnumerator_Reset_m2285286534_gshared/* 2322*/, (Il2CppMethodPointer)&ShimEnumerator__ctor_m648064161_gshared/* 2323*/, (Il2CppMethodPointer)&ShimEnumerator_MoveNext_m2959320417_gshared/* 2324*/, (Il2CppMethodPointer)&ShimEnumerator_get_Entry_m31432330_gshared/* 2325*/, (Il2CppMethodPointer)&ShimEnumerator_get_Key_m3229158492_gshared/* 2326*/, (Il2CppMethodPointer)&ShimEnumerator_get_Value_m1721172434_gshared/* 2327*/, (Il2CppMethodPointer)&ShimEnumerator_get_Current_m1405126092_gshared/* 2328*/, (Il2CppMethodPointer)&ShimEnumerator_Reset_m1643491539_gshared/* 2329*/, (Il2CppMethodPointer)&ShimEnumerator__ctor_m567765412_gshared/* 2330*/, (Il2CppMethodPointer)&ShimEnumerator_MoveNext_m133996972_gshared/* 2331*/, (Il2CppMethodPointer)&ShimEnumerator_get_Entry_m966461454_gshared/* 2332*/, (Il2CppMethodPointer)&ShimEnumerator_get_Key_m4272764842_gshared/* 2333*/, (Il2CppMethodPointer)&ShimEnumerator_get_Value_m1273273545_gshared/* 2334*/, (Il2CppMethodPointer)&ShimEnumerator_get_Current_m1379132162_gshared/* 2335*/, (Il2CppMethodPointer)&ShimEnumerator_Reset_m1265558806_gshared/* 2336*/, (Il2CppMethodPointer)&Transform_1__ctor_m676598450_gshared/* 2337*/, (Il2CppMethodPointer)&Transform_1_Invoke_m1800738111_gshared/* 2338*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m4238473456_gshared/* 2339*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m2030752143_gshared/* 2340*/, (Il2CppMethodPointer)&Transform_1__ctor_m1857260943_gshared/* 2341*/, (Il2CppMethodPointer)&Transform_1_Invoke_m991186210_gshared/* 2342*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m594858484_gshared/* 2343*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m4264587799_gshared/* 2344*/, (Il2CppMethodPointer)&Transform_1__ctor_m4064255561_gshared/* 2345*/, (Il2CppMethodPointer)&Transform_1_Invoke_m1176102625_gshared/* 2346*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m269959766_gshared/* 2347*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m86866110_gshared/* 2348*/, (Il2CppMethodPointer)&Transform_1__ctor_m2699736995_gshared/* 2349*/, (Il2CppMethodPointer)&Transform_1_Invoke_m4188541259_gshared/* 2350*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m1857837173_gshared/* 2351*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m1979342741_gshared/* 2352*/, (Il2CppMethodPointer)&Transform_1__ctor_m1284558098_gshared/* 2353*/, (Il2CppMethodPointer)&Transform_1_Invoke_m3613816418_gshared/* 2354*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m1249276119_gshared/* 2355*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m617619879_gshared/* 2356*/, (Il2CppMethodPointer)&Transform_1__ctor_m4195597845_gshared/* 2357*/, (Il2CppMethodPointer)&Transform_1_Invoke_m1298805565_gshared/* 2358*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m628639072_gshared/* 2359*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m1996317949_gshared/* 2360*/, (Il2CppMethodPointer)&Transform_1__ctor_m4241615619_gshared/* 2361*/, (Il2CppMethodPointer)&Transform_1_Invoke_m1206853375_gshared/* 2362*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m2840686006_gshared/* 2363*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m4086378267_gshared/* 2364*/, (Il2CppMethodPointer)&Transform_1__ctor_m1367806119_gshared/* 2365*/, (Il2CppMethodPointer)&Transform_1_Invoke_m2406349658_gshared/* 2366*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m2380884374_gshared/* 2367*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m283122546_gshared/* 2368*/, (Il2CppMethodPointer)&Transform_1__ctor_m862055785_gshared/* 2369*/, (Il2CppMethodPointer)&Transform_1_Invoke_m3298597565_gshared/* 2370*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m3913405589_gshared/* 2371*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m461598693_gshared/* 2372*/, (Il2CppMethodPointer)&Transform_1__ctor_m1014649038_gshared/* 2373*/, (Il2CppMethodPointer)&Transform_1_Invoke_m1462281805_gshared/* 2374*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m3634866754_gshared/* 2375*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m67862664_gshared/* 2376*/, (Il2CppMethodPointer)&Transform_1__ctor_m1261948378_gshared/* 2377*/, (Il2CppMethodPointer)&Transform_1_Invoke_m173857780_gshared/* 2378*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m3337769480_gshared/* 2379*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m2833214024_gshared/* 2380*/, (Il2CppMethodPointer)&Transform_1__ctor_m547893235_gshared/* 2381*/, (Il2CppMethodPointer)&Transform_1_Invoke_m3856094792_gshared/* 2382*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m633701249_gshared/* 2383*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m3835720970_gshared/* 2384*/, (Il2CppMethodPointer)&Transform_1__ctor_m3323127732_gshared/* 2385*/, (Il2CppMethodPointer)&Transform_1_Invoke_m1083809126_gshared/* 2386*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m1726063881_gshared/* 2387*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m822331337_gshared/* 2388*/, (Il2CppMethodPointer)&Transform_1__ctor_m4024721738_gshared/* 2389*/, (Il2CppMethodPointer)&Transform_1_Invoke_m2341343355_gshared/* 2390*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m1169141982_gshared/* 2391*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m3952767380_gshared/* 2392*/, (Il2CppMethodPointer)&Transform_1__ctor_m2153130131_gshared/* 2393*/, (Il2CppMethodPointer)&Transform_1_Invoke_m3658939646_gshared/* 2394*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m1396611415_gshared/* 2395*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m1306784283_gshared/* 2396*/, (Il2CppMethodPointer)&Transform_1__ctor_m201697272_gshared/* 2397*/, (Il2CppMethodPointer)&Transform_1_Invoke_m840651980_gshared/* 2398*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m3549154960_gshared/* 2399*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m4112095977_gshared/* 2400*/, (Il2CppMethodPointer)&Transform_1__ctor_m481711863_gshared/* 2401*/, (Il2CppMethodPointer)&Transform_1_Invoke_m3331823665_gshared/* 2402*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m1423783309_gshared/* 2403*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m1324116401_gshared/* 2404*/, (Il2CppMethodPointer)&Transform_1__ctor_m1888019603_gshared/* 2405*/, (Il2CppMethodPointer)&Transform_1_Invoke_m3837942491_gshared/* 2406*/, (Il2CppMethodPointer)&Transform_1_BeginInvoke_m3673740331_gshared/* 2407*/, (Il2CppMethodPointer)&Transform_1_EndInvoke_m1338670938_gshared/* 2408*/, (Il2CppMethodPointer)&Enumerator__ctor_m1237793372_AdjustorThunk/* 2409*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m1950047646_AdjustorThunk/* 2410*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2411799088_AdjustorThunk/* 2411*/, (Il2CppMethodPointer)&Enumerator__ctor_m1667991109_AdjustorThunk/* 2412*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m278043749_AdjustorThunk/* 2413*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m988661337_AdjustorThunk/* 2414*/, (Il2CppMethodPointer)&Enumerator_Dispose_m15794726_AdjustorThunk/* 2415*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m3164439263_AdjustorThunk/* 2416*/, (Il2CppMethodPointer)&Enumerator_get_Current_m3533083868_AdjustorThunk/* 2417*/, (Il2CppMethodPointer)&Enumerator__ctor_m3090964528_AdjustorThunk/* 2418*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3278907484_AdjustorThunk/* 2419*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2013670379_AdjustorThunk/* 2420*/, (Il2CppMethodPointer)&Enumerator_Dispose_m2175679295_AdjustorThunk/* 2421*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m3885680707_AdjustorThunk/* 2422*/, (Il2CppMethodPointer)&Enumerator_get_Current_m3183449403_AdjustorThunk/* 2423*/, (Il2CppMethodPointer)&Enumerator__ctor_m302877487_AdjustorThunk/* 2424*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m696841066_AdjustorThunk/* 2425*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m996849071_AdjustorThunk/* 2426*/, (Il2CppMethodPointer)&Enumerator_Dispose_m3823589726_AdjustorThunk/* 2427*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m2908309428_AdjustorThunk/* 2428*/, (Il2CppMethodPointer)&Enumerator_get_Current_m2834104167_AdjustorThunk/* 2429*/, (Il2CppMethodPointer)&ValueCollection__ctor_m1415446457_gshared/* 2430*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m634638146_gshared/* 2431*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m2338087175_gshared/* 2432*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m2568101772_gshared/* 2433*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m969238026_gshared/* 2434*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m1083042434_gshared/* 2435*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_CopyTo_m1275731581_gshared/* 2436*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_IEnumerable_GetEnumerator_m849775743_gshared/* 2437*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m1927998075_gshared/* 2438*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_IsSynchronized_m4181803206_gshared/* 2439*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_SyncRoot_m1725858077_gshared/* 2440*/, (Il2CppMethodPointer)&ValueCollection_CopyTo_m2863853517_gshared/* 2441*/, (Il2CppMethodPointer)&ValueCollection_get_Count_m4100622354_gshared/* 2442*/, (Il2CppMethodPointer)&ValueCollection__ctor_m4180764892_gshared/* 2443*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3640270864_gshared/* 2444*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m3880963637_gshared/* 2445*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m1458961292_gshared/* 2446*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1091714430_gshared/* 2447*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m1420198846_gshared/* 2448*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_CopyTo_m335812388_gshared/* 2449*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_IEnumerable_GetEnumerator_m2243102889_gshared/* 2450*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m4239076308_gshared/* 2451*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_IsSynchronized_m1837129004_gshared/* 2452*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_SyncRoot_m2688941712_gshared/* 2453*/, (Il2CppMethodPointer)&ValueCollection_CopyTo_m3991743707_gshared/* 2454*/, (Il2CppMethodPointer)&ValueCollection_GetEnumerator_m2858474616_gshared/* 2455*/, (Il2CppMethodPointer)&ValueCollection_get_Count_m4272810970_gshared/* 2456*/, (Il2CppMethodPointer)&ValueCollection__ctor_m1554341859_gshared/* 2457*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m2435700008_gshared/* 2458*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m2255358480_gshared/* 2459*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m333388705_gshared/* 2460*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m1423091888_gshared/* 2461*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m336319794_gshared/* 2462*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_CopyTo_m2838714798_gshared/* 2463*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_IEnumerable_GetEnumerator_m2854059652_gshared/* 2464*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m1065759156_gshared/* 2465*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_IsSynchronized_m4059376031_gshared/* 2466*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_SyncRoot_m2883279531_gshared/* 2467*/, (Il2CppMethodPointer)&ValueCollection_CopyTo_m1052833874_gshared/* 2468*/, (Il2CppMethodPointer)&ValueCollection_GetEnumerator_m323155277_gshared/* 2469*/, (Il2CppMethodPointer)&ValueCollection_get_Count_m1095971517_gshared/* 2470*/, (Il2CppMethodPointer)&ValueCollection__ctor_m3547620709_gshared/* 2471*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3253971041_gshared/* 2472*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m677038586_gshared/* 2473*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m3742354739_gshared/* 2474*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2910470120_gshared/* 2475*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m1158316693_gshared/* 2476*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_CopyTo_m1303592393_gshared/* 2477*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_IEnumerable_GetEnumerator_m2538945376_gshared/* 2478*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m2924378724_gshared/* 2479*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_IsSynchronized_m2356795503_gshared/* 2480*/, (Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_SyncRoot_m1521180200_gshared/* 2481*/, (Il2CppMethodPointer)&ValueCollection_CopyTo_m2559096955_gshared/* 2482*/, (Il2CppMethodPointer)&ValueCollection_GetEnumerator_m3426609542_gshared/* 2483*/, (Il2CppMethodPointer)&ValueCollection_get_Count_m883885252_gshared/* 2484*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m1236760181_gshared/* 2485*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m911507367_gshared/* 2486*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m2674884109_gshared/* 2487*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_get_Item_m610844593_gshared/* 2488*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_set_Item_m3860674848_gshared/* 2489*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Add_m710987906_gshared/* 2490*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Remove_m3437860263_gshared/* 2491*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m301579029_gshared/* 2492*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_SyncRoot_m3809750667_gshared/* 2493*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m1523593609_gshared/* 2494*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m1231269831_gshared/* 2495*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m3318716154_gshared/* 2496*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m1924001334_gshared/* 2497*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m2356680282_gshared/* 2498*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_CopyTo_m1351303294_gshared/* 2499*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m325348467_gshared/* 2500*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m119238237_gshared/* 2501*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_GetEnumerator_m1193240929_gshared/* 2502*/, (Il2CppMethodPointer)&Dictionary_2_get_Count_m391810322_gshared/* 2503*/, (Il2CppMethodPointer)&Dictionary_2_Init_m2480808204_gshared/* 2504*/, (Il2CppMethodPointer)&Dictionary_2_InitArrays_m2793627763_gshared/* 2505*/, (Il2CppMethodPointer)&Dictionary_2_CopyToCheck_m2911768893_gshared/* 2506*/, (Il2CppMethodPointer)&Dictionary_2_make_pair_m3572836657_gshared/* 2507*/, (Il2CppMethodPointer)&Dictionary_2_pick_key_m1031500116_gshared/* 2508*/, (Il2CppMethodPointer)&Dictionary_2_pick_value_m1333367471_gshared/* 2509*/, (Il2CppMethodPointer)&Dictionary_2_CopyTo_m1151700738_gshared/* 2510*/, (Il2CppMethodPointer)&Dictionary_2_Resize_m3919687029_gshared/* 2511*/, (Il2CppMethodPointer)&Dictionary_2_ContainsKey_m963952177_gshared/* 2512*/, (Il2CppMethodPointer)&Dictionary_2_ContainsValue_m4096001372_gshared/* 2513*/, (Il2CppMethodPointer)&Dictionary_2_GetObjectData_m2223119208_gshared/* 2514*/, (Il2CppMethodPointer)&Dictionary_2_OnDeserialization_m3801211549_gshared/* 2515*/, (Il2CppMethodPointer)&Dictionary_2_get_Keys_m3157716565_gshared/* 2516*/, (Il2CppMethodPointer)&Dictionary_2_ToTKey_m3780617256_gshared/* 2517*/, (Il2CppMethodPointer)&Dictionary_2_ToTValue_m1626854695_gshared/* 2518*/, (Il2CppMethodPointer)&Dictionary_2_ContainsKeyValuePair_m4250826812_gshared/* 2519*/, (Il2CppMethodPointer)&Dictionary_2_U3CCopyToU3Em__0_m1415143054_gshared/* 2520*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m567859500_gshared/* 2521*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m1211475800_gshared/* 2522*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m3551192152_gshared/* 2523*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_get_Item_m906161431_gshared/* 2524*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_set_Item_m1511368127_gshared/* 2525*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Add_m604814162_gshared/* 2526*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Remove_m3017629136_gshared/* 2527*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m1894809189_gshared/* 2528*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_SyncRoot_m3419576335_gshared/* 2529*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m889110014_gshared/* 2530*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m2764462274_gshared/* 2531*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m514139052_gshared/* 2532*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m3456314249_gshared/* 2533*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m123768782_gshared/* 2534*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_CopyTo_m913787792_gshared/* 2535*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m3339300066_gshared/* 2536*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m2443758172_gshared/* 2537*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_GetEnumerator_m974098721_gshared/* 2538*/, (Il2CppMethodPointer)&Dictionary_2_get_Count_m3014647369_gshared/* 2539*/, (Il2CppMethodPointer)&Dictionary_2_get_Item_m2134446735_gshared/* 2540*/, (Il2CppMethodPointer)&Dictionary_2_set_Item_m2123996821_gshared/* 2541*/, (Il2CppMethodPointer)&Dictionary_2_Init_m1356777212_gshared/* 2542*/, (Il2CppMethodPointer)&Dictionary_2_InitArrays_m314368110_gshared/* 2543*/, (Il2CppMethodPointer)&Dictionary_2_CopyToCheck_m2778727080_gshared/* 2544*/, (Il2CppMethodPointer)&Dictionary_2_make_pair_m2130998385_gshared/* 2545*/, (Il2CppMethodPointer)&Dictionary_2_pick_key_m3814291534_gshared/* 2546*/, (Il2CppMethodPointer)&Dictionary_2_pick_value_m3279776701_gshared/* 2547*/, (Il2CppMethodPointer)&Dictionary_2_CopyTo_m159058756_gshared/* 2548*/, (Il2CppMethodPointer)&Dictionary_2_Resize_m791215551_gshared/* 2549*/, (Il2CppMethodPointer)&Dictionary_2_Add_m4284638573_gshared/* 2550*/, (Il2CppMethodPointer)&Dictionary_2_Clear_m3750639056_gshared/* 2551*/, (Il2CppMethodPointer)&Dictionary_2_ContainsKey_m2603164442_gshared/* 2552*/, (Il2CppMethodPointer)&Dictionary_2_ContainsValue_m3610836447_gshared/* 2553*/, (Il2CppMethodPointer)&Dictionary_2_GetObjectData_m954572173_gshared/* 2554*/, (Il2CppMethodPointer)&Dictionary_2_OnDeserialization_m4082088316_gshared/* 2555*/, (Il2CppMethodPointer)&Dictionary_2_Remove_m2330118211_gshared/* 2556*/, (Il2CppMethodPointer)&Dictionary_2_get_Keys_m4277465684_gshared/* 2557*/, (Il2CppMethodPointer)&Dictionary_2_get_Values_m2282744792_gshared/* 2558*/, (Il2CppMethodPointer)&Dictionary_2_ToTKey_m797771183_gshared/* 2559*/, (Il2CppMethodPointer)&Dictionary_2_ToTValue_m4030802029_gshared/* 2560*/, (Il2CppMethodPointer)&Dictionary_2_ContainsKeyValuePair_m1950088615_gshared/* 2561*/, (Il2CppMethodPointer)&Dictionary_2_GetEnumerator_m1914440661_gshared/* 2562*/, (Il2CppMethodPointer)&Dictionary_2_U3CCopyToU3Em__0_m2756117116_gshared/* 2563*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m4171579736_gshared/* 2564*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m2734272568_gshared/* 2565*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m1859287152_gshared/* 2566*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_get_Item_m536127790_gshared/* 2567*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_set_Item_m878802643_gshared/* 2568*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Add_m2380759635_gshared/* 2569*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Remove_m1403698240_gshared/* 2570*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m3404178983_gshared/* 2571*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_SyncRoot_m2747053404_gshared/* 2572*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m3808051992_gshared/* 2573*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m339011641_gshared/* 2574*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m2905379232_gshared/* 2575*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m2769547780_gshared/* 2576*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m2561310750_gshared/* 2577*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_CopyTo_m400238926_gshared/* 2578*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m1096657896_gshared/* 2579*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m3466926568_gshared/* 2580*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_GetEnumerator_m917541689_gshared/* 2581*/, (Il2CppMethodPointer)&Dictionary_2_get_Count_m1170566910_gshared/* 2582*/, (Il2CppMethodPointer)&Dictionary_2_get_Item_m3521102497_gshared/* 2583*/, (Il2CppMethodPointer)&Dictionary_2_set_Item_m1548998947_gshared/* 2584*/, (Il2CppMethodPointer)&Dictionary_2_Init_m492988845_gshared/* 2585*/, (Il2CppMethodPointer)&Dictionary_2_InitArrays_m2648249695_gshared/* 2586*/, (Il2CppMethodPointer)&Dictionary_2_CopyToCheck_m3755937996_gshared/* 2587*/, (Il2CppMethodPointer)&Dictionary_2_make_pair_m4190808215_gshared/* 2588*/, (Il2CppMethodPointer)&Dictionary_2_pick_key_m1099122715_gshared/* 2589*/, (Il2CppMethodPointer)&Dictionary_2_pick_value_m4053283801_gshared/* 2590*/, (Il2CppMethodPointer)&Dictionary_2_CopyTo_m1834839979_gshared/* 2591*/, (Il2CppMethodPointer)&Dictionary_2_Resize_m3988909210_gshared/* 2592*/, (Il2CppMethodPointer)&Dictionary_2_Clear_m3519158142_gshared/* 2593*/, (Il2CppMethodPointer)&Dictionary_2_ContainsKey_m2603154382_gshared/* 2594*/, (Il2CppMethodPointer)&Dictionary_2_ContainsValue_m2678002877_gshared/* 2595*/, (Il2CppMethodPointer)&Dictionary_2_GetObjectData_m4214020049_gshared/* 2596*/, (Il2CppMethodPointer)&Dictionary_2_OnDeserialization_m3974896677_gshared/* 2597*/, (Il2CppMethodPointer)&Dictionary_2_Remove_m2202982133_gshared/* 2598*/, (Il2CppMethodPointer)&Dictionary_2_TryGetValue_m2163337365_gshared/* 2599*/, (Il2CppMethodPointer)&Dictionary_2_get_Keys_m1935473563_gshared/* 2600*/, (Il2CppMethodPointer)&Dictionary_2_get_Values_m4120272651_gshared/* 2601*/, (Il2CppMethodPointer)&Dictionary_2_ToTKey_m3370249913_gshared/* 2602*/, (Il2CppMethodPointer)&Dictionary_2_ToTValue_m2747413486_gshared/* 2603*/, (Il2CppMethodPointer)&Dictionary_2_ContainsKeyValuePair_m2011580307_gshared/* 2604*/, (Il2CppMethodPointer)&Dictionary_2_GetEnumerator_m4056314804_gshared/* 2605*/, (Il2CppMethodPointer)&Dictionary_2_U3CCopyToU3Em__0_m2265140307_gshared/* 2606*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m577611851_gshared/* 2607*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m299030681_gshared/* 2608*/, (Il2CppMethodPointer)&Dictionary_2__ctor_m822355699_gshared/* 2609*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_get_Item_m2682151733_gshared/* 2610*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_set_Item_m2884647835_gshared/* 2611*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Add_m3798508847_gshared/* 2612*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Remove_m1473228301_gshared/* 2613*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m3886527093_gshared/* 2614*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_SyncRoot_m3668442143_gshared/* 2615*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m3582235455_gshared/* 2616*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m851809423_gshared/* 2617*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m3230677473_gshared/* 2618*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m3949724133_gshared/* 2619*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m3637015309_gshared/* 2620*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_CopyTo_m1002291241_gshared/* 2621*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m3660471986_gshared/* 2622*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m1954424144_gshared/* 2623*/, (Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_GetEnumerator_m3222665199_gshared/* 2624*/, (Il2CppMethodPointer)&Dictionary_2_get_Count_m2707693104_gshared/* 2625*/, (Il2CppMethodPointer)&Dictionary_2_get_Item_m3261534240_gshared/* 2626*/, (Il2CppMethodPointer)&Dictionary_2_set_Item_m3466787846_gshared/* 2627*/, (Il2CppMethodPointer)&Dictionary_2_Init_m4086167419_gshared/* 2628*/, (Il2CppMethodPointer)&Dictionary_2_InitArrays_m2395196332_gshared/* 2629*/, (Il2CppMethodPointer)&Dictionary_2_CopyToCheck_m3814618449_gshared/* 2630*/, (Il2CppMethodPointer)&Dictionary_2_make_pair_m1674152097_gshared/* 2631*/, (Il2CppMethodPointer)&Dictionary_2_pick_key_m1151235035_gshared/* 2632*/, (Il2CppMethodPointer)&Dictionary_2_pick_value_m992604438_gshared/* 2633*/, (Il2CppMethodPointer)&Dictionary_2_CopyTo_m2266336956_gshared/* 2634*/, (Il2CppMethodPointer)&Dictionary_2_Resize_m1724070239_gshared/* 2635*/, (Il2CppMethodPointer)&Dictionary_2_Clear_m3402859905_gshared/* 2636*/, (Il2CppMethodPointer)&Dictionary_2_ContainsKey_m890832683_gshared/* 2637*/, (Il2CppMethodPointer)&Dictionary_2_ContainsValue_m687726003_gshared/* 2638*/, (Il2CppMethodPointer)&Dictionary_2_GetObjectData_m3655979928_gshared/* 2639*/, (Il2CppMethodPointer)&Dictionary_2_OnDeserialization_m735313247_gshared/* 2640*/, (Il2CppMethodPointer)&Dictionary_2_Remove_m894537905_gshared/* 2641*/, (Il2CppMethodPointer)&Dictionary_2_get_Keys_m2998652350_gshared/* 2642*/, (Il2CppMethodPointer)&Dictionary_2_get_Values_m2943534514_gshared/* 2643*/, (Il2CppMethodPointer)&Dictionary_2_ToTKey_m4174560562_gshared/* 2644*/, (Il2CppMethodPointer)&Dictionary_2_ToTValue_m1153547755_gshared/* 2645*/, (Il2CppMethodPointer)&Dictionary_2_ContainsKeyValuePair_m2220971416_gshared/* 2646*/, (Il2CppMethodPointer)&Dictionary_2_GetEnumerator_m1071499790_gshared/* 2647*/, (Il2CppMethodPointer)&Dictionary_2_U3CCopyToU3Em__0_m2192983895_gshared/* 2648*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m4287051514_gshared/* 2649*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3575189270_gshared/* 2650*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m805876074_gshared/* 2651*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m127511833_gshared/* 2652*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m4130189241_gshared/* 2653*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m1116690853_gshared/* 2654*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m4290088680_gshared/* 2655*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3619540784_gshared/* 2656*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m1844461034_gshared/* 2657*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m4079137524_gshared/* 2658*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2268564971_gshared/* 2659*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m143060914_gshared/* 2660*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3731598987_gshared/* 2661*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m1255286512_gshared/* 2662*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m1288496910_gshared/* 2663*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3668702051_gshared/* 2664*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m178097091_gshared/* 2665*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m2587814972_gshared/* 2666*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m367260208_gshared/* 2667*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m1685269894_gshared/* 2668*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m1424884629_gshared/* 2669*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m743190626_gshared/* 2670*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m584818857_gshared/* 2671*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m2915166525_gshared/* 2672*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2273814836_gshared/* 2673*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m85878157_gshared/* 2674*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3785921427_gshared/* 2675*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m881761050_gshared/* 2676*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m276963922_gshared/* 2677*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m2802271618_gshared/* 2678*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2840001211_gshared/* 2679*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m1713794888_gshared/* 2680*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3728939217_gshared/* 2681*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m1612363185_gshared/* 2682*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m1307469668_gshared/* 2683*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3796260152_gshared/* 2684*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m980467630_gshared/* 2685*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m622089866_gshared/* 2686*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m1429745851_gshared/* 2687*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m296788562_gshared/* 2688*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m780002017_gshared/* 2689*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3851784329_gshared/* 2690*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3449172644_gshared/* 2691*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2824479219_gshared/* 2692*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3618094951_gshared/* 2693*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m1809057149_gshared/* 2694*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m465719594_gshared/* 2695*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m2921249275_gshared/* 2696*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m1953549997_gshared/* 2697*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m874192872_gshared/* 2698*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m2330570202_gshared/* 2699*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3081182801_gshared/* 2700*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m1693883480_gshared/* 2701*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m497494263_gshared/* 2702*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2894407821_gshared/* 2703*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3059103547_gshared/* 2704*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m2010554665_gshared/* 2705*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m1281737037_gshared/* 2706*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2985200493_gshared/* 2707*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3156368455_gshared/* 2708*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m762132641_gshared/* 2709*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2559288676_gshared/* 2710*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3516798012_gshared/* 2711*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2967928856_gshared/* 2712*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m4003792886_gshared/* 2713*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m2123040058_gshared/* 2714*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m990668258_gshared/* 2715*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2725903915_gshared/* 2716*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m2122609100_gshared/* 2717*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2685489623_gshared/* 2718*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3587445831_gshared/* 2719*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m1946812117_gshared/* 2720*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m1617918264_gshared/* 2721*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2468694692_gshared/* 2722*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3678017191_gshared/* 2723*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2007472862_gshared/* 2724*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3695314175_gshared/* 2725*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m1846165276_gshared/* 2726*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2234358168_gshared/* 2727*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m126569997_gshared/* 2728*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m2312487822_gshared/* 2729*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m2573431077_gshared/* 2730*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m595875479_gshared/* 2731*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3875361309_gshared/* 2732*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m1575772970_gshared/* 2733*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3409538098_gshared/* 2734*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3310428997_gshared/* 2735*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m1807728018_gshared/* 2736*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3628145146_gshared/* 2737*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3150378811_gshared/* 2738*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3908322572_gshared/* 2739*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m1406491120_gshared/* 2740*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m4082443764_gshared/* 2741*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3380593289_gshared/* 2742*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m1678236462_gshared/* 2743*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m4148841951_gshared/* 2744*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m444128612_gshared/* 2745*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m4271557968_gshared/* 2746*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m3003126031_gshared/* 2747*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m3587847642_gshared/* 2748*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m1786284_gshared/* 2749*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m120670601_gshared/* 2750*/, (Il2CppMethodPointer)&DefaultComparer__ctor_m1854623067_gshared/* 2751*/, (Il2CppMethodPointer)&DefaultComparer_GetHashCode_m659999565_gshared/* 2752*/, (Il2CppMethodPointer)&DefaultComparer_Equals_m75059424_gshared/* 2753*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m1933123809_gshared/* 2754*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m3224568227_gshared/* 2755*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m551609164_gshared/* 2756*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2683681979_gshared/* 2757*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2076668306_gshared/* 2758*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m2788146272_gshared/* 2759*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m968346744_gshared/* 2760*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m4017490325_gshared/* 2761*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1066466867_gshared/* 2762*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2020013755_gshared/* 2763*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m645023447_gshared/* 2764*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m3593441850_gshared/* 2765*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3787887070_gshared/* 2766*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m569375659_gshared/* 2767*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3686998346_gshared/* 2768*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m3306974606_gshared/* 2769*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m752833162_gshared/* 2770*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m645832135_gshared/* 2771*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1348762830_gshared/* 2772*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2829958781_gshared/* 2773*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m912680102_gshared/* 2774*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m3138596347_gshared/* 2775*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1005773357_gshared/* 2776*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2569920777_gshared/* 2777*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1695315902_gshared/* 2778*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m3695555271_gshared/* 2779*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m277196996_gshared/* 2780*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1154557244_gshared/* 2781*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2931428962_gshared/* 2782*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1290452204_gshared/* 2783*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m288061241_gshared/* 2784*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m2356091058_gshared/* 2785*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1591818648_gshared/* 2786*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1010051365_gshared/* 2787*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m869546503_gshared/* 2788*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m2170578092_gshared/* 2789*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m3715153213_gshared/* 2790*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2352119632_gshared/* 2791*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2118522241_gshared/* 2792*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1606847676_gshared/* 2793*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m1260628127_gshared/* 2794*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m1418089978_gshared/* 2795*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2982182139_gshared/* 2796*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1213019447_gshared/* 2797*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1535390024_gshared/* 2798*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m3425358987_gshared/* 2799*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m1196868518_gshared/* 2800*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2422615522_gshared/* 2801*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2624859679_gshared/* 2802*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m593856285_gshared/* 2803*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m3082084599_gshared/* 2804*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m707076076_gshared/* 2805*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3400315825_gshared/* 2806*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m835274384_gshared/* 2807*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m690333762_gshared/* 2808*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m864221863_gshared/* 2809*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m3138806165_gshared/* 2810*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1890008542_gshared/* 2811*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m134577717_gshared/* 2812*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2446050567_gshared/* 2813*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m2572393354_gshared/* 2814*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m1988782318_gshared/* 2815*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2488637672_gshared/* 2816*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2093562621_gshared/* 2817*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1142661861_gshared/* 2818*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m2413023078_gshared/* 2819*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m2688810316_gshared/* 2820*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1720104629_gshared/* 2821*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2374250338_gshared/* 2822*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1566777087_gshared/* 2823*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m414786351_gshared/* 2824*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m1152980880_gshared/* 2825*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1841426328_gshared/* 2826*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3056898185_gshared/* 2827*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m797400271_gshared/* 2828*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m4103572790_gshared/* 2829*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m3757314143_gshared/* 2830*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3241639113_gshared/* 2831*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m627355947_gshared/* 2832*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3902484748_gshared/* 2833*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m2153688690_gshared/* 2834*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m1701682930_gshared/* 2835*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m613143623_gshared/* 2836*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2998811658_gshared/* 2837*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1922745967_gshared/* 2838*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m1781630856_gshared/* 2839*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m3200882692_gshared/* 2840*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3581472179_gshared/* 2841*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2422095487_gshared/* 2842*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m4102682644_gshared/* 2843*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m3842719472_gshared/* 2844*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m2011114383_gshared/* 2845*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1971009563_gshared/* 2846*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m472618491_gshared/* 2847*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3885389334_gshared/* 2848*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m1251038811_gshared/* 2849*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m3152331076_gshared/* 2850*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m43242650_gshared/* 2851*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1579974143_gshared/* 2852*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3324387557_gshared/* 2853*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m1148009743_gshared/* 2854*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m742185089_gshared/* 2855*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m705426722_gshared/* 2856*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2502303946_gshared/* 2857*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m821478721_gshared/* 2858*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m1570131054_gshared/* 2859*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m686650623_gshared/* 2860*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2304582594_gshared/* 2861*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3053730592_gshared/* 2862*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3372874590_gshared/* 2863*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m4079733270_gshared/* 2864*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m1862084479_gshared/* 2865*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3719593070_gshared/* 2866*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3331708851_gshared/* 2867*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m638892080_gshared/* 2868*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m1494335013_gshared/* 2869*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m2850446058_gshared/* 2870*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2186343374_gshared/* 2871*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m634638603_gshared/* 2872*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m605119732_gshared/* 2873*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m658300190_gshared/* 2874*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m4229826398_gshared/* 2875*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m347077511_gshared/* 2876*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3777549956_gshared/* 2877*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m212488887_gshared/* 2878*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m172622962_gshared/* 2879*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m42207435_gshared/* 2880*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1050279713_gshared/* 2881*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m959023308_gshared/* 2882*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m50476167_gshared/* 2883*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m13093163_gshared/* 2884*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m4232844587_gshared/* 2885*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3167789584_gshared/* 2886*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3354744659_gshared/* 2887*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1843906983_gshared/* 2888*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m4061715534_gshared/* 2889*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m2724849420_gshared/* 2890*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m4187985035_gshared/* 2891*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3138148484_gshared/* 2892*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1458679509_gshared/* 2893*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m812215943_gshared/* 2894*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m4020342648_gshared/* 2895*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m435058997_gshared/* 2896*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m318903271_gshared/* 2897*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1663858310_gshared/* 2898*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m1671741169_gshared/* 2899*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m1486177641_gshared/* 2900*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1949596126_gshared/* 2901*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3366347610_gshared/* 2902*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m612693911_gshared/* 2903*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m4085932743_gshared/* 2904*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m2902114609_gshared/* 2905*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2345743112_gshared/* 2906*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m212461080_gshared/* 2907*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3720039670_gshared/* 2908*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m2294168876_gshared/* 2909*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m215795640_gshared/* 2910*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1392361904_gshared/* 2911*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m717321180_gshared/* 2912*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2535589392_gshared/* 2913*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m3233704498_gshared/* 2914*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m1485589315_gshared/* 2915*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m794083502_gshared/* 2916*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m4037177133_gshared/* 2917*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m737537283_gshared/* 2918*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m4170988197_gshared/* 2919*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m2965101138_gshared/* 2920*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m4036792675_gshared/* 2921*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3214665233_gshared/* 2922*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2353658711_gshared/* 2923*/, (Il2CppMethodPointer)&EqualityComparer_1__ctor_m1635177929_gshared/* 2924*/, (Il2CppMethodPointer)&EqualityComparer_1__cctor_m1412260765_gshared/* 2925*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1502555323_gshared/* 2926*/, (Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m4015849054_gshared/* 2927*/, (Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3006382926_gshared/* 2928*/, (Il2CppMethodPointer)&GenericComparer_1_Compare_m4205618454_gshared/* 2929*/, (Il2CppMethodPointer)&GenericComparer_1_Compare_m4183348257_gshared/* 2930*/, (Il2CppMethodPointer)&GenericComparer_1_Compare_m3683903376_gshared/* 2931*/, (Il2CppMethodPointer)&GenericComparer_1__ctor_m920546494_gshared/* 2932*/, (Il2CppMethodPointer)&GenericComparer_1_Compare_m1247847359_gshared/* 2933*/, (Il2CppMethodPointer)&GenericComparer_1_Compare_m967204384_gshared/* 2934*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m2098194875_gshared/* 2935*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m1149064754_gshared/* 2936*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m2157516676_gshared/* 2937*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m2315946589_gshared/* 2938*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m1935284038_gshared/* 2939*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m1488137292_gshared/* 2940*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m1156963088_gshared/* 2941*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m3845358403_gshared/* 2942*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m2247249554_gshared/* 2943*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m2904728679_gshared/* 2944*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m643619696_gshared/* 2945*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m4255948105_gshared/* 2946*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m1192946004_gshared/* 2947*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m3898698568_gshared/* 2948*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m1446369262_gshared/* 2949*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m1820023349_gshared/* 2950*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m2424727697_gshared/* 2951*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m3995447479_gshared/* 2952*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m2535191635_gshared/* 2953*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m58189748_gshared/* 2954*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m2548956539_gshared/* 2955*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m923150140_gshared/* 2956*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m1382500069_gshared/* 2957*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m55805152_gshared/* 2958*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m2982470946_gshared/* 2959*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m1697872063_gshared/* 2960*/, (Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m3219012417_gshared/* 2961*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m3928566805_gshared/* 2962*/, (Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m64651512_gshared/* 2963*/, (Il2CppMethodPointer)&KeyValuePair_2__ctor_m3965257906_AdjustorThunk/* 2964*/, (Il2CppMethodPointer)&KeyValuePair_2_set_Key_m4233192552_AdjustorThunk/* 2965*/, (Il2CppMethodPointer)&KeyValuePair_2_set_Value_m2702403328_AdjustorThunk/* 2966*/, (Il2CppMethodPointer)&KeyValuePair_2__ctor_m2673976027_AdjustorThunk/* 2967*/, (Il2CppMethodPointer)&KeyValuePair_2_get_Key_m3954314318_AdjustorThunk/* 2968*/, (Il2CppMethodPointer)&KeyValuePair_2_set_Key_m3048003816_AdjustorThunk/* 2969*/, (Il2CppMethodPointer)&KeyValuePair_2_get_Value_m1586222204_AdjustorThunk/* 2970*/, (Il2CppMethodPointer)&KeyValuePair_2_set_Value_m4260225429_AdjustorThunk/* 2971*/, (Il2CppMethodPointer)&KeyValuePair_2_ToString_m2185527923_AdjustorThunk/* 2972*/, (Il2CppMethodPointer)&KeyValuePair_2__ctor_m24129874_AdjustorThunk/* 2973*/, (Il2CppMethodPointer)&KeyValuePair_2_get_Key_m3893176000_AdjustorThunk/* 2974*/, (Il2CppMethodPointer)&KeyValuePair_2_set_Key_m918513216_AdjustorThunk/* 2975*/, (Il2CppMethodPointer)&KeyValuePair_2_get_Value_m2208938938_AdjustorThunk/* 2976*/, (Il2CppMethodPointer)&KeyValuePair_2_set_Value_m565741334_AdjustorThunk/* 2977*/, (Il2CppMethodPointer)&KeyValuePair_2_ToString_m1481886236_AdjustorThunk/* 2978*/, (Il2CppMethodPointer)&KeyValuePair_2__ctor_m1355931474_AdjustorThunk/* 2979*/, (Il2CppMethodPointer)&KeyValuePair_2_get_Key_m3415087411_AdjustorThunk/* 2980*/, (Il2CppMethodPointer)&KeyValuePair_2_set_Key_m3683785655_AdjustorThunk/* 2981*/, (Il2CppMethodPointer)&KeyValuePair_2_get_Value_m1311359916_AdjustorThunk/* 2982*/, (Il2CppMethodPointer)&KeyValuePair_2_set_Value_m4094318473_AdjustorThunk/* 2983*/, (Il2CppMethodPointer)&KeyValuePair_2_ToString_m23305852_AdjustorThunk/* 2984*/, (Il2CppMethodPointer)&Enumerator__ctor_m1672709521_AdjustorThunk/* 2985*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3122699246_AdjustorThunk/* 2986*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m998487813_AdjustorThunk/* 2987*/, (Il2CppMethodPointer)&Enumerator_Dispose_m3925669121_AdjustorThunk/* 2988*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m517882014_AdjustorThunk/* 2989*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1731122728_AdjustorThunk/* 2990*/, (Il2CppMethodPointer)&Enumerator_get_Current_m2785625607_AdjustorThunk/* 2991*/, (Il2CppMethodPointer)&Enumerator__ctor_m3944103773_AdjustorThunk/* 2992*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m924139895_AdjustorThunk/* 2993*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m4103447546_AdjustorThunk/* 2994*/, (Il2CppMethodPointer)&Enumerator_Dispose_m3507354134_AdjustorThunk/* 2995*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m1822803489_AdjustorThunk/* 2996*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m923696734_AdjustorThunk/* 2997*/, (Il2CppMethodPointer)&Enumerator_get_Current_m732871371_AdjustorThunk/* 2998*/, (Il2CppMethodPointer)&Enumerator__ctor_m2127359327_AdjustorThunk/* 2999*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2193553327_AdjustorThunk/* 3000*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m924592800_AdjustorThunk/* 3001*/, (Il2CppMethodPointer)&Enumerator_Dispose_m2606530049_AdjustorThunk/* 3002*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m2937031278_AdjustorThunk/* 3003*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m3044398244_AdjustorThunk/* 3004*/, (Il2CppMethodPointer)&Enumerator_get_Current_m528805479_AdjustorThunk/* 3005*/, (Il2CppMethodPointer)&Enumerator__ctor_m258697733_AdjustorThunk/* 3006*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2551033967_AdjustorThunk/* 3007*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2512990036_AdjustorThunk/* 3008*/, (Il2CppMethodPointer)&Enumerator_Dispose_m798228755_AdjustorThunk/* 3009*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m1803191043_AdjustorThunk/* 3010*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1578505683_AdjustorThunk/* 3011*/, (Il2CppMethodPointer)&Enumerator_get_Current_m1775028691_AdjustorThunk/* 3012*/, (Il2CppMethodPointer)&Enumerator__ctor_m4284146690_AdjustorThunk/* 3013*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2523963925_AdjustorThunk/* 3014*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3914039914_AdjustorThunk/* 3015*/, (Il2CppMethodPointer)&Enumerator_Dispose_m153707690_AdjustorThunk/* 3016*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m1033897662_AdjustorThunk/* 3017*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1815426781_AdjustorThunk/* 3018*/, (Il2CppMethodPointer)&Enumerator_get_Current_m1751498197_AdjustorThunk/* 3019*/, (Il2CppMethodPointer)&Enumerator__ctor_m921841691_AdjustorThunk/* 3020*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m1836153125_AdjustorThunk/* 3021*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m144568892_AdjustorThunk/* 3022*/, (Il2CppMethodPointer)&Enumerator_Dispose_m1080240083_AdjustorThunk/* 3023*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m3625431915_AdjustorThunk/* 3024*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m3873844206_AdjustorThunk/* 3025*/, (Il2CppMethodPointer)&Enumerator_get_Current_m95707242_AdjustorThunk/* 3026*/, (Il2CppMethodPointer)&Enumerator__ctor_m3178021524_AdjustorThunk/* 3027*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m1764068132_AdjustorThunk/* 3028*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m1128607861_AdjustorThunk/* 3029*/, (Il2CppMethodPointer)&Enumerator_Dispose_m2512428910_AdjustorThunk/* 3030*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m77474253_AdjustorThunk/* 3031*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m3568345539_AdjustorThunk/* 3032*/, (Il2CppMethodPointer)&Enumerator_get_Current_m585643312_AdjustorThunk/* 3033*/, (Il2CppMethodPointer)&Enumerator__ctor_m3056213292_AdjustorThunk/* 3034*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m1681726028_AdjustorThunk/* 3035*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m98487539_AdjustorThunk/* 3036*/, (Il2CppMethodPointer)&Enumerator_Dispose_m335229239_AdjustorThunk/* 3037*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m3855305898_AdjustorThunk/* 3038*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m3544348264_AdjustorThunk/* 3039*/, (Il2CppMethodPointer)&Enumerator_get_Current_m2555575122_AdjustorThunk/* 3040*/, (Il2CppMethodPointer)&Enumerator__ctor_m837897804_AdjustorThunk/* 3041*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m4165607924_AdjustorThunk/* 3042*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2904519665_AdjustorThunk/* 3043*/, (Il2CppMethodPointer)&Enumerator_Dispose_m3165983978_AdjustorThunk/* 3044*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m2919552752_AdjustorThunk/* 3045*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m2718187494_AdjustorThunk/* 3046*/, (Il2CppMethodPointer)&Enumerator_get_Current_m182922851_AdjustorThunk/* 3047*/, (Il2CppMethodPointer)&Enumerator__ctor_m236856046_AdjustorThunk/* 3048*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3845990740_AdjustorThunk/* 3049*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3591803454_AdjustorThunk/* 3050*/, (Il2CppMethodPointer)&Enumerator_Dispose_m2873352670_AdjustorThunk/* 3051*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m1921730258_AdjustorThunk/* 3052*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1694723019_AdjustorThunk/* 3053*/, (Il2CppMethodPointer)&Enumerator_get_Current_m3124528665_AdjustorThunk/* 3054*/, (Il2CppMethodPointer)&Enumerator__ctor_m1678657565_AdjustorThunk/* 3055*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2828603750_AdjustorThunk/* 3056*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2093120632_AdjustorThunk/* 3057*/, (Il2CppMethodPointer)&Enumerator_Dispose_m855362281_AdjustorThunk/* 3058*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m3303546729_AdjustorThunk/* 3059*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m2515179802_AdjustorThunk/* 3060*/, (Il2CppMethodPointer)&Enumerator_get_Current_m2642897278_AdjustorThunk/* 3061*/, (Il2CppMethodPointer)&Enumerator__ctor_m3870467211_AdjustorThunk/* 3062*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m502124952_AdjustorThunk/* 3063*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m183470590_AdjustorThunk/* 3064*/, (Il2CppMethodPointer)&Enumerator_Dispose_m2779901466_AdjustorThunk/* 3065*/, (Il2CppMethodPointer)&Enumerator_VerifyState_m1415731116_AdjustorThunk/* 3066*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m1930375270_AdjustorThunk/* 3067*/, (Il2CppMethodPointer)&Enumerator_get_Current_m1341661348_AdjustorThunk/* 3068*/, (Il2CppMethodPointer)&List_1__ctor_m1020983581_gshared/* 3069*/, (Il2CppMethodPointer)&List_1__cctor_m3480299483_gshared/* 3070*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1516900347_gshared/* 3071*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m2108381968_gshared/* 3072*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m986991681_gshared/* 3073*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m4286548227_gshared/* 3074*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m4228591908_gshared/* 3075*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m4207165274_gshared/* 3076*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m3989831869_gshared/* 3077*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m3775851259_gshared/* 3078*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m568271488_gshared/* 3079*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m1356358097_gshared/* 3080*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m3780823475_gshared/* 3081*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m2495572776_gshared/* 3082*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m3066706491_gshared/* 3083*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m1494564871_gshared/* 3084*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m3677314888_gshared/* 3085*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m540698050_gshared/* 3086*/, (Il2CppMethodPointer)&List_1_AddCollection_m2740573745_gshared/* 3087*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m3194479579_gshared/* 3088*/, (Il2CppMethodPointer)&List_1_AddRange_m3951483742_gshared/* 3089*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m3041064276_gshared/* 3090*/, (Il2CppMethodPointer)&List_1_Contains_m3210297751_gshared/* 3091*/, (Il2CppMethodPointer)&List_1_CopyTo_m1779673057_gshared/* 3092*/, (Il2CppMethodPointer)&List_1_Find_m1385776633_gshared/* 3093*/, (Il2CppMethodPointer)&List_1_CheckMatch_m719857816_gshared/* 3094*/, (Il2CppMethodPointer)&List_1_GetIndex_m2687340177_gshared/* 3095*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m2041209774_gshared/* 3096*/, (Il2CppMethodPointer)&List_1_IndexOf_m549763026_gshared/* 3097*/, (Il2CppMethodPointer)&List_1_Shift_m41692727_gshared/* 3098*/, (Il2CppMethodPointer)&List_1_CheckIndex_m2577866259_gshared/* 3099*/, (Il2CppMethodPointer)&List_1_Insert_m4200988969_gshared/* 3100*/, (Il2CppMethodPointer)&List_1_CheckCollection_m1364282795_gshared/* 3101*/, (Il2CppMethodPointer)&List_1_Remove_m3679811868_gshared/* 3102*/, (Il2CppMethodPointer)&List_1_RemoveAll_m3721346343_gshared/* 3103*/, (Il2CppMethodPointer)&List_1_Reverse_m609823754_gshared/* 3104*/, (Il2CppMethodPointer)&List_1_Sort_m2018028247_gshared/* 3105*/, (Il2CppMethodPointer)&List_1_Sort_m3619736086_gshared/* 3106*/, (Il2CppMethodPointer)&List_1_ToArray_m3258061174_gshared/* 3107*/, (Il2CppMethodPointer)&List_1_TrimExcess_m2600274723_gshared/* 3108*/, (Il2CppMethodPointer)&List_1_get_Capacity_m377502274_gshared/* 3109*/, (Il2CppMethodPointer)&List_1_set_Capacity_m2897286690_gshared/* 3110*/, (Il2CppMethodPointer)&List_1__ctor_m2815773125_gshared/* 3111*/, (Il2CppMethodPointer)&List_1__cctor_m1389202275_gshared/* 3112*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m3781192228_gshared/* 3113*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m3366797796_gshared/* 3114*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m3224970312_gshared/* 3115*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m3568467501_gshared/* 3116*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m41724761_gshared/* 3117*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m1070445891_gshared/* 3118*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m2923284945_gshared/* 3119*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m2565920091_gshared/* 3120*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1555260921_gshared/* 3121*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m1776955946_gshared/* 3122*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m606395073_gshared/* 3123*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m1947916732_gshared/* 3124*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m2680070019_gshared/* 3125*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m593430200_gshared/* 3126*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m3900531425_gshared/* 3127*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m3370306227_gshared/* 3128*/, (Il2CppMethodPointer)&List_1_AddCollection_m1995106263_gshared/* 3129*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m2304083842_gshared/* 3130*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m3440615827_gshared/* 3131*/, (Il2CppMethodPointer)&List_1_Contains_m3888575812_gshared/* 3132*/, (Il2CppMethodPointer)&List_1_CopyTo_m174482672_gshared/* 3133*/, (Il2CppMethodPointer)&List_1_Find_m2279569015_gshared/* 3134*/, (Il2CppMethodPointer)&List_1_CheckMatch_m3166718029_gshared/* 3135*/, (Il2CppMethodPointer)&List_1_GetIndex_m2060916298_gshared/* 3136*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m1096390891_gshared/* 3137*/, (Il2CppMethodPointer)&List_1_IndexOf_m2736461437_gshared/* 3138*/, (Il2CppMethodPointer)&List_1_Shift_m3716304737_gshared/* 3139*/, (Il2CppMethodPointer)&List_1_CheckIndex_m776877181_gshared/* 3140*/, (Il2CppMethodPointer)&List_1_Insert_m3001479835_gshared/* 3141*/, (Il2CppMethodPointer)&List_1_CheckCollection_m3183808193_gshared/* 3142*/, (Il2CppMethodPointer)&List_1_Remove_m912038523_gshared/* 3143*/, (Il2CppMethodPointer)&List_1_RemoveAll_m1954592362_gshared/* 3144*/, (Il2CppMethodPointer)&List_1_RemoveAt_m658944309_gshared/* 3145*/, (Il2CppMethodPointer)&List_1_Reverse_m2525414228_gshared/* 3146*/, (Il2CppMethodPointer)&List_1_Sort_m736845995_gshared/* 3147*/, (Il2CppMethodPointer)&List_1_Sort_m2370346202_gshared/* 3148*/, (Il2CppMethodPointer)&List_1_ToArray_m3806714133_gshared/* 3149*/, (Il2CppMethodPointer)&List_1_TrimExcess_m19413009_gshared/* 3150*/, (Il2CppMethodPointer)&List_1_get_Capacity_m1376946650_gshared/* 3151*/, (Il2CppMethodPointer)&List_1_set_Capacity_m3410711852_gshared/* 3152*/, (Il2CppMethodPointer)&List_1_get_Item_m1924278799_gshared/* 3153*/, (Il2CppMethodPointer)&List_1_set_Item_m2577060719_gshared/* 3154*/, (Il2CppMethodPointer)&List_1__ctor_m201468323_gshared/* 3155*/, (Il2CppMethodPointer)&List_1__ctor_m2506761879_gshared/* 3156*/, (Il2CppMethodPointer)&List_1__cctor_m1556439326_gshared/* 3157*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m3272790150_gshared/* 3158*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m1574118614_gshared/* 3159*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m2572711050_gshared/* 3160*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m2441884723_gshared/* 3161*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m1769286835_gshared/* 3162*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m4196507295_gshared/* 3163*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m1373277872_gshared/* 3164*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m1126140118_gshared/* 3165*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2526512658_gshared/* 3166*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m2328225230_gshared/* 3167*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m1934960338_gshared/* 3168*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m3407652536_gshared/* 3169*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m475859460_gshared/* 3170*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m3746181800_gshared/* 3171*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m2730096697_gshared/* 3172*/, (Il2CppMethodPointer)&List_1_Add_m2665956441_gshared/* 3173*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m3472955005_gshared/* 3174*/, (Il2CppMethodPointer)&List_1_AddCollection_m606137917_gshared/* 3175*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m2565868279_gshared/* 3176*/, (Il2CppMethodPointer)&List_1_AddRange_m3509690821_gshared/* 3177*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m2161316779_gshared/* 3178*/, (Il2CppMethodPointer)&List_1_Clear_m279584585_gshared/* 3179*/, (Il2CppMethodPointer)&List_1_Contains_m982404162_gshared/* 3180*/, (Il2CppMethodPointer)&List_1_CopyTo_m3464684617_gshared/* 3181*/, (Il2CppMethodPointer)&List_1_Find_m1669905926_gshared/* 3182*/, (Il2CppMethodPointer)&List_1_CheckMatch_m4084205327_gshared/* 3183*/, (Il2CppMethodPointer)&List_1_GetIndex_m2214788992_gshared/* 3184*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m2922140209_gshared/* 3185*/, (Il2CppMethodPointer)&List_1_IndexOf_m3771344345_gshared/* 3186*/, (Il2CppMethodPointer)&List_1_Shift_m2668486620_gshared/* 3187*/, (Il2CppMethodPointer)&List_1_CheckIndex_m3086394577_gshared/* 3188*/, (Il2CppMethodPointer)&List_1_Insert_m1457100006_gshared/* 3189*/, (Il2CppMethodPointer)&List_1_CheckCollection_m1656575632_gshared/* 3190*/, (Il2CppMethodPointer)&List_1_Remove_m2959721843_gshared/* 3191*/, (Il2CppMethodPointer)&List_1_RemoveAll_m3699052280_gshared/* 3192*/, (Il2CppMethodPointer)&List_1_RemoveAt_m3089079954_gshared/* 3193*/, (Il2CppMethodPointer)&List_1_Reverse_m2069804007_gshared/* 3194*/, (Il2CppMethodPointer)&List_1_Sort_m3510661149_gshared/* 3195*/, (Il2CppMethodPointer)&List_1_Sort_m582571083_gshared/* 3196*/, (Il2CppMethodPointer)&List_1_ToArray_m147531996_gshared/* 3197*/, (Il2CppMethodPointer)&List_1_TrimExcess_m4148863248_gshared/* 3198*/, (Il2CppMethodPointer)&List_1_get_Capacity_m3855480061_gshared/* 3199*/, (Il2CppMethodPointer)&List_1_set_Capacity_m3066077012_gshared/* 3200*/, (Il2CppMethodPointer)&List_1_get_Count_m3642875151_gshared/* 3201*/, (Il2CppMethodPointer)&List_1_get_Item_m3085214563_gshared/* 3202*/, (Il2CppMethodPointer)&List_1_set_Item_m1016959200_gshared/* 3203*/, (Il2CppMethodPointer)&List_1__ctor_m1901578253_gshared/* 3204*/, (Il2CppMethodPointer)&List_1__ctor_m2624172469_gshared/* 3205*/, (Il2CppMethodPointer)&List_1__cctor_m3380546662_gshared/* 3206*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m2910732820_gshared/* 3207*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m1075134219_gshared/* 3208*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m4190297507_gshared/* 3209*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m3849190546_gshared/* 3210*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m645988788_gshared/* 3211*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m56372037_gshared/* 3212*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m2433412885_gshared/* 3213*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m2505146164_gshared/* 3214*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2901221715_gshared/* 3215*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m2542494665_gshared/* 3216*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m271314281_gshared/* 3217*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m1132524629_gshared/* 3218*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m168481983_gshared/* 3219*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m3560291487_gshared/* 3220*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m1436607593_gshared/* 3221*/, (Il2CppMethodPointer)&List_1_Add_m1582773386_gshared/* 3222*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m3640910231_gshared/* 3223*/, (Il2CppMethodPointer)&List_1_AddCollection_m1775751742_gshared/* 3224*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m3031261685_gshared/* 3225*/, (Il2CppMethodPointer)&List_1_AddRange_m671696424_gshared/* 3226*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m910198309_gshared/* 3227*/, (Il2CppMethodPointer)&List_1_Clear_m103149515_gshared/* 3228*/, (Il2CppMethodPointer)&List_1_Contains_m3738080405_gshared/* 3229*/, (Il2CppMethodPointer)&List_1_CopyTo_m2592990198_gshared/* 3230*/, (Il2CppMethodPointer)&List_1_Find_m1664382713_gshared/* 3231*/, (Il2CppMethodPointer)&List_1_CheckMatch_m691407412_gshared/* 3232*/, (Il2CppMethodPointer)&List_1_GetIndex_m3084441127_gshared/* 3233*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m2025556259_gshared/* 3234*/, (Il2CppMethodPointer)&List_1_IndexOf_m644479004_gshared/* 3235*/, (Il2CppMethodPointer)&List_1_Shift_m2888164258_gshared/* 3236*/, (Il2CppMethodPointer)&List_1_CheckIndex_m2297015467_gshared/* 3237*/, (Il2CppMethodPointer)&List_1_Insert_m3758614643_gshared/* 3238*/, (Il2CppMethodPointer)&List_1_CheckCollection_m2888431814_gshared/* 3239*/, (Il2CppMethodPointer)&List_1_Remove_m2386316251_gshared/* 3240*/, (Il2CppMethodPointer)&List_1_RemoveAll_m104489147_gshared/* 3241*/, (Il2CppMethodPointer)&List_1_RemoveAt_m2811639224_gshared/* 3242*/, (Il2CppMethodPointer)&List_1_Reverse_m1391700301_gshared/* 3243*/, (Il2CppMethodPointer)&List_1_Sort_m3116615894_gshared/* 3244*/, (Il2CppMethodPointer)&List_1_Sort_m3711248601_gshared/* 3245*/, (Il2CppMethodPointer)&List_1_ToArray_m320526359_gshared/* 3246*/, (Il2CppMethodPointer)&List_1_TrimExcess_m3764182707_gshared/* 3247*/, (Il2CppMethodPointer)&List_1_get_Capacity_m3531960238_gshared/* 3248*/, (Il2CppMethodPointer)&List_1_set_Capacity_m81455837_gshared/* 3249*/, (Il2CppMethodPointer)&List_1_get_Count_m3704916869_gshared/* 3250*/, (Il2CppMethodPointer)&List_1_get_Item_m3638845425_gshared/* 3251*/, (Il2CppMethodPointer)&List_1_set_Item_m3082435025_gshared/* 3252*/, (Il2CppMethodPointer)&List_1__ctor_m2081854003_gshared/* 3253*/, (Il2CppMethodPointer)&List_1__ctor_m465552044_gshared/* 3254*/, (Il2CppMethodPointer)&List_1__cctor_m1600971377_gshared/* 3255*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m804095962_gshared/* 3256*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m2060327509_gshared/* 3257*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m255007193_gshared/* 3258*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m4125816716_gshared/* 3259*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m1724433247_gshared/* 3260*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m2491212007_gshared/* 3261*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m2084317549_gshared/* 3262*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m450740828_gshared/* 3263*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m29402316_gshared/* 3264*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m2392878718_gshared/* 3265*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m2684265884_gshared/* 3266*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m225396251_gshared/* 3267*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m4047523555_gshared/* 3268*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m2192105552_gshared/* 3269*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m415631391_gshared/* 3270*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m2887634069_gshared/* 3271*/, (Il2CppMethodPointer)&List_1_AddCollection_m2594729342_gshared/* 3272*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m1876568274_gshared/* 3273*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m1470568150_gshared/* 3274*/, (Il2CppMethodPointer)&List_1_Contains_m728022135_gshared/* 3275*/, (Il2CppMethodPointer)&List_1_CopyTo_m2269260862_gshared/* 3276*/, (Il2CppMethodPointer)&List_1_Find_m3915678039_gshared/* 3277*/, (Il2CppMethodPointer)&List_1_CheckMatch_m2299550153_gshared/* 3278*/, (Il2CppMethodPointer)&List_1_GetIndex_m1067679250_gshared/* 3279*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m2765980962_gshared/* 3280*/, (Il2CppMethodPointer)&List_1_IndexOf_m1455646585_gshared/* 3281*/, (Il2CppMethodPointer)&List_1_Shift_m2776720498_gshared/* 3282*/, (Il2CppMethodPointer)&List_1_CheckIndex_m3162538324_gshared/* 3283*/, (Il2CppMethodPointer)&List_1_Insert_m2693758469_gshared/* 3284*/, (Il2CppMethodPointer)&List_1_CheckCollection_m1081154596_gshared/* 3285*/, (Il2CppMethodPointer)&List_1_Remove_m3487974926_gshared/* 3286*/, (Il2CppMethodPointer)&List_1_RemoveAll_m2775278636_gshared/* 3287*/, (Il2CppMethodPointer)&List_1_RemoveAt_m2543356230_gshared/* 3288*/, (Il2CppMethodPointer)&List_1_Reverse_m976170234_gshared/* 3289*/, (Il2CppMethodPointer)&List_1_Sort_m310292403_gshared/* 3290*/, (Il2CppMethodPointer)&List_1_Sort_m3742686837_gshared/* 3291*/, (Il2CppMethodPointer)&List_1_ToArray_m284823132_gshared/* 3292*/, (Il2CppMethodPointer)&List_1_TrimExcess_m3710122484_gshared/* 3293*/, (Il2CppMethodPointer)&List_1_get_Capacity_m4130902103_gshared/* 3294*/, (Il2CppMethodPointer)&List_1_set_Capacity_m851465391_gshared/* 3295*/, (Il2CppMethodPointer)&List_1_get_Count_m1071105287_gshared/* 3296*/, (Il2CppMethodPointer)&List_1__ctor_m1362890411_gshared/* 3297*/, (Il2CppMethodPointer)&List_1__cctor_m295807148_gshared/* 3298*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m417016462_gshared/* 3299*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m2841319798_gshared/* 3300*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m4062345351_gshared/* 3301*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m1642522212_gshared/* 3302*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m3111765843_gshared/* 3303*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m3054283633_gshared/* 3304*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m190654975_gshared/* 3305*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m194050409_gshared/* 3306*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2148843779_gshared/* 3307*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m1036201298_gshared/* 3308*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m707340834_gshared/* 3309*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m3871391651_gshared/* 3310*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m3429237851_gshared/* 3311*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m144042536_gshared/* 3312*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m718936355_gshared/* 3313*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m3068681164_gshared/* 3314*/, (Il2CppMethodPointer)&List_1_AddCollection_m1031631355_gshared/* 3315*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m1060933874_gshared/* 3316*/, (Il2CppMethodPointer)&List_1_AddRange_m1286645080_gshared/* 3317*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m2368652634_gshared/* 3318*/, (Il2CppMethodPointer)&List_1_Contains_m2164606231_gshared/* 3319*/, (Il2CppMethodPointer)&List_1_CopyTo_m1271393797_gshared/* 3320*/, (Il2CppMethodPointer)&List_1_Find_m3036820755_gshared/* 3321*/, (Il2CppMethodPointer)&List_1_CheckMatch_m782511699_gshared/* 3322*/, (Il2CppMethodPointer)&List_1_GetIndex_m2770313194_gshared/* 3323*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m3056485503_gshared/* 3324*/, (Il2CppMethodPointer)&List_1_IndexOf_m2231856141_gshared/* 3325*/, (Il2CppMethodPointer)&List_1_Shift_m4205588753_gshared/* 3326*/, (Il2CppMethodPointer)&List_1_CheckIndex_m2832038365_gshared/* 3327*/, (Il2CppMethodPointer)&List_1_Insert_m423300062_gshared/* 3328*/, (Il2CppMethodPointer)&List_1_CheckCollection_m1483208718_gshared/* 3329*/, (Il2CppMethodPointer)&List_1_Remove_m2282313366_gshared/* 3330*/, (Il2CppMethodPointer)&List_1_RemoveAll_m3733814181_gshared/* 3331*/, (Il2CppMethodPointer)&List_1_RemoveAt_m884534633_gshared/* 3332*/, (Il2CppMethodPointer)&List_1_Reverse_m1751048926_gshared/* 3333*/, (Il2CppMethodPointer)&List_1_Sort_m1509933471_gshared/* 3334*/, (Il2CppMethodPointer)&List_1_ToArray_m1774650457_gshared/* 3335*/, (Il2CppMethodPointer)&List_1_TrimExcess_m1005974623_gshared/* 3336*/, (Il2CppMethodPointer)&List_1_get_Capacity_m1792407338_gshared/* 3337*/, (Il2CppMethodPointer)&List_1_set_Capacity_m3930015681_gshared/* 3338*/, (Il2CppMethodPointer)&List_1_set_Item_m2743361490_gshared/* 3339*/, (Il2CppMethodPointer)&List_1__ctor_m3706016226_gshared/* 3340*/, (Il2CppMethodPointer)&List_1__cctor_m510439346_gshared/* 3341*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m3106801896_gshared/* 3342*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m577876011_gshared/* 3343*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m3040175955_gshared/* 3344*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m2079446923_gshared/* 3345*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m2169480_gshared/* 3346*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m4100262163_gshared/* 3347*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m2842140231_gshared/* 3348*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m662699922_gshared/* 3349*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m4203848964_gshared/* 3350*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m3366001594_gshared/* 3351*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m860559348_gshared/* 3352*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m299890450_gshared/* 3353*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m409235149_gshared/* 3354*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m2719533473_gshared/* 3355*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m3077593456_gshared/* 3356*/, (Il2CppMethodPointer)&List_1_Add_m1215282702_gshared/* 3357*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m228736242_gshared/* 3358*/, (Il2CppMethodPointer)&List_1_AddCollection_m3419285679_gshared/* 3359*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m1667719140_gshared/* 3360*/, (Il2CppMethodPointer)&List_1_AddRange_m3132828194_gshared/* 3361*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m3623320584_gshared/* 3362*/, (Il2CppMethodPointer)&List_1_Clear_m448422425_gshared/* 3363*/, (Il2CppMethodPointer)&List_1_Contains_m4019630614_gshared/* 3364*/, (Il2CppMethodPointer)&List_1_CopyTo_m1855351132_gshared/* 3365*/, (Il2CppMethodPointer)&List_1_Find_m2054772433_gshared/* 3366*/, (Il2CppMethodPointer)&List_1_CheckMatch_m2150342797_gshared/* 3367*/, (Il2CppMethodPointer)&List_1_GetIndex_m89120418_gshared/* 3368*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m319397653_gshared/* 3369*/, (Il2CppMethodPointer)&List_1_IndexOf_m2139439518_gshared/* 3370*/, (Il2CppMethodPointer)&List_1_Shift_m1005042784_gshared/* 3371*/, (Il2CppMethodPointer)&List_1_CheckIndex_m4187033419_gshared/* 3372*/, (Il2CppMethodPointer)&List_1_Insert_m809719227_gshared/* 3373*/, (Il2CppMethodPointer)&List_1_CheckCollection_m1650345758_gshared/* 3374*/, (Il2CppMethodPointer)&List_1_Remove_m3035767932_gshared/* 3375*/, (Il2CppMethodPointer)&List_1_RemoveAll_m979999828_gshared/* 3376*/, (Il2CppMethodPointer)&List_1_RemoveAt_m3832322544_gshared/* 3377*/, (Il2CppMethodPointer)&List_1_Reverse_m3606653199_gshared/* 3378*/, (Il2CppMethodPointer)&List_1_Sort_m1472049079_gshared/* 3379*/, (Il2CppMethodPointer)&List_1_Sort_m2826842987_gshared/* 3380*/, (Il2CppMethodPointer)&List_1_ToArray_m2911354459_gshared/* 3381*/, (Il2CppMethodPointer)&List_1_TrimExcess_m1947122780_gshared/* 3382*/, (Il2CppMethodPointer)&List_1_get_Capacity_m3505301635_gshared/* 3383*/, (Il2CppMethodPointer)&List_1_set_Capacity_m3149877192_gshared/* 3384*/, (Il2CppMethodPointer)&List_1_get_Count_m1526705637_gshared/* 3385*/, (Il2CppMethodPointer)&List_1_get_Item_m2349306705_gshared/* 3386*/, (Il2CppMethodPointer)&List_1_set_Item_m719098823_gshared/* 3387*/, (Il2CppMethodPointer)&List_1__ctor_m1554619828_gshared/* 3388*/, (Il2CppMethodPointer)&List_1__cctor_m1971983909_gshared/* 3389*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m4115464786_gshared/* 3390*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m218245676_gshared/* 3391*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m3499618345_gshared/* 3392*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m1935914966_gshared/* 3393*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m580090415_gshared/* 3394*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m1104332735_gshared/* 3395*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m3284781699_gshared/* 3396*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m3786068702_gshared/* 3397*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m4111506543_gshared/* 3398*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m2270800316_gshared/* 3399*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m973497386_gshared/* 3400*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m491201249_gshared/* 3401*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m2698133978_gshared/* 3402*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m1966415369_gshared/* 3403*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m3485920103_gshared/* 3404*/, (Il2CppMethodPointer)&List_1_Add_m3882277125_gshared/* 3405*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m2602748154_gshared/* 3406*/, (Il2CppMethodPointer)&List_1_AddCollection_m1743474446_gshared/* 3407*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m1845674684_gshared/* 3408*/, (Il2CppMethodPointer)&List_1_AddRange_m817509934_gshared/* 3409*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m959091769_gshared/* 3410*/, (Il2CppMethodPointer)&List_1_Clear_m3287826517_gshared/* 3411*/, (Il2CppMethodPointer)&List_1_Contains_m3067953645_gshared/* 3412*/, (Il2CppMethodPointer)&List_1_CopyTo_m3800325008_gshared/* 3413*/, (Il2CppMethodPointer)&List_1_Find_m387465024_gshared/* 3414*/, (Il2CppMethodPointer)&List_1_CheckMatch_m4040082864_gshared/* 3415*/, (Il2CppMethodPointer)&List_1_GetIndex_m449713972_gshared/* 3416*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m2371965976_gshared/* 3417*/, (Il2CppMethodPointer)&List_1_IndexOf_m1460966372_gshared/* 3418*/, (Il2CppMethodPointer)&List_1_Shift_m2968731627_gshared/* 3419*/, (Il2CppMethodPointer)&List_1_CheckIndex_m45796781_gshared/* 3420*/, (Il2CppMethodPointer)&List_1_Insert_m4167233230_gshared/* 3421*/, (Il2CppMethodPointer)&List_1_CheckCollection_m3573118613_gshared/* 3422*/, (Il2CppMethodPointer)&List_1_Remove_m1452275302_gshared/* 3423*/, (Il2CppMethodPointer)&List_1_RemoveAll_m3945495935_gshared/* 3424*/, (Il2CppMethodPointer)&List_1_RemoveAt_m2455825539_gshared/* 3425*/, (Il2CppMethodPointer)&List_1_Reverse_m1394467514_gshared/* 3426*/, (Il2CppMethodPointer)&List_1_Sort_m1393751737_gshared/* 3427*/, (Il2CppMethodPointer)&List_1_Sort_m3228725011_gshared/* 3428*/, (Il2CppMethodPointer)&List_1_ToArray_m429094733_gshared/* 3429*/, (Il2CppMethodPointer)&List_1_TrimExcess_m3310187612_gshared/* 3430*/, (Il2CppMethodPointer)&List_1_get_Capacity_m2025011607_gshared/* 3431*/, (Il2CppMethodPointer)&List_1_set_Capacity_m935115676_gshared/* 3432*/, (Il2CppMethodPointer)&List_1_get_Count_m419519634_gshared/* 3433*/, (Il2CppMethodPointer)&List_1_get_Item_m3357232827_gshared/* 3434*/, (Il2CppMethodPointer)&List_1_set_Item_m1913067430_gshared/* 3435*/, (Il2CppMethodPointer)&List_1__ctor_m1842478078_gshared/* 3436*/, (Il2CppMethodPointer)&List_1__cctor_m2847203467_gshared/* 3437*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1876356810_gshared/* 3438*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m1323624543_gshared/* 3439*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m864832161_gshared/* 3440*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m1767443596_gshared/* 3441*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m2876433834_gshared/* 3442*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m1520906369_gshared/* 3443*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m3198623644_gshared/* 3444*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m2966655893_gshared/* 3445*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3218451994_gshared/* 3446*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m2061651173_gshared/* 3447*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m352967137_gshared/* 3448*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m494798214_gshared/* 3449*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m2207908840_gshared/* 3450*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m3203269595_gshared/* 3451*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m137877279_gshared/* 3452*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m2889980444_gshared/* 3453*/, (Il2CppMethodPointer)&List_1_AddCollection_m4001261088_gshared/* 3454*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m508276677_gshared/* 3455*/, (Il2CppMethodPointer)&List_1_AddRange_m897490967_gshared/* 3456*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m318050259_gshared/* 3457*/, (Il2CppMethodPointer)&List_1_Clear_m1717011394_gshared/* 3458*/, (Il2CppMethodPointer)&List_1_Contains_m710136060_gshared/* 3459*/, (Il2CppMethodPointer)&List_1_CopyTo_m3608573650_gshared/* 3460*/, (Il2CppMethodPointer)&List_1_Find_m2070592070_gshared/* 3461*/, (Il2CppMethodPointer)&List_1_CheckMatch_m17543138_gshared/* 3462*/, (Il2CppMethodPointer)&List_1_GetIndex_m2414953608_gshared/* 3463*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m2506095854_gshared/* 3464*/, (Il2CppMethodPointer)&List_1_IndexOf_m365010556_gshared/* 3465*/, (Il2CppMethodPointer)&List_1_Shift_m1183934761_gshared/* 3466*/, (Il2CppMethodPointer)&List_1_CheckIndex_m802744892_gshared/* 3467*/, (Il2CppMethodPointer)&List_1_Insert_m1992981833_gshared/* 3468*/, (Il2CppMethodPointer)&List_1_CheckCollection_m2729005177_gshared/* 3469*/, (Il2CppMethodPointer)&List_1_Remove_m79564018_gshared/* 3470*/, (Il2CppMethodPointer)&List_1_RemoveAll_m617466345_gshared/* 3471*/, (Il2CppMethodPointer)&List_1_RemoveAt_m3136664007_gshared/* 3472*/, (Il2CppMethodPointer)&List_1_Reverse_m3223693015_gshared/* 3473*/, (Il2CppMethodPointer)&List_1_Sort_m3006064929_gshared/* 3474*/, (Il2CppMethodPointer)&List_1_Sort_m647316299_gshared/* 3475*/, (Il2CppMethodPointer)&List_1_ToArray_m3514335341_gshared/* 3476*/, (Il2CppMethodPointer)&List_1_TrimExcess_m2607454056_gshared/* 3477*/, (Il2CppMethodPointer)&List_1__ctor_m908397213_gshared/* 3478*/, (Il2CppMethodPointer)&List_1__ctor_m893956928_gshared/* 3479*/, (Il2CppMethodPointer)&List_1__cctor_m4210230781_gshared/* 3480*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m100811717_gshared/* 3481*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m4279217564_gshared/* 3482*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m3673457197_gshared/* 3483*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m2563123533_gshared/* 3484*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m2865309714_gshared/* 3485*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m374202364_gshared/* 3486*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m450088950_gshared/* 3487*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m1845611497_gshared/* 3488*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3824609717_gshared/* 3489*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m1142241856_gshared/* 3490*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m3222745665_gshared/* 3491*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m1203376690_gshared/* 3492*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m637891271_gshared/* 3493*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m1584691315_gshared/* 3494*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m1285950192_gshared/* 3495*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m4181755087_gshared/* 3496*/, (Il2CppMethodPointer)&List_1_AddCollection_m1262365279_gshared/* 3497*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m27421497_gshared/* 3498*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m1115102685_gshared/* 3499*/, (Il2CppMethodPointer)&List_1_Contains_m3860782450_gshared/* 3500*/, (Il2CppMethodPointer)&List_1_CopyTo_m1540787997_gshared/* 3501*/, (Il2CppMethodPointer)&List_1_Find_m3507000042_gshared/* 3502*/, (Il2CppMethodPointer)&List_1_CheckMatch_m1907583117_gshared/* 3503*/, (Il2CppMethodPointer)&List_1_GetIndex_m2440763250_gshared/* 3504*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m3165528243_gshared/* 3505*/, (Il2CppMethodPointer)&List_1_IndexOf_m1642346540_gshared/* 3506*/, (Il2CppMethodPointer)&List_1_Shift_m1874655014_gshared/* 3507*/, (Il2CppMethodPointer)&List_1_CheckIndex_m3967830241_gshared/* 3508*/, (Il2CppMethodPointer)&List_1_Insert_m1562709744_gshared/* 3509*/, (Il2CppMethodPointer)&List_1_CheckCollection_m3926685078_gshared/* 3510*/, (Il2CppMethodPointer)&List_1_Remove_m175412813_gshared/* 3511*/, (Il2CppMethodPointer)&List_1_RemoveAll_m3591716362_gshared/* 3512*/, (Il2CppMethodPointer)&List_1_RemoveAt_m496538446_gshared/* 3513*/, (Il2CppMethodPointer)&List_1_Reverse_m3889448885_gshared/* 3514*/, (Il2CppMethodPointer)&List_1_Sort_m3418811171_gshared/* 3515*/, (Il2CppMethodPointer)&List_1_Sort_m1753974085_gshared/* 3516*/, (Il2CppMethodPointer)&List_1_ToArray_m2464170370_gshared/* 3517*/, (Il2CppMethodPointer)&List_1_TrimExcess_m2091631752_gshared/* 3518*/, (Il2CppMethodPointer)&List_1_get_Capacity_m2874693586_gshared/* 3519*/, (Il2CppMethodPointer)&List_1_set_Capacity_m1782645815_gshared/* 3520*/, (Il2CppMethodPointer)&List_1_get_Count_m467084503_gshared/* 3521*/, (Il2CppMethodPointer)&List_1__ctor_m805753889_gshared/* 3522*/, (Il2CppMethodPointer)&List_1__ctor_m3183088424_gshared/* 3523*/, (Il2CppMethodPointer)&List_1__cctor_m415374281_gshared/* 3524*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m48108753_gshared/* 3525*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m1379389465_gshared/* 3526*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m326795334_gshared/* 3527*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m833247038_gshared/* 3528*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m1521479470_gshared/* 3529*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m1071561249_gshared/* 3530*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m1225931494_gshared/* 3531*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m112108385_gshared/* 3532*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3412170927_gshared/* 3533*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m1422597533_gshared/* 3534*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m3618112806_gshared/* 3535*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m2524067166_gshared/* 3536*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m2151783497_gshared/* 3537*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m2891473640_gshared/* 3538*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m1990236732_gshared/* 3539*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m3558017526_gshared/* 3540*/, (Il2CppMethodPointer)&List_1_AddCollection_m2604788661_gshared/* 3541*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m123997745_gshared/* 3542*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m2924650994_gshared/* 3543*/, (Il2CppMethodPointer)&List_1_Contains_m3418300876_gshared/* 3544*/, (Il2CppMethodPointer)&List_1_CopyTo_m2531848027_gshared/* 3545*/, (Il2CppMethodPointer)&List_1_Find_m1079053193_gshared/* 3546*/, (Il2CppMethodPointer)&List_1_CheckMatch_m829620297_gshared/* 3547*/, (Il2CppMethodPointer)&List_1_GetIndex_m3431405265_gshared/* 3548*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m69537818_gshared/* 3549*/, (Il2CppMethodPointer)&List_1_IndexOf_m740603171_gshared/* 3550*/, (Il2CppMethodPointer)&List_1_Shift_m1407444043_gshared/* 3551*/, (Il2CppMethodPointer)&List_1_CheckIndex_m534938740_gshared/* 3552*/, (Il2CppMethodPointer)&List_1_Insert_m3762834193_gshared/* 3553*/, (Il2CppMethodPointer)&List_1_CheckCollection_m3686283821_gshared/* 3554*/, (Il2CppMethodPointer)&List_1_Remove_m409340136_gshared/* 3555*/, (Il2CppMethodPointer)&List_1_RemoveAll_m422591268_gshared/* 3556*/, (Il2CppMethodPointer)&List_1_RemoveAt_m2492464061_gshared/* 3557*/, (Il2CppMethodPointer)&List_1_Reverse_m1505825779_gshared/* 3558*/, (Il2CppMethodPointer)&List_1_Sort_m2856899304_gshared/* 3559*/, (Il2CppMethodPointer)&List_1_Sort_m1170540862_gshared/* 3560*/, (Il2CppMethodPointer)&List_1_ToArray_m733806239_gshared/* 3561*/, (Il2CppMethodPointer)&List_1_TrimExcess_m1122018100_gshared/* 3562*/, (Il2CppMethodPointer)&List_1_get_Capacity_m2917946361_gshared/* 3563*/, (Il2CppMethodPointer)&List_1_set_Capacity_m1512076499_gshared/* 3564*/, (Il2CppMethodPointer)&List_1__ctor_m841318514_gshared/* 3565*/, (Il2CppMethodPointer)&List_1__ctor_m1805125203_gshared/* 3566*/, (Il2CppMethodPointer)&List_1__cctor_m3610311971_gshared/* 3567*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1649200788_gshared/* 3568*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m2140404931_gshared/* 3569*/, (Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m394391294_gshared/* 3570*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m3102476066_gshared/* 3571*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m3814112866_gshared/* 3572*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m3026000507_gshared/* 3573*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m1621338390_gshared/* 3574*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m2623226334_gshared/* 3575*/, (Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1640729755_gshared/* 3576*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m1486427040_gshared/* 3577*/, (Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m186575900_gshared/* 3578*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m3910719997_gshared/* 3579*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m4128239551_gshared/* 3580*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m3351606790_gshared/* 3581*/, (Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m227171669_gshared/* 3582*/, (Il2CppMethodPointer)&List_1_GrowIfNeeded_m4207691066_gshared/* 3583*/, (Il2CppMethodPointer)&List_1_AddCollection_m176179102_gshared/* 3584*/, (Il2CppMethodPointer)&List_1_AddEnumerable_m1770245979_gshared/* 3585*/, (Il2CppMethodPointer)&List_1_AsReadOnly_m3870541098_gshared/* 3586*/, (Il2CppMethodPointer)&List_1_Contains_m116349133_gshared/* 3587*/, (Il2CppMethodPointer)&List_1_CopyTo_m2927282515_gshared/* 3588*/, (Il2CppMethodPointer)&List_1_Find_m316174039_gshared/* 3589*/, (Il2CppMethodPointer)&List_1_CheckMatch_m3866856888_gshared/* 3590*/, (Il2CppMethodPointer)&List_1_GetIndex_m1868778996_gshared/* 3591*/, (Il2CppMethodPointer)&List_1_GetEnumerator_m4013950553_gshared/* 3592*/, (Il2CppMethodPointer)&List_1_IndexOf_m2892715258_gshared/* 3593*/, (Il2CppMethodPointer)&List_1_Shift_m3822524403_gshared/* 3594*/, (Il2CppMethodPointer)&List_1_CheckIndex_m152287138_gshared/* 3595*/, (Il2CppMethodPointer)&List_1_Insert_m2977615926_gshared/* 3596*/, (Il2CppMethodPointer)&List_1_CheckCollection_m1422512165_gshared/* 3597*/, (Il2CppMethodPointer)&List_1_Remove_m2329782977_gshared/* 3598*/, (Il2CppMethodPointer)&List_1_RemoveAll_m2000549891_gshared/* 3599*/, (Il2CppMethodPointer)&List_1_RemoveAt_m317370417_gshared/* 3600*/, (Il2CppMethodPointer)&List_1_Reverse_m941114871_gshared/* 3601*/, (Il2CppMethodPointer)&List_1_Sort_m2088124192_gshared/* 3602*/, (Il2CppMethodPointer)&List_1_Sort_m2021831076_gshared/* 3603*/, (Il2CppMethodPointer)&List_1_ToArray_m2483529909_gshared/* 3604*/, (Il2CppMethodPointer)&List_1_TrimExcess_m3349637858_gshared/* 3605*/, (Il2CppMethodPointer)&List_1_get_Capacity_m659565435_gshared/* 3606*/, (Il2CppMethodPointer)&List_1_set_Capacity_m3583509191_gshared/* 3607*/, (Il2CppMethodPointer)&List_1_get_Count_m2215100161_gshared/* 3608*/, (Il2CppMethodPointer)&Enumerator__ctor_m2546422631_AdjustorThunk/* 3609*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2117722656_AdjustorThunk/* 3610*/, (Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m11128439_AdjustorThunk/* 3611*/, (Il2CppMethodPointer)&Enumerator_Dispose_m3270569160_AdjustorThunk/* 3612*/, (Il2CppMethodPointer)&Enumerator_MoveNext_m212007510_AdjustorThunk/* 3613*/, (Il2CppMethodPointer)&Enumerator_get_Current_m785608888_AdjustorThunk/* 3614*/, (Il2CppMethodPointer)&Queue_1__ctor_m1109302110_gshared/* 3615*/, (Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_CopyTo_m3566303409_gshared/* 3616*/, (Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_get_IsSynchronized_m3525326430_gshared/* 3617*/, (Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_get_SyncRoot_m2190434209_gshared/* 3618*/, (Il2CppMethodPointer)&Queue_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1520286443_gshared/* 3619*/, (Il2CppMethodPointer)&Queue_1_System_Collections_IEnumerable_GetEnumerator_m3662107000_gshared/* 3620*/, (Il2CppMethodPointer)&Queue_1_Peek_m227790364_gshared/* 3621*/, (Il2CppMethodPointer)&Queue_1_GetEnumerator_m3147450358_gshared/* 3622*/, (Il2CppMethodPointer)&Collection_1__ctor_m370603304_gshared/* 3623*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m4230905361_gshared/* 3624*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m4273296862_gshared/* 3625*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m3365352663_gshared/* 3626*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m3569916674_gshared/* 3627*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m3648729211_gshared/* 3628*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1474619724_gshared/* 3629*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m188145979_gshared/* 3630*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m2494973927_gshared/* 3631*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m2046428674_gshared/* 3632*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m3531435498_gshared/* 3633*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m2610796512_gshared/* 3634*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m1620963876_gshared/* 3635*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m1876645811_gshared/* 3636*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m2267381573_gshared/* 3637*/, (Il2CppMethodPointer)&Collection_1_Add_m3207253709_gshared/* 3638*/, (Il2CppMethodPointer)&Collection_1_Clear_m892932569_gshared/* 3639*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m1309537980_gshared/* 3640*/, (Il2CppMethodPointer)&Collection_1_Contains_m3029924880_gshared/* 3641*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m2284819389_gshared/* 3642*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m3707353131_gshared/* 3643*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m2968605598_gshared/* 3644*/, (Il2CppMethodPointer)&Collection_1_Insert_m3152401660_gshared/* 3645*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m2968618240_gshared/* 3646*/, (Il2CppMethodPointer)&Collection_1_Remove_m1157527859_gshared/* 3647*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m945382277_gshared/* 3648*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m2488072228_gshared/* 3649*/, (Il2CppMethodPointer)&Collection_1_get_Count_m1978071579_gshared/* 3650*/, (Il2CppMethodPointer)&Collection_1_get_Item_m1661890000_gshared/* 3651*/, (Il2CppMethodPointer)&Collection_1_set_Item_m2496556911_gshared/* 3652*/, (Il2CppMethodPointer)&Collection_1_SetItem_m2231566296_gshared/* 3653*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m3695211745_gshared/* 3654*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m1032642141_gshared/* 3655*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m2534535911_gshared/* 3656*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m3330012987_gshared/* 3657*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m3773378248_gshared/* 3658*/, (Il2CppMethodPointer)&Collection_1__ctor_m2282344788_gshared/* 3659*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2417181154_gshared/* 3660*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m2506836065_gshared/* 3661*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m2040186119_gshared/* 3662*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m957883076_gshared/* 3663*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m1067071264_gshared/* 3664*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1497681041_gshared/* 3665*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m1204277084_gshared/* 3666*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m2243157697_gshared/* 3667*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m108152855_gshared/* 3668*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m3456717455_gshared/* 3669*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m701191331_gshared/* 3670*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m3427758186_gshared/* 3671*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m112339209_gshared/* 3672*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m3303603295_gshared/* 3673*/, (Il2CppMethodPointer)&Collection_1_Add_m2815885385_gshared/* 3674*/, (Il2CppMethodPointer)&Collection_1_Clear_m3226494904_gshared/* 3675*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m1997416416_gshared/* 3676*/, (Il2CppMethodPointer)&Collection_1_Contains_m966675107_gshared/* 3677*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m1094363646_gshared/* 3678*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m2249558442_gshared/* 3679*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m139243320_gshared/* 3680*/, (Il2CppMethodPointer)&Collection_1_Insert_m1202646927_gshared/* 3681*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m3979273071_gshared/* 3682*/, (Il2CppMethodPointer)&Collection_1_Remove_m2711613382_gshared/* 3683*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m1841732761_gshared/* 3684*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m3888427133_gshared/* 3685*/, (Il2CppMethodPointer)&Collection_1_get_Count_m976858874_gshared/* 3686*/, (Il2CppMethodPointer)&Collection_1_get_Item_m3182302697_gshared/* 3687*/, (Il2CppMethodPointer)&Collection_1_set_Item_m1440261380_gshared/* 3688*/, (Il2CppMethodPointer)&Collection_1_SetItem_m396206318_gshared/* 3689*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m2971081804_gshared/* 3690*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m2372856419_gshared/* 3691*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m4111223566_gshared/* 3692*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m1594949616_gshared/* 3693*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m1706121588_gshared/* 3694*/, (Il2CppMethodPointer)&Collection_1__ctor_m1564356161_gshared/* 3695*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3676785608_gshared/* 3696*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m1442329782_gshared/* 3697*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m4143420582_gshared/* 3698*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m1953474797_gshared/* 3699*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m3232346846_gshared/* 3700*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m3634909912_gshared/* 3701*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m846433347_gshared/* 3702*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m3594318635_gshared/* 3703*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m303948101_gshared/* 3704*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m239880731_gshared/* 3705*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m2810535980_gshared/* 3706*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m3940895184_gshared/* 3707*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m1522935612_gshared/* 3708*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m3301188171_gshared/* 3709*/, (Il2CppMethodPointer)&Collection_1_Add_m1643058260_gshared/* 3710*/, (Il2CppMethodPointer)&Collection_1_Clear_m2842246590_gshared/* 3711*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m3607851213_gshared/* 3712*/, (Il2CppMethodPointer)&Collection_1_Contains_m808847723_gshared/* 3713*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m2138111407_gshared/* 3714*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m367473183_gshared/* 3715*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m1729157306_gshared/* 3716*/, (Il2CppMethodPointer)&Collection_1_Insert_m2449244420_gshared/* 3717*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m1649875636_gshared/* 3718*/, (Il2CppMethodPointer)&Collection_1_Remove_m4179719101_gshared/* 3719*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m3031910304_gshared/* 3720*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m4259909138_gshared/* 3721*/, (Il2CppMethodPointer)&Collection_1_get_Count_m4016575725_gshared/* 3722*/, (Il2CppMethodPointer)&Collection_1_get_Item_m2823660093_gshared/* 3723*/, (Il2CppMethodPointer)&Collection_1_set_Item_m1058151935_gshared/* 3724*/, (Il2CppMethodPointer)&Collection_1_SetItem_m3166309743_gshared/* 3725*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m220103751_gshared/* 3726*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m4066041643_gshared/* 3727*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m2459169921_gshared/* 3728*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m2385423500_gshared/* 3729*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m4021093834_gshared/* 3730*/, (Il2CppMethodPointer)&Collection_1__ctor_m1037763311_gshared/* 3731*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m800866293_gshared/* 3732*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m2498698546_gshared/* 3733*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m2146624406_gshared/* 3734*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m4202115202_gshared/* 3735*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m1452315789_gshared/* 3736*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1917169199_gshared/* 3737*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m3614417080_gshared/* 3738*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m2242132549_gshared/* 3739*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m335681125_gshared/* 3740*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m1824327949_gshared/* 3741*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m3510230228_gshared/* 3742*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m489344879_gshared/* 3743*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m1551171936_gshared/* 3744*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m1477034698_gshared/* 3745*/, (Il2CppMethodPointer)&Collection_1_Add_m3226399184_gshared/* 3746*/, (Il2CppMethodPointer)&Collection_1_Clear_m908877058_gshared/* 3747*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m3984321499_gshared/* 3748*/, (Il2CppMethodPointer)&Collection_1_Contains_m528069259_gshared/* 3749*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m2220834530_gshared/* 3750*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m725876408_gshared/* 3751*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m3471752011_gshared/* 3752*/, (Il2CppMethodPointer)&Collection_1_Insert_m2959139902_gshared/* 3753*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m4246158777_gshared/* 3754*/, (Il2CppMethodPointer)&Collection_1_Remove_m2888763458_gshared/* 3755*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m4116760013_gshared/* 3756*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m1799073249_gshared/* 3757*/, (Il2CppMethodPointer)&Collection_1_get_Count_m827473269_gshared/* 3758*/, (Il2CppMethodPointer)&Collection_1_get_Item_m750103853_gshared/* 3759*/, (Il2CppMethodPointer)&Collection_1_set_Item_m2005759795_gshared/* 3760*/, (Il2CppMethodPointer)&Collection_1_SetItem_m1556026097_gshared/* 3761*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m1186917187_gshared/* 3762*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m1121464645_gshared/* 3763*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m3479911675_gshared/* 3764*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m732123088_gshared/* 3765*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m1520287836_gshared/* 3766*/, (Il2CppMethodPointer)&Collection_1__ctor_m1658537192_gshared/* 3767*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1890378160_gshared/* 3768*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m1224653290_gshared/* 3769*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m543131426_gshared/* 3770*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m636559570_gshared/* 3771*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m1778411030_gshared/* 3772*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1885789871_gshared/* 3773*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m2450142546_gshared/* 3774*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m3874417038_gshared/* 3775*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m1212887170_gshared/* 3776*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m2211704655_gshared/* 3777*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m2006617540_gshared/* 3778*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m4294742991_gshared/* 3779*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m3561608521_gshared/* 3780*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m1791043954_gshared/* 3781*/, (Il2CppMethodPointer)&Collection_1_Add_m4273303132_gshared/* 3782*/, (Il2CppMethodPointer)&Collection_1_Clear_m469411639_gshared/* 3783*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m1139347032_gshared/* 3784*/, (Il2CppMethodPointer)&Collection_1_Contains_m923923904_gshared/* 3785*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m3767941084_gshared/* 3786*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m3016336636_gshared/* 3787*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m2268990561_gshared/* 3788*/, (Il2CppMethodPointer)&Collection_1_Insert_m785389697_gshared/* 3789*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m3349627829_gshared/* 3790*/, (Il2CppMethodPointer)&Collection_1_Remove_m3796873544_gshared/* 3791*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m768213386_gshared/* 3792*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m3361938438_gshared/* 3793*/, (Il2CppMethodPointer)&Collection_1_get_Count_m3310718131_gshared/* 3794*/, (Il2CppMethodPointer)&Collection_1_get_Item_m1099155791_gshared/* 3795*/, (Il2CppMethodPointer)&Collection_1_set_Item_m1257957670_gshared/* 3796*/, (Il2CppMethodPointer)&Collection_1_SetItem_m81427131_gshared/* 3797*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m1692259322_gshared/* 3798*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m3572965793_gshared/* 3799*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m4202467247_gshared/* 3800*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m314243679_gshared/* 3801*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m1261355321_gshared/* 3802*/, (Il2CppMethodPointer)&Collection_1__ctor_m862647250_gshared/* 3803*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1379246212_gshared/* 3804*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m113925245_gshared/* 3805*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m3263345794_gshared/* 3806*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m3490921927_gshared/* 3807*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m1487304508_gshared/* 3808*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1032965762_gshared/* 3809*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m4174029425_gshared/* 3810*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m1995593999_gshared/* 3811*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m2303238103_gshared/* 3812*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m2049591139_gshared/* 3813*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m3729574195_gshared/* 3814*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m2829881063_gshared/* 3815*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m2793215997_gshared/* 3816*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m1769258335_gshared/* 3817*/, (Il2CppMethodPointer)&Collection_1_Add_m3966287673_gshared/* 3818*/, (Il2CppMethodPointer)&Collection_1_Clear_m2974920160_gshared/* 3819*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m2972420279_gshared/* 3820*/, (Il2CppMethodPointer)&Collection_1_Contains_m510430922_gshared/* 3821*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m2579473771_gshared/* 3822*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m1222108015_gshared/* 3823*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m3193115429_gshared/* 3824*/, (Il2CppMethodPointer)&Collection_1_Insert_m1209383239_gshared/* 3825*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m2166291923_gshared/* 3826*/, (Il2CppMethodPointer)&Collection_1_Remove_m1776618446_gshared/* 3827*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m1459785997_gshared/* 3828*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m1361664840_gshared/* 3829*/, (Il2CppMethodPointer)&Collection_1_get_Count_m3846839564_gshared/* 3830*/, (Il2CppMethodPointer)&Collection_1_get_Item_m930989744_gshared/* 3831*/, (Il2CppMethodPointer)&Collection_1_set_Item_m1132680922_gshared/* 3832*/, (Il2CppMethodPointer)&Collection_1_SetItem_m158751453_gshared/* 3833*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m3336103651_gshared/* 3834*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m3185056835_gshared/* 3835*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m3724778730_gshared/* 3836*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m1454294255_gshared/* 3837*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m869657125_gshared/* 3838*/, (Il2CppMethodPointer)&Collection_1__ctor_m407913131_gshared/* 3839*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m51957980_gshared/* 3840*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m1215521680_gshared/* 3841*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m255200458_gshared/* 3842*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m1035933190_gshared/* 3843*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m445585478_gshared/* 3844*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m986541995_gshared/* 3845*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m96105577_gshared/* 3846*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m4164492859_gshared/* 3847*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m1182735405_gshared/* 3848*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m3673515248_gshared/* 3849*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m1323706603_gshared/* 3850*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m3571741302_gshared/* 3851*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m3233778008_gshared/* 3852*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m3049800723_gshared/* 3853*/, (Il2CppMethodPointer)&Collection_1_Add_m4240053368_gshared/* 3854*/, (Il2CppMethodPointer)&Collection_1_Clear_m3262948717_gshared/* 3855*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m749831004_gshared/* 3856*/, (Il2CppMethodPointer)&Collection_1_Contains_m1952288870_gshared/* 3857*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m587616220_gshared/* 3858*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m43477077_gshared/* 3859*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m1845471149_gshared/* 3860*/, (Il2CppMethodPointer)&Collection_1_Insert_m1715766615_gshared/* 3861*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m435581539_gshared/* 3862*/, (Il2CppMethodPointer)&Collection_1_Remove_m2649483549_gshared/* 3863*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m4095861854_gshared/* 3864*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m1551254624_gshared/* 3865*/, (Il2CppMethodPointer)&Collection_1_get_Count_m2342416945_gshared/* 3866*/, (Il2CppMethodPointer)&Collection_1_get_Item_m1571712592_gshared/* 3867*/, (Il2CppMethodPointer)&Collection_1_set_Item_m2671771820_gshared/* 3868*/, (Il2CppMethodPointer)&Collection_1_SetItem_m4259979234_gshared/* 3869*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m313175405_gshared/* 3870*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m3887677175_gshared/* 3871*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m3550453538_gshared/* 3872*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m1460309414_gshared/* 3873*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m3685890525_gshared/* 3874*/, (Il2CppMethodPointer)&Collection_1__ctor_m1684523968_gshared/* 3875*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m705932263_gshared/* 3876*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m1600131133_gshared/* 3877*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m2660980356_gshared/* 3878*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m4074072555_gshared/* 3879*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m3088678649_gshared/* 3880*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m2244934388_gshared/* 3881*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m1537461248_gshared/* 3882*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m1367853497_gshared/* 3883*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m2220833130_gshared/* 3884*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m180011498_gshared/* 3885*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m1735839943_gshared/* 3886*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m44581794_gshared/* 3887*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m1738640380_gshared/* 3888*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m1464874538_gshared/* 3889*/, (Il2CppMethodPointer)&Collection_1_Add_m2371688404_gshared/* 3890*/, (Il2CppMethodPointer)&Collection_1_Clear_m348720743_gshared/* 3891*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m2867530510_gshared/* 3892*/, (Il2CppMethodPointer)&Collection_1_Contains_m1531958020_gshared/* 3893*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m3283595001_gshared/* 3894*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m2838834415_gshared/* 3895*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m4227445723_gshared/* 3896*/, (Il2CppMethodPointer)&Collection_1_Insert_m3792413348_gshared/* 3897*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m2994433596_gshared/* 3898*/, (Il2CppMethodPointer)&Collection_1_Remove_m2750923526_gshared/* 3899*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m3946676102_gshared/* 3900*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m2506429527_gshared/* 3901*/, (Il2CppMethodPointer)&Collection_1_get_Count_m1049265413_gshared/* 3902*/, (Il2CppMethodPointer)&Collection_1_get_Item_m1266757967_gshared/* 3903*/, (Il2CppMethodPointer)&Collection_1_set_Item_m3094872498_gshared/* 3904*/, (Il2CppMethodPointer)&Collection_1_SetItem_m4261730051_gshared/* 3905*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m2741101058_gshared/* 3906*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m1424491515_gshared/* 3907*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m2104350537_gshared/* 3908*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m1205076640_gshared/* 3909*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m808435129_gshared/* 3910*/, (Il2CppMethodPointer)&Collection_1__ctor_m357534278_gshared/* 3911*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1759251300_gshared/* 3912*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m1191140336_gshared/* 3913*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m2251920450_gshared/* 3914*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m3016900633_gshared/* 3915*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m3067386754_gshared/* 3916*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1002170697_gshared/* 3917*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m4250293152_gshared/* 3918*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m784795206_gshared/* 3919*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m1286478435_gshared/* 3920*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m191247020_gshared/* 3921*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m2552253207_gshared/* 3922*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m3742055318_gshared/* 3923*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m2188528202_gshared/* 3924*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m985119204_gshared/* 3925*/, (Il2CppMethodPointer)&Collection_1_Add_m2479233035_gshared/* 3926*/, (Il2CppMethodPointer)&Collection_1_Clear_m4017857709_gshared/* 3927*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m3743175722_gshared/* 3928*/, (Il2CppMethodPointer)&Collection_1_Contains_m4983498_gshared/* 3929*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m3178244425_gshared/* 3930*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m3337355776_gshared/* 3931*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m3717897106_gshared/* 3932*/, (Il2CppMethodPointer)&Collection_1_Insert_m108252817_gshared/* 3933*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m155467040_gshared/* 3934*/, (Il2CppMethodPointer)&Collection_1_Remove_m3202258894_gshared/* 3935*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m1138947571_gshared/* 3936*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m2990428884_gshared/* 3937*/, (Il2CppMethodPointer)&Collection_1_get_Count_m3879225044_gshared/* 3938*/, (Il2CppMethodPointer)&Collection_1_get_Item_m2707891070_gshared/* 3939*/, (Il2CppMethodPointer)&Collection_1_set_Item_m169276279_gshared/* 3940*/, (Il2CppMethodPointer)&Collection_1_SetItem_m3867638948_gshared/* 3941*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m3556158270_gshared/* 3942*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m3169362545_gshared/* 3943*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m2319555243_gshared/* 3944*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m129523919_gshared/* 3945*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m981312982_gshared/* 3946*/, (Il2CppMethodPointer)&Collection_1__ctor_m4260923922_gshared/* 3947*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2880840078_gshared/* 3948*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m1993653391_gshared/* 3949*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m510811711_gshared/* 3950*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m2145738377_gshared/* 3951*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m3344981453_gshared/* 3952*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m662793316_gshared/* 3953*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m568404499_gshared/* 3954*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m1170523906_gshared/* 3955*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m1022313875_gshared/* 3956*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m4103395116_gshared/* 3957*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m338726744_gshared/* 3958*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m3360535719_gshared/* 3959*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m576540095_gshared/* 3960*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m2471011709_gshared/* 3961*/, (Il2CppMethodPointer)&Collection_1_Add_m4189103800_gshared/* 3962*/, (Il2CppMethodPointer)&Collection_1_Clear_m1001902820_gshared/* 3963*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m126085553_gshared/* 3964*/, (Il2CppMethodPointer)&Collection_1_Contains_m3188361173_gshared/* 3965*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m397598120_gshared/* 3966*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m830938352_gshared/* 3967*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m3521391127_gshared/* 3968*/, (Il2CppMethodPointer)&Collection_1_Insert_m3676110539_gshared/* 3969*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m1091353653_gshared/* 3970*/, (Il2CppMethodPointer)&Collection_1_Remove_m1479728347_gshared/* 3971*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m2716636335_gshared/* 3972*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m3018553662_gshared/* 3973*/, (Il2CppMethodPointer)&Collection_1_get_Count_m481585279_gshared/* 3974*/, (Il2CppMethodPointer)&Collection_1_get_Item_m3622502310_gshared/* 3975*/, (Il2CppMethodPointer)&Collection_1_set_Item_m3277550669_gshared/* 3976*/, (Il2CppMethodPointer)&Collection_1_SetItem_m4068044190_gshared/* 3977*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m4062595238_gshared/* 3978*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m4292528661_gshared/* 3979*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m260225172_gshared/* 3980*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m3411727864_gshared/* 3981*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m3050738713_gshared/* 3982*/, (Il2CppMethodPointer)&Collection_1__ctor_m1598038395_gshared/* 3983*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2085103535_gshared/* 3984*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m3161594172_gshared/* 3985*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m1720648455_gshared/* 3986*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m1825196050_gshared/* 3987*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m2398367108_gshared/* 3988*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m2973531340_gshared/* 3989*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m4133261863_gshared/* 3990*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m1735336159_gshared/* 3991*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m775124517_gshared/* 3992*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m2204353810_gshared/* 3993*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m673830421_gshared/* 3994*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m3948341756_gshared/* 3995*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m1648808019_gshared/* 3996*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m1208325592_gshared/* 3997*/, (Il2CppMethodPointer)&Collection_1_Add_m2243753696_gshared/* 3998*/, (Il2CppMethodPointer)&Collection_1_Clear_m1705549534_gshared/* 3999*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m2180022014_gshared/* 4000*/, (Il2CppMethodPointer)&Collection_1_Contains_m957312676_gshared/* 4001*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m536100724_gshared/* 4002*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m3396036611_gshared/* 4003*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m2147604397_gshared/* 4004*/, (Il2CppMethodPointer)&Collection_1_Insert_m3142623580_gshared/* 4005*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m1104379172_gshared/* 4006*/, (Il2CppMethodPointer)&Collection_1_Remove_m1588099251_gshared/* 4007*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m3977284983_gshared/* 4008*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m223652455_gshared/* 4009*/, (Il2CppMethodPointer)&Collection_1_get_Count_m3722526935_gshared/* 4010*/, (Il2CppMethodPointer)&Collection_1_get_Item_m470030422_gshared/* 4011*/, (Il2CppMethodPointer)&Collection_1_set_Item_m2456895106_gshared/* 4012*/, (Il2CppMethodPointer)&Collection_1_SetItem_m1032509344_gshared/* 4013*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m4030585605_gshared/* 4014*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m1765056477_gshared/* 4015*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m771588254_gshared/* 4016*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m3067846108_gshared/* 4017*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m2233061059_gshared/* 4018*/, (Il2CppMethodPointer)&Collection_1__ctor_m3539754069_gshared/* 4019*/, (Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1771005219_gshared/* 4020*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m493563714_gshared/* 4021*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m956197710_gshared/* 4022*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m1442039487_gshared/* 4023*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m358188699_gshared/* 4024*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1746385248_gshared/* 4025*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m318861005_gshared/* 4026*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m3626426357_gshared/* 4027*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m918347343_gshared/* 4028*/, (Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m1237459834_gshared/* 4029*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m1270410136_gshared/* 4030*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m3875841446_gshared/* 4031*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m2496684628_gshared/* 4032*/, (Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m3722249710_gshared/* 4033*/, (Il2CppMethodPointer)&Collection_1_Add_m3520201468_gshared/* 4034*/, (Il2CppMethodPointer)&Collection_1_Clear_m264312017_gshared/* 4035*/, (Il2CppMethodPointer)&Collection_1_ClearItems_m2238836353_gshared/* 4036*/, (Il2CppMethodPointer)&Collection_1_Contains_m844131527_gshared/* 4037*/, (Il2CppMethodPointer)&Collection_1_CopyTo_m2992397915_gshared/* 4038*/, (Il2CppMethodPointer)&Collection_1_GetEnumerator_m2082652486_gshared/* 4039*/, (Il2CppMethodPointer)&Collection_1_IndexOf_m340707316_gshared/* 4040*/, (Il2CppMethodPointer)&Collection_1_Insert_m321751199_gshared/* 4041*/, (Il2CppMethodPointer)&Collection_1_InsertItem_m2734021805_gshared/* 4042*/, (Il2CppMethodPointer)&Collection_1_Remove_m836240285_gshared/* 4043*/, (Il2CppMethodPointer)&Collection_1_RemoveAt_m1717481822_gshared/* 4044*/, (Il2CppMethodPointer)&Collection_1_RemoveItem_m4270379919_gshared/* 4045*/, (Il2CppMethodPointer)&Collection_1_get_Count_m2208909054_gshared/* 4046*/, (Il2CppMethodPointer)&Collection_1_get_Item_m2658951905_gshared/* 4047*/, (Il2CppMethodPointer)&Collection_1_set_Item_m1690053936_gshared/* 4048*/, (Il2CppMethodPointer)&Collection_1_SetItem_m935751489_gshared/* 4049*/, (Il2CppMethodPointer)&Collection_1_IsValidItem_m1135547855_gshared/* 4050*/, (Il2CppMethodPointer)&Collection_1_ConvertItem_m1713764229_gshared/* 4051*/, (Il2CppMethodPointer)&Collection_1_CheckWritable_m70532477_gshared/* 4052*/, (Il2CppMethodPointer)&Collection_1_IsSynchronized_m1628985721_gshared/* 4053*/, (Il2CppMethodPointer)&Collection_1_IsFixedSize_m3544443312_gshared/* 4054*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m3791327764_gshared/* 4055*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m3301033772_gshared/* 4056*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m82283595_gshared/* 4057*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m927451218_gshared/* 4058*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m343046777_gshared/* 4059*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m1054720687_gshared/* 4060*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m141381488_gshared/* 4061*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m1474757378_gshared/* 4062*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2268246545_gshared/* 4063*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m1050690529_gshared/* 4064*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3571397372_gshared/* 4065*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m2909357569_gshared/* 4066*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m620345736_gshared/* 4067*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m2235784655_gshared/* 4068*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m933123645_gshared/* 4069*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m2083067326_gshared/* 4070*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m3069512161_gshared/* 4071*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1171379537_gshared/* 4072*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m269357388_gshared/* 4073*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m3931236467_gshared/* 4074*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m1925431362_gshared/* 4075*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m744471768_gshared/* 4076*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m4034059193_gshared/* 4077*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m321298145_gshared/* 4078*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m1202802495_gshared/* 4079*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m3594386898_gshared/* 4080*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m925626784_gshared/* 4081*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m1096070070_gshared/* 4082*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m2839998955_gshared/* 4083*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m2433832779_gshared/* 4084*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m2389428128_gshared/* 4085*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m2386779399_gshared/* 4086*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m3824889284_gshared/* 4087*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m44596766_gshared/* 4088*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m3598941268_gshared/* 4089*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m1080524970_gshared/* 4090*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m3057537900_gshared/* 4091*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3035778237_gshared/* 4092*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m244076465_gshared/* 4093*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m181148251_gshared/* 4094*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m2332356122_gshared/* 4095*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m3607648604_gshared/* 4096*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m258656558_gshared/* 4097*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m2221494978_gshared/* 4098*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m3010857992_gshared/* 4099*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m656817739_gshared/* 4100*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m904938906_gshared/* 4101*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1923952176_gshared/* 4102*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m3827774553_gshared/* 4103*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m3393952332_gshared/* 4104*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m2461315549_gshared/* 4105*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m4141972181_gshared/* 4106*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m4176488195_gshared/* 4107*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m398746221_gshared/* 4108*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m513992354_gshared/* 4109*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m1883850068_gshared/* 4110*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m3906219476_gshared/* 4111*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m1913351367_gshared/* 4112*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m2081927786_gshared/* 4113*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m4188483961_gshared/* 4114*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m2880611626_gshared/* 4115*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m3084349535_gshared/* 4116*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m3408673321_gshared/* 4117*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m3889440497_gshared/* 4118*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m162873891_gshared/* 4119*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m2347584249_gshared/* 4120*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m2347062888_gshared/* 4121*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3523524435_gshared/* 4122*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m846392288_gshared/* 4123*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m4130632587_gshared/* 4124*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m1403598162_gshared/* 4125*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m3040924488_gshared/* 4126*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m3096277387_gshared/* 4127*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m1562329493_gshared/* 4128*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m1980676884_gshared/* 4129*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m1600401410_gshared/* 4130*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m2827031731_gshared/* 4131*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1450544420_gshared/* 4132*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m174336642_gshared/* 4133*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m3430667458_gshared/* 4134*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m3446312175_gshared/* 4135*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3770014726_gshared/* 4136*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m3093876282_gshared/* 4137*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m1156561653_gshared/* 4138*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m1224230312_gshared/* 4139*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m2205140191_gshared/* 4140*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m3185883722_gshared/* 4141*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m1124648084_gshared/* 4142*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m931090318_gshared/* 4143*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m2569879855_gshared/* 4144*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1435233979_gshared/* 4145*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m776396001_gshared/* 4146*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m581493919_gshared/* 4147*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m2131592847_gshared/* 4148*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m3491742021_gshared/* 4149*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3378632286_gshared/* 4150*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m2078367952_gshared/* 4151*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m477144818_gshared/* 4152*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2257810765_gshared/* 4153*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m3309068197_gshared/* 4154*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m2783225576_gshared/* 4155*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m3602674223_gshared/* 4156*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m186268900_gshared/* 4157*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m3108877045_gshared/* 4158*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m371923433_gshared/* 4159*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m3900241_gshared/* 4160*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m854206670_gshared/* 4161*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m3302463352_gshared/* 4162*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2421522198_gshared/* 4163*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m4177626205_gshared/* 4164*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m2215062109_gshared/* 4165*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m4104654136_gshared/* 4166*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m1629908694_gshared/* 4167*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m3382541009_gshared/* 4168*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m4029916821_gshared/* 4169*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m1590679193_gshared/* 4170*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m3804331402_gshared/* 4171*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m2853691202_gshared/* 4172*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m1198813529_gshared/* 4173*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m2041155270_gshared/* 4174*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m2051673857_gshared/* 4175*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m3473044375_gshared/* 4176*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2847064637_gshared/* 4177*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m4178948641_gshared/* 4178*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m2077059022_gshared/* 4179*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3052292110_gshared/* 4180*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m3434336733_gshared/* 4181*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3827004573_gshared/* 4182*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2615649304_gshared/* 4183*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m1740702185_gshared/* 4184*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m2342147693_gshared/* 4185*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m1060075357_gshared/* 4186*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m3665001063_gshared/* 4187*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m3656310254_gshared/* 4188*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m3208174360_gshared/* 4189*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m1221414440_gshared/* 4190*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m233056980_gshared/* 4191*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m4259063435_gshared/* 4192*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m1250359493_gshared/* 4193*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m65312773_gshared/* 4194*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m658766930_gshared/* 4195*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m2549965753_gshared/* 4196*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m2860709879_gshared/* 4197*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m2421119277_gshared/* 4198*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m876684185_gshared/* 4199*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m3654303666_gshared/* 4200*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m2036384270_gshared/* 4201*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m3560891737_gshared/* 4202*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m3416295294_gshared/* 4203*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m290453617_gshared/* 4204*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1280205074_gshared/* 4205*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m96690563_gshared/* 4206*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m277026783_gshared/* 4207*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m3334416264_gshared/* 4208*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m198574596_gshared/* 4209*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3686912555_gshared/* 4210*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m77482646_gshared/* 4211*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m1125768080_gshared/* 4212*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2976428727_gshared/* 4213*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m2106284868_gshared/* 4214*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3617398146_gshared/* 4215*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m1702886803_gshared/* 4216*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m2501170889_gshared/* 4217*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m1101844283_gshared/* 4218*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m1967352704_gshared/* 4219*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m3575044260_gshared/* 4220*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m3542056846_gshared/* 4221*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m414530363_gshared/* 4222*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2795670345_gshared/* 4223*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m3163026961_gshared/* 4224*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m2228303956_gshared/* 4225*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m1133270299_gshared/* 4226*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m3384883925_gshared/* 4227*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m4234059967_gshared/* 4228*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m3988905077_gshared/* 4229*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m1696778232_gshared/* 4230*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m1900163338_gshared/* 4231*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m893001455_gshared/* 4232*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m2210582196_gshared/* 4233*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m804302590_gshared/* 4234*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1302552978_gshared/* 4235*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m1956676091_gshared/* 4236*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2880839618_gshared/* 4237*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m3348500519_gshared/* 4238*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m2502650283_gshared/* 4239*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m2205328453_gshared/* 4240*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1422313866_gshared/* 4241*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m2500166725_gshared/* 4242*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m906425705_gshared/* 4243*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m3378426672_gshared/* 4244*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m2695810870_gshared/* 4245*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m3730422579_gshared/* 4246*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m1700672028_gshared/* 4247*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m3544445602_gshared/* 4248*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m1925662645_gshared/* 4249*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m2962345889_gshared/* 4250*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m3820196292_gshared/* 4251*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m3176119858_gshared/* 4252*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m3394054842_gshared/* 4253*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m794257605_gshared/* 4254*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m2460974179_gshared/* 4255*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3830336754_gshared/* 4256*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m894950708_gshared/* 4257*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m1024239684_gshared/* 4258*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m3168561469_gshared/* 4259*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m1579400666_gshared/* 4260*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m1817830058_gshared/* 4261*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m4153978071_gshared/* 4262*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m2581518772_gshared/* 4263*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m3364998067_gshared/* 4264*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m570479235_gshared/* 4265*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m1503494183_gshared/* 4266*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2144873582_gshared/* 4267*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m1477704761_gshared/* 4268*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m2403000844_gshared/* 4269*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3855008123_gshared/* 4270*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m2067247954_gshared/* 4271*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m4241685464_gshared/* 4272*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1708118676_gshared/* 4273*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m833932186_gshared/* 4274*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3107263221_gshared/* 4275*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m170328923_gshared/* 4276*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m1022192878_gshared/* 4277*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m1335669717_gshared/* 4278*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m1057690090_gshared/* 4279*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m3186049426_gshared/* 4280*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m3335711177_gshared/* 4281*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1110433431_gshared/* 4282*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m522662272_gshared/* 4283*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m2678794268_gshared/* 4284*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m4134062767_gshared/* 4285*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3342020913_gshared/* 4286*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m3145532553_gshared/* 4287*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m139775773_gshared/* 4288*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m3137174107_gshared/* 4289*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m3437194485_gshared/* 4290*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m2496861992_gshared/* 4291*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m4032564811_gshared/* 4292*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m3537681225_gshared/* 4293*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m294882198_gshared/* 4294*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1762959247_gshared/* 4295*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m1095633093_gshared/* 4296*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m1354999746_gshared/* 4297*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m3810042746_gshared/* 4298*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m3551984894_gshared/* 4299*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3236584704_gshared/* 4300*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m3642025694_gshared/* 4301*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m2744735364_gshared/* 4302*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3091483510_gshared/* 4303*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m3364041995_gshared/* 4304*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3246606354_gshared/* 4305*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m2322461581_gshared/* 4306*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m1541669924_gshared/* 4307*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m2308585277_gshared/* 4308*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m240767043_gshared/* 4309*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m3930201107_gshared/* 4310*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m2021493480_gshared/* 4311*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m3493539393_gshared/* 4312*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2698962302_gshared/* 4313*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m774110280_gshared/* 4314*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m3164477_gshared/* 4315*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3123198989_gshared/* 4316*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m2804705849_gshared/* 4317*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m3561825056_gshared/* 4318*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m759581256_gshared/* 4319*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m195304470_gshared/* 4320*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m2770266142_gshared/* 4321*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m3355211400_gshared/* 4322*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m2598165562_gshared/* 4323*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m2436074604_gshared/* 4324*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1258937741_gshared/* 4325*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m77816370_gshared/* 4326*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2015084482_gshared/* 4327*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m1143496603_gshared/* 4328*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m2494624595_gshared/* 4329*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m75805821_gshared/* 4330*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1769686930_gshared/* 4331*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m2746105468_gshared/* 4332*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1297343998_gshared/* 4333*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m3503428121_gshared/* 4334*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m4208042932_gshared/* 4335*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m3713087082_gshared/* 4336*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m1101764939_gshared/* 4337*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m3584152087_gshared/* 4338*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m2849116687_gshared/* 4339*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m3990606515_gshared/* 4340*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m3174834349_gshared/* 4341*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m2647511229_gshared/* 4342*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m3773066746_gshared/* 4343*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m1096056381_gshared/* 4344*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m3992669118_gshared/* 4345*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m771988920_gshared/* 4346*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m40260717_gshared/* 4347*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m339396424_gshared/* 4348*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m4019351030_gshared/* 4349*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m4102050090_gshared/* 4350*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m1140126666_gshared/* 4351*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m837985983_gshared/* 4352*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m3396299880_gshared/* 4353*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m540417879_gshared/* 4354*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1616453670_gshared/* 4355*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m4098060367_gshared/* 4356*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2016262503_gshared/* 4357*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m15093415_gshared/* 4358*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m1450470050_gshared/* 4359*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3397157393_gshared/* 4360*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m2483638661_gshared/* 4361*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3439380116_gshared/* 4362*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1091630510_gshared/* 4363*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m4164422585_gshared/* 4364*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3307724209_gshared/* 4365*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m2679810904_gshared/* 4366*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m829970382_gshared/* 4367*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m1226779575_gshared/* 4368*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m4070713259_gshared/* 4369*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m3173525563_gshared/* 4370*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m2295067401_gshared/* 4371*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1413395251_gshared/* 4372*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2320294339_gshared/* 4373*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m476056295_gshared/* 4374*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m1541227818_gshared/* 4375*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m2140102848_gshared/* 4376*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m1694932108_gshared/* 4377*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m3181547020_gshared/* 4378*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m3879318229_gshared/* 4379*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m705835259_gshared/* 4380*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m1138268964_gshared/* 4381*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m218189195_gshared/* 4382*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m3518411841_gshared/* 4383*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m423007365_gshared/* 4384*/, (Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m3339099643_gshared/* 4385*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m7408334_gshared/* 4386*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m3250354375_gshared/* 4387*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m4136757688_gshared/* 4388*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m2210079064_gshared/* 4389*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3331007004_gshared/* 4390*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1309715206_gshared/* 4391*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3412723531_gshared/* 4392*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m917453567_gshared/* 4393*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m610598606_gshared/* 4394*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m1602866616_gshared/* 4395*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m3604324672_gshared/* 4396*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m107747551_gshared/* 4397*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m125134211_gshared/* 4398*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m4261402499_gshared/* 4399*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m785956446_gshared/* 4400*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m461798447_gshared/* 4401*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m3337572784_gshared/* 4402*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2619534079_gshared/* 4403*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m444434369_gshared/* 4404*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m3937404293_gshared/* 4405*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m310085384_gshared/* 4406*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m3875472584_gshared/* 4407*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m1060889398_gshared/* 4408*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m2345160103_gshared/* 4409*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m96511817_gshared/* 4410*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m2309536646_gshared/* 4411*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m4078614084_gshared/* 4412*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m3917919846_gshared/* 4413*/, (Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m4082210165_gshared/* 4414*/, (Il2CppMethodPointer)&Comparison_1__ctor_m3052056276_gshared/* 4415*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m3470545525_gshared/* 4416*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m3491481975_gshared/* 4417*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m1296865916_gshared/* 4418*/, (Il2CppMethodPointer)&Comparison_1__ctor_m3388426865_gshared/* 4419*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m106791065_gshared/* 4420*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m1674965123_gshared/* 4421*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m2567983005_gshared/* 4422*/, (Il2CppMethodPointer)&Comparison_1__ctor_m920043136_gshared/* 4423*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m4168979157_gshared/* 4424*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m817558709_gshared/* 4425*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m3532239146_gshared/* 4426*/, (Il2CppMethodPointer)&Comparison_1__ctor_m3364624778_gshared/* 4427*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m1074596548_gshared/* 4428*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m2605187963_gshared/* 4429*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m4086463822_gshared/* 4430*/, (Il2CppMethodPointer)&Comparison_1__ctor_m3963736951_gshared/* 4431*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m1507778531_gshared/* 4432*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m2141390384_gshared/* 4433*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m2403115798_gshared/* 4434*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m1465381063_gshared/* 4435*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m4216609694_gshared/* 4436*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m1347286341_gshared/* 4437*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m1121502121_gshared/* 4438*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m1435205092_gshared/* 4439*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m2469163587_gshared/* 4440*/, (Il2CppMethodPointer)&Comparison_1__ctor_m336925466_gshared/* 4441*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m4277779933_gshared/* 4442*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m3886843251_gshared/* 4443*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m1466690643_gshared/* 4444*/, (Il2CppMethodPointer)&Comparison_1__ctor_m1601300920_gshared/* 4445*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m4112634467_gshared/* 4446*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m750130844_gshared/* 4447*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m4292435518_gshared/* 4448*/, (Il2CppMethodPointer)&Comparison_1__ctor_m1218529312_gshared/* 4449*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m110547008_gshared/* 4450*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m344255918_gshared/* 4451*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m4079241771_gshared/* 4452*/, (Il2CppMethodPointer)&Comparison_1__ctor_m2542072805_gshared/* 4453*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m3322309996_gshared/* 4454*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m1447645065_gshared/* 4455*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m3783115725_gshared/* 4456*/, (Il2CppMethodPointer)&Comparison_1__ctor_m908222641_gshared/* 4457*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m1491091937_gshared/* 4458*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m3096545952_gshared/* 4459*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m3445464161_gshared/* 4460*/, (Il2CppMethodPointer)&Comparison_1__ctor_m2802180781_gshared/* 4461*/, (Il2CppMethodPointer)&Comparison_1_Invoke_m1753569942_gshared/* 4462*/, (Il2CppMethodPointer)&Comparison_1_BeginInvoke_m650992744_gshared/* 4463*/, (Il2CppMethodPointer)&Comparison_1_EndInvoke_m1532201052_gshared/* 4464*/, (Il2CppMethodPointer)&Func_2_Invoke_m3879188777_gshared/* 4465*/, (Il2CppMethodPointer)&Func_2_BeginInvoke_m2423949116_gshared/* 4466*/, (Il2CppMethodPointer)&Func_2_EndInvoke_m693312050_gshared/* 4467*/, (Il2CppMethodPointer)&Func_2_BeginInvoke_m3793888214_gshared/* 4468*/, (Il2CppMethodPointer)&Func_2_EndInvoke_m368871119_gshared/* 4469*/, (Il2CppMethodPointer)&Func_2_BeginInvoke_m2171057164_gshared/* 4470*/, (Il2CppMethodPointer)&Func_2_EndInvoke_m3620171036_gshared/* 4471*/, (Il2CppMethodPointer)&Func_3__ctor_m305757758_gshared/* 4472*/, (Il2CppMethodPointer)&Func_3_BeginInvoke_m1086974890_gshared/* 4473*/, (Il2CppMethodPointer)&Func_3_EndInvoke_m943917912_gshared/* 4474*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1__ctor_m197260272_gshared/* 4475*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_Generic_IEnumeratorU3CTSourceU3E_get_Current_m1146236170_gshared/* 4476*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_IEnumerator_get_Current_m2557332908_gshared/* 4477*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_IEnumerable_GetEnumerator_m3085544518_gshared/* 4478*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_Generic_IEnumerableU3CTSourceU3E_GetEnumerator_m4141780510_gshared/* 4479*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_MoveNext_m3312678137_gshared/* 4480*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_Dispose_m539787504_gshared/* 4481*/, (Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_Reset_m3810816857_gshared/* 4482*/, (Il2CppMethodPointer)&Nullable_1_Equals_m489083600_AdjustorThunk/* 4483*/, (Il2CppMethodPointer)&Nullable_1_Equals_m2289713265_AdjustorThunk/* 4484*/, (Il2CppMethodPointer)&Nullable_1_GetHashCode_m1417295600_AdjustorThunk/* 4485*/, (Il2CppMethodPointer)&Nullable_1_ToString_m3085298852_AdjustorThunk/* 4486*/, (Il2CppMethodPointer)&Predicate_1__ctor_m2609824702_gshared/* 4487*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m240525233_gshared/* 4488*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m4047419182_gshared/* 4489*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m2441994808_gshared/* 4490*/, (Il2CppMethodPointer)&Predicate_1__ctor_m799046752_gshared/* 4491*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m2365391106_gshared/* 4492*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m2509918657_gshared/* 4493*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m4014618618_gshared/* 4494*/, (Il2CppMethodPointer)&Predicate_1__ctor_m3062707901_gshared/* 4495*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m3126475681_gshared/* 4496*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m1153576441_gshared/* 4497*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m2327933578_gshared/* 4498*/, (Il2CppMethodPointer)&Predicate_1__ctor_m4198773481_gshared/* 4499*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m2820373031_gshared/* 4500*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m2545191857_gshared/* 4501*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m2478057285_gshared/* 4502*/, (Il2CppMethodPointer)&Predicate_1__ctor_m313202572_gshared/* 4503*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m668864835_gshared/* 4504*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m250976720_gshared/* 4505*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m2237298311_gshared/* 4506*/, (Il2CppMethodPointer)&Predicate_1__ctor_m2185452373_gshared/* 4507*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m18296867_gshared/* 4508*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m643517825_gshared/* 4509*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m2198356246_gshared/* 4510*/, (Il2CppMethodPointer)&Predicate_1__ctor_m707109560_gshared/* 4511*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m103487328_gshared/* 4512*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m234181952_gshared/* 4513*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m4228897372_gshared/* 4514*/, (Il2CppMethodPointer)&Predicate_1__ctor_m1342395208_gshared/* 4515*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m4201920764_gshared/* 4516*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m3629434209_gshared/* 4517*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m826374582_gshared/* 4518*/, (Il2CppMethodPointer)&Predicate_1__ctor_m2086775979_gshared/* 4519*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m2019251798_gshared/* 4520*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m1081892072_gshared/* 4521*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m4134250121_gshared/* 4522*/, (Il2CppMethodPointer)&Predicate_1__ctor_m3156687499_gshared/* 4523*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m3823832842_gshared/* 4524*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m2472079403_gshared/* 4525*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m1161053553_gshared/* 4526*/, (Il2CppMethodPointer)&Predicate_1__ctor_m921240138_gshared/* 4527*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m4227926478_gshared/* 4528*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m697577769_gshared/* 4529*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m2861007309_gshared/* 4530*/, (Il2CppMethodPointer)&Predicate_1__ctor_m3048767094_gshared/* 4531*/, (Il2CppMethodPointer)&Predicate_1_Invoke_m1366409322_gshared/* 4532*/, (Il2CppMethodPointer)&Predicate_1_BeginInvoke_m3162440439_gshared/* 4533*/, (Il2CppMethodPointer)&Predicate_1_EndInvoke_m826537991_gshared/* 4534*/, (Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m379905952_gshared/* 4535*/, (Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m2847788136_gshared/* 4536*/, (Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m391711637_gshared/* 4537*/, (Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m1371871437_gshared/* 4538*/, (Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m2105137230_gshared/* 4539*/, (Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m1304240999_gshared/* 4540*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m1062097604_gshared/* 4541*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m3391642668_gshared/* 4542*/, (Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m3057641972_gshared/* 4543*/, (Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m425265903_gshared/* 4544*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m3252559530_gshared/* 4545*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m3622444960_gshared/* 4546*/, (Il2CppMethodPointer)&InvokableCall_1_Find_m1373737916_gshared/* 4547*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m2230237455_gshared/* 4548*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m2598850239_gshared/* 4549*/, (Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m1646950674_gshared/* 4550*/, (Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m568393649_gshared/* 4551*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m597729448_gshared/* 4552*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m3873687077_gshared/* 4553*/, (Il2CppMethodPointer)&InvokableCall_1_Find_m163237239_gshared/* 4554*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m2349844892_gshared/* 4555*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m498284623_gshared/* 4556*/, (Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m1802672725_gshared/* 4557*/, (Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m697871437_gshared/* 4558*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m1079852676_gshared/* 4559*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m2153390693_gshared/* 4560*/, (Il2CppMethodPointer)&InvokableCall_1_Find_m318140336_gshared/* 4561*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m3734588311_gshared/* 4562*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m2338538582_gshared/* 4563*/, (Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m2953171886_gshared/* 4564*/, (Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m3251908241_gshared/* 4565*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m1715970447_gshared/* 4566*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m2235168695_gshared/* 4567*/, (Il2CppMethodPointer)&InvokableCall_1_Find_m2424443978_gshared/* 4568*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m1830436394_gshared/* 4569*/, (Il2CppMethodPointer)&InvokableCall_1__ctor_m592418486_gshared/* 4570*/, (Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m3210951458_gshared/* 4571*/, (Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m555265154_gshared/* 4572*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m3214151739_gshared/* 4573*/, (Il2CppMethodPointer)&InvokableCall_1_Invoke_m1280268590_gshared/* 4574*/, (Il2CppMethodPointer)&InvokableCall_1_Find_m2771745809_gshared/* 4575*/, (Il2CppMethodPointer)&UnityAction_1_Invoke_m2924060324_gshared/* 4576*/, (Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m1162043626_gshared/* 4577*/, (Il2CppMethodPointer)&UnityAction_1_EndInvoke_m3923431266_gshared/* 4578*/, (Il2CppMethodPointer)&UnityAction_1__ctor_m3680125764_gshared/* 4579*/, (Il2CppMethodPointer)&UnityAction_1_Invoke_m1421617105_gshared/* 4580*/, (Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m1600633797_gshared/* 4581*/, (Il2CppMethodPointer)&UnityAction_1_EndInvoke_m2542276270_gshared/* 4582*/, (Il2CppMethodPointer)&UnityAction_1_Invoke_m3993379585_gshared/* 4583*/, (Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m2044205602_gshared/* 4584*/, (Il2CppMethodPointer)&UnityAction_1_EndInvoke_m843067224_gshared/* 4585*/, (Il2CppMethodPointer)&UnityAction_1_Invoke_m1000667363_gshared/* 4586*/, (Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m816293144_gshared/* 4587*/, (Il2CppMethodPointer)&UnityAction_1_EndInvoke_m352508044_gshared/* 4588*/, (Il2CppMethodPointer)&UnityAction_1__ctor_m3749982331_gshared/* 4589*/, (Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m1828981303_gshared/* 4590*/, (Il2CppMethodPointer)&UnityAction_1_EndInvoke_m3523038506_gshared/* 4591*/, (Il2CppMethodPointer)&UnityAction_1__ctor_m757090816_gshared/* 4592*/, (Il2CppMethodPointer)&UnityAction_1_Invoke_m3548817394_gshared/* 4593*/, (Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m3909650933_gshared/* 4594*/, (Il2CppMethodPointer)&UnityAction_1_EndInvoke_m3086013720_gshared/* 4595*/, (Il2CppMethodPointer)&UnityAction_2__ctor_m3331265227_gshared/* 4596*/, (Il2CppMethodPointer)&UnityAction_2_BeginInvoke_m3112562744_gshared/* 4597*/, (Il2CppMethodPointer)&UnityAction_2_EndInvoke_m3885372031_gshared/* 4598*/, (Il2CppMethodPointer)&UnityAction_2__ctor_m386010435_gshared/* 4599*/, (Il2CppMethodPointer)&UnityAction_2_BeginInvoke_m1276764692_gshared/* 4600*/, (Il2CppMethodPointer)&UnityAction_2_EndInvoke_m3472917982_gshared/* 4601*/, (Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m468199011_gshared/* 4602*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m3371221286_gshared/* 4603*/, (Il2CppMethodPointer)&UnityEvent_1_AddListener_m1022511408_gshared/* 4604*/, (Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m3127045211_gshared/* 4605*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m2223012614_gshared/* 4606*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m678464238_gshared/* 4607*/, (Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m3616775890_gshared/* 4608*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m2618250299_gshared/* 4609*/, (Il2CppMethodPointer)&UnityEvent_1_AddListener_m457015346_gshared/* 4610*/, (Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m34807495_gshared/* 4611*/, (Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m3928273224_gshared/* 4612*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0__ctor_m841773104_gshared/* 4613*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_MoveNext_m390743004_gshared/* 4614*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m1537412609_gshared/* 4615*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m1331664746_gshared/* 4616*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_Dispose_m3989512742_gshared/* 4617*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_Reset_m3593022934_gshared/* 4618*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0__ctor_m3034754479_gshared/* 4619*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_MoveNext_m2157455638_gshared/* 4620*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m197372441_gshared/* 4621*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m31586940_gshared/* 4622*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_Dispose_m1710031825_gshared/* 4623*/, (Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_Reset_m2293606729_gshared/* 4624*/, (Il2CppMethodPointer)&TweenRunner_1_Start_m4151158540_gshared/* 4625*/, (Il2CppMethodPointer)&TweenRunner_1_Start_m2522678208_gshared/* 4626*/, (Il2CppMethodPointer)&TweenRunner_1_StopTween_m1901433528_gshared/* 4627*/, (Il2CppMethodPointer)&ListPool_1__cctor_m4165687330_gshared/* 4628*/, (Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m1918497668_gshared/* 4629*/, (Il2CppMethodPointer)&ListPool_1__cctor_m3681584993_gshared/* 4630*/, (Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m4188550806_gshared/* 4631*/, (Il2CppMethodPointer)&ListPool_1__cctor_m859108057_gshared/* 4632*/, (Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m1917081687_gshared/* 4633*/, (Il2CppMethodPointer)&ListPool_1__cctor_m745322712_gshared/* 4634*/, (Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m1924088315_gshared/* 4635*/, (Il2CppMethodPointer)&ListPool_1__cctor_m461968650_gshared/* 4636*/, (Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m1758303803_gshared/* 4637*/, (Il2CppMethodPointer)&ListPool_1__cctor_m2814328564_gshared/* 4638*/, (Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m2140013071_gshared/* 4639*/, };
[ "Dschella3@googlemail.com" ]
Dschella3@googlemail.com
aad8ef24d92e48588a7a79d74e2dbb510162ccf8
c1c31746504efe1f3e3da41167063d3a08c5b53b
/sources/mainwindow.h
bb67540d13810b489a5d4b1f228eb6559d1ebb6c
[ "LicenseRef-scancode-other-permissive" ]
permissive
KiraFL/BHL_desktop
297f73799319052d2a97d1c08bc72a8ff9c81557
f74a1fd0d54263678792aec9e745a3d768e2077f
refs/heads/master
2020-05-01T01:11:52.174274
2019-03-16T11:18:25
2019-03-16T11:18:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
628
h
/* *Copyright (c) 2019 BHL-Studio * The headder of main widget backend defines */ #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT private: Ui::MainWindow *ui; public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); public slots: void slotAboutQt(); // slot which showing info about Qt void slotAboutUs(); // slot which showing info about BHL-Studio void slotChangeTextFont(); // gets and set new text font }; #endif // MAINWINDOW_H
[ "bpr@BPR" ]
bpr@BPR
e4f8c7c2097562d37b2ea9b972878204592c2f70
9eff39be8e67d9b5e8e02070a2c25c17bb538327
/p10940_.cpp
9b96d362e9e308cb2f6d15546d4e5dd9b1fc2bc4
[]
no_license
sakibakon/UVA_online_judge
44308316a1d2852e93df606767927211e6f49bba
998e01200b3f3c71a3d7f3db03d90e9bf7cc650a
refs/heads/master
2020-08-24T02:45:06.344800
2019-10-22T07:34:56
2019-10-22T07:34:56
216,749,738
0
0
null
null
null
null
UTF-8
C++
false
false
1,121
cpp
#include<cstdio> #include<queue> using namespace std; int ans [500000 + 5]; int main () { ans [1] = 1; ans [2] = 2; int next = 2; for ( int i = 3; i <= 500000; i++ ) { if ( i < next ) next = 2; ans [i] = next; next += 2; } int n; while ( scanf ("%d", &n) && n ) { printf ("%d\n", ans [n]); } return 0; } //another way... using namespace std; int main() { int ans,n; while(scanf("%d", &n) && n){ ans=0; queue<int> q1; if(n==1){printf("1\n");continue;} for(int j=2; j<=n; j+=2)q1.push(j); if(n%2==0){ while(!q1.empty()){ ans=q1.front(); q1.pop(); if(q1.empty())break; int s=q1.front(); q1.pop(); q1.push(s); } } else{ while(!q1.empty()){ ans=q1.front(); q1.pop(); q1.push(ans); q1.pop(); if(q1.empty())break; } } printf("%d\n", ans); } }
[ "sakibakon1@gmail.com" ]
sakibakon1@gmail.com
c4d6d1b1ce9ddba4154bf53f3a978b27720d620b
cd760911bb9c4b150a3cf4447d693ce033240a79
/PCL_1.8.0/include/pcl-1.8/pcl/recognition/cg/hough_3d.h
199de4d251805cf82e3b29282105bedcf3f31704
[]
no_license
northpolepanda/calvinx-common
72eaecc3cb5bfb26cea815598d2d15e026795a3e
ee570c450b6f43b20c49428558d8ff043c4c0edb
refs/heads/master
2022-01-22T12:59:03.461115
2019-07-16T03:21:04
2019-07-16T03:21:04
197,110,937
0
0
null
null
null
null
UTF-8
C++
false
false
22,880
h
/* * Software License Agreement (BSD License) * * Point Cloud Library (PCL) - www.pointclouds.org * Copyright (c) 2010-2012, Willow Garage, Inc. * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. * * Neither the name of Willow Garage, 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. * * $Id:$ * */ #ifndef PCL_RECOGNITION_HOUGH_3D_H_ #define PCL_RECOGNITION_HOUGH_3D_H_ #include <pcl/recognition/cg/correspondence_grouping.h> #include <pcl/recognition/boost.h> #include <pcl/point_types.h> namespace pcl { namespace recognition { /** \brief HoughSpace3D is a 3D voting space. Cast votes can be interpolated in order to better deal with approximations introduced by bin quantization. A weight can also be associated with each vote. * \author Federico Tombari (original), Tommaso Cavallari (PCL port) * \ingroup recognition */ class PCL_EXPORTS HoughSpace3D { public: EIGEN_MAKE_ALIGNED_OPERATOR_NEW /** \brief Constructor * * \param[in] min_coord minimum (x,y,z) coordinates of the Hough space * \param[in] bin_size size of each bing of the Hough space. * \param[in] max_coord maximum (x,y,z) coordinates of the Hough space. */ HoughSpace3D (const Eigen::Vector3d &min_coord, const Eigen::Vector3d &bin_size, const Eigen::Vector3d &max_coord); /** \brief Reset all cast votes. */ void reset (); /** \brief Casting a vote for a given position in the Hough space. * * \param[in] single_vote_coord coordinates of the vote being cast (in absolute coordinates) * \param[in] weight weight associated with the vote. * \param[in] voter_id the numeric id of the voter. Useful to trace back the voting correspondence, if the vote is returned by findMaxima as part of a maximum of the Hough Space. * \return the index of the bin in which the vote has been cast. */ int vote (const Eigen::Vector3d &single_vote_coord, double weight, int voter_id); /** \brief Vote for a given position in the 3D space. The weight is interpolated between the bin pointed by single_vote_coord and its neighbors. * * \param[in] single_vote_coord coordinates of the vote being cast. * \param[in] weight weight associated with the vote. * \param[in] voter_id the numeric id of the voter. Useful to trace back the voting correspondence, if the vote is returned by findMaxima as a part of a maximum of the Hough Space. * \return the index of the bin in which the vote has been cast. */ int voteInt (const Eigen::Vector3d &single_vote_coord, double weight, int voter_id); /** \brief Find the bins with most votes. * * \param[in] min_threshold the minimum number of votes to be included in a bin in order to have its value returned. * If set to a value between -1 and 0 the Hough space maximum_vote is found and the returned values are all the votes greater than -min_threshold * maximum_vote. * \param[out] maxima_values the list of Hough Space bin values greater than min_threshold. * \param[out] maxima_voter_ids for each value returned, a list of the voter ids who cast a vote in that position. * \return The min_threshold used, either set by the user or found by this method. */ double findMaxima (double min_threshold, std::vector<double> & maxima_values, std::vector<std::vector<int> > &maxima_voter_ids); protected: /** \brief Minimum coordinate in the Hough Space. */ Eigen::Vector3d min_coord_; /** \brief Size of each bin in the Hough Space. */ Eigen::Vector3d bin_size_; /** \brief Number of bins for each dimension. */ Eigen::Vector3i bin_count_; /** \brief Used to access hough_space_ as if it was a matrix. */ int partial_bin_products_[4]; /** \brief Total number of bins in the Hough Space. */ int total_bins_count_; /** \brief The Hough Space. */ std::vector<double> hough_space_; //boost::unordered_map<int, double> hough_space_; /** \brief List of voters for each bin. */ boost::unordered_map<int, std::vector<int> > voter_ids_; }; } /** \brief Class implementing a 3D correspondence grouping algorithm that can deal with multiple instances of a model template * found into a given scene. Each correspondence casts a vote for a reference point in a 3D Hough Space. * The remaining 3 DOF are taken into account by associating each correspondence with a local Reference Frame. * The suggested PointModelRfT is pcl::ReferenceFrame * * \note If you use this code in any academic work, please cite the original paper: * - F. Tombari, L. Di Stefano: * Object recognition in 3D scenes with occlusions and clutter by Hough voting. * 2010, Fourth Pacific-Rim Symposium on Image and Video Technology * * \author Federico Tombari (original), Tommaso Cavallari (PCL port) * \ingroup recognition */ template<typename PointModelT, typename PointSceneT, typename PointModelRfT = pcl::ReferenceFrame, typename PointSceneRfT = pcl::ReferenceFrame> class Hough3DGrouping : public CorrespondenceGrouping<PointModelT, PointSceneT> { public: typedef pcl::PointCloud<PointModelRfT> ModelRfCloud; typedef typename ModelRfCloud::Ptr ModelRfCloudPtr; typedef typename ModelRfCloud::ConstPtr ModelRfCloudConstPtr; typedef pcl::PointCloud<PointSceneRfT> SceneRfCloud; typedef typename SceneRfCloud::Ptr SceneRfCloudPtr; typedef typename SceneRfCloud::ConstPtr SceneRfCloudConstPtr; typedef pcl::PointCloud<PointModelT> PointCloud; typedef typename PointCloud::Ptr PointCloudPtr; typedef typename PointCloud::ConstPtr PointCloudConstPtr; typedef typename pcl::CorrespondenceGrouping<PointModelT, PointSceneT>::SceneCloudConstPtr SceneCloudConstPtr; /** \brief Constructor */ Hough3DGrouping () : input_rf_ () , scene_rf_ () , needs_training_ (true) , model_votes_ () , hough_threshold_ (-1) , hough_bin_size_ (1.0) , use_interpolation_ (true) , use_distance_weight_ (false) , local_rf_normals_search_radius_ (0.0f) , local_rf_search_radius_ (0.0f) , hough_space_ () , found_transformations_ () , hough_space_initialized_ (false) {} /** \brief Provide a pointer to the input dataset. * \param[in] cloud the const boost shared pointer to a PointCloud message. */ inline void setInputCloud (const PointCloudConstPtr &cloud) { PCLBase<PointModelT>::setInputCloud (cloud); needs_training_ = true; hough_space_initialized_ = false; input_rf_.reset(); } /** \brief Provide a pointer to the input dataset's reference frames. * Each point in the reference frame cloud should be the reference frame of * the correspondent point in the input dataset. * * \param[in] input_rf the pointer to the input cloud's reference frames. */ inline void setInputRf (const ModelRfCloudConstPtr &input_rf) { input_rf_ = input_rf; needs_training_ = true; hough_space_initialized_ = false; } /** \brief Getter for the input dataset's reference frames. * Each point in the reference frame cloud should be the reference frame of * the correspondent point in the input dataset. * * \return the pointer to the input cloud's reference frames. */ inline ModelRfCloudConstPtr getInputRf () const { return (input_rf_); } /** \brief Provide a pointer to the scene dataset (i.e. the cloud in which the algorithm has to search for instances of the input model) * * \param[in] scene the const boost shared pointer to a PointCloud message. */ inline void setSceneCloud (const SceneCloudConstPtr &scene) { scene_ = scene; hough_space_initialized_ = false; scene_rf_.reset(); } /** \brief Provide a pointer to the scene dataset's reference frames. * Each point in the reference frame cloud should be the reference frame of * the correspondent point in the scene dataset. * * \param[in] scene_rf the pointer to the scene cloud's reference frames. */ inline void setSceneRf (const SceneRfCloudConstPtr &scene_rf) { scene_rf_ = scene_rf; hough_space_initialized_ = false; } /** \brief Getter for the scene dataset's reference frames. * Each point in the reference frame cloud should be the reference frame of * the correspondent point in the scene dataset. * * \return the pointer to the scene cloud's reference frames. */ inline SceneRfCloudConstPtr getSceneRf () const { return (scene_rf_); } /** \brief Provide a pointer to the precomputed correspondences between points in the input dataset and * points in the scene dataset. The correspondences are going to be clustered into different model instances * by the algorithm. * * \param[in] corrs the correspondences between the model and the scene. */ inline void setModelSceneCorrespondences (const CorrespondencesConstPtr &corrs) { model_scene_corrs_ = corrs; hough_space_initialized_ = false; } /** \brief Sets the minimum number of votes in the Hough space needed to infer the presence of a model instance into the scene cloud. * * \param[in] threshold the threshold for the Hough space voting, if set between -1 and 0 the maximum vote in the * entire space is automatically calculated and -threshold the maximum value is used as a threshold. This means * that a value between -1 and 0 should be used only if at least one instance of the model is always present in * the scene, or if this false positive can be filtered later. */ inline void setHoughThreshold (double threshold) { hough_threshold_ = threshold; } /** \brief Gets the minimum number of votes in the Hough space needed to infer the presence of a model instance into the scene cloud. * * \return the threshold for the Hough space voting. */ inline double getHoughThreshold () const { return (hough_threshold_); } /** \brief Sets the size of each bin into the Hough space. * * \param[in] bin_size the size of each Hough space's bin. */ inline void setHoughBinSize (double bin_size) { hough_bin_size_ = bin_size; hough_space_initialized_ = false; } /** \brief Gets the size of each bin into the Hough space. * * \return the size of each Hough space's bin. */ inline double getHoughBinSize () const { return (hough_bin_size_); } /** \brief Sets whether the vote casting procedure interpolates * the score between neighboring bins of the Hough space or not. * * \param[in] use_interpolation the algorithm should interpolate the vote score between neighboring bins. */ inline void setUseInterpolation (bool use_interpolation) { use_interpolation_ = use_interpolation; hough_space_initialized_ = false; } /** \brief Gets whether the vote casting procedure interpolates * the score between neighboring bins of the Hough space or not. * * \return if the algorithm should interpolate the vote score between neighboring bins. */ inline bool getUseInterpolation () const { return (use_interpolation_); } /** \brief Sets whether the vote casting procedure uses the correspondence's distance as a score. * * \param[in] use_distance_weight the algorithm should use the weighted distance when calculating the Hough voting score. */ inline void setUseDistanceWeight (bool use_distance_weight) { use_distance_weight_ = use_distance_weight; hough_space_initialized_ = false; } /** \brief Gets whether the vote casting procedure uses the correspondence's distance as a score. * * \return if the algorithm should use the weighted distance when calculating the Hough voting score. */ inline bool getUseDistanceWeight () const { return (use_distance_weight_); } /** \brief If the Local reference frame has not been set for either the model cloud or the scene cloud, * this algorithm makes the computation itself but needs a suitable search radius to compute the normals * in order to subsequently compute the RF (if not set a default 15 nearest neighbors search is performed). * * \param[in] local_rf_normals_search_radius the normals search radius for the local reference frame calculation. */ inline void setLocalRfNormalsSearchRadius (float local_rf_normals_search_radius) { local_rf_normals_search_radius_ = local_rf_normals_search_radius; needs_training_ = true; hough_space_initialized_ = false; } /** \brief If the Local reference frame has not been set for either the model cloud or the scene cloud, * this algorithm makes the computation itself but needs a suitable search radius to compute the normals * in order to subsequently compute the RF (if not set a default 15 nearest neighbors search is performed). * * \return the normals search radius for the local reference frame calculation. */ inline float getLocalRfNormalsSearchRadius () const { return (local_rf_normals_search_radius_); } /** \brief If the Local reference frame has not been set for either the model cloud or the scene cloud, * this algorithm makes the computation itself but needs a suitable search radius to do so. * \attention This parameter NEEDS to be set if the reference frames are not precomputed externally, * otherwise the recognition results won't be correct. * * \param[in] local_rf_search_radius the search radius for the local reference frame calculation. */ inline void setLocalRfSearchRadius (float local_rf_search_radius) { local_rf_search_radius_ = local_rf_search_radius; needs_training_ = true; hough_space_initialized_ = false; } /** \brief If the Local reference frame has not been set for either the model cloud or the scene cloud, * this algorithm makes the computation itself but needs a suitable search radius to do so. * \attention This parameter NEEDS to be set if the reference frames are not precomputed externally, * otherwise the recognition results won't be correct. * * \return the search radius for the local reference frame calculation. */ inline float getLocalRfSearchRadius () const { return (local_rf_search_radius_); } /** \brief Call this function after setting the input, the input_rf and the hough_bin_size parameters to perform an off line training of the algorithm. This might be useful if one wants to perform once and for all a pre-computation of votes that only concern the models, increasing the on-line efficiency of the grouping algorithm. * The algorithm is automatically trained on the first invocation of the recognize method or the cluster method if this training function has not been manually invoked. * * \return true if the training had been successful or false if errors have occurred. */ bool train (); /** \brief The main function, recognizes instances of the model into the scene set by the user. * * \param[out] transformations a vector containing one transformation matrix for each instance of the model recognized into the scene. * * \return true if the recognition had been successful or false if errors have occurred. */ bool recognize (std::vector<Eigen::Matrix4f, Eigen::aligned_allocator<Eigen::Matrix4f> > &transformations); /** \brief The main function, recognizes instances of the model into the scene set by the user. * * \param[out] transformations a vector containing one transformation matrix for each instance of the model recognized into the scene. * \param[out] clustered_corrs a vector containing the correspondences for each instance of the model found within the input data (the same output of clusterCorrespondences). * * \return true if the recognition had been successful or false if errors have occurred. */ bool recognize (std::vector<Eigen::Matrix4f, Eigen::aligned_allocator<Eigen::Matrix4f> > &transformations, std::vector<pcl::Correspondences> &clustered_corrs); protected: using CorrespondenceGrouping<PointModelT, PointSceneT>::input_; using CorrespondenceGrouping<PointModelT, PointSceneT>::scene_; using CorrespondenceGrouping<PointModelT, PointSceneT>::model_scene_corrs_; /** \brief The input Rf cloud. */ ModelRfCloudConstPtr input_rf_; /** \brief The scene Rf cloud. */ SceneRfCloudConstPtr scene_rf_; /** \brief If the training of the Hough space is needed; set on change of either the input cloud or the input_rf. */ bool needs_training_; /** \brief The result of the training. The vector between each model point and the centroid of the model adjusted by its local reference frame.*/ std::vector<Eigen::Vector3f, Eigen::aligned_allocator<Eigen::Vector3f> > model_votes_; /** \brief The minimum number of votes in the Hough space needed to infer the presence of a model instance into the scene cloud. */ double hough_threshold_; /** \brief The size of each bin of the hough space. */ double hough_bin_size_; /** \brief Use the interpolation between neighboring Hough bins when casting votes. */ bool use_interpolation_; /** \brief Use the weighted correspondence distance when casting votes. */ bool use_distance_weight_; /** \brief Normals search radius for the potential Rf calculation. */ float local_rf_normals_search_radius_; /** \brief Search radius for the potential Rf calculation. */ float local_rf_search_radius_; /** \brief The Hough space. */ boost::shared_ptr<pcl::recognition::HoughSpace3D> hough_space_; /** \brief Transformations found by clusterCorrespondences method. */ std::vector<Eigen::Matrix4f, Eigen::aligned_allocator<Eigen::Matrix4f> > found_transformations_; /** \brief Whether the Hough space already contains the correct votes for the current input parameters and so the cluster and recognize calls don't need to recompute each value. * Reset on the change of any parameter except the hough_threshold. */ bool hough_space_initialized_; /** \brief Cluster the input correspondences in order to distinguish between different instances of the model into the scene. * * \param[out] model_instances a vector containing the clustered correspondences for each model found on the scene. * \return true if the clustering had been successful or false if errors have occurred. */ void clusterCorrespondences (std::vector<Correspondences> &model_instances); /* \brief Finds the transformation matrix between the input and the scene cloud for a set of correspondences using a RANSAC algorithm. * \param[in] the scene cloud in which the PointSceneT has been converted to PointModelT. * \param[in] corrs a set of correspondences. * \param[out] transform the transformation matrix between the input cloud and the scene cloud that aligns the found correspondences. * \return true if the recognition had been successful or false if errors have occurred. */ //bool //getTransformMatrix (const PointCloudConstPtr &scene_cloud, const Correspondences &corrs, Eigen::Matrix4f &transform); /** \brief The Hough space voting procedure. * \return true if the voting had been successful or false if errors have occurred. */ bool houghVoting (); /** \brief Computes the reference frame for an input cloud. * \param[in] input the input cloud. * \param[out] rf the resulting reference frame. */ template<typename PointType, typename PointRfType> void computeRf (const boost::shared_ptr<const pcl::PointCloud<PointType> > &input, pcl::PointCloud<PointRfType> &rf); }; } #ifdef PCL_NO_PRECOMPILE #include <pcl/recognition/impl/cg/hough_3d.hpp> #endif #endif // PCL_RECOGNITION_HOUGH_3D_H_
[ "michaelchan_wahyan@yahoo.com.hk" ]
michaelchan_wahyan@yahoo.com.hk
5f4fdf1c4b4b02ab11b79a42bf39c500b217dd5c
02bdbf1a2c6bb28f44b1414655c1d105acec77a6
/Tree.h
55040886edf08e2970af379874d597118ef96807
[]
no_license
hemprasad/ObjectRecognition
6c2fd02451abe38d6b465df9237c9179dff47eb3
bdabdd9ceea1fd7f025dd63ccb32535950d7648d
refs/heads/master
2021-01-18T17:23:21.313154
2013-04-09T01:16:28
2013-04-09T01:16:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,164
h
#ifndef __TREE_H__ #define __TREE_H__ #include <map> #include <vector> template<class T> class Tree{ public: Tree() {} Tree (T _root): root(_root) { children[_root] = vector<T>(); } // This could only be called when root is not set yet. void SetRoot (T _root) { if (children.count(_root) == 0) { root = _root; } else { cerr << "SetRoot is only allowed if root has not been set before!" << endl << endl; return; } } void AddChild (T parent, T child) { if (children.count(child) > 0) { cerr << "Tree should not contain loops!" << endl << endl; return; } else if (children.count(parent) == 0){ cerr << "AddChild could only add a child to a existing node in the tree." << endl << endl; return; } children[parent].push_back(child); children[child] = vector<T>(); } void DepthFirstTraverse (T cur, vector<T> & res){ res.push_back(cur); for (int i = 0 ; i < children[cur].size(); i++) { DepthFirstTraverse (children[cur][i], res); } } vector<T> DepthFirstTraverse (){ vector<T> res; DepthFirstTraverse (root, res); return res; } public: T root; map<T, vector<T> > children; }; #endif
[ "rashirishi@gmail.com" ]
rashirishi@gmail.com
b026bb8e01f2daac351dfe88d1057a97d8eaa31d
2c5a434d3b74938757342b6cab58e1b9138e3f9a
/boj/silver/11726.cpp
af915d2ecc665c0c0a1622423539396ee0de82ee
[]
no_license
Park18/Algorithm
a2406eeee6586709be9c3175a56c486c2729270b
d9128c17675662e87b5b9672b94f825d5a8d27f5
refs/heads/master
2023-01-18T17:36:33.456560
2020-11-26T10:16:04
2020-11-26T10:16:04
261,787,778
0
1
null
null
null
null
UHC
C++
false
false
978
cpp
/** * @date 20.05.06 * @brief BOJ 11726 * @url https://www.acmicpc.net/problem/11726 */ #include <iostream> using namespace std; namespace boj { namespace silver { /** * @brief DP를 이용한 문제풀이 */ void solution() { int count[1001]; // 1<=n<=1000 count[1] = 1; // 초기값1 count[2] = 2; // 초기값2 int n; cin.tie(nullptr); cin >> n; // DP 계산 // 그냥 피보나치로만 계산하면 값이 매우 커지기 때문에 // 10007을 값으로 초기화한다. for (int index = 3; index <= n; index++) count[index] = (count[index - 1] + count[index - 2]) % 10007; cout << count[n] << endl; } /** * @brief 재귀를 이용한 문제풀이, 시간초과 */ int fibo(int n) { if (n == 0 || n == 1) return 1; return fibo(n - 1) + fibo(n - 2); } void test(int argc, char* argv[]) { int n; cin >> n; int count = fibo(n); cout << count % 10007 << endl; } } // !namespace silver } // !namespace boj
[ "sowooni35@naver.com" ]
sowooni35@naver.com
0faa2c7f080d6da404a165cb47958a610a29bb32
0019f0af5518efe2144b6c0e63a89e3bd2bdb597
/antares/src/servers/app/drawing/Painter/AGGTextRenderer.cpp
3341c2b0c7317a0b1208bc7f9b8e2a848c74f37a
[]
no_license
mmanley/Antares
5ededcbdf09ef725e6800c45bafd982b269137b1
d35f39c12a0a62336040efad7540c8c5bce9678a
refs/heads/master
2020-06-02T22:28:26.722064
2010-03-08T21:51:31
2010-03-08T21:51:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,308
cpp
/* * Copyright 2005-2009, Stephan Aßmus <superstippi@gmx.de>. * Copyright 2008, Andrej Spielmann <andrej.spielmann@seh.ox.ac.uk>. * All rights reserved. Distributed under the terms of the MIT License. */ #include "AGGTextRenderer.h" #include <agg_basics.h> #include <agg_bounding_rect.h> #include <agg_conv_segmentator.h> #include <agg_conv_transform.h> #include <agg_trans_affine.h> #include <math.h> #include <malloc.h> #include <stdio.h> #include <string.h> #define SHOW_GLYPH_BOUNDS 0 #if SHOW_GLYPH_BOUNDS # include <agg_conv_stroke.h> # include <agg_path_storage.h> #endif #include "GlobalSubpixelSettings.h" #include "GlyphLayoutEngine.h" #include "IntRect.h" AGGTextRenderer::AGGTextRenderer(renderer_subpix_type& subpixRenderer, renderer_type& solidRenderer, renderer_bin_type& binRenderer, scanline_unpacked_type& scanline, scanline_unpacked_subpix_type& subpixScanline, rasterizer_subpix_type& subpixRasterizer) : fPathAdaptor(), fGray8Adaptor(), fGray8Scanline(), fMonoAdaptor(), fMonoScanline(), fSubpixAdaptor(), fCurves(fPathAdaptor), fContour(fCurves), fSolidRenderer(solidRenderer), fBinRenderer(binRenderer), fSubpixRenderer(subpixRenderer), fScanline(scanline), fSubpixScanline(subpixScanline), fSubpixRasterizer(subpixRasterizer), fRasterizer(), fHinted(true), fAntialias(true), fKerning(true), fEmbeddedTransformation() { fCurves.approximation_scale(2.0); fContour.auto_detect_orientation(false); } AGGTextRenderer::~AGGTextRenderer() { } void AGGTextRenderer::SetFont(const ServerFont& font) { fFont = font; // construct an embedded transformation (rotate & shear) fEmbeddedTransformation.Reset(); fEmbeddedTransformation.ShearBy(B_ORIGIN, (90.0 - font.Shear()) * M_PI / 180.0, 0.0); fEmbeddedTransformation.RotateBy(B_ORIGIN, -font.Rotation() * M_PI / 180.0); fContour.width(font.FalseBoldWidth() * 2.0); } void AGGTextRenderer::SetHinting(bool hinting) { fHinted = hinting; // fFontEngine.hinting(fEmbeddedTransformation.IsIdentity() && fHinted); } void AGGTextRenderer::SetAntialiasing(bool antialiasing) { if (fAntialias != antialiasing) { fAntialias = antialiasing; if (!fAntialias) fRasterizer.gamma(agg::gamma_threshold(0.5)); else fRasterizer.gamma(agg::gamma_power(1.0)); } } typedef agg::conv_transform<FontCacheEntry::CurveConverter, Transformable> conv_font_trans_type; typedef agg::conv_transform<FontCacheEntry::ContourConverter, Transformable> conv_font_contour_trans_type; class AGGTextRenderer::StringRenderer { public: StringRenderer(const IntRect& clippingFrame, bool dryRun, FontCacheEntry::TransformedOutline& transformedGlyph, FontCacheEntry::TransformedContourOutline& transformedContour, const Transformable& transform, const BPoint& transformOffset, BPoint* nextCharPos, AGGTextRenderer& renderer) : fTransform(transform), fTransformOffset(transformOffset), fClippingFrame(clippingFrame), fDryRun(dryRun), fBounds(LONG_MAX, LONG_MAX, LONG_MIN, LONG_MIN), fNextCharPos(nextCharPos), fVector(false), fTransformedGlyph(transformedGlyph), fTransformedContour(transformedContour), fRenderer(renderer) { } void Start() { fRenderer.fRasterizer.reset(); fRenderer.fSubpixRasterizer.reset(); } void Finish(double x, double y) { if (fVector) { if (gSubpixelAntialiasing) { agg::render_scanlines(fRenderer.fSubpixRasterizer, fRenderer.fSubpixScanline, fRenderer.fSubpixRenderer); } else { agg::render_scanlines(fRenderer.fRasterizer, fRenderer.fScanline, fRenderer.fSolidRenderer); } } if (fNextCharPos) { fNextCharPos->x = x; fNextCharPos->y = y; fTransform.Transform(fNextCharPos); } } void ConsumeEmptyGlyph(int32 index, uint32 charCode, double x, double y) { } bool ConsumeGlyph(int32 index, uint32 charCode, const GlyphCache* glyph, FontCacheEntry* entry, double x, double y) { // "glyphBounds" is the bounds of the glyph transformed // by the x y location of the glyph along the base line, // it is therefor yet "untransformed" in case there is an // embedded transformation. const agg::rect_i& r = glyph->bounds; IntRect glyphBounds(int32(r.x1 + x), int32(r.y1 + y - 1), int32(r.x2 + x + 1), int32(r.y2 + y + 1)); // NOTE: "-1"/"+1" converts the glyph bounding box from pixel // indices to pixel area coordinates // track bounding box if (glyphBounds.IsValid()) fBounds = fBounds | glyphBounds; // render the glyph if this is not a dry run if (!fDryRun) { // init the fontmanager's embedded adaptors // NOTE: The initialization for the "location" of // the glyph is different depending on whether we // deal with non-(rotated/sheared) text, in which // case we have a native FT bitmap. For rotated or // sheared text, we use AGG vector outlines and // a transformation pipeline, which will be applied // _after_ we retrieve the outline, and that's why // we simply pass x and y, which are untransformed. // "glyphBounds" is now transformed into screen coords // in order to stop drawing when we are already outside // of the clipping frame if (glyph->data_type != glyph_data_outline) { // we cannot use the transformation pipeline double transformedX = x + fTransformOffset.x; double transformedY = y + fTransformOffset.y; entry->InitAdaptors(glyph, transformedX, transformedY, fRenderer.fMonoAdaptor, fRenderer.fGray8Adaptor, fRenderer.fPathAdaptor); glyphBounds.OffsetBy(fTransformOffset); } else { entry->InitAdaptors(glyph, x, y, fRenderer.fMonoAdaptor, fRenderer.fGray8Adaptor, fRenderer.fPathAdaptor); int32 falseBoldWidth = (int32)fRenderer.fContour.width(); if (falseBoldWidth != 0) glyphBounds.InsetBy(-falseBoldWidth, -falseBoldWidth); // TODO: not correct! this is later used for clipping, // but it doesn't get the rect right glyphBounds = fTransform.TransformBounds(glyphBounds); } if (fClippingFrame.Intersects(glyphBounds)) { switch (glyph->data_type) { case glyph_data_mono: agg::render_scanlines(fRenderer.fMonoAdaptor, fRenderer.fMonoScanline, fRenderer.fBinRenderer); break; case glyph_data_gray8: agg::render_scanlines(fRenderer.fGray8Adaptor, fRenderer.fGray8Scanline, fRenderer.fSolidRenderer); break; case glyph_data_subpix: agg::render_scanlines(fRenderer.fGray8Adaptor, fRenderer.fGray8Scanline, fRenderer.fSubpixRenderer); break; case glyph_data_outline: { fVector = true; if (gSubpixelAntialiasing) { if (fRenderer.fContour.width() == 0.0) { fRenderer.fSubpixRasterizer.add_path( fTransformedGlyph); } else { fRenderer.fSubpixRasterizer.add_path( fTransformedContour); } } else { if (fRenderer.fContour.width() == 0.0) { fRenderer.fRasterizer.add_path( fTransformedGlyph); } else { fRenderer.fRasterizer.add_path( fTransformedContour); } } #if SHOW_GLYPH_BOUNDS agg::path_storage p; p.move_to(glyphBounds.left + 0.5, glyphBounds.top + 0.5); p.line_to(glyphBounds.right + 0.5, glyphBounds.top + 0.5); p.line_to(glyphBounds.right + 0.5, glyphBounds.bottom + 0.5); p.line_to(glyphBounds.left + 0.5, glyphBounds.bottom + 0.5); p.close_polygon(); agg::conv_stroke<agg::path_storage> ps(p); ps.width(1.0); if (gSubpixelAntialiasing) { fRenderer.fSubpixRasterizer.add_path(ps); } else { fRenderer.fRasterizer.add_path(ps); } #endif break; } default: break; } } } return true; } IntRect Bounds() const { return fBounds; } private: const Transformable& fTransform; const BPoint& fTransformOffset; const IntRect& fClippingFrame; bool fDryRun; IntRect fBounds; BPoint* fNextCharPos; bool fVector; FontCacheEntry::TransformedOutline& fTransformedGlyph; FontCacheEntry::TransformedContourOutline& fTransformedContour; AGGTextRenderer& fRenderer; }; // RenderString BRect AGGTextRenderer::RenderString(const char* string, uint32 length, const BPoint& baseLine, const BRect& clippingFrame, bool dryRun, BPoint* nextCharPos, const escapement_delta* delta, FontCacheReference* cacheReference) { //printf("RenderString(\"%s\", length: %ld, dry: %d)\n", string, length, dryRun); Transformable transform(fEmbeddedTransformation); transform.TranslateBy(baseLine); fCurves.approximation_scale(transform.scale()); // use a transformation behind the curves // (only if glyph->data_type == agg::glyph_data_outline) // in the pipeline for the rasterizer FontCacheEntry::TransformedOutline transformedOutline(fCurves, transform); FontCacheEntry::TransformedContourOutline transformedContourOutline(fContour, transform); // for when we bypass the transformation pipeline BPoint transformOffset(0.0, 0.0); transform.Transform(&transformOffset); StringRenderer renderer(clippingFrame, dryRun, transformedOutline, transformedContourOutline, transform, transformOffset, nextCharPos, *this); GlyphLayoutEngine::LayoutGlyphs(renderer, fFont, string, length, delta, fKerning, B_BITMAP_SPACING, cacheReference); return transform.TransformBounds(renderer.Bounds()); }
[ "michael@Inferno.(none)" ]
michael@Inferno.(none)
b121faa4af90b79b99241c46b8568f5863672dbc
fa53215c65feeca53ecf48979db129b9eec77086
/external/Box2D/Dynamics/Contacts/b2ContactSolver.cpp
0dc740342a054dfaa714899ce58ce56298b85305
[]
no_license
stubma/cocos2dx-classical
66d57304dc1cc8834d672a087f2b979d0e1a993c
42da4ee120ce9a0a97da344117c48e91c146c56d
refs/heads/master
2021-01-24T08:17:10.706511
2018-05-30T03:04:10
2018-05-30T03:04:10
26,906,938
138
57
null
null
null
null
UTF-8
C++
false
false
27,998
cpp
/* * Copyright (c) 2006-2011 Erin Catto http://www.box2d.org * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * Permission is granted to anyone to use this software for any purpose, * including commercial applications, and to alter it and redistribute it * freely, subject to the following restrictions: * 1. The origin of this software must not be misrepresented; you must not * claim that you wrote the original software. If you use this software * in a product, an acknowledgment in the product documentation would be * appreciated but is not required. * 2. Altered source versions must be plainly marked as such, and must not be * misrepresented as being the original software. * 3. This notice may not be removed or altered from any source distribution. */ #include <Box2D/Dynamics/Contacts/b2ContactSolver.h> #include <Box2D/Dynamics/Contacts/b2Contact.h> #include <Box2D/Dynamics/b2Body.h> #include <Box2D/Dynamics/b2Fixture.h> #include <Box2D/Dynamics/b2World.h> #include <Box2D/Common/b2StackAllocator.h> #define B2_DEBUG_SOLVER 0 struct b2ContactPositionConstraint { b2Vec2 localPoints[b2_maxManifoldPoints]; b2Vec2 localNormal; b2Vec2 localPoint; int32 indexA; int32 indexB; float32 invMassA, invMassB; b2Vec2 localCenterA, localCenterB; float32 invIA, invIB; b2Manifold::Type type; float32 radiusA, radiusB; int32 pointCount; }; b2ContactSolver::b2ContactSolver(b2ContactSolverDef* def) { m_step = def->step; m_allocator = def->allocator; m_count = def->count; m_positionConstraints = (b2ContactPositionConstraint*)m_allocator->Allocate(m_count * sizeof(b2ContactPositionConstraint)); m_velocityConstraints = (b2ContactVelocityConstraint*)m_allocator->Allocate(m_count * sizeof(b2ContactVelocityConstraint)); m_positions = def->positions; m_velocities = def->velocities; m_contacts = def->contacts; // Initialize position independent portions of the constraints. for (int32 i = 0; i < m_count; ++i) { b2Contact* contact = m_contacts[i]; b2Fixture* fixtureA = contact->m_fixtureA; b2Fixture* fixtureB = contact->m_fixtureB; b2Shape* shapeA = fixtureA->GetShape(); b2Shape* shapeB = fixtureB->GetShape(); float32 radiusA = shapeA->m_radius; float32 radiusB = shapeB->m_radius; b2Body* bodyA = fixtureA->GetBody(); b2Body* bodyB = fixtureB->GetBody(); b2Manifold* manifold = contact->GetManifold(); int32 pointCount = manifold->pointCount; b2Assert(pointCount > 0); b2ContactVelocityConstraint* vc = m_velocityConstraints + i; vc->friction = contact->m_friction; vc->restitution = contact->m_restitution; vc->indexA = bodyA->m_islandIndex; vc->indexB = bodyB->m_islandIndex; vc->invMassA = bodyA->m_invMass; vc->invMassB = bodyB->m_invMass; vc->invIA = bodyA->m_invI; vc->invIB = bodyB->m_invI; vc->contactIndex = i; vc->pointCount = pointCount; vc->K.SetZero(); vc->normalMass.SetZero(); b2ContactPositionConstraint* pc = m_positionConstraints + i; pc->indexA = bodyA->m_islandIndex; pc->indexB = bodyB->m_islandIndex; pc->invMassA = bodyA->m_invMass; pc->invMassB = bodyB->m_invMass; pc->localCenterA = bodyA->m_sweep.localCenter; pc->localCenterB = bodyB->m_sweep.localCenter; pc->invIA = bodyA->m_invI; pc->invIB = bodyB->m_invI; pc->localNormal = manifold->localNormal; pc->localPoint = manifold->localPoint; pc->pointCount = pointCount; pc->radiusA = radiusA; pc->radiusB = radiusB; pc->type = manifold->type; for (int32 j = 0; j < pointCount; ++j) { b2ManifoldPoint* cp = manifold->points + j; b2VelocityConstraintPoint* vcp = vc->points + j; if (m_step.warmStarting) { vcp->normalImpulse = m_step.dtRatio * cp->normalImpulse; vcp->tangentImpulse = m_step.dtRatio * cp->tangentImpulse; } else { vcp->normalImpulse = 0.0f; vcp->tangentImpulse = 0.0f; } vcp->rA.SetZero(); vcp->rB.SetZero(); vcp->normalMass = 0.0f; vcp->tangentMass = 0.0f; vcp->velocityBias = 0.0f; pc->localPoints[j] = cp->localPoint; } } } b2ContactSolver::~b2ContactSolver() { m_allocator->Free(m_velocityConstraints); m_allocator->Free(m_positionConstraints); } // Initialize position dependent portions of the velocity constraints. void b2ContactSolver::InitializeVelocityConstraints() { for (int32 i = 0; i < m_count; ++i) { b2ContactVelocityConstraint* vc = m_velocityConstraints + i; b2ContactPositionConstraint* pc = m_positionConstraints + i; float32 radiusA = pc->radiusA; float32 radiusB = pc->radiusB; b2Manifold* manifold = m_contacts[vc->contactIndex]->GetManifold(); int32 indexA = vc->indexA; int32 indexB = vc->indexB; float32 mA = vc->invMassA; float32 mB = vc->invMassB; float32 iA = vc->invIA; float32 iB = vc->invIB; b2Vec2 localCenterA = pc->localCenterA; b2Vec2 localCenterB = pc->localCenterB; b2Vec2 cA = m_positions[indexA].c; float32 aA = m_positions[indexA].a; b2Vec2 vA = m_velocities[indexA].v; float32 wA = m_velocities[indexA].w; b2Vec2 cB = m_positions[indexB].c; float32 aB = m_positions[indexB].a; b2Vec2 vB = m_velocities[indexB].v; float32 wB = m_velocities[indexB].w; b2Assert(manifold->pointCount > 0); b2Transform xfA, xfB; xfA.q.Set(aA); xfB.q.Set(aB); xfA.p = cA - b2Mul(xfA.q, localCenterA); xfB.p = cB - b2Mul(xfB.q, localCenterB); b2WorldManifold worldManifold; worldManifold.Initialize(manifold, xfA, radiusA, xfB, radiusB); vc->normal = worldManifold.normal; int32 pointCount = vc->pointCount; for (int32 j = 0; j < pointCount; ++j) { b2VelocityConstraintPoint* vcp = vc->points + j; vcp->rA = worldManifold.points[j] - cA; vcp->rB = worldManifold.points[j] - cB; float32 rnA = b2Cross(vcp->rA, vc->normal); float32 rnB = b2Cross(vcp->rB, vc->normal); float32 kNormal = mA + mB + iA * rnA * rnA + iB * rnB * rnB; vcp->normalMass = kNormal > 0.0f ? 1.0f / kNormal : 0.0f; b2Vec2 tangent = b2Cross(vc->normal, 1.0f); float32 rtA = b2Cross(vcp->rA, tangent); float32 rtB = b2Cross(vcp->rB, tangent); float32 kTangent = mA + mB + iA * rtA * rtA + iB * rtB * rtB; vcp->tangentMass = kTangent > 0.0f ? 1.0f / kTangent : 0.0f; // Setup a velocity bias for restitution. vcp->velocityBias = 0.0f; float32 vRel = b2Dot(vc->normal, vB + b2Cross(wB, vcp->rB) - vA - b2Cross(wA, vcp->rA)); if (vRel < -b2_velocityThreshold) { vcp->velocityBias = -vc->restitution * vRel; } } // If we have two points, then prepare the block solver. if (vc->pointCount == 2) { b2VelocityConstraintPoint* vcp1 = vc->points + 0; b2VelocityConstraintPoint* vcp2 = vc->points + 1; float32 rn1A = b2Cross(vcp1->rA, vc->normal); float32 rn1B = b2Cross(vcp1->rB, vc->normal); float32 rn2A = b2Cross(vcp2->rA, vc->normal); float32 rn2B = b2Cross(vcp2->rB, vc->normal); float32 k11 = mA + mB + iA * rn1A * rn1A + iB * rn1B * rn1B; float32 k22 = mA + mB + iA * rn2A * rn2A + iB * rn2B * rn2B; float32 k12 = mA + mB + iA * rn1A * rn2A + iB * rn1B * rn2B; // Ensure a reasonable condition number. const float32 k_maxConditionNumber = 1000.0f; if (k11 * k11 < k_maxConditionNumber * (k11 * k22 - k12 * k12)) { // K is safe to invert. vc->K.ex.Set(k11, k12); vc->K.ey.Set(k12, k22); vc->normalMass = vc->K.GetInverse(); } else { // The constraints are redundant, just use one. // TODO_ERIN use deepest? vc->pointCount = 1; } } } } void b2ContactSolver::WarmStart() { // Warm start. for (int32 i = 0; i < m_count; ++i) { b2ContactVelocityConstraint* vc = m_velocityConstraints + i; int32 indexA = vc->indexA; int32 indexB = vc->indexB; float32 mA = vc->invMassA; float32 iA = vc->invIA; float32 mB = vc->invMassB; float32 iB = vc->invIB; int32 pointCount = vc->pointCount; b2Vec2 vA = m_velocities[indexA].v; float32 wA = m_velocities[indexA].w; b2Vec2 vB = m_velocities[indexB].v; float32 wB = m_velocities[indexB].w; b2Vec2 normal = vc->normal; b2Vec2 tangent = b2Cross(normal, 1.0f); for (int32 j = 0; j < pointCount; ++j) { b2VelocityConstraintPoint* vcp = vc->points + j; b2Vec2 P = vcp->normalImpulse * normal + vcp->tangentImpulse * tangent; wA -= iA * b2Cross(vcp->rA, P); vA -= mA * P; wB += iB * b2Cross(vcp->rB, P); vB += mB * P; } m_velocities[indexA].v = vA; m_velocities[indexA].w = wA; m_velocities[indexB].v = vB; m_velocities[indexB].w = wB; } } void b2ContactSolver::SolveVelocityConstraints() { for (int32 i = 0; i < m_count; ++i) { b2ContactVelocityConstraint* vc = m_velocityConstraints + i; int32 indexA = vc->indexA; int32 indexB = vc->indexB; float32 mA = vc->invMassA; float32 iA = vc->invIA; float32 mB = vc->invMassB; float32 iB = vc->invIB; int32 pointCount = vc->pointCount; b2Vec2 vA = m_velocities[indexA].v; float32 wA = m_velocities[indexA].w; b2Vec2 vB = m_velocities[indexB].v; float32 wB = m_velocities[indexB].w; b2Vec2 normal = vc->normal; b2Vec2 tangent = b2Cross(normal, 1.0f); float32 friction = vc->friction; b2Assert(pointCount == 1 || pointCount == 2); // Solve tangent constraints first because non-penetration is more important // than friction. for (int32 j = 0; j < pointCount; ++j) { b2VelocityConstraintPoint* vcp = vc->points + j; // Relative velocity at contact b2Vec2 dv = vB + b2Cross(wB, vcp->rB) - vA - b2Cross(wA, vcp->rA); // Compute tangent force float32 vt = b2Dot(dv, tangent); float32 lambda = vcp->tangentMass * (-vt); // b2Clamp the accumulated force float32 maxFriction = friction * vcp->normalImpulse; float32 newImpulse = b2Clamp(vcp->tangentImpulse + lambda, -maxFriction, maxFriction); lambda = newImpulse - vcp->tangentImpulse; vcp->tangentImpulse = newImpulse; // Apply contact impulse b2Vec2 P = lambda * tangent; vA -= mA * P; wA -= iA * b2Cross(vcp->rA, P); vB += mB * P; wB += iB * b2Cross(vcp->rB, P); } // Solve normal constraints if (vc->pointCount == 1) { b2VelocityConstraintPoint* vcp = vc->points + 0; // Relative velocity at contact b2Vec2 dv = vB + b2Cross(wB, vcp->rB) - vA - b2Cross(wA, vcp->rA); // Compute normal impulse float32 vn = b2Dot(dv, normal); float32 lambda = -vcp->normalMass * (vn - vcp->velocityBias); // b2Clamp the accumulated impulse float32 newImpulse = b2Max(vcp->normalImpulse + lambda, 0.0f); lambda = newImpulse - vcp->normalImpulse; vcp->normalImpulse = newImpulse; // Apply contact impulse b2Vec2 P = lambda * normal; vA -= mA * P; wA -= iA * b2Cross(vcp->rA, P); vB += mB * P; wB += iB * b2Cross(vcp->rB, P); } else { // Block solver developed in collaboration with Dirk Gregorius (back in 01/07 on Box2D_Lite). // Build the mini LCP for this contact patch // // vn = A * x + b, vn >= 0, , vn >= 0, x >= 0 and vn_i * x_i = 0 with i = 1..2 // // A = J * W * JT and J = ( -n, -r1 x n, n, r2 x n ) // b = vn0 - velocityBias // // The system is solved using the "Total enumeration method" (s. Murty). The complementary constraint vn_i * x_i // implies that we must have in any solution either vn_i = 0 or x_i = 0. So for the 2D contact problem the cases // vn1 = 0 and vn2 = 0, x1 = 0 and x2 = 0, x1 = 0 and vn2 = 0, x2 = 0 and vn1 = 0 need to be tested. The first valid // solution that satisfies the problem is chosen. // // In order to account of the accumulated impulse 'a' (because of the iterative nature of the solver which only requires // that the accumulated impulse is clamped and not the incremental impulse) we change the impulse variable (x_i). // // Substitute: // // x = a + d // // a := old total impulse // x := new total impulse // d := incremental impulse // // For the current iteration we extend the formula for the incremental impulse // to compute the new total impulse: // // vn = A * d + b // = A * (x - a) + b // = A * x + b - A * a // = A * x + b' // b' = b - A * a; b2VelocityConstraintPoint* cp1 = vc->points + 0; b2VelocityConstraintPoint* cp2 = vc->points + 1; b2Vec2 a(cp1->normalImpulse, cp2->normalImpulse); b2Assert(a.x >= 0.0f && a.y >= 0.0f); // Relative velocity at contact b2Vec2 dv1 = vB + b2Cross(wB, cp1->rB) - vA - b2Cross(wA, cp1->rA); b2Vec2 dv2 = vB + b2Cross(wB, cp2->rB) - vA - b2Cross(wA, cp2->rA); // Compute normal velocity float32 vn1 = b2Dot(dv1, normal); float32 vn2 = b2Dot(dv2, normal); b2Vec2 b; b.x = vn1 - cp1->velocityBias; b.y = vn2 - cp2->velocityBias; // Compute b' b -= b2Mul(vc->K, a); const float32 k_errorTol = 1e-3f; B2_NOT_USED(k_errorTol); for (;;) { // // Case 1: vn = 0 // // 0 = A * x + b' // // Solve for x: // // x = - inv(A) * b' // b2Vec2 x = - b2Mul(vc->normalMass, b); if (x.x >= 0.0f && x.y >= 0.0f) { // Get the incremental impulse b2Vec2 d = x - a; // Apply incremental impulse b2Vec2 P1 = d.x * normal; b2Vec2 P2 = d.y * normal; vA -= mA * (P1 + P2); wA -= iA * (b2Cross(cp1->rA, P1) + b2Cross(cp2->rA, P2)); vB += mB * (P1 + P2); wB += iB * (b2Cross(cp1->rB, P1) + b2Cross(cp2->rB, P2)); // Accumulate cp1->normalImpulse = x.x; cp2->normalImpulse = x.y; #if B2_DEBUG_SOLVER == 1 // Postconditions dv1 = vB + b2Cross(wB, cp1->rB) - vA - b2Cross(wA, cp1->rA); dv2 = vB + b2Cross(wB, cp2->rB) - vA - b2Cross(wA, cp2->rA); // Compute normal velocity vn1 = b2Dot(dv1, normal); vn2 = b2Dot(dv2, normal); b2Assert(b2Abs(vn1 - cp1->velocityBias) < k_errorTol); b2Assert(b2Abs(vn2 - cp2->velocityBias) < k_errorTol); #endif break; } // // Case 2: vn1 = 0 and x2 = 0 // // 0 = a11 * x1 + a12 * 0 + b1' // vn2 = a21 * x1 + a22 * 0 + b2' // x.x = - cp1->normalMass * b.x; x.y = 0.0f; vn1 = 0.0f; vn2 = vc->K.ex.y * x.x + b.y; if (x.x >= 0.0f && vn2 >= 0.0f) { // Get the incremental impulse b2Vec2 d = x - a; // Apply incremental impulse b2Vec2 P1 = d.x * normal; b2Vec2 P2 = d.y * normal; vA -= mA * (P1 + P2); wA -= iA * (b2Cross(cp1->rA, P1) + b2Cross(cp2->rA, P2)); vB += mB * (P1 + P2); wB += iB * (b2Cross(cp1->rB, P1) + b2Cross(cp2->rB, P2)); // Accumulate cp1->normalImpulse = x.x; cp2->normalImpulse = x.y; #if B2_DEBUG_SOLVER == 1 // Postconditions dv1 = vB + b2Cross(wB, cp1->rB) - vA - b2Cross(wA, cp1->rA); // Compute normal velocity vn1 = b2Dot(dv1, normal); b2Assert(b2Abs(vn1 - cp1->velocityBias) < k_errorTol); #endif break; } // // Case 3: vn2 = 0 and x1 = 0 // // vn1 = a11 * 0 + a12 * x2 + b1' // 0 = a21 * 0 + a22 * x2 + b2' // x.x = 0.0f; x.y = - cp2->normalMass * b.y; vn1 = vc->K.ey.x * x.y + b.x; vn2 = 0.0f; if (x.y >= 0.0f && vn1 >= 0.0f) { // Resubstitute for the incremental impulse b2Vec2 d = x - a; // Apply incremental impulse b2Vec2 P1 = d.x * normal; b2Vec2 P2 = d.y * normal; vA -= mA * (P1 + P2); wA -= iA * (b2Cross(cp1->rA, P1) + b2Cross(cp2->rA, P2)); vB += mB * (P1 + P2); wB += iB * (b2Cross(cp1->rB, P1) + b2Cross(cp2->rB, P2)); // Accumulate cp1->normalImpulse = x.x; cp2->normalImpulse = x.y; #if B2_DEBUG_SOLVER == 1 // Postconditions dv2 = vB + b2Cross(wB, cp2->rB) - vA - b2Cross(wA, cp2->rA); // Compute normal velocity vn2 = b2Dot(dv2, normal); b2Assert(b2Abs(vn2 - cp2->velocityBias) < k_errorTol); #endif break; } // // Case 4: x1 = 0 and x2 = 0 // // vn1 = b1 // vn2 = b2; x.x = 0.0f; x.y = 0.0f; vn1 = b.x; vn2 = b.y; if (vn1 >= 0.0f && vn2 >= 0.0f ) { // Resubstitute for the incremental impulse b2Vec2 d = x - a; // Apply incremental impulse b2Vec2 P1 = d.x * normal; b2Vec2 P2 = d.y * normal; vA -= mA * (P1 + P2); wA -= iA * (b2Cross(cp1->rA, P1) + b2Cross(cp2->rA, P2)); vB += mB * (P1 + P2); wB += iB * (b2Cross(cp1->rB, P1) + b2Cross(cp2->rB, P2)); // Accumulate cp1->normalImpulse = x.x; cp2->normalImpulse = x.y; break; } // No solution, give up. This is hit sometimes, but it doesn't seem to matter. break; } } m_velocities[indexA].v = vA; m_velocities[indexA].w = wA; m_velocities[indexB].v = vB; m_velocities[indexB].w = wB; } } void b2ContactSolver::StoreImpulses() { for (int32 i = 0; i < m_count; ++i) { b2ContactVelocityConstraint* vc = m_velocityConstraints + i; b2Manifold* manifold = m_contacts[vc->contactIndex]->GetManifold(); for (int32 j = 0; j < vc->pointCount; ++j) { manifold->points[j].normalImpulse = vc->points[j].normalImpulse; manifold->points[j].tangentImpulse = vc->points[j].tangentImpulse; } } } struct b2PositionSolverManifold { void Initialize(b2ContactPositionConstraint* pc, const b2Transform& xfA, const b2Transform& xfB, int32 index) { b2Assert(pc->pointCount > 0); switch (pc->type) { case b2Manifold::e_circles: { b2Vec2 pointA = b2Mul(xfA, pc->localPoint); b2Vec2 pointB = b2Mul(xfB, pc->localPoints[0]); normal = pointB - pointA; normal.Normalize(); point = 0.5f * (pointA + pointB); separation = b2Dot(pointB - pointA, normal) - pc->radiusA - pc->radiusB; } break; case b2Manifold::e_faceA: { normal = b2Mul(xfA.q, pc->localNormal); b2Vec2 planePoint = b2Mul(xfA, pc->localPoint); b2Vec2 clipPoint = b2Mul(xfB, pc->localPoints[index]); separation = b2Dot(clipPoint - planePoint, normal) - pc->radiusA - pc->radiusB; point = clipPoint; } break; case b2Manifold::e_faceB: { normal = b2Mul(xfB.q, pc->localNormal); b2Vec2 planePoint = b2Mul(xfB, pc->localPoint); b2Vec2 clipPoint = b2Mul(xfA, pc->localPoints[index]); separation = b2Dot(clipPoint - planePoint, normal) - pc->radiusA - pc->radiusB; point = clipPoint; // Ensure normal points from A to B normal = -normal; } break; } } b2Vec2 normal; b2Vec2 point; float32 separation; }; // Sequential solver. bool b2ContactSolver::SolvePositionConstraints() { float32 minSeparation = 0.0f; for (int32 i = 0; i < m_count; ++i) { b2ContactPositionConstraint* pc = m_positionConstraints + i; int32 indexA = pc->indexA; int32 indexB = pc->indexB; b2Vec2 localCenterA = pc->localCenterA; float32 mA = pc->invMassA; float32 iA = pc->invIA; b2Vec2 localCenterB = pc->localCenterB; float32 mB = pc->invMassB; float32 iB = pc->invIB; int32 pointCount = pc->pointCount; b2Vec2 cA = m_positions[indexA].c; float32 aA = m_positions[indexA].a; b2Vec2 cB = m_positions[indexB].c; float32 aB = m_positions[indexB].a; // Solve normal constraints for (int32 j = 0; j < pointCount; ++j) { b2Transform xfA, xfB; xfA.q.Set(aA); xfB.q.Set(aB); xfA.p = cA - b2Mul(xfA.q, localCenterA); xfB.p = cB - b2Mul(xfB.q, localCenterB); b2PositionSolverManifold psm; psm.Initialize(pc, xfA, xfB, j); b2Vec2 normal = psm.normal; b2Vec2 point = psm.point; float32 separation = psm.separation; b2Vec2 rA = point - cA; b2Vec2 rB = point - cB; // Track max constraint error. minSeparation = b2Min(minSeparation, separation); // Prevent large corrections and allow slop. float32 C = b2Clamp(b2_baumgarte * (separation + b2_linearSlop), -b2_maxLinearCorrection, 0.0f); // Compute the effective mass. float32 rnA = b2Cross(rA, normal); float32 rnB = b2Cross(rB, normal); float32 K = mA + mB + iA * rnA * rnA + iB * rnB * rnB; // Compute normal impulse float32 impulse = K > 0.0f ? - C / K : 0.0f; b2Vec2 P = impulse * normal; cA -= mA * P; aA -= iA * b2Cross(rA, P); cB += mB * P; aB += iB * b2Cross(rB, P); } m_positions[indexA].c = cA; m_positions[indexA].a = aA; m_positions[indexB].c = cB; m_positions[indexB].a = aB; } // We can't expect minSpeparation >= -b2_linearSlop because we don't // push the separation above -b2_linearSlop. return minSeparation >= -3.0f * b2_linearSlop; } // Sequential position solver for position constraints. bool b2ContactSolver::SolveTOIPositionConstraints(int32 toiIndexA, int32 toiIndexB) { float32 minSeparation = 0.0f; for (int32 i = 0; i < m_count; ++i) { b2ContactPositionConstraint* pc = m_positionConstraints + i; int32 indexA = pc->indexA; int32 indexB = pc->indexB; b2Vec2 localCenterA = pc->localCenterA; b2Vec2 localCenterB = pc->localCenterB; int32 pointCount = pc->pointCount; float32 mA = 0.0f; float32 iA = 0.0f; if (indexA == toiIndexA || indexA == toiIndexB) { mA = pc->invMassA; iA = pc->invIA; } float32 mB = pc->invMassB; float32 iB = pc->invIB; if (indexB == toiIndexA || indexB == toiIndexB) { mB = pc->invMassB; iB = pc->invIB; } b2Vec2 cA = m_positions[indexA].c; float32 aA = m_positions[indexA].a; b2Vec2 cB = m_positions[indexB].c; float32 aB = m_positions[indexB].a; // Solve normal constraints for (int32 j = 0; j < pointCount; ++j) { b2Transform xfA, xfB; xfA.q.Set(aA); xfB.q.Set(aB); xfA.p = cA - b2Mul(xfA.q, localCenterA); xfB.p = cB - b2Mul(xfB.q, localCenterB); b2PositionSolverManifold psm; psm.Initialize(pc, xfA, xfB, j); b2Vec2 normal = psm.normal; b2Vec2 point = psm.point; float32 separation = psm.separation; b2Vec2 rA = point - cA; b2Vec2 rB = point - cB; // Track max constraint error. minSeparation = b2Min(minSeparation, separation); // Prevent large corrections and allow slop. float32 C = b2Clamp(b2_toiBaugarte * (separation + b2_linearSlop), -b2_maxLinearCorrection, 0.0f); // Compute the effective mass. float32 rnA = b2Cross(rA, normal); float32 rnB = b2Cross(rB, normal); float32 K = mA + mB + iA * rnA * rnA + iB * rnB * rnB; // Compute normal impulse float32 impulse = K > 0.0f ? - C / K : 0.0f; b2Vec2 P = impulse * normal; cA -= mA * P; aA -= iA * b2Cross(rA, P); cB += mB * P; aB += iB * b2Cross(rB, P); } m_positions[indexA].c = cA; m_positions[indexA].a = aA; m_positions[indexB].c = cB; m_positions[indexB].a = aB; } // We can't expect minSpeparation >= -b2_linearSlop because we don't // push the separation above -b2_linearSlop. return minSeparation >= -1.5f * b2_linearSlop; }
[ "stubma@gmail.com" ]
stubma@gmail.com
426ead0453905d2f185b9c5f0e73e73a27305e96
de05ee304d5aeebfbf29b9aedf9c7587fe940ac7
/T_POTEGA/t_potega.cpp
baeab16c883b185f0a2aaad8dfcfa7d2ccec97d1
[]
no_license
bplatak/spoj
1ee4cf4469c57d6a440b26b49f9795092f20f8cc
6f55f3c2ed4a91bff7061ae61b41f9c7706f77b6
refs/heads/master
2022-03-13T03:03:17.141554
2014-11-11T18:06:05
2014-11-11T18:06:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
461
cpp
#include <iostream> using namespace std; int pmf(int a, int b, int m) { int i; int result = 1; long int x = a%m; for (i=1; i<=b; i<<=1) { x %= m; if ((b&i) != 0) { result *= x; result %= m; } x *= x; } return result%m; } int main() { int t; scanf("%d",&t); while(t--){ int x,n,p; scanf("%d %d %d",&x,&n,&p); cout<<pmf(x,n,p)<<"\n"; } return 0; }
[ "bartosz.platak2@philips.com" ]
bartosz.platak2@philips.com
0d52702d184bb80b19ded33aa03a811b283ee175
d2aac593538c407c7d54b2efbdf1008b1ccbc6c3
/FinalExam/4.cpp
bdd2b6a970a7d75ec5f417d03ded839fe7039958
[]
no_license
kunghua999/CS31
afd867cdd14859f75a7571fb4dd95612b8ddc82b
cfc50dfd4250a717e55e8963def5f0e5a5821ac1
refs/heads/master
2021-05-01T23:35:34.020272
2016-12-31T17:45:39
2016-12-31T17:45:39
77,750,556
0
0
null
null
null
null
UTF-8
C++
false
false
603
cpp
#include <iostream> #include <string> using namespace std; int foo( string s ) { if (s.size () < 1) return -1; int mult = 1; int offs = 0; switch (s[0]) { case '-': mult = -1; break ; case '+': mult = 1; break ; default : offs = 1; break ; } return mult * (s[1 - offs ] - '0'); } int foo2(string exp) { string exp1="", exp2="", exp3=""; int i; for(i=0;i<=1;i++) exp1 += exp[i]; for(i=5;i<=7;i++) exp2 += exp[i]; for(i=8;i<=13;i++) exp3 += exp[i]; return foo(exp1) + foo(exp2) + foo(exp3); } int main() { cout << foo2("-3+3+555+99999") << endl; return 0; }
[ "kunghua927@hotmail.com" ]
kunghua927@hotmail.com
3b778b9e8406952bb14696350ce7d979e66361b5
b27264fbdf7197404fa906c85da0a7b415a0a4a8
/p3/funciones.cpp
cea4cfc7c77e49b4fcb6faa72dc0fda3a79131d7
[]
no_license
fernansd/Algoritmica
1bc27d5a6e5a6d6bc035f7df66a688d8eb0fbbce
de21931edffa125c88142035ccc4d879e3c86b89
refs/heads/master
2020-04-06T03:31:52.039635
2017-01-08T15:47:31
2017-01-08T15:47:31
70,077,556
0
0
null
null
null
null
UTF-8
C++
false
false
1,617
cpp
#include <random> #include <algorithm> #include "funciones.hpp" template<typename T> int obtenerMaxMin(Conjunto<T>& c, T& min, T& max, int i, int j) { // Las comparaciones que se cuentan son las incluidas en el algoritmo // teòrico, en realidad se usan más comparaciones debido a requisitos // de la implementación int comparaciones = 0; // La primera vez que un usuario llama a la función no necesita especificar // el tamaño del conjunto, de ahí que se asigne el tamaño si j tiene // el valor por defecto del parámetro if (j == -1) { j = c.size(); } comparaciones++; if (i == j) { min = c[i]; max = c[i]; } else { comparaciones++; if (i == j-1) { comparaciones++; if (c[i] < c[j]) { max = c[j]; min = c[i]; } else { max = c[i]; min = c[j]; } } else { int mitad = (i+j) / 2; T aux_min, aux_max; comparaciones += obtenerMaxMin(c, min, max, i, mitad); comparaciones += obtenerMaxMin(c, aux_min, aux_max, mitad+1, j); min = std::min(min, aux_min); max = std::max(max, aux_max); } } return comparaciones; } void generarConjuntoEnteros(Conjunto<int> &c, int tam) { // Obtiene un número para dar al generador std::random_device r_num; // Crea el generador con semilla el número anterior std::default_random_engine gen(r_num()); // Define el rango para operar std::uniform_int_distribution<> rango(1, 10000); // Cambia el tamaño del vector al pedido c.resize(tam); // Rellena el vector con números aleatorios for (int i = 0; i < tam; i++) { c[i] = rango(gen); } }
[ "fernandosd24@gmail.com" ]
fernandosd24@gmail.com
2f41562668b4a51a20153b66441646a14a5d72d1
c34b1da33b420c516786a8b63a5353c694f6a796
/PageTable.cpp
a61bdfbc802233e11ad121ac6d97b3a39fa1c320
[]
no_license
brendanAlbert/cs351_vmm
fe1a4d179b0f82906f297e4e759689c885e6abf1
ae90ea4e6e5bd24813434c67caa44aa68d2ec97f
refs/heads/master
2020-05-22T13:50:22.047758
2019-05-13T07:25:07
2019-05-13T07:25:07
186,367,014
0
0
null
null
null
null
UTF-8
C++
false
false
646
cpp
// Page Table class implementation file #include "PageTable.h" using namespace std; // Constructor PageTable::PageTable() { for (int i = 0; i < PAGE_TABLE_SIZE; i++) { page_table[i].page.value_ = UINT32_MAX; page_table[i].frame.value_ = UINT32_MAX; } } // method checks if pagenumber is in the page table int PageTable::pagehit(Word pg) { for (int i = 0; i < PAGE_TABLE_SIZE; i++) { if (page_table[i].page.value_ == pg.value_) { return i; } } return -1; } /// method searches table for pagenumber // returns the framenumber Word PageTable::access(Word pg) { // return framenumber return page_table[pagehit(pg)].frame; }
[ "alber123@mail.chapman.edu" ]
alber123@mail.chapman.edu
ca10de438b3795a4927c1c813eded55223a0c457
a45b76c5a858a55a0d2165a18ca5ea68fac28977
/Source/RtsGame/RtsUserWidget.cpp
6f2f66a422cf25c73894c2333d615f2655fb1097
[]
no_license
ArthurKacprzak/3DGameEngineCreation
8d6e5e8b55c1596840c2ca0ea7e18ace034dd50d
55a5bb86cd81e77be8b2f39d755bab0fa2805856
refs/heads/master
2023-02-12T19:02:14.941006
2021-01-11T23:27:21
2021-01-11T23:27:21
303,353,355
0
0
null
2020-10-20T18:00:39
2020-10-12T10:14:11
C
UTF-8
C++
false
false
625
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "RtsUserWidget.h" #include "UMG/Public/Components/Button.h" #include "UMG/Public/Components/Image.h" #include "Components/CanvasPanelSlot.h" #include "Components/Widget.h" #include "Blueprint/WidgetTree.h" void URtsUserWidget::NativeConstruct() { this->Super::NativeConstruct(); } void URtsUserWidget::NativeTick(const FGeometry& MyGeometry, float InDeltaTime) { Super::NativeTick(MyGeometry, InDeltaTime); } void URtsUserWidget::OnClick() { GEngine->AddOnScreenDebugMessage(-1, 15.0f, FColor::Yellow, TEXT("click!")); }
[ "arthur.kacprzak@eptiech.eu" ]
arthur.kacprzak@eptiech.eu
91a1a0aec91ed2848d2e1b510334c5e03ee2a5e8
9ec137ae6893c2f964f01e350e8bdfec16784196
/softEngine/src/se/windows/includes/system/Application.hpp
592ec0241324385c78215d19ae489f6c0c1e1355
[ "MIT" ]
permissive
DetrembleurArthur/engineTools
6fdac888efa674c81ec6e4fd04eaa35814bb656d
486fbd081a6519adc03162ab8f51e1ec1254c17c
refs/heads/master
2022-04-02T16:42:50.937590
2020-01-04T16:08:44
2020-01-04T16:08:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,772
hpp
#ifndef APPLICATION_HPP #define APPLICATION_HPP #include <SFML/Graphics.hpp> #include <string> #include <iostream> #include <vector> #include <map> #include "Updater.hpp" #include "EventHandler.hpp" #include "Utilities.hpp" #include "Thread.hpp" #include <string> #include <ctime> #include <cstdlib> namespace se { class Application : public Updater, public EventHandler { private: void initWindow(sf::VideoMode &vm, std::string &title); void initRandomSeed(); void eventLoop(); protected: sf::RenderWindow *window; double dt; sf::Clock dtClock; sf::Clock totalClock; unsigned long tick = 0; std::map<std::string, void *> globals; virtual void load() abstract; virtual void update() override abstract; virtual void render() override abstract; virtual void close(); virtual void closedEventHandler(const sf::Event& event) override final; public: Application(double width, double height, std::string title); Application(std::string title); virtual ~Application(); void run(); double getDt() const; double getTotalTime() const; unsigned getFrameRate() const; sf::RenderWindow *getWindow() const; void setFrameRate(int fps); void fill(sf::Color color=sf::Color::Black); void display(); void global(std::string name, void *data); template <typename T> void global(std::string name, T data); template <typename T> T *global(std::string name); void *operator()(std::string name); }; typedef Application A; template <typename T> void Application::global(std::string name, T data) { this->globals[name] = new T(data); } template <typename T> T *Application::global(std::string name) { void *data = this->globals[name]; return data ? reinterpret_cast<T *>(this->globals[name]) : nullptr; } } #endif
[ "mb624967@skynet.be" ]
mb624967@skynet.be
a953c00027fd9fd89afea63bb5a3c1047a06ae93
06ae4ff6033d8d7ba028ff4db09784c4e13ff47e
/src/ofxBlackMagic/Utils.cpp
523d02da300159730e320357a15e2a82f80c9f66
[ "MIT" ]
permissive
gameoverhack/ofxBlackmagic2
155650cf4b7b5badbf88cea10ed6a1a25ab87559
318e0c1721028a3a679d9ad614fa041d89b3b9dc
refs/heads/master
2021-01-16T22:05:24.661210
2014-07-23T07:11:52
2014-07-23T07:11:52
23,906,005
2
0
null
null
null
null
UTF-8
C++
false
false
981
cpp
#include "Utils.h" #include <iostream> namespace ofxBlackmagic { namespace Utils { #pragma mark CoManager //--------- CoManager CoManagerInstance = CoManager(); //--------- CoManager::CoManager() { auto result = CoInitialize(NULL); if (FAILED(result)) { throw(std::exception("ofxBlackmagic failed to initialise COM. Now quitting.")); } CHECK_ERRORS(CoCreateInstance(CLSID_CDeckLinkVideoConversion, NULL, CLSCTX_ALL, IID_IDeckLinkVideoConversion, (void**)&this->videoConverter), "Failed to create video conversion instance"); } //--------- CoManager::~CoManager() { this->videoConverter->Release(); } //--------- IDeckLinkVideoConversion& CoManager::getVideoConverter() { return *this->videoConverter; } #pragma mark functions //--------- std::string BSTRToString(BSTR& input) { auto longVersion = std::wstring(input); return std::string(longVersion.begin(), longVersion.end()); } } }
[ "elliot@kimchiandchips.com" ]
elliot@kimchiandchips.com
0a6292d43769e247eeefa46d5d698f0565454910
befd896d301d3040fbd6ccda39aa217bf388a0a4
/tensorflow/compiler/xla/service/gpu/gemm_thunk.cc
74282c568c09921dbeec2e9cce79b6c73b6ea592
[ "Apache-2.0" ]
permissive
mktshhr/tensorflow-theta
98369caf55f676c6ae9a5c82ab151bb53d395f36
fe378e1b690d97ed24bad144dee9efffce893c86
refs/heads/master
2020-03-26T14:29:34.200902
2018-10-21T13:39:56
2018-10-21T13:39:56
144,990,240
5
2
Apache-2.0
2018-10-21T13:39:57
2018-08-16T13:17:25
C++
UTF-8
C++
false
false
19,042
cc
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "tensorflow/compiler/xla/service/gpu/gemm_thunk.h" #include <functional> #include "tensorflow/compiler/xla/util.h" #include "tensorflow/core/lib/strings/strcat.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/stream_executor_no_cuda.h" #include "tensorflow/core/platform/types.h" namespace xla { namespace gpu { namespace { // This struct contains the metadata of a matrix, e.g., its base address and // dimensions. struct MatrixDescriptor { MatrixDescriptor(se::DeviceMemoryBase matrix_data, bool needs_transpose, int64 matrix_num_rows, int64 matrix_num_cols, int64 matrix_batch_size) : data(matrix_data), transpose(needs_transpose), num_rows(matrix_num_rows), num_cols(matrix_num_cols), batch_size(matrix_batch_size) {} se::DeviceMemoryBase data; bool transpose; // Whether this matrix needs to be transposed. int64 num_rows; int64 num_cols; int64 batch_size; }; // Performs a gemm call without an explicit algorithm on lhs_matrix and // rhs_matrix, and stores the result to output_matrix. template <typename Element> bool DoGemm(MatrixDescriptor lhs_matrix, MatrixDescriptor rhs_matrix, MatrixDescriptor output_matrix, double alpha, se::Stream* stream) { DCHECK(!output_matrix.transpose); const int64 batch_size = lhs_matrix.batch_size; CHECK_EQ(batch_size, rhs_matrix.batch_size); CHECK_EQ(batch_size, output_matrix.batch_size); se::DeviceMemory<Element> lhs_data(lhs_matrix.data); se::DeviceMemory<Element> rhs_data(rhs_matrix.data); se::DeviceMemory<Element> output_data(output_matrix.data); auto lhs_transpose = lhs_matrix.transpose ? se::blas::Transpose::kTranspose : se::blas::Transpose::kNoTranspose; auto rhs_transpose = rhs_matrix.transpose ? se::blas::Transpose::kTranspose : se::blas::Transpose::kNoTranspose; auto k = lhs_matrix.transpose ? lhs_matrix.num_rows : lhs_matrix.num_cols; if (batch_size == 1) { return stream ->ThenBlasGemm( lhs_transpose, rhs_transpose, output_matrix.num_rows, output_matrix.num_cols, /*size of reduce dim=*/k, /*alpha=*/alpha, lhs_data, /*leading dim of LHS=*/lhs_matrix.num_rows, rhs_data, /*leading dim of RHS=*/rhs_matrix.num_rows, /*beta=*/0.0, &output_data, /*leading dim of output=*/output_matrix.num_rows) .ok(); } int64 lhs_stride = lhs_matrix.num_rows * lhs_matrix.num_cols; int64 rhs_stride = rhs_matrix.num_rows * rhs_matrix.num_cols; int64 output_stride = output_matrix.num_rows * output_matrix.num_cols; return stream ->ThenBlasGemmStridedBatched( lhs_transpose, rhs_transpose, output_matrix.num_rows, output_matrix.num_cols, /*size of reduce dim=*/k, /*alpha=*/alpha, lhs_data, /*leading dim of LHS=*/lhs_matrix.num_rows, lhs_stride, rhs_data, /*leading dim of RHS=*/rhs_matrix.num_rows, rhs_stride, /*beta=*/0.0, &output_data, /*leading dim of output=*/output_matrix.num_rows, output_stride, batch_size) .ok(); } // Like DoGemm, but takes an explicit computation type and algorithm. // computation_type specifies the type of intermediate values generated during // the matmul (e.g. your input/output matricies could be f16s but you could do // computations with f32s). algorithm is an opaque identifier which functions // as a hint to cublas. // // Not all algorithms are valid for all matrix sizes, and not all CUDA versions // and GPUs even support gemm-with-algorithm. So expect that this may fail // unless you've already checked that it works for this particular GPU + input // size. // // If you pass a non-null ProfileResult, this will always return true (assuming // the Stream was valid to begin with); check the is_valid property of the // ProfileResult to see whether the call actually succeeded. template <typename Element> bool DoGemmWithAlgorithm(MatrixDescriptor lhs_matrix, MatrixDescriptor rhs_matrix, MatrixDescriptor output_matrix, double alpha, se::blas::ComputationType computation_type, se::blas::AlgorithmType algorithm, se::Stream* stream, se::blas::ProfileResult* output_profile_result) { DCHECK(!output_matrix.transpose); CHECK_EQ(1, lhs_matrix.batch_size); CHECK_EQ(1, rhs_matrix.batch_size); CHECK_EQ(1, output_matrix.batch_size); se::DeviceMemory<Element> lhs_data(lhs_matrix.data); se::DeviceMemory<Element> rhs_data(rhs_matrix.data); se::DeviceMemory<Element> output_data(output_matrix.data); auto lhs_transpose = lhs_matrix.transpose ? se::blas::Transpose::kTranspose : se::blas::Transpose::kNoTranspose; auto rhs_transpose = rhs_matrix.transpose ? se::blas::Transpose::kTranspose : se::blas::Transpose::kNoTranspose; auto k = lhs_matrix.transpose ? lhs_matrix.num_rows : lhs_matrix.num_cols; return stream ->ThenBlasGemmWithAlgorithm( lhs_transpose, rhs_transpose, output_matrix.num_rows, output_matrix.num_cols, /*size of reduce dim=*/k, /*alpha=*/static_cast<Element>(alpha), lhs_data, /*leading dim of LHS=*/lhs_matrix.num_rows, rhs_data, /*leading dim of RHS=*/rhs_matrix.num_rows, /*beta=*/static_cast<Element>(0.0f), &output_data, /*leading dim of output=*/output_matrix.num_rows, computation_type, algorithm, output_profile_result) .ok(); } // Experimentally tries to pick the best algorithm for the given gemm. // // This may fail under perfectly normal circumstances. In particular, it will // fail if the program was built with < CUDA 8 or if we're using a gpu older // than sm_50 -- in both cases, cublas doesn't support gemm-with-algorithm at // all. template <typename Element> StatusOr<se::blas::AlgorithmType> DoGemmAutotune( MatrixDescriptor lhs_matrix, MatrixDescriptor rhs_matrix, MatrixDescriptor output_matrix, double alpha, se::blas::ComputationType computation_type, se::Stream* stream) { std::vector<se::blas::AlgorithmType> algorithms; CHECK(stream->parent()->GetBlasGemmAlgorithms(&algorithms)); se::blas::ProfileResult best_result; for (auto algorithm : algorithms) { se::blas::ProfileResult profile_result; // We expect GemmWithAlgorithm to fail sometimes -- in fact, it will fail // for all algorithms if we're targeting < sm_50. But because we pass a // non-null ProfileResult, DoGemmWithAlgorithm should always return true, // and the actual success-ness is returned in ProfileResult::is_valid. CHECK(DoGemmWithAlgorithm<Element>(lhs_matrix, rhs_matrix, output_matrix, alpha, computation_type, algorithm, stream, &profile_result)); if (profile_result.is_valid()) { VLOG(3) << "cublas gemm algorithm " << algorithm << " took " << profile_result.elapsed_time_in_ms() << "ms"; if (profile_result.elapsed_time_in_ms() < best_result.elapsed_time_in_ms()) { best_result = profile_result; } } else { VLOG(4) << "cublas gemm algorithm " << algorithm << " failed."; } } if (best_result.is_valid()) { return best_result.algorithm(); } return InternalError( "Unable to autotune cuBLAS gemm on stream %p; none of the %zu algorithms " "ran successfully", stream, algorithms.size()); } // Helper functions to go from a PrimitiveType to a templated version of // DoGemm/DoGemmWithAlgorithm/DoGemmAutotune. auto GetGemmFn(PrimitiveType type) -> decltype(&DoGemm<float>) { switch (type) { case F16: return &DoGemm<Eigen::half>; case F32: return &DoGemm<float>; case F64: return &DoGemm<double>; case C64: return &DoGemm<std::complex<float>>; default: LOG(FATAL) << "Unsupported type."; } } auto GetGemmWithAlgorithmFn(PrimitiveType type) -> decltype(&DoGemmWithAlgorithm<float>) { switch (type) { case F16: return &DoGemmWithAlgorithm<Eigen::half>; case F32: return &DoGemmWithAlgorithm<float>; case F64: return &DoGemmWithAlgorithm<double>; case C64: return &DoGemmWithAlgorithm<std::complex<float>>; default: LOG(FATAL) << "Unsupported type."; } } auto GetGemmAutotuneFn(PrimitiveType type) -> decltype(&DoGemmAutotune<float>) { switch (type) { case F16: return &DoGemmAutotune<Eigen::half>; case F32: return &DoGemmAutotune<float>; case F64: return &DoGemmAutotune<double>; case C64: return &DoGemmAutotune<std::complex<float>>; default: LOG(FATAL) << "Unsupported type."; } } // Converts from an XLA PrimitiveType to a blas::ComputationType, which is used // to specify the precision with which matmul computations should be performed, // separately from the precision of the inputs and result. se::blas::ComputationType GetBlasComputationType(PrimitiveType type) { switch (type) { case F16: // Use F32 as computation type for F16 as we currently only implement the // cuDNN pseudo half configuration for half precision. return se::blas::ComputationType::kF32; case F32: return se::blas::ComputationType::kF32; case F64: return se::blas::ComputationType::kF64; case C64: return se::blas::ComputationType::kComplexF32; default: LOG(FATAL) << "Unsupported type."; } } DotDimensionNumbers GetDimensionNumbers(const HloInstruction& hlo_instruction) { if (hlo_instruction.opcode() == HloOpcode::kDot) { return hlo_instruction.dot_dimension_numbers(); } CHECK_EQ(hlo_instruction.opcode(), HloOpcode::kFusion); CHECK_EQ(hlo_instruction.fusion_kind(), HloInstruction::FusionKind::kOutput); CHECK_EQ(hlo_instruction.fused_expression_root()->opcode(), HloOpcode::kMultiply); // Try to find the dot inside the output fusion node. const HloInstruction* dot = hlo_instruction.fused_expression_root()->operand(0); if (dot->opcode() != HloOpcode::kDot) { dot = hlo_instruction.fused_expression_root()->operand(1); } CHECK_EQ(dot->opcode(), HloOpcode::kDot); return dot->dot_dimension_numbers(); } } // namespace GemmThunk::GemmThunk(const BufferAllocation::Slice& lhs_buffer, const BufferAllocation::Slice& rhs_buffer, const BufferAllocation::Slice& output_buffer, const Shape& lhs_shape, const Shape& rhs_shape, const Shape& output_shape, double alpha, const HloInstruction* hlo_instruction) : Thunk(Kind::kGemm, hlo_instruction), lhs_buffer_(lhs_buffer), rhs_buffer_(rhs_buffer), output_buffer_(output_buffer), lhs_shape_(lhs_shape), rhs_shape_(rhs_shape), output_shape_(output_shape), alpha_(alpha) {} Status GemmThunk::ExecuteOnStream(const BufferAllocations& buffer_allocations, se::Stream* stream, HloExecutionProfiler* profiler) { VLOG(2) << "Executing a GemmThunk"; se::DeviceMemoryBase lhs_data = buffer_allocations.GetDeviceAddress(lhs_buffer_); se::DeviceMemoryBase rhs_data = buffer_allocations.GetDeviceAddress(rhs_buffer_); se::DeviceMemoryBase output_data = buffer_allocations.GetDeviceAddress(output_buffer_); DotDimensionNumbers dim_nums = GetDimensionNumbers(*hlo_instruction()); CHECK_EQ(dim_nums.lhs_batch_dimensions_size(), dim_nums.rhs_batch_dimensions_size()); CHECK_EQ(dim_nums.lhs_batch_dimensions_size() + 2, ShapeUtil::Rank(output_shape_)); int64 row_dim = dim_nums.lhs_batch_dimensions_size(); int64 col_dim = dim_nums.lhs_batch_dimensions_size() + 1; int64 batch_size = std::accumulate(output_shape_.dimensions().begin(), output_shape_.dimensions().end() - 2, 1, std::multiplies<int64>()); // Check that the batch dims don't cover the last two dims. for (int64 batch_dim : dim_nums.lhs_batch_dimensions()) { CHECK_NE(row_dim, batch_dim); CHECK_NE(col_dim, batch_dim); } // Verify that the non-batch dimensions are minor-most. This is required for // efficient access. for (const auto* shape : {&lhs_shape_, &rhs_shape_, &output_shape_}) { CHECK_LT(shape->layout().minor_to_major(row_dim), 2); CHECK_LT(shape->layout().minor_to_major(col_dim), 2); } // BLAS gemm reduces rows of LHS and columns of RHS. The Dot operator between // matrices reduces dimension 1 of LHS and dimension 0 of RHS regardless of // their layout. Therefore, we should treat dimension 0 as row and dimension 1 // as column when mapping a matrix Dot to BLAS gemm. int64 output_num_rows = output_shape_.dimensions(row_dim); int64 output_num_cols = output_shape_.dimensions(col_dim); // BLAS gemm expects the inputs and the output are in column-major order. // Therefore, we need to convert dot between row-major matrices to that // between column-major matrices. The key insight for the conversion is that, // in linear storage, matrix M in column-major order is identical to the // transpose of M in row-major order. In other words, // // column-major(M) = row-major(M^T). // // Leveraging this insight, we can perform dot between row-major matrices as // follows. // // row-major(C) // = row-major(A x B) = column-major((A x B)^T) = column-major(B^T x A^T) // = gemm(column-major(B^T), column-major(A^T)) // = gemm(row-major(B), row-major(A)) // // Although we do not modify the content of A and B in linear memory, we // should use the dimensions of B^T and A^T when calling gemm. For example, // the leading dimension of the LHS matrix of gemm is the number of rows in // B^T and thus the number of columns in B. auto make_descriptor = [&](se::DeviceMemoryBase data, const Shape& shape, bool transpose) -> MatrixDescriptor { bool is_row_major = LayoutUtil::Minor(shape.layout(), row_dim) != 0; bool layout_mismatch = LayoutUtil::Minor(shape.layout(), row_dim) != LayoutUtil::Minor(output_shape_.layout(), row_dim); return MatrixDescriptor( data, transpose ^ layout_mismatch, shape.dimensions(row_dim + static_cast<int64>(is_row_major)), shape.dimensions(row_dim + static_cast<int64>(!is_row_major)), batch_size); }; const MatrixDescriptor lhs_descriptor = make_descriptor( lhs_data, lhs_shape_, dim_nums.lhs_contracting_dimensions(0) == row_dim); const MatrixDescriptor rhs_descriptor = make_descriptor( rhs_data, rhs_shape_, dim_nums.rhs_contracting_dimensions(0) == col_dim); // Dispatches to a regular cublas gemm, a gemm-with-algorithm, or attempts to // autotune this gemm to figure out the best algorithm. auto launch = [&](MatrixDescriptor lhs_matrix, MatrixDescriptor rhs_matrix, MatrixDescriptor output_matrix, se::Stream* stream) { PrimitiveType element_type = output_shape_.element_type(); se::blas::ComputationType computation_type = GetBlasComputationType(element_type); // TODO(b/112111608): Implement auto tune for batched gemm. if (batch_size != 1) { return GetGemmFn(element_type)(lhs_matrix, rhs_matrix, output_matrix, alpha_, stream); } auto thunk_name = [&] { return hlo_instruction() != nullptr ? hlo_instruction()->ToString() : "<null>"; }; const string& device_name = stream->parent()->GetDeviceDescription().name(); auto autotune_it = autotune_results_.find(device_name); if (autotune_it == autotune_results_.end()) { VLOG(3) << "Starting autotune of GemmThunk " << thunk_name(); StatusOr<se::blas::AlgorithmType> best_algorithm = GetGemmAutotuneFn(element_type)(lhs_matrix, rhs_matrix, output_matrix, alpha_, computation_type, stream); autotune_it = autotune_results_.insert({device_name, best_algorithm}).first; if (autotune_it->second.ok()) { VLOG(2) << "Autotune on GemmThunk " << thunk_name() << " successful; best algorithm is " << best_algorithm.ValueOrDie(); } else { VLOG(2) << "Autotune on GemmThunk " << thunk_name() << " unsuccessful. Will use generic gemm."; } } const StatusOr<se::blas::AlgorithmType>& best_algorithm = autotune_it->second; if (best_algorithm.ok()) { auto algorithm = best_algorithm.ValueOrDie(); VLOG(2) << "Using algorithm " << algorithm << " chosen by autotuning on GemmThunk " << thunk_name(); return GetGemmWithAlgorithmFn(element_type)( lhs_matrix, rhs_matrix, output_matrix, alpha_, computation_type, algorithm, stream, /*output_profile_result=*/nullptr); } // Autotune will fail when CUDA 8 and GPU sm_50 or older are used. // Use the older Gemm API in this case. return GetGemmFn(element_type)(lhs_matrix, rhs_matrix, output_matrix, alpha_, stream); }; auto op_profiler = profiler->MakeScopedInstructionProfiler(hlo_instruction()); bool launch_ok; if (LayoutUtil::Minor(output_shape_.layout(), row_dim) == 0) { launch_ok = launch(lhs_descriptor, rhs_descriptor, MatrixDescriptor(output_data, false, output_num_rows, output_num_cols, batch_size), stream); } else { launch_ok = launch(rhs_descriptor, lhs_descriptor, MatrixDescriptor(output_data, false, output_num_cols, output_num_rows, batch_size), stream); } if (!launch_ok) { return InternalError("Unable to launch cuBLAS gemm on stream %p", stream); } return Status::OK(); } } // namespace gpu } // namespace xla
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
01663cc96c4e46c118e53387766ffce8fa4de91a
07c61596c1fba2e2a7034fe5af9707794ea2e2c1
/Luogu/CF600B.cpp
3104bd7b1c0407b208b957b739f9ad32381bdf12
[]
no_license
H-Shen/Collection_of_my_coding_practice
2fcb2f8fef9451ad4a3a9c063bbf6a34ea5966b4
6415552d38a756c9c89de0c774799654c73073a6
refs/heads/master
2023-08-24T21:19:08.886667
2023-08-22T03:47:39
2023-08-22T03:47:39
180,731,825
8
1
null
2021-08-13T18:25:25
2019-04-11T06:48:09
C++
UTF-8
C++
false
false
2,303
cpp
#include <bits/extc++.h> using namespace std; using namespace __gnu_pbds; using ll = long long; #define CODEFORCES #ifdef CODEFORCES namespace IO { template <typename T> inline void read(T& t) { int n = 0; int c = _getchar_nolock(); t = 0; while (!isdigit(c)) n |= c == '-', c = _getchar_nolock(); while (isdigit(c)) t = t * 10 + c - 48, c = _getchar_nolock(); if (n) t = -t; } template <typename T, typename... Args> inline void read(T& t, Args&... args) { read(t); read(args...); } template <typename T> inline void write(T x) { if (x < 0) x = -x, _putchar_nolock('-'); if (x > 9) write(x / 10); _putchar_nolock(x % 10 + 48); } template <typename T> inline void writeln(T x) { write(x); _putchar_nolock('\n'); } } #else namespace IO { template<typename T> inline void read(T &t) { int n = 0; int c = getchar_unlocked(); t = 0; while (!isdigit(c)) n |= c == '-', c = getchar_unlocked(); while (isdigit(c)) t = t * 10 + c - 48, c = getchar_unlocked(); if (n) t = -t; } template<typename T, typename... Args> inline void read(T &t, Args &... args) { read(t); read(args...); } template<typename T> inline void write(T x) { if (x < 0) x = -x, putchar_unlocked('-'); if (x > 9) write(x / 10); putchar_unlocked(x % 10 + 48); } template<typename T> inline void writeln(T x) { write(x); putchar_unlocked('\n'); } } #endif int main() { int n, m; IO::read(n, m); vector<int> A(n); vector<int> B(m); for (auto &i : A) IO::read(i); for (auto &i : B) IO::read(i); sort(A.begin(), A.end()); int answer; bool first_item = true; for (const auto &i : B) { if (i < A.front()) { answer = 0; } else if (i > A.back()) { answer = n; } else { answer = upper_bound(A.begin(), A.end(), i) - A.begin(); } if (first_item) { first_item = false; } else { _putchar_nolock(' '); } IO::write(answer); } _putchar_nolock('\n'); return 0; }
[ "haohu.shen@ucalgary.ca" ]
haohu.shen@ucalgary.ca
d8d6b848901ef634827df6fb829fdd173083da1a
2f557f60fc609c03fbb42badf2c4f41ef2e60227
/RecoParticleFlow/PFClusterProducer/plugins/PFBadHcalPseudoClusterProducer.cc
6d599b24502c88de9077601486221a7dbce55bbd
[ "Apache-2.0" ]
permissive
CMS-TMTT/cmssw
91d70fc40a7110832a2ceb2dc08c15b5a299bd3b
80cb3a25c0d63594fe6455b837f7c3cbe3cf42d7
refs/heads/TMTT_1060
2020-03-24T07:49:39.440996
2020-03-04T17:21:36
2020-03-04T17:21:36
142,576,342
3
5
Apache-2.0
2019-12-05T21:16:34
2018-07-27T12:48:13
C++
UTF-8
C++
false
false
7,371
cc
// system include files #include <iostream> #include <memory> // user include files #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/stream/EDProducer.h" #include "FWCore/Framework/interface/Event.h" #include "FWCore/Framework/interface/EventSetup.h" #include "FWCore/Framework/interface/MakerMacros.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h" #include "FWCore/ParameterSet/interface/ParameterSetDescription.h" #include "DataFormats/ParticleFlowReco/interface/PFCluster.h" #include "DataFormats/ParticleFlowReco/interface/PFRecHitFraction.h" #include "DataFormats/ParticleFlowReco/interface/PFRecHit.h" #include "DataFormats/HcalDetId/interface/HcalDetId.h" #include "CondFormats/HcalObjects/interface/HcalChannelStatus.h" #include "CondFormats/HcalObjects/interface/HcalChannelQuality.h" #include "CondFormats/HcalObjects/interface/HcalCondObjectContainer.h" #include "CondFormats/DataRecord/interface/HcalChannelQualityRcd.h" #include "Geometry/CaloGeometry/interface/CaloGeometry.h" #include "Geometry/CaloGeometry/interface/CaloSubdetectorGeometry.h" #include "Geometry/CaloTopology/interface/HcalTopology.h" #include "Geometry/Records/interface/CaloGeometryRecord.h" #include "FWCore/Framework/interface/ESHandle.h" using namespace std; using namespace edm; // // class declaration // class PFBadHcalPseudoClusterProducer : public edm::stream::EDProducer<> { public: explicit PFBadHcalPseudoClusterProducer(const edm::ParameterSet&); ~PFBadHcalPseudoClusterProducer() override; static void fillDescriptions(edm::ConfigurationDescriptions & descriptions); private: virtual void init(const EventSetup& c) ; void produce(edm::Event&, const edm::EventSetup&) override; bool enabled_; bool debug_; edm::ESHandle<HcalChannelQuality> hQuality_; edm::ESHandle<CaloGeometry> hGeom_; unsigned long long cacheId_quality_, cacheId_geom_; std::vector<reco::PFCluster> badAreasC_; std::vector<reco::PFRecHit> badAreasRH_; }; PFBadHcalPseudoClusterProducer::PFBadHcalPseudoClusterProducer(const edm::ParameterSet& ps) : enabled_(ps.getParameter<bool>("enable")), debug_(ps.getUntrackedParameter<bool>("debug",false)), cacheId_quality_(0), cacheId_geom_(0) { produces<std::vector<reco::PFCluster>>(); produces<std::vector<reco::PFRecHit>>("hits"); } PFBadHcalPseudoClusterProducer::~PFBadHcalPseudoClusterProducer() { } void PFBadHcalPseudoClusterProducer::init(const EventSetup& iSetup) { badAreasC_.clear(); badAreasRH_.clear(); edm::ESHandle<HcalChannelQuality> hQuality_; iSetup.get<HcalChannelQualityRcd>().get("withTopo",hQuality_); const HcalChannelQuality & chanquality = *hQuality_; edm::ESHandle<CaloGeometry> hGeom_; iSetup.get<CaloGeometryRecord>().get(hGeom_); const CaloGeometry& caloGeom = *hGeom_; const CaloSubdetectorGeometry *hbGeom = caloGeom.getSubdetectorGeometry(DetId::Hcal, HcalBarrel); const CaloSubdetectorGeometry *heGeom = caloGeom.getSubdetectorGeometry(DetId::Hcal, HcalEndcap); int statusMask = ((1<<HcalChannelStatus::HcalCellOff) | (1<<HcalChannelStatus::HcalCellMask) | (1<<HcalChannelStatus::HcalCellDead)); // histogram the number of bad depths at each ieta, iphi std::map<std::pair<int,int>, int> good, bads; std::map<std::pair<int,int>, std::pair<int,HcalSubdetector>> minDepths; for (const DetId & i : chanquality.getAllChannels()) { if (i.det()!=DetId::Hcal) continue; // not an hcal cell HcalDetId id = HcalDetId(i); if (id.subdet() != HcalBarrel && id.subdet() != HcalEndcap) continue; // we don't deal with HO and HF here int status = chanquality.getValues(id)->getValue(); auto tower = std::make_pair(id.ieta(), id.iphi()); if (status & statusMask) { bads[tower]++; if (debug_) std::cout << "Channel " << i() << " (subdet " << id.subdet() << ", zside " << id.zside() << ", ieta " << id.ieta() << ", iphi " << id.iphi() << " depth " << id.depth() << " has status " << status << " masked " << (status & statusMask) << std::endl; } else { good[tower]++; } auto & minD = minDepths[tower]; if (minD.second == HcalEmpty || minD.first > id.depth()) { minD.first = id.depth(); minD.second = id.subdet(); } } const float dummyEnergy = 1e-5; // non-zero, but small (even if it shouldn't ever be used) for (const auto & rec : bads) { int ieta = rec.first.first, iphi = rec.first.second, nbad = rec.second, ngood = good[rec.first]; auto minDepth = minDepths[rec.first]; bool barrel = minDepth.second == HcalBarrel; HcalDetId id(minDepth.second, ieta, iphi, minDepth.first); bool isBad = (nbad > 0 && nbad >= ngood); if (debug_) std::cout << "At ieta " << id.ieta() << ", iphi " << id.iphi() << " I have " << nbad << " bad depths, " << ngood << " good depths. First depth is in " << (barrel ? "HB" : "HE") << " depth " << minDepth.first <<"; " << (isBad ? " MARK BAD": " ignore") << std::endl; if (!isBad) continue; PFLayer::Layer layer = (barrel ? PFLayer::HCAL_BARREL1 : PFLayer::HCAL_ENDCAP); // make a PF RecHit std::shared_ptr<const CaloCellGeometry> thisCell = (barrel ? hbGeom : heGeom)->getGeometry(id); const GlobalPoint & pos = thisCell->getPosition(); badAreasRH_.emplace_back( thisCell, id(), layer, dummyEnergy ); // make a PF cluster (but can't add the rechit, as for that I need an edm::Ref) badAreasC_.emplace_back( layer, dummyEnergy, pos.x(), pos.y(), pos.z() ); badAreasC_.back().setFlags(reco::CaloCluster::badHcalMarker); } cacheId_quality_ = iSetup.get<HcalChannelQualityRcd>().cacheIdentifier(); cacheId_geom_ = iSetup.get<CaloGeometryRecord>().cacheIdentifier(); } // ------------ method called to produce the data ------------ void PFBadHcalPseudoClusterProducer::produce(edm::Event& iEvent, const edm::EventSetup& iSetup) { if (enabled_) { if (cacheId_quality_ != iSetup.get<HcalChannelQualityRcd>().cacheIdentifier() || cacheId_geom_ != iSetup.get<CaloGeometryRecord>().cacheIdentifier()) { init(iSetup); } } auto outRH = std::make_unique<std::vector<reco::PFRecHit>>(badAreasRH_); auto rhHandle = iEvent.put(std::move(outRH), "hits"); auto outC = std::make_unique<std::vector<reco::PFCluster>>(badAreasC_); // now we go set references for (unsigned int i = 0, n = rhHandle->size(); i < n; ++i) { (*outC)[i].addRecHitFraction( reco::PFRecHitFraction(reco::PFRecHitRef(rhHandle,i), 1.0) ); } iEvent.put(std::move(outC)); } void PFBadHcalPseudoClusterProducer::fillDescriptions(edm::ConfigurationDescriptions & descriptions) { edm::ParameterSetDescription desc; desc.add<bool>("enable", false)->setComment("activate the module (if false, it doesn't check the DB and produces an empty collection)"); desc.addUntracked<bool>("debug", false); descriptions.add("particleFlowBadHcalPseudoCluster", desc); } //define this as a plug-in DEFINE_FWK_MODULE(PFBadHcalPseudoClusterProducer);
[ "gpetruc@gmail.com" ]
gpetruc@gmail.com
0e5810165184374d7b7f041c55cba361fd594299
36145e7b9d6eed08a0b38eb34404e69dc5c6b6e4
/00.HeaderFiles/LinkedList.h
93e708fec2210c043452178a42eeec5d87ded2b9
[]
no_license
clay-curry/Data_Structure_Library-CPP
3778f11bc8bd8558c31cc6e7ff0e40b8f9af9c15
0515dd39aef9aadf7e355d61fa390caf03c0c1c9
refs/heads/master
2023-05-12T15:46:33.846835
2021-06-06T00:29:39
2021-06-06T00:29:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,034
h
#ifndef __LINKEDLIST__H #define __LINKEDLIST__H #include "AbstractLinkedList.h" template<typename DT> class LinkedList : public AbstractLinkedList<DT> { protected: DT* _info; LinkedList<DT>* _next; void copy(const LinkedList<DT>&); public: LinkedList(); LinkedList(const DT&); LinkedList(const DT&, LinkedList<DT>*); LinkedList(const LinkedList<DT>&); ~LinkedList(); bool isEmpty(); DT& info(); int size(); DT& find(const DT&); DT& infoAt(int); void add(const DT&); void insertAt(const DT&, int); DT remove(); DT remove(const DT&); DT removeAt(int); void operator=(const LinkedList<DT>&); virtual AbstractLinkedList<DT>* next(); }; template<typename DT> void LinkedList<DT>::copy(const LinkedList<DT>& ll) { if (ll._info == NULL) _info = NULL; else { _info = new DT(*(ll._info)); if (_info == NULL) throw LinkedListMemory(); } if (ll._next == NULL) _next = NULL; else { _next = new LinkedList<DT>(*(ll._next)); if (_next == NULL) throw LinkedListMemory(); } } template<typename DT> LinkedList<DT>::LinkedList() : _info(NULL), _next(NULL) {}; template<typename DT> LinkedList<DT>::LinkedList(const DT& info) : LinkedList(info, NULL){} // Constructs a new Node, dynamically (manually) stores 'info' deep-copy, and points to 'next' template<typename DT> LinkedList<DT>::LinkedList(const DT& info, LinkedList<DT>* next) { _info = new DT(info); if (_info == NULL) throw LinkedListMemory(); _next = next; } template<typename DT> LinkedList<DT>::LinkedList(const LinkedList<DT>& ll) { copy(ll); } template<typename DT> LinkedList<DT>::~LinkedList() { if (_info != NULL) { delete _info; _info = NULL; } if (_next != NULL) { delete _next; _next = NULL; } } template<typename DT> bool LinkedList<DT>::isEmpty() { return (_info == NULL); } template<typename DT> DT& LinkedList<DT>::info() { if (isEmpty()) throw LinkedListBounds(); return *_info; } template<typename DT> int LinkedList<DT>::size() { if (_next == NULL) return (_info == NULL) ? 0 : 1; else return 1 + _next->size(); } template<typename DT> DT& LinkedList<DT>::find(const DT& key) { if (isEmpty()) throw LinkedListNotFound(); // if Node does not have _Info if (key == *_info) return *_info; if (_next == NULL) throw LinkedListBounds(); return _next->find(key); } template<typename DT> DT& LinkedList<DT>::infoAt(int position) { if (_info == NULL) throw LinkedListBounds(); if (position == 0) return *_info; if (_next == NULL) throw LinkedListBounds(); return _next->infoAt(position - 1); } template<typename DT> void LinkedList<DT>::add(const DT& newObj) { if (_info == NULL) { _info = new DT(newObj); } else { LinkedList<DT>* newList = new LinkedList<DT>(*_info, _next); // node shares the same 'next' and contains a deep-copy of '*_info' if (newList == NULL) throw LinkedListMemory(); *_info = newObj; _next = newList; } } template<typename DT> void LinkedList<DT>::insertAt(const DT& newObj, int position) { if (position == 0) add(newObj); else { if (_next == NULL) { _next = new LinkedList(newObj); if (_next == NULL) throw LinkedListMemory(); } else { _next->insertAt(newObj, position - 1); } } } template<typename DT> DT LinkedList<DT>::remove() { if (_info == NULL) throw LinkedListBounds(); DT temp = *_info; // temp is a Deep-Copy of _info; it is the return value delete _info; // _info is deallocated // if the is not a '_next': if (_next == NULL) { _info = NULL; } // a node cannot remove itself from the end of the LinkedList because it cannot erase its own address // from the previous node. Therefore if there is no '_next', this node will set '_info' to NULL // and other LinkedLists that point to this node will treat it as NULL else { // if there is a '_next': LinkedList<DT>* oldNext = _next; // oldNext is a deep-copy of _next _info = _next->_info; // this node becomes essentially the same as last node _next = _next->_next; oldNext->_info = NULL; oldNext->_next = NULL; delete oldNext; } return temp; } template<typename DT> DT LinkedList<DT>::remove(const DT& key) { if (isEmpty()) throw LinkedListNotFound(); // if Node does not have _Info if (key == *_info) remove(); if (_next == NULL) throw LinkedListBounds(); return _next->remove(key); } template<typename DT> DT LinkedList<DT>::removeAt(int position) { if (_info == NULL) throw LinkedListBounds(); if (position == 0) return remove(); if (_next == NULL) throw LinkedListBounds(); return _next->removeAt(position - 1); } template<typename DT> void LinkedList<DT>::operator=(const LinkedList<DT>& ll) { if (this != &ll) { if (_info != NULL) delete _info; if (_next != NULL) delete _next; copy(ll); } } template<typename DT> AbstractLinkedList<DT>* LinkedList<DT>::next() { return _next; } #endif // !__LINKEDLIST__H
[ "claycurry34@ou.edu" ]
claycurry34@ou.edu
1e6b8613046b1c5f251cb901a124065316e7678e
6b660cb96baa003de9e18e332b048c0f1fa67ab9
/External/SDK/AD_ThirdPerson_PlayerPirate_Male_Unfit_classes.h
a3282e3c44e89a9f41671b18b814246c9618431f
[]
no_license
zanzo420/zSoT-SDK
1edbff62b3e12695ecf3969537a6d2631a0ff36f
5e581eb0400061f6e5f93b3affd95001f62d4f7c
refs/heads/main
2022-07-30T03:35:51.225374
2021-07-07T01:07:20
2021-07-07T01:07:20
383,634,601
1
0
null
null
null
null
UTF-8
C++
false
false
903
h
#pragma once // Name: SoT, Version: 2.2.0.2 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass AD_ThirdPerson_PlayerPirate_Male_Unfit.AD_ThirdPerson_PlayerPirate_Male_Unfit_C // 0x0000 (FullSize[0x0750] - InheritedSize[0x0750]) class UAD_ThirdPerson_PlayerPirate_Male_Unfit_C : public UAD_ThirdPerson_PlayerPirate_Male_Default_C { public: static UClass* StaticClass() { static auto ptr = UObject::FindClass("BlueprintGeneratedClass AD_ThirdPerson_PlayerPirate_Male_Unfit.AD_ThirdPerson_PlayerPirate_Male_Unfit_C"); return ptr; } void AfterRead(); void BeforeDelete(); }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "Massimo.linker@gmail.com" ]
Massimo.linker@gmail.com
ac124ff38172d1dd88c38fa0e3820500679591ee
66eb517787f2fb4421bc4f6742d4ba52e56d614d
/code/engine/gkSystem/source/gkSystemProfiler.cpp
d897ea65d052243b20424bbcc4e752d8dc604aa4
[]
no_license
tylearymf/gkEngine
56b5722c92f70225263d6a8606491b840b4ef99d
207c64943a415633b0315a1f556f32ba133d1c56
refs/heads/master
2021-01-18T09:29:58.391308
2016-03-15T10:57:55
2016-03-15T10:57:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
31,995
cpp
#include "gkSystemStableHeader.h" #include "gkSystemProfiler.h" #include "IRenderer.h" #include "IAuxRenderer.h" #include "ICamera.h" #include "IResourceManager.h" #include "IMaterial.h" #include "ITask.h" #include "IMesh.h" #define MAKE_SWITCH( x ) \ gkCVar* var = gEnv->pCVManager->getCVar( _T( #x ));\ if( var && var->getInt() == 0 )\ {\ buttonBgColor = ColorB(0,0,0,150);\ _stprintf(buffer, (_T(#x)_T(" 1")));\ }\ else\ {\ buttonBgColor = ColorB(40,127,200,150);\ _stprintf(buffer, (_T(#x)_T(" 0")));\ } //----------------------------------------------------------------------- gkSystemProfiler::gkSystemProfiler( void ) { m_uDPCurrentFrame = 0; m_fFrameTimer = 0; m_fFrameTimeRendering = 0; m_profilerFont1 = NULL; m_profilerFont = NULL; m_profilerFPSFont = NULL; m_titleFont = NULL; m_subtitleFont = NULL; m_fFrameTimerFWD =0; m_fFrameTimeRenderingFWD =0; m_fFrameTimerDFD =0; m_fFrameTimeRenderingDFD =0; m_fFrameTimerCMT =0; m_fFrameTimeRenderingCMT =0; m_uFrameCounter = 0; m_CurveRecorder = 0; for (int i=0; i < 1000; ++i) { m_fFrameGPUTimeCurve[i] = 0; m_fFrameTimeRenderingCurve[i] = 0; m_fFramwTimeCurve[i] = 0; } } //----------------------------------------------------------------------- void gkSystemProfiler::setCurrFrameDP( uint32 frameDP ) { m_uDPCurrentFrame = frameDP; } void gkSystemProfiler::setCurrFrameShadowDP( uint32 frameShadowDP ) { m_uShadowDPCurrentFrame = frameShadowDP; } //----------------------------------------------------------------------- void gkSystemProfiler::setStartRendering() { m_fFrameTimer = gEnv->pTimer->GetAsyncCurTime(); } //----------------------------------------------------------------------- void gkSystemProfiler::setEndRendering() { m_fFrameTimeRendering = gEnv->pTimer->GetAsyncCurTime() - m_fFrameTimer; m_uFrameCounter++; m_uFrameCounter %= 1000000; } //----------------------------------------------------------------------- void gkSystemProfiler::setStartWaiting() { m_fFrameTimerFWD = gEnv->pTimer->GetAsyncCurTime(); } //----------------------------------------------------------------------- void gkSystemProfiler::setEndWaiting() { m_fFrameTimeRenderingFWD = gEnv->pTimer->GetAsyncCurTime() - m_fFrameTimerFWD; } //----------------------------------------------------------------------- void gkSystemProfiler::setStartSceneManage() { m_fFrameTimerDFD = gEnv->pTimer->GetAsyncCurTime(); } //----------------------------------------------------------------------- void gkSystemProfiler::setEndSceneManage() { m_fFrameTimeRenderingDFD = gEnv->pTimer->GetAsyncCurTime() - m_fFrameTimerDFD; } //----------------------------------------------------------------------- void gkSystemProfiler::setStartCommit() { m_fFrameTimerCMT = gEnv->pTimer->GetAsyncCurTime(); } //----------------------------------------------------------------------- void gkSystemProfiler::setEndCommit() { m_fFrameTimeRenderingCMT = gEnv->pTimer->GetAsyncCurTime() - m_fFrameTimerCMT; } void gkSystemProfiler::displayInfo() { if (!m_profilerFont) { m_profilerFont = gEnv->pFont->CreateFont( _T("engine/fonts/msyh.ttf"), 12, GKFONT_OUTLINE_0PX ); } if (!m_profilerFont1) { m_profilerFont1 = gEnv->pFont->CreateFont( _T("engine/fonts/msyh.ttf"), 13, GKFONT_OUTLINE_0PX, _T("engine/fonts/segoeuil.ttf") ); } if (!m_profilerFPSFont) { m_profilerFPSFont = gEnv->pFont->CreateFont( _T("engine/fonts/FSEX300.ttf"),50, GKFONT_OUTLINE_0PX ); } if (!m_titleFont) { m_titleFont = gEnv->pFont->CreateFont( _T("engine/fonts/msyh.ttf"), 35, GKFONT_OUTLINE_0PX, _T("engine/fonts/segoeuil.ttf") ); } if(!m_subtitleFont) { m_subtitleFont = gEnv->pFont->CreateFont( _T("engine/fonts/msyh.ttf"), 20, GKFONT_OUTLINE_0PX, _T("engine/fonts/segoeuil.ttf") ); } profilerGUI(); update(); } void gkSystemProfiler::profilerGUI() { TCHAR buffer[MAX_PATH]; _stprintf_s(buffer, MAX_PATH, _T("%2.0f"), gEnv->pTimer->GetSmoothFrameRate()); static bool showFeature = false; static int highlightFeature = -1; ColorB buttonTextColor(180,180,180,255); ColorB buttonTextColorPressed(255,255,255,255); ColorB buttonBgColorHighlight(150,15,18,255); ColorB buttonBgColor(0,0,0,150); ColorB buttonBgColorPressed(0,0,0,250); ColorB greencol(114, 243, 0, 255); ColorB whitecol(255, 255, 255, 255); ColorB blackButton(0,0,0,120); int leftStart = 32; int rightStart = gEnv->pRenderer->GetScreenWidth(); int bottomstart = gEnv->pRenderer->GetScreenHeight(); static bool showStats = true; int topBarHeight = 32; int topBarSegment = 100; //gkLogMessage( _T("Wait: %.2fms"), getFrameTimeRenderingWNT() * 1000.f); //gEnv->pInGUI->gkGUIButton( buffer, Vec2(rightStart - 80, bottomstart - 40), 80, 40, greencol, blackButton, m_profilerFPSFont ); //return; if (g_pSystemCVars->sys_displayStats) { qinfo(80); ; } enum { tab_none, tab_profiler, tab_feature, tab_dyntex, tab_resourcemng, tab_about, }; static int currentTab = tab_none; switch( currentTab ) { case tab_feature: features(); break; case tab_about: about(); break; case tab_resourcemng: profileResource(); break; case tab_profiler: benchmark(); break; case tab_none: break; } static gkTexturePtr tex = gEnv->pSystem->getTextureMngPtr()->loadSync( _T("Engine/Assets/Textures/default/logo30x30.tga"), _T("internal") ); gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2(0,0), Vec2(32, 32), buttonBgColor ); gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2(0,0), Vec2(32, 32), whitecol, tex.getPointer() ); { static bool buttonSwitch = false; if ( gEnv->pInGUI->gkGUIButton( _T("Qinfo"), Vec2(leftStart, 0), topBarSegment, topBarHeight, buttonSwitch ? buttonTextColorPressed : buttonTextColor , buttonSwitch ? buttonBgColorPressed : buttonBgColor ) ) { buttonSwitch = !buttonSwitch; g_pSystemCVars->sys_displayStats = buttonSwitch; } leftStart += topBarSegment; } { if ( gEnv->pInGUI->gkGUIButton( _T("Profiler"), Vec2(leftStart, 0), topBarSegment, topBarHeight, currentTab == tab_profiler ? buttonTextColorPressed : buttonTextColor , currentTab == tab_profiler ? buttonBgColorPressed : buttonBgColor ) ) { if (currentTab == tab_profiler) { currentTab = tab_none; } else { currentTab = tab_profiler; } } leftStart += topBarSegment; } { if ( gEnv->pInGUI->gkGUIButton( _T("Feature"), Vec2(leftStart, 0), topBarSegment, topBarHeight, currentTab == tab_feature ? buttonTextColorPressed : buttonTextColor , currentTab == tab_feature ? buttonBgColorPressed : buttonBgColor ) ) { if (currentTab == tab_feature) { currentTab = tab_none; } else { currentTab = tab_feature; } } leftStart += topBarSegment; } { if ( gEnv->pInGUI->gkGUIButton( _T("Resource"), Vec2(leftStart, 0), topBarSegment, topBarHeight, currentTab == tab_resourcemng ? buttonTextColorPressed : buttonTextColor , currentTab == tab_resourcemng ? buttonBgColorPressed : buttonBgColor ) ) { if (currentTab == tab_resourcemng) { currentTab = tab_none; } else { currentTab = tab_resourcemng; } } leftStart += topBarSegment; } { if ( gEnv->pInGUI->gkGUIButton( _T("About"), Vec2(leftStart, 0), topBarSegment, topBarHeight, currentTab == tab_about ? buttonTextColorPressed : buttonTextColor , currentTab == tab_about ? buttonBgColorPressed : buttonBgColor ) ) { if (currentTab == tab_about) { currentTab = tab_none; } else { currentTab = tab_about; } } leftStart += topBarSegment; } { if ( gEnv->pInGUI->gkGUIButton( _T("TEST"), Vec2(leftStart, 0), topBarSegment, topBarHeight, buttonTextColor , buttonBgColor ) ) { gEnv->pRenderer->SavePositionCubeMap( Vec3(0,0,1.2), _T("conf_test") ); } leftStart += topBarSegment; } { gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2(leftStart, 0), Vec2(rightStart - leftStart, topBarHeight), buttonBgColor ); } } uint32 gkSystemProfiler::getElementCount( EProfileElement element ) { return m_profileElements[element].m_count; } void gkSystemProfiler::increaseElementCount( EProfileElement element, int count /*= 1 */ ) { m_profileElements[element].m_count += count; } void gkSystemProfiler::update() { for (uint32 i=0; i < ePe_Count; ++i) { m_profileElements[i].Clear(); } } #define RES_LINE_NORMAL 30 void gkSystemProfiler::profileResource() { //int& leftStart, int& bottomstart, ColorB& buttonTextColor, ColorB& buttonBgColor, int startY = 100; ColorB textColor(255,255,255,255); ColorB textColorHighlight(40,127,200,255); ColorB buttonTextColor(180,180,180,255); ColorB buttonTextColorPressed(255,255,255,255); ColorB buttonBgColorHighlight(40,127,200,150); ColorB buttonBgColor(0,0,0,150); ColorB buttonBgColorPressed(0,0,0,250); static bool bShowResInfo = false; static uint32 showIndex = 0; int tab_height = gEnv->pRenderer->GetScreenHeight() - 120; gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2(0, 0), Vec2(gEnv->pRenderer->GetScreenWidth(), gEnv->pRenderer->GetScreenHeight()), buttonBgColor ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T("RESOURCE MANAGER"), 50, 50, m_titleFont ); { // draw resource gui & info static uint32 tabIndex = 0; uint32 newIndex = gEnv->pInGUI->gkGUITab( _T("DYNTEX|TEXTURE|MESH|SHADER|MATERIAL"), Vec2(10, startY), gEnv->pRenderer->GetScreenWidth() - 20, tab_height, buttonBgColorHighlight, ColorB(0,0,0,225), tabIndex ); if ( newIndex != -1 ) { tabIndex = newIndex; showIndex = 0; } const gkResourceMap* map = gEnv->pSystem->getMaterialMngPtr()->getResourceMapPtr(); switch( tabIndex ) { case 0: map = gEnv->pSystem->getMaterialMngPtr()->getResourceMapPtr(); break; case 1: map = gEnv->pSystem->getShaderMngPtr()->getResourceMapPtr(); break; case 2: map = gEnv->pSystem->getMeshMngPtr()->getResourceMapPtr(); break; case 3: map = gEnv->pSystem->getTextureMngPtr()->getResourceMapPtr(); break; case 4: map = gEnv->pSystem->getTextureMngPtr()->getResourceMapPtr(); break; } // list all resource gkResourceMap::const_iterator it = map->begin(); typedef std::list<gkResourcePtr> Resources; Resources collections; // collect once for (; it != map->end(); ++it) { collections.push_back( it->second ); } uint32 index = 0; int tableInfoY = startY + 40; int tableY = startY + 60; // filter { Resources::iterator it = collections.begin(); for (; it != collections.end(); ) { if ( (*it)->getType() == eRT_Texture ) { ITexture* tex = static_cast<ITexture*>( (*it).getPointer() ); if ((tabIndex == 3 && tex->dynamic()) || (tabIndex == 4 && !tex->dynamic()) || !tex->isLoaded()) { it = collections.erase(it); continue; } } ++it; } showIndex = showIndex >= collections.size() ? (collections.size() - 1) : showIndex; } int lineCount = (tab_height - 60) / 15; int tabX[6]; tabX[0] = 15; tabX[1] = gEnv->pRenderer->GetScreenWidth() / 2 - 40; tabX[2] = gEnv->pRenderer->GetScreenWidth() / 2 - 35; tabX[3] = gEnv->pRenderer->GetScreenWidth() / 2 + 35; tabX[4] = gEnv->pRenderer->GetScreenWidth() / 2 + 40; tabX[5] = gEnv->pRenderer->GetScreenWidth() - 15; // draw 25 lines for (int i=0; i < lineCount; ++i) { gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2(tabX[0], tableY + i * 15), Vec2( tabX[1] - tabX[0], 15), i % 2 == 0 ? ColorB(90,90,90,128) : ColorB(60,60,60,128)); } // draw table info TCHAR basicinfo[255]; _stprintf(basicinfo, _T("%d / %d"), 1, collections.size() ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText(basicinfo , tabX[1] - 80, tableInfoY, m_profilerFont, ColorB(255,255,255,255) ); _stprintf(basicinfo, _T(" id | ref | usage | name") ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText(basicinfo , 25, tableInfoY, m_profilerFont, ColorB(255,255,255,255) ); // list 25 int beginIndex = 0; if (showIndex > lineCount - 1) { beginIndex = showIndex - lineCount + 1; } IResource* selectedRes = NULL; { Resources::iterator it = collections.begin(); for (int i=0; it != collections.end(); ++it, ++i) { int tableRealY = (i - beginIndex); if ( tableRealY >= lineCount) { break; } bool selected = (showIndex == i); if(selected) { selectedRes = it->getPointer(); } if (tableRealY >= 0) { TCHAR listStr[255]; _stprintf(listStr, _T("#%.3d | %.3d | %.2fmb | %s"), i, it->useCount() - 3, ((float)(*it)->getMemUsage()) / 1024.f / 1024.f, (*it)->getName().c_str() ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( listStr, tabX[0] + 10, tableY + tableRealY * 15, m_profilerFont, selected ? textColorHighlight : textColor ); } } } if( gEnv->pInGUI->gkGUIButton( _T("UP"), Vec2(tabX[2], tableY), tabX[3] - tabX[2], 50, ColorB(255,255,255,255), ColorB(90,90,90,128) ) ) { showIndex--; } if( gEnv->pInGUI->gkGUIButton( _T("DOWN"), Vec2(tabX[2], tableY + 51), tabX[3] - tabX[2], 50, ColorB(255,255,255,255), ColorB(90,90,90,128) ) ) { showIndex++; } // selecte item if (selectedRes) { eResourceType type = selectedRes->getType(); switch( type) { case eRT_Texture: { ITexture* tex = static_cast<ITexture*>(selectedRes); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( tex->getShortName().c_str(), gEnv->pRenderer->GetScreenWidth() / 2 + 50, startY + 50, m_titleFont, ColorB(150,150,150,255) ); TCHAR buffer[255]; _stprintf(buffer, _T("%d x %d | %s"), tex->getWidth(), tex->getHeight(), tex->getAttr(_T("format")).c_str() ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( buffer, gEnv->pRenderer->GetScreenWidth() / 2 + 50, startY + 90, m_subtitleFont, ColorB(80,80,80,255) ); float aspect = tex->getWidth() / (float)(tex->getHeight()); int drawWidth = gEnv->pRenderer->GetScreenWidth() / 2 - 100; int drawHeight = drawWidth / aspect; int heightLimit = gEnv->pRenderer->GetScreenHeight() - 260; if (drawHeight > heightLimit) { drawHeight = heightLimit; drawWidth = drawHeight * aspect; } gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2(gEnv->pRenderer->GetScreenWidth() / 2 + 50, startY + 130), Vec2(drawWidth, drawHeight), ColorB(255,255,255,255), tex ); } break; case eRT_Mesh: { IMesh* mesh = static_cast<IMesh*>(selectedRes); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( mesh->getShortName().c_str(), gEnv->pRenderer->GetScreenWidth() / 2 + 50, startY + 50, m_titleFont, ColorB(150,150,150,255) ); TCHAR buffer[255]; _stprintf(buffer, _T("Verts: %u, Tris: %u, Subset: %u"), mesh->getVertexBuffer()->elementCount, mesh->getIndexBuffer()->getSize(), mesh->getSubsetCount() ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( buffer, gEnv->pRenderer->GetScreenWidth() / 2 + 50, startY + 90, m_subtitleFont, ColorB(80,80,80,255) ); } break; } } } } void gkSystemProfiler::qinfo( int boxheight ) { int leftstart = 5; uint32 width = gEnv->pRenderer->GetScreenWidth(); uint32 height = gEnv->pRenderer->GetScreenHeight(); ColorB textColor(255,255,255,255); ColorB buttonTextColor(180,180,180,255); ColorB buttonTextColorPressed(255,255,255,255); ColorB buttonBgColorHighlight(40,127,200,255); ColorB buttonBgColor(0,0,0,150); ColorB buttonBgColorPressed(0,0,0,250); //gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2(0, height - boxheight), Vec2(width, boxheight), buttonBgColor ); TCHAR buffer[MAX_PATH]; _stprintf_s(buffer, MAX_PATH, _T("%03.0f"), gEnv->pTimer->GetSmoothFrameRate()); uint32 poxx = width - 5; uint32 poxy = 35; gEnv->pRenderer->getAuxRenderer()->AuxRenderText( buffer, 4, poxy - 8, m_profilerFPSFont, buttonBgColor ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( buffer, 2, poxy - 10, m_profilerFPSFont, buttonBgColorHighlight ); uint32 texth = 15; bool bMTR = true; ICamera* cam = gEnv->p3DEngine->getMainCamera(); if (cam) { #ifdef _DEBUG const TCHAR* devVersion = _T("DEBUG"); #elif _RELEASE const TCHAR* devVersion = _T("RELEASE"); #else const TCHAR* devVersion = _T("PROFILE"); #endif ERendererAPI rendererType = gEnv->pRenderer->GetRendererAPI(); TCHAR renderAPI[100]; switch(rendererType) { case ERdAPI_D3D9: _tcscpy(renderAPI, _T("RendererD3D9")); break; case ERdAPI_OPENGLES: _tcscpy(renderAPI, _T("RendererGLES2")); break; case ERdAPI_OPENGL: _tcscpy(renderAPI, _T("RendererGL320")); break; default: _tcscpy(renderAPI, _T("RendererProto")); break; } _stprintf_s(buffer, MAX_PATH, _T("%s | %s | %d x %d | Cam: x=%0.1f y=%0.1f z=%0.1f | Zn:%0.2f | Zf:%0.2f | Fov:%0.1f"), renderAPI, devVersion, gEnv->pRenderer->GetScreenWidth(), gEnv->pRenderer->GetScreenHeight(), cam->getDerivedPosition().x, cam->getDerivedPosition().y, cam->getDerivedPosition().z, cam->getNearPlane(), cam->getFarPlane(), RAD2DEG(cam->getFOVy())); } else { _stprintf_s(buffer, MAX_PATH, _T("gkENGINE v1.0")); } gEnv->pRenderer->getAuxRenderer()->AuxRenderText( buffer, poxx, poxy, m_profilerFont, textColor, eFA_Right | eFA_Top, 1 ); poxy += texth; _stprintf_s(buffer, MAX_PATH, _T("Fps: %6.2f(%6.2f) Time: %5.2f ms WAIT: %5.2f ms CMT: %5.2f ms SCEMNG: %5.2f ms"), /*gEnv->pTimer->GetFrameRate() >= 100.0f ? _T("") : _T(" "),*/ gEnv->pTimer->GetFrameRate(), /*gEnv->pTimer->GetSmoothFrameRate() >= 100.0f ? _T("") : _T(" "),*/ gEnv->pTimer->GetSmoothFrameRate(), gEnv->pTimer->GetFrameTime() * 1000, bMTR ? getFrameTimeRenderingWNT() * 1000 : 0, getFrameTimeRenderingCMT() * 1000, getFrameTimeRenderingMNG() * 1000 ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( buffer, poxx, poxy, m_profilerFont, textColor, eFA_Right | eFA_Top , 1 ); poxy += texth; _stprintf_s(buffer, MAX_PATH, _T("Total DP(Shadow DP): %d(%d) | Total Tri(Shadow): %d(%d)"), getElementCount(ePe_Batch_Total), getElementCount(ePe_Batch_Shadow), getElementCount(ePe_Triangle_Total), getElementCount(ePe_Triangle_Shadow)); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( buffer, poxx, poxy, m_profilerFont, textColor, eFA_Right | eFA_Top , 1 ); poxy += texth; gkCVar* hdr = gEnv->pCVManager->getCVar( _T("r_HDRRendering") ); gkCVar* msaa = gEnv->pCVManager->getCVar( _T("r_PostMsaa") ); gkCVar* shadow = gEnv->pCVManager->getCVar( _T("r_Shadow") ); // _stprintf_s(buffer, MAX_PATH, _T("%s | HDR %s | Shadows %s | sRGB | MSAA %s"), gEnv->pSystemInfo->gpuDesc, (hdr && hdr->getInt()) ? _T("on") : _T("off"), _T("on"), (msaa && msaa->getInt()) ? _T("on") : _T("off")); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( buffer, poxx, poxy, m_profilerFont, textColor, eFA_Right | eFA_Top , 1 ); poxy += texth; // task sTaskStatus status = gEnv->pCommonTaskDispatcher->QueryTaskStatus(); _stprintf_s(buffer, MAX_PATH, _T("Task(Total|T0|T01|T2|T3): %d | %d | %d | %d | %d"), status.taskTotal, status.taskNum[0], status.taskNum[1], status.taskNum[2], status.taskNum[3] ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( buffer, poxx, poxy, m_profilerFont, textColor, eFA_Right | eFA_Top , 1 ); poxy += texth; } #if defined( OS_IOS ) && !defined( OS_APPLE ) #import <UIKit/UIKit.h> #endif #if defined( OS_APPLE ) #import <AppKit/AppKit.h> #endif void gkSystemProfiler::about() { TCHAR buffer[250]; TCHAR bufferT[250]; ColorB textColor(255,255,255,255); ColorB textColorHighlight(40,127,200,255); ColorB buttonTextColor(180,180,180,255); ColorB buttonBgColor(0,0,0,150); ColorB textColorHighlight1(0,0,0,255); ColorB buttonBgColor1(255,255,255,180); int buttonWidth = 200; int buttonHeight = 120; int buttonLeftStart = 50; int buttonLeft = buttonLeftStart; int buttonTop = 100; gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2(0, 0), Vec2(gEnv->pRenderer->GetScreenWidth(), gEnv->pRenderer->GetScreenHeight()), buttonBgColor ); gkTexturePtr tex = gEnv->pSystem->getTextureMngPtr()->loadSync( _T("Engine/Assets/Textures/default/logobanner.tga"), _T("internal") ); int width = gEnv->pRenderer->GetScreenWidth() / 2; int height = width / 4; gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2(buttonLeftStart,100), Vec2(512, 128), buttonBgColor1, tex.getPointer() ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T("ABOUT"), buttonLeftStart, 50, m_titleFont ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T("gkENGINE是一个开源跨平台游戏引擎,致力于提供尖端的实时渲染技术和惊人的效率。\n") _T("gkENGINE is a cross-platform game engine with cutting-edge real-time rendering tech & fantastic speed.\n") _T("\n") _T("联系作者: kaimingyi@163.com\n") _T("contact me: kaimingyi@163.com\n") _T("\n") _T("Github项目主页: | Github Website: \n"), buttonLeftStart, 300, m_subtitleFont ); if ( gEnv->pInGUI->gkGUIButton( _T("https://gkengine.codeplex.com >>"), Vec2(buttonLeftStart, 450), 350, 80, textColorHighlight1, buttonBgColor1, m_subtitleFont ) ) { #ifdef OS_WIN32 system("start https://github.com/gameKnife/gkEngine"); #endif #ifdef OS_APPLE [[NSWorkspace sharedWorkspace] openURL: [NSURL URLWithString:@"https://github.com/gameKnife/gkEngine"]]; #elif defined( OS_IOS ) [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://github.com/gameKnife/gkEngine"]]; #else #endif } } void gkSystemProfiler::features() { TCHAR buffer[250]; TCHAR bufferT[250]; ColorB textColor(255,255,255,255); ColorB buttonBgColor(0,0,0,150); int buttonWidth = 200; int buttonHeight = 120; int buttonLeftStart = 50; int buttonLeft = buttonLeftStart; int buttonTop = 100; gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2(0, 0), Vec2(gEnv->pRenderer->GetScreenWidth(), gEnv->pRenderer->GetScreenHeight()), buttonBgColor ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T("RENDERING FEATURES"), buttonLeftStart, 50, m_titleFont ); for (uint32 i=0; i < 6; ++i) { buttonBgColor = ColorB(0,0,0,150); switch(i) { case 0: { MAKE_SWITCH( r_hdrrendering ); _stprintf(bufferT, _T("HDR PROCESS"), i); } break; case 1: { MAKE_SWITCH( r_postmsaa ); _stprintf(bufferT, _T("POST MSAA"), i); } break; case 2: { MAKE_SWITCH( r_dof ); _stprintf(bufferT, _T("DEPTH OF FIELD"), i); } break; case 3: { MAKE_SWITCH( r_shadow ); _stprintf(bufferT, _T("SHADOW"), i); } break; case 4: { MAKE_SWITCH( r_SSAO ); _stprintf(bufferT, _T("SSAO"), i); } break; case 5: { MAKE_SWITCH( r_Fog ); _stprintf(bufferT, _T("FOG"), i); } break; } ///draw button if( gEnv->pInGUI->gkGUIButton( bufferT, Vec2(buttonLeft, buttonTop), buttonWidth, buttonHeight, textColor, buttonBgColor, m_subtitleFont ) ) { gEnv->pCVManager->executeCommand(buffer); } buttonLeft += buttonWidth + 2; if (buttonLeft >= gEnv->pRenderer->GetScreenWidth() - buttonLeftStart) { buttonLeft = buttonLeftStart; buttonTop += buttonHeight + 2; } } } #define POST_GPU_ITME( X ) {\ TCHAR text[MAX_PATH];\ _stprintf( text, _T(#X)_T(": %.2fms"), getGpuTimerElement( _T(#X) ) );\ gEnv->pRenderer->getAuxRenderer()->AuxRenderText( text, start_pos_x, start_pos_y+=20, m_profilerFont );\ total_sum+=getGpuTimerElement( _T(#X) );\ } #define POST_ELEMENT_ITME( X ) {\ TCHAR text[MAX_PATH];\ _stprintf( text, _T(#X)_T(": %.2fms"), getElementTime( X ) * 1000.0f );\ gEnv->pRenderer->getAuxRenderer()->AuxRenderText( text, start_pos_x, start_pos_y+=20, m_profilerFont );\ } #define DISP_GPU_TIME( X ) {\ TCHAR text[MAX_PATH];\ _stprintf( text, _T("%.2fms"), getGpuTimerElement( _T(#X) ) );\ float length = getGpuTimerElement( _T(#X) ) / total_sum;\ ColorB thisColor;\ thisColor.fromHSV( length, 0.5f, 0.7f );\ thisColor.a = 180;\ int bar_len = whole_len * length;\ gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2( start_bar_x, bar_y), Vec2( bar_len, 85 ), thisColor );\ if(bar_len>1)\ {\ gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T(#X), start_bar_x+5, disp_count % 2 == 0 ? bar_y + 10 : bar_y + 55, m_profilerFont );\ gEnv->pRenderer->getAuxRenderer()->AuxRenderText( text, start_bar_x+5, disp_count % 2 == 0 ? bar_y + 25 : bar_y + 70, m_profilerFont );\ }\ start_bar_x += (bar_len);\ disp_count++;\ } void gkSystemProfiler::benchmark() { gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T("INTEGRATE PROFILER"), 50, 50, m_titleFont ); int whole_screen_box_y = 0; int whole_screen_height = 350; whole_screen_box_y = gEnv->pRenderer->GetScreenHeight() - whole_screen_height - 10; gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2( 10, whole_screen_box_y), Vec2( gEnv->pRenderer->GetScreenWidth() - 20, whole_screen_height), ColorB(0,0,0,100) ); ColorB textColor(255,255,255,255); ColorB buttonBgColor(0,0,0,150); // + / - pixel density int button_width = 50; if( gEnv->pInGUI->gkGUIButton( _T("-"), Vec2(0, gEnv->pRenderer->GetScreenHeight() - button_width), button_width, button_width, textColor, buttonBgColor, m_subtitleFont ) ) { float ratio = gEnv->pRenderer->GetPixelReSize(); gEnv->pRenderer->SetPixelReSize( ratio * 0.5f ); } if( gEnv->pInGUI->gkGUIButton( _T("+"), Vec2(button_width + 5, gEnv->pRenderer->GetScreenHeight() - button_width), button_width, button_width, textColor, buttonBgColor, m_subtitleFont ) ) { float ratio = gEnv->pRenderer->GetPixelReSize(); gEnv->pRenderer->SetPixelReSize( ratio * 2.0f ); } // DRAW TIME BAR int start_pos_y = whole_screen_box_y - 230; int start_pos_x = 50; float total_sum = 0; //POST_GPU_ITME( GPUTime ) POST_GPU_ITME( ReflectGen ) POST_GPU_ITME( ShadowMapGen ) POST_GPU_ITME( Zpass ) POST_GPU_ITME( SSAO ) POST_GPU_ITME( ShadowMaskGen ) POST_GPU_ITME( Deferred Lighting ) POST_GPU_ITME( Opaque ) POST_GPU_ITME( Transparent ) POST_GPU_ITME( HDR ) POST_GPU_ITME( PostProcess ) start_pos_x = 200; start_pos_y = whole_screen_box_y - 230; POST_ELEMENT_ITME( ePe_3DEngine_Cost ) POST_ELEMENT_ITME( ePe_Font_Cost ) POST_ELEMENT_ITME( ePe_Physic_Cost ) POST_ELEMENT_ITME( ePe_TrackBus_Cost ) POST_ELEMENT_ITME( ePe_ThreadSync_Cost ) POST_ELEMENT_ITME( ePe_SThread_Cost ) POST_ELEMENT_ITME( ePe_MThread_Cost ) POST_ELEMENT_ITME( ePe_MT_Part1 ) POST_ELEMENT_ITME( ePe_MT_Part2 ) POST_ELEMENT_ITME( ePe_MT_Part3 ) //whole_screen_box_y int whole_len = gEnv->pRenderer->GetScreenWidth() - 100; int start_bar_x = 50; int disp_count = 0; int bar_y = whole_screen_box_y + 60; gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T("GPU TIME MEASURE"), 50, whole_screen_box_y + 20, m_subtitleFont ); gkCVar* pgpu = gEnv->pCVManager->getCVar(_T("r_profilegpu")); if ( pgpu && pgpu->getInt() != 0 ) { DISP_GPU_TIME( ReflectGen ) DISP_GPU_TIME( ShadowMapGen ) DISP_GPU_TIME( Zpass ) DISP_GPU_TIME( SSAO ) DISP_GPU_TIME( ShadowMaskGen ) DISP_GPU_TIME( Deferred Lighting ) DISP_GPU_TIME( Opaque ) DISP_GPU_TIME( Transparent ) DISP_GPU_TIME( HDR ) DISP_GPU_TIME( PostProcess ) } else { gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T("ProfileGpu is not enable, please set r_profilegpu = 1."), 50, whole_screen_box_y + 50, m_profilerFont ); } gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T("FRAME TIME CURVE"), 50, whole_screen_box_y + 160, m_subtitleFont ); // DRAW FRAME TIME CURVE gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T("0ms"), 10, whole_screen_box_y + 285, m_profilerFont ); gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2( 10, whole_screen_box_y + 300 ), Vec2( gEnv->pRenderer->GetScreenWidth() - 20, 1), ColorB(255,255,255,100) ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T("25ms"), 10, whole_screen_box_y + 235, m_profilerFont ); gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2( 10, whole_screen_box_y + 250 ), Vec2( gEnv->pRenderer->GetScreenWidth() - 20, 1), ColorB(255,255,255,100) ); gEnv->pRenderer->getAuxRenderer()->AuxRenderText( _T("50ms"), 10, whole_screen_box_y + 185, m_profilerFont ); gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenBox( Vec2( 10, whole_screen_box_y + 200 ), Vec2( gEnv->pRenderer->GetScreenWidth() - 20, 1), ColorB(255,255,255,100) ); { float* datasrc = m_fFrameTimeRenderingCurve; ColorB lineColor(255,200,200,255); DrawProfileCurve(whole_screen_box_y, datasrc, lineColor); } { float* datasrc = m_fFramwTimeCurve + 1; ColorB lineColor(200,200,255,255); DrawProfileCurve(whole_screen_box_y, datasrc, lineColor); } } float gkSystemProfiler::getElementTime(EProfileElement element) { return m_profileElements[element].m_elpasedTime; } void gkSystemProfiler::setElementTime(EProfileElement element, float elapsedTime) { m_profileElements[element].m_elpasedTime = elapsedTime; } void gkSystemProfiler::setGpuTimerElement(const TCHAR* elementName, float elpasedTime) { std::map<gkStdString, float>::iterator it = m_gpuTimerElements.find( elementName ); if ( it != m_gpuTimerElements.end() ) { it->second = elpasedTime; } else { m_gpuTimerElements.insert( std::map<gkStdString, float>::value_type( elementName, elpasedTime ) ); } } float gkSystemProfiler::getGpuTimerElement(const TCHAR* elementName) { float ret = 0; std::map<gkStdString, float>::iterator it = m_gpuTimerElements.find( elementName ); if ( it != m_gpuTimerElements.end() ) { ret = it->second; } return ret; } void gkSystemProfiler::DrawProfileCurve(int whole_screen_box_y, float* datasrc, ColorB lineColor) { float step = (gEnv->pRenderer->GetScreenWidth() - 100) / 200.f; for (int i=0; i<200; ++i) { float height_now = datasrc[((m_CurveRecorder - i - 1) + 1000) % 1000]; float height_next = datasrc[((m_CurveRecorder - i - 2) + 1000) % 1000]; float ratio_now = ( height_now * 1000.f) / 50.0f; float ratio_next = ( height_next * 1000.f) / 50.0f; ratio_now = clamp(ratio_now, 0.0f, 1.0f); ratio_next = clamp(ratio_next, 0.0f, 1.0f); gEnv->pRenderer->getAuxRenderer()->AuxRenderScreenLine( Vec2(50 + i * step, whole_screen_box_y + 300 - ratio_now * 100), Vec2(50 + (i + 1) * step, whole_screen_box_y + 300 - ratio_next * 100), lineColor ); } } void gkSystemProfiler::setFrameBegin() { } void gkSystemProfiler::setFrameEnd() { m_fFrameTimeRenderingCurve[m_CurveRecorder] = m_fFrameTimeRendering; m_fFramwTimeCurve[m_CurveRecorder] = gEnv->pTimer->GetRealFrameTime(); m_CurveRecorder++; m_CurveRecorder %= 1000; } void gkSystemProfiler::setElementStart(EProfileElement element) { m_profileElements[element].m_startTime = gEnv->pTimer->GetAsyncCurTime(); } void gkSystemProfiler::setElementEnd(EProfileElement element) { m_profileElements[element].m_elpasedTime = gEnv->pTimer->GetAsyncCurTime() - m_profileElements[element].m_startTime; }
[ "kaimingyi@163.com" ]
kaimingyi@163.com
979dcffc84c7e7aa088e792fd74867500bef2ee2
4c8e8e40700a723bd1e1bdfeb663bc9c2a10734c
/gengine/Texture2D.cpp
e1f3fb9755b9119caa61626842363784644185be
[ "MIT" ]
permissive
andrewpham/Genesis-Engine
e160099fbfa64c0a13b60db99397ed58f8e2daf6
7e3f35fbb21ffb3820b4ea39c030f0db5eb8f8d5
refs/heads/master
2021-01-21T04:44:00.822425
2019-05-31T18:18:14
2019-05-31T18:18:14
39,921,173
6
0
null
null
null
null
UTF-8
C++
false
false
1,446
cpp
/******************************************************************* ** This code is part of Breakout. ** ** Breakout is free software: you can redistribute it and/or modify ** it under the terms of the CC BY 4.0 license as published by ** Creative Commons, either version 4 of the License, or (at your ** option) any later version. ******************************************************************/ #include "Texture2D.h" namespace genesis { Texture2D::Texture2D() : _width(0), _height(0), _internalFormat(GL_RGB), _imageFormat(GL_RGB), _wrapS(GL_REPEAT), _wrapT(GL_REPEAT), _filterMin(GL_LINEAR), _filterMax(GL_LINEAR) { glGenTextures(1, &this->ID); } void Texture2D::generate(GLuint _width, GLuint _height, unsigned char* _data) { this->_width = _width; this->_height = _height; // Create Texture glBindTexture(GL_TEXTURE_2D, this->ID); glTexImage2D(GL_TEXTURE_2D, 0, this->_internalFormat, _width, _height, 0, this->_imageFormat, GL_UNSIGNED_BYTE, _data); // Set Texture wrap and filter modes glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, this->_wrapS); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, this->_wrapT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, this->_filterMin); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, this->_filterMax); // Unbind texture glBindTexture(GL_TEXTURE_2D, 0); } void Texture2D::bind() const { glBindTexture(GL_TEXTURE_2D, this->ID); } }
[ "drew.t.pham@gmail.com" ]
drew.t.pham@gmail.com
af4ecabcdefcf5d38942bbdeddc6bdb6465e78ec
8c66d1fe6ecde6f66f3eaf5b5db220da3930c7ab
/codeforces/1100/B.cpp
f3eda9dca0ac8fcfc47e42d608b5c95f509abe1d
[]
no_license
Hasanul-Bari/codeforces
0af70eda9dee3e7ddefc63560538e986dda0c141
1a074980ccdc2cd97a0a6a85f1f89da0343407b3
refs/heads/master
2023-06-03T07:52:28.584598
2021-04-12T14:39:00
2021-06-17T18:08:03
334,670,088
2
0
null
null
null
null
UTF-8
C++
false
false
587
cpp
#include<bits/stdc++.h> #define faster ios :: sync_with_stdio(0); cin.tie(0); cout.tie(0); #define ll long long #define ull unsigned long long #define pb push_back const double PI = acos(-1.0); using namespace std; int f[100009],a[100009]; int main() { faster; int n,m,t=1,x; cin>>n>>m; for(int i=0; i<m; i++) { cin>>x; f[x]++; a[f[x]]++; if(a[t]==n) { cout<<1; t++; } else cout<<0; } cout<<endl; return 0; }
[ "hasanul.bari.hasan96@gmail.com" ]
hasanul.bari.hasan96@gmail.com
160545f8acf62d1566783aeca365b8c92f156fab
fb550b9b09c01f4046f37cb6c17ca70f52421b51
/src/model/ChunkStackGenerator.h
b8530cc579c445ca28bdf923d14869ed460de1ed
[]
no_license
DasElias/Voxelcraft
0f2a1e6469471b5af5e123f5202bb2e9975127bc
d7cae2172d424b9aa1496614001893b421315b7e
refs/heads/master
2020-07-27T04:19:51.700396
2019-11-09T09:27:16
2019-11-09T09:27:16
208,865,443
0
0
null
null
null
null
UTF-8
C++
false
false
309
h
#pragma once #include <glm/vec2.hpp> namespace vc { class ChunkStack; class Level; class ChunkStackGenerator { public: ChunkStackGenerator() = default; virtual ~ChunkStackGenerator() = default; virtual ChunkStack* generateChunkStack(Level& level, glm::ivec2 chunkStackCoordinates) =0; }; }
[ "elias.horner@student.htldornbirn.at" ]
elias.horner@student.htldornbirn.at
025fc0b1b4fc46ee098cee511884ed74a0616c06
994ac46ead0b003aaf742f0e5aab738f9adf7870
/studios/DesignPatternsStudio/DesignPatternsStudio.cpp
05e5bc46acea0196037879bb7ba2782260f7ac5a
[]
no_license
emilyposner12/cse332s-fl17-seunghan.bae
3ee9ab7155d2c65b14e8e904187c6d0a90e11849
c3b8225e684c7de45b82b91b66b53939e049660d
refs/heads/master
2023-03-15T15:59:34.781370
2018-11-15T02:03:12
2018-11-15T02:03:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,072
cpp
// DesignPatternsStudio.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "DesignPatternsStudio.h" #include <vector> using namespace std; int main(int argc, char * argv[]) { Giraffe g; Ostrich o; /* vector<Animal *> vtr; vtr.push_back(&g); vtr.push_back(&o); list<Animal *> lst; lst.push_back(&g); lst.push_back(&o); print(vtr, cout); print(lst, cout); */ Zoo * z = Zoo::instance(); z->add(&g); z->add(&o); cout << *z << endl; z->observe(); Zoo z2(*z); cout << *z << endl; cout << z2 << endl; } void Giraffe::print(ostream & os) const { os << "Giraffe" << endl; } void Giraffe::look() { cout << "giraffe is looking around, can see far away" << endl; } Animal * Giraffe::clone() { Giraffe * gPtr = new Giraffe(*this); return gPtr; } void Ostrich::print(ostream & os) const { os << "Ostrich" << endl; } void Ostrich::hide() { cout << "ostrich has buried its head in the sand, cannot see anything" << endl; } Animal * Ostrich::clone() { Ostrich * oPtr = new Ostrich(*this); return oPtr; } Zoo::Zoo(const Zoo & z) : la_(), flag_(false) { for (list<Animal *>::const_iterator i = z.la_.cbegin(); i != z.la_.cend(); ++i) { Animal * a = (*i)->clone(); la_.push_back(a); } flag_ = true; } Zoo::~Zoo() { if (flag_ == true) { for (list<Animal *>::iterator i = la_.begin(); i != la_.end(); ++i) { delete (*i); } } } Zoo * Zoo::instance() { if (zoo_ == 0) { zoo_ = new Zoo; } return zoo_; } void Zoo::add(Animal * a) { la_.push_back(a); } void Zoo::observe() { for (list<Animal *>::iterator i = la_.begin(); i != la_.end(); ++i) { Giraffe * gPtr = dynamic_cast<Giraffe *>(*i); if (gPtr != 0) { gPtr->look(); } Ostrich * oPtr = dynamic_cast<Ostrich *>(*i); if (oPtr != 0) { oPtr->hide(); } } } Zoo * Zoo::zoo_ = 0; std::ostream & operator<<(std::ostream & os, const Zoo & z) { print(z.la_, os); return os; }
[ "seunghan@seunghans-mbp.dhcp.wustl.edu" ]
seunghan@seunghans-mbp.dhcp.wustl.edu
111644d4183573370314d2312f69270d99fc6286
980b4735da4ac1882bf74d0d40530f2370fa9389
/yesod.old/test/mpl/front_back.cpp
7d0156d3ced4adb9f05254693484924bdf6f502c
[]
no_license
oakad/ucpf
24790c6f8247e16b8ef48bc3012da15bdd775205
cb832e39776237af5fd901e3942d671af37a8005
refs/heads/master
2021-03-16T07:17:54.219223
2017-04-01T05:57:33
2017-04-01T05:57:33
337,931
0
0
null
null
null
null
UTF-8
C++
false
false
1,095
cpp
/*============================================================================= Copyright (c) 2000-2004 Aleksey Gurtovoy Copyright (c) 2013 Alex Dubov <oakad@yahoo.com> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #define BOOST_TEST_MODULE yesod_mpl #include <boost/test/unit_test.hpp> #include <yesod/mpl/range_c.hpp> #include <yesod/mpl/front_back.hpp> namespace ucpf { namespace yesod { namespace mpl { BOOST_AUTO_TEST_CASE(front_back_0) { BOOST_CHECK_EQUAL((front<range_c<int, 1, 10>>::type::value), 1); BOOST_CHECK_EQUAL((front<range_c<int, 2, 10>>::type::value), 2); BOOST_CHECK_EQUAL((front<range_c<int, -1, 10>>::type::value), -1); } BOOST_AUTO_TEST_CASE(front_back_1) { BOOST_CHECK_EQUAL((back<range_c<int, 0, 1>>::type::value), 0); BOOST_CHECK_EQUAL((back<range_c<int, 0, 10>>::type::value), 9); BOOST_CHECK_EQUAL((back<range_c<int, -10, 0>>::type::value), -1); } }}}
[ "oakad@yahoo.com" ]
oakad@yahoo.com
1e6d7b39ec7a566f80ef3efba9fb3e0534b8fa78
dd02b3be967ba45c70354f9d9c0411899f536780
/codec.cpp
6fbd5f314b90c54e9736f3cd5a4dc7e37f8d8efd
[]
no_license
dragon101788/hui5-hulua
04332f4109644b404cc1c798e0ac86ac204a22ed
dd60ab219409fc972c4be08f8aa691152d39a1b1
refs/heads/master
2020-06-02T02:08:55.449800
2015-07-13T08:53:06
2015-07-13T08:53:06
37,994,988
0
0
null
null
null
null
UTF-8
C++
false
false
21,850
cpp
#include <stdio.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> #include <fcntl.h> #include <sys/mman.h> #include <sys/ioctl.h> #include <errno.h> #include <signal.h> #include <linux/fb.h> #include <getopt.h> #include <termios.h> #include <png.h> #include "codec.h" #include "hulib.h" int image_write_to_snap(image * img, const char * path); int image_read_from_snap(image * img, const char * path); int access_Image(const char * filename) { if (access(filename, F_OK) == 0 || access(hustr("cache/%s.snap", filename), F_OK) == 0) { return 1; } else { return 0; } } int codec_to_Image(image * enode, const char * filename) { if (filename == NULL) { errexitf("codec_to_Image path is unvalid [%s]\r\n", filename); } enode->lock(); if (image_read_from_snap(enode, filename) == 0) { debug("codec_to_Image %s load snap\r\n", filename); } else { debug("codec_to_Image %s load file\r\n", filename); const char * type = strrchr(filename, '.') + 1; if (strcasecmp(type, "png") == 0) { //debug_timer(); //printf("$$$HU$$$ JPG\r\n"); if (pngCodec_to_image(enode, filename)) { errexitf("pngCodec_to_image %s", filename); } //debug_timer(filename); } // else if (strcasecmp(type, "bmp") == 0) // { // //printf("$$$HU$$$ BMP\r\n"); // if (bmpCodec_to_image(enode, filename)) // { // errexitf("bmpCodec_to_image %s", filename); // } // } // else if(strcasecmp(strrchr(filename,'.')+1,"jpg")==0) // { // //printf("$$$HU$$$ JPG\r\n"); // if (jpegCodec_to_image(enode,filename)) // { // exit(1); // } // } else { errexitf("unknow file [%s] type %s\r\n", filename, type); } } enode->unlock(); return 0; } /******************************ͼƬ���*********************************/ //typedef struct _pic_data pic_data; //struct _pic_data //{ // int width, height; /* �ߴ� */ // int bit_depth; /* λ�� */ // int flag; /* һ����־����ʾ�Ƿ���alphaͨ�� */ // // unsigned char **rgba; /* ͼƬ���� */ //}; /**********************************************************************/ #define PNG_BYTES_TO_CHECK 4 #define HAVE_ALPHA 1 #define NO_ALPHA 0 int pngCodec_to_image(image * sobj, const char *filepath) { FILE *pic_fp; pic_fp = fopen(filepath, "rb"); if (pic_fp == NULL) { errexitf("open %s %s \r\n", filepath, strerror(errno)); } png_structp png_ptr; png_infop info_ptr; char buf[PNG_BYTES_TO_CHECK]; int temp; png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0); info_ptr = png_create_info_struct(png_ptr); setjmp(png_jmpbuf(png_ptr)); temp = fread(buf, 1, PNG_BYTES_TO_CHECK, pic_fp); temp = png_sig_cmp((png_byte*) buf, (png_size_t) 0, PNG_BYTES_TO_CHECK); if (temp != 0) return 1; rewind(pic_fp); png_init_io(png_ptr, pic_fp); png_read_png(png_ptr, info_ptr, PNG_TRANSFORM_EXPAND, 0); int color_type, channels, bit_depth; /*��ȡ��ȣ��߶ȣ�λ���ɫ����*/ channels = png_get_channels(png_ptr, info_ptr); /*��ȡͨ����*/ bit_depth = png_get_bit_depth(png_ptr, info_ptr); /* ��ȡλ�� */ color_type = png_get_color_type(png_ptr, info_ptr); /*��ɫ����*/ //printf("channels=%d bit_depth=%d color_type=%d\r\n",channels,bit_depth,color_type); int i, j; int pos = 0; /* row_pointers��߾���rgba��� */ png_bytep* row_pointers; row_pointers = png_get_rows(png_ptr, info_ptr); int w = png_get_image_width(png_ptr, info_ptr); int h = png_get_image_height(png_ptr, info_ptr); sobj->SetBuffer(w, h); if (channels == 4 || color_type == PNG_COLOR_TYPE_RGB_ALPHA) { struct PNG_ARGB { unsigned char r; unsigned char g; unsigned char b; unsigned char a; }__attribute__ ((packed)); PNG_ARGB ** pix = (PNG_ARGB **) row_pointers; for (int y = 0; y < h; y++) { for (int x = 0; x < w; x++) { IMG_PIX * dst_pix = sobj->GetPix(x, y); dst_pix->u8Red = pix[y][x].r; dst_pix->u8Green = pix[y][x].g; dst_pix->u8Blue = pix[y][x].b; dst_pix->u8Alpha = pix[y][x].a; } } } else if (channels == 3 || color_type == PNG_COLOR_TYPE_RGB) { struct PNG_RGB { unsigned char r; unsigned char g; unsigned char b; }__attribute__ ((packed)); PNG_RGB ** pix = (PNG_RGB **) row_pointers; for (int y = 0; y < h; y++) { for (int x = 0; x < w; x++) { IMG_PIX * dst_pix = sobj->GetPix(x, y); dst_pix->u8Red = pix[y][x].r; dst_pix->u8Green = pix[y][x].g; dst_pix->u8Blue = pix[y][x].b; dst_pix->u8Alpha = 255; } } } else return 1; fclose(pic_fp); /* �������ռ�õ��ڴ� */ png_destroy_read_struct(&png_ptr, &info_ptr, 0); return 0; } /* 将puc_data结构中的数据写入至png文件 */ int pngEndec_to_image(const char *file_name, image * graph) { printf("write_png_file save to %s\r\n", file_name); int j, i, temp, pos; png_byte color_type; png_structp png_ptr; png_infop info_ptr; png_bytep * row_pointers; /* create file */ FILE *fp = fopen(file_name, "wb"); if (!fp) { errexitf("[write_png_file] File %s could not be opened for writing", file_name); } /* initialize stuff */ png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if (!png_ptr) { huErrExit("[write_png_file] png_create_write_struct failed"); } info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { huErrExit("[write_png_file] png_create_info_struct failed"); } if (setjmp(png_jmpbuf(png_ptr))) { huErrExit("[write_png_file] Error during init_io"); } png_init_io(png_ptr, fp); /* write header */ if (setjmp(png_jmpbuf(png_ptr))) { huErrExit("[write_png_file] Error during writing header"); } /* 判断要写入至文件的图片数据是否有透明度,来选择色彩类型 */ color_type = PNG_COLOR_TYPE_RGB_ALPHA; png_set_IHDR(png_ptr, info_ptr, graph->GetImageWidth(), graph->GetImageHeight(), 8, color_type, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE); png_write_info(png_ptr, info_ptr); /* write bytes */ if (setjmp(png_jmpbuf(png_ptr))) { huErrExit("[write_png_file] Error during writing bytes"); } temp = (4 * graph->GetImageWidth()); pos = 0; row_pointers = (png_bytep*) malloc(graph->GetImageHeight() * sizeof(png_bytep)); for (i = 0; i < graph->GetImageHeight(); i++) { row_pointers[i] = (png_bytep) malloc(sizeof(unsigned char) * temp); for (j = 0; j < temp; j += 4) { IMG_PIX * tmp = graph->GetPix(pos); row_pointers[i][j] = tmp->u8Red; // red row_pointers[i][j + 1] = tmp->u8Green; // green row_pointers[i][j + 2] = tmp->u8Blue; // blue row_pointers[i][j + 3] = tmp->u8Alpha; // alpha // row_pointers[i][j] = ((IMG_PIX *) graph->pSrcBuffer + pos)->u8Red; // red // row_pointers[i][j + 1] = ((IMG_PIX *) graph->pSrcBuffer + pos)->u8Green; // green // row_pointers[i][j + 2] = ((IMG_PIX *) graph->pSrcBuffer + pos)->u8Blue; // blue // row_pointers[i][j + 3] = ((IMG_PIX *) graph->pSrcBuffer + pos)->u8Alpha; // alpha ++pos; } } png_write_image(png_ptr, row_pointers); /* end write */ if (setjmp(png_jmpbuf(png_ptr))) { huErrExit("[write_png_file] Error during end of write"); } png_write_end(png_ptr, NULL); /* cleanup heap allocation */ for (j = 0; j < graph->GetImageHeight(); j++) free(row_pointers[j]); free(row_pointers); fclose(fp); return 0; } int image_write_to_snap(image * img, const char * rawpath) { hustr path("cache/%s.snap", rawpath); restart: FILE * fp = fopen(path, "w+"); if (fp == NULL) { if (errno == ENOENT) { char str[strlen(path) + 1]; strcpy(str, path); char*p = strrchr(str, '/'); *p = 0; system(hustr("mkdir -p %s", str)); goto restart; } else { errexitf("image_write_to_snap open %s:%d %s\r\n", path.c_str(), errno, strerror(errno)); } } fseek(fp, SEEK_SET, 0); fwrite(&img->SrcSize, sizeof(unsigned long), 1, fp); fwrite(&img->u32Width, sizeof(unsigned int), 1, fp); fwrite(&img->u32Height, sizeof(unsigned int), 1, fp); fwrite(&img->u32Stride, sizeof(unsigned int), 1, fp); unsigned int reserved[17]; fwrite(&reserved, sizeof(unsigned int), 17, fp); fwrite(img->pSrcBuffer, 1, img->SrcSize, fp); fclose(fp); return 0; } int image_read_from_snap(image * img, const char * rawpath) { hustr path("cache/%s.snap", rawpath); if (access(path, F_OK) != 0) { return -1; } FILE * fp = fopen(path, "r"); if (fp == NULL) { errexitf("image_read_from_snap open %s:%d %s\r\n", path.c_str(), errno, strerror(errno)); } fseek(fp, SEEK_SET, 0); fread(&img->SrcSize, sizeof(unsigned long), 1, fp); fread(&img->u32Width, sizeof(unsigned int), 1, fp); fread(&img->u32Height, sizeof(unsigned int), 1, fp); fread(&img->u32Stride, sizeof(unsigned int), 1, fp); unsigned int reserved[17]; fread(&reserved, sizeof(unsigned int), 17, fp); img->SetBuffer(img->GetImageWidth(), img->GetImageHeight()); fread(img->pSrcBuffer, 1, img->SrcSize, fp); fclose(fp); return 0; } //int jpegCodec_to_image( image * sobj,const char *filename) //{ // //TEST_DECODE_DOWNSCALE // unsigned long BufferSize, bufferCount,readSize; // jpeg_param_t jpeg_param; // jpeg_info_t *jpeginfo; // unsigned char *pJpegBuffer = NULL, *pSRCbuffer = NULL, *pJpegSWaddr = NULL; // int jpg_codec_fd; // __u32 jpeg_buffer_size; // int enc_reserved_size; // int ret = 0; // int i,len, jpeginfo_size; // int width,height, parser; // FILE *fp; // // for(i=0;i<100;i++) // { // jpg_codec_fd = open("/dev/video1", O_RDWR); // if (jpg_codec_fd < 0) // { // continue; // } // break; // } // if (jpg_codec_fd < 0) // { // printf("JPEG Engine is busy\n"); // exit(-1); // } // /* allocate memory for JPEG engine */ // ioctl(jpg_codec_fd, JPEG_GET_JPEG_BUFFER, (__u32)&jpeg_buffer_size); // // //printf("\tjpeg engine memory buffer: 0x%X\n",jpeg_buffer_size); // // pJpegBuffer = (unsigned char *)mmap(NULL, jpeg_buffer_size, PROT_READ|PROT_WRITE, MAP_SHARED, jpg_codec_fd, 0); // // if(pJpegBuffer == MAP_FAILED) // { // printf("JPEG Map Failed!\n"); // exit(-1); // } // else // { // // printf("\tGet memory from jpeg engine: 0x%X\n",jpeg_buffer_size); // } // // memset((void*)&jpeg_param, 0, sizeof(jpeg_param_t)); // jpeginfo_size = sizeof(jpeg_info_t) + sizeof(__u32); // jpeginfo = (jpeg_info_t *)malloc(jpeginfo_size); // // int DecOPWbuffersize; // // jpeg_param.encode = 0; /* Decode Operation */ // jpeg_param.src_bufsize = jpeg_buffer_size/2; /* Src buffer size (Bitstream buffer size for JPEG engine) */ // jpeg_param.dst_bufsize = jpeg_buffer_size/2; /* Dst buffer size (Decoded Raw data buffer size for JPEG engine) */ // jpeg_param.decInWait_buffer_size = 0; /* Decode input Wait buffer size (Decode input wait function disable when decInWait_buffer_size is 0) */ // jpeg_param.decopw_en = 0; // jpeg_param.windec_en = 0; // // // //jpeg_param.dec_stride = xres; /* Enable stride function */ // // // /* Total buffer size for JPEG engine */ // // BufferSize = (jpeg_param.src_bufsize + jpeg_param.dst_bufsize); // // if(BufferSize > jpeg_buffer_size) // { // printf("JPEG Engine Buffer isn't enough\n"); // exit(-1); // } // // /* Clear buffer */ // // //memset(pJpegBuffer, 0x77, BufferSize); // // /* Open JPEG file */ // fp = fopen(filename, "r"); // if(fp == NULL) // { // printf("open %s error : %s\n", filename,strerror(errno)); // exit(-1); // } // // pSRCbuffer = pJpegBuffer; // bufferCount = 0; // parser = 0; // //printf("JPEG Header Parser:\n"); // /* Read Bitstream to JPEG engine src buffer */ // while(!feof(fp)) // { // fd_set writefds; // struct timeval tv; // int result; // tv.tv_sec = 0; // tv.tv_usec = 0; // FD_ZERO( &writefds ); // FD_SET( jpg_codec_fd , &writefds ); // tv.tv_sec = 0; // tv.tv_usec = 0; // // select( jpg_codec_fd + 1 , NULL , &writefds , NULL, &tv ); // if( FD_ISSET( jpg_codec_fd, &writefds )) // { // readSize = fread(pSRCbuffer, 1, 4096 , fp); // pSRCbuffer += readSize; // bufferCount += readSize; // } // if(!parser) // { // result = ParsingJPEG(pJpegBuffer, bufferCount, &width, &height); // if(!result) // { // //printf("\t->Width %d, Height %d\n", width,height); // parser = 1; // } // else{} // //printf("\t->Can't get image siz in %5d byte bistream\n", bufferCount); // } // // if( bufferCount > jpeg_param.src_bufsize) // { // printf("Bitstream size is larger than src buffer, %d!!\n",bufferCount); // return 0; // } // } // printf("Bitstream is %d Bytes\n",bufferCount); // // if(bufferCount % 4) // bufferCount = (bufferCount & ~0x3) + 4; // // // printf("Set Src Buffer is %d Bytes\n",bufferCount); // // jpeg_param.src_bufsize = bufferCount; /* Src buffer size (Bitstream buffer size for JPEG engine) */ // jpeg_param.dst_bufsize = BufferSize - bufferCount; /* Dst buffer size (Decoded Raw data buffer size for JPEG engine) */ // // // // jpeg_param.buffersize = 0; /* only for continuous shot */ // jpeg_param.buffercount = 1; // // /* Set decode output format: RGB555/RGB565/RGB888/YUV422/PLANAR_YUV */ // jpeg_param.decode_output_format = DRVJPEG_DEC_PRIMARY_PACKET_RGB565; // // // // /* Set operation property to JPEG engine */ // if((ioctl(jpg_codec_fd, JPEG_S_PARAM, &jpeg_param)) < 0) // { // fprintf(stderr,"set jpeg param failed:%d\n",errno); // ret = -1; // goto out; // } // // // /* Trigger JPEG engine */ // if((ioctl(jpg_codec_fd, JPEG_TRIGGER, NULL)) < 0) // { // fprintf(stderr,"trigger jpeg failed:%d\n",errno); // ret = -1; // goto out; // } // // /* Get JPEG decode information */ // len = read(jpg_codec_fd, jpeginfo, jpeginfo_size); // // if(len<0) { // fprintf(stderr, "read data error errno=%d\n", errno); // ret = -1; // goto out; // } // //printf("JPEG: Width %d, Height %d\n",jpeginfo->width, jpeginfo->height); // // if(jpeginfo->state == JPEG_DECODED_IMAGE) // { // // sobj->SrcSize=jpeginfo->image_size[0]; // // //sobj->srcBG_fd = -1; // sobj->pSrcBuffer = NULL; // sobj->srcFormat = eDRVBLT_SRC_RGB565; // int err = posix_memalign(&sobj->pSrcBuffer, 4, sobj->SrcSize); // if (err) // { // errexitf("posix_memalign failed: %s\n", strerror(err)); // } // // // memcpy(sobj->pSrcBuffer,(char*)(pJpegBuffer + jpeg_param.src_bufsize), sobj->SrcSize); // sobj->u32Stride=jpeginfo->width<<1; // sobj->get_width()=jpeginfo->width; // sobj->get_height()=jpeginfo->height; // // printf("jpeg codec filename=%s %d %d\r\n",filename,sobj->get_width(),sobj->get_height()); // // } // else if(jpeginfo->state == JPEG_DECODE_ERROR) // printf("Decode Error\n"); // else if(jpeginfo->state == JPEG_MEM_SHORTAGE) // printf("Memory Shortage\n"); // else if(jpeginfo->state == JPEG_DECODE_PARAM_ERROR) // printf("Decode Parameter Error\n"); // // //out: // if(pJpegBuffer) // munmap(pJpegBuffer, jpeg_buffer_size); // // close(jpg_codec_fd); // fclose(fp); // free(jpeginfo); // return 0; // //} void ProcArea(image * dst_img, image * rsc_img, int & src_x, int & src_y, int & cp_width, int & cp_height, int & dst_x, int & dst_y) { if (cp_width == 0 || cp_height == 0) { return; } if (cp_width < 0 || cp_height < 0) { huErrExit("AreaCopy cp_windth or cp_height <0\r\n"); } //printf("$$$HU$$$ src_x=%d\r\n", src_x); //*************************************** //判断是否复制的坐标小于0,并且修正宽度 // if (dst_x < 0) // { // cp_width = dst_img->GetImageWidth() + dst_x; // // dst_x = 0; // } // if (dst_y < 0) // { // cp_height = dst_img->GetImageHeight() + dst_y; // //dst_y = 0; // } //************************************* if (src_x < 0) { //cp_width += src_x; dst_x -= src_x; src_x = 0; } if (src_y < 0) { //cp_height += src_y; dst_y -= src_y; src_y = 0; } if (cp_height > dst_img->GetImageHeight()) { //printf("AreaCopyDH dst_y=%d cp_height=%d dst_img.height=%d\n",dst_y , cp_height , dst_img->GetImageHeight()); cp_height = dst_img->GetImageHeight(); } if (cp_width > dst_img->GetImageWidth()) { //printf("AreaCopyDW dst_x=%d cp_width=%d dst_img.width=%d\n",dst_x , cp_width , dst_img->GetImageWidth()); cp_width = dst_img->GetImageWidth(); } //************************************* if (src_y + cp_height > rsc_img->GetImageHeight()) { //printf("AreaCopySH src_y=%d cp_height=%d rsc_img->get_height()=%d\r\n", src_y, cp_height, rsc_img->GetImageHeight()); cp_height = rsc_img->GetImageHeight() - src_y; if (cp_height <= 0) { return; } } if (src_x + cp_width > rsc_img->GetImageWidth()) { //printf("AreaCopySW src_x=%d cp_width=%d rsc_img->get_width()=%d\r\n", src_x, cp_width, rsc_img->GetImageWidth()); cp_width = rsc_img->GetImageWidth() - src_x; if (cp_width <= 0) { return; } } //************************************* } void AreaCopy(image * dst_img, image * src_img, int src_x, int src_y, int cp_width, int cp_height, int dst_x, int dst_y) { int x; int y; dst_img->lock(); src_img->lock(); debug_areacopy("$$$HU$$$ AreaCopy1 src_x=%d src_y=%d cp_width=%d cp_height=%d dst_x=%d dst_y=%d\r\n", src_x, src_y, cp_width, cp_height, dst_x, dst_y); ProcArea(dst_img, src_img, src_x, src_y, cp_width, cp_height, dst_x, dst_y); debug_areacopy("$$$HU$$$ AreaCopy2 src_x=%d src_y=%d cp_width=%d cp_height=%d dst_x=%d dst_y=%d row_size=%d\r\n", src_x, src_y, cp_width, cp_height, dst_x, dst_y,cp_width * sizeof(IMG_PIX)); debug_areacopy("$$$HU$$$ AreaCopy3 src[%d:%d] dst[%d:%d]\n",src_img->GetImageWidth(),src_img->GetImageHeight(),dst_img->GetImageWidth(),dst_img->GetImageHeight()); debug_areacopy("$$$HU$$$ AreaCopy4 0x%x 0x%x\n",dst_img->pSrcBuffer,src_img->pSrcBuffer); for (y=0; y < cp_height; y++) { // printf("y=%d\n",y); // for(x=0;x<cp_width;x++) // { // printf("x=%d\n",x); // IMG_PIX * dst_pix = ((IMG_PIX *) dst_img->pSrcBuffer + (y + dst_y) * dst_img->u32Width + (x + dst_x)); // IMG_PIX * src_pix = ((IMG_PIX *) src_img->pSrcBuffer + (y + src_y) * src_img->u32Width + (x + src_x)); // if(src_pix->u8Alpha) // *dst_pix = *src_pix; // } debug_areacopy("y=%d\n",y); memcpy((unsigned int *) dst_img->pSrcBuffer + (y + dst_y) * dst_img->u32Width + dst_x, (unsigned int *) src_img->pSrcBuffer + (y + src_y) * src_img->u32Width + src_x, (cp_width * sizeof(IMG_PIX))); } //printf("OK\n"); dst_img->unlock(); src_img->unlock(); } //void Render_img_to_img(image * dst,image * img,int x,int y) //{ //// if(g_blt==NULL) //// { //// return; //// } // // img->LoadResource(); // // if(dst->SrcGPUAddr()== 0 ||img->SrcGPUAddr() == 0) // { // errexitf("warning::Image source point is NULL dst=%#x src=%#x\r\n",dst->SrcGPUAddr(),img->SrcGPUAddr()); // } // // S_DRVBLT_BLIT_OP s_sblitop={0}; // // s_sblitop.dest.u32FrameBufAddr = dst->SrcGPUAddr(); // s_sblitop.dest.i32XOffset = 0; // s_sblitop.dest.i32YOffset = 0; // s_sblitop.dest.i32Stride = dst->u32Stride; // s_sblitop.dest.i16Width = dst->get_width(); // s_sblitop.dest.i16Height = dst->get_height(); // // s_sblitop.src.pSARGB8 = (IMG_PIX *)img->pSrcBuffer; // s_sblitop.src.u32SrcImageAddr = img->SrcGPUAddr(); // s_sblitop.src.i32Stride = img->u32Stride; // s_sblitop.src.i32XOffset = ((0-x) << 16); // s_sblitop.src.i32YOffset = ((0-y) << 16); // s_sblitop.src.i16Width = img->get_width(); // s_sblitop.src.i16Height = img->get_height(); // // img->stransformation.destFormat = dst->destFormat; // img->stransformation.srcFormat = img->srcFormat; // // s_sblitop.transformation = &img->stransformation; // // if (g_blt.blt_start_blit(&s_sblitop)) // { // Configure blit operation and then trigger. // errexit("Configure blit operation and then trigger."); // } // // if (g_blt.blt_flush()) // { // Wailt for blit done. // errexit("Wailt for blit done."); // } //} //void Render_img_to_buf(void * buf, image * img, int width, int height) //{ // image dst; // dst.u32Width = width; // dst.u32Height = height; // dst.pSrcBuffer = buf; // dst.u32Stride = width * 2; // // Render_img_to_img(&dst, img, 0, 0, img->get_width(), img->get_height(), 0, 0); //} //int fill_image(image * img, int a, int r, int g, int b) //{ // // S_DRVBLT_FILL_OP s_sfillop; // s_sfillop.color.u8Blue = b; // s_sfillop.color.u8Green = g; // s_sfillop.color.u8Red = r; // s_sfillop.color.u8Alpha = a; // s_sfillop.blend = true; // s_sfillop.u32FrameBufAddr = img->SrcGPUAddr(); // s_sfillop.rowBytes = img->u32Stride; // s_sfillop.format = img->destFormat; // s_sfillop.rect.i16Xmin = 0; // s_sfillop.rect.i16Xmax = img->get_width(); // s_sfillop.rect.i16Ymin = 0; // s_sfillop.rect.i16Ymax = img->get_height(); // // if ((ioctl(g_blt.blt_fd, BLT_IOCSFILL, &s_sfillop)) == -1) // { // errexitf("set FILL parameter failed: %s\n", strerror(errno)); // } // // if ((ioctl(g_blt.blt_fd, BLT_IOCTRIGGER, NULL)) == -1) // { // errexitf("trigger BLT failed: %s\n", strerror(errno)); // } // return 0; //} //
[ "dragon101788@sina.com" ]
dragon101788@sina.com
234dc1449848ac3863bddd9b3f55519a2856e660
75fe5fcd800e3adc53993c16c2020b37790acc23
/tp1/chilkat/include/CkAuthAzureSASW.h
ef2e447604d6055b29b260544c81d483a8df0b6e
[]
no_license
ignitz/2018_1_ri
1791a5c4cb738b9a8d571d2d77d4d844671ada70
ae6096192f5e00991fbad8701a3c9595a288a1ac
refs/heads/master
2021-04-15T05:58:18.139578
2018-05-21T01:45:02
2018-05-21T01:45:02
126,904,087
0
0
null
null
null
null
UTF-8
C++
false
false
5,365
h
// CkAuthAzureSASW.h: interface for the CkAuthAzureSASW class. // ////////////////////////////////////////////////////////////////////// // This header is generated for Chilkat 9.5.0.72 #ifndef _CkAuthAzureSASW_H #define _CkAuthAzureSASW_H #include "chilkatDefs.h" #include "CkString.h" #include "CkWideCharBase.h" #if !defined(__sun__) && !defined(__sun) #pragma pack (push, 8) #endif // CLASS: CkAuthAzureSASW class CK_VISIBLE_PUBLIC CkAuthAzureSASW : public CkWideCharBase { private: // Don't allow assignment or copying these objects. CkAuthAzureSASW(const CkAuthAzureSASW &); CkAuthAzureSASW &operator=(const CkAuthAzureSASW &); public: CkAuthAzureSASW(void); virtual ~CkAuthAzureSASW(void); static CkAuthAzureSASW *createNew(void); void CK_VISIBLE_PRIVATE inject(void *impl); // May be called when finished with the object to free/dispose of any // internal resources held by the object. void dispose(void); // BEGIN PUBLIC INTERFACE // ---------------------- // Properties // ---------------------- // This is the signing key (access key) that must be kept private. It is a base64 // string such as // "abdTvCZFFoWUyre6erlNN+IOb9qhXgDsyhrxmZvpmxqFDwpl9oD0X9Fy0hIQa6L5UohznRLmkCtUYySO // 4Y2eaw==" void get_AccessKey(CkString &str); // This is the signing key (access key) that must be kept private. It is a base64 // string such as // "abdTvCZFFoWUyre6erlNN+IOb9qhXgDsyhrxmZvpmxqFDwpl9oD0X9Fy0hIQa6L5UohznRLmkCtUYySO // 4Y2eaw==" const wchar_t *accessKey(void); // This is the signing key (access key) that must be kept private. It is a base64 // string such as // "abdTvCZFFoWUyre6erlNN+IOb9qhXgDsyhrxmZvpmxqFDwpl9oD0X9Fy0hIQa6L5UohznRLmkCtUYySO // 4Y2eaw==" void put_AccessKey(const wchar_t *newVal); // Defines the format of the string to sign. // // The format is specified as a comma-separated list of names. For example: // // signedpermissions,signedstart,signedexpiry,canonicalizedresource,signedidentifier,signedIP,signedProtocol,signedversion,rscc,rscd,rsce,rscl,rsct // This will result in an actual string-to-sign that is composed of the values for // each name separated by newline (LF) chars. For example: // signedpermissions + "\n" + // signedstart + "\n" + // signedexpiry + "\n" + // canonicalizedresource + "\n" + // signedidentifier + "\n" + // signedIP + "\n" + // signedProtocol + "\n" + // signedversion + "\n" + // rscc + "\n" + // rscd + "\n" + // rsce + "\n" + // rscl + "\n" + // rsct void get_StringToSign(CkString &str); // Defines the format of the string to sign. // // The format is specified as a comma-separated list of names. For example: // // signedpermissions,signedstart,signedexpiry,canonicalizedresource,signedidentifier,signedIP,signedProtocol,signedversion,rscc,rscd,rsce,rscl,rsct // This will result in an actual string-to-sign that is composed of the values for // each name separated by newline (LF) chars. For example: // signedpermissions + "\n" + // signedstart + "\n" + // signedexpiry + "\n" + // canonicalizedresource + "\n" + // signedidentifier + "\n" + // signedIP + "\n" + // signedProtocol + "\n" + // signedversion + "\n" + // rscc + "\n" + // rscd + "\n" + // rsce + "\n" + // rscl + "\n" + // rsct const wchar_t *stringToSign(void); // Defines the format of the string to sign. // // The format is specified as a comma-separated list of names. For example: // // signedpermissions,signedstart,signedexpiry,canonicalizedresource,signedidentifier,signedIP,signedProtocol,signedversion,rscc,rscd,rsce,rscl,rsct // This will result in an actual string-to-sign that is composed of the values for // each name separated by newline (LF) chars. For example: // signedpermissions + "\n" + // signedstart + "\n" + // signedexpiry + "\n" + // canonicalizedresource + "\n" + // signedidentifier + "\n" + // signedIP + "\n" + // signedProtocol + "\n" + // signedversion + "\n" + // rscc + "\n" + // rscd + "\n" + // rsce + "\n" + // rscl + "\n" + // rsct void put_StringToSign(const wchar_t *newVal); // ---------------------- // Methods // ---------------------- // Clears all params set by the methods SetNonTokenParam and SetTokenParam. void Clear(void); // Generates and returns the SAS token based on the defined StringToSign and // params. bool GenerateToken(CkString &outStr); // Generates and returns the SAS token based on the defined StringToSign and // params. const wchar_t *generateToken(void); // Adds a non-token parameter name/value. This is a value that is included in the // string to sign, but is NOT included as a parameter in the Authorization header. bool SetNonTokenParam(const wchar_t *name, const wchar_t *value); // Adds a token parameter name/value. This is a value that is included in the // string to sign, and is also included as a parameter in the Authorization header. bool SetTokenParam(const wchar_t *name, const wchar_t *authParamName, const wchar_t *value); // END PUBLIC INTERFACE }; #if !defined(__sun__) && !defined(__sun) #pragma pack (pop) #endif #endif
[ "ignitzhjfk@gmail.com" ]
ignitzhjfk@gmail.com
ac3abfb7e431d384e92c1c5dc22c1ceace758f47
56fee40dfcdf1208c57706df84171bf974840655
/utility/mesh.hpp
d71e9955c914c9087c9f639627232c210e5c0f35
[]
no_license
university-of-newcastle-COMP3320/OpenGL-Tutorials
d2cb020b99ca51f45a6311488bd8c766bb456e39
4d703cdc287fde3278590e56a4b350ec11141e1e
refs/heads/master
2023-07-25T14:24:38.741938
2021-09-07T04:05:33
2021-09-07T04:05:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,148
hpp
#ifndef UTILITY_MESH_HPP #define UTILITY_MESH_HPP #include <cstddef> // for offsetof #include <iostream> #include <string> #include <vector> // For python style string formatting #include "fmt/format.h" // For matrix and vector arithmetic #include "glm/glm.hpp" #include "glm/gtc/type_ptr.hpp" // clang-format off // Must include glad first #include "glad/glad.h" #include "GLFW/glfw3.h" // clang-format on #include "utility/opengl_utils.hpp" namespace utility { namespace mesh { #pragma pack(push, 1) struct Vertex { Vertex(const glm::vec3& position, const glm::vec3& normal, const glm::vec2& tex) : position(position), normal(normal), tex(tex) {} Vertex(glm::vec3&& position, glm::vec3&& normal, glm::vec2&& tex) : position(position), normal(normal), tex(tex) {} Vertex(const Vertex& vertex) : position(vertex.position), normal(vertex.normal), tex(vertex.tex) {} Vertex(Vertex&& vertex) noexcept : position(std::move(vertex.position)), normal(std::move(vertex.normal)), tex(std::move(vertex.tex)) {} Vertex& operator=(const Vertex& vertex) { position = vertex.position; normal = vertex.normal; tex = vertex.tex; return *this; } Vertex& operator=(Vertex&& vertex) { position = std::move(vertex.position); normal = std::move(vertex.normal); tex = std::move(vertex.tex); return *this; } glm::vec3 position; glm::vec3 normal; glm::vec2 tex; }; static_assert(sizeof(Vertex) == 32, "The compiler is adding padding to this struct, Bad compiler!"); #pragma pack(pop) struct Mesh { Mesh() { initialised = false; } Mesh(std::vector<Vertex>&& vertices, std::vector<unsigned int>&& indices, std::vector<utility::gl::texture>&& textures) : vertices(std::move(vertices)), indices(std::move(indices)), textures(std::move(textures)) { setup_mesh(); } ~Mesh() { if (initialised) { vertices.clear(); indices.clear(); textures.clear(); } } Mesh(const Mesh& mesh) = delete; Mesh& operator=(const Mesh& mesh) = delete; Mesh(Mesh&& mesh) noexcept : vertices(std::move(mesh.vertices)) , indices(std::move(mesh.indices)) , textures(std::move(mesh.textures)) , VAO(std::move(mesh.VAO)) , VBO(std::move(mesh.VBO)) , EBO(std::move(mesh.EBO)) , initialised(std::exchange(mesh.initialised, false)) {} Mesh& operator=(Mesh&& mesh) { vertices = std::move(mesh.vertices); indices = std::move(mesh.indices); textures = std::move(mesh.textures); VAO = std::move(mesh.VAO); VBO = std::move(mesh.VBO); EBO = std::move(mesh.EBO); initialised = std::exchange(mesh.initialised, false); return *this; } void render(utility::gl::shader_program& program) { int diffuse_count = 0; int specular_count = 0; for (int i = 0; i < textures.size(); ++i) { std::string texture_uniform; switch (textures[i].style()) { case utility::gl::TextureStyle::TEXTURE_DIFFUSE: texture_uniform = fmt::format("material.diffuse[{}]", diffuse_count++); break; case utility::gl::TextureStyle::TEXTURE_SPECULAR: texture_uniform = fmt::format("material.specular[{}]", specular_count++); break; default: utility::gl::throw_gl_error(GL_INVALID_ENUM, fmt::format("Invalid texture style '{}'", textures[i].style())); } // Activate the appropriate texture unit before setting the uniform glActiveTexture(GL_TEXTURE0 + i); // Set the texture uniform program.set_uniform(texture_uniform, i); // Bind the texture textures[i].bind(GL_TEXTURE0 + i); } // Set the actual number of diffuse and specular maps that we loaded program.set_uniform("material.diffuse_count", diffuse_count); program.set_uniform("material.specular_count", specular_count); // Render the mesh VAO.bind(); glDrawElements(GL_TRIANGLES, indices.size(), GL_UNSIGNED_INT, 0); VAO.unbind(); // Always good practice to set everything back to defaults once configured glActiveTexture(GL_TEXTURE0); } void setup_mesh() { // Bind the vertex array VAO.bind(); // Bind the vertex buffer and copy vertices to the device VBO.bind(); VBO.copy_data(vertices, GL_STATIC_DRAW); // Bind the element buffer and copy indices to the device EBO.bind(); EBO.copy_data(indices, GL_STATIC_DRAW); // Set up vertex attributes VAO.add_vertex_attrib<float>(0, 3, 8, GL_FLOAT, false, 0); VAO.add_vertex_attrib<float>(1, 3, 8, GL_FLOAT, false, 3); VAO.add_vertex_attrib<float>(2, 2, 8, GL_FLOAT, false, 6); // Unbind the vertex array, vertex buffer, and element buffer VAO.unbind(); VBO.unbind(); EBO.unbind(); initialised = true; } std::vector<Vertex> vertices; std::vector<unsigned int> indices; std::vector<utility::gl::texture> textures; private: utility::gl::vertex_array VAO; utility::gl::vertex_buffer VBO; utility::gl::element_buffer EBO; bool initialised; }; } // namespace mesh } // namespace utility #endif // UTILITY_MESH_HPP
[ "c3124185@uon.edu.au" ]
c3124185@uon.edu.au
a9cf220320ac14ba64f971262295bdbb5bd7a9a6
d62701bf63f1562b17a8dc1ecd0865d98bd5b36b
/win32Consl/SymolLink.h
de313b27582e3092e166ff04be6384ec59badd78
[]
no_license
weskitt/WindowsFormsApp1
47cce314d27d8e7cac955233a378fe1d12617460
9a1f43e3322e9f517085ccc4ba19d1bf3d395fa5
refs/heads/master
2021-01-20T15:03:01.645416
2017-09-22T04:22:41
2017-09-22T04:22:41
90,705,792
1
0
null
null
null
null
GB18030
C++
false
false
1,134
h
#pragma once using namespace std; class SymolLink { map<wchar_t, SymbolLinkAttr> subWords; map<wchar_t, SymbolLinkAttr>::iterator iter; //当wchar_t=‘空’,且SymbolLinkAttr->ALONE==true时,判断为独立词 public: //查找link操作 bool IfLink(wchar_t key) { if (subWords.find(key) == subWords.end()) return false; //不存在 else return true; //存在该key } public: //添加link操作, 仅供学习使用 void AddLink(wchar_t value, char type, const bool *flag) { if (subWords.find(value) == subWords.end()) { SymbolLinkAttr link(type, flag); subWords.insert(pair<wchar_t, SymbolLinkAttr>(value, link)); } else { subWords[value].count += 1; if (flag[ALONE]) subWords[value].flag[ALONE] = false; //设置该连接词性属性 if (flag[VERB]) subWords[value].flag[VERB] = true; //设置该连接词性属性 if (flag[NOUN]) subWords[value].flag[NOUN] = true; //设置该连接词性属性 if (flag[MOD]) subWords[value].flag[MOD] = true; //设置该连接词性属性 } } //默认构造 SymolLink() { } //默认析构 ~SymolLink() { } };
[ "weskitt@hotmail.com" ]
weskitt@hotmail.com
80fbd4ff8094194f60263e3e19492e3dc32c8f05
d16963744d81996734be49703c66fa5aa33df4b3
/src/1.0/RakNet/Source/ReadyEvent.cpp
31a45807b024be2b863a38bbad4131e715044de7
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
heinezen/IPcurve
e20645138e17d81ebc9639dd1c69f9213932a581
e4a7c75f25cedf95df3c9799d17a85bf7a3ca088
refs/heads/master
2021-01-11T15:13:24.860654
2018-11-23T14:55:34
2018-11-23T14:55:34
80,321,249
17
3
null
2018-11-22T18:56:13
2017-01-29T00:49:24
C
UTF-8
C++
false
false
20,021
cpp
#include "ReadyEvent.h" #include "RakPeerInterface.h" #include "BitStream.h" #include "MessageIdentifiers.h" #include "RakAssert.h" int ReadyEvent::ReadyEventNodeComp( const int &key, ReadyEvent::ReadyEventNode * const &data ) { if (key < data->eventId) return -1; else if (key==data->eventId) return 0; else return 1; } ReadyEvent::ReadyEvent() { channel=0; rakPeer=0; } ReadyEvent::~ReadyEvent() { Clear(); } bool ReadyEvent::SetEvent(int eventId, bool isReady) { bool objectExists; unsigned eventIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists==false) { // Totally new event CreateEvent(eventId, isReady); } else { ReadyEventNode *ren = readyEventNodeList[eventIndex]; if (ren->eventSignaled==isReady) return true; // Success - no change if (IsLocked(eventIndex) && isReady==false) return false; // We are finishing up the event, it's too late to change to unready now ren->eventSignaled=isReady; // Send to all systems in the waiting list flag status update BroadcastReadyUpdate(eventIndex); // Can occur is isReady is now set to true where it was set to false before if (IsAllReadyByIndex(eventIndex)) { // Send completed notification to all waiting systems BroadcastAllReady(eventIndex); } // Check if now completed, and if so, tell the user about it if (IsEventCompletedByIndex(eventIndex)) { PushCompletionPacket(ren->eventId); } } return true; } bool ReadyEvent::DeleteEvent(int eventId) { bool objectExists; unsigned eventIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { delete readyEventNodeList[eventIndex]; readyEventNodeList.RemoveAtIndex(eventIndex); return true; } return false; } bool ReadyEvent::IsEventSet(int eventId) { bool objectExists; unsigned eventIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { return readyEventNodeList[eventIndex]->eventSignaled; } return false; } bool ReadyEvent::IsEventCompletionProcessing(int eventId) const { bool objectExists; unsigned eventIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { return IsLocked(eventIndex); } return false; } bool ReadyEvent::IsEventCompleted(int eventId) const { bool objectExists; unsigned eventIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { return IsEventCompletedByIndex(eventIndex); } return false; } bool ReadyEvent::HasEvent(int eventId) { return readyEventNodeList.HasData(eventId); } unsigned ReadyEvent::GetEventListSize(void) const { return readyEventNodeList.Size(); } int ReadyEvent::GetEventAtIndex(unsigned index) const { return readyEventNodeList[index]->eventId; } bool ReadyEvent::AddToWaitList(int eventId, SystemAddress address) { bool eventExists; unsigned eventIndex = readyEventNodeList.GetIndexFromKey(eventId, &eventExists); if (eventExists==false) eventIndex=CreateEvent(eventId, false); if (IsLocked(eventIndex)) return false; // Not in the list, but event is already completed, or is starting to complete, and adding more waiters would fail this. if (address==UNASSIGNED_SYSTEM_ADDRESS) { unsigned i; unsigned numAdded=0; for (i=0; i < rakPeer->GetMaximumNumberOfPeers(); i++) { SystemAddress internalAddress = rakPeer->GetSystemAddressFromIndex(i); if (internalAddress!=UNASSIGNED_SYSTEM_ADDRESS) { numAdded+=AddToWaitListInternal(eventIndex, internalAddress); } } return numAdded>0; } else { return AddToWaitListInternal(eventIndex, address); } } bool ReadyEvent::RemoveFromWaitList(int eventId, SystemAddress address) { bool eventExists; unsigned eventIndex = readyEventNodeList.GetIndexFromKey(eventId, &eventExists); if (eventExists) { if (address==UNASSIGNED_SYSTEM_ADDRESS) { // Remove all waiters readyEventNodeList[eventIndex]->waitList.Clear(); } else { bool systemExists; unsigned systemIndex = readyEventNodeList[eventIndex]->waitList.GetIndexFromKey(address, &systemExists); if (systemExists) { bool isReady = IsAllReadyByIndex(eventIndex); bool isCompleted = IsEventCompletedByIndex(eventIndex); readyEventNodeList[eventIndex]->waitList.RemoveAtIndex(systemIndex); // Send completed notification to all waiting systems if (isReady==false && IsAllReadyByIndex(eventIndex)) BroadcastAllReady(eventIndex); if (isCompleted==false && IsEventCompletedByIndex(eventIndex)) PushCompletionPacket(readyEventNodeList[eventIndex]->eventId); return true; } } } return false; } bool ReadyEvent::IsInWaitList(int eventId, SystemAddress address) { bool objectExists; unsigned readyIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { return readyEventNodeList[readyIndex]->waitList.HasData(address); } return false; } unsigned ReadyEvent::GetWaitListSize(int eventId) const { bool objectExists; unsigned readyIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { return readyEventNodeList[readyIndex]->waitList.Size(); } return 0; } SystemAddress ReadyEvent::GetFromWaitListAtIndex(int eventId, unsigned index) const { bool objectExists; unsigned readyIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { return readyEventNodeList[readyIndex]->waitList[index]; } return UNASSIGNED_SYSTEM_ADDRESS; } ReadyEventSystemStatus ReadyEvent::GetReadyStatus(int eventId, SystemAddress address) { bool objectExists; unsigned readyIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { ReadyEventNode *ren = readyEventNodeList[readyIndex]; bool isWaiting = ren->waitList.HasData(address); bool isReady = ren->readySystemList.HasData(address); bool isCompleted = ren->completedSystemList.HasData(address); if (isWaiting==false) { if (isReady==true) return RES_READY_NOT_WAITING; if (isCompleted==true) return RES_ALL_READY_NOT_WAITING; return RES_NOT_WAITING; } else { if (isReady==true) return RES_READY; if (isCompleted) return RES_ALL_READY; return RES_WAITING; } } return RES_UNKNOWN_EVENT; } void ReadyEvent::SetSendChannel(unsigned char newChannel) { channel=newChannel; } void ReadyEvent::OnAttach(RakPeerInterface *peer) { rakPeer=peer; } PluginReceiveResult ReadyEvent::OnReceive(RakPeerInterface *peer, Packet *packet) { unsigned char packetIdentifier; packetIdentifier = ( unsigned char ) packet->data[ 0 ]; switch (packetIdentifier) { case ID_READY_EVENT_SET: OnReadyEventSet(peer, packet); return RR_CONTINUE_PROCESSING; case ID_READY_EVENT_UNSET: OnReadyEventUnset(peer, packet); return RR_CONTINUE_PROCESSING; case ID_READY_EVENT_ALL_SET: return OnReadyEventCompletedSystem(peer, packet); case ID_READY_EVENT_QUERY: OnReadyEventQuery(peer, packet); return RR_STOP_PROCESSING_AND_DEALLOCATE; case ID_DISCONNECTION_NOTIFICATION: case ID_CONNECTION_LOST: OnCloseConnection(peer, packet->systemAddress); return RR_CONTINUE_PROCESSING; } return RR_CONTINUE_PROCESSING; } void ReadyEvent::OnReadyEventSet(RakPeerInterface *peer, Packet *packet) { RakNet::BitStream incomingBitStream(packet->data, packet->length, false); incomingBitStream.IgnoreBits(8); int eventId; incomingBitStream.Read(eventId); bool objectExists; unsigned readyIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { ReadyEventNode *ren = readyEventNodeList[readyIndex]; if (ren->completedSystemList.HasData(packet->systemAddress)==false) { bool systemExists; unsigned systemIndex = ren->readySystemList.GetIndexFromKey(packet->systemAddress, &systemExists); if (systemExists==false) { bool wasLocked = IsLocked(readyIndex); ren->readySystemList.InsertAtIndex(packet->systemAddress, systemIndex); if (wasLocked==false && IsAllReadyByIndex(readyIndex)) { BroadcastAllReady(readyIndex); } } } else { // This shouldn't happen, where we go from completed to the lesser state of ready // except from user error (not calling DeleteEvent and reusing the event most likely) RakAssert(0); } } else { // Create this event readyIndex = CreateEvent(eventId,false); readyEventNodeList[readyIndex]->readySystemList.Insert(packet->systemAddress, packet->systemAddress, true); } } void ReadyEvent::OnReadyEventUnset(RakPeerInterface *peer, Packet *packet) { RakNet::BitStream incomingBitStream(packet->data, packet->length, false); incomingBitStream.IgnoreBits(8); int eventId; incomingBitStream.Read(eventId); bool objectExists; unsigned readyIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { ReadyEventNode *ren = readyEventNodeList[readyIndex]; if (ren->completedSystemList.HasData(packet->systemAddress)==false) { bool systemExists; unsigned systemIndex = ren->readySystemList.GetIndexFromKey(packet->systemAddress, &systemExists); if (systemExists==true) { bool wasLocked = IsLocked(readyIndex); if (wasLocked==false) ren->readySystemList.RemoveAtIndex(systemIndex); } } else { // This shouldn't happen, where we try to unset ready while already completed. // Except from user error (not calling DeleteEvent and reusing the event most likely) RakAssert(0); } } } PluginReceiveResult ReadyEvent::OnReadyEventCompletedSystem(RakPeerInterface *peer, Packet *packet) { RakNet::BitStream incomingBitStream(packet->data, packet->length, false); incomingBitStream.IgnoreBits(8); int eventId; incomingBitStream.Read(eventId); bool objectExists; unsigned readyIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { ReadyEventNode *ren = readyEventNodeList[readyIndex]; ren->readySystemList.RemoveIfExists(packet->systemAddress); unsigned systemIndex = ren->completedSystemList.GetIndexFromKey(packet->systemAddress, &objectExists); if (objectExists==false) { bool wasCompleted = IsEventCompletedByIndex(readyIndex); ren->completedSystemList.InsertAtIndex(packet->systemAddress, systemIndex); // Check if now completed, and if so, broadcast this out if (wasCompleted==false && IsEventCompletedByIndex(readyIndex)) { // Pass this message along to the user, equivalent to PushCompletionPacket(); return RR_CONTINUE_PROCESSING; } } } else { // Create this event readyIndex = CreateEvent(eventId,false); readyEventNodeList[readyIndex]->completedSystemList.Insert(packet->systemAddress, packet->systemAddress, true); } // Absorb this message, since we are not totally done with this event return RR_STOP_PROCESSING_AND_DEALLOCATE; } void ReadyEvent::OnReadyEventQuery(RakPeerInterface *peer, Packet *packet) { RakNet::BitStream incomingBitStream(packet->data, packet->length, false); incomingBitStream.IgnoreBits(8); int eventId; incomingBitStream.Read(eventId); bool objectExists; unsigned readyIndex = readyEventNodeList.GetIndexFromKey(eventId, &objectExists); if (objectExists) { SendReadyUpdate(readyIndex, packet->systemAddress); if (IsAllReadyByIndex(readyIndex)) SendAllReady(eventId, packet->systemAddress); } } void ReadyEvent::OnCloseConnection(RakPeerInterface *peer, SystemAddress systemAddress) { RemoveFromAllLists(systemAddress); } void ReadyEvent::OnShutdown(RakPeerInterface *peer) { Clear(); } bool ReadyEvent::AnyWaitersCompleted(unsigned eventIndex) const { ReadyEventNode *ren = readyEventNodeList[eventIndex]; // Return if all items in wait list are in the completed list unsigned waitListIndex, completedListIndex; completedListIndex=0; for (waitListIndex=0; waitListIndex < ren->waitList.Size(); waitListIndex++) { // Loop through the complete list and find the current address pointed to by the wait list while (1) { if (completedListIndex >= ren->completedSystemList.Size()) return false; // Finished with the complete list and found nothing if (ren->waitList[waitListIndex]==ren->completedSystemList[completedListIndex]) return true; // Found a completed address // Went past the sort position if (ren->waitList[waitListIndex]>ren->completedSystemList[completedListIndex]) break; // Check the next index completedListIndex++; } } // Finished with the waiting list and found nothing return false; } bool ReadyEvent::AllWaitersCompleted(unsigned eventIndex) const { ReadyEventNode *ren = readyEventNodeList[eventIndex]; // Return if all items in wait list are in the completed list unsigned waitListIndex, completedListIndex; completedListIndex=0; for (waitListIndex=0; waitListIndex < ren->waitList.Size(); waitListIndex++) { // Loop through the complete list and find the current address pointed to by the wait list while (1) { if (completedListIndex >= ren->completedSystemList.Size()) return false; // Items in wait list that are not in the completed list if (ren->waitList[waitListIndex]==ren->completedSystemList[completedListIndex++]) break; } } // All wait list elements in the completed list return true; } bool ReadyEvent::AllWaitersReady(unsigned eventIndex) const { ReadyEventNode *ren = readyEventNodeList[eventIndex]; // Return if all items in wait list are in the ready list unsigned waitListIndex, readyListIndex; readyListIndex=0; for (waitListIndex=0; waitListIndex < ren->waitList.Size(); waitListIndex++) { // Loop through the complete list and find the current address pointed to by the wait list while (1) { if (readyListIndex >= ren->readySystemList.Size()) return false; // Items in wait list that are not in the ready list if (ren->waitList[waitListIndex]==ren->readySystemList[readyListIndex++]) break; } } // All wait list elements in the ready list return true; } bool ReadyEvent::IsEventCompletedByIndex(unsigned eventIndex) const { ReadyEventNode *ren = readyEventNodeList[eventIndex]; if (ren->eventSignaled==false) return false; if (ren->waitList.Size()==0) return false; return AllWaitersCompleted(eventIndex); } void ReadyEvent::Clear(void) { unsigned i; for (i=0; i < readyEventNodeList.Size(); i++) { delete readyEventNodeList[i]; } readyEventNodeList.Clear(); } unsigned ReadyEvent::CreateEvent(int eventId, bool isReady) { ReadyEventNode *ren = new ReadyEventNode; ren->eventId=eventId; ren->eventSignaled=isReady; return readyEventNodeList.Insert(eventId, ren, true); } void ReadyEvent::SendAllReady(unsigned eventId, SystemAddress address) { RakNet::BitStream bs; bs.Write((MessageID)ID_READY_EVENT_ALL_SET); bs.Write(eventId); rakPeer->Send(&bs, HIGH_PRIORITY, RELIABLE_ORDERED, channel, address, false); } void ReadyEvent::BroadcastAllReady(unsigned eventIndex) { ReadyEventNode *ren = readyEventNodeList[eventIndex]; unsigned i; RakNet::BitStream bs; bs.Write((MessageID)ID_READY_EVENT_ALL_SET); bs.Write(ren->eventId); for (i=0; i < ren->waitList.Size(); i++) { rakPeer->Send(&bs, HIGH_PRIORITY, RELIABLE_ORDERED, channel, ren->waitList[i], false); } } void ReadyEvent::SendReadyUpdate(unsigned eventIndex, SystemAddress address) { ReadyEventNode *ren = readyEventNodeList[eventIndex]; RakNet::BitStream bs; // I do this rather than write true or false, so users that do not use BitStreams can still read the data if (ren->eventSignaled) bs.Write((MessageID)ID_READY_EVENT_SET); else bs.Write((MessageID)ID_READY_EVENT_UNSET); bs.Write(ren->eventId); rakPeer->Send(&bs, HIGH_PRIORITY, RELIABLE_ORDERED, channel, address, false); } void ReadyEvent::BroadcastReadyUpdate(unsigned eventIndex) { ReadyEventNode *ren = readyEventNodeList[eventIndex]; unsigned i; RakNet::BitStream bs; // I do this rather than write true or false, so users that do not use BitStreams can still read the data if (ren->eventSignaled) bs.Write((MessageID)ID_READY_EVENT_SET); else bs.Write((MessageID)ID_READY_EVENT_UNSET); bs.Write(ren->eventId); for (i=0; i < ren->waitList.Size(); i++) { rakPeer->Send(&bs, HIGH_PRIORITY, RELIABLE_ORDERED, channel, ren->waitList[i], false); } } void ReadyEvent::SendReadyStateQuery(unsigned eventId, SystemAddress address) { RakNet::BitStream bs; bs.Write((MessageID)ID_READY_EVENT_QUERY); bs.Write(eventId); rakPeer->Send(&bs, HIGH_PRIORITY, RELIABLE_ORDERED, channel, address, false); } void ReadyEvent::RemoveFromAllLists(SystemAddress address) { unsigned eventIndex; for (eventIndex=0; eventIndex < readyEventNodeList.Size(); eventIndex++) { bool systemExists; unsigned systemIndex = readyEventNodeList[eventIndex]->waitList.GetIndexFromKey(address, &systemExists); if (systemExists) { bool isReady = IsAllReadyByIndex(eventIndex); bool isCompleted = IsEventCompletedByIndex(eventIndex); readyEventNodeList[eventIndex]->waitList.RemoveAtIndex(systemIndex); // Send completed notification to all waiting systems if (isReady==false && IsAllReadyByIndex(eventIndex)) BroadcastAllReady(eventIndex); if (isCompleted==false && IsEventCompletedByIndex(eventIndex)) PushCompletionPacket(readyEventNodeList[eventIndex]->eventId); } systemIndex = readyEventNodeList[eventIndex]->readySystemList.GetIndexFromKey(address, &systemExists); if (systemExists) { readyEventNodeList[eventIndex]->readySystemList.RemoveAtIndex(systemIndex); } systemIndex = readyEventNodeList[eventIndex]->completedSystemList.GetIndexFromKey(address, &systemExists); if (systemExists) { readyEventNodeList[eventIndex]->completedSystemList.RemoveAtIndex(systemIndex); } } } bool ReadyEvent::AddToWaitListInternal(unsigned eventIndex, SystemAddress address) { // Add to the list ReadyEventNode *ren = readyEventNodeList[eventIndex]; bool systemExists; unsigned systemIndex = ren->waitList.GetIndexFromKey(address, &systemExists); if (systemExists==false) { // Add this system to the wait list ren->waitList.InsertAtIndex(address, systemIndex); // Update the new system with our ready status SendReadyUpdate(eventIndex, address); if (IsAllReadyByIndex(eventIndex)) { // Send completed notification to all waiting systems SendAllReady(eventIndex, address); } // Ask this new system for their status, so we can add them to the completed or ready list. // If no answer (such as they don't have the plugin) // They just stay in the waiting list SendReadyStateQuery(ren->eventId, address); return true; } else { // Already in the list return false; } } void ReadyEvent::PushCompletionPacket(unsigned eventId) { // Pass a packet to the user that we are now completed, as setting ourselves to signaled was the last thing being waited on Packet *p = rakPeer->AllocatePacket(sizeof(MessageID)+sizeof(int)); RakNet::BitStream bs(p->data, sizeof(MessageID)+sizeof(int), false); bs.SetWriteOffset(0); bs.Write((MessageID)ID_READY_EVENT_ALL_SET); bs.Write(eventId); rakPeer->PushBackPacket(p, false); } bool ReadyEvent::IsLocked(unsigned eventIndex) const { return AnyWaitersCompleted(eventIndex) || IsAllReadyByIndex(eventIndex); } bool ReadyEvent::IsAllReadyByIndex(unsigned eventIndex) const { ReadyEventNode *ren = readyEventNodeList[eventIndex]; return ren->eventSignaled && ren->waitList.Size()>0 && AllWaitersReady(eventIndex); }
[ "michi.hostettler@cern.ch" ]
michi.hostettler@cern.ch
4cf89974767686f9cc120f7691501e5df8a1997a
701e68c1497f5273354c5c967288a9c7d5242f9c
/examples/llnl-examples/zfpsynth/zfp5/tcase.h
5284e9e68bd59816acbdca26ace5e98678aa022f
[ "NCSA", "LicenseRef-scancode-unknown-license-reference" ]
permissive
anikau31/systemc-clang
b56673b42c90b14f8ac95ce027461533e9c198d5
b8e2c3721392988b26d53629dc19d5c52c1443e9
refs/heads/master
2023-09-01T15:27:15.538724
2023-08-28T16:07:21
2023-08-28T16:07:21
12,997,501
66
23
NOASSERTION
2023-05-26T16:25:29
2013-09-21T15:39:56
C++
UTF-8
C++
false
false
15,311
h
#ifndef TCASE_H #define TCASE_H #include <algorithm> // min, max #include "../shared2/zhw.h" #include "zbatch.h" #define CEIL(n,s) ((((n)+((s)-1)) / (s)) * (s)) //----------------------------------------------------------------------------- // CPU cycle counter //----------------------------------------------------------------------------- #if defined(_X86_) || defined(__x86_64__) typedef union { unsigned long long ui64; struct {unsigned int lo, hi;} ui32; } tick_t; #define tget(t) __asm__ __volatile__ ("lfence\n\trdtsc" : "=a" ((t).ui32.lo), "=d"((t).ui32.hi)) #define tval(t) ((t).ui64) #else #define tget(t) #define tval(t) 0 #endif //----------------------------------------------------------------------------- // Test case base //----------------------------------------------------------------------------- #include <cstdint> // uint64_t, UINT64_MAX #include <cstring> // memset #include <ios> // hex, uppercase #include <iomanip> // setfill, setw template<typename R, typename U, int DIM> class tcase { public: static constexpr int block_len = zhw::fpblk_sz(DIM); // par: ZFP parameters // blocks: number of ZFP blocks of type R to process tcase(const zpar &_par, unsigned _blocks) { R1 = new R[block_len*_blocks]; R2 = new R[block_len*_blocks]; // assume bits already multiple of sizeof(U) EN = new U[_par.maxbits/(sizeof(U)*8)*_blocks]; par = _par; blocks = _blocks; } virtual ~tcase() { delete[] R1; delete[] R2; delete[] EN; } // p is pointer to data, sz is size in bytes, ww is word width in bytes void dump(const void *p, unsigned sz, unsigned ww) { const unsigned char *cp = reinterpret_cast<const unsigned char *>(p); // const R *fp = reinterpret_cast<const R *>(p); auto f = cout.flags(); // save stream format state cout << " -- index:data" << endl; cout << std::hex << std::uppercase; for (unsigned i = 0; i < sz; i += ww) { cout << " " << std::setfill('0') << std::setw((log2rz(sz-1)+1+3)/4) << i << ":" ; for (unsigned n = std::min(sz-i, ww); n > 0; n--) { cout << std::setfill('0') << std::setw(2) << int{cp[i+n-1]}; } // cout << ':' << fp[i/ww]; cout << endl; } cout.flags(f); // restore stream format state } // p1 is reference, ok if s2 < s1, error if s2 > s1 and data not zero bool compare(const void *p1, unsigned s1, const void *p2, unsigned s2) { const unsigned char *cp1 = reinterpret_cast<const unsigned char *>(p1); const unsigned char *cp2 = reinterpret_cast<const unsigned char *>(p2); for (unsigned i = 0; i < s1 && i < s2; i++) { if (cp1[i] != cp2[i]) { unsigned b = std::max(0, (int)i-4); // show 8 bytes around difference unsigned e = std::min(i+4, std::min(s1, s2)); auto f = cout.flags(); // save stream format state cout << " -- difference found (index:expected:actual)" << endl; cout << std::hex << std::uppercase; for (unsigned j = b; j < e; j++) { // hex & uppercase are sticky, setfill & setw are not cout << " " << std::setfill('0') << std::setw((log2rz(e)+1+3)/4) << j; cout << ":" << std::setfill('0') << std::setw(2) << int{cp1[j]}; cout << ":" << std::setfill('0') << std::setw(2) << int{cp2[j]}; if (j == i) cout << " *"; cout << endl; } cout.flags(f); // restore stream format state return true; } } if (s2 > s1) { for (unsigned i = s1; i < s2; i++) if (cp2[i] != 0) return true; } return false; } // get pointer to the real data buffer1 R* get_buf_R1(void) { return R1; } // get pointer to the real data buffer2 R* get_buf_R2(void) { return R2; } // get pointer to the encoded data buffer U* get_buf_EN(void) { return EN; } // check the real data buffer2 for match with buffer1 virtual bool check_R2(void) { return false; // return true on error } // check the data in the encoded buffer, length in elements U virtual bool check_EN(unsigned len, uint64_t &eticks) { bool retval = false; #if defined(ZCHK) // bsize must be multiple of ZFP stream word size (8) unsigned bsize = CEIL(par.maxbits/8*blocks, 8); char *bptr = new char[bsize]; // alloc buffer std::memset(bptr, 0, bsize); eticks = UINT64_MAX; for (int i = 0; i < 6; i++) { tick_t t0, t1; tget(t0); zfp_encode<R,DIM>(par, bptr, bsize, R1, blocks); tget(t1); uint64_t etmp = tval(t1) - tval(t0); if (etmp < eticks) eticks = etmp; } if (compare(bptr, bsize, EN, len*sizeof(U))) retval = true; // cout << " Compressed data (reference)" << endl; // dump(bptr, bsize, sizeof(U)); delete[] bptr; // free buffer #else cout << " -- warning: encoded data not checked" << endl; #endif return retval; // return true on error } protected: // three buffers for sequence of R1 -encode-> EN -decode-> R2 R *R1; // Uncompressed real data (input to encode) U *EN; // Compressed data (output from encode, input to decode) R *R2; // Uncompressed real data (output from decode) zpar par; // ZFP parameters unsigned blocks; // number of ZFP blocks of type R to process }; //----------------------------------------------------------------------------- // Test case 1; custom //----------------------------------------------------------------------------- #include <cstring> // memcpy typedef unsigned long long ull; template<int DIM> struct tcase1_base { static const ull eblock[]; // encoded block }; template<typename R, typename U, int DIM> class tcase1 : public tcase<R,U,DIM>, public tcase1_base<DIM> { using tcase<R,U,DIM>::block_len; using tcase<R,U,DIM>::R1; using tcase<R,U,DIM>::EN; using tcase<R,U,DIM>::blocks; using tcase<R,U,DIM>::compare; using tcase1_base<DIM>::eblock; public: tcase1(const zpar &par, unsigned blocks) : tcase<R,U,DIM>::tcase(par, blocks), tcase1_base<DIM>::tcase1_base() { // assert sizeof(R) is equal to sizeof(ull) // static_assert(sizeof(R)==sizeof(ull), "This case only supports 64-bit FP width"); if (sizeof(R) != sizeof(ull)) {cout << " -- test 1 not supported" << endl; return;} for (unsigned j = 0; j < blocks; j++) { std::memcpy(R1+j*block_len, rblock, block_len*sizeof(R)); } } #if !defined(ZCHK) bool check_EN(unsigned len, double &esec) { unsigned cblen = len / blocks; esec = 0.0; for (unsigned j = 0; j < blocks; j++) { if (compare(eblock, sizeof(eblock), EN+j*cblen, cblen*sizeof(U))) { cout << " in block: " << j << endl; return true; } } return false; } #endif static const ull rblock[]; // real block }; /* example 3D block of (reinterpreted) doubles */ template<typename R, typename U, int DIM> const ull tcase1<R,U,DIM>::rblock[] = { 0xbf7c3a7bb8495ca9ULL, 0xbf79f9d9058ffdafULL, 0xbf77c7abd0b61999ULL, 0xbf75a42c806bd1daULL, 0xbf738f8f740b8ea8ULL, 0xbf718a050399fef8ULL, 0xbf6f2772ff8c30feULL, 0xbf6b59aa63d22f68ULL, 0xbf67aaf8b80cff9eULL, 0xbf641b9e71983592ULL, 0xbf60abd3f723f2b7ULL, 0xbf5ab7934169cc04ULL, 0xbf54574f6f4897d3ULL, 0xbf4c6e39da7fb99bULL, 0xbf40ae5826a893d1ULL, 0xbf25bce8e19d48e1ULL, 0x3f253bfed65904d7ULL, 0x3f3f18ab46a04cf3ULL, 0x3f4948e7cb74278bULL, 0x3f51427b51aeec2eULL, 0x3f55a0716d8b4b6bULL, 0x3f59be96aeaac56fULL, 0x3f5d9d3ba7bfd327ULL, 0x3f609e608469e93eULL, 0x3f624ecbcfa3832cULL, 0x3f63e0202ae84b4dULL, 0x3f6552a61a3f4812ULL, 0x3f66a6ae305af268ULL, 0x3f67dc910e9935bcULL, 0x3f68f4af65036ff7ULL, 0x3f69ef71f24e7182ULL, 0x3f6acd4983da7d43ULL, 0x3f6b8eaef5b348a0ULL, 0x3f6c3423328ffb7aULL, 0x3f6cbe2f33d33034ULL, 0x3f6d2d64018af3acULL, 0x3f6d825ab270c540ULL, 0x3f6dbdb46be996ccULL, 0x3f6de01a6205cca9ULL, 0x3f6dea3dd7813dafULL, 0x3f6ddcd81dc33335ULL, 0x3f6db8aa94de690fULL, 0x3f6d7e7eab910d8fULL, 0x3f6d2f25df44c187ULL, 0x3f6ccb79bc0e9844ULL, 0x3f6c545bdcaf1795ULL, 0x3f6bcab5ea9237c4ULL, 0x3f6b2f799dcf639bULL, 0x3f6a83a0bd297862ULL, 0x3f69c82d1e0ec5deULL, 0x3f68fe28a4990e53ULL, 0x3f6826a5438d8685ULL, 0x3f6742bcfc5cd5b2ULL, 0x3f665391df231599ULL, 0x3f655a4e0aa7d278ULL, 0x3f645823ac5e0b09ULL, 0x3f634e4d00643085ULL, 0x3f623e0c518426a3ULL, 0x3f6128abf933439aULL, 0x3f600f7e5f92501cULL, 0x3f5de7bbf6db0eb7ULL, 0x3f5bae5aa4792e11ULL, 0x3f5975adf0453ea2ULL, 0x3f57409b1fdc65c4ULL }; // full specialization of member variable template<> const ull tcase1_base<1>::eblock[] = { 0x44226b6814c8b7f1ULL, 0x7a0bce452dd3f926ULL, 0x307f612513b680c3ULL, 0x000002859db30dfeULL, 0x0000000000000000ULL }; template<> const ull tcase1_base<2>::eblock[] = { 0x003884d03245c7f1ULL, 0x091d010ad047252cULL, 0x5285d1806620da84ULL, 0x40d7881600be02d1ULL, 0xa072df0e1e27bc09ULL, 0x90f423f80e05bfdeULL, 0xa28c611b70c42f1aULL, 0x25ba68972981ebd6ULL, 0x05da951068d286aeULL, 0x7b0228252a17f908ULL, 0x020f8973bda689e0ULL, 0x13b505feba999afdULL, 0x00000000014fe72fULL, 0x0000000000000000ULL }; template<> const ull tcase1_base<3>::eblock[] = { 0x0cd0aa15419447f1ULL, 0x710010017d4c0e54ULL, 0x620600333202028dULL, 0x02040073e404000aULL, 0x008c800c044b5433ULL, 0x4001496a0010a813ULL, 0x524807588a001585ULL, 0x95be1fe880651a42ULL, 0x6cd5b1b17003fa12ULL, 0xdbe4ded0e0040760ULL, 0xffc2134fc814c1e3ULL, 0x9f1e471f9062b6cfULL, 0xafc3aecc29c74eeeULL, 0xf250ef5002361ddfULL, 0x5879fbb553895d2dULL, 0xa7a9eb9ab6b77a10ULL, 0xffb97428d21bbccaULL, 0xc4796652882b7906ULL, 0xc07cf56bd0667207ULL, 0xea619acd01489503ULL, 0x1a90a8e2c5d12080ULL, 0x9ca654114706fadeULL, 0x13757b758b935484ULL, 0x129ad98283279ba9ULL, 0x76e8b21276cbad2bULL, 0x6ff340306eae1b32ULL, 0xd1f71976575ec676ULL, 0x03003e66d927a06eULL, 0xc5c2f4f098a38800ULL, 0xe77f4d73e0a1c499ULL, 0x11543a41f4245173ULL, 0x49cb8b8e9a9783b9ULL, 0x6a490f2b19988b7eULL, 0x0000000000000325ULL, 0x0000000000000000ULL }; #if 0 // partial specialization of template class leaves out other methods template<typename R, typename U> class tcase1<R,U,1> { const ull eblock[] = { 0x44226b6814c8b7f1ULL, 0x7a0bce452dd3f926ULL, 0x307f612513b680c3ULL, 0x000002859db30dfeULL, 0x0000000000000000ULL}; }; #endif //----------------------------------------------------------------------------- // Test case 2: all zero //----------------------------------------------------------------------------- template<typename R, typename U, int DIM> class tcase2 : public tcase<R,U,DIM> { using tcase<R,U,DIM>::block_len; using tcase<R,U,DIM>::R1; public: tcase2(const zpar &par, unsigned blocks) : tcase<R,U,DIM>::tcase(par, blocks) { for (unsigned i = 0; i < blocks*block_len; i++) { R1[i] = 0; } } }; //----------------------------------------------------------------------------- // Test case 3: range from zero upward //----------------------------------------------------------------------------- #include <limits> // numeric_limits template<typename R, typename U, int DIM> class tcase3 : public tcase<R,U,DIM> { using tcase<R,U,DIM>::block_len; using tcase<R,U,DIM>::R1; public: tcase3(const zpar &par, unsigned blocks) : tcase<R,U,DIM>::tcase(par, blocks) { R tmp = 0; R inc = std::numeric_limits<R>::has_denorm == std::denorm_present ? std::numeric_limits<R>::denorm_min() : std::numeric_limits<R>::min(); for (unsigned i = 0; i < blocks*block_len; i++) { R1[i] = tmp; tmp += inc; } } }; //----------------------------------------------------------------------------- // Test case 4: range from norm down to minimum (or subnorm) //----------------------------------------------------------------------------- #include <limits> // numeric_limits #include <cmath> // ldexp template<typename R, typename U, int DIM> class tcase4 : public tcase<R,U,DIM> { using tcase<R,U,DIM>::block_len; using tcase<R,U,DIM>::R1; public: tcase4(const zpar &par, unsigned blocks) : tcase<R,U,DIM>::tcase(par, blocks) { // limit scale to exponent range unsigned erng = std::numeric_limits<R>::max_exponent - std::numeric_limits<R>::min_exponent; int scale = std::min(blocks*block_len-1, erng); if (std::numeric_limits<R>::has_denorm == std::denorm_present) scale -= 4; R tmp = std::ldexp(std::numeric_limits<R>::min(), scale); for (unsigned i = 0; i < blocks*block_len; i++) { R1[i] = tmp; tmp /= 2; } } }; //----------------------------------------------------------------------------- // Test case 5: range from norm up to max //----------------------------------------------------------------------------- #include <limits> // numeric_limits #include <cmath> // ldexp, isfinite template<typename R, typename U, int DIM> class tcase5 : public tcase<R,U,DIM> { using tcase<R,U,DIM>::block_len; using tcase<R,U,DIM>::R1; public: tcase5(const zpar &par, unsigned blocks) : tcase<R,U,DIM>::tcase(par, blocks) { // limit scale to exponent range unsigned erng = std::numeric_limits<R>::max_exponent - std::numeric_limits<R>::min_exponent; int scale = std::min(blocks*block_len-1, erng); R tmp = std::ldexp(std::numeric_limits<R>::max(), -scale); for (unsigned i = 0; i < blocks*block_len; i++) { R1[i] = std::isfinite(tmp) ? tmp : std::numeric_limits<R>::max(); tmp *= 2; } } }; //----------------------------------------------------------------------------- // Test case 6: function //----------------------------------------------------------------------------- #include <limits> // numeric_limits #include <cmath> // pow #include <cstdlib> // rand, srand template<typename R, typename U, int DIM> class tcase6 : public tcase<R,U,DIM> { using tcase<R,U,DIM>::block_len; using tcase<R,U,DIM>::R1; // given flat index i, return blocked ZFP order index idx, n: axis length void order(unsigned *idx, unsigned n, unsigned i) { unsigned b = n/4; // axis length in blocks unsigned bidx = i / block_len; unsigned nidx = i % block_len; for (unsigned d = 0; d < DIM; d++) { idx[d] = (bidx % b)*4 + nidx % 4; bidx /= b; nidx /= 4; } idx[DIM] = bidx; } #if 1 // function(idx) = e*(x^3 + y^3 + ...) R equation(unsigned *idx, unsigned n) { R e(2.718281828459045235360287471352662497757247093699959574966967627724); R tmp = 0; for (unsigned d = 0; d < DIM; d++) { R val = R(idx[d]) - R(n/2); // -n/2 <= val < +n/2 tmp += val*val*val; } tmp *= e; return tmp; } #else // function(idx) = x/DIM + y/DIM + ...) R equation(unsigned *idx, unsigned n) { R tmp = 0; for (unsigned d = 0; d < DIM; d++) { R val = 2*R(idx[d])/n - 1; // -1 <= val < +1 tmp += val/DIM; } return tmp; } #endif public: tcase6(const zpar &par, unsigned blocks) : tcase<R,U,DIM>::tcase(par, blocks) { unsigned entries = blocks*block_len; unsigned n = (unsigned)(pow(blocks,1.0/DIM)+0.5)*4; // axis length R vmin(+std::numeric_limits<R>::max()); R vmax(-std::numeric_limits<R>::max()); std::srand(47); unsigned idx[DIM+1] = {0}; // index for each dimension + 1 for carry for (unsigned i = 0; i < entries; i++) { order(idx, n, i); R tmp = equation(idx, n); tmp += tmp * (2*R(std::rand())/RAND_MAX-1)*1e-3; // add 0.1% jitter if (tmp < vmin) vmin = tmp; if (tmp > vmax) vmax = tmp; R1[i] = tmp; // cout << ' ' << i << ' '; // for (unsigned j = 0; j <= DIM; j++) cout << idx[DIM-j] << ':'; // cout << ' ' << tmp << endl; } cout << "axis length: " << n << endl; cout << "array min : " << vmin << endl; cout << "array max : " << vmax << endl; } }; #endif // TCASE_H /* TODO: * Test case with infinity. */
[ "zhwu95@gmail.com" ]
zhwu95@gmail.com
d954851cc8cef0a09582fdf71e265033cfa070fd
7ba5b5d0f18f939aa22f8651b18e464e9696a0bb
/platform/posix/timer.cc
c51aa2a3f442c17df522c6fa634975a9f17b5676
[]
no_license
nzmichaelh/nppilot
626d9b6124fbbfdc5dcd36028d60673d96514728
5c03c4f5cb5fb801601548966254cc6d0a888aa9
refs/heads/master
2021-01-10T18:07:34.560811
2014-02-22T18:33:31
2014-02-22T18:33:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
598
cc
#include "timer.h" #include "debug.h" struct Binding; struct Binding { Timer* ptimer; const Timer::Fixed* pfixed; }; Binding _bindings[50]; void Timer::tick_all() { for (Binding* pbinding = _bindings; pbinding->ptimer != nullptr; pbinding++) { pbinding->ptimer->tick(*pbinding->pfixed); } } void Timer::bind(Timer& timer, const Timer::Fixed& fixed) { for (Binding* pbinding = _bindings; true; pbinding++) { if (pbinding->ptimer == nullptr) { pbinding->ptimer = &timer; pbinding->pfixed = &fixed; break; } } }
[ "michaelh@juju.net.nz" ]
michaelh@juju.net.nz
de2bacd17f5d1a8e6ece07853b434f6fb052e647
dc4595c159b2023a4ee399951406da7109860c98
/tools/bench/sources/bench_vector_atan.cpp
7d88d8a6b5ca642f351e0639d32b8b27955a4449
[ "MIT" ]
permissive
nfrechette/rtm
ef447fb41d2d997ed622973309cd4446551f0d2b
5cba8603d2efb32895e2961e91f56999f04ed79b
refs/heads/develop
2023-08-14T09:59:06.464608
2023-07-30T15:32:49
2023-07-30T17:24:45
155,649,584
613
37
MIT
2023-09-07T02:09:43
2018-11-01T02:17:19
C++
UTF-8
C++
false
false
7,987
cpp
//////////////////////////////////////////////////////////////////////////////// // The MIT License (MIT) // // Copyright (c) 2020 Nicholas Frechette & Realtime Math contributors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. //////////////////////////////////////////////////////////////////////////////// #include <benchmark/benchmark.h> #include <rtm/vector4f.h> using namespace rtm; RTM_FORCE_NOINLINE vector4f RTM_SIMD_CALL vector_atan_scalar(vector4f_arg0 input) RTM_NO_EXCEPT { scalarf x = scalar_atan(scalarf(vector_get_x(input))); scalarf y = scalar_atan(scalarf(vector_get_y(input))); scalarf z = scalar_atan(scalarf(vector_get_z(input))); scalarf w = scalar_atan(scalarf(vector_get_w(input))); return vector_set(x, y, z, w); } #if defined(RTM_SSE2_INTRINSICS) RTM_FORCE_NOINLINE vector4f RTM_SIMD_CALL vector_atan_sse2(vector4f_arg0 input) RTM_NO_EXCEPT { // Use a degree 13 minimax approximation polynomial // See: GPGPU Programming for Games and Science (David H. Eberly) // Discard our sign, we'll restore it later const __m128i abs_mask = _mm_set_epi32(0x7FFFFFFFULL, 0x7FFFFFFFULL, 0x7FFFFFFFULL, 0x7FFFFFFFULL); __m128 abs_value = _mm_and_ps(input, _mm_castsi128_ps(abs_mask)); // Compute our value __m128 is_larger_than_one = _mm_cmpgt_ps(abs_value, _mm_set_ps1(1.0F)); __m128 reciprocal = vector_reciprocal(abs_value); __m128 x = vector_select(is_larger_than_one, reciprocal, abs_value); __m128 x2 = _mm_mul_ps(x, x); __m128 result = _mm_add_ps(_mm_mul_ps(x2, _mm_set_ps1(7.2128853633444123e-3F)), _mm_set_ps1(-3.5059680836411644e-2F)); result = _mm_add_ps(_mm_mul_ps(result, x2), _mm_set_ps1(8.1675882859940430e-2F)); result = _mm_add_ps(_mm_mul_ps(result, x2), _mm_set_ps1(-1.3374657325451267e-1F)); result = _mm_add_ps(_mm_mul_ps(result, x2), _mm_set_ps1(1.9856563505717162e-1F)); result = _mm_add_ps(_mm_mul_ps(result, x2), _mm_set_ps1(-3.3324998579202170e-1F)); result = _mm_add_ps(_mm_mul_ps(result, x2), _mm_set_ps1(1.0F)); result = _mm_mul_ps(result, x); __m128 remapped = _mm_sub_ps(_mm_set_ps1(rtm::constants::half_pi()), result); // pi/2 - result result = vector_select(is_larger_than_one, remapped, result); // Keep the original sign return _mm_or_ps(result, _mm_and_ps(input, _mm_set_ps1(-0.0F))); } #endif #if defined(RTM_NEON_INTRINSICS) RTM_FORCE_NOINLINE vector4f RTM_SIMD_CALL vector_atan_neon(vector4f_arg0 input) RTM_NO_EXCEPT { // Use a degree 13 minimax approximation polynomial // See: GPGPU Programming for Games and Science (David H. Eberly) // Discard our sign, we'll restore it later float32x4_t abs_value = vabsq_f32(input); // Compute our value uint32x4_t is_larger_than_one = vcagtq_f32(input, vdupq_n_f32(1.0F)); float32x4_t reciprocal = vector_reciprocal(abs_value); float32x4_t x = vector_select(is_larger_than_one, reciprocal, abs_value); float32x4_t x2 = vmulq_f32(x, x); #if defined(RTM_NEON64_INTRINSICS) float32x4_t result = vfmaq_n_f32(vdupq_n_f32(-3.5059680836411644e-2F), x2, 7.2128853633444123e-3F); result = vfmaq_f32(vdupq_n_f32(8.1675882859940430e-2F), result, x2); result = vfmaq_f32(vdupq_n_f32(-1.3374657325451267e-1F), result, x2); result = vfmaq_f32(vdupq_n_f32(1.9856563505717162e-1F), result, x2); result = vfmaq_f32(vdupq_n_f32(-3.3324998579202170e-1F), result, x2); result = vfmaq_f32(vdupq_n_f32(1.0F), result, x2); #else float32x4_t result = vmlaq_n_f32(vdupq_n_f32(-3.5059680836411644e-2F), x2, 7.2128853633444123e-3F); result = vmlaq_f32(vdupq_n_f32(8.1675882859940430e-2F), result, x2); result = vmlaq_f32(vdupq_n_f32(-1.3374657325451267e-1F), result, x2); result = vmlaq_f32(vdupq_n_f32(1.9856563505717162e-1F), result, x2); result = vmlaq_f32(vdupq_n_f32(-3.3324998579202170e-1F), result, x2); result = vmlaq_f32(vdupq_n_f32(1.0F), result, x2); #endif result = vmulq_f32(result, x); float32x4_t remapped = vsubq_f32(vdupq_n_f32(rtm::constants::half_pi()), result); // pi/2 - result result = vector_select(is_larger_than_one, remapped, result); // Keep the original sign return vreinterpretq_f32_u32(vorrq_u32(vreinterpretq_u32_f32(result), vandq_u32(vreinterpretq_u32_f32(input), vreinterpretq_u32_f32(vdupq_n_f32(-0.0F))))); } #endif static void bm_vector_atan_scalar(benchmark::State& state) { vector4f v0 = vector_set(-0.134f); vector4f v1 = vector_set(0.134f); vector4f v2 = vector_set(-0.134f); vector4f v3 = vector_set(0.134f); vector4f v4 = vector_set(-0.134f); vector4f v5 = vector_set(0.134f); vector4f v6 = vector_set(-0.134f); vector4f v7 = vector_set(0.134f); for (auto _ : state) { v0 = vector_atan_scalar(v0); v1 = vector_atan_scalar(v1); v2 = vector_atan_scalar(v2); v3 = vector_atan_scalar(v3); v4 = vector_atan_scalar(v4); v5 = vector_atan_scalar(v5); v6 = vector_atan_scalar(v6); v7 = vector_atan_scalar(v7); } benchmark::DoNotOptimize(v0); benchmark::DoNotOptimize(v1); benchmark::DoNotOptimize(v2); benchmark::DoNotOptimize(v3); benchmark::DoNotOptimize(v4); benchmark::DoNotOptimize(v5); benchmark::DoNotOptimize(v6); benchmark::DoNotOptimize(v7); } BENCHMARK(bm_vector_atan_scalar); #if defined(RTM_SSE2_INTRINSICS) static void bm_vector_atan_sse2(benchmark::State& state) { vector4f v0 = vector_set(-0.134f); vector4f v1 = vector_set(0.134f); vector4f v2 = vector_set(-0.134f); vector4f v3 = vector_set(0.134f); vector4f v4 = vector_set(-0.134f); vector4f v5 = vector_set(0.134f); vector4f v6 = vector_set(-0.134f); vector4f v7 = vector_set(0.134f); for (auto _ : state) { v0 = vector_atan_sse2(v0); v1 = vector_atan_sse2(v1); v2 = vector_atan_sse2(v2); v3 = vector_atan_sse2(v3); v4 = vector_atan_sse2(v4); v5 = vector_atan_sse2(v5); v6 = vector_atan_sse2(v6); v7 = vector_atan_sse2(v7); } benchmark::DoNotOptimize(v0); benchmark::DoNotOptimize(v1); benchmark::DoNotOptimize(v2); benchmark::DoNotOptimize(v3); benchmark::DoNotOptimize(v4); benchmark::DoNotOptimize(v5); benchmark::DoNotOptimize(v6); benchmark::DoNotOptimize(v7); } BENCHMARK(bm_vector_atan_sse2); #endif #if defined(RTM_NEON_INTRINSICS) static void bm_vector_atan_neon(benchmark::State& state) { vector4f v0 = vector_set(-0.134f); vector4f v1 = vector_set(0.134f); vector4f v2 = vector_set(-0.134f); vector4f v3 = vector_set(0.134f); vector4f v4 = vector_set(-0.134f); vector4f v5 = vector_set(0.134f); vector4f v6 = vector_set(-0.134f); vector4f v7 = vector_set(0.134f); for (auto _ : state) { v0 = vector_atan_neon(v0); v1 = vector_atan_neon(v1); v2 = vector_atan_neon(v2); v3 = vector_atan_neon(v3); v4 = vector_atan_neon(v4); v5 = vector_atan_neon(v5); v6 = vector_atan_neon(v6); v7 = vector_atan_neon(v7); } benchmark::DoNotOptimize(v0); benchmark::DoNotOptimize(v1); benchmark::DoNotOptimize(v2); benchmark::DoNotOptimize(v3); benchmark::DoNotOptimize(v4); benchmark::DoNotOptimize(v5); benchmark::DoNotOptimize(v6); benchmark::DoNotOptimize(v7); } BENCHMARK(bm_vector_atan_neon); #endif
[ "zeno490@gmail.com" ]
zeno490@gmail.com
e44a1ec3e20fabaec680d1b916e21bb8e085bf4c
2bc835b044f306fca1affd1c61b8650b06751756
/urlmon/utils/afxtempl.h
571a193bbc9e94c16c1e3ca767584227b2aadc1c
[]
no_license
KernelPanic-OpenSource/Win2K3_NT_inetcore
bbb2354d95a51a75ce2dfd67b18cfb6b21c94939
75f614d008bfce1ea71e4a727205f46b0de8e1c3
refs/heads/master
2023-04-04T02:55:25.139618
2021-04-14T05:25:01
2021-04-14T05:25:01
357,780,123
1
0
null
null
null
null
UTF-8
C++
false
false
54,601
h
// This is a part of the Microsoft Foundation Classes C++ library. // Copyright (C) 1992-1995 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. #ifndef __AFXTEMPL_H__ #define __AFXTEMPL_H__ #ifndef __AFXPLEX_H__ //#include <afxplex_.h> //#include "..\utils\afxplex_.h" #endif #ifdef unix #include <mainwin.h> #endif /* unix */ #ifdef _AFX_MINREBUILD #pragma component(minrebuild, off) #endif #ifndef _AFX_FULLTYPEINFO #pragma component(mintypeinfo, on) #endif #ifdef _AFX_PACKING #pragma pack(push, _AFX_PACKING) #endif #ifdef _DEBUG static char _szAfxTempl[] = "afxtempl.h"; #undef THIS_FILE #define THIS_FILE _szAfxTempl #endif #ifndef ALL_WARNINGS #pragma warning(disable: 4114) #endif ///////////////////////////////////////////////////////////////////////////// // global helpers (can be overridden) /* use our new for now #ifdef new #undef new #define _REDEF_NEW #endif #ifndef _INC_NEW #include <new.h> #endif */ template<class TYPE> inline void AFXAPI ConstructElements(TYPE* pElements, int nCount) { ASSERT(nCount == 0 || AfxIsValidAddress(pElements, nCount * sizeof(TYPE))); // first do bit-wise zero initialization memset((void*)pElements, 0, nCount * sizeof(TYPE)); // then call the constructor(s) for (; nCount--; pElements++) { } } template<class TYPE> inline void AFXAPI DestructElements(TYPE* pElements, int nCount) { ASSERT(nCount == 0 || AfxIsValidAddress(pElements, nCount * sizeof(TYPE))); // call the destructor(s) for (; nCount--; pElements++) pElements->~TYPE(); } template<class TYPE> inline void AFXAPI CopyElements(TYPE* pDest, const TYPE* pSrc, int nCount) { ASSERT(nCount == 0 || AfxIsValidAddress(pDest, nCount * sizeof(TYPE))); ASSERT(nCount == 0 || AfxIsValidAddress(pSrc, nCount * sizeof(TYPE))); // default is element-copy using assignment while (nCount--) *pDest++ = *pSrc; } template<class TYPE> void AFXAPI SerializeElements(CArchive& ar, TYPE* pElements, int nCount) { ASSERT(nCount == 0 || AfxIsValidAddress(pElements, nCount * sizeof(TYPE))); // default is bit-wise read/write if (ar.IsStoring()) ar.Write((void*)pElements, nCount * sizeof(TYPE)); else ar.Read((void*)pElements, nCount * sizeof(TYPE)); } #ifdef _DEBUG #ifndef unix template<class TYPE> void AFXAPI DumpElements(CDumpContext& dc, const TYPE* pElements, int nCount) { ASSERT(nCount == 0 || AfxIsValidAddress(pElements, nCount * sizeof(TYPE))); &dc; // not used pElements; // not used nCount; // not used // default does nothing } #endif /* unix */ #endif template<class TYPE, class ARG_TYPE> BOOL AFXAPI CompareElements(const TYPE* pElement1, const ARG_TYPE* pElement2) { ASSERT(AfxIsValidAddress(pElement1, sizeof(TYPE))); ASSERT(AfxIsValidAddress(pElement2, sizeof(ARG_TYPE))); return *pElement1 == *pElement2; } template<class ARG_KEY> inline UINT AFXAPI HashKey(ARG_KEY key) { // default identity hash - works for most primitive values return PtrToUlong((void*)(DWORD_PTR)key) >> 4; } // special versions for CString template<> void AFXAPI ConstructElements(CString* pElements, int nCount); template<> void AFXAPI DestructElements(CString* pElements, int nCount); template<> void AFXAPI CopyElements(CString* pDest, const CString* pSrc, int nCount); template<> void AFXAPI SerializeElements(CArchive& ar, CString* pElements, int nCount); template<> UINT AFXAPI HashKey(LPCTSTR key); // forward declarations class COleVariant; struct tagVARIANT; // special versions for COleVariant /* void AFXAPI ConstructElements(COleVariant* pElements, int nCount); void AFXAPI DestructElements(COleVariant* pElements, int nCount); void AFXAPI CopyElements(COleVariant* pDest, const COleVariant* pSrc, int nCount); void AFXAPI SerializeElements(CArchive& ar, COleVariant* pElements, int nCount); void AFXAPI DumpElements(CDumpContext& dc, COleVariant* pElements, int nCount); UINT AFXAPI HashKey(const struct tagVARIANT& var); */ // special versions for guids //void AFXAPI ConstructElements(GUID* pElements, int nCount); //void AFXAPI DestructElements(GUID* pElements, int nCount); //void AFXAPI CopyElements(GUID* pDest, const GUID* pSrc, int nCount); //void AFXAPI SerializeElements(CArchive& ar, GUID* pElements, int nCount); //UINT AFXAPI HashKey(GUID key); template<> inline UINT AFXAPI HashKey(GUID Key) { UINT hash = 0; BYTE FAR* lpb = (BYTE FAR*)&Key; UINT cbKey = sizeof(GUID); while (cbKey-- != 0) hash = 257 * hash + *lpb++; return hash; } template<> inline UINT AFXAPI HashKey(SYSTEMTIME Key) { UINT hash = 0; BYTE FAR* lpb = (BYTE FAR*)&Key; UINT cbKey = sizeof(SYSTEMTIME); while (cbKey-- != 0) hash = 257 * hash + *lpb++; return hash; } /* inline UINT AFXAPI HashKey(IXY Key) { UINT hash = 0; BYTE FAR* lpb = (BYTE FAR*)&Key; UINT cbKey = sizeof(IXY); while (cbKey-- != 0) hash = 257 * hash + *lpb++; return hash; } */ //#define new DEBUG_NEW ///////////////////////////////////////////////////////////////////////////// // CArray<TYPE, ARG_TYPE> template<class TYPE, class ARG_TYPE> class CArray : public CObject { public: // Construction CArray(); // Attributes int GetSize() const; int GetUpperBound() const; void SetSize(int nNewSize, int nGrowBy = -1); // Operations // Clean up void FreeExtra(); void RemoveAll(); // Accessing elements TYPE GetAt(int nIndex) const; void SetAt(int nIndex, ARG_TYPE newElement); TYPE& ElementAt(int nIndex); // Direct Access to the element data (may return NULL) const TYPE* GetData() const; TYPE* GetData(); // Potentially growing the array void SetAtGrow(int nIndex, ARG_TYPE newElement); int Add(ARG_TYPE newElement); int Append(const CArray& src); void Copy(const CArray& src); // overloaded operator helpers TYPE operator[](int nIndex) const; TYPE& operator[](int nIndex); // Operations that move elements around void InsertAt(int nIndex, ARG_TYPE newElement, int nCount = 1); void RemoveAt(int nIndex, int nCount = 1); void InsertAt(int nStartIndex, CArray* pNewArray); // Implementation protected: TYPE* m_pData; // the actual array of data int m_nSize; // # of elements (upperBound - 1) int m_nMaxSize; // max allocated int m_nGrowBy; // grow amount public: ~CArray(); void Serialize(CArchive&); #ifdef _DEBUG void Dump(CDumpContext&) const; void AssertValid() const; #endif }; ///////////////////////////////////////////////////////////////////////////// // CArray<TYPE, ARG_TYPE> inline functions template<class TYPE, class ARG_TYPE> inline int CArray<TYPE, ARG_TYPE>::GetSize() const { return m_nSize; } template<class TYPE, class ARG_TYPE> inline int CArray<TYPE, ARG_TYPE>::GetUpperBound() const { return m_nSize-1; } template<class TYPE, class ARG_TYPE> inline void CArray<TYPE, ARG_TYPE>::RemoveAll() { SetSize(0, -1); } template<class TYPE, class ARG_TYPE> inline TYPE CArray<TYPE, ARG_TYPE>::GetAt(int nIndex) const { ASSERT(nIndex >= 0 && nIndex < m_nSize); return m_pData[nIndex]; } template<class TYPE, class ARG_TYPE> inline void CArray<TYPE, ARG_TYPE>::SetAt(int nIndex, ARG_TYPE newElement) { ASSERT(nIndex >= 0 && nIndex < m_nSize); m_pData[nIndex] = newElement; } template<class TYPE, class ARG_TYPE> inline TYPE& CArray<TYPE, ARG_TYPE>::ElementAt(int nIndex) { ASSERT(nIndex >= 0 && nIndex < m_nSize); return m_pData[nIndex]; } template<class TYPE, class ARG_TYPE> inline const TYPE* CArray<TYPE, ARG_TYPE>::GetData() const { return (const TYPE*)m_pData; } template<class TYPE, class ARG_TYPE> inline TYPE* CArray<TYPE, ARG_TYPE>::GetData() { return (TYPE*)m_pData; } template<class TYPE, class ARG_TYPE> inline int CArray<TYPE, ARG_TYPE>::Add(ARG_TYPE newElement) { int nIndex = m_nSize; SetAtGrow(nIndex, newElement); return nIndex; } template<class TYPE, class ARG_TYPE> inline TYPE CArray<TYPE, ARG_TYPE>::operator[](int nIndex) const { return GetAt(nIndex); } template<class TYPE, class ARG_TYPE> inline TYPE& CArray<TYPE, ARG_TYPE>::operator[](int nIndex) { return ElementAt(nIndex); } ///////////////////////////////////////////////////////////////////////////// // CArray<TYPE, ARG_TYPE> out-of-line functions template<class TYPE, class ARG_TYPE> CArray<TYPE, ARG_TYPE>::CArray() { m_pData = NULL; m_nSize = m_nMaxSize = m_nGrowBy = 0; } template<class TYPE, class ARG_TYPE> CArray<TYPE, ARG_TYPE>::~CArray() { ASSERT_VALID(this); if (m_pData != NULL) { DestructElements(m_pData, m_nSize); delete[] (BYTE*)m_pData; } } template<class TYPE, class ARG_TYPE> void CArray<TYPE, ARG_TYPE>::SetSize(int nNewSize, int nGrowBy) { ASSERT_VALID(this); ASSERT(nNewSize >= 0); if (nGrowBy != -1) m_nGrowBy = nGrowBy; // set new size if (nNewSize == 0) { // shrink to nothing if (m_pData != NULL) { DestructElements(m_pData, m_nSize); delete[] (BYTE*)m_pData; m_pData = NULL; } m_nSize = m_nMaxSize = 0; } else if (m_pData == NULL) { // create one with exact size #ifdef SIZE_T_MAX ASSERT(nNewSize <= SIZE_T_MAX/sizeof(TYPE)); // no overflow #endif m_pData = (TYPE*) new BYTE[nNewSize * sizeof(TYPE)]; ConstructElements(m_pData, nNewSize); m_nSize = m_nMaxSize = nNewSize; } else if (nNewSize <= m_nMaxSize) { // it fits if (nNewSize > m_nSize) { // initialize the new elements ConstructElements(&m_pData[m_nSize], nNewSize-m_nSize); } else if (m_nSize > nNewSize) { // destroy the old elements DestructElements(&m_pData[nNewSize], m_nSize-nNewSize); } m_nSize = nNewSize; } else { // otherwise, grow array int nGrowBy = m_nGrowBy; if (nGrowBy == 0) { // heuristically determine growth when nGrowBy == 0 // (this avoids heap fragmentation in many situations) nGrowBy = m_nSize / 8; nGrowBy = (nGrowBy < 4) ? 4 : ((nGrowBy > 1024) ? 1024 : nGrowBy); } int nNewMax; if (nNewSize < m_nMaxSize + nGrowBy) nNewMax = m_nMaxSize + nGrowBy; // granularity else nNewMax = nNewSize; // no slush ASSERT(nNewMax >= m_nMaxSize); // no wrap around #ifdef SIZE_T_MAX ASSERT(nNewMax <= SIZE_T_MAX/sizeof(TYPE)); // no overflow #endif TYPE* pNewData = (TYPE*) new BYTE[nNewMax * sizeof(TYPE)]; // copy new data from old memcpy(pNewData, m_pData, m_nSize * sizeof(TYPE)); // construct remaining elements ASSERT(nNewSize > m_nSize); ConstructElements(&pNewData[m_nSize], nNewSize-m_nSize); // get rid of old stuff (note: no destructors called) delete[] (BYTE*)m_pData; m_pData = pNewData; m_nSize = nNewSize; m_nMaxSize = nNewMax; } } template<class TYPE, class ARG_TYPE> int CArray<TYPE, ARG_TYPE>::Append(const CArray& src) { ASSERT_VALID(this); ASSERT(this != &src); // cannot append to itself int nOldSize = m_nSize; SetSize(m_nSize + src.m_nSize); CopyElements(m_pData + nOldSize, src.m_pData, src.m_nSize); return nOldSize; } template<class TYPE, class ARG_TYPE> void CArray<TYPE, ARG_TYPE>::Copy(const CArray& src) { ASSERT_VALID(this); ASSERT(this != &src); // cannot append to itself SetSize(src.m_nSize); CopyElements(m_pData, src.m_pData, src.m_nSize); } template<class TYPE, class ARG_TYPE> void CArray<TYPE, ARG_TYPE>::FreeExtra() { ASSERT_VALID(this); if (m_nSize != m_nMaxSize) { // shrink to desired size #ifdef SIZE_T_MAX ASSERT(m_nSize <= SIZE_T_MAX/sizeof(TYPE)); // no overflow #endif TYPE* pNewData = NULL; if (m_nSize != 0) { pNewData = (TYPE*) new BYTE[m_nSize * sizeof(TYPE)]; // copy new data from old memcpy(pNewData, m_pData, m_nSize * sizeof(TYPE)); } // get rid of old stuff (note: no destructors called) delete[] (BYTE*)m_pData; m_pData = pNewData; m_nMaxSize = m_nSize; } } template<class TYPE, class ARG_TYPE> void CArray<TYPE, ARG_TYPE>::SetAtGrow(int nIndex, ARG_TYPE newElement) { ASSERT_VALID(this); ASSERT(nIndex >= 0); if (nIndex >= m_nSize) SetSize(nIndex+1, -1); m_pData[nIndex] = newElement; } template<class TYPE, class ARG_TYPE> void CArray<TYPE, ARG_TYPE>::InsertAt(int nIndex, ARG_TYPE newElement, int nCount /*=1*/) { ASSERT_VALID(this); ASSERT(nIndex >= 0); // will expand to meet need ASSERT(nCount > 0); // zero or negative size not allowed if (nIndex >= m_nSize) { // adding after the end of the array SetSize(nIndex + nCount, -1); // grow so nIndex is valid } else { // inserting in the middle of the array int nOldSize = m_nSize; SetSize(m_nSize + nCount, -1); // grow it to new size // destroy intial data before copying over it DestructElements(&m_pData[nOldSize], nCount); // shift old data up to fill gap memmove(&m_pData[nIndex+nCount], &m_pData[nIndex], (nOldSize-nIndex) * sizeof(TYPE)); // re-init slots we copied from ConstructElements(&m_pData[nIndex], nCount); } // insert new value in the gap ASSERT(nIndex + nCount <= m_nSize); while (nCount--) m_pData[nIndex++] = newElement; } template<class TYPE, class ARG_TYPE> void CArray<TYPE, ARG_TYPE>::RemoveAt(int nIndex, int nCount) { ASSERT_VALID(this); ASSERT(nIndex >= 0); ASSERT(nCount >= 0); ASSERT(nIndex + nCount <= m_nSize); // just remove a range int nMoveCount = m_nSize - (nIndex + nCount); DestructElements(&m_pData[nIndex], nCount); if (nMoveCount) memcpy(&m_pData[nIndex], &m_pData[nIndex + nCount], nMoveCount * sizeof(TYPE)); m_nSize -= nCount; } template<class TYPE, class ARG_TYPE> void CArray<TYPE, ARG_TYPE>::InsertAt(int nStartIndex, CArray* pNewArray) { ASSERT_VALID(this); ASSERT(pNewArray != NULL); ASSERT_VALID(pNewArray); ASSERT(nStartIndex >= 0); if (pNewArray->GetSize() > 0) { InsertAt(nStartIndex, pNewArray->GetAt(0), pNewArray->GetSize()); for (int i = 0; i < pNewArray->GetSize(); i++) SetAt(nStartIndex + i, pNewArray->GetAt(i)); } } template<class TYPE, class ARG_TYPE> void CArray<TYPE, ARG_TYPE>::Serialize(CArchive& ar) { ASSERT_VALID(this); #ifndef unix // UNIX found decl commented out in coll.hxx CObject::Serialize(ar); #else MwBugCheck(); #endif /* unix */ #ifndef unix if (ar.IsStoring()) { ar.WriteCount(m_nSize); } else { DWORD nOldSize = ar.ReadCount(); SetSize(nOldSize, -1); } SerializeElements(ar, m_pData, m_nSize); #endif /* unix */ } #ifdef _DEBUG #ifndef unix template<class TYPE, class ARG_TYPE> void CArray<TYPE, ARG_TYPE>::Dump(CDumpContext& dc) const { CObject::Dump(dc); dc << "with " << m_nSize << " elements"; if (dc.GetDepth() > 0) { dc << "\n"; DumpElements(dc, m_pData, m_nSize); } dc << "\n"; } #endif /* unix */ template<class TYPE, class ARG_TYPE> void CArray<TYPE, ARG_TYPE>::AssertValid() const { CObject::AssertValid(); if (m_pData == NULL) { ASSERT(m_nSize == 0); ASSERT(m_nMaxSize == 0); } else { ASSERT(m_nSize >= 0); ASSERT(m_nMaxSize >= 0); ASSERT(m_nSize <= m_nMaxSize); ASSERT(AfxIsValidAddress(m_pData, m_nMaxSize * sizeof(TYPE))); } } #endif //_DEBUG #define _LIST_DEFINED_ #ifndef _LIST_DEFINED_ ///////////////////////////////////////////////////////////////////////////// // CList<TYPE, ARG_TYPE> template<class TYPE, class ARG_TYPE> class CList : public CObject { protected: struct CNode { CNode* pNext; CNode* pPrev; TYPE data; }; public: // Construction CList(int nBlockSize = 10); // Attributes (head and tail) // count of elements int GetCount() const; BOOL IsEmpty() const; // peek at head or tail TYPE& GetHead(); TYPE GetHead() const; TYPE& GetTail(); TYPE GetTail() const; // Operations // get head or tail (and remove it) - don't call on empty list ! TYPE RemoveHead(); TYPE RemoveTail(); // add before head or after tail POSITION AddHead(ARG_TYPE newElement); POSITION AddTail(ARG_TYPE newElement); // add another list of elements before head or after tail void AddHead(CList* pNewList); void AddTail(CList* pNewList); // remove all elements void RemoveAll(); // iteration POSITION GetHeadPosition() const; POSITION GetTailPosition() const; TYPE& GetNext(POSITION& rPosition); // return *Position++ TYPE GetNext(POSITION& rPosition) const; // return *Position++ TYPE& GetPrev(POSITION& rPosition); // return *Position-- TYPE GetPrev(POSITION& rPosition) const; // return *Position-- // getting/modifying an element at a given position TYPE& GetAt(POSITION position); TYPE GetAt(POSITION position) const; void SetAt(POSITION pos, ARG_TYPE newElement); void RemoveAt(POSITION position); // inserting before or after a given position POSITION InsertBefore(POSITION position, ARG_TYPE newElement); POSITION InsertAfter(POSITION position, ARG_TYPE newElement); // helper functions (note: O(n) speed) POSITION Find(ARG_TYPE searchValue, POSITION startAfter = NULL) const; // defaults to starting at the HEAD, return NULL if not found POSITION FindIndex(int nIndex) const; // get the 'nIndex'th element (may return NULL) // Implementation protected: CNode* m_pNodeHead; CNode* m_pNodeTail; int m_nCount; CNode* m_pNodeFree; struct CPlex* m_pBlocks; int m_nBlockSize; CNode* NewNode(CNode*, CNode*); void FreeNode(CNode*); public: ~CList(); void Serialize(CArchive&); #ifdef _DEBUG void Dump(CDumpContext&) const; void AssertValid() const; #endif }; ///////////////////////////////////////////////////////////////////////////// // CList<TYPE, ARG_TYPE> inline functions template<class TYPE, class ARG_TYPE> inline int CList<TYPE, ARG_TYPE>::GetCount() const { return m_nCount; } template<class TYPE, class ARG_TYPE> inline BOOL CList<TYPE, ARG_TYPE>::IsEmpty() const { return m_nCount == 0; } template<class TYPE, class ARG_TYPE> inline TYPE& CList<TYPE, ARG_TYPE>::GetHead() { ASSERT(m_pNodeHead != NULL); return m_pNodeHead->data; } template<class TYPE, class ARG_TYPE> inline TYPE CList<TYPE, ARG_TYPE>::GetHead() const { ASSERT(m_pNodeHead != NULL); return m_pNodeHead->data; } template<class TYPE, class ARG_TYPE> inline TYPE& CList<TYPE, ARG_TYPE>::GetTail() { ASSERT(m_pNodeTail != NULL); return m_pNodeTail->data; } template<class TYPE, class ARG_TYPE> inline TYPE CList<TYPE, ARG_TYPE>::GetTail() const { ASSERT(m_pNodeTail != NULL); return m_pNodeTail->data; } template<class TYPE, class ARG_TYPE> inline POSITION CList<TYPE, ARG_TYPE>::GetHeadPosition() const { return (POSITION) m_pNodeHead; } template<class TYPE, class ARG_TYPE> inline POSITION CList<TYPE, ARG_TYPE>::GetTailPosition() const { return (POSITION) m_pNodeTail; } template<class TYPE, class ARG_TYPE> inline TYPE& CList<TYPE, ARG_TYPE>::GetNext(POSITION& rPosition) // return *Position++ { CNode* pNode = (CNode*) rPosition; ASSERT(AfxIsValidAddress(pNode, sizeof(CNode))); rPosition = (POSITION) pNode->pNext; return pNode->data; } template<class TYPE, class ARG_TYPE> inline TYPE CList<TYPE, ARG_TYPE>::GetNext(POSITION& rPosition) const // return *Position++ { CNode* pNode = (CNode*) rPosition; ASSERT(AfxIsValidAddress(pNode, sizeof(CNode))); rPosition = (POSITION) pNode->pNext; return pNode->data; } template<class TYPE, class ARG_TYPE> inline TYPE& CList<TYPE, ARG_TYPE>::GetPrev(POSITION& rPosition) // return *Position-- { CNode* pNode = (CNode*) rPosition; ASSERT(AfxIsValidAddress(pNode, sizeof(CNode))); rPosition = (POSITION) pNode->pPrev; return pNode->data; } template<class TYPE, class ARG_TYPE> inline TYPE CList<TYPE, ARG_TYPE>::GetPrev(POSITION& rPosition) const // return *Position-- { CNode* pNode = (CNode*) rPosition; ASSERT(AfxIsValidAddress(pNode, sizeof(CNode))); rPosition = (POSITION) pNode->pPrev; return pNode->data; } template<class TYPE, class ARG_TYPE> inline TYPE& CList<TYPE, ARG_TYPE>::GetAt(POSITION position) { CNode* pNode = (CNode*) position; ASSERT(AfxIsValidAddress(pNode, sizeof(CNode))); return pNode->data; } template<class TYPE, class ARG_TYPE> inline TYPE CList<TYPE, ARG_TYPE>::GetAt(POSITION position) const { CNode* pNode = (CNode*) position; ASSERT(AfxIsValidAddress(pNode, sizeof(CNode))); return pNode->data; } template<class TYPE, class ARG_TYPE> inline void CList<TYPE, ARG_TYPE>::SetAt(POSITION pos, ARG_TYPE newElement) { CNode* pNode = (CNode*) pos; ASSERT(AfxIsValidAddress(pNode, sizeof(CNode))); pNode->data = newElement; } template<class TYPE, class ARG_TYPE> CList<TYPE, ARG_TYPE>::CList(int nBlockSize) { ASSERT(nBlockSize > 0); m_nCount = 0; m_pNodeHead = m_pNodeTail = m_pNodeFree = NULL; m_pBlocks = NULL; m_nBlockSize = nBlockSize; } template<class TYPE, class ARG_TYPE> void CList<TYPE, ARG_TYPE>::RemoveAll() { ASSERT_VALID(this); // destroy elements CNode* pNode; for (pNode = m_pNodeHead; pNode != NULL; pNode = pNode->pNext) DestructElements(&pNode->data, 1); m_nCount = 0; m_pNodeHead = m_pNodeTail = m_pNodeFree = NULL; m_pBlocks->FreeDataChain(); m_pBlocks = NULL; } template<class TYPE, class ARG_TYPE> CList<TYPE, ARG_TYPE>::~CList() { RemoveAll(); ASSERT(m_nCount == 0); } ///////////////////////////////////////////////////////////////////////////// // Node helpers // // Implementation note: CNode's are stored in CPlex blocks and // chained together. Free blocks are maintained in a singly linked list // using the 'pNext' member of CNode with 'm_pNodeFree' as the head. // Used blocks are maintained in a doubly linked list using both 'pNext' // and 'pPrev' as links and 'm_pNodeHead' and 'm_pNodeTail' // as the head/tail. // // We never free a CPlex block unless the List is destroyed or RemoveAll() // is used - so the total number of CPlex blocks may grow large depending // on the maximum past size of the list. // template<class TYPE, class ARG_TYPE> typename CList<TYPE, ARG_TYPE>::CNode* CList<TYPE, ARG_TYPE>::NewNode(CNode* pPrev, CNode* pNext) { if (m_pNodeFree == NULL) { // add another block CPlex* pNewBlock = CPlex::Create(m_pBlocks, m_nBlockSize, sizeof(CNode)); // chain them into free list CNode* pNode = (CNode*) pNewBlock->data(); // free in reverse order to make it easier to debug pNode += m_nBlockSize - 1; for (int i = m_nBlockSize-1; i >= 0; i--, pNode--) { pNode->pNext = m_pNodeFree; m_pNodeFree = pNode; } } ASSERT(m_pNodeFree != NULL); // we must have something CList::CNode* pNode = m_pNodeFree; m_pNodeFree = m_pNodeFree->pNext; pNode->pPrev = pPrev; pNode->pNext = pNext; m_nCount++; ASSERT(m_nCount > 0); // make sure we don't overflow ConstructElements(&pNode->data, 1); return pNode; } template<class TYPE, class ARG_TYPE> void CList<TYPE, ARG_TYPE>::FreeNode(CNode* pNode) { DestructElements(&pNode->data, 1); pNode->pNext = m_pNodeFree; m_pNodeFree = pNode; m_nCount--; ASSERT(m_nCount >= 0); // make sure we don't underflow // if no more elements, cleanup completely if (m_nCount == 0) RemoveAll(); } template<class TYPE, class ARG_TYPE> POSITION CList<TYPE, ARG_TYPE>::AddHead(ARG_TYPE newElement) { ASSERT_VALID(this); CNode* pNewNode = NewNode(NULL, m_pNodeHead); pNewNode->data = newElement; if (m_pNodeHead != NULL) m_pNodeHead->pPrev = pNewNode; else m_pNodeTail = pNewNode; m_pNodeHead = pNewNode; return (POSITION) pNewNode; } template<class TYPE, class ARG_TYPE> POSITION CList<TYPE, ARG_TYPE>::AddTail(ARG_TYPE newElement) { ASSERT_VALID(this); CNode* pNewNode = NewNode(m_pNodeTail, NULL); pNewNode->data = newElement; if (m_pNodeTail != NULL) m_pNodeTail->pNext = pNewNode; else m_pNodeHead = pNewNode; m_pNodeTail = pNewNode; return (POSITION) pNewNode; } template<class TYPE, class ARG_TYPE> void CList<TYPE, ARG_TYPE>::AddHead(CList* pNewList) { ASSERT_VALID(this); ASSERT(pNewList != NULL); ASSERT_VALID(pNewList); // add a list of same elements to head (maintain order) POSITION pos = pNewList->GetTailPosition(); while (pos != NULL) AddHead(pNewList->GetPrev(pos)); } template<class TYPE, class ARG_TYPE> void CList<TYPE, ARG_TYPE>::AddTail(CList* pNewList) { ASSERT_VALID(this); ASSERT(pNewList != NULL); ASSERT_VALID(pNewList); // add a list of same elements POSITION pos = pNewList->GetHeadPosition(); while (pos != NULL) AddTail(pNewList->GetNext(pos)); } template<class TYPE, class ARG_TYPE> TYPE CList<TYPE, ARG_TYPE>::RemoveHead() { ASSERT_VALID(this); ASSERT(m_pNodeHead != NULL); // don't call on empty list !!! ASSERT(AfxIsValidAddress(m_pNodeHead, sizeof(CNode))); CNode* pOldNode = m_pNodeHead; TYPE returnValue = pOldNode->data; m_pNodeHead = pOldNode->pNext; if (m_pNodeHead != NULL) m_pNodeHead->pPrev = NULL; else m_pNodeTail = NULL; FreeNode(pOldNode); return returnValue; } template<class TYPE, class ARG_TYPE> TYPE CList<TYPE, ARG_TYPE>::RemoveTail() { ASSERT_VALID(this); ASSERT(m_pNodeTail != NULL); // don't call on empty list !!! ASSERT(AfxIsValidAddress(m_pNodeTail, sizeof(CNode))); CNode* pOldNode = m_pNodeTail; TYPE returnValue = pOldNode->data; m_pNodeTail = pOldNode->pPrev; if (m_pNodeTail != NULL) m_pNodeTail->pNext = NULL; else m_pNodeHead = NULL; FreeNode(pOldNode); return returnValue; } template<class TYPE, class ARG_TYPE> POSITION CList<TYPE, ARG_TYPE>::InsertBefore(POSITION position, ARG_TYPE newElement) { ASSERT_VALID(this); if (position == NULL) return AddHead(newElement); // insert before nothing -> head of the list // Insert it before position CNode* pOldNode = (CNode*) position; CNode* pNewNode = NewNode(pOldNode->pPrev, pOldNode); pNewNode->data = newElement; if (pOldNode->pPrev != NULL) { ASSERT(AfxIsValidAddress(pOldNode->pPrev, sizeof(CNode))); pOldNode->pPrev->pNext = pNewNode; } else { ASSERT(pOldNode == m_pNodeHead); m_pNodeHead = pNewNode; } pOldNode->pPrev = pNewNode; return (POSITION) pNewNode; } template<class TYPE, class ARG_TYPE> POSITION CList<TYPE, ARG_TYPE>::InsertAfter(POSITION position, ARG_TYPE newElement) { ASSERT_VALID(this); if (position == NULL) return AddTail(newElement); // insert after nothing -> tail of the list // Insert it before position CNode* pOldNode = (CNode*) position; ASSERT(AfxIsValidAddress(pOldNode, sizeof(CNode))); CNode* pNewNode = NewNode(pOldNode, pOldNode->pNext); pNewNode->data = newElement; if (pOldNode->pNext != NULL) { ASSERT(AfxIsValidAddress(pOldNode->pNext, sizeof(CNode))); pOldNode->pNext->pPrev = pNewNode; } else { ASSERT(pOldNode == m_pNodeTail); m_pNodeTail = pNewNode; } pOldNode->pNext = pNewNode; return (POSITION) pNewNode; } template<class TYPE, class ARG_TYPE> void CList<TYPE, ARG_TYPE>::RemoveAt(POSITION position) { ASSERT_VALID(this); CNode* pOldNode = (CNode*) position; ASSERT(AfxIsValidAddress(pOldNode, sizeof(CNode))); // remove pOldNode from list if (pOldNode == m_pNodeHead) { m_pNodeHead = pOldNode->pNext; } else { ASSERT(AfxIsValidAddress(pOldNode->pPrev, sizeof(CNode))); pOldNode->pPrev->pNext = pOldNode->pNext; } if (pOldNode == m_pNodeTail) { m_pNodeTail = pOldNode->pPrev; } else { ASSERT(AfxIsValidAddress(pOldNode->pNext, sizeof(CNode))); pOldNode->pNext->pPrev = pOldNode->pPrev; } FreeNode(pOldNode); } template<class TYPE, class ARG_TYPE> POSITION CList<TYPE, ARG_TYPE>::FindIndex(int nIndex) const { ASSERT_VALID(this); ASSERT(nIndex >= 0); if (nIndex >= m_nCount) return NULL; // went too far CNode* pNode = m_pNodeHead; while (nIndex--) { ASSERT(AfxIsValidAddress(pNode, sizeof(CNode))); pNode = pNode->pNext; } return (POSITION) pNode; } template<class TYPE, class ARG_TYPE> POSITION CList<TYPE, ARG_TYPE>::Find(ARG_TYPE searchValue, POSITION startAfter) const { ASSERT_VALID(this); CNode* pNode = (CNode*) startAfter; if (pNode == NULL) { pNode = m_pNodeHead; // start at head } else { ASSERT(AfxIsValidAddress(pNode, sizeof(CNode))); pNode = pNode->pNext; // start after the one specified } for (; pNode != NULL; pNode = pNode->pNext) if (CompareElements(&pNode->data, &searchValue)) return (POSITION)pNode; return NULL; } template<class TYPE, class ARG_TYPE> void CList<TYPE, ARG_TYPE>::Serialize(CArchive& ar) { ASSERT_VALID(this); #ifndef unix // UNIX found decl commented out in coll.hxx CObject::Serialize(ar); #else MwBugCheck(); #endif /* unix */ #ifndef unix if (ar.IsStoring()) { ar.WriteCount(m_nCount); for (CNode* pNode = m_pNodeHead; pNode != NULL; pNode = pNode->pNext) { ASSERT(AfxIsValidAddress(pNode, sizeof(CNode))); SerializeElements(ar, &pNode->data, 1); } } else { DWORD nNewCount = ar.ReadCount(); TYPE newData; while (nNewCount--) { SerializeElements(ar, &newData, 1); AddTail(newData); } } #endif /* unix */ } #ifdef _DEBUG template<class TYPE, class ARG_TYPE> void CList<TYPE, ARG_TYPE>::Dump(CDumpContext& dc) const { CObject::Dump(dc); dc << "with " << m_nCount << " elements"; if (dc.GetDepth() > 0) { POSITION pos = GetHeadPosition(); while (pos != NULL) { dc << "\n"; DumpElements(dc, &((CList*)this)->GetNext(pos), 1); } } dc << "\n"; } template<class TYPE, class ARG_TYPE> void CList<TYPE, ARG_TYPE>::AssertValid() const { CObject::AssertValid(); if (m_nCount == 0) { // empty list ASSERT(m_pNodeHead == NULL); ASSERT(m_pNodeTail == NULL); } else { // non-empty list ASSERT(AfxIsValidAddress(m_pNodeHead, sizeof(CNode))); ASSERT(AfxIsValidAddress(m_pNodeTail, sizeof(CNode))); } } #endif //_DEBUG #endif //LIST_DEFINED ///////////////////////////////////////////////////////////////////////////// // CMap<KEY, ARG_KEY, VALUE, ARG_VALUE> template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> class CMap : public CObject { #ifndef unix protected: #else // If this was not made public we get complier warnings // that CMap<T,...>::CAssoc is not accessible from file scope // which means functions cant return CNode pointers public: #endif /* unix */ // Association struct CAssoc { CAssoc* pNext; UINT nHashValue; // needed for efficient iteration KEY key; VALUE value; }; public: // Construction CMap(int nBlockSize = 10); // Attributes // number of elements int GetCount() const; BOOL IsEmpty() const; // Lookup BOOL Lookup(ARG_KEY key, VALUE& rValue) const; // Operations // Lookup and add if not there VALUE& operator[](ARG_KEY key); // add a new (key, value) pair void SetAt(ARG_KEY key, ARG_VALUE newValue); // removing existing (key, ?) pair BOOL RemoveKey(ARG_KEY key); void RemoveAll(); // iterating all (key, value) pairs POSITION GetStartPosition() const; void GetNextAssoc(POSITION& rNextPosition, KEY& rKey, VALUE& rValue) const; // advanced features for derived classes UINT GetHashTableSize() const; void InitHashTable(UINT hashSize, BOOL bAllocNow = TRUE); // Implementation protected: CAssoc** m_pHashTable; UINT m_nHashTableSize; int m_nCount; CAssoc* m_pFreeList; struct CPlex* m_pBlocks; int m_nBlockSize; CAssoc* NewAssoc(); void FreeAssoc(CAssoc*); CAssoc* GetAssocAt(ARG_KEY, UINT&) const; public: ~CMap(); void Serialize(CArchive&); #ifdef _DEBUG void Dump(CDumpContext&) const; void AssertValid() const; #endif }; ///////////////////////////////////////////////////////////////////////////// // CMap<KEY, ARG_KEY, VALUE, ARG_VALUE> inline functions template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> inline int CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::GetCount() const { return m_nCount; } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> inline BOOL CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::IsEmpty() const { return m_nCount == 0; } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> inline void CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::SetAt(ARG_KEY key, ARG_VALUE newValue) { (*this)[key] = newValue; } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> inline POSITION CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::GetStartPosition() const { return (m_nCount == 0) ? NULL : BEFORE_START_POSITION; } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> inline UINT CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::GetHashTableSize() const { return m_nHashTableSize; } ///////////////////////////////////////////////////////////////////////////// // CMap<KEY, ARG_KEY, VALUE, ARG_VALUE> out-of-line functions template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::CMap(int nBlockSize) { ASSERT(nBlockSize > 0); m_pHashTable = NULL; m_nHashTableSize = 17; // default size m_nCount = 0; m_pFreeList = NULL; m_pBlocks = NULL; m_nBlockSize = nBlockSize; } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> void CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::InitHashTable( UINT nHashSize, BOOL bAllocNow) // // Used to force allocation of a hash table or to override the default // hash table size of (which is fairly small) { ASSERT_VALID(this); ASSERT(m_nCount == 0); ASSERT(nHashSize > 0); if (m_pHashTable != NULL) { // free hash table delete[] m_pHashTable; m_pHashTable = NULL; } if (bAllocNow) { m_pHashTable = new CAssoc* [nHashSize]; memset(m_pHashTable, 0, sizeof(CAssoc*) * nHashSize); } m_nHashTableSize = nHashSize; } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> void CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::RemoveAll() { ASSERT_VALID(this); if (m_pHashTable != NULL) { // destroy elements (values and keys) for (UINT nHash = 0; nHash < m_nHashTableSize; nHash++) { CAssoc* pAssoc; for (pAssoc = m_pHashTable[nHash]; pAssoc != NULL; pAssoc = pAssoc->pNext) { DestructElements(&pAssoc->value, 1); DestructElements(&pAssoc->key, 1); } } // free hash table delete[] m_pHashTable; m_pHashTable = NULL; } m_nCount = 0; m_pFreeList = NULL; if (m_pBlocks) { m_pBlocks->FreeDataChain(); m_pBlocks = NULL; } } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::~CMap() { if (m_nCount) { RemoveAll(); } ASSERT(m_nCount == 0); } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> typename CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::CAssoc* CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::NewAssoc() { if (m_pFreeList == NULL) { // add another block CPlex* newBlock = CPlex::Create(m_pBlocks, m_nBlockSize, sizeof(CMap::CAssoc)); // chain them into free list CMap::CAssoc* pAssoc = (CMap::CAssoc*) newBlock->data(); // free in reverse order to make it easier to debug pAssoc += m_nBlockSize - 1; for (int i = m_nBlockSize-1; i >= 0; i--, pAssoc--) { pAssoc->pNext = m_pFreeList; m_pFreeList = pAssoc; } } ASSERT(m_pFreeList != NULL); // we must have something CMap::CAssoc* pAssoc = m_pFreeList; m_pFreeList = m_pFreeList->pNext; m_nCount++; ASSERT(m_nCount > 0); // make sure we don't overflow ConstructElements(&pAssoc->key, 1); ConstructElements(&pAssoc->value, 1); // special construct values return pAssoc; } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> void CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::FreeAssoc(CAssoc* pAssoc) { DestructElements(&pAssoc->value, 1); DestructElements(&pAssoc->key, 1); pAssoc->pNext = m_pFreeList; m_pFreeList = pAssoc; m_nCount--; ASSERT(m_nCount >= 0); // make sure we don't underflow // if no more elements, cleanup completely if (m_nCount == 0) RemoveAll(); } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> typename CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::CAssoc* CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::GetAssocAt(ARG_KEY key, UINT& nHash) const // find association (or return NULL) { nHash = HashKey(key) % m_nHashTableSize; if (m_pHashTable == NULL) return NULL; // see if it exists CAssoc* pAssoc; for (pAssoc = m_pHashTable[nHash]; pAssoc != NULL; pAssoc = pAssoc->pNext) { if (CompareElements(&pAssoc->key, &key)) return pAssoc; } return NULL; } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> BOOL CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::Lookup(ARG_KEY key, VALUE& rValue) const { ASSERT_VALID(this); UINT nHash; CAssoc* pAssoc = GetAssocAt(key, nHash); if (pAssoc == NULL) return FALSE; // not in map rValue = pAssoc->value; return TRUE; } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> VALUE& CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::operator[](ARG_KEY key) { ASSERT_VALID(this); UINT nHash; CAssoc* pAssoc; if ((pAssoc = GetAssocAt(key, nHash)) == NULL) { if (m_pHashTable == NULL) InitHashTable(m_nHashTableSize); // it doesn't exist, add a new Association pAssoc = NewAssoc(); pAssoc->nHashValue = nHash; pAssoc->key = key; // 'pAssoc->value' is a constructed object, nothing more // put into hash table pAssoc->pNext = m_pHashTable[nHash]; m_pHashTable[nHash] = pAssoc; } return pAssoc->value; // return new reference } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> BOOL CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::RemoveKey(ARG_KEY key) // remove key - return TRUE if removed { ASSERT_VALID(this); if (m_pHashTable == NULL) return FALSE; // nothing in the table CAssoc** ppAssocPrev; ppAssocPrev = &m_pHashTable[HashKey(key) % m_nHashTableSize]; CAssoc* pAssoc; for (pAssoc = *ppAssocPrev; pAssoc != NULL; pAssoc = pAssoc->pNext) { if (CompareElements(&pAssoc->key, &key)) { // remove it *ppAssocPrev = pAssoc->pNext; // remove from list FreeAssoc(pAssoc); return TRUE; } ppAssocPrev = &pAssoc->pNext; } return FALSE; // not found } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> void CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::GetNextAssoc(POSITION& rNextPosition, KEY& rKey, VALUE& rValue) const { ASSERT_VALID(this); ASSERT(m_pHashTable != NULL); // never call on empty map CAssoc* pAssocRet = (CAssoc*)rNextPosition; ASSERT(pAssocRet != NULL); if (pAssocRet == (CAssoc*) BEFORE_START_POSITION) { // find the first association for (UINT nBucket = 0; nBucket < m_nHashTableSize; nBucket++) if ((pAssocRet = m_pHashTable[nBucket]) != NULL) break; ASSERT(pAssocRet != NULL); // must find something } // find next association ASSERT(AfxIsValidAddress(pAssocRet, sizeof(CAssoc))); CAssoc* pAssocNext; if ((pAssocNext = pAssocRet->pNext) == NULL) { // go to next bucket for (UINT nBucket = pAssocRet->nHashValue + 1; nBucket < m_nHashTableSize; nBucket++) if ((pAssocNext = m_pHashTable[nBucket]) != NULL) break; } rNextPosition = (POSITION) pAssocNext; // fill in return data rKey = pAssocRet->key; rValue = pAssocRet->value; } template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> void CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::Serialize(CArchive& ar) { ASSERT_VALID(this); #ifndef unix // UNIX found dedcl commented out in coll.hxx CObject::Serialize(ar); #endif /* unix */ if (ar.IsStoring()) { ar.WriteCount(m_nCount); if (m_nCount == 0) return; // nothing more to do ASSERT(m_pHashTable != NULL); for (UINT nHash = 0; nHash < m_nHashTableSize; nHash++) { CAssoc* pAssoc; for (pAssoc = m_pHashTable[nHash]; pAssoc != NULL; pAssoc = pAssoc->pNext) { SerializeElements(ar, &pAssoc->key, 1); SerializeElements(ar, &pAssoc->value, 1); } } } else { DWORD nNewCount = ar.ReadCount(); KEY newKey; VALUE newValue; while (nNewCount--) { SerializeElements(ar, &newKey, 1); SerializeElements(ar, &newValue, 1); SetAt(newKey, newValue); } } } #ifdef _DEBUG #ifndef unix template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> void CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::Dump(CDumpContext& dc) const { CObject::Dump(dc); dc << "with " << m_nCount << " elements"; if (dc.GetDepth() > 0) { // Dump in format "[key] -> value" KEY key; VALUE val; POSITION pos = GetStartPosition(); while (pos != NULL) { GetNextAssoc(pos, key, val); dc << "\n\t["; DumpElements(dc, &key, 1); dc << "] = "; DumpElements(dc, &val, 1); } } dc << "\n"; } #endif /* unix */ template<class KEY, class ARG_KEY, class VALUE, class ARG_VALUE> void CMap<KEY, ARG_KEY, VALUE, ARG_VALUE>::AssertValid() const { CObject::AssertValid(); ASSERT(m_nHashTableSize > 0); ASSERT(m_nCount == 0 || m_pHashTable != NULL); // non-empty map should have hash table } #endif //_DEBUG ///////////////////////////////////////////////////////////////////////////// // CTypedPtrArray<BASE_CLASS, TYPE> template<class BASE_CLASS, class TYPE> class CTypedPtrArray : public BASE_CLASS { public: // Accessing elements TYPE GetAt(int nIndex) const { return (TYPE)BASE_CLASS::GetAt(nIndex); } TYPE& ElementAt(int nIndex) { return (TYPE&)BASE_CLASS::ElementAt(nIndex); } void SetAt(int nIndex, TYPE ptr) { BASE_CLASS::SetAt(nIndex, ptr); } // Potentially growing the array void SetAtGrow(int nIndex, TYPE newElement) { BASE_CLASS::SetAtGrow(nIndex, newElement); } int Add(TYPE newElement) { return BASE_CLASS::Add(newElement); } int Append(const CTypedPtrArray<BASE_CLASS, TYPE>& src) { return BASE_CLASS::Append(src); } void Copy(const CTypedPtrArray<BASE_CLASS, TYPE>& src) { BASE_CLASS::Copy(src); } // Operations that move elements around void InsertAt(int nIndex, TYPE newElement, int nCount = 1) { BASE_CLASS::InsertAt(nIndex, newElement, nCount); } void InsertAt(int nStartIndex, CTypedPtrArray<BASE_CLASS, TYPE>* pNewArray) { BASE_CLASS::InsertAt(nStartIndex, pNewArray); } // overloaded operator helpers TYPE operator[](int nIndex) const { return (TYPE)BASE_CLASS::operator[](nIndex); } TYPE& operator[](int nIndex) { return (TYPE&)BASE_CLASS::operator[](nIndex); } }; ///////////////////////////////////////////////////////////////////////////// // CTypedPtrList<BASE_CLASS, TYPE> template<class BASE_CLASS, class TYPE> class CTypedPtrList : public BASE_CLASS { public: // Construction CTypedPtrList(int nBlockSize = 10) : BASE_CLASS(nBlockSize) { } // peek at head or tail TYPE& GetHead() { return (TYPE&)BASE_CLASS::GetHead(); } TYPE GetHead() const { return (TYPE)BASE_CLASS::GetHead(); } TYPE& GetTail() { return (TYPE&)BASE_CLASS::GetTail(); } TYPE GetTail() const { return (TYPE)BASE_CLASS::GetTail(); } // get head or tail (and remove it) - don't call on empty list! TYPE RemoveHead() { return (TYPE)BASE_CLASS::RemoveHead(); } TYPE RemoveTail() { return (TYPE)BASE_CLASS::RemoveTail(); } // add before head or after tail POSITION AddHead(TYPE newElement) { return BASE_CLASS::AddHead(newElement); } POSITION AddTail(TYPE newElement) { return BASE_CLASS::AddTail(newElement); } // add another list of elements before head or after tail void AddHead(CTypedPtrList<BASE_CLASS, TYPE>* pNewList) { BASE_CLASS::AddHead(pNewList); } void AddTail(CTypedPtrList<BASE_CLASS, TYPE>* pNewList) { BASE_CLASS::AddTail(pNewList); } // iteration TYPE& GetNext(POSITION& rPosition) { return (TYPE&)BASE_CLASS::GetNext(rPosition); } TYPE GetNext(POSITION& rPosition) const { return (TYPE)BASE_CLASS::GetNext(rPosition); } TYPE& GetPrev(POSITION& rPosition) { return (TYPE&)BASE_CLASS::GetPrev(rPosition); } TYPE GetPrev(POSITION& rPosition) const { return (TYPE)BASE_CLASS::GetPrev(rPosition); } // getting/modifying an element at a given position TYPE& GetAt(POSITION position) { return (TYPE&)BASE_CLASS::GetAt(position); } TYPE GetAt(POSITION position) const { return (TYPE)BASE_CLASS::GetAt(position); } void SetAt(POSITION pos, TYPE newElement) { BASE_CLASS::SetAt(pos, newElement); } }; ///////////////////////////////////////////////////////////////////////////// // CTypedPtrMap<BASE_CLASS, KEY, VALUE> template<class BASE_CLASS, class KEY, class VALUE> class CTypedPtrMap : public BASE_CLASS { public: // Construction CTypedPtrMap(int nBlockSize = 10) : BASE_CLASS(nBlockSize) { } // Lookup BOOL Lookup(typename BASE_CLASS::BASE_ARG_KEY key, VALUE& rValue) const { return BASE_CLASS::Lookup(key, (BASE_CLASS::BASE_VALUE&)rValue); } // Lookup and add if not there VALUE& operator[](typename BASE_CLASS::BASE_ARG_KEY key) { return (VALUE&)BASE_CLASS::operator[](key); } // add a new key (key, value) pair void SetAt(KEY key, VALUE newValue) { BASE_CLASS::SetAt(key, newValue); } // removing existing (key, ?) pair BOOL RemoveKey(KEY key) { return BASE_CLASS::RemoveKey(key); } // iteration void GetNextAssoc(POSITION& rPosition, KEY& rKey, VALUE& rValue) const { BASE_CLASS::GetNextAssoc(rPosition, (BASE_CLASS::BASE_KEY&)rKey, (BASE_CLASS::BASE_VALUE&)rValue); } }; ///////////////////////////////////////////////////////////////////////////// #undef THIS_FILE #define THIS_FILE __FILE__ #undef new #ifdef _REDEF_NEW #define new DEBUG_NEW #undef _REDEF_NEW #endif #ifdef _AFX_PACKING #pragma pack(pop) #endif #ifdef _AFX_MINREBUILD #pragma component(minrebuild, on) #endif #ifndef _AFX_FULLTYPEINFO #pragma component(mintypeinfo, off) #endif #endif //__AFXTEMPL_H__ /////////////////////////////////////////////////////////////////////////////
[ "polarisdp@gmail.com" ]
polarisdp@gmail.com
b6604044957c6523c5d74fd150467f7795cdd65f
d84852c821600c3836952b78108df724f90e1096
/exams/2558/02204111/1/midterm/2_2_713_5320502389.cpp
82a323de86c18bfb437bba3e1f54dd9d616679f4
[ "MIT" ]
permissive
btcup/sb-admin
4a16b380bbccd03f51f6cc5751f33acda2a36b43
c2c71dce1cd683f8eff8e3c557f9b5c9cc5e168f
refs/heads/master
2020-03-08T05:17:16.343572
2018-05-07T17:21:22
2018-05-07T17:21:22
127,944,367
0
1
null
null
null
null
UTF-8
C++
false
false
1,179
cpp
#include<iostream> #include<cmath> using namespace std; int main() { int a,b,c,e,r; char ave,sum; double h,w,d; cout<<"Welcome to The Fantastic Tiles!!"<<endl; cout<<"Please enter room size in meter (H x W x D):"; cin>>h>>w>>d; cout<<"Please select floor tile...(A/B/C):"; cin>>a; //if (a<b<c) //{ //cin>>a; //cout<<<<; //if else (b>=c<=a) //cin>>b; //cout<<<<; //if else (c>a>b) //cin>>c; //cout<<<<; //} cout<<"Please select well tile...(A/B/C):" <<endl; cin>>b; cout<<"------------------------------------------"<<endl; //if //{ //cin>>a; //cout<<<<; //if else //cin>>b; //cout<<<<; //if else //cin>>c; //cout<<<<; //} cout<<"Number of floor tiles :"<<a<<"-->"<<"Price"<<"="<<e<<"Baht"<<endl; cout<<"Number of wall tiles :"<<b<<"-->"<<"Price"<<"="<<r<<"Baht"<<endl; ave=(r+e); cout<<"Total price:"<<r<<"+"<<e<<"="<<ave<<"Bath"<<endl; system("pause"); return 0; }
[ "38048354+btcup@users.noreply.github.com" ]
38048354+btcup@users.noreply.github.com
2f4fadd9344a976d1d1dbb617b4270aba0baff25
b42cfdf99629d74a0f8711d03f0088f0e5905906
/course_1.4/backup.cpp
b68b16b13aa582bde6b1c7c71fc3e405665c6ef8
[]
no_license
changan1995/mbedOS
739fe504a3ba360c2c513e5e2c7b1cb56fb9afb4
31c5f0990f5633a524b27c65a6bd2ac52b43b7a6
refs/heads/master
2021-01-20T09:07:42.785616
2017-05-27T06:59:58
2017-05-27T06:59:58
90,225,574
0
0
null
null
null
null
UTF-8
C++
false
false
2,305
cpp
#include "mbed.h" #include <string> #include <vector> #include <inttypes.h>// seems to not in mbed OS5? #include "mbedtls/entropy_poll.h" #include <sstream> DigitalOut led(LED1); Thread blinky_thread; int counter; class BlinkArgs { public: BlinkArgs(){ clear(); } void clear(){ position=0; blink_pattern.clear(); } uint16_t position; std::vector<uint32_t> blink_pattern; }; BlinkArgs *blinkarg; void do_blink(){ printf("blink initialized\n"); while(1){ //debug the position and the delay time in vector //printf("position is at %u\n",(unsigned int)blinkarg->position); //printf("delay time is %u\n",(unsigned int)blinkarg->blink_pattern.at(blinkarg->position)); led=!led; if(blinkarg->position >= blinkarg->blink_pattern.size()){ // printf("size is %d \n",blinkarg->blink_pattern.size()); led=0; printf("finished blinking\n"); return; } Thread::wait(blinkarg->blink_pattern.at(blinkarg->position)); blinkarg->position++; printf("position ++\n"); } } int main() { blinkarg->clear(); printf("helloworld\n"); led=0; // std::string initial the pattern; std::string s("100:500:100:500:100:500:100:500:100"); printf("led_execute_callback pattern=%s\n",s.c_str()); // our pattern is something like 500:200:500, so parse that std::size_t found = s.find_first_of(":"); while (found!=std::string::npos) { //counter for read //printf("time %d \n",counter);counter++;wait(1); //debug the string //printf("led_execute_callback pattern=%s \n",s.substr(0,found).c_str()); //debug the found all at //printf("time %d \n",found); blinkarg->blink_pattern.push_back(atoi((const char*)s.substr(0,found).c_str())); s = s.substr(found+1); found=s.find_first_of(":"); if(found == std::string::npos) { blinkarg->blink_pattern.push_back(atoi((const char*)s.c_str())); } } do_blink(); // blinky_thread.start(callback(do_blink)); }
[ "Quankang.Wang@arm.com" ]
Quankang.Wang@arm.com
193c16c72332f4e5c04bb524d5db22954d02e085
9bab169b128b891d1b099b516b908b7eac44d25b
/src/process_info_win.cpp
f26d3b1d506a2300dcac2457c9fd3af23e52ac79
[ "MIT" ]
permissive
yinlei/tengine
f5b49f4c6603fa512c220ad1612fbe66a9aa7fc5
9ecbb0699675717fc2ad6bfd1f51338e42814dd4
refs/heads/master
2021-01-13T05:47:38.858569
2017-03-21T13:21:56
2017-03-21T13:21:56
76,639,337
2
1
null
null
null
null
UTF-8
C++
false
false
2,507
cpp
#include "process_info.hpp" #include "system_info.hpp" #include <psapi.h> #pragma comment(lib,"psapi.lib") namespace tengine { int64_t convertFileTimeToUtc(const FILETIME* ftime) { if (NULL != ftime) { LARGE_INTEGER li; li.LowPart = ftime->dwLowDateTime; li.HighPart = ftime->dwHighDateTime; return li.QuadPart; } else return 0; } ProcessInfo::ProcessInfo() : process_(kNullProcessHandle) { process_ = ::GetCurrentProcess(); } ProcessInfo::ProcessInfo(ProcessHandle handle) : process_(handle) { } ProcessInfo ProcessInfo::current() { return ProcessInfo(::GetCurrentProcess()); } ProcessIdentity ProcessInfo::id() const { if (kNullProcessHandle != process_) return ::GetProcessId(process_); else return kNullProcessId; } int ProcessInfo::amount_of_thread() const { if (kNullProcessHandle != process_) { //::GetProcessMemoryInfo( return 0; } else return 0; } int64_t ProcessInfo::amount_of_memory_used() const { if (kNullProcessHandle != process_) { PROCESS_MEMORY_COUNTERS pmc; ::GetProcessMemoryInfo(process_, &pmc, sizeof(pmc)); return pmc.WorkingSetSize; } else return 0; } int64_t ProcessInfo::amount_of_vmemory_used() const { if (kNullProcessHandle != process_) { PROCESS_MEMORY_COUNTERS pmc; ::GetProcessMemoryInfo(process_, &pmc, sizeof(pmc)); return pmc.PagefileUsage; } else return 0; } int ProcessInfo::cpu_usage() const { static int64_t last_time = 0; static int64_t last_cpu_time = 0; FILETIME lpCreationTime; FILETIME lpExitTime; FILETIME lpKernelTime; FILETIME lpUserTime; if (kNullProcessHandle != process_) { if (::GetProcessTimes(process_, &lpCreationTime, &lpExitTime, &lpKernelTime, &lpUserTime)) { int64_t cpu_time = (convertFileTimeToUtc(&lpKernelTime) + convertFileTimeToUtc(&lpUserTime)) / SystemInfo::count_of_processors(); FILETIME now; GetSystemTimeAsFileTime(&now); int64_t now_time = convertFileTimeToUtc(&now); if ((last_cpu_time == 0) || (last_time == 0)) { last_cpu_time = cpu_time; last_time = now_time; return -1; } int64_t cpu_time_diff = cpu_time - last_cpu_time; int64_t time_diff = now_time - last_time; if (0 == time_diff) return -1; last_cpu_time = cpu_time; last_time = now_time; return (int)((cpu_time_diff * 100 + time_diff / 2) / time_diff); } else return -1; } else return -1; } } //namespace ccactor
[ "yinl@uc888.cn" ]
yinl@uc888.cn
0d56d8345e450c83a7de0c7e960a3e5285c6bb05
14b4e31ca9ece892d8915f6b49b4e4c0dffb2cb1
/explosivo/Emitter.cpp
056be11b326f934a6c68f7bae1bb4dde24a667c6
[ "MIT" ]
permissive
L1quid/Explosivo
6bac5926293255fa310210b86df661a61eaf208b
b94250ed6ee43ecfda4cfa70ddb366a8990d15d1
refs/heads/master
2021-06-21T16:25:09.338977
2016-12-21T18:15:43
2016-12-21T18:15:43
1,281,174
0
0
null
null
null
null
UTF-8
C++
false
false
2,285
cpp
#include <windows.h> #include <math.h> #include "Emitter.h" #include "config.h" #include "explosivo.h" extern unsigned int WIDTH, HEIGHT; Emitter::Emitter() { reset(); } Emitter::~Emitter() { m_streamlets.Empty(true); } void Emitter::reset() { m_age = 0.0; m_cx = m_cy = 0; m_x_offset = m_y_offset = 0; } void Emitter::init_stream() { int i; for (i = 0; i < STREAMLETS_PER_EMITTER; i++) { Streamlet *p = NULL; p = create_streamlet(); if (!p) break; } } Streamlet *Emitter::create_streamlet() { Streamlet *p = NULL; p = new Streamlet(); m_streamlets.Add(p); m_inactive_streamlets.Add(p); return(p); } void Emitter::tick() { bool needs_activation = m_inactive_streamlets.GetSize() > 0 && (int)m_age % FRAMES_BETWEEN_STREAMLETS == 0; if (needs_activation) emit(); int i, num_streamlets = m_active_streamlets.GetSize(); Streamlet *p = NULL; POINT pos; for (i = 0; i < num_streamlets; i++) { p = m_active_streamlets.Get(i); if (!p) continue; p->tick(); p->get_pos(&pos); if (pos.x >= m_win_width || pos.y >= m_win_height) { p->deactivate(); m_active_streamlets.Delete(m_active_streamlets.Find(p)); m_inactive_streamlets.Add(p); } } m_age += AGE_INCREMENT(WIDTH); } bool Emitter::emit() { Streamlet *p = NULL; if (m_inactive_streamlets.GetSize() == 0) { if (m_streamlets.GetSize() < STREAMLETS_PER_EMITTER) p = create_streamlet(); } else p = m_inactive_streamlets.Get(0); if (!p) return(false); p->activate(); m_inactive_streamlets.Delete(m_inactive_streamlets.Find(p)); m_active_streamlets.Add(p); return(true); } void Emitter::set_window(int w, int h) { m_win_width = w; m_win_height = h; } WDL_PtrList<Streamlet> *Emitter::get_streamlets() { //sort_streamlets(); return(&m_active_streamlets); } int STREAMLET_COMPARE(const void *a, const void *b) { Streamlet *aa = (Streamlet *)a; Streamlet *bb = (Streamlet *)b; return ((bb->get_width() + bb->get_height()) * 2 - (aa->get_width() + aa->get_height()) * 2); } void Emitter::sort_streamlets() { m_sorted_streamlets.Empty(); qsort(m_active_streamlets.GetList(), m_active_streamlets.GetSize(), sizeof(Streamlet *), STREAMLET_COMPARE); }
[ "dan@shup.com" ]
dan@shup.com
6c0ad2a2b95a9e32d92aef0127f0bb5d473be600
bd9f9d3937f7ea8a825e1d9b61fb5493f88b4653
/src/log/ConsoleLog.cpp
a5aaa70345a155c103d7c39a2fac80e33c639f43
[]
no_license
tea2code/fantasy-rts
ba3b0b73975d4c6d4c986a36f11002073b40995f
c38b43edb7ec54f18768564c42859195bc2477e4
refs/heads/master
2021-01-20T02:48:03.999913
2015-02-07T10:12:10
2015-02-07T10:12:10
15,477,479
0
0
null
null
null
null
UTF-8
C++
false
false
863
cpp
#include "ConsoleLog.h" #include <boost/format.hpp> #include <iostream> frts::ConsoleLog::ConsoleLog() { } void frts::ConsoleLog::debug(const std::string& module, const std::string& msg) { print("Debug", module, msg); } void frts::ConsoleLog::error(const std::string& module, const std::string& msg) { print("Error", module, msg); } void frts::ConsoleLog::print(const std::string& level, const std::string& module, const std::string& msg) { auto tmpl = R"(%1%: %2% - %3%)"; auto formatted = boost::format(tmpl) % level % module % msg; std::cout << formatted.str() << std::endl; } void frts::ConsoleLog::info(const std::string& module, const std::string& msg) { print("Info", module, msg); } void frts::ConsoleLog::warning(const std::string& module, const std::string& msg) { print("Warning", module, msg); }
[ "stefan4875@gmail.com" ]
stefan4875@gmail.com
e2ee3b12e4e386cdd15f90990bfa6e36e7229c41
5d6ed82523cea35facf0ca83cd608b840fbfdbd5
/src/SbgDriver.cpp
b9b69fbbfa33c9942d8082af27dd5eb0a1225556
[]
no_license
rpng/sbg_driver
ce1bee602144f43ae337a98b562217006777d46b
e7cef38644f5f72ed9a47837815ec8f6f2205fdd
refs/heads/master
2021-01-22T08:39:26.325361
2017-05-28T01:17:42
2017-05-28T01:17:42
92,628,279
1
0
null
2017-05-27T22:51:01
2017-05-27T22:51:01
null
UTF-8
C++
false
false
15,012
cpp
#include "sbg_driver/SbgDriver.h" #include "boost/date_time/posix_time/posix_time_types.hpp" #include <diagnostic_updater/diagnostic_updater.h> using namespace sbg_driver; /** * Class constructor * Will open the connection and register the callback */ SbgDriver::SbgDriver(ros::NodeHandle nh) : nh(nh), imu_raw_pub(nh.advertise<sensor_msgs::Imu>("imu/data", 10)), gps_pos_pub(nh.advertise<sensor_msgs::NavSatFix>("navsat/fix", 10)), gps_vel_pub(nh.advertise<geometry_msgs::TwistWithCovarianceStamped>("navsat/vel", 10)), gps_head_pub(nh.advertise<geometry_msgs::Vector3Stamped>("navsat/heading", 10)), time_pub(nh.advertise<sensor_msgs::TimeReference>("navsat/time_reference", 10)), ekf_pose_pub(nh.advertise<nav_msgs::Odometry>("ekf/pose", 10)), ekf_quat_pub(nh.advertise<geometry_msgs::QuaternionStamped>("ekf/quat", 10)) { diagnostic_updater::Updater updater; std::string uart_port; int uart_baud_rate; nh.param<std::string>("uart_port", uart_port, "/dev/ttyUSB0"); nh.param<int>("uart_baud_rate", uart_baud_rate, 115200); // Create the serial interface with the specify port and rate errorCode = sbgInterfaceSerialCreate(&sbgInterface, uart_port.c_str(), (uint32)uart_baud_rate); if (errorCode != SBG_NO_ERROR) { char errorMsg[256]; sbgEComErrorToString(errorCode, errorMsg); ROS_FATAL_STREAM("sbgInterfaceSerialCreate Error: " << errorMsg); } // Init the SBG if it was a successful allocation errorCode = sbgEComInit(&comHandle, &sbgInterface); if (errorCode != SBG_NO_ERROR) { char errorMsg[256]; sbgEComErrorToString(errorCode, errorMsg); ROS_FATAL_STREAM("sbgEComInit Error: " << errorMsg); } // Debug message ROS_INFO_STREAM("Connecting to " << uart_port << ":" << uart_baud_rate); // Get the connected device info errorCode = sbgEComCmdGetInfo(&comHandle, &deviceInfo); if (errorCode != SBG_NO_ERROR) { char errorMsg[256]; sbgEComErrorToString(errorCode, errorMsg); ROS_FATAL_STREAM("sbgEComCmdGetInfo Error: " << errorMsg); } // Debug message, and set our serial number ROS_INFO_STREAM("connected to " << deviceInfo.productCode << " serial no. " << deviceInfo.serialNumber); updater.setHardwareID(boost::lexical_cast<std::string>(deviceInfo.serialNumber)); // ****************************** SBG Config ****************************** // ToDo: improve configuration capabilities // Enable getting EKF quaternion errorCode = sbgEComCmdOutputSetConf(&comHandle, SBG_ECOM_OUTPUT_PORT_A, SBG_ECOM_CLASS_LOG_ECOM_0, SBG_ECOM_LOG_EKF_QUAT, SBG_ECOM_OUTPUT_MODE_DIV_4); if (errorCode != SBG_NO_ERROR) handleCmdErr("SBG_ECOM_LOG_EKF_QUAT", errorCode); // Enable getting EKF position and velocity in the NED coordinates errorCode = sbgEComCmdOutputSetConf(&comHandle, SBG_ECOM_OUTPUT_PORT_A, SBG_ECOM_CLASS_LOG_ECOM_0, SBG_ECOM_LOG_EKF_NAV, SBG_ECOM_OUTPUT_MODE_DIV_4); if (errorCode != SBG_NO_ERROR) handleCmdErr("SBG_ECOM_LOG_EKF_NAV", errorCode); // Enable getting IMU acceleration and angular velocity values errorCode = sbgEComCmdOutputSetConf(&comHandle, SBG_ECOM_OUTPUT_PORT_A, SBG_ECOM_CLASS_LOG_ECOM_0, SBG_ECOM_LOG_IMU_DATA, SBG_ECOM_OUTPUT_MODE_DIV_4); if (errorCode != SBG_NO_ERROR) handleCmdErr("SBG_ECOM_LOG_IMU_DATA", errorCode); // Enable getting magnetometer data //errorCode = sbgEComCmdOutputSetConf(&comHandle, SBG_ECOM_OUTPUT_PORT_A, SBG_ECOM_CLASS_LOG_ECOM_0, SBG_ECOM_LOG_MAG, SBG_ECOM_OUTPUT_MODE_DIV_4); //if (errorCode != SBG_NO_ERROR) handleCmdErr("SBG_ECOM_LOG_MAG", errorCode); // Enable getting GPS position errorCode = sbgEComCmdOutputSetConf(&comHandle, SBG_ECOM_OUTPUT_PORT_A, SBG_ECOM_CLASS_LOG_ECOM_0, SBG_ECOM_LOG_GPS1_POS, SBG_ECOM_OUTPUT_MODE_NEW_DATA); if (errorCode != SBG_NO_ERROR) handleCmdErr("SBG_ECOM_LOG_GPS1_POS", errorCode); // Enable getting GPS velocity errorCode = sbgEComCmdOutputSetConf(&comHandle, SBG_ECOM_OUTPUT_PORT_A, SBG_ECOM_CLASS_LOG_ECOM_0, SBG_ECOM_LOG_GPS1_VEL, SBG_ECOM_OUTPUT_MODE_NEW_DATA); if (errorCode != SBG_NO_ERROR) handleCmdErr("SBG_ECOM_LOG_GPS1_VEL", errorCode); // Enable getting GPS heading for a dual antenna system errorCode = sbgEComCmdOutputSetConf(&comHandle, SBG_ECOM_OUTPUT_PORT_A, SBG_ECOM_CLASS_LOG_ECOM_0, SBG_ECOM_LOG_GPS1_HDT, SBG_ECOM_OUTPUT_MODE_NEW_DATA); if (errorCode != SBG_NO_ERROR) handleCmdErr("SBG_ECOM_LOG_GPS1_HDT", errorCode); // ****************************** SBG Saving ****************************** // Save our settings and reboot errorCode = sbgEComCmdSettingsAction(&comHandle, SBG_ECOM_SAVE_SETTINGS); if (errorCode != SBG_NO_ERROR){ char errorMsg[256]; sbgEComErrorToString(errorCode, errorMsg); ROS_WARN_STREAM("sbgEComCmdSettingsAction Error" << errorMsg); } // Debug ROS_DEBUG("CONFIGURATION DONE"); // ************************** SBG Callback for data ************************ // Note that this is the global function that is passed into this class errorCode = sbgEComSetReceiveLogCallback(&comHandle, SbgDriver::onLogReceived, this); if (errorCode != SBG_NO_ERROR){ char errorMsg[256]; sbgEComErrorToString(errorCode, errorMsg); ROS_ERROR_STREAM("sbgEComSetReceiveLogCallback Error" << errorMsg); } } /** * Deconstructor * Will shutdown the serial interface with the device */ SbgDriver::~SbgDriver() { sbgInterfaceSerialDestroy(&sbgInterface); }; /** * This will run the main node * Will make sure that we are reciving data and will check for errors */ void SbgDriver::run() { ROS_INFO("START RECEIVING DATA"); ros::Rate loop_rate(25); while (ros::ok()) { SbgErrorCode errorCode = sbgEComHandle(&comHandle); if (errorCode != SBG_NO_ERROR){ char errorMsg[256]; sbgEComErrorToString(errorCode, errorMsg); ROS_ERROR_STREAM("sbgEComHandle Error" << errorMsg); } ros::spinOnce(); loop_rate.sleep(); } } /** * Helper method that handles printing out errors * Is just used when enabling things on the hardware */ void SbgDriver::handleCmdErr(std::string method, SbgErrorCode errorCode) { char errorMsg[256]; sbgEComErrorToString(errorCode, errorMsg); ROS_ERROR_STREAM("Error in method = " << method << "\n" << errorMsg); } /*! * Callback definition called each time a new log is received. * \param[in] pHandle Valid handle on the sbgECom instance that has called this callback. * \param[in] msgClass Class of the message we have received * \param[in] msg Message ID of the log received. * \param[in] pLogData Contains the received log data as an union. * \param[in] pUserArg Optional user supplied argument. * \return SBG_NO_ERROR if the received log has been used successfully. */ SbgErrorCode SbgDriver::onLogReceived(SbgEComHandle *pHandle, SbgEComClass msgClass, SbgEComMsgId msg, const SbgBinaryLogData *pLogData, void *pUserArg) { // Cast the user to our class type sbg_driver::SbgDriver* node = static_cast<sbg_driver::SbgDriver*>(pUserArg); ROS_DEBUG_STREAM("sbgECom received log data id: " << (int)msg); // Master switch statement that handles each message type switch (msg){ case SBG_ECOM_LOG_EKF_QUAT: { geometry_msgs::QuaternionStamped msg; msg.header.stamp = ros::Time::now(); msg.header.frame_id = "map"; // Orientation quaternion stored in W, X, Y, Z form. msg.quaternion.x = pLogData->ekfQuatData.quaternion[1]; msg.quaternion.y = pLogData->ekfQuatData.quaternion[2]; msg.quaternion.z = pLogData->ekfQuatData.quaternion[3]; msg.quaternion.w = pLogData->ekfQuatData.quaternion[0]; node->ekf_quat_pub.publish(msg); break; } case SBG_ECOM_LOG_EKF_NAV: { nav_msgs::Odometry msg; msg.header.stamp = ros::Time::now(); msg.header.frame_id = "map"; // Latitude, Longitude in degrees positive North and East. Altitude above Mean Sea Level in meters msg.pose.pose.position.x = pLogData->ekfNavData.position[0]; msg.pose.pose.position.y = pLogData->ekfNavData.position[1]; msg.pose.pose.position.z = pLogData->ekfNavData.position[2]; msg.pose.covariance[0] = pow(pLogData->ekfNavData.positionStdDev[0],2); msg.pose.covariance[7] = pow(pLogData->ekfNavData.positionStdDev[1],2); msg.pose.covariance[14] = pow(pLogData->ekfNavData.positionStdDev[2],2); // North, East, Down velocity in m.s^-1. msg.twist.twist.linear.x = pLogData->ekfNavData.velocity[0]; msg.twist.twist.linear.y = pLogData->ekfNavData.velocity[1]; msg.twist.twist.linear.z = pLogData->ekfNavData.velocity[2]; msg.twist.covariance[0] = pow(pLogData->ekfNavData.velocityStdDev[0],2); msg.twist.covariance[7] = pow(pLogData->ekfNavData.velocityStdDev[1],2); msg.twist.covariance[14] = pow(pLogData->ekfNavData.velocityStdDev[2],2); node->ekf_pose_pub.publish(msg); break; } case SBG_ECOM_LOG_GPS1_POS: { sensor_msgs::NavSatFix nav_msg; nav_msg.header.stamp = ros::Time::now(); nav_msg.header.frame_id = "map"; // GPS status nav_msg.status.status = 0; nav_msg.status.service = 0; // TODO: Handle the different status better if ((pLogData->gpsPosData.status & (SBG_ECOM_GPS_POS_STATUS_MASK << SBG_ECOM_GPS_POS_STATUS_SHIFT)) != SBG_ECOM_POS_SOL_COMPUTED) { nav_msg.status.status = -1; break; } if ((pLogData->gpsPosData.status & (SBG_ECOM_GPS_POS_TYPE_MASK << SBG_ECOM_GPS_POS_TYPE_SHIFT)) == SBG_ECOM_POS_NO_SOLUTION) nav_msg.status.status = -1; if (pLogData->gpsPosData.status & (0b111 << 12)) // using GPS nav_msg.status.service |= 1; if (pLogData->gpsPosData.status & (0b11 << 15)) // using GLONASS nav_msg.status.service |= 2; // Set lat long and altitude nav_msg.latitude = pLogData->gpsPosData.latitude; nav_msg.longitude = pLogData->gpsPosData.longitude; nav_msg.altitude = pLogData->gpsPosData.altitude + (double)pLogData->gpsPosData.undulation; // GPS position errors (1 sigma longitude accuracy in meters) nav_msg.position_covariance[0] = pow(pLogData->gpsPosData.longitudeAccuracy,2); nav_msg.position_covariance[4] = pow(pLogData->gpsPosData.latitudeAccuracy,2); nav_msg.position_covariance[8] = pow(pLogData->gpsPosData.altitudeAccuracy,2); node->gps_pos_pub.publish(nav_msg); break; } case SBG_ECOM_LOG_GPS1_VEL: { geometry_msgs::TwistWithCovarianceStamped msg; msg.header.stamp = ros::Time::now(); msg.header.frame_id = "map"; // GPS North, East, Down velocity in m.s^-1. msg.twist.twist.linear.x = pLogData->gpsVelData.velocity[0]; msg.twist.twist.linear.y = pLogData->gpsVelData.velocity[1]; msg.twist.twist.linear.z = pLogData->gpsVelData.velocity[2]; // GPS North, East, Down velocity 1 sigma accuracy in m.s^-1. msg.twist.covariance[0] = pow(pLogData->gpsVelData.velocityAcc[0],2); msg.twist.covariance[7] = pow(pLogData->gpsVelData.velocityAcc[1],2); msg.twist.covariance[14] = pow(pLogData->gpsVelData.velocityAcc[2],2); node->gps_vel_pub.publish(msg); break; } case SBG_ECOM_LOG_GPS1_HDT: { geometry_msgs::Vector3Stamped msg; msg.header.stamp = ros::Time::now(); msg.header.frame_id = "map"; // Check the status here if (pLogData->gpsHdtData.status & (SBG_ECOM_GPS_HDT_STATUS_MASK << SBG_ECOM_GPS_HDT_STATUS_SHIFT) == SBG_ECOM_HDT_INSUFFICIENT_OBS) { ROS_WARN_THROTTLE(120, "GPS HDT HEADING INSUFFICIENT OBSERVATIONS"); break; } if (pLogData->gpsHdtData.status & (SBG_ECOM_GPS_HDT_STATUS_MASK << SBG_ECOM_GPS_HDT_STATUS_SHIFT) == SBG_ECOM_HDT_INTERNAL_ERROR) { ROS_ERROR_THROTTLE(120, "GPS HDT HEADING INTERNAL OBSERVATIONS"); break; } if (pLogData->gpsHdtData.status & (SBG_ECOM_GPS_HDT_STATUS_MASK << SBG_ECOM_GPS_HDT_STATUS_SHIFT) == SBG_ECOM_HDT_HEIGHT_LIMIT) { ROS_WARN_THROTTLE(120, "GPS HDT HEADING HEIGHT LIMIT REACHED"); break; } // GPS true heading in degrees. msg.vector.y = pLogData->gpsHdtData.pitch; msg.vector.z = pLogData->gpsHdtData.heading; node->gps_head_pub.publish(msg); break; } case SBG_ECOM_LOG_IMU_DATA: { sensor_msgs::Imu imu_msg; imu_msg.header.stamp = ros::Time::now(); imu_msg.header.frame_id = "map"; // X, Y, Z accelerometers in m.s^-2. imu_msg.linear_acceleration.x = pLogData->imuData.accelerometers[0]; imu_msg.linear_acceleration.y = pLogData->imuData.accelerometers[1]; imu_msg.linear_acceleration.z = pLogData->imuData.accelerometers[2]; // X, Y, Z gyroscopes in rad.s^-1. imu_msg.angular_velocity.x = pLogData->imuData.gyroscopes[0]; imu_msg.angular_velocity.y = pLogData->imuData.gyroscopes[1]; imu_msg.angular_velocity.z = pLogData->imuData.gyroscopes[2]; node->imu_raw_pub.publish(imu_msg); break; } case SBG_ECOM_LOG_UTC_TIME: { sensor_msgs::TimeReference time_msg; time_msg.header.stamp = ros::Time::now(); // + nanoseconds(pLogData->utcData.nanoSecond)); boost::posix_time::ptime gps_time(boost::gregorian::date(pLogData->utcData.year, pLogData->utcData.month, pLogData->utcData.day), boost::posix_time::time_duration(pLogData->utcData.hour, pLogData->utcData.minute, pLogData->utcData.second)); time_msg.time_ref = ros::Time::fromBoost(gps_time); if (pLogData->utcData.status & SBG_ECOM_CLOCK_UTC_SYNC) time_msg.source = "gps"; else time_msg.source = "internal"; node->time_pub.publish(time_msg); break; } default: break; } return SBG_NO_ERROR; }
[ "pgeneva@udel.edu" ]
pgeneva@udel.edu
49e28220aa3e62fdfa7055e81b747a1d76ab4c75
44e3327925ad4391cdfa2ce70bb5b4e9472943e5
/libawesome/libawesome/awesome.hpp
821ee1570e52a5b33c4fa0f507fd9783a8a1e646
[]
no_license
phejet/cmake_example
ab0dc3bc2ca064ce1b555b3629e125a62f6b804b
d39417d8f1acdf5903a51ad36301e063595148dd
refs/heads/master
2020-05-19T13:58:15.815789
2015-04-16T13:41:06
2015-04-16T13:41:06
34,057,327
0
0
null
null
null
null
UTF-8
C++
false
false
102
hpp
#pragma once namespace Awesome { class Main { public: void sayHello(); }; } // namespace Awesome
[ "phejet@gmail.com" ]
phejet@gmail.com
deb20c7005cae91807973faf660cae75fe5c483e
4d07ffb7e064246f545af2fec810010c1208e3a0
/DishwasherProjectNewest.cpp
c07da1a90e5140c14580692414428fa2641d857f
[]
no_license
fatimahachem/dishwasher-project
b1190794c8b160b4133fb66b978ca3859559dca1
3efc3f7411e2e1cedcccc23e68b2d9d83a8b67b2
refs/heads/master
2020-09-17T05:31:57.795326
2019-12-02T22:54:35
2019-12-02T22:54:35
223,514,920
0
0
null
null
null
null
UTF-8
C++
false
false
3,226
cpp
// DishwasherProject.cpp : This file contains the 'main' function. Program execution begins and ends there. #include <16F877a.h> #fuses HS, NOLVP, NOWDT, PUT #use delay (clock = 20000000) //LEDs #define RED_LED PIN_D5 #define YELLOW_LED PIN_D6 #define GREEN_LED PIN_D7 //Segment 1 #define SEGMENT_A1 PIN_B0 #define SEGMENT_B1 PIN_B1 #define SEGMENT_C1 PIN_B2 #define SEGMENT_D1 PIN_B3 #define SEGMENT_E1 PIN_B4 #define SEGMENT_F1 PIN_B5 #define SEGMENT_G1 PIN_B6 #define SEGMENT_DP1 PIN_B7 //Segment 2 #define SEGMENT_A2 PIN_C0 #define SEGMENT_B2 PIN_C1 #define SEGMENT_C2 PIN_C2 #define SEGMENT_D2 PIN_C3 #define SEGMENT_E2 PIN_C4 #define SEGMENT_F2 PIN_C5 #define SEGMENT_G2 PIN_C6 #define SEGMENT_DP2 PIN_C7 //Motor #define DC_MOTOR PIN_D2 int i, j; //Initializing binary values to display on 7-segment displays // DPGFEDCBA int digits[10] = { 0B00111111, 0B00000110, 0B01011011, 0B01001111, 0B01100110, 0B01101101, 0B01111101, 0B00000111, 0B01111111, 0B01101111 }; //Initializing binary values to display on 7-segment displays // DPGFEDCBA int digits2[10] = { 0B11000000, 0B11111001, 0B10100100, 0B10110000, 0B10011001, 0B10010010, 0B10000010, 0B11111000, 0B10000000, 0B10010000 }; void main() { //RED LED turns on to indicate that the dishwasher is still off, stays on for 5 seconds then turns off to indicate that the dishwasher is not off anymore output_bit(PIN_D5, TRUE); delay_ms(5000); output_bit(PIN_D5, FALSE); //GREEN LED turns on to indiacte that the dish washing process started, stays on for 59 seconds until the end of the process output_bit(PIN_D7, TRUE); //7-segment displaying time passed in dishwasher process... Time: 0 to 19 seconds for (i = 0; i <= 1; i++) { output_b(digits[i]); for (j = 0; j <= 9; j++) { output_c(digits2[j]); delay_ms(1000); } } //YELLOW LED turns on to indicate that the rinsing process started output_bit(PIN_D6, TRUE); //7-segment displaying time passed in dishwasher process... Time: 20 to 39 seconds for (i = 2; i <= 3; i++) { output_b(digits[i]); for (j = 0; j <= 9; j++) { output_c(digits2[j]); delay_ms(1000); } } //YELLOW LED turns off to indicate that the rinsing process stopped output_bit(PIN_D6, FALSE); //MOTOR turns on to indicate that the drying process started output_high(DC_MOTOR); //7-segment displaying time passed in dishwasher process... Time: 40 to 59 seconds for (i = 4; i <= 5; i++) { output_b(digits[i]); for (j = 0; j <= 9; j++) { output_c(digits2[j]); delay_ms(1000); } } //MOTOR turns off to indicate that the drying process stopped output_low(DC_MOTOR); //GREEN LED turns off to indicate that the dishwasher process finished output_bit(PIN_D7, FALSE); //RED LED turns on to indicate that the dishwasher is now off again output_bit(PIN_D5, TRUE); }
[ "fatima@fatimahachem.com" ]
fatima@fatimahachem.com
e4ec95092edf5c5792e830b4200d9454305b553d
7a8c3d3923534da1822d225c675d7090b09fbc37
/arduino/libraries/ITEADLIB_Arduino_Nextion-master/NexText.cpp
d182c09303c9c825b129e8b8eaadc44783df1423
[ "MIT" ]
permissive
ZeroWorkshop/ZeroBlocklyLite
357f31c7a36ca10962bed9f965805e4e818780e3
58d8e8fd59b38a4db00147ba7d2798a5dfc3419f
refs/heads/master
2022-12-22T21:53:09.568937
2021-01-06T09:27:55
2021-01-06T09:27:55
252,426,559
1
2
null
2022-12-10T06:00:26
2020-04-02T10:39:31
C
UTF-8
C++
false
false
4,837
cpp
/** * @file NexText.cpp * * The implementation of class NexText. * * @author Wu Pengfei (email:<pengfei.wu@itead.cc>) * @date 2015/8/13 * @copyright * Copyright (C) 2014-2015 ITEAD Intelligent Systems Co., Ltd. \n * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. */ #include "NexText.h" NexText::NexText(uint8_t pid, uint8_t cid, const char *name) :NexTouch(pid, cid, name) { } uint16_t NexText::getText(char *buffer, uint16_t len) { String cmd; cmd += "get "; cmd += getObjName(); cmd += ".txt"; sendCommand(cmd.c_str()); return recvRetString(buffer,len); } bool NexText::setText(const char *buffer) { String cmd; cmd += getObjName(); cmd += ".txt=\""; cmd += buffer; cmd += "\""; sendCommand(cmd.c_str()); dbSerialPrint("============"); dbSerialPrintln(cmd); return recvRetCommandFinished(); } uint32_t NexText::Get_background_color_bco(uint32_t *number) { String cmd; cmd += "get "; cmd += getObjName(); cmd += ".bco"; sendCommand(cmd.c_str()); return recvRetNumber(number); } bool NexText::Set_background_color_bco(uint32_t number) { char buf[10] = {0}; String cmd; utoa(number, buf, 10); cmd += getObjName(); cmd += ".bco="; cmd += buf; sendCommand(cmd.c_str()); cmd=""; cmd += "ref "; cmd += getObjName(); sendCommand(cmd.c_str()); return recvRetCommandFinished(); } uint32_t NexText::Get_font_color_pco(uint32_t *number) { String cmd; cmd += "get "; cmd += getObjName(); cmd += ".pco"; sendCommand(cmd.c_str()); return recvRetNumber(number); } bool NexText::Set_font_color_pco(uint32_t number) { char buf[10] = {0}; String cmd; utoa(number, buf, 10); cmd += getObjName(); cmd += ".pco="; cmd += buf; sendCommand(cmd.c_str()); cmd = ""; cmd += "ref "; cmd += getObjName(); sendCommand(cmd.c_str()); return recvRetCommandFinished(); } uint32_t NexText::Get_place_xcen(uint32_t *number) { String cmd; cmd += "get "; cmd += getObjName(); cmd += ".xcen"; sendCommand(cmd.c_str()); return recvRetNumber(number); } bool NexText::Set_place_xcen(uint32_t number) { char buf[10] = {0}; String cmd; utoa(number, buf, 10); cmd += getObjName(); cmd += ".xcen="; cmd += buf; sendCommand(cmd.c_str()); cmd = ""; cmd += "ref "; cmd += getObjName(); sendCommand(cmd.c_str()); return recvRetCommandFinished(); } uint32_t NexText::Get_place_ycen(uint32_t *number) { String cmd; cmd += "get "; cmd += getObjName(); cmd += ".ycen"; sendCommand(cmd.c_str()); return recvRetNumber(number); } bool NexText::Set_place_ycen(uint32_t number) { char buf[10] = {0}; String cmd; utoa(number, buf, 10); cmd += getObjName(); cmd += ".ycen="; cmd += buf; sendCommand(cmd.c_str()); cmd = ""; cmd += "ref "; cmd += getObjName(); sendCommand(cmd.c_str()); return recvRetCommandFinished(); } uint32_t NexText::getFont(uint32_t *number) { String cmd; cmd += "get "; cmd += getObjName(); cmd += ".font"; sendCommand(cmd.c_str()); return recvRetNumber(number); } bool NexText::setFont(uint32_t number) { char buf[10] = {0}; String cmd; utoa(number, buf, 10); cmd += getObjName(); cmd += ".font="; cmd += buf; sendCommand(cmd.c_str()); cmd = ""; cmd += "ref "; cmd += getObjName(); sendCommand(cmd.c_str()); return recvRetCommandFinished(); } uint32_t NexText::Get_background_crop_picc(uint32_t *number) { String cmd; cmd += "get "; cmd += getObjName(); cmd += ".picc"; sendCommand(cmd.c_str()); return recvRetNumber(number); } bool NexText::Set_background_crop_picc(uint32_t number) { char buf[10] = {0}; String cmd; utoa(number, buf, 10); cmd += getObjName(); cmd += ".picc="; cmd += buf; sendCommand(cmd.c_str()); cmd = ""; cmd += "ref "; cmd += getObjName(); sendCommand(cmd.c_str()); return recvRetCommandFinished(); } uint32_t NexText::Get_background_image_pic(uint32_t *number) { String cmd = String("get "); cmd += getObjName(); cmd += ".pic"; sendCommand(cmd.c_str()); return recvRetNumber(number); } bool NexText::Set_background_image_pic(uint32_t number) { char buf[10] = {0}; String cmd; utoa(number, buf, 10); cmd += getObjName(); cmd += ".pic="; cmd += buf; sendCommand(cmd.c_str()); return recvRetCommandFinished(); }
[ "36092823+ZeroWorkshop@users.noreply.github.com" ]
36092823+ZeroWorkshop@users.noreply.github.com
a707f6e43fcc838338e22d11e49a5934fa9ade2f
4b4ab8dcab747913d105a687d64b3dec00b0789d
/Switch_Http/Switch_HttpInterfaceBase.cpp
60d373822ca22944089f931e95c9b39bb2acd72d
[ "MIT" ]
permissive
woutercharle/switch
8f90a1b5266b7aef3ee199de0767910f486c21b7
632f48fde60d071fdda0b4e7655db0a8354b5ef4
refs/heads/master
2020-04-17T11:12:03.744878
2019-01-19T20:02:21
2019-01-19T20:02:21
166,531,427
0
0
null
null
null
null
UTF-8
C++
false
false
16,980
cpp
/*?************************************************************************* * Switch_HttpInterfaceBase.cpp * ----------------------- * copyright : (C) 2013 by Wouter Charle * email : wouter.charle@gmail.com * ***************************************************************************/ #include "Switch_HttpInterfaceBase.h" // Switch includes #include <Switch_Base/Switch_Debug.h> // project includes #include "Switch_HttpInterfaceTraits.h" // third-party includes #include <cppcms/http_response.h> #include <cppcms/http_context.h> #include <cppcms/url_dispatcher.h> #include <cppcms/url_mapper.h> #include <cppcms/session_interface.h> #include <cppcms/http_request.h> // other declarations namespace args = std::placeholders; Switch::HttpInterfaceBase::HttpInterfaceBase (cppcms::service& i_service) : cppcms::rpc::json_rpc_server (i_service) { // bind all rpc calls to methods //bind ("Help", cppcms::rpc::json_method (&Switch::HttpInterfaceBase::Help, this), method_role); bind ("Register", cppcms::rpc::json_method (&Switch::HttpInterfaceBase::Register, this), method_role); bind ("AddDevice", cppcms::rpc::json_method (&Switch::HttpInterfaceBase::AddDevice, this), method_role); bind ("EnumerateDevices", cppcms::rpc::json_method (&Switch::HttpInterfaceBase::EnumerateDevices, this), method_role); bind ("GetDeviceDetails", cppcms::rpc::json_method (&Switch::HttpInterfaceBase::GetDeviceDetails, this), method_role); bind ("GetDeviceValues", cppcms::rpc::json_method (&Switch::HttpInterfaceBase::GetDeviceValues, this), method_role); bind ("SetDeviceValues", cppcms::rpc::json_method (&Switch::HttpInterfaceBase::SetDeviceValues, this), method_role); //bind ("SetDeviceProperties", cppcms::rpc::json_method (&Switch::HttpInterfaceBase::SetDeviceProperties, this), method_role); bind ("SubscribeToDeviceUpdates", cppcms::rpc::json_method (&Switch::HttpInterfaceBase::SubscribeToDeviceUpdates, this), method_role); bind ("UnsubscribeFromDeviceUpdates", cppcms::rpc::json_method (&Switch::HttpInterfaceBase::UnsubscribeFromDeviceUpdates, this), method_role); bind ("ListenToDeviceUpdates", cppcms::rpc::json_method (&Switch::HttpInterfaceBase::ListenToDeviceUpdates, this), method_role); dispatcher().assign ("/Help", &Switch::HttpInterfaceBase::Help, this); mapper().assign ("Help, /Help"); dispatcher().assign ("/About", &Switch::HttpInterfaceBase::About, this); mapper().assign ("About, /About"); /*dispatcher().assign ("", &Switch::HttpInterfaceBase::About, this); mapper().assign ("");*/ // set the root mapper ().root ("/Switch"); } Switch::HttpInterfaceBase::~HttpInterfaceBase () { } void Switch::HttpInterfaceBase::main (std::string i_string) { SWITCH_DEBUG_MSG_2 ("RPC called from %s: %s\n", request ().getenv ("HTTP_ORIGIN").c_str (), i_string.c_str ()); // handle CORS (Cross Origin Resource Sharing) response ().set_header ("Access-Control-Allow-Origin", request ().getenv ("HTTP_ORIGIN")); response ().set_header ("Access-Control-Allow-Credentials", "true"); response ().set_header ("Access-Control-Allow-Headers", "Content-Type"); if ("OPTIONS" == request ().request_method ()) { // this was a pure options query return; } else if ("GET" == request ().request_method ()) { // this is a long polling call SWITCH_DEBUG_MSG_0 ("GET\n"); } cppcms::rpc::json_rpc_server::main (i_string); } void Switch::HttpInterfaceBase::About () { printf ("About called\n"); response().set_html_header (); response().out() << "<h1>This is the switch system interface</h1>\n"; } void Switch::HttpInterfaceBase::Help () { printf ("Help called\n"); response().set_html_header (); response().out() << "<h1>This is the switch system interface help</h1>\n"; } void Switch::HttpInterfaceBase::Register () { try { // 0. Validate the call // 1. Validate the arguments // 2. Register the client client_id_type clientId; if (!session ().is_set ("clientId")) { // generate new client id and set in the session _GenerateClientId (clientId); session ().set ("clientId", clientId); } else { // load the listener id from the session clientId = session ().get <client_id_type> ("clientId"); } // 3. Send response cppcms::json::value result; result.set ("result", Switch::Interface::CR_OK); cppcms::rpc::json_rpc_server::return_result (result); } catch (...) { cppcms::rpc::json_rpc_server::return_error ("error"); } } void Switch::HttpInterfaceBase::AddDevice (const uint32_t& i_deviceId) { try { // 0. Validate the call if (!session ().is_set ("clientId")) { cppcms::rpc::json_rpc_server::return_error ("client not registered"); } // 1. Validate the arguments // 2. Call the framework Switch::Interface::eCallResult callResult = _AddDevice (i_deviceId); // 3. Send response cppcms::json::value result; result.set ("result", callResult); cppcms::rpc::json_rpc_server::return_result (result); } catch (...) { cppcms::rpc::json_rpc_server::return_error ("error"); } } void Switch::HttpInterfaceBase::EnumerateDevices () { try { // 0. Validate the call if (!session ().is_set ("clientId")) { cppcms::rpc::json_rpc_server::return_error ("client not registered"); } // 1. Validate the arguments // 2. Call the framework std::list <Switch::Interface::Device::Summary> outDevices; Switch::Interface::eCallResult callResult = _EnumerateDevices (outDevices); // 3. Send response cppcms::json::value result; result.set ("result", callResult); result.set ("devices", outDevices); cppcms::rpc::json_rpc_server::return_result (result); } catch (...) { cppcms::rpc::json_rpc_server::return_error ("error"); } } void Switch::HttpInterfaceBase::GetDeviceDetails (const uint32_t& i_deviceId) { try { // 0. Validate the call if (!session ().is_set ("clientId")) { cppcms::rpc::json_rpc_server::return_error ("client not registered"); } // 1. Validate the arguments // 2. Call the framework Switch::Interface::Device outDeviceDetails; Switch::Interface::eCallResult callResult = _GetDeviceDetails (outDeviceDetails, i_deviceId); // 3. Send response cppcms::json::value result; result.set ("result", callResult); result.set ("deviceDetails", outDeviceDetails); cppcms::rpc::json_rpc_server::return_result (result); } catch (...) { cppcms::rpc::json_rpc_server::return_error ("error"); } } void Switch::HttpInterfaceBase::GetDeviceValues (const uint32_t& i_deviceId) { try { // 0. Validate the call if (!session ().is_set ("clientId")) { cppcms::rpc::json_rpc_server::return_error ("client not registered"); } // 1. Validate the arguments // 2. Call the framework std::list <Switch::Interface::Device::Value> outValues; Switch::Interface::eCallResult callResult = _GetDeviceValues (outValues, i_deviceId); // 3. Send response cppcms::json::value result; result.set ("result", callResult); result.set ("deviceValues", outValues); cppcms::rpc::json_rpc_server::return_result (result); } catch (...) { cppcms::rpc::json_rpc_server::return_error ("error"); } } void Switch::HttpInterfaceBase::SetDeviceValues (const uint32_t& i_deviceId, const std::list <Switch::Interface::Device::Value>& i_values) { try { // 0. Validate the call if (!session ().is_set ("clientId")) { cppcms::rpc::json_rpc_server::return_error ("client not registered"); } // 1. Validate the arguments // 2. Call the framework Switch::Interface::eCallResult callResult = _SetDeviceValues (i_deviceId, i_values); // 3. Send response cppcms::json::value result; result.set ("result", callResult); cppcms::rpc::json_rpc_server::return_result (result); } catch (...) { cppcms::rpc::json_rpc_server::return_error ("error"); } } /*void Switch::HttpInterfaceBase::SetDeviceProperties (const uint32_t& i_deviceId, const Switch_Device::Properties& i_deviceProperties) { try { // 0. Validate the call if (!session ().is_set ("clientId")) { cppcms::rpc::json_rpc_server::return_error ("client not registered"); } // 1. Validate the arguments // 2. Call the framework Switch::Interface::eCallResult callResult = _SetDeviceProperties (i_deviceId, i_deviceProperties); // 3. Send response cppcms::json::value result; result.set ("result", callResult); cppcms::rpc::json_rpc_server::return_result (result); } catch (...) { cppcms::rpc::json_rpc_server::return_error ("error"); } }*/ void Switch::HttpInterfaceBase::SubscribeToDeviceUpdates (const uint32_t& i_deviceId) { try { // 0. Validate the call if (!session ().is_set ("clientId")) { cppcms::rpc::json_rpc_server::return_error ("client not registered"); } client_id_type clientId = session ().get <client_id_type> ("clientId"); // 1. Validate the arguments // 2. Call the framework Switch::Interface::eCallResult callResult = _SubscribeToDeviceUpdates (clientId, i_deviceId); // 3. Send response cppcms::json::value result; result.set ("result", callResult); cppcms::rpc::json_rpc_server::return_result (result); } catch (std::exception& i_exception) { cppcms::rpc::json_rpc_server::return_error (i_exception.what ()); } catch (...) { cppcms::rpc::json_rpc_server::return_error ("error"); } } void Switch::HttpInterfaceBase::UnsubscribeFromDeviceUpdates (const uint32_t& i_deviceId) { try { // 0. Validate the call if (!session ().is_set ("clientId")) { cppcms::rpc::json_rpc_server::return_error ("client not registered"); } client_id_type clientId = session ().get <client_id_type> ("clientId"); // 1. Validate the arguments // 2. Call the framework Switch::Interface::eCallResult callResult = _UnsubscribeFromDeviceUpdates (clientId, i_deviceId); // 3. Send response cppcms::json::value result; result.set ("result", callResult); cppcms::rpc::json_rpc_server::return_result (result); } catch (std::exception& i_exception) { cppcms::rpc::json_rpc_server::return_error (i_exception.what ()); } catch (...) { cppcms::rpc::json_rpc_server::return_error ("error"); } } void Switch::HttpInterfaceBase::ListenToDeviceUpdates () { try { // 0. Validate the call if (!session ().is_set ("clientId")) { cppcms::rpc::json_rpc_server::return_error ("client not registered"); return; } client_id_type clientId = session ().get <client_id_type> ("clientId"); // 1. Validate the arguments // 2. Append the context to the map of device update listener booster::shared_ptr <cppcms::rpc::json_call> listenerCall = release_call (); listenerCall->context ().response ().io_mode (cppcms::http::response::asynchronous); std::pair <device_update_listeners_type::iterator, bool> insertionResult ({ m_deviceUpdateListeners.end (), false }); { std::unique_lock <std::mutex> deviceUpdateListenersLock (m_deviceUpdateListenersMutex); insertionResult = m_deviceUpdateListeners.insert ({ clientId, listenerCall }); } // note: is access to m_deviceUpdateListeners thread-safe? if (!insertionResult.second) { cppcms::rpc::json_rpc_server::return_error ("error, listener with same clientId already listening"); return; } // 3. Handle connection time-outs listenerCall->context ().async_on_peer_reset ( std::bind (&Switch::HttpInterfaceBase::_RemoveListenerContext, this, clientId) ); // 4. Send buffered updates _SendBufferedUpdatesToListener (clientId); } catch (std::exception& i_exception) { cppcms::rpc::json_rpc_server::return_error (i_exception.what ()); } catch (...) { cppcms::rpc::json_rpc_server::return_error ("error"); } } Switch::HttpInterfaceBase::DeviceConnectionUpdate::DeviceConnectionUpdate () { static uint32_t nextAvailableIndex = 0; m_index = nextAvailableIndex; ++nextAvailableIndex; } Switch::HttpInterfaceBase::DeviceDataUpdate::DeviceDataUpdate () { static uint32_t nextAvailableIndex = 0; m_index = nextAvailableIndex; ++nextAvailableIndex; } Switch::HttpInterfaceBase::DeviceDataUpdate& Switch::HttpInterfaceBase::DeviceDataUpdate::operator= (const Switch::HttpInterfaceBase::DeviceDataUpdate& i_other) { if (this != &i_other) { SWITCH_ASSERT (i_other.m_deviceId == m_deviceId); m_index = i_other.m_index; std::list <Switch::Interface::Device::Value>::const_iterator itOtherValues; for (itOtherValues=i_other.m_dataValues.begin (); i_other.m_dataValues.end ()!=itOtherValues; ++itOtherValues) { const Switch::Interface::Device::Value& otherValue = *itOtherValues; // find the corresponding already buffered value std::list <Switch::Interface::Device::Value>::iterator itUpdateValues; for (itUpdateValues=m_dataValues.begin (); m_dataValues.end ()!=itUpdateValues; ++itUpdateValues) { if ((*itUpdateValues).m_address == otherValue.m_address) { break; } } if (m_dataValues.end () != itUpdateValues) { (*itUpdateValues).m_value = otherValue.m_value; } else { // this value is not yet buffered, add it to the list m_dataValues.push_back (otherValue); } } } return *this; } void Switch::HttpInterfaceBase::_OnDeviceUpdate (const std::set <client_id_type>& i_deviceUpdateListenerIds, const DeviceDataUpdate& i_update) { // create the message cppcms::json::value deviceData; deviceData.set ("deviceId", i_update.m_deviceId); deviceData.set ("values", i_update.m_dataValues); cppcms::json::value deviceUpdate; deviceUpdate.set ("index", i_update.m_index); deviceUpdate.set ("event", "dataUpdate"); deviceUpdate.set ("data", deviceData); // send the message to the handler _HandleDeviceUpdate (i_deviceUpdateListenerIds, i_update.m_deviceId, deviceUpdate); } void Switch::HttpInterfaceBase::_OnDeviceUpdate (const std::set <client_id_type>& i_deviceUpdateListenerIds, const DeviceConnectionUpdate& i_update) { // create the message cppcms::json::value deviceData; deviceData.set ("deviceId", i_update.m_deviceId); deviceData.set ("connection", i_update.m_connection); cppcms::json::value deviceUpdate; deviceUpdate.set ("index", i_update.m_index); deviceUpdate.set ("event", "connectionUpdate"); deviceUpdate.set ("data", deviceData); // send the message to the handler _HandleDeviceUpdate (i_deviceUpdateListenerIds, i_update.m_deviceId, deviceUpdate); } void Switch::HttpInterfaceBase::_HandleDeviceUpdate (const std::set <client_id_type>& i_deviceUpdateListenerIds, const uint32_t& i_deviceId, const cppcms::json::value& i_message) { std::unique_lock <std::mutex> deviceUpdateListenersLock (m_deviceUpdateListenersMutex); // send the message to all listeners for (std::set <client_id_type>::const_iterator itListenerId=i_deviceUpdateListenerIds.begin (); i_deviceUpdateListenerIds.end ()!=itListenerId; ++itListenerId) { // get the link to the listener's context device_update_listeners_type::iterator itListener = m_deviceUpdateListeners.find (*itListenerId); if (m_deviceUpdateListeners.end () == itListener) { continue; } // get the listener's context booster::shared_ptr <cppcms::rpc::json_call> listenerCall = itListener->second; // send the response to the listener //listenerCall->context ().response ().set_plain_text_header (); listenerCall->context ().response ().out () << i_message; listenerCall->context ().async_flush_output ( std::bind (&Switch::HttpInterfaceBase::_OnListenerAsyncFlushOutputCompleted, this, itListener->first, args::_1) ); } } void Switch::HttpInterfaceBase::_GenerateClientId (client_id_type& o_clientId) { static client_id_type nextClientId = 0; o_clientId = nextClientId; ++nextClientId; } void Switch::HttpInterfaceBase::_RemoveListenerContext (const client_id_type& i_clientId) { std::unique_lock <std::mutex> deviceUpdateListenersLock (m_deviceUpdateListenersMutex); m_deviceUpdateListeners.erase (i_clientId); } void Switch::HttpInterfaceBase::_OnListenerAsyncFlushOutputCompleted (const client_id_type& i_clientId, const cppcms::http::context::completion_type& i_completionType) { if (cppcms::http::context::operation_aborted == i_completionType) { // note: is access to m_deviceUpdateListeners thread-safe? _RemoveListenerContext (i_clientId); } } void Switch::HttpInterfaceBase::_Help () { }
[ "wouter.charle@gmail.com" ]
wouter.charle@gmail.com
09e4df02db4fa33e4697abffc35313674ed164e5
abf2afb7921441e3caafe6c852232b9233dd218c
/119.cpp
9d5cfdc36420fc45d1ea7681bf8cf454e6327606
[]
no_license
farhapartex/uva-solutions
97e2a01ea2db571932c8f673708ffcf657ac2a16
d14d2be95c60d3474befe4c0625ae0c9ec01749a
refs/heads/master
2020-05-23T20:59:01.588640
2019-05-17T08:14:05
2019-05-17T08:14:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,182
cpp
#include<iostream> #include<cstdio> #include<stack> #include<queue> #include<vector> #include<algorithm> #include<map> #include<cstring> #include<sstream> #include<cmath> using namespace std; const double pi = 2*acos(0); #define pf printf #define sc scanf #define pb push_back #define MIN(x,y) ((x) < (y) ? (x) : (y)) #define MAX(x,y) ((x) > (y) ? (x) : (y)) int main() { int frnd,amount,people; string str1, str2; vector<string> v; map<string,int> my_map; sc("%d",&frnd); while (1) { for(int i=0 ; i<frnd ; i++) { cin>>str1; v.pb(str1); } for(int i=0 ; i<frnd ; i++) { cin>>str2>>amount>>people; if(people) { my_map[str2] -= (amount/people)*people; } for(int j=0 ; j<people ; j++) { cin>>str2; my_map[str2]+= (amount/people); } } for(int i=0 ; i<frnd ; i++) { cout<<v[i]<<" "<<my_map[v[i]]<<endl; } v.clear(); my_map.clear(); if(cin>>frnd) cout<<endl; else break; } return 0; }
[ "hasan08sust@gmail.com" ]
hasan08sust@gmail.com
2322e258a9ab374f5ef777fe672ef25309dbad87
834d7f8c80fee88a00ad0c7a06605d6a8dbb0343
/source/poznamky/2011-03-30-racionalizacia/a.cpp
91a08b6a24836dfcef1eb922c0c19065409f4600
[]
no_license
breviar-sk/Liturgia-hodin-online
57f7a1392a8dc57e83b02c493b66fe7c15d9e709
a1156cc61233876a58f20ea9475a1722048a18c5
refs/heads/master
2023-03-18T19:08:31.316179
2023-03-16T03:00:04
2023-03-16T03:00:04
1,878,182
19
8
null
2022-08-19T07:26:31
2011-06-10T21:57:25
C++
WINDOWS-1250
C++
false
false
2,431
cpp
#define PRILEP_REQUEST_OPTIONS (pom2, pom3, prvy_ampersand) { /* 2006-07-31: pridané odovzdanie parametra pre jazyk */ if(_global_jazyk != JAZYK_SK){ sprintf(pom3, ((prvy_ampersand == ANO)? HTML_AMPERSAND : STR_EMPTY)"%s=%s", STR_JAZYK, skratka_jazyka[_global_jazyk]); strcat(pom2, pom3); Log("\tPrilepil som aj jazyk: `%s' (2006-07-31)\n", pom3); } /* 2010-08-04: pridané odovzdanie parametra pre kalendár * 2010-09-14: podmienka opravená; ak nie je kalendár určený resp. je všeobecný pre daný jazyk, nie je potrebné ho exportovať */ if(PODMIENKA_EXPORTOVAT_KALENDAR){ sprintf(pom3, HTML_AMPERSAND"%s=%s", STR_KALENDAR, skratka_kalendara[_global_kalendar]); strcat(pom2, pom3); Log("\tPrilepil som aj kalendár: `%s' (2010-08-04)\n", pom3); } else{ Log("\tNetreba prilepiť kalendár (jazyk == %s, kalendár == %s)\n", skratka_jazyka[_global_jazyk], skratka_kalendara[_global_kalendar]); } /* 2008-08-08: pridané odovzdanie parametra pre css */ if(_global_css != CSS_breviar_sk){ sprintf(pom3, HTML_AMPERSAND"%s=%s", STR_CSS, skratka_css[_global_css]); strcat(pom2, pom3); Log("\tPrilepil som aj css: `%s' (2008-08-08)\n", pom3); } /* 2011-01-26: pridané odovzdanie parametrov pre options1 atď. */ if(_global_opt1 != CFG_OPTION1_DEFAULT){ sprintf(pom3, HTML_AMPERSAND"%s=%d", STR_MODL_OPT1, _global_opt1); strcat(pom2, pom3); Log("\tPrilepil som aj opt1: `%s' (2011-01-26)\n", pom3); } if(_global_opt2 != CFG_OPTION2_DEFAULT){ sprintf(pom3, HTML_AMPERSAND"%s=%d", STR_MODL_OPT2, _global_opt2); strcat(pom2, pom3); Log("\tPrilepil som aj opt2: `%s' (2011-01-26)\n", pom3); } if(_global_opt4 != CFG_OPTION4_DEFAULT){ sprintf(pom3, HTML_AMPERSAND"%s=%d", STR_MODL_OPT4, _global_opt4); strcat(pom2, pom3); Log("\tPrilepil som aj opt4: `%s' (2011-01-26)\n", pom3); } if(_global_opt5 != CFG_OPTION5_DEFAULT){ sprintf(pom3, HTML_AMPERSAND"%s=%d", STR_MODL_OPT5, _global_opt5); strcat(pom2, pom3); Log("\tPrilepil som aj opt5: `%s' (2011-01-26)\n", pom3); } if(_global_opt8 != CFG_OPTION8_DEFAULT){ sprintf(pom3, HTML_AMPERSAND"%s=%d", STR_MODL_OPT8, _global_opt8); strcat(pom2, pom3); Log("\tPrilepil som aj opt8: `%s' (2011-03-23)\n", pom3); } if(_global_opt9 != CFG_OPTION9_DEFAULT){ sprintf(pom3, HTML_AMPERSAND"%s=%d", STR_MODL_OPT9, _global_opt9); strcat(pom2, pom3); Log("\tPrilepil som aj opt9: `%s' (2011-03-23)\n", pom3); }
[ "ri.kralovic@gmail.com" ]
ri.kralovic@gmail.com
3354939e1e367a44439c96ce5e6faec16cbed721
037c7a8bc39146c31449e248f8a9c025ec1c01d0
/02.device/arduino/chapter3/ultra_ex01_lcd_h/Ultra.h
15fcb9afa304d7b21e235befd74e4eea8c52e8af
[]
no_license
cooluks2/iot
e62874624bc06acbe5647fed35f6ec62bd582e7f
e452b29f0c6967dad9b11207c3b5189cec385497
refs/heads/master
2023-01-22T17:19:58.456577
2020-11-20T11:36:34
2020-11-20T11:36:34
292,755,019
1
0
null
null
null
null
UTF-8
C++
false
false
161
h
#pragma once #include <Arduino.h> class Ultra { protected: int echo; int trig; public: Ultra(int echo, int trig); int read(); };
[ "cooluks2@gmail.com" ]
cooluks2@gmail.com
6892e1b529ea838630ff715afd06263e699326f0
d23296108c883bff30d13a05a3710ae82804a015
/A/344A.cpp
bb677deb18008441ddbd7186aabb8bc8effb09a7
[]
no_license
rishabhs-s/Codeforces
99583b140a97147f4e4320ec9dd754f71ffac255
d1d9f7c3cf6af0af2622be0d30d4e369a017d9b7
refs/heads/main
2023-07-05T14:26:20.349736
2021-05-09T07:17:29
2021-05-09T07:17:29
363,628,615
0
0
null
null
null
null
UTF-8
C++
false
false
206
cpp
#include<bits/stdc++.h> using namespace std; int main(){ int n; int c=0; cin>>n; int a[n]; for(int i=0;i<n;i++){ cin>>a[i]; } for(int i=0;i<n;i++){ if(a[i]!=a[i+1]){ c++; } } cout<<c; }
[ "47741140+rishabhs-s@users.noreply.github.com" ]
47741140+rishabhs-s@users.noreply.github.com
2e1b29b795b6ff3a75642fa87138c7fb710d91ab
dc7579e2f2572f9df50d5034a6dc6e2f842f70ef
/node_modules/hummus/src/FormXObjectDriver.cpp
b5b8d7f77e81f3d439754a29ea2d44c4bcdfcc72
[ "Apache-2.0" ]
permissive
adityainterwork/pdf-microservice
0e98f1369c2868c93efdcd4e2594da826ced1272
551c627beb4c512a9c9b1dddce96db3adb3f3722
refs/heads/master
2020-05-16T19:33:01.171714
2019-04-25T05:07:11
2019-04-25T05:07:11
183,262,555
0
0
null
null
null
null
UTF-8
C++
false
false
5,120
cpp
/* Source File : FormXObjectDriver.cpp Copyright 2013 Gal Kahana HummusJS 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 "FormXObjectDriver.h" #include "PDFFormXObject.h" #include "XObjectContentContextDriver.h" #include "ResourcesDictionaryDriver.h" #include "PDFStreamDriver.h" using namespace v8; FormXObjectDriver::~FormXObjectDriver() { delete FormXObject; } FormXObjectDriver::FormXObjectDriver() { mPDFWriterDriver = NULL; FormXObject = NULL; } void FormXObjectDriver::Init() { CREATE_ISOLATE_CONTEXT; Local<FunctionTemplate> t = NEW_FUNCTION_TEMPLATE(New); t->SetClassName(NEW_STRING("FormXObject")); t->InstanceTemplate()->SetInternalFieldCount(1); SET_ACCESSOR_METHOD(t,"id", GetID); SET_PROTOTYPE_METHOD(t, "getContentContext", GetContentContext); SET_PROTOTYPE_METHOD(t, "getResourcesDictinary", GetResourcesDictionary); SET_PROTOTYPE_METHOD(t, "getResourcesDictionary", GetResourcesDictionary); SET_PROTOTYPE_METHOD(t, "getContentStream", GetContentStream); SET_CONSTRUCTOR(constructor, t); SET_CONSTRUCTOR_TEMPLATE(constructor_template, t); } METHOD_RETURN_TYPE FormXObjectDriver::NewInstance(const ARGS_TYPE& args) { CREATE_ISOLATE_CONTEXT; CREATE_ESCAPABLE_SCOPE; Local<Object> instance = NEW_INSTANCE(constructor); SET_FUNCTION_RETURN_VALUE(instance) } v8::Handle<v8::Value> FormXObjectDriver::GetNewInstance(const ARGS_TYPE& args) { CREATE_ISOLATE_CONTEXT; CREATE_ESCAPABLE_SCOPE; Local<Object> instance = NEW_INSTANCE(constructor); return CLOSE_SCOPE(instance); } bool FormXObjectDriver::HasInstance(Handle<Value> inObject) { CREATE_ISOLATE_CONTEXT; return inObject->IsObject() && HAS_INSTANCE(constructor_template, inObject); } Persistent<Function> FormXObjectDriver::constructor; Persistent<FunctionTemplate> FormXObjectDriver::constructor_template; METHOD_RETURN_TYPE FormXObjectDriver::New(const ARGS_TYPE& args) { CREATE_ISOLATE_CONTEXT; CREATE_ESCAPABLE_SCOPE; FormXObjectDriver* form = new FormXObjectDriver(); form->Wrap(args.This()); SET_FUNCTION_RETURN_VALUE(args.This()) } METHOD_RETURN_TYPE FormXObjectDriver::GetID(Local<String> property, const PROPERTY_TYPE &info) { CREATE_ISOLATE_CONTEXT; CREATE_ESCAPABLE_SCOPE; FormXObjectDriver* form = ObjectWrap::Unwrap<FormXObjectDriver>(info.Holder()); if(!form->FormXObject) { THROW_EXCEPTION("form object not initialized, create using pdfWriter.CreateFormXObject"); SET_ACCESSOR_RETURN_VALUE(UNDEFINED) } SET_ACCESSOR_RETURN_VALUE(NEW_NUMBER(form->FormXObject->GetObjectID())) } METHOD_RETURN_TYPE FormXObjectDriver::GetContentContext(const ARGS_TYPE& args) { CREATE_ISOLATE_CONTEXT; CREATE_ESCAPABLE_SCOPE; FormXObjectDriver* formDriver = ObjectWrap::Unwrap<FormXObjectDriver>(args.This()); Handle<Value> newInstance = XObjectContentContextDriver::GetNewInstance(args); XObjectContentContextDriver* contentContextDriver = ObjectWrap::Unwrap<XObjectContentContextDriver>(newInstance->TO_OBJECT()); contentContextDriver->ContentContext = formDriver->FormXObject->GetContentContext(); contentContextDriver->FormOfContext = formDriver->FormXObject; contentContextDriver->SetResourcesDictionary(&(formDriver->FormXObject->GetResourcesDictionary())); SET_FUNCTION_RETURN_VALUE(newInstance) } METHOD_RETURN_TYPE FormXObjectDriver::GetResourcesDictionary(const ARGS_TYPE& args) { CREATE_ISOLATE_CONTEXT; CREATE_ESCAPABLE_SCOPE; FormXObjectDriver* formDriver = ObjectWrap::Unwrap<FormXObjectDriver>(args.This()); Handle<Value> newInstance = ResourcesDictionaryDriver::GetNewInstance(args); ResourcesDictionaryDriver* resourceDictionaryDriver = ObjectWrap::Unwrap<ResourcesDictionaryDriver>(newInstance->TO_OBJECT()); resourceDictionaryDriver->ResourcesDictionaryInstance = &(formDriver->FormXObject->GetResourcesDictionary()); SET_FUNCTION_RETURN_VALUE(newInstance) } METHOD_RETURN_TYPE FormXObjectDriver::GetContentStream(const ARGS_TYPE& args) { CREATE_ISOLATE_CONTEXT; CREATE_ESCAPABLE_SCOPE; FormXObjectDriver* formDriver = ObjectWrap::Unwrap<FormXObjectDriver>(args.This()); Handle<Value> newInstance = PDFStreamDriver::GetNewInstance(args); PDFStreamDriver* streamDriver = ObjectWrap::Unwrap<PDFStreamDriver>(newInstance->TO_OBJECT()); streamDriver->PDFStreamInstance = formDriver->FormXObject->GetContentStream(); SET_FUNCTION_RETURN_VALUE(newInstance) }
[ "aditya@interwork.biz" ]
aditya@interwork.biz
4e415ca6bec655de8917c1d157b3b44f79ff918b
4cdc129237eafabe2647f09fdb5e257958c26a2e
/common/mpiHao/test/mpi_fun_test.cpp
2c6453494b3ee6c46ad0cdd0e339c0df47bd3606
[]
no_license
hshi/AFQMCLAB
d6cf2faa02d212c1a7f008148b9fcd5e2c386241
79c668bdbdf9c7097e4292dd58831b09b9fbcb4b
refs/heads/master
2020-04-02T18:34:37.358694
2018-10-25T16:46:59
2018-10-25T16:46:59
126,272,964
1
0
null
null
null
null
UTF-8
C++
false
false
7,980
cpp
#include "../include/mpi_fun.h" #include "../../testHao/gtest_custom.h" using namespace std; #ifdef MPI_HAO TEST (MPIBcast, bool) { bool i= false; if(MPIRank()==0) i= true; MPIBcast(i); EXPECT_TRUE( i ); } TEST (MPIBcast, int) { int i=0; if(MPIRank()==0) i=2; MPIBcast(i); EXPECT_EQ (2, i); } TEST (MPIBcast, long) { long i=0; if(MPIRank()==0) i=2; MPIBcast(i); EXPECT_EQ (2, i); } TEST (MPIBcast, longlong) { long long i=0; if(MPIRank()==0) i=2; MPIBcast(i); EXPECT_EQ (2, i); } TEST (MPIBcast, size_t) { size_t i=0; if(MPIRank()==0) i=800; MPIBcast(i); EXPECT_EQ (static_cast<size_t>(800), i); } TEST (MPIBcast, float) { float i=0; if(MPIRank()==0) i=2.23; MPIBcast(i); EXPECT_FLOAT_EQ (2.23, i); } TEST (MPIBcast, double) { double i=0; if(MPIRank()==0) i=2.23; MPIBcast(i); EXPECT_DOUBLE_EQ (2.23, i); } TEST (MPIBcast, complex_float) { complex<float> i(0,0); if(MPIRank()==0) i=complex<float>(2.0, 2.2); MPIBcast(i); EXPECT_COMPLEXFLOAT_EQ(complex<float>(2.0, 2.2), i); } TEST (MPIBcast, complex_double) { complex<double> i(0,0); if(MPIRank()==0) i=complex<double>(2.0, 2.2); MPIBcast(i); EXPECT_COMPLEXDOUBLE_EQ(complex<double>(2.0, 2.2), i); } TEST (MPIBcast, string) { string i="bvd"; if(MPIRank()==0) i="aaacddfdfdfdfdfdcdd"; MPIBcast(i); // cout<<i<<endl; EXPECT_EQ("aaacddfdfdfdfdfdcdd", i); } TEST (MPIBcast, int_pointer) { const int N = 16; int a[N] = {}; int b[N] = {}; for(int i=0; i<N; i++) b[i]=i; if(MPIRank()==0) { for(int i=0; i<N; i++) a[i]=b[i]; } MPIBcast(N,a); EXPECT_POINTER_EQ(N, b, a); } TEST (MPIBcast, size_t_pointer) { const size_t N = 16; size_t a[N] = {}; size_t b[N] = {}; for(size_t i=0; i<N; i++) b[i]=i*100; if(MPIRank()==0) { for(size_t i=0; i<N; i++) a[i]=b[i]; } MPIBcast(N,a); EXPECT_POINTER_EQ(N, b, a); } TEST (MPIBcast, double_pointer) { const int N = 11; double a[N] = {}; double b[N] = {}; for(int i=0; i<N; i++) b[i]=i*1.2; if(MPIRank()==0) { for(int i=0; i<N; i++) a[i]=b[i]; } MPIBcast(N,a); EXPECT_POINTER_DOUBLE_EQ(N, b, a); } TEST (MPIBcast, complexdouble_pointer) { const int N = 7; complex<double> a[N] = {}; complex<double> b[N] = {}; for(int i=0; i<N; i++) b[i] = complex<double>(i,i); if(MPIRank()==0) { for(int i=0; i<N; i++) a[i]=b[i]; } MPIBcast(N,a); EXPECT_POINTER_COMPLEXDOUBLE_EQ(N, b, a); } TEST(MPIReduce, size_t_max) { size_t i = MPIRank(); size_t maxi; MPIReduce(i, maxi, MPI_MAX); if( MPIRank()==0 ) EXPECT_EQ( MPISize()-1, maxi); } TEST(MPIReduce, size_t_min) { size_t i = MPIRank(); size_t mini; MPIReduce(i, mini, MPI_MIN); if( MPIRank()==0 ) EXPECT_EQ( static_cast<size_t>(0), mini); } TEST(MPIReduce, double_min) { double i = MPIRank(); double mini; MPIReduce(i, mini, MPI_MIN); if( MPIRank()==0 ) EXPECT_DOUBLE_EQ( 0.0, mini); } TEST(MPIAllreduce, double_sum) { double i = 2.0; double size = MPISize(); double sum; MPIAllreduce(i, sum, MPI_SUM); EXPECT_DOUBLE_EQ(i*size, sum); } TEST(MPIAllreduce, complex_double_sum) { complex<double> i ={2.0, 3.0}; double size = MPISize(); complex<double> sum; MPIAllreduce(i, sum, MPI_SUM); EXPECT_COMPLEXDOUBLE_EQ(i*size, sum); } TEST(MPIAllreduce, double_pointer_sum) { const int N =10; double s[N] = {}; for(int i=0; i<N; i++) s[i]= i; double expected[N] = {}; double actual[N] = {}; double size = MPISize(); for (int i = 0; i < N; ++i) { expected[i] = s[i] * size; } MPIAllreduce( N, s, actual, MPI_SUM ); EXPECT_POINTER_DOUBLE_EQ(N, expected , actual); } TEST(MPIAllreduce, complexdouble_pointer_sum) { const int N =10; complex<double> s[N] = {}; for(int i=0; i<N; i++) s[i]= complex<double>(i,i); complex<double> expected[N] = {}; complex<double> actual[N] = {}; double size = MPISize(); for (int i = 0; i < N; ++i) { expected[i] = s[i] * size; } MPIAllreduce( N, s, actual, MPI_SUM ); EXPECT_POINTER_COMPLEXDOUBLE_EQ(N, expected , actual); } TEST(MPIGather, double) { double i=MPIRank(); int size = MPISize(); double actual[size]; MPIGather(i,actual); double expected[size]; for (int j = 0; j < size ; ++j) { expected[j] = j; } if( MPIRank()==0 ) EXPECT_POINTER_DOUBLE_EQ(size, expected , actual); } TEST(MPIGather, complex_double) { complex<double> i( MPIRank()*1.0, MPIRank()*2.0 ); int size = MPISize(); complex<double> actual[size]; MPIGather(i,actual); complex<double> expected[size]; for (int j = 0; j < size ; ++j) { expected[j] = complex<double>( j, j*2.0 ); } if( MPIRank()==0 ) EXPECT_POINTER_COMPLEXDOUBLE_EQ(size, expected , actual); } TEST(MPISum, int) { int i = 2; int size = MPISize(); int sum = MPISum(i); if( MPIRank()==0 ) EXPECT_EQ(i*size, sum); } TEST(MPISum, long) { long i = 2; long size = MPISize(); long sum = MPISum(i); if( MPIRank()==0 ) EXPECT_EQ(i*size, sum); } TEST(MPISum, longlong) { long long i = 600; long long size = MPISize(); long long sum = MPISum(i); if( MPIRank()==0 ) EXPECT_EQ(i*size, sum); } TEST(MPISum, size_t) { size_t i = 600; size_t size = MPISize(); size_t sum = MPISum(i); if( MPIRank()==0 ) EXPECT_EQ(i*size, sum); } TEST(MPISum, float) { float i = 2.0; float size = MPISize(); float sum = MPISum(i); if( MPIRank()==0 ) EXPECT_FLOAT_EQ(i*size, sum); } TEST(MPISum, double) { double i = 2.0; double size = MPISize(); double sum = MPISum(i); if( MPIRank()==0 ) EXPECT_DOUBLE_EQ(i*size, sum); } TEST(MPISum, complex_float) { complex<float> i ={2.0, 3.0}; complex<float> size = MPISize(); complex<float> sum = MPISum(i); if( MPIRank()==0 ) EXPECT_COMPLEXFLOAT_EQ(i*size, sum); } TEST(MPISum, complex_double) { complex<double> i ={2.0, 3.0}; double size = MPISize(); complex<double> sum = MPISum(i); if( MPIRank()==0 ) EXPECT_COMPLEXDOUBLE_EQ(i*size, sum); } TEST(MPISum, double_pointer) { const int N =11; double s[N] = {}; for(int i=0; i<N; i++) s[i]=i*1.2; double expected[N] = {}; double actual[N] = {}; double size = MPISize(); for (int i = 0; i < N; ++i) { expected[i] = s[i] * size; } MPISum( N, s, actual ); if( MPIRank()==0 ) EXPECT_POINTER_DOUBLE_EQ(N, expected , actual); } TEST(MPISum, complexdouble_pointer) { const int N =10; complex<double> s[N] = {}; for(int i=0; i<N; i++) s[i]= complex<double>(i,i); complex<double> expected[N] = {}; complex<double> actual[N] = {}; double size = MPISize(); for (int i = 0; i < N; ++i) { expected[i] = s[i] * size; } MPISum( N, s, actual ); if( MPIRank()==0 ) EXPECT_POINTER_COMPLEXDOUBLE_EQ(N, expected , actual); } #else TEST(MPIFun, serial) { complex<double> buffer(1.9,2.3); complex<double> buffer_array[3] = { {1.2, 3.0}, {5.2, 1.0}, {7.0, 8.999} }; complex<double> expected = buffer; complex<double> expected_array[3]; for(int i=0; i<3; i++) expected_array[i] = buffer_array[i]; //Test MPISzie and MPIRank EXPECT_EQ( 1, MPISize() ); EXPECT_EQ( 0, MPIRank() ); //Test MPIBcast MPIBcast(buffer); EXPECT_COMPLEXDOUBLE_EQ( expected, buffer ); MPIBcast(3, buffer_array); EXPECT_POINTER_COMPLEXDOUBLE_EQ( 3, expected_array, buffer_array ); //Test MPISum buffer = MPISum(buffer); EXPECT_COMPLEXDOUBLE_EQ( expected, buffer ); MPISum( 3, expected_array, buffer_array ); EXPECT_POINTER_COMPLEXDOUBLE_EQ( 3, expected_array, buffer_array ); } #endif
[ "boruoshihao@gmail.com" ]
boruoshihao@gmail.com
9000e67e0e82cba9f165423644acb08c95ddcee5
568c36ac50f821e81eec1ccde2312191f54183e2
/RecoCTPPS/PixelLocal/plugins/CTPPSPixelTrackAnalyzer.cc
7a4dfebc3e3eab05db5559cd592f01a5e102d169
[]
no_license
fabferro/ctpps_withHector
168353b6948c6a9c5c50340f11acc1f7374a8da9
47598142f32440474ba0395d49e9e7800509375c
refs/heads/master
2021-09-05T05:55:01.644890
2018-01-17T10:08:01
2018-01-17T10:08:01
113,447,796
0
1
null
2018-01-17T10:08:02
2017-12-07T12:23:57
Python
UTF-8
C++
false
false
10,580
cc
#include "RecoCTPPS/PixelLocal/interface/CTPPSPixelTrackAnalyzer.h" #include "Geometry/VeryForwardGeometryBuilder/interface/CTPPSGeometry.h" #include "Geometry/Records/interface/VeryForwardMisalignedGeometryRecord.h" #include "DataFormats/GeometryVector/interface/LocalPoint.h" #include "DataFormats/GeometryVector/interface/LocalVector.h" #include "DataFormats/CTPPSDetId/interface/CTPPSPixelDetId.h" #include <iostream> #include <string> using namespace std; CTPPSPixelTrackAnalyzer:: CTPPSPixelTrackAnalyzer(const edm::ParameterSet& pset) // : theRPixDetTopology_(pset) { _outFile = new TFile("myFile.root","RECREATE"); _verbosity = pset.getUntrackedParameter<unsigned int> ("Verbosity"); if(_outFile->IsOpen()) cout<<"file open!"<<endl; else cout<<"*** Error in opening file ***"<<endl; auto tagPixelDigi = pset.getParameter<edm::InputTag>("tagPixelDigi"); pixelDigiToken_ = consumes<edm::DetSetVector<CTPPSPixelDigi> >( tagPixelDigi); auto tagPixelRecHit = pset.getParameter<edm::InputTag>("tagPixelRecHit"); tokenCTPPSPixelRecHit_ = consumes<edm::DetSetVector<CTPPSPixelRecHit> >(tagPixelRecHit); auto tagPixelCluster = pset.getParameter<edm::InputTag>("tagPixelCluster"); tokenCTPPSPixelCluster_ = consumes<edm::DetSetVector<CTPPSPixelCluster> >(tagPixelCluster); auto tagPixelTrack = pset.getParameter<edm::InputTag>("tagPixelTrack"); if (not tagPixelTrack.label().empty()){ pixelTrackToken_ = consumes< edm::DetSetVector<CTPPSPixelLocalTrack> > (tagPixelTrack); } } CTPPSPixelTrackAnalyzer::~CTPPSPixelTrackAnalyzer(){ } void CTPPSPixelTrackAnalyzer::fillDescriptions( edm::ConfigurationDescriptions& descriptions ) { edm::ParameterSetDescription desc; desc.add<edm::InputTag>( "tagPixelTrack" , edm::InputTag( "ctppsPixelLocalTracks" ) ); desc.add<edm::InputTag>( "tagPixelDigi" , edm::InputTag( "ctppsPixelDigis" ) ); desc.add<edm::InputTag>( "tagPixelRecHit" , edm::InputTag( "ctppsPixelRecHits" ) ); desc.add<edm::InputTag>( "tagPixelCluster" , edm::InputTag( "ctppsPixelClusters" ) ); desc.addUntracked<unsigned int>("Verbosity",0); descriptions.add( "ctppsPixelTrackAnalyzer", desc ); } void CTPPSPixelTrackAnalyzer::beginJob(){ for(unsigned int i=0; i<10000; i++){ tracks45_per_ls[i]=0; tracks56_per_ls[i]=0; events_per_ls[i]=0; } ls_max=10000; _h_45 = new TH2F("Tracks45","Tracks45",300,-0.5,299.5,200,-0.5,199.5); _h_56 = new TH2F("Tracks56","Tracks56",300,-0.5,299.5,200,-0.5,199.5); _h_D_45 = new TH2F("Digis45","Digis45",300,-0.5,299.5,200,-0.5,199.5); _h_D_56 = new TH2F("Digis56","Digis56",300,-0.5,299.5,200,-0.5,199.5); _h_D_ADC = new TH1F("DigisADC","DigisADC",257,-0.5,256.5); _h_RH_45 = new TH2F("RH45","RH45",100,-15,15,100,-15,15); _h_RH_56 = new TH2F("RH56","RH56",100,-15,15,100,-15,15); _h_CL_size = new TH1F("CLsize","CLsize",10,-0.5,9.5); _h_ELE_size1 = new TH1F("ELEsize1","ELEsize1",200,-0.5,100000); _h_ELE_size2 = new TH1F("ELEsize2","ELEsize2",200,-0.5,100000); _h_ELEsum_size2 = new TH1F("ELEsumsize2","ELEsumsize2",200,-0.5,100000); _h_ELEmin_size2 = new TH1F("ELEminsize2","ELEminsize2",200,-0.5,100000); _h_ELEmax_size2 = new TH1F("ELEmaxsize2","ELEmaxsize2",200,-0.5,100000); } void CTPPSPixelTrackAnalyzer::endJob(){ float avg_tks_45[10000]; float avg_tks_56[10000]; float ls[10000]; for(unsigned int i=0; i<10000; i++){ avg_tks_45[i]=0; avg_tks_56[i]=0; ls[i]=float(i); if(events_per_ls[i]>0){ avg_tks_45[i]=float(tracks45_per_ls[i])/float(events_per_ls[i]); avg_tks_56[i]=float(tracks56_per_ls[i])/float(events_per_ls[i]); } } _gr_avg_45 = new TGraph(10000,ls,avg_tks_45); _gr_avg_56 = new TGraph(10000,ls,avg_tks_56); _outFile->cd(); _gr_avg_45->SetName("AvgPxlTrk45"); _gr_avg_45->SetTitle("Avg pxl trk number 45"); _gr_avg_45->SetMarkerColor(2); _gr_avg_45->SetMarkerStyle(3); _gr_avg_45->GetXaxis()->SetLimits(0, ls_max+10); _gr_avg_45->GetXaxis()->SetTitle("LS"); // _gr_avg_45->GetYaxis()->SetLimits(ylo,yhi); // _gr_avg_45->GetYaxis()->SetTitle(axis); // _gr_avg_45->Draw("A*"); _gr_avg_56->SetName("AvgPxlTrk56"); _gr_avg_56->SetTitle("Avg pxl trk number 56"); _gr_avg_56->SetMarkerColor(4); _gr_avg_56->SetMarkerStyle(3); _gr_avg_56->GetXaxis()->SetLimits(0, ls_max+10); _gr_avg_56->GetXaxis()->SetTitle("LS"); _h_45->SetName("PxlTrk45"); _h_45->SetTitle("pxl trk number 45"); _h_45->GetXaxis()->SetTitle("LS"); _h_45->GetYaxis()->SetTitle("N tracks"); _h_56->SetName("PxlTrk56"); _h_56->SetTitle("pxl trk number 56"); _h_56->GetXaxis()->SetTitle("LS"); _h_56->GetYaxis()->SetTitle("N tracks"); _h_CL_size->SetName("CLsize"); _gr_avg_45->Write(); _gr_avg_56->Write(); _h_45->Write(); _h_56->Write(); _h_D_45->Write(); _h_D_56->Write(); _h_D_ADC->Write(); _h_RH_45->Write(); _h_RH_56->Write(); _h_CL_size->Write(); _h_ELE_size1->Write(); _h_ELE_size2->Write(); _h_ELEsum_size2->Write(); _h_ELEmin_size2->Write(); _h_ELEmax_size2->Write(); _outFile->Close(); delete _outFile; } void CTPPSPixelTrackAnalyzer::analyze(const edm::Event & event, const edm::EventSetup& eventSetup){ if(_verbosity)cout << "--- Run: " << event.id().run() << " Event: " << event.id().event() << " Bunch crossing: " << event.bunchCrossing() << " Lumi block: " << event.luminosityBlock() << endl; if(event.luminosityBlock()>10000)throw cms::Exception("Track analyzer") << "lumi block > 10000"; _bunchCrossing = event.bunchCrossing(); _ls = event.luminosityBlock(); edm::Handle<edm::DetSetVector<CTPPSPixelDigi> > digis; event.getByToken(pixelDigiToken_, digis); unsigned int digis45=0; unsigned int digis56=0; // Loop on digis edm::DetSetVector<CTPPSPixelDigi>::const_iterator digiDSViter = digis->begin(); for (; digiDSViter != digis->end(); digiDSViter++) { CTPPSPixelDetId detIdObject(digiDSViter->detId()); edm::DetSet<CTPPSPixelDigi>::const_iterator begin = (*digiDSViter).begin(); edm::DetSet<CTPPSPixelDigi>::const_iterator end = (*digiDSViter).end(); for (edm::DetSet<CTPPSPixelDigi>::const_iterator di = begin; di != end; di++) { // Detector ID _h_D_ADC->Fill((*di).adc()); if(detIdObject.arm()==0){ digis45++; _h_D_45->Fill((*di).row(),(*di).column()); }else{ digis56++; _h_D_56->Fill((*di).row(),(*di).column()); } } } //------------------------------------------------------ edm::Handle<edm::DetSetVector<CTPPSPixelCluster> > clusters; event.getByToken(tokenCTPPSPixelCluster_, clusters); edm::DetSetVector<CTPPSPixelCluster>::const_iterator clDSViter = clusters->begin(); for (; clDSViter != clusters->end(); clDSViter++) { CTPPSPixelDetId detIdObject(clDSViter->detId()); edm::DetSet<CTPPSPixelCluster>::const_iterator begin = (*clDSViter).begin(); edm::DetSet<CTPPSPixelCluster>::const_iterator end = (*clDSViter).end(); for (edm::DetSet<CTPPSPixelCluster>::const_iterator cl = begin; cl != end; cl++) { _h_CL_size->Fill((*cl).size()); if( (*cl).size()<=2){ // cout << (*cl).pixelADC(0) << endl; if( (*cl).size()==1) _h_ELE_size1->Fill((*cl).pixelADC(0)); else{ _h_ELE_size2->Fill((*cl).pixelADC(0)); _h_ELE_size2->Fill((*cl).pixelADC(1)); _h_ELEsum_size2->Fill((*cl).pixelADC(1)+(*cl).pixelADC(0)); _h_ELEmin_size2->Fill(fmin((*cl).pixelADC(1),(*cl).pixelADC(0))); _h_ELEmax_size2->Fill(fmax((*cl).pixelADC(1),(*cl).pixelADC(0))); } } } } //------------------------------------------------------- edm::Handle<edm::DetSetVector<CTPPSPixelRecHit> > recHits; event.getByToken(tokenCTPPSPixelRecHit_, recHits); edm::DetSetVector<CTPPSPixelRecHit>::const_iterator rhDSViter = recHits->begin(); for (; rhDSViter != recHits->end(); rhDSViter++) { CTPPSPixelDetId detIdObject(rhDSViter->detId()); edm::DetSet<CTPPSPixelRecHit>::const_iterator begin = (*rhDSViter).begin(); edm::DetSet<CTPPSPixelRecHit>::const_iterator end = (*rhDSViter).end(); for (edm::DetSet<CTPPSPixelRecHit>::const_iterator rh = begin; rh != end; rh++) { // Detector ID if(detIdObject.arm()==0){ _h_RH_45->Fill((*rh).getPoint().x(),(*rh).getPoint().y()); }else{ _h_RH_56->Fill((*rh).getPoint().x(),(*rh).getPoint().y()); } } } edm::Handle< edm::DetSetVector<CTPPSPixelLocalTrack> > inputPixelTracks; unsigned int tracks45=0; unsigned int tracks56=0; if (not pixelTrackToken_.isUninitialized()){ event.getByToken( pixelTrackToken_, inputPixelTracks ); // process tracks from pixels for ( const auto& rpv : *inputPixelTracks ) { const uint32_t rpId = rpv.detId(); for ( const auto& trk : rpv ) { if ( !trk.isValid() ) continue; // pOut->emplace_back( rpId, trk.getX0(), trk.getX0Sigma(), trk.getY0(), trk.getY0Sigma() ); if(rpId & 0x1000000) tracks56++; else tracks45++; } } } if(_verbosity){ cout << " Tracks 45 - 56 : "<< tracks45 << " - " << tracks56 << endl; cout << " Digis 45 - 56 : "<< digis45 << " - " << digis56 << endl; } if(tracks45==0 && digis45>20) _h_45->Fill(_ls,20.); else if(tracks45>19)_h_45->Fill(_ls,19.); else _h_45->Fill(_ls,tracks45); if(tracks56==0 && digis56>20) _h_56->Fill(_ls,20.); else if(tracks56>19)_h_56->Fill(_ls,19.); else _h_56->Fill(_ls,tracks56); //incrementing total number of tracks per lumi tracks45_per_ls[_ls] += tracks45; tracks56_per_ls[_ls] += tracks56; events_per_ls[_ls]++; /* // Loop on digis edm::DetSetVector<CTPPSPixelDigi>::const_iterator digiDSViter = digis->begin(); for (; digiDSViter != digis->end(); digiDSViter++) { CTPPSPixelDetId detIdObject(digiDSViter->detId()); edm::DetSet<CTPPSPixelDigi>::const_iterator begin = (*digiDSViter).begin(); edm::DetSet<CTPPSPixelDigi>::const_iterator end = (*digiDSViter).end(); for (edm::DetSet<CTPPSPixelDigi>::const_iterator di = begin; di != end; di++) { // Detector ID _arm_digi.push_back(detIdObject.arm()); _station_digi.push_back(detIdObject.station()); _rp_digi.push_back(detIdObject.rp()); _plane_digi.push_back(detIdObject.plane()); // Pixel data _row.push_back(di->row()); _column.push_back(di->column()); _adc.push_back(di->adc()); } } */ } #include "FWCore/PluginManager/interface/ModuleDef.h" #include "FWCore/Framework/interface/MakerMacros.h" DEFINE_FWK_MODULE(CTPPSPixelTrackAnalyzer);
[ "Fabrizio.Ferro@ge.infn.it" ]
Fabrizio.Ferro@ge.infn.it
4636371577c5274ebafc49fe125ffa699390f64d
82d6a09628bd3307ba68c840dd7de21df0ceda2a
/Portfolio/ContactDatabase/RecordList2.cpp
2e6c4ddeeedc903b2b1cd219cd43c9fb3725ed82
[]
no_license
brummetj/Record_Database_Avl_tree
993f22613d5b6360730e95273f6bc18127b6d5dd
482bc7409996f397b670b8aed084869bc6c2361d
refs/heads/master
2021-01-16T22:37:09.607241
2016-09-16T21:59:28
2016-09-16T21:59:28
68,416,973
0
0
null
null
null
null
UTF-8
C++
false
false
28,554
cpp
// // ContactList2.cpp // Data Structures Final Project // // Created by Joshua Brummet on 5/2/16. // Copyright © 2016 C++. All rights reserved. // #include <iostream> #include <fstream> #include <vector> #include "RecordList.h" #include "RecordType.h" #include "AVLtree.h" #include "AVLnode.h" #include <sstream> #include <stdlib.h> #include <algorithm> #include <iterator> #include <string> #include <stack> using std::cout; using std::string; using std::endl; using std::cin; class AVlTree; /****************************************** * * SEARCHING FUNCTIONS ******************************************/ void RecordList::Modify_Search() { if (__tree->size() == 0) { cout << "Empty Database Please add new Records from Main Menu" << endl; return; } //adding data to vectors std::vector<RecordType> rec, data, data1; std::vector<std::string> stringData; __tree->addtoVector(data); cout << endl; //user input std::string name; cout << "____Search and Modify___" << endl << endl; cout << "First Name -> 0" << endl; cout << "Middle Name -> 1" << endl; cout << "Last Name -> 2" << endl; cout << "Company -> 3" << endl; cout << "Home Phone -> 4" << endl; cout << "Office Phone -> 5" << endl; cout << "Email -> 6" << endl; cout << "Mobile Phone -> 7" << endl; cout << "Street Address-> 8" << endl; cout << "City -> 9" << endl; cout << "State -> 10" << endl; cout << "ZipCode -> 11" << endl; cout << "Country -> 12" << endl; cout << "Affiliates -> 13" << endl; cout << endl; cout << "Enter the index number to search by." << endl; int index; cin >> index; cout << "Enter the Name/Number of the contact you are looking for to modify." << endl; cin >> name; //If found, insert that record into a seperate vector for futher use. for (int i =0; i < data.size(); ++i) { if (index==13) { if (data[i].getAffiliates(name)) rec.push_back(data[i]); } else if (name == data[i].getField(index)) rec.push_back(data[i]); } //Validate if its found or not. if (rec.empty()) { std::string choice; cout << "Your search was not found. Do you wish to try again? Yes/No." << endl; cin >> choice; if (choice == "NO" || choice == "no" || choice == "No") return; else Modify_Search(); } //Printing results of search.. if any for(int i =0; i < rec.size(); ++i) { rec[i].printf(); cout << "|" << endl; } if (rec.size() > 0 ) { std::string results,again; //Can only Modify one record, needs to refine search, since output can be big. cout << "Is the record you're looking for? Please enter 'yes', else enter 'no' and refine your search to one record." << endl; cin >> results; int index1; while (results != "Yes" && results != "yes" && results != "YES") { //reentering more information to refine search. cout << "____Search and Modify___" << endl << endl; cout << "First Name -> 0" << endl; cout << "Middle Name -> 1" << endl; cout << "Last Name -> 2" << endl; cout << "Company -> 3" << endl; cout << "Home Phone -> 4" << endl; cout << "Office Phone -> 5" << endl; cout << "Email -> 6" << endl; cout << "Mobile Phone -> 7" << endl; cout << "Street Address-> 8" << endl; cout << "City -> 9" << endl; cout << "State -> 10" << endl; cout << "ZipCode -> 11" << endl; cout << "Country -> 12" << endl; cout << "Affiliates -> 13" << endl; cout << endl; cout << "Enter the index number to search by." << endl; cin >> index1; cout << "Enter the Name/Number of the contact you are looking for to modify." << endl; cin >> again; for (int i = 0; i < rec.size(); ++i) { if (index1 == 13) { if (rec[i].getAffiliates(again)) data1.push_back(rec[i]); } else if (again == rec[i].getField(index1)) data1.push_back(rec[i]); } if (data1.empty()) { std::string s; cout << "Couldn't find the record do you want to try again? yes/no" << endl << endl; cin >> s; if (s == "Yes" || s == "YES" || s == "yes") break; else return; } for (int i= 0; i < data1.size(); ++i) { data1[i].printf(); cout << "|" << endl; } if (data1.size() >0) { cout << "Is this the Record you want to modify? yes/no" << endl; cin >> results; if (results == "No" || results == "NO" || results == "no") { std::string again; cout << "Would you like to search again?" << endl; cin.ignore(); cin >> again; if (again == "YES" || again == "Yes" || again == "yes") Modify_Search(); else return; } } } RecordType R, S; std::string m; //Modify one more Fields, by entry, allowing a user to fully change the Record. do { cout << endl; std::string modify; cout << "____Modify by field___" << endl << endl; cout << "First Name -> 0" << endl; cout << "Middle Name -> 1" << endl; cout << "Last Name -> 2" << endl; cout << "Company -> 3" << endl; cout << "Home Phone -> 4" << endl; cout << "Office Phone -> 5" << endl; cout << "Email -> 6" << endl; cout << "Mobile Phone -> 7" << endl; cout << "Street Address-> 8" << endl; cout << "City -> 9" << endl; cout << "State -> 10" << endl; cout << "ZipCode -> 11" << endl; cout << "Country -> 12" << endl; cout << "Affiliates -> 13" << endl; cout << endl; cout << "Enter the index number to modify" << endl; int index2; cin >> index2; if (index2 == 13) { std::string aff, a; cout << "Do you wish to delete/add a # of Affiliates or modify a current one?" << endl; cin >> aff; if (aff == "Delete" || aff == "delete") { do { std::stack<string> temp; std::string del; cout << "Enter the first name of the Affiliate to delete" << endl; cin >> del; if (data1[0].getAffiliates(del)) { //if contact name contains data1[0].DeleteAffiliate(del); cout << "Affiliate delete, Delete another? yes/no " << endl; cout << "Please enter your answer twice. " << endl; cin >> a; //user needs to enter Yes/No twice inside the program. Not sure how to get around it, i have tried multiple methods to try and get around this problem and did not succeed. Please enter the answer twice. } else{ cout << "Cant find the first name of the affiliate to delete try again? yes/no" << endl; cout << "Please enter your answer twice. " << endl; cin >> a; break; } }while (a != "NO" && a != "no" && a != "No"); } if (aff == "Modify" || aff == "modify" ) { std::string m,n,a; do { cout << "Enter the name of affiliates information that you wish to modify" << endl << endl; cout << "First Name || Last Name || Phone Number || Email" << endl; cin >> m; cout << "What do you wish to change it to?" << endl; cin >> n; data1[0].ModifyAff(m,n); cout << "Do you want to change more? yes/no " << endl; cout << "Please enter your answer twice. " << endl; cin >> a; cin.ignore(); }while(a != "NO" && a != "no" && a != "No"); } if (aff == "Add" || aff == "add") { std::string a_f,a_l,a_p,a_e , b; do { cout << "Please enter your contacts new affiliates information, if you wish to skip a line please hit enter." << endl << endl; cout << "First Name || Last Name || Phone Number || Email" << endl; cin.ignore(); getline(cin,a_f); getline(cin,a_l); getline(cin,a_p); getline(cin,a_e); data1[0].setAffiliate(a_f, a_l, a_p, a_e); cout << "Do you want to add more? yes/no " << endl; cout << "Please enter your answer twice. " << endl; cin >> b; }while(b != "NO" && b != "no" && b != "No"); } } else cout << "Enter the new information for the contact." << endl; cin >> modify; //First element of the vector, should be the record to modify, (can only modify one record). R = data1[0]; data1[0].setField(index2,modify); __tree->remove(R); __tree->insert(data1[0]); cout << "This is youre new Contact" << endl; data1[0].printf(); cout << "Do you wish to edit more fields of the contact? yes/no." << endl; cin >> m; } while( m != "No" && m != "NO" && m != "no"); } } /****************************************************/ void RecordList::Contains_Search() { if (__tree->size() == 0) { cout << "Empty Database Please add new Records from Main Menu" << endl; return; } //Vectors for Searching (contains) std::vector<RecordType> rec, data, data1; //Adding to vector contents of the AVL TREE. __tree->addtoVector(rec); cout << endl; std::string name; //Getting User Input cout << "____Search and Diplay (contains)___" << endl << endl; cout << "First Name -> 0" << endl; cout << "Middle Name -> 1" << endl; cout << "Last Name -> 2" << endl; cout << "Company -> 3" << endl; cout << "Home Phone -> 4" << endl; cout << "Office Phone -> 5" << endl; cout << "Email -> 6" << endl; cout << "Mobile Phone -> 7" << endl; cout << "Street Address-> 8" << endl; cout << "City -> 9" << endl; cout << "State -> 10" << endl; cout << "ZipCode -> 11" << endl; cout << "Country -> 12" << endl; cout << endl; cout << "Enter the index number to search by." << endl; int index; cin >> index; cout << "Enter the letters/numbers of which your contact contains" << endl; cin >> name; std::string str; for (int i = 0; i < rec.size(); i++) { if (index == 13) { if (rec[i].ContainsAff(name) == true) data.push_back(rec[i]); } else if (index != 13) { std::size_t found = rec[i].getField(index).find(name); // using string .Find() to intialize size_t found to string size of name. if(found != std::string::npos ) data.push_back(rec[i]); //returns the finding string in datatype adding it to the data vector } } //printing data for (int i =0; i < data.size(); ++i) { data[i].printf(); cout << "|" << endl; } //If SEARCH (contains) didn't contain the letters or words you were looking for. if (data.empty()) { std::string choice; cout << "Your search was not found. Do you wish to try again? Yes/No." << endl; cin >> choice; if (choice == "NO" || choice == "no" || choice == "No") return; else Contains_Search(); } cout << endl << endl; //If SEARCH (contains) did find the words/letters you were looking for if (data.size() >0) { std::string more; cout << "Do you wish to search more within these records? yes/no" << endl; cin >> more; // SUB SEARCH if (more == "Yes" || more == "YES" || more == "yes"){ cout << endl; std::string name1; cout << "____Search and Diplay (contains)___" << endl << endl; cout << "First Name -> 0" << endl; cout << "Middle Name -> 1" << endl; cout << "Last Name -> 2" << endl; cout << "Company -> 3" << endl; cout << "Home Phone -> 4" << endl; cout << "Office Phone -> 5" << endl; cout << "Email -> 6" << endl; cout << "Mobile Phone -> 7" << endl; cout << "Street Address-> 8" << endl; cout << "City -> 9" << endl; cout << "State -> 10" << endl; cout << "ZipCode -> 11" << endl; cout << "Country -> 12" << endl; cout << endl; cout << "Enter the index number to search by." << endl; int index1; cin >> index1; cout << "Enter the letters/numbers of which your contact contains" << endl; cin >> name1; std::string str; for (int i = 0; i < data.size(); i++) { if (index1 == 13) { if (data[i].ContainsAff(name1) == true) data1.push_back(data[i]); } else if (index1 != 13) { std::size_t found = data[i].getField(index1).find(name1); // using string .Find() to intialize size_t found to string size of name. if(found != std::string::npos ) data1.push_back(data[i]); //returns the finding string in datatype adding it to the data vector } //returns the finding string in datatype adding it to the data vector } if (data1.empty()) { std::string p; cout << "Couldn't Find any contacts that contain what you're looking for within the previous search. Do you wish to try again? yes/no " << endl; cin >> p; if (p == "Yes" || p == "YES" || p == "yes") Contains_Search(); else return; } //Printing records for (int i =0; i < data1.size(); ++i) { data1[i].printf(); cout << "|" << endl; } std::string m; cout << "Do you wish to Search again?" << endl; cin >> m; if (m == "Yes" || m == "yes" || m == "YES") Contains_Search(); else return; } else return; } } /****************************************************/ void RecordList::GeneralSearch() { if (__tree->size() == 0) { cout << "Empty Database Please add new Records from Main Menu" << endl; return; } std::vector<RecordType> data, data1; std::string name; cout << "____Search and Diplay___" << endl << endl; cout << "First Name -> 0" << endl; cout << "Middle Name -> 1" << endl; cout << "Last Name -> 2" << endl; cout << "Company -> 3" << endl; cout << "Home Phone -> 4" << endl; cout << "Office Phone -> 5" << endl; cout << "Email -> 6" << endl; cout << "Mobile Phone -> 7" << endl; cout << "Street Address-> 8" << endl; cout << "City -> 9" << endl; cout << "State -> 10" << endl; cout << "ZipCode -> 11" << endl; cout << "Country -> 12" << endl; cout << "Affiliates -> 13" << endl; cout << endl; cout << "Enter the index number to search by." << endl; int index; cin >> index; cout << "Enter the Name/Number of the contact you are looking for." << endl; cin >> name; __tree->addtoVector(data); std::vector<RecordType> rec; for (int i =0; i < data.size(); ++i) { if (index==13) { if (data[i].getAffiliates(name)) rec.push_back(data[i]); } else if (name == data[i].getField(index)) { rec.push_back(data[i]); } } if (rec.empty()) { std::string choice; cout << "Your search was not found. Do you wish to try again? Yes/No." << endl; cin >> choice; if (choice == "NO" || choice == "no" || choice == "No") return; else GeneralSearch(); } else //Printing results of search.. if any for(int i =0; i < rec.size(); ++i) { rec[i].printf(); cout << "|" << endl; } //******************************************************** // Search again? :-) std::string results,again; cout << "Do you wish to continue searching within you're previous results? Yes/No." << endl; cin >> results; if(results == "No" || results == "no") return; else cout << "____Search and Diplay___" << endl << endl; cout << "First Name -> 0" << endl; cout << "Middle Name -> 1" << endl; cout << "Last Name -> 2" << endl; cout << "Company -> 3" << endl; cout << "Home Phone -> 4" << endl; cout << "Office Phone -> 5" << endl; cout << "Email -> 6" << endl; cout << "Mobile Phone -> 7" << endl; cout << "Street Address-> 8" << endl; cout << "City -> 9" << endl; cout << "State -> 10" << endl; cout << "ZipCode -> 11" << endl; cout << "Country -> 12" << endl; cout << "Affiliates -> 13" << endl; cout << endl; cout << "Enter the index number to search by." << endl; cin >> index; cout << "Enter the Name/Number of the contact you are looking for." << endl; cin >> again; for (int i = 0; i <rec.size(); ++i) { if (index==13) { if (data[i].getAffiliates(name)) rec.push_back(data[i]); } if( again == rec[i].getField(index)) data1.push_back(rec[i]); } for (int i= 0; i < data1.size(); ++i) { data1[i].printf(); cout << "|" << endl; } } /****************************************************/ void RecordList::Delete_Search() { if (__tree->size() == 0) { cout << "Empty Database Please add new Records from Main Menu" << endl; return; } std::vector<RecordType> rec, data, data1; __tree->addtoVector(data); cout << endl; std::string name; cout << "____Search and Delete___" << endl << endl; cout << "First Name -> 0" << endl; cout << "Middle Name -> 1" << endl; cout << "Last Name -> 2" << endl; cout << "Company -> 3" << endl; cout << "Home Phone -> 4" << endl; cout << "Office Phone -> 5" << endl; cout << "Email -> 6" << endl; cout << "Mobile Phone -> 7" << endl; cout << "Street Address-> 8" << endl; cout << "City -> 9" << endl; cout << "State -> 10" << endl; cout << "ZipCode -> 11" << endl; cout << "Country -> 12" << endl; cout << "Affiliates -> 13" << endl; cout << endl; cout << "Enter the index number to search by." << endl; int index; cin >> index; cout << "Enter the Name/Number of the contact you are looking for to delete." << endl; cin >> name; for (int i =0; i < data.size(); ++i) { if (index==13) { if (data[i].getAffiliates(name)) rec.push_back(data[i]); } else if (name == data[i].getField(index)) { rec.push_back(data[i]); } } if (rec.empty()) { std::string choice; cout << "Your search was not found. Do you wish to try again? Yes/No." << endl; cin >> choice; if (choice == "NO" || choice == "no" || choice == "No") return; else Delete_Search(); } //Printing results of search.. if any for(int i =0; i < rec.size(); ++i) { rec[i].printf(); cout << "|" << endl; } if (rec.size() > 0 ) { std::string results,again; //Can only Delete one record, needs to refine search, since output can be big. cout << "Is the record you're looking for? Please enter 'yes', else enter 'no' and refine your search to one record." << endl; cin >> results; while (results != "Yes" && results != "yes" && results != "YES") { std::string name; cout << "____Search and Modify___" << endl << endl; cout << "First Name -> 0" << endl; cout << "Middle Name -> 1" << endl; cout << "Last Name -> 2" << endl; cout << "Company -> 3" << endl; cout << "Home Phone -> 4" << endl; cout << "Office Phone -> 5" << endl; cout << "Email -> 6" << endl; cout << "Mobile Phone -> 7" << endl; cout << "Street Address-> 8" << endl; cout << "City -> 9" << endl; cout << "State -> 10" << endl; cout << "ZipCode -> 11" << endl; cout << "Country -> 12" << endl; cout << "Affiliates -> 13" << endl; cout << endl; cout << "Enter the index number to search by." << endl; int index1; cin >> index1; cout << "Enter the Name/Number of the contact you are looking for to modify." << endl; cin >> name; for (int i =0; i < rec.size(); ++i) { if (index1==13) { if (rec[i].getAffiliates(name)) data1.push_back(rec[i]); } else if (name ==rec[i].getField(index1)) data1.push_back(rec[i]); } if (data1.empty()) { std::string s; cout << "Couldn't find the record do you want to try again? yes/no" << endl << endl; cin >> s; if (s == "Yes" || s == "YES" || s == "yes") break; else return; } for (int i= 0; i < data1.size(); ++i) { data1[i].printf(); cout << "|" << endl; } if (data1.size() >0) { cout << "Is this the Record you want to Delete? yes/no" << endl; cin >> results; } } std::string choose; cout << "Are you sure you want to delete the following record? " << endl; data1[0].printf(); cout << endl; cout << "The records information will be erased. yes/no" << endl; cin >> choose; if (choose == "Yes" || choose == "yes" || choose == "YES") { __tree->remove(data1[0]); cout << "The record has been deleted" << endl; } else return; } } /****************************************** * * SORTING FUNCTIONS ******************************************/ void RecordList::sort_and_Display() { if (__tree->size() == 0) { cout << "Empty Database Please add new Records from Main Menu" << endl; return; } std::vector<RecordType> rec; __tree->addtoVector(rec); cout << endl; cout << "____Sort and Diplay___" << endl << endl; cout << "First Name -> 0" << endl; cout << "Middle Name -> 1" << endl; cout << "Last Name -> 2" << endl; cout << "Company -> 3" << endl; cout << "Home Phone -> 4" << endl; cout << "Office Phone -> 5" << endl; cout << "Email -> 6" << endl; cout << "Mobile Phone -> 7" << endl; cout << "Street Address-> 8" << endl; cout << "City -> 9" << endl; cout << "State -> 10" << endl; cout << "ZipCode -> 11" << endl; cout << "Country -> 12" << endl; cout << endl; cout << "Enter the index number to sort your contacts by and display them" << endl; int index; cin >> index; if (index >13 || index < 0) { cout << "The index you entered doesn't match with a field, please try agian" << endl; cin >> index; } sortContact s(index); sort(rec.begin(),rec.end(),s); for (auto &e : rec) { e.printf(); cout << "|" << endl; } } void RecordList::Sort_and_Save() const { if (__tree->size() == 0) { cout << "Empty Database Please add new Records from Main Menu" << endl; return; } std::vector<RecordType> rec, data; __tree->addtoVector(rec); __tree->addtoVector(data); cout << endl; cout << "____Sort and Save___" << endl << endl; cout << "First Name -> 0" << endl; cout << "Middle Name -> 1" << endl; cout << "Last Name -> 2" << endl; cout << "Company -> 3" << endl; cout << "Home Phone -> 4" << endl; cout << "Office Phone -> 5" << endl; cout << "Email -> 6" << endl; cout << "Mobile Phone -> 7" << endl; cout << "Street Address-> 8" << endl; cout << "City -> 9" << endl; cout << "State -> 10" << endl; cout << "ZipCode -> 11" << endl; cout << "Country -> 12" << endl; cout << endl; cout << "Enter the index number to sort your contacts by and display them" << endl; int index; cin >> index; if (index >13 || index < 0) { cout << "The index you entered doesn't match with a field, please try agian" << endl; cin >> index; } sortContact s(index); sort(rec.begin(),rec.end(),s); std::string yes; cout << "Your records have been sorted by the following field." << endl; cout << "Do you wish to save your newly sorted records ? yes/no " << endl; cin >> yes; if (yes == "yes" || yes == "YES" || yes =="Yes") { std::ofstream data; std::string input; cout << "Please enter the name of the file you wish to save to! :-) " << endl; cin >> input; data.open(input.c_str()); for (int i = 0; i < rec.size(); i++) { data << rec[i]; data << "|" << endl; } std::string you; cout << "Your File has now been saved. Do you want to return to the main menu? or exit program? Please enter 'main' if you wish to continue" << endl; cin >> you; if (you == "Main" || you == "main" || you == "MAIN") return; else exit(1); } else return; }
[ "joshua.brummet@ucdenver.edu" ]
joshua.brummet@ucdenver.edu
fb9c03e31bfbffb4c436a4a0b1b9f47aa334ebe2
b54176bbc1ff129aad21de18b21318340d23241e
/multistrand_modified/src/system/statespace.cc
1cad92d3c8aa451d2e4b2eac9ecd1a54271e1ea5
[ "MIT" ]
permissive
DNA-and-Natural-Algorithms-Group/FPEI
ed06aa231097f8eee8a74dad9c439a6f1f3fbb08
23c531ac841da66593ee486297c0237eeed130db
refs/heads/master
2020-06-11T00:39:11.843963
2020-04-26T01:11:31
2020-04-26T01:11:31
193,805,828
3
1
null
null
null
null
UTF-8
C++
false
false
4,330
cc
/* Copyright (c) 2017 California Institute of Technology. All rights reserved. Multistrand nucleic acid kinetic simulator help@multistrand.org */ /* * Created on: Feb 23, 2018 * Author: Frits Dannenberg * * This class collects every visited state, and transitions between visited states. * After the simulation is done, the set is exported to a text file. * */ //This file is modified by NZ, using RVSSA instead of SSA #include <statespace.h> #include <simoptions.h> #include <iostream> #include <fstream> const string Builder::the_dir = "p_statespace/"; Builder::Builder(void) { } Builder::Builder(SimOptions* options) { simOptions = options; } std::ostream& operator<<(std::ostream& ss, Builder& b) { ss << "nStates = " << b.protoSpace.size(); ss << " nTransitions = " << b.protoTransitions.size(); return ss; } // Put the statespace in memory // Note: this copies the contents of the input. // Could use shared pointer to prevent this, // but statespace building will only be used during inference anyhow. // also note the copy only occurs if the state / transition is not found already // this is a relatively rare event for a typical simulation. void Builder::addState(ExportData& data, const double arrType) { protoSpace.insert(data); // also record the transition itself. if (lastState.complex_count > 0) { ExportTransition trans; trans.state1 = lastState; trans.state2 = data; trans.type = arrType; ExportTransition transstr =std::move(trans) ; protoTransitions.insert(transstr); //totalcounter +=1 ; //cout << "::::::::" << totalcounter <<"\n"; if (protoTransitionsCount.find(transstr) == protoTransitionsCount.end()) { protoTransitionsCount[transstr] = 1 ; } else { protoTransitionsCount[transstr] += 1 ; } } else { // set the initial state auto element = protoInitialStates.find(data); if (element == protoInitialStates.end()) { ExportInitial newEntry = ExportInitial(); newEntry.join_rate = arrType; // overloading arrType to be join rate newEntry.observation_count++; protoInitialStates[data] = std::move(newEntry); } else { (*element).second.observation_count++; } } lastState = std::move(data); } // export the final state to the appropriate map. void Builder::stopResultNormal(double endtime, string tag) { if (lastState.complex_count > 0) { auto element = protoFinalStates.find(lastState); if (element == protoFinalStates.end()) { ExportFinal newEntry = ExportFinal(); newEntry.tag = tag; newEntry.observation_count++; protoFinalStates[std::move(lastState)] = std::move(newEntry); } else { (*element).second.observation_count++; } } // now wipe the last state because we have moved the contents lastState = ExportData(); } string Builder::filename(string input) { return string(Builder::the_dir + to_string(simOptions->getSeed())) + "/" + input + ".txt"; } // Write the statespaces to file and reset the hashmaps. // void Builder::writeToFile(void) { // create dir // system call to create a directory TODO fix this to use experimental/filesystem system((string("mkdir -p ") + Builder::the_dir + to_string(simOptions->getSeed())).c_str()); // states unordered_set<ExportData>::iterator itr; std::ofstream myfile; myfile.open(filename("protospace")); for (auto element : protoSpace) { myfile << element; } myfile.close(); // transitions myfile.open(filename("prototransitions")); for (auto element : protoTransitions) { myfile << element; } myfile.close(); //transitionsCount myfile.open(filename("prototransitionscount")); for (auto element : protoTransitionsCount) { myfile << element.second<< "\n"; myfile << element.first<< "\n"; } myfile.close(); // init myfile.open(filename("protoinitialstates")); for (auto element : protoInitialStates) { myfile << element.second << "\n"; myfile << element.first; } myfile.close(); // final states myfile.open(filename("protofinalstates")); for (auto element : protoFinalStates) { myfile << element.first; myfile << element.second; } myfile.close(); // now clear the maps protoSpace.clear(); protoTransitions.clear(); protoTransitionsCount.clear(); protoFinalStates.clear(); protoInitialStates.clear(); }
[ "nasimzf@newcastle.cs.ubc.ca" ]
nasimzf@newcastle.cs.ubc.ca
2f04e09d1061abf735fe4cefa6cfd584c6004d21
e829bdbbe6342c8e0b808b34086689168526c940
/src/raytracing/Camera.h
5946ce9f96dad9a7b2c7df87b36be7340f6c09f5
[ "MIT", "Unlicense", "LicenseRef-scancode-public-domain" ]
permissive
mosra/magnum-examples
885b22e2599c1c0ceca0afa56f262c8f81d326ac
029081c7f89c7a751ac8bfcc6bbb5e409bb1554f
refs/heads/master
2023-08-22T11:24:48.502172
2023-08-09T15:21:13
2023-08-09T15:21:13
2,791,179
270
107
Unlicense
2023-08-09T15:26:31
2011-11-16T21:28:15
C++
UTF-8
C++
false
false
3,076
h
#ifndef Magnum_Examples_RayTracing_Camera_h #define Magnum_Examples_RayTracing_Camera_h /* This file is part of Magnum. Original authors — credit is appreciated but not required: 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 — Vladimír Vondruš <mosra@centrum.cz> 2020 — Nghia Truong <nghiatruong.vn@gmail.com> This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <Magnum/Math/Functions.h> #include "RndGenerators.h" #include "Ray.h" namespace Magnum { namespace Examples { class Camera { public: explicit Camera(const Vector3& eye, const Vector3& viewCenter, const Vector3& upDir, Deg fov, Float aspectRatio, Float lensRadius): _origin{eye}, _lensRadius{lensRadius} { _w = (eye - viewCenter).normalized(); _u = Math::cross(upDir, _w).normalized(); _v = Math::cross(_w, _u).normalized(); const Float halfHeight = Math::tan(fov*0.5f); const Float halfWidth = aspectRatio*halfHeight; const Float focusDistance = (eye - viewCenter).length(); _lowerLeftCorner = _origin - halfWidth*focusDistance*_u - halfHeight*focusDistance*_v - focusDistance*_w; _horitonalEdge = 2.0f*halfWidth*focusDistance*_u; _verticalEdge = 2.0f*halfHeight*focusDistance*_v; } Ray ray(Float s, Float t) const { const Vector2 rd = _lensRadius*Rnd::rndInDisk(); const Vector3 offset = _u*rd.x() + _v*rd.y(); return Ray{_origin + offset, _lowerLeftCorner + s*_horitonalEdge + t*_verticalEdge - offset - _origin}; } private: Vector3 _origin; Float _lensRadius; Vector3 _u, _v, _w; Vector3 _lowerLeftCorner; Vector3 _horitonalEdge, _verticalEdge; }; } } #endif
[ "mosra@centrum.cz" ]
mosra@centrum.cz
591d5c1805eb9770bd14c4cb4972969878fdcdc9
bf040659b432f9402b11e039be0ffb8c2228be3c
/readMatrix.cpp
37f4b6c529fccc468c07ac580996d27ab0f2f701
[]
no_license
raghavdogra/ParallelProgramming
6f981ff873e7e7149b9e90f5953808544585c719
de879e6df3826caaa21d58136d9ab5cf099d37af
refs/heads/master
2021-06-27T06:47:49.521777
2017-05-08T05:50:47
2017-09-15T03:52:33
103,610,998
0
0
null
null
null
null
UTF-8
C++
false
false
2,028
cpp
#include <iostream> #include <fstream> #include <sstream> #include <sys/time.h> #include <cilk/cilk.h> using namespace std; #define COUNT 4096 int main () { string line; char s1, s2; int i, j,k, value; int** X = new int*[COUNT]; int** Y = new int*[COUNT]; int** Z = new int*[COUNT]; struct timeval start,end; for(i = 0; i < COUNT; i++) { X[i] = new int[COUNT]; } for(i = 0; i < COUNT; i++) { Y[i] = new int[COUNT]; } for(i = 0; i < COUNT; i++) { Z[i] = new int[COUNT](); } for(i=0;i<COUNT;i++) for(j=0;j<COUNT;j++) Z[i][j] = 0; ifstream matrix1 ("matrix1.txt"); if (matrix1.is_open()) { i = 0; j = 0; while ( getline (matrix1,line) ) { std::istringstream ss(line); j=0; while (ss >> value) { X[i][j] = value;; if (ss.peek() == ',' || ss.peek() == ' ') ss.ignore(); j++; } i++; } matrix1.close(); } else cout << "Unable to open file"; cout << "read Matrix \n"; s1 = 'y'; if(s1=='y') { ifstream matrix2 ("matrix2.txt"); if (matrix2.is_open()) { i = 0; j = 0; while ( getline (matrix2,line) ) { std::istringstream ss(line); j=0; while (ss >> value) { Y[i][j] = value;; if (ss.peek() == ',' || ss.peek() == ' ') ss.ignore(); j++; } i++; } matrix2.close(); } else cout << "Unable to open file"; } cout<< "Reading Finished\n"; s2 = 'y'; if (s2 =='y') { gettimeofday(&start,NULL); //Start timing the computation for(i=0;i<COUNT;i++) { for(j=0; j<COUNT; j++) { for(k=0; k<COUNT; k++) { Z[i][j] =+ X[i][k] * Y[k][j]; } } } gettimeofday(&end,NULL); //Stop timing the computation double myTime = (end.tv_sec+(double)end.tv_usec/1000000) - (start.tv_sec+(double)start.tv_usec/1000000); cout << "i-j-k implemented in " << myTime << " seconds.\n"; } delete [] X; delete [] Y; delete [] Z; return 0; }
[ "tg840562@login4.stampede.tacc.utexas.edu" ]
tg840562@login4.stampede.tacc.utexas.edu
88ffca6e4afcc5a9900d14b33d1326ea667b95fe
1820744e6d2da1cf00e096feaa3d16fe5f9f8663
/Graph/include/Test.h
69566b57e5a5c697ea446cf53c4532e7dd095e64
[]
no_license
trialblazer/DataStructure
ad8f2236bdc8775210e8b646f7c5fdbaf0578f0e
1940db7c24b73d92a437fa7f248b17b9f80b747a
refs/heads/master
2021-01-19T02:11:47.810496
2016-07-25T06:47:01
2016-07-25T06:47:01
53,742,109
1
0
null
null
null
null
GB18030
C++
false
false
4,182
h
#ifndef TEST_H #define TEST_H #include <iostream> #include <windows.h> #include "Graph_Matrix.h" #include "Graph_Lnk.h" #include <conio.h> #include <stdlib.h> #include <stdio.h> using namespace std; #define MAXSIZE 10 /// Graph_Matrix测试类 template <class T> class Test { void creat(); void insert_v(); void insert_a(); void remove_v(); void remove_a(); void destory(); void dfs(); void bfs(); void look(); public: void menue(); Test():sign1(0), sign2(0), g(NULL) {} ~Test() {delete g;} private: int sign1, sign2; T *g; }; template <class T> void Test<T>::menue() { while (1) { system("cls"); cout << "1.创建一个图。" << endl; cout << "2.销毁图。" << endl; cout << "3.插入节点。" << endl; cout << "4.插入边。" << endl; cout << "5.删除节点。" << endl; cout << "6.删除边。" << endl; cout << "7.深度遍历。" << endl; cout << "8.广度遍历。" << endl; cout << "9.查看。" << endl; cout << "0.退出。" << endl; char a; fflush(stdin); a = getch(); switch(a) { case '1':system("cls"); creat(); break; case '2':system("cls"); destory(); break; case '3':system("cls"); insert_v(); break; case '4':system("cls"); insert_a(); break; case '5':system("cls"); remove_v(); break; case '6':system("cls"); remove_a(); break; case '7':system("cls"); dfs(); break; case '8':system("cls"); bfs(); break; case '9':system("cls"); look(); break; case '0':return; default: break; } } } template <class T> void Test<T>::look() { if (g == NULL) { cout << "空图!" << endl; Sleep(3000); } else { g->look(); char a = getch(); } } template <class T> void Test<T>::creat() { if (g != NULL) { delete g; g = NULL; } cout << "创建无向图(0),有向图(1):"; cin >> sign1; cout << "创建图(0),网(1):"; cin >> sign2; g = new T(sign1, sign2); } template <class T> void Test<T>::insert_v() { cout << "请输入要插入节点的个数:"; int size; cin >> size; cout << "请依次输入要插入的节点:"; char vertex, start, tail; for (int i=0; i<size; i++) { cin >> vertex; if (!g->insert_v(vertex)) { cout << "插入失败" << endl; Sleep(3000); } } } template <class T> void Test<T>::insert_a() { char head, tail; cout << "请输入要插入的边(按‘#’结束):"; cin >> tail; while (tail != '#') { cin >> head; int power; if (sign2 == 1) { cout << "请输入该边的权值:"; cin >> power; if (!g->insert_a(head, tail, power)) { cout << "插入失败" << endl; Sleep(3000); } } else if (!g->insert_a(head, tail)) { cout << "插入失败" << endl; Sleep(3000); } cin >> tail; } } template <class T> void Test<T>::remove_a() { cout << "请输入要删除的边:"; char head, tail; cin >> tail >> head; if (!g->delete_a(head, tail)) { cout << "删除失败" << endl;; Sleep(3000); } } template <class T> void Test<T>::remove_v() { cout << "请输入要删除的节点:"; char vertex; cin >> vertex; if (!g->delete_v(vertex)) { cout << "删除失败" << endl; Sleep(3000); } } template <class T> void Test<T>::destory() { g->destory(); delete g; g = NULL; } template <class T> void Test<T>::dfs() { if (g == NULL) return; cout << "请输入开始节点:"; char start; cin >> start; g->dfs(start); getch(); } template <class T> void Test<T>::bfs() { if (g == NULL) return; cout << "请输入开始节点:"; char start; cin >> start; g->bfs(start); getch(); } #endif // TEST_H
[ "zhaopengtao0122@foxmail.com" ]
zhaopengtao0122@foxmail.com
d8bd3990ea855b91a32077c4e5f5f30402a2e657
8d19ab53401030209dd7e5e655bdb0e2952bfa7e
/toonz/sources/include/toonz/cleanupparameters.h
dcef310a78853886665dd361718b664703e74010
[ "BSD-3-Clause" ]
permissive
deruji/opentoonz
825a74af1dbc89c62991458a352650c4ef766fde
ad5f6141388f796c5146876916c812bf1b1f0ff9
refs/heads/master
2021-05-03T09:41:12.454051
2016-04-22T21:08:08
2016-04-22T21:08:08
54,891,799
0
0
null
2016-04-22T21:08:08
2016-03-28T12:49:04
C++
UTF-8
C++
false
false
4,529
h
#ifndef CLEANUPPARAMETERS_INCLUDED #define CLEANUPPARAMETERS_INCLUDED //Qt includes #include <QString> //Toonz includes #include "tfilepath.h" #include "toonz/targetcolors.h" #include "tcamera.h" #include "tpalette.h" #undef DVAPI #undef DVVAR #ifdef TOONZLIB_EXPORTS #define DVAPI DV_EXPORT_API #define DVVAR DV_EXPORT_VAR #else #define DVAPI DV_IMPORT_API #define DVVAR DV_IMPORT_VAR #endif //--------------------------------------------------------------- // Forward declarations class TIStream; class TOStream; class ToonzScene; //--------------------------------------------------------------- //******************************************************************************* // CleanupTypes namespace //******************************************************************************* namespace CleanupTypes { // #define LINESHAPE_ENABLED enum PEGS_SIDE { PEGS_NONE, PEGS_BOTTOM, PEGS_TOP, PEGS_LEFT, PEGS_RIGHT, PEGS_SIDE_HOW_MANY }; enum AUTO_ADJ_MODE { AUTO_ADJ_NONE, AUTO_ADJ_BLACK_EQ, AUTO_ADJ_HISTOGRAM, AUTO_ADJ_HISTO_L, #ifdef LINESHAPE_ENABLED AUTO_ADJ_LINESHAPE, #endif AUTO_ADJ_HOW_MANY }; enum OVERLAP_ALGO { OVER_NO_BLEND, OVER_BLEND, OVER_MERGE, OVER_HOW_MANY }; enum AUTOCENTER_TYPE { AUTOCENTER_NONE, AUTOCENTER_FDG, AUTOCENTER_CTR, /* c'era una volta AUTOALIGN */ AUTOCENTER_HOW_MANY }; struct DOT { float x, y; /* baricentro del dot */ int x1, y1, x2, y2; /* estremi, in pixel, del rettangolo che contiene il dot */ int area; /* espressa in numero di pixel */ int lx, ly; /* espresse in pixel */ }; class FDG_INFO { public: string m_name; int ctr_type; /* ctr_type == TRUE: */ double ctr_x, ctr_y; /* in mm */ double ctr_angle; /* in deg */ double ctr_skew; /* in deg */ /* ctr_type == FALSE: */ std::vector<DOT> dots; double dist_ctr_to_ctr_hole; /* Distanza centro fg centro foro centrale */ double dist_ctr_hole_to_edge; /* in mm */ FDG_INFO() : ctr_type(0), ctr_x(0), ctr_y(0), ctr_angle(0), ctr_skew(0), dist_ctr_to_ctr_hole(0), dist_ctr_hole_to_edge(0) { } bool operator==(const FDG_INFO &rhs) const { return (ctr_type == rhs.ctr_type && ctr_x == rhs.ctr_x && ctr_y == rhs.ctr_y && ctr_angle == rhs.ctr_angle && ctr_skew == rhs.ctr_skew && dist_ctr_to_ctr_hole == rhs.dist_ctr_to_ctr_hole && dist_ctr_hole_to_edge == rhs.dist_ctr_hole_to_edge); } }; } // namespace CleanupTypes //******************************************************************************* // CleanupParameters declaration //******************************************************************************* enum { lpNone = 0, lpGrey, lpColor }; class DVAPI CleanupParameters { CleanupTypes::FDG_INFO m_fdgInfo; bool m_dirtyFlag; public: static CleanupParameters GlobalParameters; static CleanupParameters LastSavedParameters; public: CleanupTypes::AUTOCENTER_TYPE m_autocenterType; CleanupTypes::PEGS_SIDE m_pegSide; TCamera m_camera; int m_rotate; bool m_flipx; bool m_flipy; double m_offx, m_offy; int m_lineProcessingMode; double m_closestField; CleanupTypes::AUTO_ADJ_MODE m_autoAdjustMode; double m_sharpness; bool m_transparencyCheckEnabled; bool m_noAntialias; bool m_postAntialias; int m_despeckling; int m_aaValue; TargetColors m_colors; TPaletteP m_cleanupPalette; TFilePath m_path; /*--- オフセットを軸ごとにロックする ---*/ bool m_offx_lock, m_offy_lock; public: CleanupParameters(); CleanupParameters(const CleanupParameters &p) { assign(&p); } const CleanupParameters &operator=(const CleanupParameters &p) { assign(&p); return *this; } const CleanupTypes::FDG_INFO &getFdgInfo(); string getFdgName() const { return m_fdgInfo.m_name; } bool setFdgByName(string name); // la scena serve per gestire i default: // internamente il path puo' essere vuoto // oppure della forma "+pippo/$savepath" // nota: setPath() accetta un path "espanso" // (es. "+drawings/scene1") e lo trasforma // nella forma compressa (es. "") TFilePath getPath(ToonzScene *scene) const; void setPath(ToonzScene *scene, TFilePath fp); static void getFdgNames(std::vector<std::string> &names); void getOutputImageInfo(TDimension &resolution, double &dpix, double &dpiy) const; void assign(const CleanupParameters *params, bool clonePalette = true); bool getDirtyFlag() { return m_dirtyFlag; } void setDirtyFlag(bool value) { m_dirtyFlag = value; } void saveData(TOStream &os) const; void loadData(TIStream &is, bool globalParams); }; #endif
[ "shimizu.toshihiro@gmail.com" ]
shimizu.toshihiro@gmail.com
3bfe044dd1feb05905dd24e83a7a049c4cc05bf9
86df6f8f4f3c03cccc96459ad82bcdf3bf942492
/leetcode/combination-sum-ii.cc
a9d7b97075177de97a9af98746795bfa8852d268
[]
no_license
bdliyq/algorithm
369d1fd2ae3925a559ebae3fa8f5deab233daab1
e1c993a5d1531e1fb10cd3c8d686f533c9a5cbc8
refs/heads/master
2016-08-11T21:49:31.259393
2016-04-05T11:10:30
2016-04-05T11:10:30
44,576,582
0
0
null
null
null
null
UTF-8
C++
false
false
1,482
cc
// Question: https://leetcode.com/problems/combination-sum-ii/ #include <vector> #include <iostream> #include <algorithm> using namespace std; class Solution { public: vector<vector<int> > combinationSum2(vector<int>& candidates, int target) { vector<int> path; vector<vector<int> > ans; sort(candidates.begin(), candidates.end()); helper(candidates, path, ans, target, 0); return ans; } private: void helper(vector<int>& candidates, vector<int>& path, vector<vector<int> >& ans, int target, int cursor) { if (target == 0) { if (!path.empty()) { ans.push_back(path); } } else if (target > 0) { for (int i = cursor; i < candidates.size(); ++i) { if (i > cursor && candidates.at(i) == candidates.at(i-1)) { continue; } path.push_back(candidates.at(i)); helper(candidates, path, ans, target-candidates.at(i), i+1); path.pop_back(); } } } }; int main(int argc, char** argv) { int cs[] = {10,1,2,7,6,1,5}; vector<int> candidates(cs, cs+sizeof(cs)/sizeof(int)); Solution s; vector<vector<int> > ans = s.combinationSum2(candidates, 8); for (int i = 0; i < ans.size(); ++i) { for (int j = 0; j < ans.at(i).size(); ++j) { cout << ans[i][j] << " "; } cout << endl; } return 0; }
[ "liyongqiang01@baidu.com" ]
liyongqiang01@baidu.com
e6b59c72a5bf258973b28390991866332d999e79
56bbd61c3bad30b4aa525fa5542569ccd7102436
/Gridding_cpu/Gridding_cpu/Gridding.cpp
e156bcf569bde7ad9dd7f3fdec75563f1dcad4d9
[]
no_license
SiNcSaD/Cuda
4d2d2b29b4fe11a1a3149c1bad24434c31057e2b
318a1879ca4e072d8dd3f351ff46dd292f31eea0
refs/heads/master
2021-01-12T09:18:51.202955
2017-02-17T02:14:44
2017-02-17T02:14:44
81,316,899
0
0
null
null
null
null
BIG5
C++
false
false
1,462
cpp
#include <opencv2\core\core.hpp> #include <opencv2\highgui\highgui.hpp> #include <opencv2\opencv.hpp> #include <stdio.h> #include <time.h> #define gridWidth 100 #define gridHeight 100 int main() { /// 建立IPL IplImage *imgSrc = cvLoadImage("C:\\Users\\user\\Desktop\\Gridding.jpg"); IplImage *imgOutput = cvCreateImage(cvGetSize(imgSrc), IPL_DEPTH_8U, 3); /// IPL指標 uchar *ptrSrc = (uchar*)imgSrc->imageData; uchar *ptrOutput = (uchar*)imgOutput->imageData; /// IPL尺寸 int height = imgSrc->height; int width = imgSrc->width; int channel = imgSrc->nChannels; /// 複製原圖 for (int i = 0; i < width*height*channel; i++) ptrOutput[i] = ptrSrc[i]; clock_t timeStart = clock(); /*===========================START===========================*/ for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { for (int k = 0; k < channel; k++) { if (i % gridHeight == 0 || j % gridWidth == 0) { int offset = (i*width + j)*channel + k; ptrOutput[offset] = 255; } } } } /*============================END============================*/ clock_t timeEnd = clock(); /// 計算、輸出時間 float milliseconds = timeEnd - timeStart; printf("CPU Processing time: %f (ms) \n", milliseconds); /// Show image cvNamedWindow("", CV_WINDOW_AUTOSIZE); // 若用 CV_WINDOW_NORMAL 會誤以為網格化錯誤... cvShowImage("", imgOutput); cvWaitKey(0); cvReleaseImage(&imgOutput); return 0; }
[ "generation0987740903@gmail.com" ]
generation0987740903@gmail.com
d7c64669a5ffb69d7988d669f061ff47fc8b806f
ac8e27210d8ae1c79e7d0d9db1bcf4e31c737718
/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
45be1ee96342166d7817267d446e4430e8871191
[ "NCSA", "LLVM-exception", "Apache-2.0" ]
permissive
steleman/flang9
d583d619bfb67d27a995274e30c8c1a642696ec1
4ad7c213b30422e1e0fcb3ac826640d576977d04
refs/heads/master
2020-11-27T09:50:18.644313
2020-03-07T14:37:32
2020-03-07T14:37:32
229,387,867
0
0
Apache-2.0
2019-12-21T06:35:35
2019-12-21T06:35:34
null
UTF-8
C++
false
false
58,360
cpp
//===-- ARMInstPrinter.cpp - Convert ARM MCInst to assembly syntax --------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This class prints an ARM MCInst to a .s file. // //===----------------------------------------------------------------------===// #include "ARMInstPrinter.h" #include "Utils/ARMBaseInfo.h" #include "MCTargetDesc/ARMAddressingModes.h" #include "MCTargetDesc/ARMBaseInfo.h" #include "llvm/MC/MCAsmInfo.h" #include "llvm/MC/MCExpr.h" #include "llvm/MC/MCInst.h" #include "llvm/MC/MCInstrInfo.h" #include "llvm/MC/MCRegisterInfo.h" #include "llvm/MC/MCSubtargetInfo.h" #include "llvm/MC/SubtargetFeature.h" #include "llvm/Support/Casting.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/MathExtras.h" #include "llvm/Support/raw_ostream.h" #include <algorithm> #include <cassert> #include <cstdint> using namespace llvm; #define DEBUG_TYPE "asm-printer" #define PRINT_ALIAS_INSTR #include "ARMGenAsmWriter.inc" /// translateShiftImm - Convert shift immediate from 0-31 to 1-32 for printing. /// /// getSORegOffset returns an integer from 0-31, representing '32' as 0. static unsigned translateShiftImm(unsigned imm) { // lsr #32 and asr #32 exist, but should be encoded as a 0. assert((imm & ~0x1f) == 0 && "Invalid shift encoding"); if (imm == 0) return 32; return imm; } /// Prints the shift value with an immediate value. static void printRegImmShift(raw_ostream &O, ARM_AM::ShiftOpc ShOpc, unsigned ShImm, bool UseMarkup) { if (ShOpc == ARM_AM::no_shift || (ShOpc == ARM_AM::lsl && !ShImm)) return; O << ", "; assert(!(ShOpc == ARM_AM::ror && !ShImm) && "Cannot have ror #0"); O << getShiftOpcStr(ShOpc); if (ShOpc != ARM_AM::rrx) { O << " "; if (UseMarkup) O << "<imm:"; O << "#" << translateShiftImm(ShImm); if (UseMarkup) O << ">"; } } ARMInstPrinter::ARMInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI) : MCInstPrinter(MAI, MII, MRI) {} bool ARMInstPrinter::applyTargetSpecificCLOption(StringRef Opt) { if (Opt == "reg-names-std") { DefaultAltIdx = ARM::NoRegAltName; return true; } if (Opt == "reg-names-raw") { DefaultAltIdx = ARM::RegNamesRaw; return true; } return false; } void ARMInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const { OS << markup("<reg:") << getRegisterName(RegNo, DefaultAltIdx) << markup(">"); } void ARMInstPrinter::printInst(const MCInst *MI, raw_ostream &O, StringRef Annot, const MCSubtargetInfo &STI) { unsigned Opcode = MI->getOpcode(); switch (Opcode) { // Check for MOVs and print canonical forms, instead. case ARM::MOVsr: { // FIXME: Thumb variants? const MCOperand &Dst = MI->getOperand(0); const MCOperand &MO1 = MI->getOperand(1); const MCOperand &MO2 = MI->getOperand(2); const MCOperand &MO3 = MI->getOperand(3); O << '\t' << ARM_AM::getShiftOpcStr(ARM_AM::getSORegShOp(MO3.getImm())); printSBitModifierOperand(MI, 6, STI, O); printPredicateOperand(MI, 4, STI, O); O << '\t'; printRegName(O, Dst.getReg()); O << ", "; printRegName(O, MO1.getReg()); O << ", "; printRegName(O, MO2.getReg()); assert(ARM_AM::getSORegOffset(MO3.getImm()) == 0); printAnnotation(O, Annot); return; } case ARM::MOVsi: { // FIXME: Thumb variants? const MCOperand &Dst = MI->getOperand(0); const MCOperand &MO1 = MI->getOperand(1); const MCOperand &MO2 = MI->getOperand(2); O << '\t' << ARM_AM::getShiftOpcStr(ARM_AM::getSORegShOp(MO2.getImm())); printSBitModifierOperand(MI, 5, STI, O); printPredicateOperand(MI, 3, STI, O); O << '\t'; printRegName(O, Dst.getReg()); O << ", "; printRegName(O, MO1.getReg()); if (ARM_AM::getSORegShOp(MO2.getImm()) == ARM_AM::rrx) { printAnnotation(O, Annot); return; } O << ", " << markup("<imm:") << "#" << translateShiftImm(ARM_AM::getSORegOffset(MO2.getImm())) << markup(">"); printAnnotation(O, Annot); return; } // A8.6.123 PUSH case ARM::STMDB_UPD: case ARM::t2STMDB_UPD: if (MI->getOperand(0).getReg() == ARM::SP && MI->getNumOperands() > 5) { // Should only print PUSH if there are at least two registers in the list. O << '\t' << "push"; printPredicateOperand(MI, 2, STI, O); if (Opcode == ARM::t2STMDB_UPD) O << ".w"; O << '\t'; printRegisterList(MI, 4, STI, O); printAnnotation(O, Annot); return; } else break; case ARM::STR_PRE_IMM: if (MI->getOperand(2).getReg() == ARM::SP && MI->getOperand(3).getImm() == -4) { O << '\t' << "push"; printPredicateOperand(MI, 4, STI, O); O << "\t{"; printRegName(O, MI->getOperand(1).getReg()); O << "}"; printAnnotation(O, Annot); return; } else break; // A8.6.122 POP case ARM::LDMIA_UPD: case ARM::t2LDMIA_UPD: if (MI->getOperand(0).getReg() == ARM::SP && MI->getNumOperands() > 5) { // Should only print POP if there are at least two registers in the list. O << '\t' << "pop"; printPredicateOperand(MI, 2, STI, O); if (Opcode == ARM::t2LDMIA_UPD) O << ".w"; O << '\t'; printRegisterList(MI, 4, STI, O); printAnnotation(O, Annot); return; } else break; case ARM::LDR_POST_IMM: if (MI->getOperand(2).getReg() == ARM::SP && MI->getOperand(4).getImm() == 4) { O << '\t' << "pop"; printPredicateOperand(MI, 5, STI, O); O << "\t{"; printRegName(O, MI->getOperand(0).getReg()); O << "}"; printAnnotation(O, Annot); return; } else break; // A8.6.355 VPUSH case ARM::VSTMSDB_UPD: case ARM::VSTMDDB_UPD: if (MI->getOperand(0).getReg() == ARM::SP) { O << '\t' << "vpush"; printPredicateOperand(MI, 2, STI, O); O << '\t'; printRegisterList(MI, 4, STI, O); printAnnotation(O, Annot); return; } else break; // A8.6.354 VPOP case ARM::VLDMSIA_UPD: case ARM::VLDMDIA_UPD: if (MI->getOperand(0).getReg() == ARM::SP) { O << '\t' << "vpop"; printPredicateOperand(MI, 2, STI, O); O << '\t'; printRegisterList(MI, 4, STI, O); printAnnotation(O, Annot); return; } else break; case ARM::tLDMIA: { bool Writeback = true; unsigned BaseReg = MI->getOperand(0).getReg(); for (unsigned i = 3; i < MI->getNumOperands(); ++i) { if (MI->getOperand(i).getReg() == BaseReg) Writeback = false; } O << "\tldm"; printPredicateOperand(MI, 1, STI, O); O << '\t'; printRegName(O, BaseReg); if (Writeback) O << "!"; O << ", "; printRegisterList(MI, 3, STI, O); printAnnotation(O, Annot); return; } // Combine 2 GPRs from disassember into a GPRPair to match with instr def. // ldrexd/strexd require even/odd GPR pair. To enforce this constraint, // a single GPRPair reg operand is used in the .td file to replace the two // GPRs. However, when decoding them, the two GRPs cannot be automatically // expressed as a GPRPair, so we have to manually merge them. // FIXME: We would really like to be able to tablegen'erate this. case ARM::LDREXD: case ARM::STREXD: case ARM::LDAEXD: case ARM::STLEXD: { const MCRegisterClass &MRC = MRI.getRegClass(ARM::GPRRegClassID); bool isStore = Opcode == ARM::STREXD || Opcode == ARM::STLEXD; unsigned Reg = MI->getOperand(isStore ? 1 : 0).getReg(); if (MRC.contains(Reg)) { MCInst NewMI; MCOperand NewReg; NewMI.setOpcode(Opcode); if (isStore) NewMI.addOperand(MI->getOperand(0)); NewReg = MCOperand::createReg(MRI.getMatchingSuperReg( Reg, ARM::gsub_0, &MRI.getRegClass(ARM::GPRPairRegClassID))); NewMI.addOperand(NewReg); // Copy the rest operands into NewMI. for (unsigned i = isStore ? 3 : 2; i < MI->getNumOperands(); ++i) NewMI.addOperand(MI->getOperand(i)); printInstruction(&NewMI, STI, O); return; } break; } case ARM::TSB: case ARM::t2TSB: O << "\ttsb\tcsync"; return; case ARM::t2DSB: switch (MI->getOperand(0).getImm()) { default: if (!printAliasInstr(MI, STI, O)) printInstruction(MI, STI, O); break; case 0: O << "\tssbb"; break; case 4: O << "\tpssbb"; break; } printAnnotation(O, Annot); return; } if (!printAliasInstr(MI, STI, O)) printInstruction(MI, STI, O); printAnnotation(O, Annot); } void ARMInstPrinter::printOperand(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &Op = MI->getOperand(OpNo); if (Op.isReg()) { unsigned Reg = Op.getReg(); printRegName(O, Reg); } else if (Op.isImm()) { O << markup("<imm:") << '#' << formatImm(Op.getImm()) << markup(">"); } else { assert(Op.isExpr() && "unknown operand kind in printOperand"); const MCExpr *Expr = Op.getExpr(); switch (Expr->getKind()) { case MCExpr::Binary: O << '#'; Expr->print(O, &MAI); break; case MCExpr::Constant: { // If a symbolic branch target was added as a constant expression then // print that address in hex. And only print 32 unsigned bits for the // address. const MCConstantExpr *Constant = cast<MCConstantExpr>(Expr); int64_t TargetAddress; if (!Constant->evaluateAsAbsolute(TargetAddress)) { O << '#'; Expr->print(O, &MAI); } else { O << "0x"; O.write_hex(static_cast<uint32_t>(TargetAddress)); } break; } default: // FIXME: Should we always treat this as if it is a constant literal and // prefix it with '#'? Expr->print(O, &MAI); break; } } } void ARMInstPrinter::printThumbLdrLabelOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); if (MO1.isExpr()) { MO1.getExpr()->print(O, &MAI); return; } O << markup("<mem:") << "[pc, "; int32_t OffImm = (int32_t)MO1.getImm(); bool isSub = OffImm < 0; // Special value for #-0. All others are normal. if (OffImm == INT32_MIN) OffImm = 0; if (isSub) { O << markup("<imm:") << "#-" << formatImm(-OffImm) << markup(">"); } else { O << markup("<imm:") << "#" << formatImm(OffImm) << markup(">"); } O << "]" << markup(">"); } // so_reg is a 4-operand unit corresponding to register forms of the A5.1 // "Addressing Mode 1 - Data-processing operands" forms. This includes: // REG 0 0 - e.g. R5 // REG REG 0,SH_OPC - e.g. R5, ROR R3 // REG 0 IMM,SH_OPC - e.g. R5, LSL #3 void ARMInstPrinter::printSORegRegOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); const MCOperand &MO3 = MI->getOperand(OpNum + 2); printRegName(O, MO1.getReg()); // Print the shift opc. ARM_AM::ShiftOpc ShOpc = ARM_AM::getSORegShOp(MO3.getImm()); O << ", " << ARM_AM::getShiftOpcStr(ShOpc); if (ShOpc == ARM_AM::rrx) return; O << ' '; printRegName(O, MO2.getReg()); assert(ARM_AM::getSORegOffset(MO3.getImm()) == 0); } void ARMInstPrinter::printSORegImmOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); printRegName(O, MO1.getReg()); // Print the shift opc. printRegImmShift(O, ARM_AM::getSORegShOp(MO2.getImm()), ARM_AM::getSORegOffset(MO2.getImm()), UseMarkup); } //===--------------------------------------------------------------------===// // Addressing Mode #2 //===--------------------------------------------------------------------===// void ARMInstPrinter::printAM2PreOrOffsetIndexOp(const MCInst *MI, unsigned Op, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(Op); const MCOperand &MO2 = MI->getOperand(Op + 1); const MCOperand &MO3 = MI->getOperand(Op + 2); O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); if (!MO2.getReg()) { if (ARM_AM::getAM2Offset(MO3.getImm())) { // Don't print +0. O << ", " << markup("<imm:") << "#" << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO3.getImm())) << ARM_AM::getAM2Offset(MO3.getImm()) << markup(">"); } O << "]" << markup(">"); return; } O << ", "; O << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO3.getImm())); printRegName(O, MO2.getReg()); printRegImmShift(O, ARM_AM::getAM2ShiftOpc(MO3.getImm()), ARM_AM::getAM2Offset(MO3.getImm()), UseMarkup); O << "]" << markup(">"); } void ARMInstPrinter::printAddrModeTBB(const MCInst *MI, unsigned Op, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(Op); const MCOperand &MO2 = MI->getOperand(Op + 1); O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); O << ", "; printRegName(O, MO2.getReg()); O << "]" << markup(">"); } void ARMInstPrinter::printAddrModeTBH(const MCInst *MI, unsigned Op, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(Op); const MCOperand &MO2 = MI->getOperand(Op + 1); O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); O << ", "; printRegName(O, MO2.getReg()); O << ", lsl " << markup("<imm:") << "#1" << markup(">") << "]" << markup(">"); } void ARMInstPrinter::printAddrMode2Operand(const MCInst *MI, unsigned Op, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(Op); if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right. printOperand(MI, Op, STI, O); return; } #ifndef NDEBUG const MCOperand &MO3 = MI->getOperand(Op + 2); unsigned IdxMode = ARM_AM::getAM2IdxMode(MO3.getImm()); assert(IdxMode != ARMII::IndexModePost && "Should be pre or offset index op"); #endif printAM2PreOrOffsetIndexOp(MI, Op, STI, O); } void ARMInstPrinter::printAddrMode2OffsetOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); if (!MO1.getReg()) { unsigned ImmOffs = ARM_AM::getAM2Offset(MO2.getImm()); O << markup("<imm:") << '#' << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO2.getImm())) << ImmOffs << markup(">"); return; } O << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO2.getImm())); printRegName(O, MO1.getReg()); printRegImmShift(O, ARM_AM::getAM2ShiftOpc(MO2.getImm()), ARM_AM::getAM2Offset(MO2.getImm()), UseMarkup); } //===--------------------------------------------------------------------===// // Addressing Mode #3 //===--------------------------------------------------------------------===// void ARMInstPrinter::printAM3PreOrOffsetIndexOp(const MCInst *MI, unsigned Op, raw_ostream &O, bool AlwaysPrintImm0) { const MCOperand &MO1 = MI->getOperand(Op); const MCOperand &MO2 = MI->getOperand(Op + 1); const MCOperand &MO3 = MI->getOperand(Op + 2); O << markup("<mem:") << '['; printRegName(O, MO1.getReg()); if (MO2.getReg()) { O << ", " << getAddrOpcStr(ARM_AM::getAM3Op(MO3.getImm())); printRegName(O, MO2.getReg()); O << ']' << markup(">"); return; } // If the op is sub we have to print the immediate even if it is 0 unsigned ImmOffs = ARM_AM::getAM3Offset(MO3.getImm()); ARM_AM::AddrOpc op = ARM_AM::getAM3Op(MO3.getImm()); if (AlwaysPrintImm0 || ImmOffs || (op == ARM_AM::sub)) { O << ", " << markup("<imm:") << "#" << ARM_AM::getAddrOpcStr(op) << ImmOffs << markup(">"); } O << ']' << markup(">"); } template <bool AlwaysPrintImm0> void ARMInstPrinter::printAddrMode3Operand(const MCInst *MI, unsigned Op, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(Op); if (!MO1.isReg()) { // For label symbolic references. printOperand(MI, Op, STI, O); return; } assert(ARM_AM::getAM3IdxMode(MI->getOperand(Op + 2).getImm()) != ARMII::IndexModePost && "unexpected idxmode"); printAM3PreOrOffsetIndexOp(MI, Op, O, AlwaysPrintImm0); } void ARMInstPrinter::printAddrMode3OffsetOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); if (MO1.getReg()) { O << getAddrOpcStr(ARM_AM::getAM3Op(MO2.getImm())); printRegName(O, MO1.getReg()); return; } unsigned ImmOffs = ARM_AM::getAM3Offset(MO2.getImm()); O << markup("<imm:") << '#' << ARM_AM::getAddrOpcStr(ARM_AM::getAM3Op(MO2.getImm())) << ImmOffs << markup(">"); } void ARMInstPrinter::printPostIdxImm8Operand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO = MI->getOperand(OpNum); unsigned Imm = MO.getImm(); O << markup("<imm:") << '#' << ((Imm & 256) ? "" : "-") << (Imm & 0xff) << markup(">"); } void ARMInstPrinter::printPostIdxRegOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); O << (MO2.getImm() ? "" : "-"); printRegName(O, MO1.getReg()); } void ARMInstPrinter::printPostIdxImm8s4Operand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO = MI->getOperand(OpNum); unsigned Imm = MO.getImm(); O << markup("<imm:") << '#' << ((Imm & 256) ? "" : "-") << ((Imm & 0xff) << 2) << markup(">"); } template<int shift> void ARMInstPrinter::printMveAddrModeRQOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); O << ", "; printRegName(O, MO2.getReg()); if (shift > 0) printRegImmShift(O, ARM_AM::uxtw, shift, UseMarkup); O << "]" << markup(">"); } void ARMInstPrinter::printMveAddrModeQOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); int64_t Imm = MO2.getImm(); if (Imm != 0) O << ", " << markup("<imm:") << '#' << Imm << markup(">"); O << "]" << markup(">"); } void ARMInstPrinter::printLdStmModeOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { ARM_AM::AMSubMode Mode = ARM_AM::getAM4SubMode(MI->getOperand(OpNum).getImm()); O << ARM_AM::getAMSubModeStr(Mode); } template <bool AlwaysPrintImm0> void ARMInstPrinter::printAddrMode5Operand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right. printOperand(MI, OpNum, STI, O); return; } O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); unsigned ImmOffs = ARM_AM::getAM5Offset(MO2.getImm()); ARM_AM::AddrOpc Op = ARM_AM::getAM5Op(MO2.getImm()); if (AlwaysPrintImm0 || ImmOffs || Op == ARM_AM::sub) { O << ", " << markup("<imm:") << "#" << ARM_AM::getAddrOpcStr(Op) << ImmOffs * 4 << markup(">"); } O << "]" << markup(">"); } template <bool AlwaysPrintImm0> void ARMInstPrinter::printAddrMode5FP16Operand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum+1); if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right. printOperand(MI, OpNum, STI, O); return; } O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); unsigned ImmOffs = ARM_AM::getAM5FP16Offset(MO2.getImm()); unsigned Op = ARM_AM::getAM5FP16Op(MO2.getImm()); if (AlwaysPrintImm0 || ImmOffs || Op == ARM_AM::sub) { O << ", " << markup("<imm:") << "#" << ARM_AM::getAddrOpcStr(ARM_AM::getAM5FP16Op(MO2.getImm())) << ImmOffs * 2 << markup(">"); } O << "]" << markup(">"); } void ARMInstPrinter::printAddrMode6Operand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); if (MO2.getImm()) { O << ":" << (MO2.getImm() << 3); } O << "]" << markup(">"); } void ARMInstPrinter::printAddrMode7Operand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); O << "]" << markup(">"); } void ARMInstPrinter::printAddrMode6OffsetOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO = MI->getOperand(OpNum); if (MO.getReg() == 0) O << "!"; else { O << ", "; printRegName(O, MO.getReg()); } } void ARMInstPrinter::printBitfieldInvMaskImmOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO = MI->getOperand(OpNum); uint32_t v = ~MO.getImm(); int32_t lsb = countTrailingZeros(v); int32_t width = (32 - countLeadingZeros(v)) - lsb; assert(MO.isImm() && "Not a valid bf_inv_mask_imm value!"); O << markup("<imm:") << '#' << lsb << markup(">") << ", " << markup("<imm:") << '#' << width << markup(">"); } void ARMInstPrinter::printMemBOption(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned val = MI->getOperand(OpNum).getImm(); O << ARM_MB::MemBOptToString(val, STI.getFeatureBits()[ARM::HasV8Ops]); } void ARMInstPrinter::printInstSyncBOption(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned val = MI->getOperand(OpNum).getImm(); O << ARM_ISB::InstSyncBOptToString(val); } void ARMInstPrinter::printTraceSyncBOption(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned val = MI->getOperand(OpNum).getImm(); O << ARM_TSB::TraceSyncBOptToString(val); } void ARMInstPrinter::printShiftImmOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned ShiftOp = MI->getOperand(OpNum).getImm(); bool isASR = (ShiftOp & (1 << 5)) != 0; unsigned Amt = ShiftOp & 0x1f; if (isASR) { O << ", asr " << markup("<imm:") << "#" << (Amt == 0 ? 32 : Amt) << markup(">"); } else if (Amt) { O << ", lsl " << markup("<imm:") << "#" << Amt << markup(">"); } } void ARMInstPrinter::printPKHLSLShiftImm(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Imm = MI->getOperand(OpNum).getImm(); if (Imm == 0) return; assert(Imm > 0 && Imm < 32 && "Invalid PKH shift immediate value!"); O << ", lsl " << markup("<imm:") << "#" << Imm << markup(">"); } void ARMInstPrinter::printPKHASRShiftImm(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Imm = MI->getOperand(OpNum).getImm(); // A shift amount of 32 is encoded as 0. if (Imm == 0) Imm = 32; assert(Imm > 0 && Imm <= 32 && "Invalid PKH shift immediate value!"); O << ", asr " << markup("<imm:") << "#" << Imm << markup(">"); } void ARMInstPrinter::printRegisterList(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { if (MI->getOpcode() != ARM::t2CLRM) { assert(std::is_sorted(MI->begin() + OpNum, MI->end(), [&](const MCOperand &LHS, const MCOperand &RHS) { return MRI.getEncodingValue(LHS.getReg()) < MRI.getEncodingValue(RHS.getReg()); })); } O << "{"; for (unsigned i = OpNum, e = MI->getNumOperands(); i != e; ++i) { if (i != OpNum) O << ", "; printRegName(O, MI->getOperand(i).getReg()); } O << "}"; } void ARMInstPrinter::printGPRPairOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Reg = MI->getOperand(OpNum).getReg(); printRegName(O, MRI.getSubReg(Reg, ARM::gsub_0)); O << ", "; printRegName(O, MRI.getSubReg(Reg, ARM::gsub_1)); } void ARMInstPrinter::printSetendOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &Op = MI->getOperand(OpNum); if (Op.getImm()) O << "be"; else O << "le"; } void ARMInstPrinter::printCPSIMod(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &Op = MI->getOperand(OpNum); O << ARM_PROC::IModToString(Op.getImm()); } void ARMInstPrinter::printCPSIFlag(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &Op = MI->getOperand(OpNum); unsigned IFlags = Op.getImm(); for (int i = 2; i >= 0; --i) if (IFlags & (1 << i)) O << ARM_PROC::IFlagsToString(1 << i); if (IFlags == 0) O << "none"; } void ARMInstPrinter::printMSRMaskOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &Op = MI->getOperand(OpNum); const FeatureBitset &FeatureBits = STI.getFeatureBits(); if (FeatureBits[ARM::FeatureMClass]) { unsigned SYSm = Op.getImm() & 0xFFF; // 12-bit SYSm unsigned Opcode = MI->getOpcode(); // For writes, handle extended mask bits if the DSP extension is present. if (Opcode == ARM::t2MSR_M && FeatureBits[ARM::FeatureDSP]) { auto TheReg =ARMSysReg::lookupMClassSysRegBy12bitSYSmValue(SYSm); if (TheReg && TheReg->isInRequiredFeatures({ARM::FeatureDSP})) { O << TheReg->Name; return; } } // Handle the basic 8-bit mask. SYSm &= 0xff; if (Opcode == ARM::t2MSR_M && FeatureBits [ARM::HasV7Ops]) { // ARMv7-M deprecates using MSR APSR without a _<bits> qualifier as an // alias for MSR APSR_nzcvq. auto TheReg = ARMSysReg::lookupMClassSysRegAPSRNonDeprecated(SYSm); if (TheReg) { O << TheReg->Name; return; } } auto TheReg = ARMSysReg::lookupMClassSysRegBy8bitSYSmValue(SYSm); if (TheReg) { O << TheReg->Name; return; } O << SYSm; return; } // As special cases, CPSR_f, CPSR_s and CPSR_fs prefer printing as // APSR_nzcvq, APSR_g and APSRnzcvqg, respectively. unsigned SpecRegRBit = Op.getImm() >> 4; unsigned Mask = Op.getImm() & 0xf; if (!SpecRegRBit && (Mask == 8 || Mask == 4 || Mask == 12)) { O << "APSR_"; switch (Mask) { default: llvm_unreachable("Unexpected mask value!"); case 4: O << "g"; return; case 8: O << "nzcvq"; return; case 12: O << "nzcvqg"; return; } } if (SpecRegRBit) O << "SPSR"; else O << "CPSR"; if (Mask) { O << '_'; if (Mask & 8) O << 'f'; if (Mask & 4) O << 's'; if (Mask & 2) O << 'x'; if (Mask & 1) O << 'c'; } } void ARMInstPrinter::printBankedRegOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { uint32_t Banked = MI->getOperand(OpNum).getImm(); auto TheReg = ARMBankedReg::lookupBankedRegByEncoding(Banked); assert(TheReg && "invalid banked register operand"); std::string Name = TheReg->Name; uint32_t isSPSR = (Banked & 0x20) >> 5; if (isSPSR) Name.replace(0, 4, "SPSR"); // convert 'spsr_' to 'SPSR_' O << Name; } void ARMInstPrinter::printPredicateOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm(); // Handle the undefined 15 CC value here for printing so we don't abort(). if ((unsigned)CC == 15) O << "<und>"; else if (CC != ARMCC::AL) O << ARMCondCodeToString(CC); } void ARMInstPrinter::printMandatoryRestrictedPredicateOperand( const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { if ((ARMCC::CondCodes)MI->getOperand(OpNum).getImm() == ARMCC::HS) O << "cs"; else printMandatoryPredicateOperand(MI, OpNum, STI, O); } void ARMInstPrinter::printMandatoryPredicateOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm(); O << ARMCondCodeToString(CC); } void ARMInstPrinter::printMandatoryInvertedPredicateOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm(); O << ARMCondCodeToString(ARMCC::getOppositeCondition(CC)); } void ARMInstPrinter::printSBitModifierOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { if (MI->getOperand(OpNum).getReg()) { assert(MI->getOperand(OpNum).getReg() == ARM::CPSR && "Expect ARM CPSR register!"); O << 's'; } } void ARMInstPrinter::printNoHashImmediate(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { O << MI->getOperand(OpNum).getImm(); } void ARMInstPrinter::printPImmediate(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { O << "p" << MI->getOperand(OpNum).getImm(); } void ARMInstPrinter::printCImmediate(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { O << "c" << MI->getOperand(OpNum).getImm(); } void ARMInstPrinter::printCoprocOptionImm(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { O << "{" << MI->getOperand(OpNum).getImm() << "}"; } void ARMInstPrinter::printPCLabel(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { llvm_unreachable("Unhandled PC-relative pseudo-instruction!"); } template <unsigned scale> void ARMInstPrinter::printAdrLabelOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO = MI->getOperand(OpNum); if (MO.isExpr()) { MO.getExpr()->print(O, &MAI); return; } int32_t OffImm = (int32_t)MO.getImm() << scale; O << markup("<imm:"); if (OffImm == INT32_MIN) O << "#-0"; else if (OffImm < 0) O << "#-" << -OffImm; else O << "#" << OffImm; O << markup(">"); } void ARMInstPrinter::printThumbS4ImmOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { O << markup("<imm:") << "#" << formatImm(MI->getOperand(OpNum).getImm() * 4) << markup(">"); } void ARMInstPrinter::printThumbSRImm(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Imm = MI->getOperand(OpNum).getImm(); O << markup("<imm:") << "#" << formatImm((Imm == 0 ? 32 : Imm)) << markup(">"); } void ARMInstPrinter::printThumbITMask(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { // (3 - the number of trailing zeros) is the number of then / else. unsigned Mask = MI->getOperand(OpNum).getImm(); unsigned NumTZ = countTrailingZeros(Mask); assert(NumTZ <= 3 && "Invalid IT mask!"); for (unsigned Pos = 3, e = NumTZ; Pos > e; --Pos) { if ((Mask >> Pos) & 1) O << 'e'; else O << 't'; } } void ARMInstPrinter::printThumbAddrModeRROperand(const MCInst *MI, unsigned Op, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(Op); const MCOperand &MO2 = MI->getOperand(Op + 1); if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right. printOperand(MI, Op, STI, O); return; } O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); if (unsigned RegNum = MO2.getReg()) { O << ", "; printRegName(O, RegNum); } O << "]" << markup(">"); } void ARMInstPrinter::printThumbAddrModeImm5SOperand(const MCInst *MI, unsigned Op, const MCSubtargetInfo &STI, raw_ostream &O, unsigned Scale) { const MCOperand &MO1 = MI->getOperand(Op); const MCOperand &MO2 = MI->getOperand(Op + 1); if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right. printOperand(MI, Op, STI, O); return; } O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); if (unsigned ImmOffs = MO2.getImm()) { O << ", " << markup("<imm:") << "#" << formatImm(ImmOffs * Scale) << markup(">"); } O << "]" << markup(">"); } void ARMInstPrinter::printThumbAddrModeImm5S1Operand(const MCInst *MI, unsigned Op, const MCSubtargetInfo &STI, raw_ostream &O) { printThumbAddrModeImm5SOperand(MI, Op, STI, O, 1); } void ARMInstPrinter::printThumbAddrModeImm5S2Operand(const MCInst *MI, unsigned Op, const MCSubtargetInfo &STI, raw_ostream &O) { printThumbAddrModeImm5SOperand(MI, Op, STI, O, 2); } void ARMInstPrinter::printThumbAddrModeImm5S4Operand(const MCInst *MI, unsigned Op, const MCSubtargetInfo &STI, raw_ostream &O) { printThumbAddrModeImm5SOperand(MI, Op, STI, O, 4); } void ARMInstPrinter::printThumbAddrModeSPOperand(const MCInst *MI, unsigned Op, const MCSubtargetInfo &STI, raw_ostream &O) { printThumbAddrModeImm5SOperand(MI, Op, STI, O, 4); } // Constant shifts t2_so_reg is a 2-operand unit corresponding to the Thumb2 // register with shift forms. // REG 0 0 - e.g. R5 // REG IMM, SH_OPC - e.g. R5, LSL #3 void ARMInstPrinter::printT2SOOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); unsigned Reg = MO1.getReg(); printRegName(O, Reg); // Print the shift opc. assert(MO2.isImm() && "Not a valid t2_so_reg value!"); printRegImmShift(O, ARM_AM::getSORegShOp(MO2.getImm()), ARM_AM::getSORegOffset(MO2.getImm()), UseMarkup); } template <bool AlwaysPrintImm0> void ARMInstPrinter::printAddrModeImm12Operand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right. printOperand(MI, OpNum, STI, O); return; } O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); int32_t OffImm = (int32_t)MO2.getImm(); bool isSub = OffImm < 0; // Special value for #-0. All others are normal. if (OffImm == INT32_MIN) OffImm = 0; if (isSub) { O << ", " << markup("<imm:") << "#-" << formatImm(-OffImm) << markup(">"); } else if (AlwaysPrintImm0 || OffImm > 0) { O << ", " << markup("<imm:") << "#" << formatImm(OffImm) << markup(">"); } O << "]" << markup(">"); } template <bool AlwaysPrintImm0> void ARMInstPrinter::printT2AddrModeImm8Operand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); int32_t OffImm = (int32_t)MO2.getImm(); bool isSub = OffImm < 0; // Don't print +0. if (OffImm == INT32_MIN) OffImm = 0; if (isSub) { O << ", " << markup("<imm:") << "#-" << -OffImm << markup(">"); } else if (AlwaysPrintImm0 || OffImm > 0) { O << ", " << markup("<imm:") << "#" << OffImm << markup(">"); } O << "]" << markup(">"); } template <bool AlwaysPrintImm0> void ARMInstPrinter::printT2AddrModeImm8s4Operand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); if (!MO1.isReg()) { // For label symbolic references. printOperand(MI, OpNum, STI, O); return; } O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); int32_t OffImm = (int32_t)MO2.getImm(); bool isSub = OffImm < 0; assert(((OffImm & 0x3) == 0) && "Not a valid immediate!"); // Don't print +0. if (OffImm == INT32_MIN) OffImm = 0; if (isSub) { O << ", " << markup("<imm:") << "#-" << -OffImm << markup(">"); } else if (AlwaysPrintImm0 || OffImm > 0) { O << ", " << markup("<imm:") << "#" << OffImm << markup(">"); } O << "]" << markup(">"); } void ARMInstPrinter::printT2AddrModeImm0_1020s4Operand( const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); if (MO2.getImm()) { O << ", " << markup("<imm:") << "#" << formatImm(MO2.getImm() * 4) << markup(">"); } O << "]" << markup(">"); } void ARMInstPrinter::printT2AddrModeImm8OffsetOperand( const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); int32_t OffImm = (int32_t)MO1.getImm(); O << ", " << markup("<imm:"); if (OffImm == INT32_MIN) O << "#-0"; else if (OffImm < 0) O << "#-" << -OffImm; else O << "#" << OffImm; O << markup(">"); } void ARMInstPrinter::printT2AddrModeImm8s4OffsetOperand( const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); int32_t OffImm = (int32_t)MO1.getImm(); assert(((OffImm & 0x3) == 0) && "Not a valid immediate!"); O << ", " << markup("<imm:"); if (OffImm == INT32_MIN) O << "#-0"; else if (OffImm < 0) O << "#-" << -OffImm; else O << "#" << OffImm; O << markup(">"); } void ARMInstPrinter::printT2AddrModeSoRegOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO1 = MI->getOperand(OpNum); const MCOperand &MO2 = MI->getOperand(OpNum + 1); const MCOperand &MO3 = MI->getOperand(OpNum + 2); O << markup("<mem:") << "["; printRegName(O, MO1.getReg()); assert(MO2.getReg() && "Invalid so_reg load / store address!"); O << ", "; printRegName(O, MO2.getReg()); unsigned ShAmt = MO3.getImm(); if (ShAmt) { assert(ShAmt <= 3 && "Not a valid Thumb2 addressing mode!"); O << ", lsl " << markup("<imm:") << "#" << ShAmt << markup(">"); } O << "]" << markup(">"); } void ARMInstPrinter::printFPImmOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { const MCOperand &MO = MI->getOperand(OpNum); O << markup("<imm:") << '#' << ARM_AM::getFPImmFloat(MO.getImm()) << markup(">"); } void ARMInstPrinter::printNEONModImmOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned EncodedImm = MI->getOperand(OpNum).getImm(); unsigned EltBits; uint64_t Val = ARM_AM::decodeNEONModImm(EncodedImm, EltBits); O << markup("<imm:") << "#0x"; O.write_hex(Val); O << markup(">"); } void ARMInstPrinter::printImmPlusOneOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Imm = MI->getOperand(OpNum).getImm(); O << markup("<imm:") << "#" << formatImm(Imm + 1) << markup(">"); } void ARMInstPrinter::printRotImmOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Imm = MI->getOperand(OpNum).getImm(); if (Imm == 0) return; assert(Imm <= 3 && "illegal ror immediate!"); O << ", ror " << markup("<imm:") << "#" << 8 * Imm << markup(">"); } void ARMInstPrinter::printModImmOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { MCOperand Op = MI->getOperand(OpNum); // Support for fixups (MCFixup) if (Op.isExpr()) return printOperand(MI, OpNum, STI, O); unsigned Bits = Op.getImm() & 0xFF; unsigned Rot = (Op.getImm() & 0xF00) >> 7; bool PrintUnsigned = false; switch (MI->getOpcode()) { case ARM::MOVi: // Movs to PC should be treated unsigned PrintUnsigned = (MI->getOperand(OpNum - 1).getReg() == ARM::PC); break; case ARM::MSRi: // Movs to special registers should be treated unsigned PrintUnsigned = true; break; } int32_t Rotated = ARM_AM::rotr32(Bits, Rot); if (ARM_AM::getSOImmVal(Rotated) == Op.getImm()) { // #rot has the least possible value O << "#" << markup("<imm:"); if (PrintUnsigned) O << static_cast<uint32_t>(Rotated); else O << Rotated; O << markup(">"); return; } // Explicit #bits, #rot implied O << "#" << markup("<imm:") << Bits << markup(">") << ", #" << markup("<imm:") << Rot << markup(">"); } void ARMInstPrinter::printFBits16(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { O << markup("<imm:") << "#" << 16 - MI->getOperand(OpNum).getImm() << markup(">"); } void ARMInstPrinter::printFBits32(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { O << markup("<imm:") << "#" << 32 - MI->getOperand(OpNum).getImm() << markup(">"); } void ARMInstPrinter::printVectorIndex(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { O << "[" << MI->getOperand(OpNum).getImm() << "]"; } void ARMInstPrinter::printVectorListOne(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { O << "{"; printRegName(O, MI->getOperand(OpNum).getReg()); O << "}"; } void ARMInstPrinter::printVectorListTwo(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Reg = MI->getOperand(OpNum).getReg(); unsigned Reg0 = MRI.getSubReg(Reg, ARM::dsub_0); unsigned Reg1 = MRI.getSubReg(Reg, ARM::dsub_1); O << "{"; printRegName(O, Reg0); O << ", "; printRegName(O, Reg1); O << "}"; } void ARMInstPrinter::printVectorListTwoSpaced(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Reg = MI->getOperand(OpNum).getReg(); unsigned Reg0 = MRI.getSubReg(Reg, ARM::dsub_0); unsigned Reg1 = MRI.getSubReg(Reg, ARM::dsub_2); O << "{"; printRegName(O, Reg0); O << ", "; printRegName(O, Reg1); O << "}"; } void ARMInstPrinter::printVectorListThree(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { // Normally, it's not safe to use register enum values directly with // addition to get the next register, but for VFP registers, the // sort order is guaranteed because they're all of the form D<n>. O << "{"; printRegName(O, MI->getOperand(OpNum).getReg()); O << ", "; printRegName(O, MI->getOperand(OpNum).getReg() + 1); O << ", "; printRegName(O, MI->getOperand(OpNum).getReg() + 2); O << "}"; } void ARMInstPrinter::printVectorListFour(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { // Normally, it's not safe to use register enum values directly with // addition to get the next register, but for VFP registers, the // sort order is guaranteed because they're all of the form D<n>. O << "{"; printRegName(O, MI->getOperand(OpNum).getReg()); O << ", "; printRegName(O, MI->getOperand(OpNum).getReg() + 1); O << ", "; printRegName(O, MI->getOperand(OpNum).getReg() + 2); O << ", "; printRegName(O, MI->getOperand(OpNum).getReg() + 3); O << "}"; } void ARMInstPrinter::printVectorListOneAllLanes(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { O << "{"; printRegName(O, MI->getOperand(OpNum).getReg()); O << "[]}"; } void ARMInstPrinter::printVectorListTwoAllLanes(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Reg = MI->getOperand(OpNum).getReg(); unsigned Reg0 = MRI.getSubReg(Reg, ARM::dsub_0); unsigned Reg1 = MRI.getSubReg(Reg, ARM::dsub_1); O << "{"; printRegName(O, Reg0); O << "[], "; printRegName(O, Reg1); O << "[]}"; } void ARMInstPrinter::printVectorListThreeAllLanes(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { // Normally, it's not safe to use register enum values directly with // addition to get the next register, but for VFP registers, the // sort order is guaranteed because they're all of the form D<n>. O << "{"; printRegName(O, MI->getOperand(OpNum).getReg()); O << "[], "; printRegName(O, MI->getOperand(OpNum).getReg() + 1); O << "[], "; printRegName(O, MI->getOperand(OpNum).getReg() + 2); O << "[]}"; } void ARMInstPrinter::printVectorListFourAllLanes(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { // Normally, it's not safe to use register enum values directly with // addition to get the next register, but for VFP registers, the // sort order is guaranteed because they're all of the form D<n>. O << "{"; printRegName(O, MI->getOperand(OpNum).getReg()); O << "[], "; printRegName(O, MI->getOperand(OpNum).getReg() + 1); O << "[], "; printRegName(O, MI->getOperand(OpNum).getReg() + 2); O << "[], "; printRegName(O, MI->getOperand(OpNum).getReg() + 3); O << "[]}"; } void ARMInstPrinter::printVectorListTwoSpacedAllLanes( const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Reg = MI->getOperand(OpNum).getReg(); unsigned Reg0 = MRI.getSubReg(Reg, ARM::dsub_0); unsigned Reg1 = MRI.getSubReg(Reg, ARM::dsub_2); O << "{"; printRegName(O, Reg0); O << "[], "; printRegName(O, Reg1); O << "[]}"; } void ARMInstPrinter::printVectorListThreeSpacedAllLanes( const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { // Normally, it's not safe to use register enum values directly with // addition to get the next register, but for VFP registers, the // sort order is guaranteed because they're all of the form D<n>. O << "{"; printRegName(O, MI->getOperand(OpNum).getReg()); O << "[], "; printRegName(O, MI->getOperand(OpNum).getReg() + 2); O << "[], "; printRegName(O, MI->getOperand(OpNum).getReg() + 4); O << "[]}"; } void ARMInstPrinter::printVectorListFourSpacedAllLanes( const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { // Normally, it's not safe to use register enum values directly with // addition to get the next register, but for VFP registers, the // sort order is guaranteed because they're all of the form D<n>. O << "{"; printRegName(O, MI->getOperand(OpNum).getReg()); O << "[], "; printRegName(O, MI->getOperand(OpNum).getReg() + 2); O << "[], "; printRegName(O, MI->getOperand(OpNum).getReg() + 4); O << "[], "; printRegName(O, MI->getOperand(OpNum).getReg() + 6); O << "[]}"; } void ARMInstPrinter::printVectorListThreeSpaced(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { // Normally, it's not safe to use register enum values directly with // addition to get the next register, but for VFP registers, the // sort order is guaranteed because they're all of the form D<n>. O << "{"; printRegName(O, MI->getOperand(OpNum).getReg()); O << ", "; printRegName(O, MI->getOperand(OpNum).getReg() + 2); O << ", "; printRegName(O, MI->getOperand(OpNum).getReg() + 4); O << "}"; } void ARMInstPrinter::printVectorListFourSpaced(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { // Normally, it's not safe to use register enum values directly with // addition to get the next register, but for VFP registers, the // sort order is guaranteed because they're all of the form D<n>. O << "{"; printRegName(O, MI->getOperand(OpNum).getReg()); O << ", "; printRegName(O, MI->getOperand(OpNum).getReg() + 2); O << ", "; printRegName(O, MI->getOperand(OpNum).getReg() + 4); O << ", "; printRegName(O, MI->getOperand(OpNum).getReg() + 6); O << "}"; } template<unsigned NumRegs> void ARMInstPrinter::printMVEVectorList(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Reg = MI->getOperand(OpNum).getReg(); const char *Prefix = "{"; for (unsigned i = 0; i < NumRegs; i++) { O << Prefix; printRegName(O, MRI.getSubReg(Reg, ARM::qsub_0 + i)); Prefix = ", "; } O << "}"; } template<int64_t Angle, int64_t Remainder> void ARMInstPrinter::printComplexRotationOp(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O) { unsigned Val = MI->getOperand(OpNo).getImm(); O << "#" << (Val * Angle) + Remainder; } void ARMInstPrinter::printVPTPredicateOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { ARMVCC::VPTCodes CC = (ARMVCC::VPTCodes)MI->getOperand(OpNum).getImm(); if (CC != ARMVCC::None) O << ARMVPTPredToString(CC); } void ARMInstPrinter::printVPTMask(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { // (3 - the number of trailing zeroes) is the number of them / else. unsigned Mask = MI->getOperand(OpNum).getImm(); unsigned NumTZ = countTrailingZeros(Mask); assert(NumTZ <= 3 && "Invalid VPT mask!"); for (unsigned Pos = 3, e = NumTZ; Pos > e; --Pos) { bool T = ((Mask >> Pos) & 1) == 0; if (T) O << 't'; else O << 'e'; } } void ARMInstPrinter::printExpandedImmOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O) { uint32_t Val = MI->getOperand(OpNum).getImm(); O << markup("<imm:") << "#0x"; O.write_hex(Val); O << markup(">"); }
[ "stefan.teleman@cavium.com" ]
stefan.teleman@cavium.com
a918b839e292b1aa262162cdb264e8baed304fac
31dec155a9e069adfcf209238677b49d23bf1694
/libraries/MAX31855_RT/examples/max31855_demo6/max31855_demo6.ino
7f828b1a9cbde06b57985cdd90800f23f1a68ed0
[ "MIT", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
jantje/Arduino
75a35cfb2e2ce7a1a78ba545ac30ac8c752d1aa8
cd40e51b4eb9f8947aa58f278f61c9121d711fb0
refs/heads/master
2021-12-03T11:16:44.274410
2021-07-11T13:37:02
2021-07-11T13:37:02
382,966,519
0
0
MIT
2021-07-04T23:21:23
2021-07-04T23:21:22
null
UTF-8
C++
false
false
1,167
ino
// // FILE: max31855_demo6.ino // AUTHOR: Rob Tillaart // VERSION: 0.1.1 // PURPOSE: thermocouple lib demo setSeebeckCoefficient() // DATE: 2015-12-06 // URL: https://github.com/RobTillaart/MAX31855_RT // #include "MAX31855.h" const int doPin = 7; const int csPin = 6; const int clPin = 5; MAX31855 tc(clPin, csPin, doPin); void setup() { Serial.begin(115200); Serial.print("Start max31855_demo6: "); Serial.println(MAX31855_VERSION); Serial.println(); tc.begin(); tc.read(); float t1 = tc.getTemperature(); Serial.print(" temp before:\t"); Serial.println(t1, 2); float tcf = tc.getSeebeckCoefficient(); Serial.print("SeebeckCoefficient before:\t"); Serial.println(tcf, 4); Serial.println("\nChange default K-type to J-type ThermoCouple"); tc.setSeebeckCoefficient(J_TC); tcf = tc.getSeebeckCoefficient(); Serial.print(" SeebeckCoefficient after:\t"); Serial.println(tcf, 4); tc.read(); float t2 = tc.getTemperature(); Serial.print(" temp after:\t"); Serial.println(t2, 2); Serial.print(" temp delta:\t"); Serial.println(abs(t1 - t2), 2); Serial.println("\ndone..."); } void loop() { }
[ "rob.tillaart@gmail.com" ]
rob.tillaart@gmail.com
51a2ce3af0b66c425e1a8e04e7686cc582e6c01b
160f91189b9627f0ddd9a95ff81a756313cb8d35
/PhyLayr.h
ecfbc79ca8ad167b2d2e7626b693914ce5902528
[]
no_license
shivinbhogal/A-PDU
71f9154371798270bab5836140b6f31cae81df96
268eb8b34c7d5dc2ff63d1fe6883c0eaa9bda9be
refs/heads/master
2016-09-05T18:08:50.739502
2015-05-04T19:04:40
2015-05-04T19:04:40
35,053,644
0
0
null
null
null
null
UTF-8
C++
false
false
967
h
// // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this program. If not, see http://www.gnu.org/licenses/. // #ifndef __LAB4_PHYLAYR_H_ #define __LAB4_PHYLAYR_H_ #include <omnetpp.h> /** * TODO - Generated class */ class PhyLayr : public cSimpleModule { private: cGate *g1i,*g1o,*g2i,*g2o; protected: virtual void initialize(); virtual void handleMessage(cMessage *msg); }; #endif
[ "shivinblues@gmail.com" ]
shivinblues@gmail.com
c08aaf55e0491dda4db0dde2c8ac84d02b683b4e
58790459d953a3e4b6722ed3ee939f82d9de8c3e
/my/PDF插件/sdkDC_v1_win/Adobe/Acrobat DC SDK/Version 1/PluginSupport/Samples/SnippetRunner/Sources/snippets/Shared/CreateAnnotOCSnip.cpp
8a2b3d4d7a06d76aff42329027ac14b0e4ea1c6e
[]
no_license
tisn05/VS
bb84deb993eb18d43d8edaf81afb753afa3d3188
da56d392a518ba21edcb1a367b4b4378d65506f0
refs/heads/master
2020-09-25T05:49:31.713773
2016-08-22T01:22:16
2016-08-22T01:22:16
66,229,337
0
1
null
null
null
null
UTF-8
C++
false
false
4,759
cpp
/********************************************************************* ADOBE SYSTEMS INCORPORATED Copyright (C) 2000-2006 Adobe Systems Incorporated All rights reserved. NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms of the Adobe license agreement accompanying it. If you have received this file from a source other than Adobe, then your use, modification, or distribution of it requires the prior written permission of Adobe. --------------------------------------------------------------------- CreateAnnotOCSnip.cpp *********************************************************************/ #include "SnippetRunner.h" #include "SnippetRunnerUtils.h" /** an example of how to create optional content applied to annotations. An optional content group is created using any link annotations found in the first page of the document. If there are no link annotations on the first page, an OCG with no associated content is produced. This snippet associates an optional content membership dictionary with the OCG, then applies the membership dictionary to the annotation. In this respect, the content is indirectly controlled by the OCG through the OCMD. Steps to creating OCGs associated with Links annotations: <ul> <li> Create the OCG </li> <li> Set the intent to "view" </li> <li> Set initial visibility (on) </li> <li> Add the OCG to the order array in the document's OCProperties dictionary </li> <li> Create an OC membership directory associated with the OCG </li> <li> Iterate through annotations, adding link annotations to the OCMD </li> </ul> You may experience some UI redraw issues when using this snippet, in this situation you can update the page view either manually or programmatically. @testfile blank.pdf @requires any pdf doc @see PDOCGCreate @see PDOCGSetIntent @see PDDocGetOCConfig @see PDOCGSetInitialState @see PDOCConfigGetOCGOrder @see PDOCGGetCosObj @see PDOCConfigSetOCGOrder @see PDOCMDCreate @see PDPageGetNumAnnots @see PDPageGetAnnot @see PDAnnotGetSubtype @see PDAnnotSetOCMD @see PDPageRelease @see ASTextDestroy */ void CreateAnnotOCSnip(void){ CDocument document; PDDoc pdDoc = (PDDoc)document; if (pdDoc == NULL){ return; } // create OCG named "SDK Link Annotation" ASText OCGtitle =ASTextFromScriptText("SDK Link Annotation",kASRomanScript); PDOCG ocg = PDOCGCreate(pdDoc, OCGtitle); // Set its intent to "view" to indicate it is to be used in a viewer application ASAtom intentArray[] = {ASAtomFromString ("View"), ASAtomNull}; PDOCGSetIntent (ocg, intentArray); // Indicate it should initially be turned on (visible) PDOCConfig docConfig = PDDocGetOCConfig (pdDoc); PDOCGSetInitialState (ocg, docConfig, true); // we want it to be in the layers UI in acrobat, so we need to indicate where the label should // be placed (by specifying the order in the document's OCProperties dictionary) // get existing OCG ui ordering for the document CosObj existingOCOrder; PDOCConfigGetOCGOrder(docConfig,&existingOCOrder); if (CosObjGetType(existingOCOrder) != CosArray){ AVAlertNote("Error in PDF document, OCProperties has invalid Order array"); return; } // if there are pre-existing OCGroups, just add the new one onto the end ASInt32 numberOfObjs = CosArrayLength(existingOCOrder); CosArrayInsert(existingOCOrder,numberOfObjs,PDOCGGetCosObj(ocg)); // save back to the OCProperties for the document PDOCConfigSetOCGOrder(docConfig,existingOCOrder); // now create the membership directory, this maintains the relationship between annotation and OCG // need to add the PDOCG to an array PDOCG PDOCGarray[2]; PDOCGarray[0] = ocg; PDOCGarray[1] = NULL; PDOCMD theMD = PDOCMDCreate(pdDoc, PDOCGarray, kOCMDVisibility_AllOn); // grab the front page of the document PDPage theFirstPage = PDDocAcquirePage(pdDoc, 0); ASInt32 numOfAnnots = PDPageGetNumAnnots(theFirstPage); for (ASInt32 t = 0; t < numOfAnnots;t++){ PDAnnot existingAnnot = PDPageGetAnnot(theFirstPage, t); if (PDAnnotGetSubtype(existingAnnot) == ASAtomFromString("Link")){ // we have a link annotation, add it to the membership dictionary PDAnnotSetOCMD(existingAnnot,theMD); } } PDPageRelease(theFirstPage); if (OCGtitle!= NULL){ ASTextDestroy(OCGtitle); } Console::displayString("OC Annot created"); } SNIPRUN_REGISTER(CreateAnnotOCSnip, "PD Layer:Optional Content:Create:LinkAnnot OCG","Creates\ an optional content group and associates it to an optional content menbership dictionary. The membership\ dictionary is applied to existing link annotations on the first page of the document. If there are no link annotations on\ the first page, the OCG is still created with no applicable content")
[ "tisn05@gmail.com" ]
tisn05@gmail.com
80fd71a42552892f77ee15f4108fff6c24d20609
5aa5c647fb683a3482bf403518a2a5c47cd48dbb
/Leetcode/Leetcode-1122.CPP
99be5a88759393f8b1a30a6df14ff739005b2cf1
[]
no_license
sanctum006/DSA
e3ec47597c6edc0e0f93f7ba466300b618ad2fcc
6a5f551dc8575869d3c6c0f6d87ba5cef0d009e4
refs/heads/main
2023-08-07T21:57:02.519223
2021-09-15T17:41:58
2021-09-15T17:41:58
386,374,673
0
0
null
null
null
null
UTF-8
C++
false
false
1,639
cpp
/* Given two arrays arr1 and arr2, the elements of arr2 are distinct, and all elements in arr2 are also in arr1. Sort the elements of arr1 such that the relative ordering of items in arr1 are the same as in arr2. Elements that don't appear in arr2 should be placed at the end of arr1 in ascending order. Example 1: Input: arr1 = [2,3,1,3,2,4,6,7,9,2,19], arr2 = [2,1,4,3,9,6] Output: [2,2,2,1,4,3,3,9,6,7,19] */ #include <bits/stdc++.h> using namespace std; // O(N^2) solution using inset sort like technique vector<int> relativeSortArray(vector<int> &arr1, vector<int> &arr2) { int index = 0; for (int i = 0; i < arr2.size(); ++i) { for (int j = index; j < arr1.size(); ++j) { if (arr2[i] == arr1[j]) // find element in arr2 { swap(arr1[j], arr1[index]); // put it at right place index++; } } } // sort rest elements sort(arr1.begin() + index, arr1.end()); return arr1; } // O(N) solution vector<int> relativeSortArray(vector<int> &arr1, vector<int> &arr2) { int maxEle = *max_element(arr1.begin(), arr1.end()); vector<int> count(maxEle + 1); for (auto it : arr1) count[it]++; vector<int> res; for (int i = 0; i < arr2.size(); i++) { while (count[arr2[i]] > 0) { res.push_back(arr2[i]); count[arr2[i]]--; } } for (int i = 0; i < count.size(); i++) while (count[i] > 0) { res.push_back(i); count[i]--; } return res; } int main() { // Not called return 0; }
[ "pushpendrayadav1057@gmail.com" ]
pushpendrayadav1057@gmail.com
8b5e44b1383f8e107db706acadae6a126be9b96e
4043d766cca5115c69bebb9847af2f905f78b46f
/cplusplus/learning/iostreamings/inpforchallenges/inp_loop.cpp
4602cef19e530e8ef5392767e1ccd54f212960f1
[ "Apache-2.0" ]
permissive
HypoChloremic/c
07bd98bb5ad03f83bccde4dc37b441dc7c2ca2e1
a027cda1f66c0bcae79c08bc3e90726a65a30b37
refs/heads/master
2021-11-07T02:08:56.659236
2021-11-01T22:23:30
2021-11-01T22:23:30
236,356,341
0
0
null
null
null
null
UTF-8
C++
false
false
359
cpp
#include <iostream> using namespace std; int main() { int i = 0; int sum = 0; /* Supposedly, this way, the loop will be continuing to accept input until the an EOF (End-of-File conidition). This can be done with `ctrl + D` */ while (cin >> i) { sum += i; } cout << sum << endl; return 0; }
[ "26204559+HypoChloremic@users.noreply.github.com" ]
26204559+HypoChloremic@users.noreply.github.com
5d97b12d3542b72af283e9197ea4812c53af7763
0f174c0938f269e8adb2b36e227867f534cfeed8
/SFRTestDemo/main.cpp
2a3c6fa149ef68820bfa5994191daccbb89d0ee6
[]
no_license
lnengbo/sfrTest
fccc3fab6c97c263523a7fac285d20fdc6147f0a
43b761940dd32bf84df1e0d3fa39dcd0ac0247a6
refs/heads/master
2023-05-09T07:50:03.204547
2021-06-08T02:31:54
2021-06-08T02:31:54
374,859,551
0
0
null
null
null
null
UTF-8
C++
false
false
36,944
cpp
#include "mainwindow.h" #include <QApplication> #include <iostream> #include <opencv2/opencv.hpp> #include <opencv2/features2d/features2d.hpp> #include <QDebug> #include <QTime> #include "qcustomplot.h" QCustomPlot *custplot; QCustomPlot *custplotesf; QCustomPlot *custplotlsf; cv::Mat src, gray_src; char *output_image =(char*) "Tomoshi Result"; //输出窗口 int num_corners = 1; //角点个数 const int max_corners = 50; //定义最大的角点个数 /*---------------------------------------------------------------------*/ #include "sfr.h" void ROImouseEvent(int event, int x, int y, int flag, void *params) { cv::Point *ptr = (cv::Point*)params; if (event == cv::EVENT_LBUTTONDOWN && ptr[0].x == -1 && ptr[0].y == -1) { ptr[0].x = x; ptr[0].y = y; } if (flag == cv::EVENT_FLAG_LBUTTON) { ptr[1].x = x; ptr[1].y = y; } if (event == cv::EVENT_LBUTTONUP && ptr[2].x == -1 && ptr[2].y == -1) { ptr[2].x = x; ptr[2].y = y; } } void ROISelection(cv::Mat &img,cv::Mat &roi) { cv::Point *Corners = new cv::Point[3]; Corners[0].x = Corners[0].y = -1; Corners[1].x = Corners[1].y = -1; Corners[2].x = Corners[2].y = -1; cv::namedWindow("ROI select(Press Esc to close window)",cv::WINDOW_NORMAL); cv::imshow("ROI select(Press Esc to close window)", img); bool downFlag = false, upFlag = false; while (cv::waitKey(1) != 27) { cv::setMouseCallback("ROI select(Press Esc to close window)", ROImouseEvent, Corners); if (Corners[0].x != -1 && Corners[0].y != -1) { downFlag = true; } if (Corners[2].x != -1 && Corners[2].y != -1) { upFlag = true; } if (downFlag && !upFlag && Corners[1].x != -1) { cv::Mat LocalImage = img.clone(); cv::rectangle(LocalImage, Corners[0], Corners[1], cv::Scalar(255, 255, 255), 2); cv::imshow("ROI select(Press Esc to close window)", LocalImage); } if (downFlag && upFlag) { cv::Rect ROIBox; ROIBox.width = abs(Corners[0].x - Corners[2].x); ROIBox.height = abs(Corners[0].y - Corners[2].y); if (ROIBox.width < 5 && ROIBox.height < 5) { std::cerr << "ROI size too small, please re-crop the ROI" << std::endl; } ROIBox.x = Corners[0].x < Corners[1].x ? Corners[0].x : Corners[1].x; ROIBox.y = Corners[0].y < Corners[1].y ? Corners[0].y : Corners[1].y; roi = img(ROIBox); downFlag = upFlag = false; Corners[0].x = Corners[0].y = -1; Corners[1].x = Corners[1].y = -1; Corners[2].x = Corners[2].y = -1; } } cv::destroyWindow("ROI select(Press Esc to close window)"); delete[] Corners; } void Tomoshi_demo(int, void*) { if (num_corners < 2) num_corners = 1; //避免角点太少 std::vector<cv::Point2f> corners; double qualityLevel = 0.1; //最大,最小特征值的乘法因子。定义可接受图像角点的最小质量因子。 double min_distance = 20.0; //两个角点之间的最小欧式距离 int block_size = 3; //领域窗口大小 bool Harris_use = false; //是否适用harris double k = 0.06; //经验系数(0.04-0.06) cv::Mat result_image = src.clone(); cv::goodFeaturesToTrack(gray_src, corners, num_corners, qualityLevel, min_distance, cv::Mat(), block_size, Harris_use, k); for (int i = 0; i < corners.size(); i++) circle(result_image, corners[i], 15, (0, 0, 255), 3, 8, 0); cv::imshow(output_image, result_image); } int thre = 40; void trackBar(int, void*); void trackBar(int, void*) { // std::vector<cv::KeyPoint> keypoints; // cv::Mat dst = gray_src.clone(); // cv::Ptr<cv::FastFeatureDetector> detector = cv::FastFeatureDetector::create(thre); // detector->detect(gray_src,keypoints); // drawKeypoints(dst, keypoints, dst, cv::Scalar::all(-1), cv::DrawMatchesFlags::DRAW_RICH_KEYPOINTS); // cv::imshow("output", dst); } void rectangle(cv::Mat img) { if(img.empty()) return; cv::Mat threasholdImg = img.clone(); cv::threshold(threasholdImg,threasholdImg,40,255,cv::THRESH_BINARY); cv::Mat kenel = cv::getStructuringElement(cv::MORPH_RECT,cv::Size(5,5)); cv::erode(threasholdImg,threasholdImg,kenel); //cv::GaussianBlur(img,img,cv::) //cv::Canny(img,img,100,200); cv::namedWindow("img2",cv::WINDOW_NORMAL); cv::imshow("img2",threasholdImg); std::vector<std::vector<cv::Point>> contours; std::vector<cv::Vec4i> hierarcy; cv::findContours(threasholdImg,contours,hierarcy,cv::RETR_CCOMP,cv::CHAIN_APPROX_NONE); std::vector<cv::RotatedRect> box(contours.size()); std::vector<cv::Rect> boundRect(contours.size()); cv::Point2f rect[4]; cv::Point2f rectMid[4]; int xMin = threasholdImg.cols; int xMax = 0; int yMin = threasholdImg.rows; int yMax = 0; cv::Mat leftRoi; cv::Mat rightRoi; cv::Mat topRoi; cv::Mat bottomRoi; int radis = 80; std::vector<cv::Point> min_rectangle; std::vector<std::vector<cv::Point> > hull(contours.size()); return; for(int i= 0;i < contours.size() ;i++) { box[i] = cv::minAreaRect(contours[i]); boundRect[i] = cv::boundingRect(contours[i]); if(boundRect[i].x <= 0 && boundRect[i].y <= 0&& boundRect[i].x >= img.rows && boundRect[i].y >= img.cols) continue; double area = cv::contourArea(contours[i]); if(area <= 1000) continue; qDebug() << "contours" << contours.size(); float ratio = (float)box[i].size.width /(float) box[i].size.height ; if( ratio < 0.85 && ratio > 1.15) continue; box[i].points(rect); qDebug() << "width" << "height" << box[i].size.width << box[i].size.height; qDebug() << "contoursArea" << area; //cv::rectangle(img,cv::Point(boundRect[i].x, boundRect[i].y), cv::Point(boundRect[i].x + boundRect[i].width, boundRect[i].y + boundRect[i].height), cv::Scalar(0, 255, 0), 2, 8); for(int j=0; j<4; j++) { //qDebug() << rect[j].x << rect[j].y; //rectMid[j] = (rect[j] + rect[(j+1)%4]) / 2; min_rectangle.push_back(rectMid[j]); rectMid[j].x = rectMid[j].x - radis; rectMid[j].y = rectMid[j].y - radis; cv::Mat src = img.clone(); //cv::rectangle(img,cv::Rect(rectMid[j].x,rectMid[j].y,80,80),cv::Scalar(0,255,255),4); if(xMin > rectMid[j].x) { xMin = rectMid[j].x; leftRoi = src(cv::Rect(rectMid[j].x,rectMid[j].y,radis * 2,radis * 2)); cv::rectangle(img,cv::Rect(rectMid[j].x,rectMid[j].y,radis * 2,radis * 2),cv::Scalar(255,255,255)); } else if(xMax < rectMid[j].x) { xMax = rectMid[j].x; rightRoi = src(cv::Rect(rectMid[j].x,rectMid[j].y,radis * 2,radis * 2)); cv::rectangle(img,cv::Rect(rectMid[j].x,rectMid[j].y,radis * 2,radis * 2),cv::Scalar(255,255,255)); }else if(yMin > rectMid[j].y) { yMin = rectMid[j].y; topRoi = src(cv::Rect(rectMid[j].x,rectMid[j].y,radis * 2,radis * 2)); cv::rectangle(img,cv::Rect(rectMid[j].x,rectMid[j].y,radis * 2,radis * 2),cv::Scalar(255,255,255)); }else if(yMax < rectMid[j].y) { yMax = rectMid[j].y; bottomRoi = src(cv::Rect(rectMid[j].x,rectMid[j].y,radis * 2,radis * 2)); cv::rectangle(img,cv::Rect(rectMid[j].x,rectMid[j].y,radis * 2,radis * 2),cv::Scalar(255,255,255)); } //SFRCalculation(roi,1); //cv::line(img, rect[j], rect[(j+1)%4], cv::Scalar(0, 0, 255), 8, 8); } double recArea = cv::contourArea(min_rectangle); qDebug() << recArea; //SFRCalculation(leftRoi,1); if(!rightRoi.empty()) { cv::imshow("right",rightRoi); cv::Mat c = rightRoi.clone(); cv::imshow("c",c); //qDebug() << "right" <<SFRCalculation(rightRoi,1); //SFRCalculation(rightRoi,1); } if(!leftRoi.empty()) { cv::flip(leftRoi,leftRoi,-1); cv::imshow("left",leftRoi); //qDebug() << "left"<<SFRCalculation(leftRoi,1); } if(!topRoi.empty()) { transpose(topRoi, topRoi); flip(topRoi, topRoi, 0); cv::imshow("top",topRoi); //qDebug() << "top" << SFRCalculation(topRoi,1); } if(!bottomRoi.empty()) { cv::flip(bottomRoi,bottomRoi,0); cv::imshow("bottom",bottomRoi); } } cv::namedWindow("img",cv::WINDOW_NORMAL); cv::imshow("img",img); } void findPoint(cv::Point &p, int flag, cv::Mat m, int *count)//点,flag,图, { bool ok = true; int rows = m.rows / 2; int cols = m.cols / 2; switch (flag) { case 0: { while (ok && cols > 0) { if (m.at<uchar>(rows, cols) == 0)//255表示白点 { p.x = rows; p.y = cols; //cout << "x=" << rows << ",y=" << cols << endl; ok = false; } cols--; } break; } case 1: { while (ok && cols < m.cols) { if (m.at<uchar>(rows, cols) == 0) { p.x = rows; p.y = cols; //cout << "x=" << rows << ",y=" << cols << endl; ok = false; } cols++; } break; } case 2: { while (ok && rows > 0 ) { if (m.at<uchar>(rows, cols) == 0) { p.x = rows; p.y = cols; ok = false; } rows--; } break; } case 3: { while (ok && rows < m.rows) { if (m.at<uchar>(rows, cols) == 0) { p.x = rows; p.y = cols; //cout << "x=" << rows << ",y=" << cols << endl; ok = false; } rows++; } break; } default: break; } } void autolinkRect() { // cv::Mat m = imageSource.clone(); // int withd, height, Xoffset, Yoffset; // int rows = m.rows; // int cols = m.cols; // int R = sqrt(rows*rows + cols * cols) / 2; // double r_R = (rows / 2.000) / R; // double c_R = (cols / 2.000) / R; // cv::Point p = cv::Point(0, 0); // LinkCvPoint linkP; // withd = AreaW; // height = AreaH; // //0视场 // p.x = cols / 2; // p.y = rows / 2; // Xoffset = p.y - height / 2; // Yoffset = p.x - withd / 2; // linkP.p = p; // linkP.withd = withd; // linkP.height = height; // linkP.Xoffset = Xoffset; // linkP.Yoffset = Yoffset; // setLinkCvRect(0, linkP); // //0.3视场 // //左 // p.x = cols / 2 - round(R*0.3); // p.y = rows / 2; // Xoffset = p.y - height / 2; // Yoffset = p.x - withd / 2; // linkP.p = p; // linkP.withd = withd; // linkP.height = height; // linkP.Xoffset = Xoffset; // linkP.Yoffset = Yoffset; // setLinkCvRect(1, linkP); // //右 // p.x = cols / 2 + round(R*0.3); // p.y = rows / 2; // Xoffset = p.y - height / 2; // Yoffset = p.x - withd / 2; // linkP.p = p; // linkP.withd = withd; // linkP.height = height; // linkP.Xoffset = Xoffset; // linkP.Yoffset = Yoffset; // setLinkCvRect(2, linkP); // //上 // p.x = cols / 2; // p.y = rows / 2 - round(R*0.3); // Xoffset = p.y - height / 2; // Yoffset = p.x - withd / 2; // linkP.p = p; // linkP.withd = withd; // linkP.height = height; // linkP.Xoffset = Xoffset; // linkP.Yoffset = Yoffset; // setLinkCvRect(3, linkP); // //下 // p.x = cols / 2; // p.y = rows / 2 + round(R*0.3); // Xoffset = p.y - height / 2; // Yoffset = p.x - withd / 2; // linkP.p = p; // linkP.withd = withd; // linkP.height = height; // linkP.Xoffset = Xoffset; // linkP.Yoffset = Yoffset; // setLinkCvRect(4, linkP); // //0.7视场 // //左上 // p.x = cols / 2 - round(R*0.7*c_R); // p.y = rows / 2 - round(R*0.7*r_R); // Xoffset = p.y - height / 2; // Yoffset = p.x - withd / 2; // linkP.p = p; // linkP.withd = withd; // linkP.height = height; // linkP.Xoffset = Xoffset; // linkP.Yoffset = Yoffset; // setLinkCvRect(5, linkP); // p.x = cols / 2 + round(R*0.7*c_R); // p.y = rows / 2 - round(R*0.7*r_R); // Xoffset = p.y - height / 2; // Yoffset = p.x - withd / 2; // linkP.p = p; // linkP.withd = withd; // linkP.height = height; // linkP.Xoffset = Xoffset; // linkP.Yoffset = Yoffset; // setLinkCvRect(6, linkP); // //左下 // p.x = cols / 2 - round(R*0.7*c_R); // p.y = rows / 2 + round(R*0.7*r_R); // Xoffset = p.y - height / 2; // Yoffset = p.x - withd / 2; // linkP.p = p; // linkP.withd = withd; // linkP.height = height; // linkP.Xoffset = Xoffset; // linkP.Yoffset = Yoffset; // setLinkCvRect(7, linkP); // p.x = cols / 2 + round(R*0.7*c_R); // p.y = rows / 2 + round(R*0.7*r_R); // Xoffset = p.y - height / 2; // Yoffset = p.x - withd / 2; // linkP.p = p; // linkP.withd = withd; // linkP.height = height; // linkP.Xoffset = Xoffset; // linkP.Yoffset = Yoffset; // setLinkCvRect(8, linkP); } cv::Mat src_img; cv::Mat src_gray; int thresh = 0; int max_thresh = 255; cv::RNG rng(12345); void RGBToGray(cv::Mat &src, cv::Mat &src_gray); /** * @brief sfrCalculation * @param src 输入图片 * @param hSfrVec 横向 SFR值 * @param hEsfVec 横向 ESF值 * @param hLsfVec 横向 LSF值 * @param vSfrVec 纵向 SFR值 * @param vEsfVec 纵向 ESF值 * @param vLsfVec 纵向 LSF值 * @param rate Gama值(越大对图像会越淡) * @param rectangleSize (横向与纵向正方矩形长宽大小,提高大小会提高SFR计算准度,一般要大于40像素,且是偶数) * @param showFlag 窗口显示 */ void sfrCalculation(cv::Mat src,std::vector<double>&hSfrVec,std::vector<double>&hEsfVec,std::vector<double>&hLsfVec,std::vector<double>&vSfrVec,std::vector<double>&vEsfVec,std::vector<double>&vLsfVec,double rate,int rectangleSize,bool showFlag) { if(src.empty()) return; if(showFlag) { namedWindow("source", cv::WINDOW_AUTOSIZE); imshow("source", src); } cv::Mat threshold_output; std::vector<std::vector<cv::Point> > contours; std::vector<cv::Vec4i> hierarchy; cv::Mat src_gray; RGBToGray(src, src_gray); cv::Mat out_gray = src_gray.clone(); /// 使用Threshold检测边缘 cv::threshold(src_gray, threshold_output, 0, 255, cv::THRESH_BINARY_INV|cv::THRESH_OTSU); cv::Mat ker = cv::getStructuringElement(cv::MORPH_RECT,cv::Size(3,3)); cv::erode(threshold_output,threshold_output,ker); if(showFlag) { cv::namedWindow("ThresholdOutput",cv::WINDOW_NORMAL); cv::imshow("ThresholdOutput",threshold_output); } cv::findContours(threshold_output, contours, hierarchy, cv::RETR_TREE, cv::CHAIN_APPROX_SIMPLE, cv::Point(0, 0)); std::vector<std::vector<cv::Point>> contours_poly(contours.size()); std::vector<cv::Rect> boundRect(contours.size()); bool flag = false; bool contoursSizeFlag = false; int count = 0; int currentPlotNum = 0; cv::Point p; cv::Point p2; cv::Mat temp = threshold_output.clone(); cv::Mat drawing = temp.clone(); hEsfVec.clear(); hSfrVec.clear(); hLsfVec.clear(); vEsfVec.clear(); vSfrVec.clear(); vLsfVec.clear(); if(contours.size() != 0) { if(contours.size() == 1) contoursSizeFlag = true; for (int i = 0; i < contours.size() ; i++) { qDebug()<<"contours.size()"<<contours.size(); if(flag) continue; cv::Scalar color = cv::Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255)); cv::approxPolyDP(cv::Mat(contours[i]), contours_poly[i], 3, true); double minArea = cv::contourArea(contours_poly[i]); if(minArea <3000 || minArea >= 800000 ) continue; boundRect[i] = boundingRect(cv::Mat(contours_poly[i])); if(showFlag) qDebug() << "boundRect"<<boundRect[i].x << temp.cols /3 << boundRect[i].y << temp.rows; if(boundRect[i].x > temp.cols / 3 && !contoursSizeFlag) continue; if((float)boundRect[i].width /(float) boundRect[i].height >2 || (float)boundRect[i].width / (float)boundRect[i].height <= 0.5) continue; if(showFlag) { qDebug() << "minArea" << minArea << (float)boundRect[i].width / (float)boundRect[i].height;//645152 cv::imshow(QString("temp%1").arg(currentPlotNum).toLocal8Bit().data(),temp(boundRect[i])); } findPoint(p,1,temp(boundRect[i]),&count); findPoint(p2,2,temp(boundRect[i]),&count); cv::Rect tempRect = cv::Rect(boundRect[i].x + p.y - rectangleSize/2,boundRect[i].y + p.x - rectangleSize/2,rectangleSize,rectangleSize); cv::Rect tempRect2 = cv::Rect(boundRect[i].x + p2.y - rectangleSize/2,boundRect[i].y + p2.x - rectangleSize/2,rectangleSize,rectangleSize); if(showFlag) qDebug() << "tempRect" << tempRect.x <<threshold_output.cols ; if( tempRect.y > 0 && tempRect.x > 0 && tempRect.x < threshold_output.cols && tempRect.y < threshold_output.rows && tempRect.x + tempRect.width < threshold_output.cols && tempRect.y + tempRect.height < threshold_output.rows) { flag = true; cv::Mat tm = out_gray(tempRect); cv::rectangle(drawing, tempRect, color, 2, 8, 0); if(showFlag) cv::imshow(QString("tm%1").arg(currentPlotNum).toLocal8Bit().data(),tm); SFRCalculation(tm, rate,hSfrVec,hEsfVec,hLsfVec); if(showFlag) { QColor qc = QColor::fromHsl(rand()%360,rand()%256,rand()%200); custplotesf->addGraph(); custplotesf->graph(currentPlotNum)->setPen(QPen(2)); custplotesf->graph(currentPlotNum)->setName(QString::number(hEsfVec[0])); qDebug()<<"custplotesf->graph = "<<QString::number(hEsfVec[0]); for(int i = 0;i < hEsfVec.size() ;i++) { if(custplotesf) { custplotesf->xAxis->rescale(true);//调整X轴的范围,使之能显示出所有的曲线的X值 custplotesf->yAxis->rescale(true); custplotesf->graph(currentPlotNum)->addData((double)i,hEsfVec[i]); } } custplotesf->replot(); custplot->addGraph(); custplot->graph(currentPlotNum)->setPen(QPen(2)); custplot->graph(currentPlotNum)->setName(QString::number(hSfrVec[0])); for(int i =0;i < hSfrVec.size();i++) { if(custplot) { custplot->xAxis->rescale(true);//调整X轴的范围,使之能显示出所有的曲线的X值 custplot->yAxis->rescale(true); custplot->graph(currentPlotNum)->addData((double)i/(double)hSfrVec.size(),hSfrVec[i]); } } custplot->replot(); custplotlsf->addGraph(); custplotlsf->graph(currentPlotNum)->setPen(QPen(2)); custplotlsf->graph(currentPlotNum)->setName(QString::number(hLsfVec[0])); for(int i = 0;i < hLsfVec.size() ;i++) { if(custplotlsf) { custplotlsf->xAxis->rescale(true);//调整X轴的范围,使之能显示出所有的曲线的X值 custplotlsf->yAxis->rescale(true); custplotlsf->graph(currentPlotNum)->addData((double)i,hLsfVec[i]); } } custplotlsf->replot(); currentPlotNum++; } } if( tempRect2.y > 0 && tempRect2.x > 0 && tempRect2.x < threshold_output.cols && tempRect2.y < threshold_output.rows && tempRect2.x + tempRect2.width < threshold_output.cols && tempRect2.y + tempRect2.height < threshold_output.rows) { cv::Mat tm = out_gray(tempRect2); cv::rectangle(drawing, tempRect2, color, 2, 8, 0); transpose(tm, tm);// 翻转模式,flipCode == 0垂直翻转(沿X轴翻转),flipCode>0水平翻转(沿Y轴翻转),flipCode<0水平垂直翻转(先沿X轴翻转,再沿Y轴翻转,等价于旋转180°) flip(tm, tm, 1); SFRCalculation(tm, rate,vSfrVec,vEsfVec,vLsfVec); if(showFlag) { custplot->addGraph(); custplot->graph(currentPlotNum)->setPen(QPen(1)); //custplot->graph(currentPlotNum)->setName(QString::number(vSfrVec[0])); custplot->graph(currentPlotNum)->setName(QString::number(66666)); for(int i =0;i < vSfrVec.size();i++) { if(custplot) { custplot->xAxis->rescale(true);//调整X轴的范围,使之能显示出所有的曲线的X值 custplot->yAxis->rescale(true); custplot->graph(currentPlotNum)->addData((double)i/(double)vSfrVec.size(),vSfrVec[i]); } } custplot->replot(); custplotesf->addGraph(); custplotesf->graph(currentPlotNum)->setPen(QPen(1)); //custplotesf->graph(currentPlotNum)->setName(QString::number(vEsfVec[0])); custplotesf->graph(currentPlotNum)->setName(QString::number(77777)); for(int i = 0;i < vEsfVec.size() ;i++) { if(custplotesf) { custplotesf->xAxis->rescale(true);//调整X轴的范围,使之能显示出所有的曲线的X值 custplotesf->yAxis->rescale(true); custplotesf->graph(currentPlotNum)->addData((double)i,vEsfVec[i]); } } custplotesf->replot(); custplotlsf->addGraph(); custplotlsf->graph(currentPlotNum)->setPen(QPen(1)); //custplotlsf->graph(currentPlotNum)->setName(QString::number(vLsfVec[0])); custplotlsf->graph(currentPlotNum)->setName(QString::number(88888)); for(int i = 0;i < vLsfVec.size() ;i++) { if(custplotlsf) { custplotlsf->xAxis->rescale(true);//调整X轴的范围,使之能显示出所有的曲线的X值 custplotlsf->yAxis->rescale(true); custplotlsf->graph(currentPlotNum)->addData((double)i,vLsfVec[i]); } } custplotlsf->replot(); currentPlotNum++; } if(showFlag) cv::imshow("tm",tm); } //minEnclosingCircle(contours_poly[i], center[i], radius[i]); } } if(showFlag) { cv::imshow("drawing",drawing); cv::waitKey(0); } } //#define ok #ifdef ok /// 函数声明 void thresh_callback(int, void*); /** @thresh_callback 函数 */ void thresh_callback(int val, void*) { return; cv::Mat threshold_output; std::vector<std::vector<cv::Point> > contours; std::vector<cv::Vec4i> hierarchy; cv::Mat out_gray = src_gray.clone(); /// 使用Threshold检测边缘 cv::threshold(src_gray, threshold_output, thresh, 255, cv::THRESH_BINARY_INV|cv::THRESH_OTSU); cv::Mat threshold_temp = threshold_output.clone(); cv::Mat ker = cv::getStructuringElement(cv::MORPH_RECT,cv::Size(3,3)); cv::erode(threshold_output,threshold_output,ker); /// 显示到窗口中 namedWindow("threshold_output", cv::WINDOW_NORMAL); imshow("threshold_output", threshold_output); /// 找到轮廓 cv::findContours(threshold_output, contours, hierarchy, cv::RETR_TREE, cv::CHAIN_APPROX_SIMPLE, cv::Point(0, 0)); /// 计算矩 std::vector<cv::Moments> mu(contours.size()); for (int i = 0; i < contours.size(); i++) { mu[i] = moments(contours[i], false); } /// 计算中心矩: std::vector<cv::Point2f> mc(contours.size()); for (int i = 0; i < contours.size(); i++) { mc[i] = cv::Point2f(mu[i].m10 / mu[i].m00, mu[i].m01 / mu[i].m00); } cv::Point p; cv::Point p2; int count = 0; /// 绘制轮廓 cv::Mat drawing = cv::Mat::zeros(src_gray.size(), CV_8UC3); for (int i = 0; i< contours.size(); i++) { cv::Scalar color = cv::Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255)); drawContours(drawing, contours, i, color, 2, 8, hierarchy, 0, cv::Point()); circle(drawing, mc[i], 4, color, -1, 8, 0); } /// 显示到窗口中 cv::namedWindow("Contours", cv::WINDOW_NORMAL); cv::imshow("Contours", drawing); /// 通过m00计算轮廓面积并且和OpenCV函数比较 printf("\t Info: Area and Contour Length \n"); for (int i = 0; i< contours.size(); i++) { //printf(" * Contour[%d] - Area (M_00) = %.2f - Area OpenCV: %.2f - Length: %.2f \n", i, mu[i].m00, contourArea(contours[i]), arcLength(contours[i], true)); cv::Scalar color = cv::Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255)); drawContours(drawing, contours, i, color, 2, 8, hierarchy, 0, cv::Point()); circle(drawing, mc[i], 4, color, -1, 8, 0); } /// 多边形逼近轮廓 + 获取矩形和圆形边界框 std::vector<std::vector<cv::Point>> contours_poly(contours.size()); std::vector<cv::Rect> boundRect(contours.size()); std::vector<cv::Point2f>center(contours.size()); std::vector<float>radius(contours.size()); cv::Mat temp = threshold_temp.clone(); std::vector<double> res; std::vector<double> esfVec; std::vector<double> lsfVec; int currentPlotNum = 0; qDebug() << ">>>>>>>>>"<<contours.size(); bool flag = false; if(contours.size() != 0) { for (int i = 0; i < contours.size() ; i++) { if(flag) continue; cv::Scalar color = cv::Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255)); approxPolyDP(cv::Mat(contours[i]), contours_poly[i], 3, true); double minArea = cv::contourArea(contours_poly[i]); if(minArea <3000 || minArea >= 800000 ) continue; res.clear(); esfVec.clear(); lsfVec.clear(); boundRect[i] = boundingRect(cv::Mat(contours_poly[i])); //if(showFlag) qDebug() << "boundRect"<<boundRect[i].x << temp.cols /3 << boundRect[i].y << temp.rows; if(boundRect[i].x > temp.cols / 3) continue; if((float)boundRect[i].width /(float) boundRect[i].height >2 || (float)boundRect[i].width / (float)boundRect[i].height <= 0.5) continue; //if(showFlag) qDebug() << "minArea" << minArea << (float)boundRect[i].width / (float)boundRect[i].height;//645152 cv::imshow(QString("temp%1").arg(currentPlotNum).toLocal8Bit().data(),temp(boundRect[i])); findPoint(p,1,temp(boundRect[i]),&count); findPoint(p2,2,temp(boundRect[i]),&count); cv::Rect tempRect = cv::Rect(boundRect[i].x + p.y - 20,boundRect[i].y + p.x - 20,40,40); cv::Rect tempRect2 = cv::Rect(boundRect[i].x + p2.y - 20,boundRect[i].y + p2.x - 20,40,40); //if(showFlag) qDebug() << "tempRect" << tempRect.x <<threshold_output.cols ; if( tempRect.y > 0 && tempRect.x > 0 && tempRect.x < threshold_output.cols && tempRect.y < threshold_output.rows && tempRect.x + tempRect.width < threshold_output.cols && tempRect.y + tempRect.height < threshold_output.rows) { flag = true; cv::Mat tm = out_gray(tempRect); cv::rectangle(drawing, tempRect, color, 2, 8, 0); // if(showFlag) cv::imshow(QString("tm%1").arg(currentPlotNum).toLocal8Bit().data(),tm); SFRCalculation(tm, 1,res,esfVec,lsfVec); QColor qc = QColor::fromHsl(rand()%360,rand()%256,rand()%200); custplotesf->addGraph(); custplotesf->graph(currentPlotNum)->setPen(QPen(qc)); custplotesf->graph(currentPlotNum)->setName(QString::number(esfVec[0])); for(int i = 0;i < esfVec.size() ;i++) { if(custplotesf) { custplotesf->xAxis->rescale(true);//调整X轴的范围,使之能显示出所有的曲线的X值 custplotesf->yAxis->rescale(true); custplotesf->graph(currentPlotNum)->addData((double)i,esfVec[i]); } } custplotesf->replot(); custplot->addGraph(); custplot->graph(currentPlotNum)->setPen(QPen(qc)); custplot->graph(currentPlotNum)->setName(QString::number(res[0])); for(int i =0;i < res.size();i++) { if(custplot) { custplot->xAxis->rescale(true);//调整X轴的范围,使之能显示出所有的曲线的X值 custplot->yAxis->rescale(true); custplot->graph(currentPlotNum)->addData((double)i/(double)res.size(),res[i]); } } custplotlsf->addGraph(); custplotlsf->graph(currentPlotNum)->setPen(QPen(qc)); custplotlsf->graph(currentPlotNum)->setName(QString::number(lsfVec[0])); for(int i = 0;i < lsfVec.size() ;i++) { if(custplotlsf) { custplotlsf->xAxis->rescale(true);//调整X轴的范围,使之能显示出所有的曲线的X值 custplotlsf->yAxis->rescale(true); custplotlsf->graph(0)->addData((double)i,lsfVec[i]); } } custplotlsf->replot(); currentPlotNum++; } if( tempRect2.y > 0 && tempRect2.x > 0 && tempRect2.x < threshold_output.cols && tempRect2.y < threshold_output.rows && tempRect2.x + tempRect2.width < threshold_output.cols && tempRect2.y + tempRect2.height < threshold_output.rows) { cv::Mat tm = out_gray(tempRect2); cv::rectangle(drawing, tempRect2, color, 2, 8, 0); transpose(tm, tm);// 翻转模式,flipCode == 0垂直翻转(沿X轴翻转),flipCode>0水平翻转(沿Y轴翻转),flipCode<0水平垂直翻转(先沿X轴翻转,再沿Y轴翻转,等价于旋转180°) flip(tm, tm, 1); //cv::imshow("tm2" + std::to_string(i),tm); //std::cout <<">>>>>>>>>>>>y "<< i <<SFRCalculation(tm, 1) << std::endl; } minEnclosingCircle(contours_poly[i], center[i], radius[i]); } } /// 画多边形轮廓 + 包围的矩形框 + 圆形框 for (int i = 0; i< contours.size(); i++) { cv::Scalar color = cv::Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255)); //drawContours(drawing, contours_poly, i, color, 1, 8, std::vector<cv::Vec4i>(), 0, cv::Point()); cv::rectangle(drawing, boundRect[i].tl(), boundRect[i].br(), color, 2, 8, 0); //circle(drawing, center[i], (int)radius[i], color, 2, 8, 0); } /// 显示在一个窗口 cv::namedWindow("Contours", cv::WINDOW_NORMAL); cv::imshow("Contours", drawing); } #endif void initCustomPlot() { custplot = new QCustomPlot(); custplot->show(); custplot->resize(300,300); custplot->xAxis->setAutoTickStep(true); custplot->xAxis->setTickStep(5); custplot->yAxis->setAutoTickStep(true); custplot->axisRect()->setupFullAxesBox(); custplot->xAxis->axisRect()->insetLayout()->setInsetAlignment(0, Qt::AlignTop | Qt::AlignLeft);//设置图例位置左上角 custplot->legend->setVisible(true);//图例显示与否 custplot->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables); custplotesf = new QCustomPlot(); custplotesf->show(); custplotesf->resize(300,300); custplotesf->xAxis->setAutoTickStep(true); custplotesf->xAxis->setTickStep(5); custplotesf->yAxis->setAutoTickStep(true); custplotesf->axisRect()->setupFullAxesBox(); custplotesf->xAxis->axisRect()->insetLayout()->setInsetAlignment(0, Qt::AlignTop | Qt::AlignLeft);//设置图例位置左上角 custplotesf->legend->setVisible(true);//图例显示与否 custplotesf->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables); custplotlsf = new QCustomPlot(); custplotlsf->show(); custplotlsf->resize(300,300); custplotlsf->addGraph(); custplotlsf->graph(0)->setPen(QPen(Qt::red)); custplotlsf->graph(0)->setName("MTF"); custplotlsf->xAxis->setAutoTickStep(true); custplotlsf->xAxis->setTickStep(5); custplotlsf->yAxis->setAutoTickStep(true); custplotlsf->axisRect()->setupFullAxesBox(); custplotlsf->xAxis->axisRect()->insetLayout()->setInsetAlignment(0, Qt::AlignTop | Qt::AlignLeft);//设置图例位置左上角 custplotlsf->legend->setVisible(true);//图例显示与否 custplotlsf->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables); } void RGBToGray(cv::Mat &src, cv::Mat &des) { //Gray = (R*30 + G*59 +B*11 +50)/100; des.create(src.size(), CV_8UC1); for (int r = 0; r < src.rows; r++) { for (int c = 0; c < src.cols; c++) { cv::Vec3b &m = src.at<cv::Vec3b>(r, c); int gray = (m[2] * 0 + m[1] * 100 + m[0] * 0 + 50) / 100; des.at<uchar>(r, c) = gray; } } } /** * @brief main * @param argc * @param argv * @return */ int main(int argc, char *argv[]) { QApplication a(argc,argv); qDebug() << "Main"; initCustomPlot(); /// 载入原图像, 返回3通道图像 src_img = cv::imread("D:/QTcode/SFRTest/SFR/SFRimage/r3.jpg", 1); if(src_img.empty()) qDebug() << "Image is Empty!"; std::vector<double> sfrVec; std::vector<double> esfVec; std::vector<double> lsfVec; std::vector<double> vsfrVec; std::vector<double> vesfVec; std::vector<double> vlsfVec; sfrCalculation(src_img,sfrVec,esfVec,lsfVec,vsfrVec,vesfVec,vlsfVec,1,40,true); cv::waitKey(0); return -1; }
[ "708951281@qq.com" ]
708951281@qq.com
e54caa55d415a91652fe9fdd13e5b32aacf6973e
9030ce2789a58888904d0c50c21591632eddffd7
/SDK/ARKSurvivalEvolved_WaterPipe_Metal_Intake_functions.cpp
ccb0e260d5c10cc5c84263af227300332e15a459
[ "MIT" ]
permissive
2bite/ARK-SDK
8ce93f504b2e3bd4f8e7ced184980b13f127b7bf
ce1f4906ccf82ed38518558c0163c4f92f5f7b14
refs/heads/master
2022-09-19T06:28:20.076298
2022-09-03T17:21:00
2022-09-03T17:21:00
232,411,353
14
5
null
null
null
null
UTF-8
C++
false
false
1,524
cpp
// ARKSurvivalEvolved (332.8) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "ARKSurvivalEvolved_WaterPipe_Metal_Intake_parameters.hpp" namespace sdk { //--------------------------------------------------------------------------- //Functions //--------------------------------------------------------------------------- // Function WaterPipe_Metal_Intake.WaterPipe_Metal_Intake_C.UserConstructionScript // () void AWaterPipe_Metal_Intake_C::UserConstructionScript() { static auto fn = UObject::FindObject<UFunction>("Function WaterPipe_Metal_Intake.WaterPipe_Metal_Intake_C.UserConstructionScript"); AWaterPipe_Metal_Intake_C_UserConstructionScript_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function WaterPipe_Metal_Intake.WaterPipe_Metal_Intake_C.ExecuteUbergraph_WaterPipe_Metal_Intake // () // Parameters: // int EntryPoint (Parm, ZeroConstructor, IsPlainOldData) void AWaterPipe_Metal_Intake_C::ExecuteUbergraph_WaterPipe_Metal_Intake(int EntryPoint) { static auto fn = UObject::FindObject<UFunction>("Function WaterPipe_Metal_Intake.WaterPipe_Metal_Intake_C.ExecuteUbergraph_WaterPipe_Metal_Intake"); AWaterPipe_Metal_Intake_C_ExecuteUbergraph_WaterPipe_Metal_Intake_Params params; params.EntryPoint = EntryPoint; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "sergey.2bite@gmail.com" ]
sergey.2bite@gmail.com
8b75691d251f3d9c3cc49694cb2bcceb56b4d1c2
be7f2ab05d5b4a7abb15198807ee8eefc10bacc1
/ValenceViewer.cc
0d6c568bf8e63a02237ed959608fa9be32da1571
[]
no_license
ProblemsCracker/exercise1
c171f49caec497030778324646b15a18127c8938
c96223a988ff04f7e00bae1a2566945a9d288847
refs/heads/master
2016-09-06T09:33:34.108978
2014-04-10T17:14:57
2014-04-10T17:14:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,699
cc
//============================================================================= // // Code framework for the lecture // // "Surface Representation and Geometric Modeling" // // Mark Pauly, Mario Botsch, Balint Miklos, and Hao Li // // Copyright (C) 2007 by Applied Geometry Group and // Computer Graphics Laboratory, ETH Zurich // //----------------------------------------------------------------------------- // // License // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, // Boston, MA 02110-1301, USA. // //============================================================================= //============================================================================= // // CLASS ValenceViewer - IMPLEMENTATION // //============================================================================= //== INCLUDES ================================================================= #include "ValenceViewer.hh" #include <vector> #include <float.h> #include <iostream> using namespace std; //== IMPLEMENTATION ========================================================== ValenceViewer:: ValenceViewer(const char* _title, int _width, int _height) : MeshViewer(_title, _width, _height) { mesh_.request_vertex_colors(); add_draw_mode("Vertex Valences"); } //----------------------------------------------------------------------------- ValenceViewer:: ~ValenceViewer() { } //----------------------------------------------------------------------------- bool ValenceViewer:: open_mesh(const char* _filename) { // load mesh if (MeshViewer::open_mesh(_filename)) { // compute vertex valence and color coding calc_valences(); color_coding(); glutPostRedisplay(); return true; } return false; } //----------------------------------------------------------------------------- void ValenceViewer:: calc_valences() { // EXERCISE 1.2 ///////////////////////////////////////////////////////////// // Compute valence of every vertex of "mesh_" and store them in each vertex // using for example custom attributes via dynamic customization // (hint: use the Mesh::VertexIter iterator) // Implement something here OpenMesh::VPropHandleT<int> ValenceNum; mesh_.add_property(ValenceNum,"Valence"); Mesh::VertexIter v_it, v_end(mesh_.vertices_end()); Mesh::VertexVertexIter vv_it; for (v_it=mesh_.vertices_begin(); v_it!=v_end; ++v_it) { for (vv_it=mesh_.vv_iter(v_it);vv_it;++vv_it) { mesh_.property(ValenceNum,v_it)+=1; } //cout<<mesh_.property(Valence,v_it)<<endl; } ///////////////////////////////////////////////////////////////////////////// } //----------------------------------------------------------------------------- void ValenceViewer:: color_coding() { // EXERCISE 1.3 ///////////////////////////////////////////////////////////// // Implement a color visualization of your choice that shows the valence of // veach ertex of "mesh_". // (hint: use Mesh::Color color type) // Implement something here Mesh::Color Yellow=Mesh::Color(255,255,0); Mesh::Color Red=Mesh::Color(255,0,0); Mesh::Color LightBlue=Mesh::Color(152,245,255); Mesh::Color Green= Mesh::Color(0,255,0); Mesh::Color Blue=Mesh::Color(0,0,255); Mesh::VertexIter v_it, v_end(mesh_.vertices_end()); int Valence = 0; OpenMesh::VPropHandleT<int> vPH; for (v_it=mesh_.vertices_begin();v_it!=v_end;++v_it){ mesh_.get_property_handle(vPH,"Valence"); Valence=mesh_.property(vPH,v_it.handle()); if (Valence == 4) mesh_.set_color(v_it.handle(),Blue); else if (Valence == 5) mesh_.set_color(v_it.handle(), LightBlue); else if (Valence == 7) mesh_.set_color(v_it.handle(), Yellow); else if (Valence>7) mesh_.set_color(v_it.handle(),Red); else mesh_.set_color(v_it.handle(),Green); } ///////////////////////////////////////////////////////////////////////////// } //----------------------------------------------------------------------------- void ValenceViewer:: draw(const std::string& _draw_mode) { if (indices_.empty()) { MeshViewer::draw(_draw_mode); return; } if (_draw_mode == "Vertex Valences") { glDisable(GL_LIGHTING); glShadeModel(GL_SMOOTH); glEnableClientState(GL_VERTEX_ARRAY); glEnableClientState(GL_NORMAL_ARRAY); glEnableClientState(GL_COLOR_ARRAY); GL::glVertexPointer(mesh_.points()); GL::glNormalPointer(mesh_.vertex_normals()); GL::glColorPointer(mesh_.vertex_colors()); glDepthRange(0.01, 1.0); glDrawElements(GL_TRIANGLES, static_cast<GLsizei>(indices_.size()), GL_UNSIGNED_INT, &indices_[0]); glDisableClientState(GL_VERTEX_ARRAY); glDisableClientState(GL_NORMAL_ARRAY); glDisableClientState(GL_COLOR_ARRAY); glColor3f(0.1f, 0.1f, 0.1f); glEnableClientState(GL_VERTEX_ARRAY); GL::glVertexPointer(mesh_.points()); glDrawBuffer(GL_BACK); glDepthRange(0.0, 1.0); glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); glDepthFunc(GL_LEQUAL); glDrawElements(GL_TRIANGLES, static_cast<GLsizei>(indices_.size()), GL_UNSIGNED_INT, &indices_[0]); glDisableClientState(GL_VERTEX_ARRAY); glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); glDepthFunc(GL_LESS); } else MeshViewer::draw(_draw_mode); } //=============================================================================
[ "lwbshr@gmail.com" ]
lwbshr@gmail.com
3d678f5cf2e46c1ebfc4f24bced6c0288d317cb3
04a10b99fe0b82bfd038643638d40cf316a18bd1
/file_system/shell/logout.cpp
52b2ef03a035326cf97a20d15ef277a468ab7c8c
[]
no_license
xinnjie/simple_file_system
47de2b495e774aa8643d6c6316a4f1a4e1273516
3570939f5397582c2f76cb47e646e4223bea16ab
refs/heads/master
2020-03-22T07:35:49.582822
2018-07-22T16:43:27
2018-07-22T16:43:27
139,710,649
0
0
null
null
null
null
UTF-8
C++
false
false
557
cpp
// // Created by capitalg on 2018/7/10. // #include <iostream> #include "logout.h" using namespace std; logout::logout(IDEio &ideio, Bcache &bcache, Icache &icache, Dir &dir, SysFile &sysfile, Proc &cur_proc, Ftable &ftable) : abstract_cmd(ideio, bcache, icache, dir, sysfile, cur_proc, ftable) { } int logout::run_cmd(std::vector<std::string> args) { if (args.size() != 0) { cerr << "logout: to few arguments" << endl; return -1; } cur_proc.cur_user.uname = ""; cerr << "logout: logout" << endl; return 0; }
[ "772516890@qq.com" ]
772516890@qq.com
04f8fbc4966db67e0768163305e495bc5b878a84
58eb1c72bc0f02276f1fb99a5995f44751752752
/utils/minValPos.cpp
f032fe8d08356adecf5abca0176d0b3390714977
[]
no_license
rzel/fgi
0ab2e2cb594f9068b4aef00f8e706aeb375dbad2
e5a3f4b05d90f9bc882a2ae2b9952c64f17bb40b
refs/heads/master
2021-06-07T11:41:57.427143
2016-11-04T13:27:05
2016-11-04T13:27:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,313
cpp
#include <stdlib.h> #include <string.h> #include <math.h> #include <time.h> #include "mex.h" int W, H; // image width, height // mex function call: void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) { if(nrhs < 3) { mexErrMsgTxt("FGS must be called with 6 arguments. Please see FGS.m for more details."); } const mxArray *img = prhs[0]; // input images double* ptr_image = (double*)mxGetPr(img); mxArray *image_result; // output array image_result = plhs[0] = mxDuplicateArray(img); double* ptr_output = mxGetPr(image_result); // image resolution W = mxGetDimensions(img)[1]; H = mxGetDimensions(img)[0]; // parameters int PSIZE = mxGetScalar(prhs[1]); double THR = mxGetScalar(prhs[2]); //mexPrintf("Image resolution: %d x %d \n", W, H); //mexPrintf("Parameters: %d %f\n", PSIZE, THR); for(int y=0;y<H;y=y+PSIZE) for(int x=0; x<W; x=x+PSIZE) { double minVal = 1e5; int xp; int yp; for(int yy=y;yy<y+PSIZE;++yy) for(int xx=x; xx<x+PSIZE;++xx) { ptr_output[xx*H + yy] = 0; double curRd = (double)ptr_image[xx*H + yy]; if (curRd < minVal) { minVal = curRd; xp = xx; yp = yy; } } //mexPrintf("Min in grid: %f\n", minVal); if (minVal < THR) ptr_output[xp*H + yp] = 1; } }
[ "liyu.sice.bupt@gmail.com" ]
liyu.sice.bupt@gmail.com
bde4b3d5ab4a6637a3f6a215eed4f834936981fb
233676e340835a58e8041bdc82c313e599af415c
/aslam_optimizer/aslam_backend/include/aslam/backend/DenseQRLinearSolverOptions.h
c76c37c872c98a5703a2a9f94a950473f78c1663
[ "BSD-3-Clause" ]
permissive
ethz-asl/kalibr
9213daa87ed191ce1e05fba9f7424204c2d9734c
94bb8437a72a0d97a491097a7085bf3db4f93bba
refs/heads/master
2023-08-29T17:04:47.774244
2023-08-14T02:08:46
2023-08-14T02:08:46
20,293,077
3,744
1,341
NOASSERTION
2023-09-10T02:18:47
2014-05-29T12:31:48
C++
UTF-8
C++
false
false
2,436
h
/****************************************************************************** * Copyright (C) 2012 by Jerome Maye * * jerome.maye@gmail.com * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the Lesser GNU General Public License as published by* * the Free Software Foundation; either version 3 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * Lesser GNU General Public License for more details. * * * * You should have received a copy of the Lesser GNU General Public License * * along with this program. If not, see <http://www.gnu.org/licenses/>. * ******************************************************************************/ /** \file DenseQRLinearSolverOptions.h \brief This file defines the DenseQRLinearSolverOptions class which contains specific options for the dense QR linear solver. */ #ifndef ASLAM_BACKEND_DENSE_QR_LINEAR_SOLVER_OPTIONS_H #define ASLAM_BACKEND_DENSE_QR_LINEAR_SOLVER_OPTIONS_H namespace aslam { namespace backend { /** The class DenseQRLinearSolverOptions contains specific options for the dense QR linear solver. \brief Dense QR linear solver options */ class DenseQRLinearSolverOptions { public: /** \name Constructors/destructor @{ */ /// Default constructor DenseQRLinearSolverOptions(); /// Copy constructor DenseQRLinearSolverOptions(const DenseQRLinearSolverOptions& other); /// Assignment operator DenseQRLinearSolverOptions& operator = (const DenseQRLinearSolverOptions& other); /// Destructor virtual ~DenseQRLinearSolverOptions(); /** @} */ }; } } #endif // ASLAM_BACKEND_DENSE_QR_LINEAR_SOLVER_OPTIONS_H
[ "schneith@ethz.ch" ]
schneith@ethz.ch
d0d12388c842d4f5a1945bb3c631f559296860a0
6c142dfb9667a14402f5432e58fc84f5deeb99c9
/Cargo Game/UI.h
10390de472002cb995f4755232bad3620d864352
[ "Zlib" ]
permissive
Dullstar/Mining-Slapfight
07654432463c62d68089da6937dfd24bb1a8e589
a4361a187a42cc544468a799db3961fbae1736f0
refs/heads/main
2023-05-27T10:18:09.615293
2021-05-12T05:03:06
2021-05-12T05:03:06
293,332,252
0
0
null
null
null
null
UTF-8
C++
false
false
3,994
h
#pragma once #include <memory> #include <string> #include <allegro5/allegro.h> #include "constants.h" #include "Objects.h" #include "Units.h" #include "RNG.h" // File contains UI elements and a container for them. // As with objects, this is so we don't have a bunch of files that are only a few lines each. struct UI; class ObjectGraphic; typedef std::shared_ptr<ObjectGraphic> OG; class Object; class ActionsMenu; class Cursor { private: // int screen_x; // might be handy later, so I'm keeping this commented // int screen_y; // to remember the idea. But now it's not really needed. UI* ui; OG friendly; OG neutral; OG enemy; int tile_x; int tile_y; const std::vector<std::unique_ptr<Object>>& objects; const vecObject& units; void draw(int object_index); int get_selected_object(); int get_selected_unit(); public: Cursor(UI* parent_ui, OG _friendly, OG _neutral, OG _enemy, const vecObject& _objects, const vecObject& _units, int tile_x = 0, int tile_y = 0); void move(int dx, int dy); void set_pos(int x, int y, bool update_scrolling = false); int get_x(); int get_y(); int get_index(); bool is_tile_clear(int x, int y); int get_object_at_tile(int x, int y); int get_unit_at_tile(int x, int y); friend struct UI; friend class ActionsMenu; }; struct Text { public: ALLEGRO_COLOR color; Text(ALLEGRO_COLOR color); void draw(const char* text, int x, int y); }; // This one's mostly for text that doesn't change much. // It'll probably only end up getting used by the main menu when it's created. class StaticText { private: Text text; public: std::string string; int x, y; StaticText(std::string text, int x, int y, ALLEGRO_COLOR color); void draw(); }; enum class Actions { exit_menu, end_turn, create_worker, create_puncher, build_mine, capture_mine, move, attack, none }; struct Message { public: int tile_x, tile_y; Actions action; std::string action_str; Message(Actions action, std::string action_str, int tileX, int tileY); }; class ActionsMenu { private: std::vector<Message> actions; int width; int height; Text text; int x, y; int selected; int unit_index; int x_mem, y_mem; public: Object* object; std::vector<int> moves; bool unit_move, unit_attack, move_lock; ActionsMenu(int x, int y, std::vector<Message> _actions, ALLEGRO_COLOR color, bool unit_move = false, bool unit_attack = false); ~ActionsMenu(); void change_selected(int delta); void draw(UI* ui, vecObject& units, vecObject& objects, std::vector<char> terrain, ALLEGRO_BITMAP* buffer1); Message get_selected_action(); }; // Container for UI stuff. And also game variables, because they needed to go somewhere, // and this needed to access them, so they just kinda ended up here. struct UI { private: OGPC& ogpc; std::string player1name; std::string player2name; public: // These are for turn switching bookkeeping. Don't use them in gameplay, // because they are only updated when the turns change. int p1_scX, p1_scY; int p2_scX, p2_scY; int p1_cursorpos; int p2_cursorpos; // End stuff for turn switching bookkeeping. char current_player; UI(OGPC& ogpc, const vecObject& _objects, const vecObject& _units); void end_turn(vecObject& units, vecObject& objects); int scrollX; int scrollY; Cursor cursor; Text text; Text dark_text; int player1money; int player2money; void draw(ALLEGRO_BITMAP* buffer2); std::unique_ptr<ActionsMenu> create_actions_menu(int x, int y); std::unique_ptr<ActionsMenu> create_actions_followup_menu(int x, int y); void disable_building(vecObject& objects); }; class AttackScreen { private: int width, height; Object* target; Object* attacker; ALLEGRO_BITMAP* text_buffer; RNG& rng; public: Text text; AttackScreen(ALLEGRO_COLOR color, Object* target, Object* attacker, RNG& rng); ~AttackScreen(); bool attack(); void draw(); }; class VictoryScreen { private: char winner; ALLEGRO_COLOR color; public: Text text; VictoryScreen(char winner, ALLEGRO_COLOR color); void draw(); };
[ "awesomesuperninja742@gmail.com" ]
awesomesuperninja742@gmail.com
abc7d908c2018dd792615aea0ca778da6618242d
480ef178622c12adbadb37d204ee7afc7be5a8d3
/Cpp/71-80/Minimum Window Substring.cpp
327606b8a385737a81fd88dc91490c21b71390aa
[]
no_license
talentlei/leetcode
9e71154af31c1fe563f7ad8f64dbc442d1148108
edf983bffe51ba7842446957ae9f34af6decb917
refs/heads/master
2021-01-19T07:43:16.483054
2015-07-07T15:20:09
2015-07-07T15:20:09
30,535,746
0
0
null
null
null
null
UTF-8
C++
false
false
1,128
cpp
/** * runtime: 132ms * error: too many * */ string minWindow(string s, string t) { if(s.size()==0||t.size()==0) return ""; unordered_map<char,int> myMap; unordered_map<char,int> temp; for(auto ch: t) myMap[ch]++; string res=""; int num = 0; int beg=0,end=0; while(end<s.size()){ char ch = s[end]; if(myMap.find(ch)==myMap.end()){ end++; continue; } temp[ch]++; if(temp[ch]==myMap[ch]) num++; while(num==myMap.size()){ // if(res==""||res.size()>end-beg+1) // res = s.substr(beg,end-beg+1); if(myMap.find(s[beg])!=myMap.end()){ if(temp[s[beg]]==myMap[s[beg]]) num--; temp[s[beg]]--; } if(res==""||res.size()>end-beg+1) res = s.substr(beg,end-beg+1); beg++; } end++; }return res; }
[ "chenlei_0630@163.com" ]
chenlei_0630@163.com
f0586c321d9987b564507b19fc9254dcd98d1839
aa723782eda1643dd910f08e2c4fdb493c4662c1
/C++/[VN-ZOOM] C & C++ Full/[VN-ZOOM] C & C++ Full/Giao trinh C++/thet ke do hoa dinh huong doi tuong voi c++/CPP/AFFINE.CPP
bec2f0fc3036f70f9ea0edc0f94e22973b6e9c1f
[]
no_license
congthanh97/laptrinhc
422879fb267cccbb8e5964170942f9bffe73e5af
b15a5030a762674a35f65f71dfc8f38b3345ba1c
refs/heads/master
2022-04-22T20:39:51.307263
2020-04-19T01:24:43
2020-04-19T01:24:43
238,343,006
0
0
null
null
null
null
UTF-8
C++
false
false
1,351
cpp
// Ngon ngu C++3.0 // Viet boi Huynh van Duc // Thang 11/2000 // Cai dat trong "Thiet ke do hoa dinh huong doi tuong voi C++" #include "affine.hpp" Affine::Affine(): Matrix(4) { SetId(); } Affine::Affine(float a): Matrix(3) { SetId(); float t = RAD_PER_DEG*a, c = cos(t), s = sin(t); Set(0, 0, c); Set(1, 1, c); Set(0, 1, s); Set(1, 0,-s); } Affine::Affine(float a, int k): Matrix(4) { SetId(); float t = RAD_PER_DEG*a, c = cos(t), s = sin(t); int i = (k + 1) % 3, j = (k + 2) % 3; Set(i, i, c); Set(j, j, c); Set(j, i,-s); Set(i, j, s); } Affine::Affine(const Vector &v, int id) : Matrix(v.Len()+1) { //tham khao trang 89 } Affine::Affine(float h10, float h01, float h20, float h02, float h21, float h12):Matrix(4) { SetId(); Set(1,0,h10); Set(0,1,h01); Set(2,0,h20); Set(0,2,h02); Set(2,1,h21); Set(1,2,h12); } Affine::Affine(const Vector &norm, const Vector &up):Matrix(4) { Vector n = norm.Norm(), v = up; v = v - (v*n)*n; v = v.Norm(); Vector u = n&v; for (int i=0; i<3; i++) { Set(i,0,u[i]); Set(i,1,v[i]); Set(i,2,n[i]); } Set(3,3,1); } Affine::Affine(const Matrix& T):Matrix(T) {}; Point operator *(const Point &p, const Affine &T) { int n = T.Col; Vector tmp = Vector(n)+p; tmp.Set(n-1,1); tmp = tmp*T; float t = 1/tmp[n-1]; tmp = t*tmp; if (n==3) tmp.Set(n-1,0); return (Point() + tmp); }
[ "41881944+Root1166@users.noreply.github.com" ]
41881944+Root1166@users.noreply.github.com
27ba1588b6017f4986599794f3a9bdb3da608df5
03883c63b16a2221eebd5e2d2a150a6db0bd4117
/strings/lib/include/string_split.hpp
2fd876df5cc5ebb0e357d4fc737b95716b898a96
[]
no_license
ilyasemikin/AlgorithmsAndStructures
e42a5307cac91e6178562ca80d2bb40a7f53730f
7b2b22d709967c922ce6cdb8a420e2a810fa5574
refs/heads/master
2021-04-21T06:01:44.971048
2020-09-07T09:47:50
2020-09-07T09:47:50
249,754,932
1
0
null
null
null
null
UTF-8
C++
false
false
184
hpp
#pragma once #include <string> #include <string_view> #include <vector> namespace learn { std::vector<std::string> split_into_words(const std::string &input, char delim = ' '); }
[ "iasemikin@gmail.com" ]
iasemikin@gmail.com
6f9493c349c71025f935a57e29e3ca4c9d72441a
9220de40dd75f54a948419142a8136d9fe108f8a
/GameNinjaGaiden/CGameBase.h
a032fd4b78f6ac99af3b91d4251ffe98ca157adc
[]
no_license
NguyenHieu1995/GameNinjaGaiden
ca1556f999dde843341b29bd36d858653403b895
a3b1bc59788168b42c9c2c2ffd71733b8346da64
refs/heads/master
2021-02-17T20:07:23.612936
2020-03-05T09:56:59
2020-03-05T09:56:59
243,140,350
0
0
null
null
null
null
UTF-8
C++
false
false
824
h
#pragma once #include <Windows.h> #include "CDirectX.h" #include "CConstant.h" class CGameBase { public: virtual ~CGameBase(); protected: CGameBase(); static CGameBase* _pInstance; protected: bool _isAlived; bool _isPaused; public: bool IsAlive(); bool IsPause(); virtual void Run(); virtual void Exit(); virtual void Pause(); virtual void Resume(); static CGameBase* GetInstance(); virtual bool Init() = 0; virtual void Destroy() = 0; protected: LARGE_INTEGER _timeStart; // Performance Counter start value LARGE_INTEGER _timeEnd; // Performance Counter end value LARGE_INTEGER _timerFreq; // Performance Counter frequency float _frameTime; // time required for last frame float _fps; // frames per second DWORD _sleepTime; // number of milli-seconds to sleep between frames };
[ "nguyenhieu01673@gmail.com" ]
nguyenhieu01673@gmail.com
fb8c412e0dfedadcc4f6f5dcbdb0e6307e971798
30c9b025738f8f9cc4767d496ff1805f57d57dee
/src/config/unit_upgrade_configs.hpp
11dcdb7f5c0e03019a216f54728a184e3a688eac
[]
no_license
June-Wu/Feast-or-Famine
a20cb6f4f42a72d0ff5397a2ee32d52868026b48
ef8fb6528e90c61c62858ade5a61705514db14c4
refs/heads/main
2023-05-01T04:30:11.076129
2021-05-18T02:43:50
2021-05-18T02:43:50
363,041,039
0
0
null
null
null
null
UTF-8
C++
false
false
2,663
hpp
#include <map> #include <vector> // each unit has a map for upgrade paths. the key is used to represent the level and the value is a vector // vector[0] = cost to upgrade to next level // vector[1] = health to be added to sell_price // vector[2] = value to be modified // each unit will have potential 3 upgrades on both paths for simplicity sake // the first entree will only consist of the upgrade cost // damage upgrade const std::map<int, std::vector<int>> hunter_path_1 = { {0, {50}}, {1, {150, 25, 30}}, {2, {400, 120, 45}}, {3, {70, 200, 60}} }; // range upgrade const std::map<int, std::vector<int>> hunter_path_2 = { {0, {50}}, {1, {100, 30, 350}}, {2, {150, 70, 400}}, {3, {80, 110, 450}} }; // food upgrade const std::map<int, std::vector<int>> greenhouse_path_1 = { {0, {60}}, {1, {80, 40, 90}}, {2, {100, 50, 120}}, {3, {80, 50, 150}} }; // I have no idea if this is going to be used const std::map<int, std::vector<int>> greenhouse_path_2 = { {0, {60}}, {1, {60, 10, 90}}, {2, {60, 10, 120}}, {3, {60, 10, 150}} }; // damage upgrade const std::map<int, std::vector<int>> exterminator_path_1 = { {0, {200}}, {1, {500, 150, 25}}, {2, {800, 450, 40}}, {3, {10, 700, 60}} }; // range upgrade const std::map<int, std::vector<int>> exterminator_path_2 = { {0, {300}}, {1, {600, 200, 15}}, {2, {900, 500, 30}}, {3, {10, 800, 50}} }; // number of projectile upgrade const std::map<int, std::vector<int>> robot_path_1 = { {0, {300}}, {1, {600, 200, 30}}, {2, {900, 400, 45}}, {3, {10, 600, 60}} }; // range upgrade const std::map<int, std::vector<int>> robot_path_2 = { {0, {500}}, {1, {750, 400, 2}}, {2, {1000, 600, 3}}, {3, {10, 800, 4}} }; // damage upgrade const std::map<int, std::vector<int>> priestess_path_1 = { {0, {200}}, {1, {500, 150, 10}}, {2, {800, 350, 15}}, {3, {10, 550, 20}} }; // attack speed upgrade const std::map<int, std::vector<float>> priestess_path_2 = { {0, {300}}, {1, {600, 200, 1.5f}}, {2, {900, 400, 1.75f}}, {3, {10, 600, 2.0f}} }; // number of projectile upgrade const std::map<int, std::vector<int>> snowmachine_path_1 = { {0, {100}}, {1, {200, 100, 2}}, {2, {300, 200, 3}}, {3, {10, 300, 4}} }; // range upgrade const std::map<int, std::vector<int>> snowmachine_path_2 = { {0, {500}}, {1, {600, 400, 30}}, {2, {700, 500, 50}}, {3, {10, 600, 70}} }; // damage upgrade const std::map<int, std::vector<int>> wall_path_1 = { {0, {100}}, {1, {150, 50, 200}}, {2, {250, 100, 300}}, {3, {10, 200, 500}} }; // health upgrade const std::map<int, std::vector<int>> wall_path_2 = { {0, {10}}, {1, {10, 10, 20}}, {2, {10, 10, 20}}, {3, {10, 10, 20}} };
[ "junewu.cs@gmail.com" ]
junewu.cs@gmail.com
b70786882d672d0424a5ed02cc946ee81d004616
bf53c9dc6851b501b13fa89c6e2bd2cf775b0d67
/geGL/src/Shader.cpp
23c37142ce45e5dbe9260465dbe93b8d29874339
[]
no_license
xchuki00/PGP
2ca971dc9af7858b57407502c777c2819d56d689
3f4990f84260734b5758e3731bd088e099d00575
refs/heads/master
2023-01-28T09:57:57.710541
2020-11-23T14:05:08
2020-11-23T14:05:08
315,334,034
0
0
null
null
null
null
UTF-8
C++
false
false
8,628
cpp
#include<GPUEngine/geGL/Shader.h> #include<GPUEngine/geGL/Program.h> #include<sstream> using namespace ge::gl; /** * @brief gets shader parameter * * @param pname name of parameter * * @return value of parameter */ GLint Shader::_getParam(GLenum pname)const{ assert(this!=nullptr); GLint params; this->_gl.glGetShaderiv(this->getId(),pname,&params); return params; } /** * @brief empty constructor */ Shader::Shader(){ assert(this!=nullptr); this->_id = 0; } /** * @brief constructor that creates shader of certain type * * @param type type of shader * @param sources optional source code of shader */ Shader::Shader(GLenum type,Sources const&sources){ assert(this!=nullptr); this->create(type); this->compile(sources); } /** * @brief empty consturctor * * @param table OpenGLFunctionTable */ Shader::Shader(FunctionTablePointer const&table):OpenGLObject(table){ assert(this!=nullptr); this->_id = 0; } /** * @brief constructor that creates shader of certain type * * @param table OpenGLFunctionTable * @param type type of shader * @param sources optional shader sources */ Shader::Shader( FunctionTablePointer const&table , GLenum const&type , Sources const&sources):OpenGLObject(table){ assert(this!=nullptr); this->create(type); this->compile(sources); } /** * @brief destructor that invalidates id */ Shader::~Shader(){ assert(this!=nullptr); this->_gl.glDeleteShader(this->_id); } /** * @brief constructing function that can be called on object * created using empty constructor * * @param type type of shader * @param sources optional source codes of shader */ void Shader::create(GLenum type){ assert(this!=nullptr); if(this->_id != 0)return; this->_id = this->_gl.glCreateShader(type); } /** * @brief this function sets shader source to shader. * It does not compile shader. * * @param source source codes of shader */ void Shader::setSource(Sources const& sources){ assert(this!=nullptr); std::vector<const GLchar*>ptr; for(auto const&x:sources)ptr.push_back(x.c_str()); this->_gl.glShaderSource(this->getId(),(GLsizei)ptr.size(),ptr.data(),nullptr); } /** * @brief this function can set shader source code and compile shader. * It also call link in programs that are using this shader. * * @param source optional source codes */ void Shader::compile(Sources const& sources){ assert(this!=nullptr); if(sources.size()>0)this->setSource(sources); this->_gl.glCompileShader(this->getId()); if(!this->getCompileStatus()){ std::cerr<<this->getInfoLog()<<std::endl; return; } for(auto const&x:this->_programs){ x->link(); } } /** * @brief function returns true if object represents valid shader * * @return true if object represents valid shader */ GLboolean Shader::isShader()const{ assert(this!=nullptr); return this->_gl.glIsShader(this->getId()); } /** * @brief gets type of shader * * @return type of shader */ GLenum Shader::getType()const{ assert(this!=nullptr); return this->_getParam(GL_SHADER_TYPE); } /** * @brief gets delete status of shader * * @return delete status of shader */ GLboolean Shader::getDeleteStatus()const{ assert(this!=nullptr); return (GLboolean)this->_getParam(GL_DELETE_STATUS); } /** * @brief gets compile status of shader * * @return compile status of shader */ GLboolean Shader::getCompileStatus()const{ assert(this!=nullptr); return (GLboolean)this->_getParam(GL_COMPILE_STATUS); } /** * @brief gets info log length * * @return info log length */ GLuint Shader::getInfoLogLength()const{ assert(this!=nullptr); return this->_getParam(GL_INFO_LOG_LENGTH); } /** * @brief gets source code length * * @return source code length */ GLuint Shader::getSourceLength()const{ assert(this!=nullptr); return this->_getParam(GL_SHADER_SOURCE_LENGTH); } /** * @brief gets info log after compilation * * @return info log or empty string if there is no info log */ std::string Shader::getInfoLog()const{ assert(this!=nullptr); GLuint length = this->getInfoLogLength(); if(!length)return""; std::string info(length,' '); this->_gl.glGetShaderInfoLog(this->getId(),length,NULL,(GLchar*)info.c_str()); return info; } /** * @brief gets shader source * * @return shader source or empty string if there is no source */ Shader::Source Shader::getSource()const{ assert(this!=nullptr); GLuint length=this->getSourceLength(); if(!length)return""; std::string source(length,' '); this->_gl.glGetShaderSource(this->getId(),length,NULL,(GLchar*)source.c_str()); return source; } std::string Shader::define(std::string const&name){ return"#define "+name+"\n"; } std::string Shader::define(std::string const&name,uint32_t value){ std::stringstream result; result<<"#define "<<name<<" "<<value<<"u\n"; return result.str(); } std::string Shader::define(std::string const&name,uint32_t value0,uint32_t value1){ std::stringstream result; result<<"#define "<<name<<" uvec2("<<value0<<"u,"<<value1<<"u)\n"; return result.str(); } std::string Shader::define(std::string const&name,uint32_t value0,uint32_t value1,uint32_t value2){ std::stringstream result; result<<"#define "<<name<<" uvec3("<<value0<<"u,"<<value1<<"u,"<<value2<<"u)\n"; return result.str(); } std::string Shader::define(std::string const&name,uint32_t value0,uint32_t value1,uint32_t value2,uint32_t value3){ std::stringstream result; result<<"#define "<<name<<" uvec3("<<value0<<"u,"<<value1<<"u,"<<value2<<"u,"<<value3<<"u)\n"; return result.str(); } std::string Shader::define(std::string const&Name,uint32_t vectorSize,uint32_t const*values){ assert(vectorSize<4); if(vectorSize==1)return define(Name,values[0]); std::stringstream result; result<<"#define "<<Name<<" uvec"<<vectorSize<<"("; for(uint32_t i=0;i<vectorSize;++i){ result<<values[i]<<"u"; if(i==vectorSize-1)result<<")\n"; else result<<","; } return result.str(); } std::string Shader::define(std::string const&Name,int32_t Value){ std::stringstream result; result<<"#define "<<Name<<" "<<Value<<"\n"; return result.str(); } std::string Shader::define(std::string const&Name,int32_t value0,int32_t value1){ std::stringstream result; result<<"#define "<<Name<<" ivec2("<<value0<<","<<value1<<")\n"; return result.str(); } std::string Shader::define(std::string const&Name,int32_t value0,int32_t value1,int32_t value2){ std::stringstream result; result<<"#define "<<Name<<" ivec3("<<value0<<","<<value1<<","<<value2<<")\n"; return result.str(); } std::string Shader::define(std::string const&Name,int32_t value0,int32_t value1,int32_t value2,int32_t value3){ std::stringstream result; result<<"#define "<<Name<<" ivec3("<<value0<<","<<value1<<","<<value2<<","<<value3<<")\n"; return result.str(); } std::string Shader::define(std::string const&Name,uint32_t vectorSize,int32_t const*values){ assert(vectorSize<4); if(vectorSize==1)return define(Name,values[0]); std::stringstream result; result<<"#define "<<Name<<" ivec"<<vectorSize<<"("; for(uint32_t i=0;i<vectorSize;++i){ result<<values[i]; if(i==vectorSize-1)result<<")\n"; else result<<","; } return result.str(); } std::string Shader::define(std::string const&Name,float Value){ std::stringstream result; result<<"#define "<<Name<<" "<<Value<<"\n"; return result.str(); } std::string Shader::define(std::string const&Name,float value0,float value1){ std::stringstream result; result<<"#define "<<Name<<" vec2("<<value0<<","<<value1<<")\n"; return result.str(); } std::string Shader::define(std::string const&Name,float value0,float value1,float value2){ std::stringstream result; result<<"#define "<<Name<<" vec3("<<value0<<","<<value1<<","<<value2<<")\n"; return result.str(); } std::string Shader::define(std::string const&Name,float value0,float value1,float value2,float value3){ std::stringstream result; result<<"#define "<<Name<<" vec3("<<value0<<","<<value1<<","<<value2<<","<<value3<<")\n"; return result.str(); } std::string Shader::define(std::string const&Name,uint32_t vectorSize,float const*values){ assert(vectorSize<4); if(vectorSize==1)return define(Name,values[0]); std::stringstream result; result<<"#define "<<Name<<" vec"<<vectorSize<<"("; for(uint32_t i=0;i<vectorSize;++i){ result<<values[i]; if(i==vectorSize-1)result<<")\n"; else result<<","; } return result.str(); } std::string Shader::define(std::string const&Name,std::string const&Value){ return"#define "+Name+" "+Value+"\n"; }
[ "p.chukir@gmail.com" ]
p.chukir@gmail.com
4f00ac7d76f2b1912a11265cfdb3c7c0e763fbad
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/squid/gumtree/squid_repos_function_5820_squid-3.5.27.cpp
29fc01e405b0ecc7606f21abdd72d0b93b1a13e5
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
105
cpp
const char * Auth::Basic::Config::type() const { return Auth::Basic::Scheme::GetInstance()->type(); }
[ "993273596@qq.com" ]
993273596@qq.com
9343cbee7376bc6d30de23fc020650dc40b78930
84864f862dec9171e958920f2c8e7c920fcef056
/LeetCode/371. Sum of Two Integers.cpp
76f44e0f8c95c26604b18e85b051457857ff5a63
[]
no_license
Orcuslc/Learning
7704950f8c09232dadbbde81ed82ddc0ca65172d
ffa856febd85235d17358178f1e288ffae7856cb
refs/heads/master
2020-03-26T11:59:54.093395
2018-05-29T04:19:36
2018-05-29T04:19:36
47,269,920
4
2
null
null
null
null
UTF-8
C++
false
false
198
cpp
class Solution { public: int getSum(int a, int b) { while(b != 0) { int carry = (a&b) << 1; a = a ^ b; b = carry; } return a; } };
[ "orcuslc@hotmail.com" ]
orcuslc@hotmail.com
2f84a73a9a2ede4b367e8a4be902d745b8ab18ea
6f6e378ea2a3e23d3ecefb1f8ff4e847a7dcda68
/libember/Headers/ember/glow/GlowMatrixBase.hpp
cd206e5e04ed72008b3585e4d28ecde558608f04
[ "LicenseRef-scancode-dco-1.1", "BSL-1.0" ]
permissive
Lawo/ember-plus
878b772f2dff07821019690ba91a72095bf68081
b42f3143c89f093e01362da69fb39686d0f1bd9e
refs/heads/master
2023-04-02T17:03:47.304757
2023-03-30T12:38:39
2023-03-30T12:38:39
40,001,159
99
54
BSL-1.0
2023-03-06T08:30:53
2015-07-31T10:55:18
C++
UTF-8
C++
false
false
14,205
hpp
/* libember -- C++ 03 implementation of the Ember+ Protocol Copyright (C) 2012-2016 Lawo GmbH (http://www.lawo.com). Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ #ifndef __LIBEMBER_GLOW_GLOWMATRIXBASE_HPP #define __LIBEMBER_GLOW_GLOWMATRIXBASE_HPP #include "GlowContentElement.hpp" #include "GlowElementCollection.hpp" #include "MatrixProperty.hpp" #include "MatrixType.hpp" #include "MatrixAddressingMode.hpp" #include "ParametersLocation.hpp" #include "util/CompliesWithSchema.hpp" #include "util/TypeFilter.hpp" #include "GlowLabel.hpp" #include "GlowTarget.hpp" #include "GlowSource.hpp" #include "GlowConnection.hpp" namespace libember { namespace glow { /** * Class containing the common properties of a matrix. * The methods to access a property of this object return a default value if a property doesn't exist. * To assure that the property exists, the contains method should be used. */ class LIBEMBER_API GlowMatrixBase : public GlowContentElement { public: /** * Tests if the matrix contains the passed property. * @param property The property the look for. * @return Returns true if the property exists, false otherwise. */ bool contains(MatrixProperty const& property) const; /** * Sets the identifier string. * @param identifier The identifier string. */ void setIdentifier(std::string const& identifier); /** * Sets the description string. * @param description The description string to set. */ void setDescription(std::string const& description); /** * Sets the string containing the schema identifiers. The identifiers * are separated by the linefeed character (0x0A, '\n') * @param identifiers The names of the schema identifiers this matrix uses. */ void setSchemaIdentifiers(std::string const& identifiers); /** * Sets the matrix type. * @param type The matrix type to set. */ void setType(MatrixType const& type); /** * Sets the addressing mode. * @param addressingMode The addressing mode to set. */ void setAddressingMode(MatrixAddressingMode const& addressingMode); /** * Sets the target count. * @param targetCount The target count to set. */ void setTargetCount(int targetCount); /** * Sets the source count. * @param sourceCount The source count string to set. */ void setSourceCount(int sourceCount); /** * Sets the total maximum number of matrix connects. * @param maximumTotalConnects The total maximum number of matrix connects to set. */ void setMaximumTotalConnects(int maximumTotalConnects); /** * Sets the maximum number of connects per target. * @param maximumConnectsPerTargets The maximum number of connects per target to set. */ void setMaximumConnectsPerTarget(int maximumConnectsPerTargets); /** * Sets the parameters location as an inline sub-identifier encoded as INTEGER. * @param inlineSubid The parameters location as an inline sub-identifier to set. */ void setParametersLocation(int inlineSubid); /** * Sets the parameters location as a base path encoded as RELATIVE-OID. * @param basePath The parameters location as a base path to set. */ void setParametersLocation(ber::ObjectIdentifier const& basePath); /** * Sets the gain parameter number. * @param gainParameterNumber The gain parameter number to set. */ void setGainParameterNumber(int gainParameterNumber); /** * Inserts the object identifier to the template describing the structure * of this element. */ void setTemplateReference(ber::ObjectIdentifier const& path); /** * Returns a modifiable sequence collection that contains the labels. * The element will be inserted if it doesn't already exist. * @return The label collection. */ dom::Sequence* labels(); /** * Returns a modifiable element collection that contains the children. * The element will be inserted if it doesn't already exist. * @return The element collection. */ GlowElementCollection* children(); /** * Returns a modifiable sequence collection that contains the targets. * The element will be inserted if it doesn't already exist. * @return The target collection. */ dom::Sequence* targets(); /** * Returns a modifiable sequence collection that contains the sources. * The element will be inserted if it doesn't already exist. * @return The source collection. */ dom::Sequence* sources(); /** * Returns a modifiable sequence collection that contains the connections. * The element will be inserted if it doesn't already exist. * @return The connection collection. */ dom::Sequence* connections(); /** * Returns the identifier string. * @return The identifier string. */ std::string identifier() const; /** * Returns the description string. * @return The description string. */ std::string description() const; /** * Returns the string containing the schema identifiers. The identifiers * are separated with the line feed character (0x0A, '\n'). * @return The string containing the schema identifiers. */ std::string schemaIdentifiers() const; /** * Tests if the matrix complies with the specified schema. * @param schemaIdentifier The identifier of the schema to test. * @return true, if the schema is supported. Otherwise, this method * return false. */ bool compliesWithSchema(std::string const& schemaIdentifier) const; /** * Returns the matrix type. * @return The matrix type. */ MatrixType type() const; /** * Returns the matrix addressing mode. * @return The matrix addressing mode. */ MatrixAddressingMode addressingMode() const; /** * Returns the target count. * @return The target count. */ int targetCount() const; /** * Returns the source count. * @return The source count. */ int sourceCount() const; /** * Returns the total maximum number of matrix connects. * @return The total maximum number of matrix connects. */ int maximumTotalConnects() const; /** * Returns the maximum number of connects per target. * @return The maximum number of connects per target. */ int maximumConnectsPerTarget() const; /** * Returns the parameters location. * @return The parameters location. */ ParametersLocation parametersLocation() const; /** * Returns the gain parameter number. * @return the gain parameter number. */ int gainParameterNumber() const; /** * Returns a constant sequence that contains the labels. * If the labels field is not present, this method returns null. * @return The label collection. */ dom::Sequence const* labels() const; /** * Inserts all GlowLabel objects in the the labels sequence into the passed OutputIterator. * @return The number of copied pointers. */ template<typename OutputIterator> size_type typedLabels(OutputIterator dest) const; /** * Returns the constant element collection. If no children are present, * this method returns null. * @return Element collection containing the children of this node. */ GlowElementCollection const* children() const; /** * Returns the constant target collection. If no targets are present, * this method returns null. * @return Sequence containing the targets of this matrix. */ dom::Sequence const* targets() const; /** * Extracts all GlowTarget objects from the targets sequence into the passed OutputIterator. * @return The number of copied pointers. */ template<typename OutputIterator> size_type typedTargets(OutputIterator dest) const; /** * Returns the constant source collection. If no sources are present, * this method returns null. * @return Sequence containing the sources of this matrix. */ dom::Sequence const* sources() const; /** * Extracts all GlowSource objects from the the sources sequence into the passed OutputIterator. * @return The number of copied pointers. */ template<typename OutputIterator> size_type typedSources(OutputIterator dest) const; /** * Returns the constant connection collection. If no connections are present, * this method returns null. * @return Sequence containing the connections of this matrix. */ dom::Sequence const* connections() const; /** * Extracts all GlowConnection objects from the the connections sequence into the passed OutputIterator. * @return The number of copied pointers. */ template<typename OutputIterator> size_type typedConnections(OutputIterator dest) const; /** * Returns the object identifier of the template reference. If not present, * an empty oid is being returned. */ ber::ObjectIdentifier templateReference() const; protected: /** * This constructor initializes a matrix with the specified content- and children-tags. * @param type Object type. * @param tag Application tag. * @param contentsTag The tag to use for the contents set. * @param childrenTag The tag to use for the children. * @param targetsTag The tag to use for the targets. * @param sourcesTag The tag to use for the sources. * @param connectionsTag The tag to use for the connections. */ GlowMatrixBase( GlowType const& type, ber::Tag const& tag, ber::Tag const& contentsTag, ber::Tag const& childrenTag, ber::Tag const& targetsTag, ber::Tag const& sourcesTag, ber::Tag const& connectionsTag); private: ber::Tag m_childrenTag; ber::Tag m_targetsTag; ber::Tag m_sourcesTag; ber::Tag m_connectionsTag; }; /**************************************************************************/ /* Mandatory inline implementation */ /**************************************************************************/ template<typename OutputIterator> inline GlowContainer::size_type GlowMatrixBase::typedLabels(OutputIterator dest) const { dom::Sequence const* labels = this->labels(); return labels != 0 ? util::TypeFilter<GlowLabel>::collect(labels->begin(), labels->end(), dest) : 0; } template<typename OutputIterator> inline GlowContainer::size_type GlowMatrixBase::typedTargets(OutputIterator dest) const { dom::Sequence const* targets = this->targets(); return targets != 0 ? util::TypeFilter<GlowTarget>::collect(targets->begin(), targets->end(), dest) : 0; } template<typename OutputIterator> inline GlowContainer::size_type GlowMatrixBase::typedSources(OutputIterator dest) const { dom::Sequence const* sources = this->sources(); return sources != 0 ? util::TypeFilter<GlowSource>::collect(sources->begin(), sources->end(), dest) : 0; } template<typename OutputIterator> inline GlowContainer::size_type GlowMatrixBase::typedConnections(OutputIterator dest) const { dom::Sequence const* connections = this->connections(); return connections != 0 ? util::TypeFilter<GlowConnection>::collect(connections->begin(), connections->end(), dest) : 0; } inline bool GlowMatrixBase::compliesWithSchema(std::string const& schemaIdentifier) const { return util::complies_with_schema(schemaIdentifiers(), schemaIdentifier); } } } #ifdef LIBEMBER_HEADER_ONLY # include "impl/GlowMatrixBase.ipp" #endif #endif // __LIBEMBER_GLOW_GLOWMATRIXBASE_HPP
[ "marius.keuck@l-s-b.de" ]
marius.keuck@l-s-b.de
aacb0bd49981db12d45ea55bd15f3b01c38fc6cf
8cc355e8465211f4384655f55472d50d080ce1ac
/objs__verybiggun.cpp
b5b0b9bee998e78de5a6f3639c7edeca58ac1c14
[ "CC0-1.0" ]
permissive
pgrawehr/golgotha
47fb1e47c9a2e7f24e0ce7dde188f884a5504438
94e0b448d7e7224e56c27b029dec80ca710ceb8b
refs/heads/master
2023-06-29T12:04:11.302599
2022-03-19T08:09:59
2022-03-19T08:09:59
40,831,531
7
5
null
null
null
null
UTF-8
C++
false
false
5,837
cpp
#include "pch.h" /********************************************************************** Golgotha Forever - A portable, free 3D strategy and FPS game. Copyright (C) 1999 Golgotha Forever Developers Sources contained in this distribution were derived from Crack Dot Com's public release of Golgotha which can be found here: http://www.crack.com All changes and new works are licensed under the GPL: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA For the full license, see COPYING. ***********************************************************************/ #include "sound_man.h" #include "objs/model_id.h" #include "objs/model_draw.h" #include "objs/rocktank.h" #include "objs/verybiggun.h" #include "input.h" #include "math/pi.h" #include "math/trig.h" #include "math/angle.h" #include "objs/bullet.h" #include "resources.h" #include "saver.h" #include "map_cell.h" #include "map.h" //#include "cell_id.h" #include "sound/sfx_id.h" #include "object_definer.h" #include "objs/fire.h" #include "lisp/lisp.h" static li_symbol_ref bullet("napalm"); void g1_very_big_gun_init() { //bullet = g1_get_object_type("bullet"); } g1_object_definer<g1_very_big_gun_class> g1_very_big_gun_def("verybiggun", g1_object_definition_class::EDITOR_SELECTABLE| g1_object_definition_class::TO_MAP_PIECE, g1_very_big_gun_init); g1_fire_range_type g1_very_big_gun_class::range() { return G1_FIRE_RANGE_1; } g1_very_big_gun_class::g1_very_big_gun_class(g1_object_type id, g1_loader_class * fp) : g1_map_piece_class(id,fp) { draw_params.setup("turret"); defaults = g1_very_big_gun_def.defaults; w16 ver,data_size; if (fp) { fp->get_version(ver,data_size); if (ver==DATA_VERSION) { } else { fp->seek(fp->tell() + data_size); fire_delay = 15; health = 20; } fp->end_version(I4_LF); } else { fire_delay = 15; health = 20; } health = 200; //no sound for now //init_rumble_sound(g1_moving_engineering_vehicle_wav); //maxspeed = 0; //doesnt move //turn_speed = defaults->turn_speed; radar_type=G1_RADAR_BUILDING; set_flag(BLOCKING | SELECTABLE | TARGETABLE | GROUND | HIT_GROUND | SHADOWED | DANGEROUS, 1); } void g1_very_big_gun_class::save(g1_saver_class * fp) { g1_map_piece_class::save(fp); fp->start_version(DATA_VERSION); fp->end_version(); } void g1_very_big_gun_class::load(g1_loader_class * fp) { g1_map_piece_class::load(fp); fp->check_version(DATA_VERSION); fp->end_version(I4_LF); }; void g1_very_big_gun_class::skipload(g1_loader_class * fp) { g1_map_piece_class::skipload(fp); fp->check_version(DATA_VERSION); fp->end_version(I4_LF); }; void g1_very_big_gun_class::fire() { if (attack_target.valid()) { //i4_float tmp_x,tmp_y,tmp_z; fire_delay = defaults->fire_delay; i4_3d_point_class bpos, bdir; i4_transform_class btrans, tmp1, tmp2; tmp1.rotate_y(0); tmp1.t.set(0,0,0.3f); tmp2.rotate_z(theta); tmp2.t.set(x,y,h); btrans.multiply(tmp2,tmp1); btrans.transform(i4_3d_point_class(0.1f,0,0),bpos); bdir.set((float)cos(theta), (float)sin(theta), 0); /*tmp_x = 0.4; tmp_y = 0; tmp_z = 0.2; i4_transform_class btrans,tmp1; i4_angle ang = theta; btrans.translate(0,0,0); tmp1.rotate_z(ang); btrans.multiply(tmp1); tmp1.rotate_y(pitch); btrans.multiply(tmp1); tmp1.rotate_x(roll); btrans.multiply(tmp1); i4_3d_point_class tpoint; btrans.transform(i4_3d_point_class(tmp_x,tmp_y,tmp_z),tpoint); //i4_float bx,by,bz; //bx = tpoint.x + x; //by = tpoint.y + y; //bz = tpoint.z + h; //i4_float b_dx,b_dy,b_dz; btrans.transform(i4_3d_point_class(g1_resources.bullet_speed,0,0),tpoint); */ //b_dx = tpoint.x; //b_dy = tpoint.y; //b_dz = tpoint.z; //g1_bullet_class *b = (g1_bullet_class *)g1_create_object(bullet); g1_fire(bullet.get(),this,0,bpos,bdir,0); /*if (b) { b->setup(bx, by, bz, b_dx, b_dy, b_dz, ang,pitch,roll,player_num, i4_F, defaults->damage, defaults->fire_range ); b->set_owner(this); }*/ } } void g1_very_big_gun_class::think() { check_life(); if (health < 200) { health++; } find_target(); pitch = groundpitch *cos(theta) - groundroll *sin(theta); roll = groundroll *cos(theta) + groundpitch *sin(theta); if (fire_delay>0) { fire_delay--; } request_think(); //aim the turet if (attack_target.valid()) { i4_float dx,dy,angle; //this will obviously only be true if attack_target.ref != NULL dx = (attack_target->x - x); dy = (attack_target->y - y); //aim the turet angle = i4_atan2(dy,dx); //snap it i4_normalize_angle(angle); if (i4_rotate_to(theta,angle,defaults->turn_speed)<0.2f) { if (!fire_delay) { fire(); } } } }
[ "pgrawehr@hotmail.com" ]
pgrawehr@hotmail.com
11d973cfe0343c9a0bdc6c5464a9994c916cc923
9c7c3e1c9b76d23a9574520a817a6e74c50f7c8d
/air/330/phi
7a66f5fd78f89222bb869e42b43a7cf25e7d10fe
[]
no_license
einsteinzhang/k-epsilon_RAS-in-openFOAM
20525f6a4e31c3832c7eeaae296099550ee76f7e
a3f3e3790fc7798bdafc0ab9fe42f831d8174106
refs/heads/master
2022-10-20T03:28:48.298669
2020-06-09T03:21:49
2020-06-09T03:21:49
270,980,331
0
0
null
null
null
null
UTF-8
C++
false
false
737,331
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 5.x | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ /* Windows 32 and 64 bit porting by blueCAPE: http://www.bluecape.com.pt *\ | Based on Windows porting (2.0.x v4) by Symscape: http://www.symscape.com | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "330"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; internalField nonuniform List<scalar> 87341 ( 0.365604 39.5574 0.529258 39.7594 0.495671 39.9566 0.600999 39.8177 0.636615 39.8874 0.680573 39.8791 0.716851 39.8868 0.754301 39.8856 0.791066 39.8863 0.822288 39.8918 0.854198 39.8911 0.879465 39.8978 0.901035 39.9015 0.923003 39.9011 0.94052 39.9055 0.957753 39.9058 0.978809 39.902 0.996336 39.9055 1.0109 39.9085 1.02549 39.9084 1.03807 39.9105 1.05132 39.9098 1.0636 39.9108 1.07506 39.9116 1.08909 39.909 1.10113 39.911 1.10895 39.9152 1.11667 39.9153 39.9152 1.12453 0.969875 38.5876 1.36164 39.3676 1.47258 39.8457 1.60941 39.6809 1.64866 39.8482 1.80651 39.7212 1.90593 39.7873 2.03467 39.7569 2.12758 39.7934 2.22878 39.7906 2.32244 39.7975 2.41674 39.8035 2.50437 39.8138 2.58014 39.8253 2.65527 39.8304 2.72931 39.8318 2.78795 39.8433 2.83919 39.8543 2.89447 39.8532 2.94641 39.8565 2.99781 39.8591 3.04587 39.8617 3.088 39.8686 3.12571 39.8739 3.15414 39.8806 3.17996 39.8852 3.21362 39.8816 3.25204 39.8769 39.8812 3.28599 2.03822 36.5493 3.35772 38.0481 4.14024 39.0632 4.22773 39.5934 4.38921 39.6867 4.32806 39.7824 4.36571 39.7497 4.34568 39.7769 4.3741 39.7649 4.40016 39.7645 4.4327 39.7649 4.47478 39.7614 4.52504 39.7636 4.5778 39.7725 4.63182 39.7764 4.68235 39.7812 4.73694 39.7888 4.80057 39.7906 4.85684 39.7969 4.90904 39.8043 4.96263 39.8055 5.01212 39.8122 5.06049 39.8203 5.11426 39.8201 5.17772 39.8171 5.24542 39.8175 5.3073 39.8197 5.34976 39.8344 39.843 5.38794 1.70109 34.8482 3.50617 36.243 4.96158 37.6078 5.8533 38.7017 6.15829 39.3817 6.24915 39.6915 6.26748 39.7314 6.30212 39.7422 6.32243 39.7446 6.3377 39.7493 6.35068 39.7519 6.35688 39.7552 6.36325 39.7572 6.38081 39.755 6.40299 39.7542 6.42243 39.7618 6.446 39.7652 6.47253 39.7641 6.50666 39.7628 6.54666 39.7643 6.58298 39.7691 6.623 39.7722 6.67527 39.768 6.72818 39.7672 6.77106 39.7742 6.80548 39.7831 6.8335 39.7917 6.8743 39.7936 39.7821 6.93526 1.09164 33.7566 2.46198 34.8727 4.03845 36.0313 5.5071 37.233 6.58209 38.3067 7.17412 39.0995 7.38611 39.5194 7.43362 39.6947 7.47867 39.6996 7.52221 39.7057 7.5593 39.7149 7.60119 39.7133 7.64299 39.7154 7.67412 39.7238 7.70941 39.7189 7.75333 39.7179 7.798 39.7205 7.84017 39.7219 7.87823 39.7247 7.91878 39.7237 7.97219 39.7157 8.02944 39.715 8.07606 39.7214 8.11105 39.7322 8.14135 39.7439 8.19005 39.7344 8.25599 39.7257 8.3317 39.7179 39.729 8.38482 0.8594 32.8972 1.87762 33.8545 3.05289 34.856 4.38961 35.8963 5.75135 36.945 6.89646 37.9544 7.6317 38.7841 7.99346 39.333 8.13116 39.5619 8.22022 39.6167 8.31297 39.6221 8.39771 39.6286 8.47664 39.6365 8.56039 39.6401 8.64028 39.639 8.7151 39.6431 8.7999 39.6357 8.89 39.6318 8.97289 39.6418 9.05534 39.6413 9.12719 39.6439 9.19209 39.6501 9.25938 39.6541 9.34369 39.6479 9.4457 39.6419 9.53852 39.6415 9.61611 39.6481 9.67567 39.6584 39.6635 9.74113 0.755456 32.1418 1.61214 32.9978 2.57241 33.8957 3.64018 34.8285 4.80501 35.7801 6.02771 36.7317 7.14939 37.6624 7.9875 38.4949 8.4544 39.095 8.66058 39.4105 8.78168 39.501 8.90577 39.5045 9.03028 39.512 9.14668 39.5237 9.26402 39.5217 9.38672 39.5204 9.49434 39.5281 9.59629 39.5299 9.71723 39.5209 9.83437 39.5242 9.94095 39.5373 10.0543 39.5367 10.1735 39.5349 10.2818 39.5397 10.3779 39.5458 10.4677 39.5518 10.56 39.5558 10.6559 39.5625 39.5676 10.7518 0.701143 31.4406 1.472 32.2269 2.31593 33.0518 3.23525 33.9092 4.22746 34.7879 5.28371 35.6754 6.38906 36.5571 7.47156 37.4124 8.35339 38.2131 8.91924 38.8447 9.19321 39.2271 9.34738 39.3503 9.50517 39.3542 9.66592 39.3629 9.81347 39.3741 9.96477 39.369 10.1259 39.367 10.2752 39.3806 10.4059 39.3902 10.5405 39.3895 10.6968 39.381 10.8479 39.3856 10.9859 39.3969 11.1205 39.4051 11.2533 39.413 11.3837 39.4213 11.5188 39.4207 11.6624 39.4189 39.4164 11.8135 0.672751 30.7679 1.39623 31.5035 2.17466 32.2734 3.01007 33.0738 3.90198 33.896 4.84694 34.7305 5.83752 35.5665 6.85786 36.392 7.87871 37.1923 8.77539 37.948 9.4139 38.5885 9.75197 39.0122 9.94531 39.1608 10.1374 39.1708 10.3318 39.1798 10.5126 39.1882 10.6875 39.1922 10.8713 39.1968 11.0512 39.2103 11.226 39.2146 11.3833 39.2238 11.5392 39.2297 11.7066 39.2295 11.8776 39.2341 12.0476 39.2429 12.2143 39.2547 12.3729 39.2621 12.5196 39.2723 39.2856 12.6504 0.656522 30.1113 1.35571 30.8043 2.0972 31.5319 2.88268 32.2883 3.71237 33.0663 4.58476 33.8581 5.49609 34.6552 6.43939 35.4487 7.40307 36.2286 8.36832 36.9827 9.2639 37.693 9.95128 38.3248 10.3484 38.7637 10.5762 38.9431 10.7928 38.9632 11.0074 38.9735 11.22 38.9796 11.422 38.9947 11.635 38.9973 11.8437 39.0059 12.0477 39.0198 12.2478 39.0296 12.4417 39.0356 12.6339 39.0418 12.8242 39.0527 13.0115 39.0674 13.2005 39.0731 13.4021 39.0706 39.0898 13.5979 0.654006 29.4573 1.34229 30.116 2.06556 30.8086 2.82453 31.5294 3.61913 32.2717 4.44828 33.0289 5.30971 33.7938 6.19957 34.5588 7.11182 35.3164 8.03701 36.0575 8.95866 36.7713 9.8419 37.4416 10.551 38.0546 10.9883 38.5057 11.2481 38.7035 11.4898 38.7318 11.726 38.7435 11.9758 38.7449 12.2034 38.7698 12.4391 38.7702 12.6829 38.7759 12.924 38.7884 13.1495 38.8102 13.3615 38.8298 13.5762 38.8381 13.7913 38.8523 13.9917 38.8726 14.1648 38.8975 38.906 14.3487 0.657993 28.7993 1.34458 29.4294 2.06136 30.0919 2.80854 30.7822 3.5858 31.4945 4.39205 32.2227 5.22539 32.9604 6.08297 33.7013 6.96069 34.4387 7.85249 35.1657 8.74906 35.8748 9.63425 36.5564 10.4908 37.1981 11.2085 37.788 11.6708 38.2411 11.9604 38.4422 12.2251 38.4788 12.4782 38.4917 12.7485 38.4995 12.9994 38.5194 13.2364 38.5389 13.4787 38.5461 13.724 38.5649 13.9688 38.585 14.2003 38.6065 14.4356 38.617 14.6853 38.6229 14.9395 38.6433 38.6807 15.1647 0.664982 28.1344 1.35664 28.7377 2.07506 29.3734 2.82018 30.037 3.59156 30.7231 4.38827 31.426 5.20868 32.14 6.05047 32.8595 6.91051 33.5786 7.78456 34.2917 8.66677 34.9925 9.54866 35.6745 10.4173 36.3294 11.2593 36.946 11.9861 37.5143 12.4659 37.9624 12.7834 38.1613 13.0806 38.1946 13.3652 38.2149 13.6519 38.2327 13.934 38.2567 14.187 38.2932 14.4546 38.2973 14.7271 38.3125 15.0098 38.3238 15.2574 38.3695 15.4818 38.3985 15.7029 38.4223 38.4275 15.9561 0.675484 27.4589 1.37517 28.038 2.09939 28.6492 2.84797 29.2885 3.62013 29.9509 4.41492 30.6312 5.23102 31.3239 6.06646 32.024 6.91869 32.7264 7.78451 33.4258 8.65978 34.1173 9.53902 34.7953 10.4146 35.4538 11.2752 36.0854 12.1093 36.6803 12.8405 37.2311 13.3278 37.674 13.66 37.8624 13.9781 37.8968 14.2852 37.9256 14.5843 37.9577 14.8986 37.9788 15.1929 38.0031 15.4719 38.0334 15.7454 38.0503 16.042 38.0729 16.3461 38.0944 16.6269 38.1415 38.1943 16.8601 0.687601 26.7713 1.39774 27.3279 2.13045 27.9165 2.8857 28.5332 3.6628 29.1738 4.4605 29.8335 5.27752 30.5069 6.11225 31.1893 6.96254 31.8761 7.82574 32.5626 8.69859 33.2444 9.57705 33.9168 10.4558 34.5751 11.3277 35.2136 12.1822 35.8258 13.0107 36.4026 13.7448 36.9399 14.2339 37.3734 14.5805 37.5502 14.9199 37.5862 15.2578 37.6197 15.5837 37.6528 15.9239 37.6629 16.2501 37.7073 16.5592 37.7411 16.8382 37.794 17.0905 37.842 17.3869 37.8451 37.8644 17.7168 0.702377 26.0689 1.42608 26.6042 2.17104 27.1715 2.93707 27.7672 3.7238 28.3871 4.53017 29.0271 5.35466 29.6824 6.19579 30.3482 7.05182 31.0201 7.92057 31.6939 8.79945 32.3655 9.68533 33.031 10.5743 33.686 11.4615 34.3264 12.3401 34.9472 13.2005 35.5421 14.0371 36.1033 14.783 36.6275 15.2862 37.047 15.6523 37.22 16.0254 37.2467 16.3834 37.2948 16.7043 37.342 17.0331 37.3784 17.3597 37.4145 17.6863 37.4675 18.0259 37.5024 18.2996 37.5713 37.609 18.555 0.71732 25.3516 1.45518 25.8663 2.21345 26.4133 2.99176 26.9889 3.78965 27.5892 4.60647 28.2103 5.44092 28.8479 6.29135 29.4977 7.15612 30.1553 8.0333 30.8167 8.92069 31.4782 9.81571 32.1359 10.7153 32.7864 11.6158 33.426 12.5123 34.0506 13.3987 34.6558 14.2659 35.2361 15.1082 35.7852 15.8536 36.3016 16.3634 36.7102 16.7332 36.8769 17.108 36.9201 17.4702 36.9797 17.8035 37.0452 18.1291 37.0889 18.4492 37.1474 18.7688 37.1828 19.1201 37.2201 37.2794 19.4496 0.73125 24.6203 1.48246 25.1151 2.2534 25.6423 3.04363 26.1987 3.85248 26.7804 4.67923 27.3835 5.52291 28.0043 6.38205 28.6386 7.25496 29.2824 8.13987 29.9318 9.03467 30.5833 9.93701 31.2336 10.8442 31.8793 11.7531 32.5171 12.6599 33.1438 13.5599 33.7558 14.4469 34.3491 15.3129 34.9192 16.1526 35.4619 16.8877 35.9751 17.3937 36.3709 17.7674 36.5463 18.1467 36.6005 18.5421 36.6498 18.9251 36.7058 19.3137 36.7588 19.671 36.8256 19.9819 36.9091 36.9319 20.3295 0.744829 23.8755 1.50917 24.3508 2.29277 24.8587 3.09518 25.3962 3.91573 25.9598 4.75355 26.5457 5.60767 27.1501 6.47683 27.7694 7.35938 28.3998 8.25365 29.0375 9.15781 29.6792 10.0698 30.3216 10.9871 30.9619 11.9073 31.597 12.8271 32.224 13.743 32.8399 14.6505 33.4416 15.5442 34.0255 16.4182 34.5879 17.267 35.1263 18 35.6379 18.5214 36.0249 18.9296 36.1922 19.3254 36.2541 19.7172 36.3139 20.0871 36.3889 20.4763 36.4364 20.8553 36.5301 36.602 21.1852 0.757366 23.1181 1.53395 23.5742 2.32946 24.0632 3.14342 24.5823 3.97517 25.1281 4.82385 25.697 5.68845 26.2855 6.56785 26.89 7.46056 27.5071 8.36487 28.1332 9.27906 28.765 10.2012 29.3995 11.1293 30.0338 12.061 30.6653 12.9937 31.2913 13.9244 31.9092 14.8497 32.5163 15.7654 33.1097 16.6667 33.6866 17.5487 34.2443 18.403 34.7836 19.1273 35.3006 19.6406 35.679 20.0626 35.832 20.4712 35.9053 20.8639 35.9962 21.2234 36.0769 21.5842 36.1693 36.2719 21.9144 0.768575 22.3496 1.55611 22.7867 2.36229 23.2571 3.18661 23.758 4.02843 24.2863 4.88686 24.8386 5.76087 25.4115 6.64932 26.0016 7.55093 26.6055 8.46407 27.2201 9.38703 27.842 10.318 28.4685 11.2551 29.0968 12.1961 29.7243 13.1388 30.3486 14.0805 30.9674 15.0184 31.5784 15.9491 32.179 16.8688 32.767 17.7732 33.3399 18.6605 33.8964 19.5219 34.4392 20.2364 34.9645 20.7436 35.3248 21.1612 35.4877 21.5741 35.5833 21.9728 35.6783 22.3854 35.7567 35.8674 22.7899 0.77846 21.5711 1.57568 21.9895 2.39132 22.4414 3.22489 22.9244 4.07572 23.4354 4.94296 23.9713 5.82561 24.5289 6.72248 25.1047 7.63231 25.6957 8.55364 26.2988 9.48479 26.9109 10.4241 27.5292 11.3696 28.1512 12.3195 28.7744 13.2717 29.3965 14.2238 30.0153 15.1735 30.6287 16.1179 31.2345 17.0542 31.8307 17.9791 32.415 18.89 32.9855 19.7882 33.541 20.663 34.0897 21.3639 34.6238 21.8616 34.9901 22.2835 35.1614 22.6686 35.2931 23.032 35.3933 35.4956 23.4037 0.786928 20.7842 1.59241 21.184 2.41612 21.6177 3.25756 22.083 4.11605 22.5769 4.99077 23.0966 5.8807 23.6389 6.78467 24.2008 7.70141 24.779 8.62953 25.3706 9.56744 25.973 10.5135 26.5832 11.4659 27.1988 12.4229 27.8174 13.3824 28.4369 14.3425 29.0552 15.3008 29.6703 16.2551 30.2802 17.2027 30.8831 18.1407 31.4769 19.0662 32.06 19.9765 32.6308 20.8772 33.189 21.7524 33.7486 22.434 34.3085 22.9027 34.6927 23.337 34.8588 23.7324 34.9979 35.1248 24.1033 0.793839 19.9903 1.60609 20.3717 2.43637 20.7874 3.2842 21.2351 4.14892 21.7122 5.02971 22.2158 5.92557 22.7431 6.83535 23.291 7.75779 23.8565 8.69149 24.4369 9.63492 25.0295 10.5864 25.6317 11.5442 26.2409 12.5066 26.8551 13.4716 27.4719 14.4373 28.0895 15.4016 28.706 16.3624 29.3195 17.3172 29.9282 18.2636 30.5306 19.1988 31.1248 20.12 31.7096 21.0249 32.2841 21.9252 32.8483 22.8072 33.4265 23.4979 34.002 23.9515 34.4051 24.3807 34.5687 34.7061 24.7994 0.799429 19.1909 1.61707 19.5541 2.45258 19.9519 3.30549 20.3822 4.17514 20.8426 5.06071 21.3303 5.96122 21.8426 6.87551 22.3767 7.80228 22.9297 8.74015 23.4991 9.68762 24.0821 10.6431 24.6763 11.6048 25.2792 12.5711 25.8888 13.5401 26.5029 14.5099 27.1197 15.4786 27.7373 16.4441 28.354 17.4042 28.9681 18.3568 29.578 19.2994 30.1822 20.2298 30.7793 21.1456 31.3683 22.0449 31.949 22.9468 32.5245 23.8364 33.1124 24.5205 33.7211 24.9572 34.132 34.3154 25.3479 0.803419 18.3875 1.62489 18.7326 2.46407 19.1127 3.32048 19.5258 4.19351 19.9695 5.08234 20.4414 5.986 20.9389 6.90335 21.4593 7.83314 22 8.77397 22.5582 9.72437 23.1317 10.6827 23.718 11.6472 24.3147 12.6161 24.9199 13.5876 25.5314 14.5599 26.1474 15.5311 26.7661 16.4992 27.3859 17.4621 28.0051 18.4179 28.6223 19.3642 29.2358 20.2989 29.8445 21.2201 30.4472 22.1258 31.0433 23.017 31.6333 23.9115 32.218 24.803 32.8296 25.4809 33.454 33.8971 25.8992 0.805971 17.5815 1.6298 17.9088 2.47117 18.2714 3.32965 18.6673 4.20464 19.0945 5.09536 19.5507 6.00085 20.0334 6.92 20.5402 7.85152 21.0684 8.79402 21.6157 9.746 22.1797 10.7058 22.7581 11.6718 23.3488 12.6421 23.9496 13.6148 24.5586 14.5882 25.174 15.5604 25.794 16.5293 26.417 17.493 27.0415 18.4494 27.6658 19.3966 28.2886 20.3325 28.9086 21.2552 29.5245 22.163 30.1355 23.0552 30.741 23.9321 31.3411 24.8212 31.9405 25.7034 32.5719 33.2313 26.3692 0.806964 16.7745 1.63158 17.0842 2.47358 17.4294 3.33256 17.8083 4.20798 18.2191 5.09908 18.6596 6.00493 19.1276 6.92443 19.6207 7.85629 20.1366 8.79911 20.6729 9.75136 21.2274 10.7114 21.7981 11.6775 22.3827 12.6479 22.9792 13.6207 23.5858 14.594 24.2007 15.5658 24.8222 16.5342 25.4486 17.4972 26.0785 18.4527 26.7103 19.3987 27.3426 20.3332 27.974 21.2544 28.6034 22.1605 29.2294 23.0501 29.8514 23.9225 30.4687 24.7804 31.0827 25.6532 31.6991 32.3684 26.5161 0.806323 15.9682 1.63008 16.2604 2.47103 16.5884 3.32886 16.9505 4.20307 17.3449 5.09294 17.7698 5.99758 18.2229 6.91591 18.7023 7.8467 19.2058 8.78857 19.731 9.73999 20.276 10.6993 20.8387 11.6648 21.4172 12.6345 22.0095 13.6065 22.6138 14.5788 23.2284 15.5493 23.8516 16.5161 24.4819 17.477 25.1176 18.4301 25.7572 19.3732 26.3995 20.3043 27.0429 21.2214 27.6862 22.1227 28.3281 23.0065 28.9676 23.8714 29.6038 24.7175 30.2366 25.5493 30.8673 31.5098 26.4079 0.804057 15.1642 1.62529 15.4392 2.46354 15.7502 3.31857 16.0955 4.18997 16.4735 5.07708 16.8826 5.97907 17.321 6.8949 17.7865 7.82336 18.2773 8.76304 18.7914 9.7124 19.3267 10.6698 19.8813 11.6334 20.4536 12.6012 21.0417 13.5714 21.6437 14.5418 22.258 15.5104 22.8831 16.4749 23.5173 17.4332 24.1593 18.3831 24.8074 19.3224 25.4602 20.2489 26.1164 21.1605 26.7746 22.0553 27.4334 22.9312 28.0916 23.7867 28.7483 24.6207 29.4026 25.4334 30.0546 30.7052 26.238 0.800065 14.3641 1.61701 14.6222 2.45079 14.9164 3.30125 15.245 4.16809 15.6067 5.05072 16 5.9484 16.4233 6.86012 16.8748 7.78472 17.3527 8.72082 17.8552 9.66688 18.3806 10.6212 18.927 11.582 19.4928 12.5473 20.0763 13.5151 20.6759 14.4832 21.2899 15.4494 21.9169 16.4113 22.5554 17.3666 23.2039 18.3131 23.8609 19.2482 24.5251 20.1698 25.1949 21.0754 25.869 21.9629 26.5459 22.8302 27.2244 23.6753 27.9031 24.4968 28.5811 25.2939 29.2576 29.9322 26.0669 0.79432 13.5698 1.60519 13.8114 2.43267 14.0889 3.27676 14.4009 4.13725 14.7462 5.01367 15.1236 5.90535 15.5316 6.81138 15.9688 7.73064 16.4335 8.66182 16.9241 9.60344 17.439 10.5538 17.9766 11.5112 18.5355 12.4735 19.1141 13.4385 19.7109 14.4039 20.3245 15.3674 20.9534 16.3267 21.5962 17.2791 22.2515 18.2221 22.9179 19.1532 23.5939 20.0699 24.2782 20.9696 24.9693 21.8498 25.6656 22.7084 26.3658 23.5431 27.0684 24.3521 27.7721 25.1341 28.4756 29.1778 25.8885 0.786807 12.783 1.58979 13.0084 2.40915 13.2695 3.24505 13.565 4.09742 13.8938 4.96592 14.2551 5.84998 14.6475 6.7488 15.0699 7.66135 15.5209 8.58638 15.999 9.52243 16.5029 10.4678 17.0312 11.4207 17.5826 12.379 18.1557 13.3405 18.7493 14.303 19.362 15.2638 19.9925 16.2204 20.6395 17.1702 21.3017 18.1103 21.9778 19.038 22.6663 19.9504 23.3658 20.8447 24.0749 21.7183 24.792 22.5685 25.5156 23.393 26.244 24.1895 26.9756 24.9564 27.7088 28.4419 25.6923 0.777496 12.0055 1.57076 12.2151 2.38015 12.4601 3.20601 12.7392 4.04842 13.0514 4.90721 13.3963 5.78192 13.7728 6.67187 14.18 7.57614 14.6166 8.49355 15.0816 9.4227 15.5738 10.3619 16.092 11.3094 16.6351 12.2631 17.202 13.2208 17.7917 14.18 18.4028 15.1382 19.0344 16.0925 19.6852 17.0401 20.3542 17.978 21.04 18.903 21.7413 19.812 22.4568 20.7019 23.185 21.5697 23.9242 22.4125 24.6729 23.2273 25.4291 24.0118 26.1911 24.7636 26.9569 27.7244 25.4811 0.766375 11.2391 1.54808 11.4334 2.34564 11.6626 3.15961 11.9252 3.99026 12.2208 4.83755 12.549 5.70118 12.9092 6.58061 13.3006 7.47502 13.7222 8.38335 14.1733 9.3043 14.6528 10.2363 15.16 11.1776 15.6938 12.1262 16.2535 13.0797 16.8381 14.0356 17.4469 14.9912 18.0788 15.9435 18.7329 16.8894 19.4082 17.8257 20.1037 18.749 20.8181 19.6557 21.5501 20.5424 22.2983 21.4057 23.061 22.242 23.8365 23.0482 24.6229 23.8213 25.418 24.5588 26.2195 27.025 25.2582 0.753433 10.4857 1.52174 10.6651 2.30566 10.8787 3.10593 11.1249 3.92303 11.4037 4.75709 11.7149 5.60797 12.0583 6.47527 12.4333 7.35834 12.8392 8.25624 13.2754 9.16779 13.7413 10.0915 14.2363 11.0257 14.7596 11.9683 15.3109 12.917 15.8894 13.8693 16.4946 14.8223 17.1258 15.7729 17.7823 16.7179 18.4633 17.6536 19.168 18.5763 19.8954 19.4821 20.6442 20.3671 21.4133 21.2272 22.2009 22.0586 23.0051 22.8575 23.824 23.6204 24.655 24.3442 25.4956 26.343 25.0262 0.73865 9.74701 1.49175 9.912 2.26021 10.1102 3.04501 10.3401 3.84681 10.6019 4.66591 10.8958 5.50236 11.2219 6.35592 11.5797 7.2261 11.969 8.1121 12.3894 9.01288 12.8405 9.92708 13.3221 10.853 13.8337 11.7888 14.3751 12.7321 14.9461 13.6805 15.5463 14.6309 16.1753 15.5803 16.8329 16.525 17.5186 17.4612 18.2318 18.3848 18.9718 19.2914 19.7377 20.1765 20.5282 21.0354 21.3419 21.8637 22.1769 22.6569 23.0308 23.411 23.901 24.1221 24.7845 25.6779 24.7872 0.721992 9.02502 1.45807 9.17593 2.20929 9.35899 2.97687 9.57252 3.76163 9.81713 4.56408 10.0934 5.38441 10.4015 6.22258 10.7415 7.07824 11.1133 7.95079 11.5168 8.83933 11.952 9.74266 12.4187 10.6593 12.9171 11.5874 13.447 12.5248 14.0087 13.469 14.6021 14.417 15.2273 15.3655 15.8844 16.3108 16.5733 17.2488 17.2938 18.1748 18.0457 19.0841 18.8284 19.9714 19.6409 20.8315 20.4818 21.6589 21.3494 22.4486 22.2412 23.1954 23.1542 23.8951 24.0848 25.0291 24.5438 0.703429 8.32159 1.42068 8.45868 2.15291 8.62676 2.90153 8.82391 3.66753 9.05112 4.45159 9.30934 5.25409 9.59904 6.07516 9.92046 6.91465 10.2738 7.77213 10.6593 8.6469 11.0772 9.53796 11.5277 10.444 12.011 11.3633 12.5277 12.294 13.078 13.2336 13.6626 14.179 14.2819 15.1271 14.9363 16.0738 15.6265 17.0148 16.3528 17.9452 17.1153 18.8596 17.9141 19.7519 18.7485 20.616 19.6177 21.4456 20.5198 22.2344 21.4524 22.9763 22.4122 23.666 23.3951 24.3961 24.299 0.682945 7.63865 1.37959 7.76204 2.09107 7.91527 2.81896 8.09602 3.56443 8.30566 4.3283 8.54548 5.11114 8.8162 5.91326 9.11834 6.73471 9.45237 7.57528 9.81877 8.43447 10.218 9.31152 10.6506 10.2053 11.1172 11.1145 11.6185 12.0372 12.1553 12.9712 12.7286 13.9137 13.3393 14.8614 13.9886 15.8105 14.6775 16.7561 15.4071 17.6932 16.1783 18.6154 16.9918 19.5162 17.8477 20.3883 18.7456 21.224 19.6841 22.0157 20.6607 22.7559 21.672 23.438 22.713 23.7776 24.0565 0.66057 6.97808 1.33483 7.08778 2.0238 7.2263 2.72914 7.39068 3.45217 7.58263 4.19388 7.80377 4.95501 8.05507 5.73606 8.33729 6.53728 8.65115 7.35867 8.99737 8.2 9.37668 9.06076 9.78987 9.94015 10.2378 10.8371 10.7216 11.7501 11.2423 12.6772 11.8014 13.6159 12.4006 14.5631 13.0414 15.515 13.7257 16.4667 14.4554 17.4126 15.2324 18.3461 16.0583 19.2595 16.9343 20.1443 17.8608 20.9914 18.837 21.7912 19.8609 22.5345 20.9287 23.2127 22.0348 23.1716 23.8188 0.636393 6.34168 1.28653 6.43764 1.95112 6.56171 2.63195 6.70985 3.33046 6.88411 4.0478 7.08643 4.78486 7.31801 5.54234 7.57981 6.32069 7.8728 7.12016 8.1979 7.94077 8.55607 8.78234 8.9483 9.64444 9.37572 10.5264 9.83965 11.4271 10.3416 12.3451 10.8834 13.2784 11.4673 14.224 12.0958 15.1784 12.7713 16.1369 13.4969 17.0937 14.2756 18.0415 15.1105 18.972 16.0039 19.8751 16.9576 20.74 17.9721 21.5549 19.046 22.3079 20.1757 22.9878 21.3548 22.574 23.5854 0.610566 5.73112 1.2348 5.81341 1.87307 5.92345 2.52725 6.05566 3.19892 6.21244 3.88936 6.396 4.59963 6.60774 5.33059 6.84885 6.08292 7.12047 6.85711 7.42372 7.65349 7.75969 8.47224 8.12955 9.31337 8.53459 10.1767 8.97635 11.0616 9.45667 11.9672 9.97778 12.8921 10.5424 13.834 11.1539 14.7896 11.8156 15.7546 12.5319 16.7232 13.3071 17.6879 14.1457 18.6395 15.0523 19.5667 16.0304 20.4566 17.0822 21.2946 18.208 22.0656 19.4047 22.7549 20.6656 21.9791 23.3498 0.583272 5.14785 1.17981 5.21687 1.78964 5.31362 2.41485 5.43045 3.05712 5.57017 3.71784 5.73528 4.39823 5.92734 5.09934 6.14774 5.82204 6.39777 6.56708 6.67867 7.33515 6.99163 8.12682 7.33787 8.94262 7.71879 9.78286 8.1361 10.6477 8.59187 11.5368 9.08869 12.4494 9.62978 13.3841 10.2192 14.3382 10.8615 15.3078 11.5623 16.2876 12.3273 17.2701 13.1632 18.2456 14.0768 19.2017 15.0743 20.1233 16.1606 20.993 17.3383 21.7915 18.6063 22.4992 19.9578 21.3793 23.099 0.554672 4.59317 1.12162 4.64992 1.70083 4.73441 2.29463 4.83666 2.90479 4.96001 3.53282 5.10724 4.18009 5.28008 4.84778 5.48004 5.537 5.70855 6.24881 5.96686 6.98425 6.25619 7.74435 6.57776 8.53016 6.93299 9.34261 7.32365 10.1825 7.752 11.0503 8.22091 11.946 8.73408 12.8689 9.29627 13.8172 9.91326 14.7878 10.5916 15.7761 11.3389 16.7753 12.1641 17.7754 13.0767 18.7634 14.0863 19.7223 15.2016 20.6315 16.4291 21.4668 17.771 22.2027 19.2219 20.7663 22.8157 0.524858 4.06832 1.06034 4.11443 1.60676 4.18799 2.16678 4.27664 2.74222 4.38456 3.33469 4.51477 3.94567 4.6691 4.57654 4.84918 5.22864 5.05645 5.90335 5.29215 6.60211 5.55743 7.32642 5.85345 8.07786 6.18155 8.85798 6.54353 9.66823 6.94176 10.5098 7.37935 11.3834 7.86051 12.289 8.39066 13.2259 8.9763 14.1924 9.62514 15.1848 10.3466 16.1971 11.1518 17.2201 12.0537 18.2405 13.0659 19.2399 14.2023 20.1943 15.4747 21.075 16.8904 21.8486 18.4483 20.1317 22.4832 0.493859 3.57446 0.996136 3.61216 1.50787 3.67626 2.03209 3.75242 2.5706 3.84605 3.12508 3.9603 3.69714 4.09704 4.28836 4.25796 4.90035 4.44446 5.53484 4.65766 6.19368 4.8986 6.87883 5.16829 7.59238 5.46801 8.33636 5.79954 9.11275 6.16537 9.92318 6.56892 10.769 7.01465 11.6515 7.5082 12.5712 8.05663 13.5274 8.66892 14.5178 9.35619 15.5377 10.1319 16.5791 11.0122 17.6294 12.0156 18.6696 13.162 19.6732 14.4711 20.6061 15.9575 21.4255 17.6288 19.4676 22.0895 0.461719 3.11274 0.929443 3.14443 1.40518 3.20052 1.89222 3.26538 2.39231 3.34596 2.90719 3.44542 3.43861 3.56562 3.98836 3.70821 4.55833 3.87448 5.15062 4.06537 5.76746 4.28176 6.41119 4.52456 7.08423 4.79498 7.78887 5.09489 8.52749 5.42676 9.3024 5.794 10.1159 6.20119 10.97 6.65406 11.8664 7.16025 12.8055 7.72976 13.7867 8.37508 14.8069 9.11171 15.86 9.95901 16.935 10.9407 18.0137 12.0833 19.0676 13.4172 20.0578 14.9673 20.93 16.7567 18.7667 21.6309 0.428629 2.68411 0.861122 2.71194 1.30035 2.76129 1.74975 2.81597 2.21091 2.88481 2.68565 2.97069 3.17585 3.07541 3.68354 3.20052 4.21088 3.34715 4.76022 3.51602 5.33409 3.7079 5.93499 3.92365 6.56556 4.1644 7.22861 4.43185 7.92694 4.72843 8.66339 5.05755 9.44082 5.42375 10.2619 5.83295 11.1291 6.29306 12.0442 6.81464 13.0082 7.4111 14.0202 8.09972 15.0766 8.90264 16.1686 9.84868 17.2805 10.9714 18.3832 12.3145 19.4351 13.9154 20.3665 15.8252 18.0213 21.1119 0.395043 2.28906 0.792478 2.31451 1.19564 2.35813 1.60792 2.4037 2.03071 2.46202 2.46591 2.53548 2.91554 2.62578 3.38178 2.73428 3.867 2.86193 4.37362 3.0094 4.90439 3.17713 5.46219 3.36585 6.04991 3.57669 6.67055 3.8112 7.32718 4.0718 8.02294 4.3618 8.76107 4.68562 9.54479 5.04923 10.3773 5.46054 11.2617 5.9302 12.2007 6.47212 13.1956 7.10484 14.2457 7.85255 15.3454 8.74895 16.4832 9.83371 17.6307 11.1669 18.7474 12.7987 19.7452 14.8274 17.222 20.5445 0.361679 1.92739 0.725099 1.95109 1.09354 1.98968 1.47014 2.0271 1.85611 2.07605 2.25341 2.13818 2.66412 2.21507 3.09048 2.30793 3.53496 2.41745 4.00027 2.5441 4.48924 2.68815 5.00485 2.85024 5.55011 3.03143 6.12811 3.2332 6.74205 3.45786 7.39529 3.70856 8.09137 3.98954 8.83401 4.30659 9.62714 4.6674 10.475 5.08237 11.3817 5.56538 12.3509 6.13566 13.3851 6.81837 14.4824 7.65159 15.6374 8.67878 16.8239 9.98036 18.0084 11.6143 19.0805 13.7553 16.3534 19.9491 0.329396 1.59799 0.660575 1.61991 0.996383 1.65388 1.33948 1.684 1.69092 1.72461 2.05269 1.77641 2.42687 1.84089 2.81578 1.91902 3.22199 2.01124 3.64824 2.11785 4.09734 2.23904 4.57223 2.37536 5.07593 2.52773 5.61155 2.69758 6.18238 2.88703 6.79191 3.09902 7.44393 3.33752 8.14257 3.60795 8.89243 3.91754 9.69861 4.27619 10.5667 4.69725 11.5024 5.19996 12.5118 5.80906 13.5969 6.56646 14.7602 7.51544 15.9793 8.76127 17.2354 10.3581 18.3943 12.5965 15.3884 19.3593 0.299 1.29899 0.600205 1.3187 0.905946 1.34814 1.21815 1.37181 1.53781 1.40494 1.86691 1.44731 2.20753 1.50027 2.56199 1.56456 2.93281 1.64042 3.32265 1.72801 3.73423 1.82746 4.17037 1.93921 4.63401 2.06409 5.1282 2.20339 5.65622 2.35901 6.22164 2.5336 6.82842 2.73074 7.48104 2.95533 8.18464 3.21394 8.94515 3.51569 9.76947 3.87293 10.6653 4.30417 11.6421 4.83225 12.7064 5.5021 13.8702 6.3517 15.1166 7.5148 16.4508 9.02393 17.7219 11.3254 14.2772 18.833 0.271074 1.02792 0.544814 1.04496 0.823287 1.06966 1.10739 1.08771 1.39823 1.1141 1.69773 1.1478 2.00792 1.19008 2.33105 1.24143 2.66952 1.30195 3.02583 1.3717 3.40255 1.45075 3.80231 1.53945 4.2279 1.63851 4.68223 1.74905 5.16851 1.87273 5.69031 2.01181 6.25167 2.16938 6.85732 2.34968 7.51285 2.5584 8.22492 2.80362 9.00162 3.09622 9.85258 3.45321 10.7905 3.89434 11.827 4.46555 12.9839 5.19482 14.2565 6.24222 15.6766 7.60388 17.112 9.88999 12.9365 18.4527 0.245916 0.782 0.494724 0.796154 0.74874 0.815647 1.00749 0.828953 1.27243 0.849166 1.54532 0.874907 1.82811 0.907295 2.12293 0.946606 2.43202 0.992862 2.75769 1.04603 3.10229 1.10614 3.46825 1.17349 3.85812 1.24864 4.27465 1.33252 4.72091 1.42647 5.20037 1.53234 5.71711 1.65265 6.27596 1.79083 6.88281 1.95155 7.54493 2.1415 8.27145 2.3697 9.0738 2.65086 9.96717 3.00097 10.9697 3.46307 12.1106 4.05384 13.41 4.94284 14.9184 6.09549 16.6193 8.18912 11.2548 18.301 0.223656 0.558344 0.449844 0.569966 0.68204 0.583451 0.918009 0.592983 1.15972 0.607459 1.40873 0.625892 1.66689 0.649138 1.93617 0.677321 2.21864 0.710397 2.51637 0.748297 2.83148 0.791037 3.16615 0.838819 3.52271 0.892084 3.9037 0.951531 4.31199 1.01817 4.75094 1.0934 5.22449 1.17909 5.73749 1.27783 6.29592 1.39312 6.90741 1.53002 7.58173 1.69538 8.33194 1.90065 9.1749 2.15801 10.135 2.50296 11.2456 2.94323 12.5604 3.62803 14.1431 4.51284 16.21 6.12221 9.11088 18.3539 0.204342 0.354002 0.409725 0.364583 0.622485 0.370691 0.837929 0.377539 1.05878 0.386611 1.28632 0.39835 1.52228 0.413173 1.76849 0.431119 2.02677 0.452111 2.29899 0.476079 2.58701 0.50302 2.89276 0.533069 3.21832 0.566521 3.56601 0.603842 3.93848 0.645703 4.33886 0.693018 4.77094 0.747018 5.23938 0.809388 5.75007 0.882432 6.31063 0.969458 6.93099 1.07502 7.62496 1.20668 8.4104 1.37257 9.31583 1.59753 10.3761 1.88296 11.6675 2.33663 13.2801 2.90028 15.6339 3.76839 6.49157 18.2532 0.187653 0.166349 0.373628 0.178607 0.569157 0.175162 0.765952 0.180745 0.967956 0.184606 1.17606 0.190246 1.39191 0.197323 1.61714 0.205885 1.85339 0.215865 2.10225 0.227215 2.36535 0.239929 2.64434 0.254072 2.94107 0.269791 3.2576 0.287316 3.59632 0.306976 3.96013 0.329216 4.35251 0.35463 4.77787 0.38403 5.24177 0.418536 5.75151 0.459714 6.31669 0.509846 6.95093 0.572437 7.6719 0.651597 8.50954 0.759892 9.4969 0.895598 10.7156 1.1179 12.2465 1.36942 14.5827 1.43222 3.60847 17.4658 0.166349 0.344957 0.520118 0.700863 0.88547 1.07572 1.27304 1.47892 1.69479 1.922 2.16193 2.416 2.68579 2.97311 3.28009 3.6093 3.96393 4.34796 4.7665 5.22621 5.73606 6.3085 6.96009 7.71998 8.61558 9.73348 11.1029 12.5351 16.1436 1.13581 54.129 1.14998 54.1261 1.15963 54.1306 1.15661 54.1433 1.14947 54.1474 1.15461 54.1351 1.17011 54.1247 1.17962 54.1307 1.17179 54.1481 1.15323 54.1588 1.14474 54.1487 1.15261 54.1324 1.15694 54.1359 1.13644 54.1607 1.10788 54.1688 1.10214 54.146 1.12057 54.1218 1.14188 54.1189 1.14561 54.1365 1.14913 54.1367 1.17602 54.1134 1.22159 54.0947 1.26664 54.0952 1.28846 54.1184 1.29503 54.1337 1.29746 54.1378 1.29678 54.1409 1.29749 54.1395 1.31706 54.1207 1.35285 54.1044 1.39522 54.0979 1.42289 54.1126 1.42698 54.1361 1.42948 54.1377 1.43297 54.1367 1.43703 54.1362 1.44151 54.1358 1.44622 54.1355 1.45111 54.1354 1.45609 54.1353 1.46094 54.1354 1.46529 54.1359 1.46852 54.137 1.47051 54.1382 1.47153 54.1392 1.47215 54.1396 1.47255 54.1398 1.47312 54.1397 1.4734 54.14 1.47359 54.14 1.47346 54.1404 1.47313 54.1406 1.47225 54.1411 1.47077 54.1417 1.46879 54.1422 1.46632 54.1427 1.46286 54.1437 1.45897 54.1441 1.45411 54.1451 1.44886 54.1455 1.44285 54.1462 1.43616 54.1469 1.42907 54.1473 1.42098 54.1483 1.41262 54.1486 1.40337 54.1495 1.39371 54.1499 1.38268 54.1513 1.37175 54.1512 1.35992 54.1521 1.34765 54.1525 1.33554 54.1523 1.32064 54.1551 1.30731 54.1536 1.29187 54.1557 1.2767 54.1554 1.26162 54.1553 1.24436 54.1575 1.22706 54.1575 1.21219 54.1551 1.19258 54.1598 1.17033 54.1625 1.14824 54.1623 1.12604 54.1624 1.10399 54.1623 1.08195 54.1623 1.06618 54.156 1.04989 54.1565 1.0289 54.1612 1.00558 54.1636 0.98142 54.1644 0.95791 54.1637 0.934878 54.1633 0.911871 54.1632 0.888569 54.1635 0.865346 54.1635 0.841284 54.1643 0.817546 54.164 0.793305 54.1645 0.768973 54.1646 0.744483 54.1647 0.719831 54.1649 0.6951 54.165 0.670209 54.1651 0.645431 54.165 0.620511 54.1652 0.595929 54.1648 0.571185 54.165 0.546741 54.1647 0.52234 54.1646 0.498114 54.1645 0.473844 54.1645 0.449726 54.1644 0.425509 54.1645 0.401372 54.1644 0.377192 54.1644 0.353065 54.1644 0.328997 54.1643 0.304842 54.1644 0.280672 54.1644 0.256379 54.1645 0.232121 54.1645 0.207787 54.1646 0.183318 54.1647 0.158652 54.1649 0.133939 54.1649 0.108633 54.1655 0.0822595 54.1666 0.0563674 54.1661 0.0286247 54.168 -0.000460864 54.1693 -0.0333529 54.1731 -0.0650311 54.1719 -0.104752 54.18 -0.140395 54.1759 -0.185817 54.1857 -0.226298 54.1807 -0.276924 54.1909 53.8633 3.3248 54.0901 3.35199 54.0989 3.37232 54.1102 3.40585 54.1097 3.46704 54.0862 3.53098 54.0712 3.56609 54.0896 3.57435 54.1225 3.58862 54.1338 3.64128 54.1061 3.71649 54.0735 3.76701 54.0819 3.78368 54.1192 3.81329 54.1311 3.871 54.1111 3.92547 54.0915 3.94827 54.099 3.95217 54.115 3.98641 54.1023 4.03883 54.0843 4.07348 54.0787 4.05839 54.1098 4.01649 54.1371 3.98915 54.1458 3.99783 54.125 4.01346 54.1222 4.03089 54.1235 4.06004 54.1104 4.08148 54.0992 4.0672 54.1187 4.02594 54.1391 3.96781 54.1707 3.95304 54.1509 3.95031 54.1405 3.94318 54.1439 3.93287 54.1465 3.92029 54.1483 3.90609 54.1497 3.89023 54.1512 3.87227 54.1532 3.85219 54.1555 3.8301 54.158 3.80692 54.1602 3.78346 54.1617 3.75983 54.1628 3.73542 54.164 3.71043 54.1648 3.68414 54.1659 3.6571 54.167 3.62878 54.1684 3.59948 54.1697 3.5689 54.1711 3.53741 54.1726 3.50505 54.1741 3.47173 54.1755 3.43716 54.1773 3.40223 54.1786 3.36595 54.1804 3.32926 54.1818 3.29123 54.1835 3.25236 54.1851 3.21281 54.1865 3.17161 54.1885 3.13029 54.1896 3.0871 54.1918 3.04366 54.1929 2.99815 54.1954 2.9542 54.1952 2.90692 54.1984 2.85928 54.1997 2.81093 54.2008 2.75874 54.2045 2.71125 54.2026 2.65828 54.2065 2.6075 54.2065 2.55252 54.2104 2.50006 54.2078 2.45029 54.2073 2.40099 54.2068 2.35222 54.2039 2.30848 54.2036 2.27053 54.2004 2.22892 54.2039 2.1795 54.2119 2.1266 54.2152 2.07868 54.2102 2.02496 54.2097 1.96669 54.2148 1.91785 54.2101 1.869 54.2124 1.81544 54.218 1.75984 54.2193 1.70311 54.22 1.64597 54.2204 1.58918 54.2203 1.53238 54.2203 1.47653 54.2201 1.42053 54.22 1.36515 54.2199 1.30997 54.2197 1.2552 54.2195 1.20076 54.2193 1.14664 54.2191 1.09291 54.2189 1.03941 54.2185 0.986402 54.2182 0.933582 54.2176 0.88134 54.2172 0.829499 54.2165 0.778553 54.2156 0.728518 54.2145 0.679716 54.2133 0.632016 54.2121 0.586122 54.2103 0.541203 54.2093 0.498412 54.2072 0.45632 54.2065 0.416077 54.2045 0.376645 54.2038 0.338794 54.2023 0.302212 54.2011 0.267349 54.1994 0.234038 54.1979 0.202302 54.1964 0.172443 54.1948 0.144704 54.1927 0.117673 54.1926 0.0959969 54.1883 0.0719779 54.1901 0.0475056 54.1924 0.0339671 54.1829 0.0178669 54.1892 0.00321434 54.1866 -0.0265049 54.2097 -0.0315318 54.1809 -0.0558689 54.21 -0.0682029 54.1931 -0.0725869 54.1952 53.7907 5.4503 54.0278 5.52123 54.028 5.60249 54.029 5.69417 54.018 5.76196 54.0184 5.78024 54.0529 5.7823 54.0876 5.82142 54.0833 5.91223 54.043 5.99873 54.0196 6.02277 54.0495 6.00906 54.0956 6.02296 54.1053 6.0731 54.081 6.12082 54.0634 6.15221 54.0601 6.17351 54.0777 6.20661 54.0819 6.22007 54.0888 6.19678 54.1076 6.1439 54.1316 6.13125 54.1224 6.16287 54.1055 6.21877 54.0899 6.23116 54.1126 6.22911 54.1242 6.22812 54.1245 6.20821 54.1303 6.15258 54.1549 6.12061 54.1507 6.12686 54.1329 6.17768 54.1199 6.2137 54.1149 6.21413 54.14 6.21316 54.1448 6.21205 54.1476 6.20968 54.1507 6.20522 54.1542 6.19859 54.1578 6.19027 54.1615 6.18058 54.1651 6.17006 54.1685 6.15923 54.171 6.14765 54.1733 6.13446 54.176 6.11859 54.1799 6.09951 54.1839 6.07702 54.1884 6.05177 54.1923 6.02388 54.1963 5.99382 54.1997 5.96156 54.2034 5.92728 54.2069 5.89104 54.2103 5.85273 54.2138 5.81238 54.2176 5.77033 54.2207 5.72626 54.2245 5.68052 54.2275 5.63282 54.2312 5.58344 54.2345 5.53231 54.2376 5.47957 54.2413 5.42539 54.2438 5.36991 54.2473 5.31307 54.2498 5.2554 54.2531 5.19559 54.255 5.13543 54.2586 5.07504 54.2601 5.01381 54.2621 4.95189 54.2665 4.88761 54.2669 4.82364 54.2705 4.76027 54.2698 4.69813 54.2725 4.63477 54.2711 4.56906 54.273 4.4982 54.2777 4.42151 54.2806 4.34038 54.2847 4.25756 54.2833 4.17423 54.2873 4.10054 54.2856 4.02244 54.2933 3.94023 54.2924 3.85543 54.2945 3.77818 54.292 3.69424 54.294 3.60976 54.2969 3.52824 54.2995 3.44616 54.3014 3.35956 54.3066 3.26952 54.3104 3.17745 54.3124 3.08419 54.3135 2.99073 54.3136 2.89609 54.3146 2.80089 54.315 2.70507 54.3156 2.60853 54.316 2.51149 54.3164 2.41388 54.3167 2.31592 54.3168 2.21744 54.317 2.11876 54.3168 2.01955 54.3168 1.92035 54.3164 1.8208 54.3161 1.7213 54.3151 1.62167 54.3141 1.5225 54.3125 1.42332 54.3112 1.32439 54.3093 1.22517 54.3085 1.12584 54.3065 1.02756 54.3047 0.930071 54.302 0.834486 54.2994 0.740776 54.296 0.649671 54.2922 0.561574 54.2875 0.47697 54.2825 0.396548 54.2769 0.320438 54.2709 0.250493 54.2626 0.184554 54.2585 0.125702 54.2471 0.0889953 54.2269 0.0397877 54.2417 -0.00347772 54.2261 -0.0383436 54.2241 -0.0852462 54.2335 -0.120938 54.2454 -0.192728 54.2527 -0.189863 54.2071 -0.240483 54.2437 -0.187486 54.1422 53.6032 7.00758 53.9555 7.05941 53.9761 7.11239 53.976 7.14844 53.982 7.15728 54.0096 7.18353 54.0266 7.26933 54.0018 7.38452 53.9682 7.45783 53.9697 7.46145 54.016 7.45621 54.0547 7.51081 54.041 7.61432 54.0018 7.70543 53.9899 7.77022 53.9986 7.80479 54.0256 7.84203 54.0405 7.87802 54.0459 7.89571 54.0711 7.93286 54.0704 7.99108 54.0733 8.04239 54.0711 8.06937 54.0785 8.06615 54.0931 8.07758 54.1012 8.10613 54.0957 8.12497 54.1056 8.13764 54.1176 8.18139 54.1111 8.23383 54.0982 8.2442 54.1225 8.2311 54.133 8.18107 54.1649 8.15918 54.1619 8.13995 54.1641 8.1174 54.1701 8.09157 54.1765 8.06365 54.1821 8.03386 54.1876 8.00228 54.1931 7.96894 54.1985 7.93392 54.2035 7.89705 54.2079 7.85796 54.2124 7.81658 54.2174 7.77329 54.2232 7.7279 54.2293 7.67953 54.2368 7.62949 54.2423 7.57782 54.2479 7.52366 54.2539 7.467 54.2601 7.40793 54.266 7.34651 54.2717 7.28291 54.2774 7.2175 54.283 7.14991 54.2883 7.08079 54.2936 7.00974 54.2986 6.93727 54.3037 6.8632 54.3086 6.78736 54.3134 6.71047 54.3182 6.63151 54.3228 6.55145 54.3273 6.46945 54.3318 6.38666 54.3359 6.30115 54.3405 6.21543 54.3443 6.12727 54.3483 6.03694 54.3524 5.94715 54.3563 5.85369 54.3604 5.75971 54.3645 5.66162 54.3679 5.56581 54.3683 5.46175 54.3752 5.3588 54.3759 5.25811 54.3784 5.15945 54.3792 5.06006 54.3841 4.95348 54.3898 4.85135 54.3894 4.73995 54.397 4.64034 54.3929 4.5335 54.3992 4.42927 54.3988 4.31179 54.4095 4.18843 54.4174 4.06856 54.4168 3.94777 54.4203 3.82103 54.4282 3.69507 54.4326 3.57177 54.4337 3.45103 54.4331 3.32914 54.4354 3.20665 54.4361 3.08222 54.4391 2.95802 54.4392 2.83248 54.4411 2.70715 54.4414 2.58113 54.4424 2.45522 54.4426 2.32931 54.4427 2.20344 54.4429 2.07819 54.4421 1.95304 54.442 1.82955 54.4399 1.70664 54.439 1.58596 54.4358 1.46684 54.4332 1.35168 54.4276 1.23964 54.4233 1.13231 54.4166 1.02822 54.4126 0.92691 54.4079 0.828501 54.4031 0.73228 54.3983 0.638341 54.3933 0.545923 54.3884 0.455003 54.3831 0.364776 54.3777 0.275034 54.3722 0.185402 54.3665 0.0954485 54.3608 0.00391309 54.3542 -0.0814198 54.3438 -0.178167 54.3439 -0.273721 54.3224 -0.337406 54.3053 -0.42433 54.313 -0.467841 54.2676 -0.583406 54.349 -0.551123 54.2131 -0.688467 54.39 -0.612597 54.1313 -0.902257 54.5333 -0.654907 53.8949 52.9483 8.44015 53.9001 8.5176 53.8987 8.59574 53.8979 8.66601 53.9117 8.76774 53.9078 8.91016 53.8842 9.03705 53.8749 9.09808 53.9071 9.11456 53.9532 9.16782 53.9628 9.28925 53.9333 9.41898 53.9112 9.48192 53.9389 9.50412 53.9677 9.51221 53.9905 9.52114 54.0166 9.55757 54.004 9.58699 54.0165 9.6256 54.0325 9.66313 54.0329 9.71214 54.0243 9.75146 54.0318 9.77791 54.052 9.79454 54.0765 9.80207 54.0936 9.80353 54.0942 9.81645 54.0927 9.84652 54.0875 9.87436 54.0833 9.87424 54.0984 9.88345 54.1133 9.88813 54.1283 9.9197 54.1334 9.94104 54.1406 9.95255 54.1526 9.96025 54.1625 9.96382 54.173 9.96276 54.1832 9.95738 54.193 9.94796 54.2025 9.93491 54.2115 9.91851 54.2199 9.89811 54.2283 9.87325 54.2372 9.84392 54.2467 9.81066 54.2564 9.77575 54.2642 9.74348 54.2691 9.7062 54.2796 9.66219 54.2919 9.61417 54.3019 9.56381 54.3104 9.51091 54.3189 9.45533 54.3273 9.39701 54.3358 9.33616 54.3439 9.27228 54.3521 9.2058 54.3601 9.13628 54.3681 9.0641 54.3759 8.98908 54.3836 8.9111 54.3914 8.83051 54.3988 8.7468 54.4065 8.66033 54.4138 8.57079 54.4213 8.47841 54.4283 8.38269 54.4363 8.28421 54.4428 8.18188 54.4506 8.0774 54.4569 7.9681 54.4655 7.85731 54.4711 7.73924 54.4826 7.62164 54.4855 7.49053 54.4994 7.36144 54.5043 7.22197 54.5154 7.07344 54.5269 6.91353 54.5391 6.75401 54.5436 6.60042 54.5434 6.44114 54.5487 6.29274 54.5454 6.13232 54.5533 5.97977 54.5518 5.81521 54.5633 5.66757 54.5572 5.53679 54.5481 5.40612 54.5474 5.27352 54.5529 5.1504 54.5513 5.03767 54.5453 4.92562 54.5458 4.80427 54.5545 4.67338 54.5663 4.53656 54.5729 4.39589 54.5797 4.25115 54.584 4.10419 54.5881 3.95336 54.5922 3.7998 54.5959 3.64309 54.5993 3.48433 54.6015 3.32287 54.6043 3.15967 54.6053 2.99384 54.6078 2.82629 54.6075 2.65723 54.608 2.4867 54.6063 2.31427 54.6057 2.1396 54.6023 1.96176 54.6011 1.78092 54.5975 1.5976 54.5959 1.41325 54.5922 1.22714 54.5893 1.04082 54.5846 0.853779 54.5804 0.666639 54.5755 0.480001 54.5698 0.296312 54.5614 0.115325 54.5532 -0.0586278 54.5404 -0.225663 54.5279 -0.383905 54.5124 -0.531213 54.4912 -0.658018 54.4707 -0.813865 54.4783 -0.932966 54.4244 -1.10409 54.4842 -1.19749 54.361 -1.31048 54.462 -1.46205 54.3647 -1.5342 54.4622 -1.77474 54.3718 -1.76019 54.5188 -1.35698 53.4917 51.5914 9.85736 53.7839 9.96708 53.789 10.0626 53.8023 10.1786 53.7957 10.2936 53.7928 10.3639 53.8139 10.3899 53.8488 10.432 53.865 10.528 53.8572 10.6489 53.8419 10.7292 53.8529 10.759 53.8814 10.7856 53.9123 10.8455 53.9077 10.9239 53.9122 11.0317 53.9088 11.1051 53.9306 11.1798 53.9418 11.2739 53.9385 11.3499 53.9569 11.4035 53.9708 11.4353 53.9999 11.4772 54.0101 11.5456 54.0081 11.6254 54.0139 11.6798 54.0398 11.7196 54.0529 11.7472 54.0599 11.7547 54.0758 11.7447 54.1084 11.7345 54.1235 11.7243 54.1384 11.7088 54.1489 11.6905 54.1589 11.6731 54.1699 11.6513 54.1842 11.6289 54.1954 11.6053 54.2068 11.5792 54.2191 11.5497 54.232 11.5166 54.2447 11.4793 54.2572 11.4376 54.27 11.3919 54.283 11.3429 54.2957 11.2915 54.3078 11.2312 54.3245 11.1524 54.3478 11.0698 54.3621 10.995 54.3668 10.9247 54.3722 10.8509 54.3842 10.7724 54.3974 10.6897 54.41 10.6033 54.4222 10.5132 54.434 10.4196 54.4457 10.3225 54.4571 10.2221 54.4685 10.1183 54.4797 10.0111 54.4908 9.90075 54.5018 9.78682 54.5127 9.66977 54.5235 9.54923 54.5343 9.42551 54.545 9.2985 54.5553 9.16857 54.5662 9.03601 54.5754 8.90033 54.5863 8.76075 54.5965 8.62181 54.6045 8.47912 54.6138 8.34214 54.6195 8.20159 54.6261 8.07119 54.6298 7.94321 54.6323 7.82841 54.6302 7.72523 54.6301 7.61978 54.6446 7.51232 54.6511 7.40261 54.6531 7.28842 54.6629 7.15564 54.6781 7.02029 54.6887 6.87761 54.6945 6.74103 54.6999 6.57582 54.7224 6.38735 54.7366 6.17917 54.7556 5.975 54.757 5.76553 54.7608 5.53797 54.7728 5.29563 54.7881 5.05016 54.7999 4.81989 54.7966 4.59756 54.7952 4.3881 54.7892 4.18312 54.789 3.98209 54.7891 3.78597 54.7883 3.592 54.7899 3.40294 54.7884 3.214 54.7904 3.02996 54.7884 2.8457 54.7896 2.66513 54.7884 2.48358 54.789 2.30336 54.7882 2.11998 54.7897 1.93782 54.7878 1.75076 54.7894 1.56507 54.7868 1.37382 54.7887 1.18565 54.7841 0.993583 54.7843 0.803932 54.7789 0.611792 54.7767 0.421751 54.7704 0.23303 54.7642 0.0460699 54.7567 -0.143865 54.7513 -0.332527 54.7419 -0.527543 54.7355 -0.727458 54.7278 -0.93739 54.7223 -1.17925 54.733 -1.41735 54.7088 -1.66007 54.721 -1.94526 54.7096 -2.1709 54.7098 -2.53756 54.7277 -2.74474 54.6692 -3.08128 54.7012 -3.29547 54.6764 -3.57993 54.6563 -2.97805 53.9169 -1.7397 52.2533 49.8517 10.8749 53.6608 10.9896 53.6742 11.1159 53.6761 11.2277 53.684 11.3202 53.7003 11.4195 53.7146 11.5471 53.7212 11.686 53.7261 11.8165 53.7268 11.9227 53.7357 12.0188 53.7568 12.1243 53.776 12.2529 53.7837 12.3575 53.8031 12.4637 53.806 12.5633 53.8092 12.6562 53.8377 12.7414 53.8566 12.8028 53.877 12.8593 53.9004 12.9183 53.9118 12.9745 53.9437 13.025 53.9596 13.0537 53.9794 13.065 54.0025 13.0946 54.0102 13.1267 54.0208 13.1398 54.0468 13.1442 54.0714 13.1753 54.0773 13.2098 54.0889 13.2487 54.0995 13.296 54.1016 13.3251 54.1298 13.3386 54.1564 13.3489 54.1739 13.3503 54.194 13.3439 54.2132 13.3313 54.2317 13.3137 54.2496 13.291 54.2674 13.2627 54.2855 13.2286 54.304 13.1885 54.3231 13.1412 54.3431 13.0849 54.3641 13.0316 54.3778 12.996 54.3834 12.9696 54.3885 12.9279 54.4085 12.8593 54.4408 12.7786 54.4649 12.696 54.4801 12.6113 54.4946 12.5236 54.5099 12.4322 54.5254 12.3372 54.5407 12.2381 54.5562 12.1351 54.5715 12.0279 54.5868 11.9169 54.6018 11.8021 54.6166 11.6835 54.6313 11.5615 54.6455 11.4365 54.6594 11.3083 54.6732 11.178 54.6856 11.0446 54.6996 10.9133 54.7066 10.7739 54.7257 10.6406 54.7297 10.4923 54.7528 10.3493 54.7569 10.1926 54.7762 10.0366 54.7822 9.86324 54.8031 9.67802 54.8175 9.46983 54.8384 9.24185 54.8581 9.02672 54.8597 8.8029 54.8749 8.5654 54.8906 8.32792 54.9004 8.09659 54.9094 7.86746 54.9178 7.64367 54.9182 7.43528 54.9083 7.25487 54.9028 7.08044 54.911 6.93379 54.9023 6.78689 54.9039 6.62796 54.9197 6.46374 54.9371 6.30487 54.947 6.16391 54.9409 6.01332 54.9472 5.85821 54.9504 5.67571 54.9717 5.48525 54.9794 5.27592 54.9984 5.06563 54.9986 4.84695 55.0086 4.6236 55.0117 4.39888 55.0151 4.16338 55.0239 3.92912 55.0238 3.68357 55.0339 3.444 55.0286 3.19566 55.0366 2.95529 55.03 2.70538 55.0378 2.46234 55.0324 2.21089 55.0382 1.96623 55.0334 1.71195 55.0384 1.46335 55.0329 1.20604 55.0362 0.950034 55.0327 0.686077 55.0344 0.414812 55.0355 0.135075 55.0365 -0.149677 55.0361 -0.447789 55.04 -0.753753 55.0414 -1.06973 55.0437 -1.38672 55.0393 -1.69326 55.0396 -2.01615 55.0317 -2.32267 55.0275 -2.63759 55.0246 -2.94329 55.0155 -3.20818 54.9926 -3.53662 54.9976 -3.81223 54.9768 -4.05263 54.9168 -3.72507 54.3287 -2.63773 52.8296 -1.13754 50.7531 48.7141 12.0002 53.4741 12.1743 53.5001 12.3359 53.5145 12.4957 53.5241 12.6574 53.5386 12.8108 53.5612 12.9587 53.5733 13.1026 53.5822 13.235 53.5944 13.3536 53.6172 13.4572 53.6531 13.5686 53.6646 13.6779 53.6744 13.7935 53.6876 13.8905 53.7089 13.9572 53.7425 14.0256 53.7692 14.1104 53.7719 14.1981 53.7893 14.2667 53.8318 14.3198 53.8586 14.3728 53.8907 14.4375 53.895 14.5264 53.8905 14.6123 53.9166 14.6728 53.9497 14.7254 53.9682 14.775 53.9972 14.8232 54.0233 14.8474 54.0531 14.8571 54.0792 14.8558 54.1009 14.8289 54.1285 14.7885 54.1702 14.7588 54.1861 14.7274 54.2053 14.6938 54.2275 14.6577 54.2494 14.6174 54.2719 14.5722 54.2949 14.5217 54.3179 14.4663 54.3409 14.4072 54.3631 14.3467 54.3836 14.2878 54.402 14.2299 54.422 14.1764 54.4314 14.1049 54.4548 13.9945 54.499 13.8646 54.5384 13.7456 54.5598 13.6465 54.564 13.545 54.5816 13.4354 54.6042 13.3198 54.6255 13.1993 54.6459 13.0744 54.6656 12.9454 54.6852 12.8127 54.7042 12.6763 54.7233 12.5364 54.7417 12.3932 54.7599 12.2467 54.7778 12.0966 54.7955 11.9433 54.8128 11.7861 54.8303 11.6239 54.8478 11.4599 54.8636 11.287 54.8796 11.1174 54.8953 10.9373 54.9098 10.7616 54.9285 10.5735 54.945 10.3896 54.9601 10.1999 54.9718 10.0224 54.9806 9.849 54.9909 9.702 54.9854 9.56118 54.9989 9.39579 55.0251 9.23929 55.0314 9.09489 55.035 8.95319 55.0421 8.79168 55.071 8.6257 55.0838 8.4503 55.0936 8.24486 55.1137 8.01476 55.1329 7.78966 55.1361 7.53437 55.1575 7.25922 55.1791 6.97868 55.2002 6.71197 55.2038 6.46387 55.1951 6.20125 55.2035 5.94301 55.2054 5.67066 55.2227 5.41916 55.2232 5.1684 55.2302 4.94524 55.2216 4.70922 55.2346 4.48429 55.2335 4.25335 55.2426 4.02201 55.2465 3.79834 55.2475 3.56613 55.256 3.34813 55.252 3.10984 55.2669 2.88078 55.2656 2.63309 55.2777 2.39656 55.2743 2.14374 55.2852 1.89776 55.2842 1.63853 55.2926 1.38516 55.2917 1.11839 55.2996 0.854322 55.3003 0.581841 55.3052 0.308044 55.3082 0.032918 55.3106 -0.245773 55.3152 -0.527691 55.318 -0.805837 55.3181 -1.0844 55.32 -1.36215 55.3215 -1.63726 55.3144 -1.90538 55.3077 -2.17386 55.3002 -2.45064 55.3043 -2.70857 55.2825 -2.99425 55.3012 -3.27166 55.27 -3.55132 55.2773 -3.85958 55.2851 -3.67062 54.7278 -2.78378 53.4419 -1.56843 51.6142 -0.624326 49.809 48.0898 12.8392 53.2853 13.0471 53.2923 13.2454 53.3162 13.4262 53.3433 13.5993 53.3655 13.7788 53.3817 13.9575 53.3946 14.1212 53.4185 14.2734 53.4422 14.4286 53.4619 14.5887 53.493 14.7322 53.5211 14.8596 53.547 14.9707 53.5764 15.0901 53.5895 15.2405 53.5921 15.3615 53.6482 15.4429 53.6905 15.4939 53.7383 15.567 53.7587 15.6744 53.7512 15.7956 53.7696 15.8643 53.8263 15.8832 53.8716 15.8998 53.9 15.928 53.9216 15.9492 53.9469 15.9565 53.9899 15.9804 53.9994 16.0178 54.0157 16.0376 54.0594 16.0543 54.0841 16.0661 54.1168 16.0981 54.1381 16.1189 54.1654 16.1306 54.1936 16.1307 54.2275 16.1206 54.2594 16.1025 54.29 16.0772 54.3202 16.0448 54.3502 16.0052 54.3805 15.9571 54.4111 15.8961 54.4446 15.8294 54.4688 15.7528 54.4986 15.651 54.5332 15.5262 54.5797 15.4227 54.6024 15.3594 54.6017 15.3175 54.6017 15.2449 54.6365 15.1468 54.6797 15.041 54.71 14.931 54.7354 14.8162 54.7607 14.6964 54.7855 14.5712 54.8104 14.442 54.8334 14.3066 54.8587 14.1695 54.8787 14.0235 54.9059 13.8802 54.9211 13.7236 54.9521 13.5746 54.9618 13.4088 54.9961 13.252 55.0046 13.0787 55.0368 12.9096 55.0487 12.7265 55.0784 12.5443 55.092 12.358 55.1148 12.1725 55.1305 11.9807 55.1519 11.7824 55.1701 11.5706 55.1924 11.3447 55.2168 11.0881 55.2421 10.8254 55.2616 10.5701 55.2804 10.3082 55.2933 10.0337 55.3095 9.76395 55.3118 9.52058 55.3143 9.28245 55.3219 9.05274 55.3234 8.8338 55.3327 8.61234 55.3544 8.38537 55.3631 8.17792 55.365 7.97272 55.3843 7.7908 55.3821 7.60276 55.3918 7.38586 55.412 7.16003 55.4294 6.91093 55.4545 6.67321 55.4604 6.42986 55.4665 6.18947 55.4706 5.92652 55.4845 5.67169 55.4895 5.40426 55.501 5.14092 55.506 4.87033 55.5171 4.59243 55.5254 4.31981 55.5286 4.03301 55.5388 3.75897 55.5409 3.47626 55.5484 3.20047 55.5535 2.90902 55.5657 2.62406 55.5702 2.32992 55.5784 2.0405 55.582 1.7413 55.5909 1.44733 55.5936 1.14748 55.6001 0.848346 55.6043 0.549444 55.6071 0.248775 55.6113 -0.0486004 55.6125 -0.344512 55.6139 -0.642881 55.6165 -0.938778 55.6159 -1.23349 55.6162 -1.53125 55.6122 -1.83734 55.6138 -2.1449 55.6077 -2.45192 55.6113 -2.78294 55.6135 -3.08101 55.5993 -3.42415 55.6131 -3.73036 55.5835 -3.61218 55.1669 -2.9087 54.0243 -1.89376 52.4269 -1.05994 50.7804 -0.435507 49.1846 47.6543 13.8355 53.0477 14.0371 53.0907 14.2469 53.1064 14.4752 53.115 14.6996 53.1411 14.908 53.1734 15.116 53.1866 15.3136 53.221 15.4835 53.2723 15.6211 53.3242 15.7703 53.3439 15.9329 53.3585 16.1196 53.3604 16.2783 53.4177 16.3921 53.4758 16.4519 53.5322 16.5408 53.5593 16.6628 53.5686 16.8039 53.5972 16.9046 53.658 16.9594 53.6965 17.0086 53.7203 17.0875 53.7475 17.2067 53.7524 17.2972 53.8095 17.3669 53.8519 17.4305 53.8834 17.4886 53.9317 17.5179 53.9701 17.5184 54.0152 17.51 54.0678 17.5071 54.0871 17.4962 54.1276 17.4439 54.1904 17.3827 54.2266 17.324 54.2523 17.2704 54.2812 17.2172 54.3125 17.1607 54.3466 17.0991 54.3818 17.0325 54.4169 16.9625 54.4505 16.8932 54.4804 16.8276 54.5102 16.7447 54.5516 16.6515 54.5918 16.5494 54.6353 16.479 54.65 16.4151 54.6664 16.31 54.7068 16.1481 54.7636 15.9656 54.819 15.8087 54.8367 15.6621 54.8566 15.5143 54.8833 15.3633 54.9117 15.209 54.9397 15.0508 54.9686 14.8873 54.9969 14.7211 55.0248 14.5462 55.0536 14.3732 55.0789 14.1874 55.1069 14.0101 55.1294 13.8177 55.1542 13.6381 55.1757 13.445 55.1977 13.2647 55.2172 13.0727 55.2407 12.8902 55.2609 12.6952 55.287 12.503 55.307 12.3006 55.3329 12.1024 55.35 11.8978 55.3747 11.7009 55.3894 11.5044 55.4133 11.3203 55.4261 11.1452 55.4367 10.9438 55.4818 10.7431 55.494 10.5496 55.5031 10.3396 55.5217 10.1034 55.5505 9.86198 55.5634 9.60792 55.5774 9.34354 55.597 9.07592 55.622 8.8025 55.6365 8.50943 55.6581 8.22908 55.6646 7.94434 55.6669 7.66906 55.6671 7.40217 55.6789 7.14336 55.6882 6.90449 55.6934 6.66659 55.6983 6.42689 55.7062 6.17634 55.7211 5.92912 55.7318 5.67298 55.7456 5.42005 55.7539 5.15816 55.7679 4.90379 55.7715 4.64652 55.7827 4.3822 55.793 4.11519 55.8058 3.84135 55.8147 3.56279 55.8269 3.28319 55.8331 3.00695 55.842 2.72737 55.8498 2.44307 55.8627 2.15824 55.8668 1.87363 55.8756 1.58811 55.8791 1.29987 55.8884 1.01396 55.8902 0.72272 55.8983 0.432347 55.9017 0.13905 55.9058 -0.153954 55.9069 -0.448869 55.9114 -0.742684 55.9097 -1.03882 55.9123 -1.34169 55.9151 -1.64336 55.9154 -1.95601 55.9204 -2.25927 55.9146 -2.55715 55.9114 -2.88059 55.9227 -3.2017 55.9342 -3.24199 55.6238 -2.73303 54.6579 -1.94843 53.2397 -1.25702 51.7355 -0.702196 50.2256 -0.28427 48.7667 47.37 14.6375 52.7589 14.9428 52.7854 15.2088 52.8404 15.4335 52.8903 15.6646 52.9099 15.8921 52.9459 16.0856 52.9931 16.2699 53.0367 16.4927 53.0494 16.7465 53.0705 16.9582 53.1321 17.1179 53.1989 17.2127 53.2656 17.3382 53.2922 17.5112 53.3028 17.7101 53.3334 17.8603 53.4091 17.9645 53.4643 18.0459 53.5158 18.1564 53.5475 18.2928 53.5601 18.3883 53.6248 18.4501 53.6857 18.4474 53.7551 18.4625 53.7943 18.4923 53.8221 18.5105 53.8651 18.5326 53.9097 18.5652 53.9375 18.5852 53.9952 18.5861 54.0669 18.5773 54.0958 18.5985 54.1065 18.6331 54.1558 18.6582 54.2015 18.6624 54.2481 18.6443 54.2992 18.6107 54.3462 18.5671 54.3902 18.5158 54.4331 18.4561 54.4765 18.3851 54.5216 18.292 54.5735 18.1838 54.6185 18.0695 54.6659 17.9664 54.6949 17.8859 54.7157 17.7773 54.7587 17.644 54.7997 17.5082 54.8426 17.3967 54.875 17.3211 54.8947 17.2329 54.9248 17.12 54.9695 16.9913 55.012 16.8504 55.0526 16.7092 55.0809 16.5532 55.1247 16.4014 55.1487 16.2346 55.1916 16.0713 55.217 15.8934 55.2568 15.7156 55.2847 15.5247 55.3203 15.3284 55.3505 15.1196 55.3845 14.9029 55.4144 14.6739 55.4462 14.4394 55.4752 14.1981 55.5022 13.9603 55.5247 13.7206 55.5467 13.4859 55.5677 13.2444 55.5915 13.0091 55.61 12.772 55.6265 12.532 55.6533 12.2787 55.6794 12.0212 55.6943 11.7887 55.7143 11.5515 55.7311 11.3047 55.7499 11.0546 55.7719 10.8166 55.7884 10.5641 55.8159 10.3178 55.8238 10.0766 55.8382 9.84225 55.8563 9.60368 55.8751 9.37599 55.8858 9.14767 55.893 8.89691 55.9176 8.62121 55.9428 8.34788 55.9522 8.06576 55.9703 7.77845 55.9807 7.4745 56.0023 7.16327 56.0175 6.85225 56.0321 6.54704 56.037 6.24594 56.0467 5.94434 56.0555 5.64564 56.0666 5.33377 56.0833 5.02803 56.0884 4.71784 56.1031 4.42066 56.1029 4.1139 56.1215 3.82022 56.1206 3.51124 56.1421 3.21361 56.1396 2.90838 56.155 2.61991 56.1511 2.3174 56.1693 2.02537 56.1676 1.7214 56.1831 1.42806 56.1817 1.12501 56.1933 0.83082 56.1925 0.534266 56.1982 0.239214 56.2009 -0.060876 56.207 -0.352341 56.2029 -0.647459 56.2048 -0.939397 56.2043 -1.22998 56.2057 -1.52775 56.2132 -1.82062 56.2132 -2.13725 56.2312 -2.46082 56.235 -2.78067 56.2425 -2.93411 56.0877 -2.58875 55.2784 -1.96403 54.0332 -1.38032 52.656 -0.885946 51.2411 -0.495268 49.8349 -0.202177 48.4736 47.1678 15.4139 52.5097 15.6553 52.544 15.9543 52.5414 16.2469 52.5977 16.4894 52.6674 16.7229 52.7125 16.9992 52.7168 17.2346 52.8013 17.4106 52.8734 17.5485 52.9326 17.7366 52.944 17.9912 52.9443 18.2487 53.0081 18.4387 53.1022 18.5721 53.1694 18.6702 53.2352 18.8054 53.274 18.9956 53.2741 19.1656 53.3458 19.2924 53.4207 19.366 53.4865 19.428 53.5627 19.5317 53.582 19.651 53.6358 19.7471 53.6983 19.8332 53.736 19.9132 53.7851 19.9624 53.8604 19.9639 53.9361 19.9584 54.0007 19.9743 54.051 19.9461 54.1241 19.863 54.1896 19.7758 54.2429 19.7037 54.2736 19.6391 54.3127 19.5803 54.358 19.5181 54.4083 19.4481 54.4603 19.3699 54.5112 19.2879 54.5585 19.2084 54.6011 19.141 54.6409 19.0936 54.6658 19.037 54.7225 18.9636 54.7684 18.8529 54.8264 18.72 54.8916 18.5645 54.9552 18.3926 55.0145 18.2071 55.0605 18.0058 55.096 17.7849 55.1457 17.5838 55.1705 17.3929 55.203 17.2084 55.2371 17.0132 55.2761 16.8326 55.3053 16.6386 55.3428 16.4571 55.373 16.2646 55.4095 16.0823 55.439 15.8917 55.4753 15.709 55.503 15.5206 55.539 15.3399 55.5652 15.1538 55.6005 14.9712 55.6288 14.7812 55.6652 14.5865 55.6969 14.3765 55.7347 14.1635 55.7598 13.934 55.7972 13.7013 55.8242 13.4474 55.8638 13.1801 55.8938 12.9098 55.9236 12.6512 55.938 12.3897 55.9558 12.1216 55.9823 11.858 55.9947 11.6004 56.0076 11.3459 56.0264 11.0847 56.0496 10.8289 56.0717 10.5586 56.0941 10.2829 56.1139 10.0176 56.1217 9.76597 56.1267 9.51376 56.138 9.23719 56.1695 8.97316 56.1817 8.70519 56.2108 8.42962 56.2278 8.1686 56.2313 7.89139 56.2579 7.63116 56.2625 7.37341 56.2752 7.11731 56.2882 6.83885 56.3154 6.56389 56.3217 6.27914 56.3403 6.00223 56.3435 5.73165 56.3539 5.44877 56.3713 5.17417 56.3777 4.8808 56.3963 4.60463 56.3977 4.30752 56.4177 4.03485 56.4148 3.7357 56.4388 3.45014 56.4406 3.14498 56.4563 2.85641 56.4579 2.55075 56.4732 2.25854 56.4753 1.95391 56.4863 1.65373 56.4935 1.34257 56.5037 1.03353 56.5073 0.722405 56.512 0.413817 56.5156 0.092009 56.5247 -0.23237 56.5292 -0.563123 56.535 -0.901405 56.5439 -1.24114 56.5529 -1.5928 56.5649 -1.92021 56.5586 -2.27544 56.5902 -2.53696 56.5041 -2.34677 55.8975 -1.88841 54.8201 -1.41116 53.556 -0.984115 52.229 -0.628083 50.8851 -0.348626 49.5554 -0.140912 48.2659 47.0269 16.3474 52.1184 16.6595 52.232 16.8867 52.3142 17.1397 52.3447 17.4719 52.3353 17.7712 52.4131 18.0085 52.4795 18.264 52.5458 18.593 52.5444 18.8821 52.6435 19.0708 52.7553 19.1708 52.8443 19.3125 52.8663 19.5104 52.9043 19.7453 52.9345 19.9522 53.0283 20.0954 53.1308 20.1673 53.2022 20.2417 53.2715 20.3583 53.3041 20.4952 53.3495 20.5956 53.4623 20.6663 53.5113 20.7186 53.5835 20.7544 53.6625 20.7613 53.7291 20.7547 53.7917 20.7763 53.8388 20.8009 53.9115 20.8206 53.981 20.8523 54.0193 20.9197 54.0567 20.9725 54.1369 20.9882 54.2272 20.9824 54.2794 20.9553 54.3398 20.9105 54.4028 20.8566 54.4623 20.7977 54.5191 20.7318 54.5772 20.6597 54.6306 20.5594 54.7014 20.4333 54.767 20.2558 54.8434 20.0591 54.9192 19.862 54.9655 19.6959 54.9924 19.5357 55.0518 19.395 55.0959 19.2756 55.1339 19.1673 55.1687 19.0535 55.2098 18.9503 55.2489 18.8171 55.3038 18.6821 55.3379 18.519 55.4002 18.3517 55.4433 18.1583 55.4987 17.9604 55.5408 17.7408 55.5926 17.5187 55.6316 17.2779 55.6799 17.0347 55.7186 16.7752 55.7624 16.5142 55.8001 16.242 55.8374 15.9705 55.8719 15.6983 55.901 15.4349 55.9285 15.1727 55.9592 14.9172 55.9902 14.6618 56.0151 14.4207 56.0383 14.1855 56.0594 13.9783 56.071 13.7821 56.09 13.5937 56.1121 13.3807 56.151 13.1701 56.1664 12.9347 56.2177 12.66 56.2693 12.38 56.2876 12.1076 56.2988 11.836 56.3213 11.5393 56.3684 11.2536 56.3798 10.9822 56.3853 10.6974 56.4065 10.3966 56.4274 10.0912 56.4435 9.80234 56.4583 9.49646 56.4876 9.21652 56.4907 8.92154 56.5228 8.60769 56.5451 8.31332 56.5523 7.99807 56.5777 7.6857 56.5876 7.37383 56.6001 7.09397 56.5953 6.78958 56.626 6.49517 56.6347 6.17612 56.6625 5.8639 56.6661 5.55615 56.6791 5.24304 56.6909 4.93642 56.7029 4.61969 56.7144 4.31432 56.7231 3.99511 56.734 3.699 56.7349 3.39683 56.7427 3.09634 56.7568 2.79121 56.763 2.49486 56.7696 2.19439 56.7758 1.89428 56.7865 1.59963 56.7881 1.30653 56.7968 1.00889 56.8049 0.708242 56.8127 0.403774 56.82 0.102553 56.8259 -0.202487 56.8342 -0.5142 56.8467 -0.826156 56.8559 -1.13655 56.8633 -1.44165 56.87 -1.76151 56.8785 -2.0452 56.8739 -2.03077 56.4896 -1.72884 55.5955 -1.35091 54.4422 -0.995173 53.2002 -0.685353 51.9191 -0.431025 50.6308 -0.234176 49.3586 -0.0917292 48.1234 46.9352 17.1367 51.8417 17.5041 51.8647 17.9143 51.9039 18.2323 52.0266 18.4548 52.1128 18.716 52.1519 19.0033 52.1922 19.2381 52.3111 19.3904 52.3921 19.5933 52.4406 19.8981 52.4505 20.2105 52.5319 20.4373 52.6394 20.5528 52.7888 20.6601 52.8272 20.802 52.8865 21.0049 52.9278 21.2192 52.9878 21.3695 53.1213 21.4697 53.2038 21.5403 53.279 21.6315 53.3711 21.7311 53.4117 21.8172 53.4974 21.9185 53.5612 22.029 53.6186 22.0989 53.7218 22.1224 53.8153 22.1413 53.8926 22.1372 53.9852 22.0589 54.0976 21.9495 54.166 21.8725 54.2139 21.8125 54.2871 21.7479 54.344 21.6804 54.4074 21.6041 54.479 21.5153 54.5511 21.4136 54.6208 21.3019 54.6888 21.1848 54.7478 21.0771 54.809 20.9627 54.8814 20.8688 54.9373 20.7812 55.0067 20.7016 55.0451 20.5784 55.1156 20.4327 55.1976 20.2863 55.2423 20.1374 55.2828 19.954 55.3522 19.7538 55.4099 19.5245 55.4783 19.2941 55.5341 19.0585 55.5736 18.8336 55.6251 18.6041 55.6728 18.3921 55.7107 18.1815 55.7514 17.9801 55.794 17.7728 55.8389 17.5767 55.876 17.3744 55.9209 17.1816 55.9552 16.9801 56.0015 16.7787 56.0387 16.5655 56.0852 16.3468 56.1197 16.1109 56.1644 15.8779 56.1922 15.6288 56.2394 15.3684 56.2755 15.0822 56.3246 14.7755 56.3661 14.4402 56.4063 14.0904 56.4398 13.7452 56.4573 13.418 56.4781 13.0879 56.4964 12.7967 56.509 12.5358 56.5303 12.2724 56.5509 12.01 56.5611 11.7634 56.5679 11.533 56.5989 11.2719 56.6408 10.9931 56.6641 10.71 56.6896 10.4301 56.7073 10.1435 56.73 9.85266 56.7492 9.58243 56.7578 9.3034 56.7697 9.04845 56.7777 8.78988 56.8037 8.52166 56.8205 8.25661 56.8428 7.98318 56.861 7.69643 56.8869 7.37841 56.9133 7.08929 56.9152 6.79867 56.9253 6.5252 56.936 6.23141 56.9599 5.94361 56.9669 5.6469 56.9876 5.35902 56.9908 5.06287 57.0106 4.77174 57.0142 4.46923 57.0365 4.16599 57.0381 3.85395 57.0548 3.55976 57.051 3.2522 57.0706 2.94677 57.075 2.63118 57.0914 2.32246 57.0952 1.99724 57.1133 1.67391 57.1201 1.348 57.1308 1.01614 57.1445 0.684057 57.1521 0.34796 57.162 0.010803 57.1714 -0.315211 57.1728 -0.634927 57.1756 -0.956474 57.1849 -1.2714 57.1849 -1.58328 57.1903 -1.74895 57.0395 -1.58128 56.322 -1.27824 55.2925 -0.979033 54.143 -0.709093 52.9303 -0.479599 51.6897 -0.2949 50.4461 -0.156227 49.2199 -0.0587645 48.026 46.8764 18.1176 51.4409 18.4146 51.5677 18.7014 51.6171 19.0853 51.6427 19.4471 51.7509 19.7336 51.8654 19.9688 51.957 20.3097 51.9702 20.6411 52.0607 20.8723 52.2094 21.0011 52.3217 21.1563 52.3767 21.4022 52.3936 21.6835 52.5075 21.9085 52.6022 22.0226 52.7723 22.0795 52.871 22.1504 52.917 22.2768 52.9948 22.444 53.0366 22.5842 53.1388 22.6779 53.2774 22.7392 53.3505 22.7878 53.4488 22.8052 53.5437 22.7932 53.6307 22.8056 53.7094 22.8007 53.8201 22.7938 53.8995 22.8235 53.9555 22.863 54.0581 22.8806 54.1484 22.8732 54.2212 22.8798 54.2806 22.8538 54.37 22.801 54.4602 22.7362 54.5438 22.6614 54.626 22.5752 54.707 22.4705 54.7935 22.3459 54.8724 22.1967 54.9582 22.0549 55.0232 21.9101 55.0822 21.7531 55.1637 21.5783 55.2199 21.4044 55.2895 21.2402 55.3618 21.062 55.4206 20.8557 55.4891 20.6518 55.5561 20.4573 55.6045 20.2839 55.6516 20.0985 55.7196 19.9051 55.7669 19.6977 55.8326 19.4825 55.888 19.2443 55.9489 18.9982 55.9975 18.7376 56.0545 18.4704 56.1062 18.1917 56.1547 17.9123 56.2002 17.6274 56.2401 17.3483 56.2807 17.0663 56.3207 16.7922 56.3593 16.5143 56.3976 16.2455 56.4332 15.9772 56.4605 15.7309 56.4857 15.4862 56.5201 15.2723 56.5385 15.0596 56.5788 14.8548 56.6111 14.6412 56.6534 14.4114 56.6871 14.1744 56.7152 13.9415 56.7294 13.6639 56.7865 13.3411 56.853 13.0107 56.8813 12.6811 56.8908 12.3215 56.9275 11.9711 56.9492 11.6628 56.9491 11.3814 56.9455 11.1017 56.9693 10.8014 57.0076 10.5051 57.0264 10.2015 57.0528 9.88621 57.0731 9.55046 57.1055 9.21039 57.1178 8.892 57.1221 8.55998 57.1525 8.24915 57.1536 7.94801 57.1621 7.66172 57.1732 7.37385 57.2012 7.07263 57.2164 6.75877 57.2392 6.45206 57.2427 6.15907 57.2529 5.85355 57.2724 5.56776 57.2734 5.26528 57.2933 4.97403 57.3018 4.67194 57.3163 4.39227 57.3162 4.08978 57.3406 3.79565 57.3489 3.48003 57.3666 3.17812 57.3725 2.86538 57.3878 2.56113 57.3956 2.25004 57.4063 1.95038 57.413 1.64677 57.4237 1.34696 57.4306 1.05827 57.4332 0.763114 57.4473 0.473336 57.4518 0.182538 57.4622 -0.118758 57.4741 -0.423722 57.4806 -0.727818 57.489 -1.03799 57.4951 -1.30965 57.462 -1.28296 57.0128 -1.08732 56.1263 -0.863081 55.0682 -0.646704 53.9266 -0.455011 52.7386 -0.29545 51.5301 -0.170776 50.3214 -0.0810665 49.1302 -0.025003 47.9699 46.8514 18.9538 51.0422 19.3774 51.1441 19.7024 51.292 19.9777 51.3675 20.3236 51.405 20.731 51.458 21.0447 51.6433 21.2447 51.7701 21.4646 51.8408 21.8111 51.8629 22.1382 51.9946 22.3546 52.1602 22.4698 52.2784 22.6108 52.3665 22.7781 52.4349 23.033 52.5173 23.3122 52.5918 23.4993 52.7299 23.5522 52.9419 23.5606 53.0283 23.564 53.1354 23.6585 53.1828 23.7529 53.2561 23.8227 53.3791 23.8748 53.4916 23.9075 53.598 23.8935 53.7233 23.9075 53.8062 23.9288 53.8782 23.9077 53.9765 23.8934 54.0723 23.8573 54.1846 23.7617 54.3168 23.6185 54.4238 23.4871 54.5014 23.3705 54.5767 23.2474 54.6669 23.1184 54.755 22.9943 54.831 22.8848 54.903 22.7966 54.9607 22.7016 55.0531 22.5613 55.1635 22.388 55.2555 22.196 55.3557 22.0061 55.4097 21.832 55.4636 21.6556 55.5382 21.4727 55.6034 21.2951 55.6667 21.0999 55.7513 20.879 55.8254 20.621 55.9096 20.3659 55.9746 20.1203 56.0125 19.8956 56.0573 19.6709 56.1128 19.4562 56.1635 19.2366 56.2171 19.0295 56.2617 18.8128 56.3229 18.5996 56.3678 18.3723 56.4275 18.1398 56.4725 17.8942 56.5264 17.6469 56.5679 17.3808 56.6254 17.1105 56.6678 16.8212 56.7225 16.5176 56.7641 16.1931 56.8102 15.8643 56.8488 15.5233 56.8795 15.1889 56.9132 14.8531 56.9468 14.5255 56.9811 14.217 56.9956 13.8835 57.0487 13.5324 57.0804 13.2459 57.073 13.0105 57.0885 12.7547 57.1371 12.5046 57.1409 12.2819 57.1502 12.0471 57.184 11.7418 57.2544 11.4046 57.2827 11.0722 57.3017 10.7691 57.3108 10.4639 57.3315 10.1757 57.341 9.9011 57.3477 9.65804 57.3486 9.39723 57.3786 9.11582 57.4035 8.84515 57.4232 8.54207 57.4567 8.22565 57.4786 7.91108 57.4877 7.63014 57.4821 7.34162 57.5049 7.0662 57.5146 6.76378 57.5451 6.46457 57.5521 6.17171 57.5652 5.85713 57.5879 5.55507 57.5954 5.24743 57.6094 4.93295 57.6308 4.60508 57.644 4.2912 57.6545 3.97938 57.6607 3.66946 57.6765 3.36128 57.6807 3.05931 57.6897 2.75943 57.6955 2.45745 57.7082 2.15591 57.7145 1.85284 57.7268 1.54601 57.7375 1.22579 57.7534 0.915071 57.758 0.595364 57.7715 0.285273 57.7723 -0.017339 57.7767 -0.319402 57.7826 -0.611555 57.7811 -0.90585 57.7894 -1.05078 57.6069 -0.943254 56.9053 -0.771154 55.9542 -0.59428 54.8914 -0.430818 53.7631 -0.29012 52.5979 -0.176458 51.4164 -0.0908844 50.2358 -0.0344846 49.0738 -0.00536039 47.9408 46.8461 19.8214 50.6704 20.2306 50.7349 20.6856 50.8371 21.0618 50.9912 21.3053 51.1616 21.5655 51.1977 21.9667 51.2422 22.3607 51.3761 22.6065 51.595 22.7521 51.7173 22.9444 51.8024 23.2737 51.8309 23.5384 52.0137 23.759 52.146 23.9265 52.2674 24.0224 52.4215 24.0738 52.5403 24.1772 52.6265 24.3776 52.7416 24.5696 52.8362 24.6768 53.0282 24.712 53.1476 24.7549 53.2132 24.7988 53.3352 24.8124 53.4779 24.8311 53.5793 24.8225 53.7319 24.7593 53.8694 24.6602 53.9773 24.5331 54.1037 24.4261 54.1793 24.3584 54.2523 24.3619 54.3133 24.3663 54.4194 24.3338 54.5339 24.2791 54.6315 24.22 54.7259 24.1291 54.846 24.0079 54.9522 23.8172 55.0937 23.5819 55.196 23.3398 55.2952 23.1315 55.3718 22.9668 55.4202 22.8296 55.4929 22.6766 55.5628 22.5009 55.6393 22.3 55.7391 22.0912 55.8121 21.8543 55.9037 21.6128 55.9928 21.3774 56.0607 21.189 56.098 20.9949 56.1687 20.7789 56.2286 20.5176 56.3186 20.2433 56.387 19.9486 56.4582 19.6451 56.5206 19.329 56.5778 19.0226 56.6293 18.7121 56.6783 18.4104 56.7293 18.1099 56.773 17.8196 56.8166 17.5318 56.8558 17.2625 56.8947 16.9962 56.9341 16.7536 56.9652 16.5054 57.0123 16.2652 57.0504 16.0094 57.1046 15.7485 57.1404 15.4755 57.1863 15.2066 57.2157 14.9276 57.2601 14.636 57.2872 14.385 57.2997 14.1477 57.3177 13.8321 57.3887 13.4866 57.434 13.1717 57.452 12.838 57.4746 12.4607 57.5276 12.0979 57.5467 11.8119 57.5404 11.5518 57.5428 11.2955 57.558 11.0104 57.5958 10.7162 57.6258 10.3967 57.6606 10.0399 57.7044 9.6627 57.7258 9.3016 57.7397 8.96816 57.737 8.65164 57.7397 8.36238 57.746 8.08785 57.7531 7.79808 57.7775 7.47459 57.8056 7.15889 57.8206 6.85012 57.8233 6.55588 57.8394 6.25055 57.8574 5.94235 57.8734 5.64797 57.8823 5.33889 57.9044 5.03439 57.9139 4.75153 57.9136 4.46523 57.9303 4.18377 57.9359 3.8943 57.9502 3.61154 57.9593 3.31612 57.9761 3.02159 57.9843 2.7223 57.9948 2.42445 58.0061 2.12226 58.0167 1.82718 58.0219 1.53549 58.0291 1.25716 58.0318 0.980808 58.0343 0.710959 58.0413 0.427595 58.0556 0.135646 58.0686 -0.160672 58.079 -0.458912 58.0794 -0.716104 58.0466 -0.730533 57.6214 -0.62384 56.7986 -0.493986 55.8244 -0.364781 54.7622 -0.248198 53.6465 -0.150681 52.5004 -0.075992 51.3417 -0.0242445 50.1841 0.0054935 49.0441 0.0127861 47.9335 46.8589 20.7755 50.2243 21.1397 50.3707 21.5321 50.4447 22.0237 50.4995 22.4855 50.6998 22.7531 50.9302 22.9042 51.091 23.1511 51.1292 23.5556 51.1906 23.9223 51.3505 24.1335 51.5912 24.2398 51.7246 24.4634 51.79 24.6546 51.9548 24.8317 52.0903 25.0185 52.2346 25.208 52.3509 25.3126 52.5218 25.3782 52.676 25.4403 52.7741 25.5459 52.9227 25.6043 53.0892 25.5924 53.2251 25.5743 53.3533 25.5776 53.4747 25.5811 53.5758 25.5889 53.724 25.6476 53.8107 25.7038 53.9212 25.702 54.1055 25.6141 54.2672 25.4548 54.4115 25.2621 54.506 25.061 54.6205 24.8633 54.7316 24.6768 54.818 24.4739 54.9288 24.2922 55.0278 24.1326 55.1118 24.0267 55.1996 23.9268 55.2958 23.8335 55.3885 23.6868 55.5186 23.4944 55.6127 23.2393 55.748 22.9693 55.8328 22.7064 55.9021 22.4782 55.9674 22.2398 56.0505 22.0131 56.1304 21.7912 56.2147 21.5784 56.2734 21.3233 56.3532 21.0484 56.4436 20.7612 56.5158 20.5084 56.5714 20.2662 56.6292 20.0365 56.688 19.803 56.7541 19.5685 56.8123 19.3175 56.8802 19.0634 56.9323 18.7924 57.0004 18.5095 57.0558 18.2061 57.1201 17.8903 57.1717 17.5591 57.2259 17.2226 57.2706 16.875 57.3129 16.5378 57.3495 16.2078 57.3804 15.8944 57.4179 15.5802 57.4546 15.2759 57.4906 14.9678 57.5237 14.6695 57.5585 14.366 57.5906 14.0081 57.6577 13.6337 57.692 13.3505 57.6719 13.0848 57.6996 12.7751 57.7618 12.4926 57.757 12.2833 57.737 12.0558 57.7742 11.729 57.8672 11.3718 57.9 11.011 57.9187 10.6779 57.9289 10.3763 57.9274 10.1102 57.9267 9.88254 57.9321 9.656 57.9523 9.41747 57.9782 9.126 58.0284 8.82222 58.0435 8.50094 58.0672 8.17446 58.0796 7.86641 58.0855 7.56992 58.1021 7.27705 58.1135 6.96887 58.1315 6.67042 58.1378 6.37563 58.1522 6.09028 58.1588 5.79743 58.1752 5.51364 58.1882 5.22822 58.1994 4.9275 58.2143 4.62741 58.2304 4.31903 58.2443 4.01152 58.2577 3.71389 58.2569 3.42232 58.2677 3.13004 58.2765 2.83425 58.2906 2.54794 58.2924 2.26642 58.2983 1.97803 58.3103 1.68997 58.3172 1.39017 58.3316 1.07718 58.3473 0.764046 58.3545 0.467776 58.3519 0.186734 58.3497 -0.0840241 58.3497 -0.358206 58.3536 -0.521234 58.2096 -0.479781 57.5799 -0.390427 56.7093 -0.290783 55.7247 -0.19627 54.6676 -0.114333 53.5646 -0.0487879 52.4348 -0.00121855 51.2942 0.0242284 50.1586 0.0345422 49.0338 0.0248746 47.9432 46.8837 21.6797 49.7298 22.1334 49.917 22.4474 50.1308 22.7007 50.2462 23.1078 50.2927 23.5947 50.4433 24.0244 50.6613 24.2628 50.8909 24.4128 51.0405 24.6822 51.0811 25.0506 51.2229 25.2956 51.4797 25.4419 51.6437 25.6583 51.7384 25.8743 51.8743 26.0091 52.0998 26.0573 52.3027 26.1051 52.474 26.1605 52.6205 26.2037 52.7309 26.2834 52.843 26.3872 52.9853 26.4702 53.1421 26.4816 53.3419 26.4351 53.5212 26.3344 53.6765 26.2036 53.8548 26.0692 53.9451 25.9437 54.0467 25.8997 54.1495 25.8754 54.2915 25.8578 54.4291 25.8074 54.5564 25.7321 54.6958 25.6447 54.819 25.5049 54.9578 25.386 55.0477 25.2369 55.1768 25.0314 55.3172 24.7649 55.4661 24.4761 55.5846 24.1902 55.6743 23.9427 55.7661 23.712 55.8434 23.5243 55.9357 23.3404 56.0166 23.1389 56.1036 22.8946 56.2117 22.6357 56.3094 22.3656 56.4005 22.1192 56.4611 21.8426 56.55 21.5595 56.6363 21.2809 56.7222 21.0078 56.7889 20.7044 56.8747 20.3922 56.9415 20.0619 57.0182 19.7378 57.0782 19.4102 57.1399 19.0888 57.2017 18.7732 57.2479 18.4824 57.2912 18.1938 57.3444 17.925 57.3889 17.6533 57.4434 17.391 57.4881 17.1139 57.5477 16.8373 57.5895 16.5398 57.647 16.2373 57.6829 15.9245 57.7307 15.6098 57.7693 15.2893 57.8111 14.971 57.842 14.6464 57.883 14.3499 57.8871 14.1288 57.8788 13.9061 57.9147 13.5868 57.9911 13.2558 58.0306 12.9624 58.0552 12.6023 58.1171 12.1862 58.153 11.801 58.1594 11.5186 58.1496 11.2655 58.1531 11.0245 58.1598 10.7518 58.2016 10.4455 58.2336 10.0941 58.2781 9.71265 58.3135 9.33861 58.3264 8.99746 58.3194 8.70518 58.3207 8.42057 58.3281 8.14919 58.3386 7.86847 58.3603 7.57396 58.38 7.28327 58.3928 6.9868 58.4099 6.69268 58.4256 6.39506 58.4354 6.10376 58.4435 5.79817 58.4644 5.50413 58.4692 5.21506 58.4773 4.92275 58.4917 4.63796 58.4991 4.3687 58.4997 4.10178 58.5112 3.83617 58.5233 3.55165 58.5414 3.27539 58.5439 3.00253 58.5494 2.73968 58.5534 2.4696 58.5625 2.19238 58.5755 1.92495 58.5777 1.64972 58.5924 1.39335 58.5879 1.14505 58.5956 0.905966 58.5936 0.642527 58.6154 0.357429 58.6348 0.0693121 58.6378 -0.197121 58.62 -0.275284 58.2878 -0.241412 57.546 -0.181475 56.6493 -0.11525 55.6585 -0.0535612 54.606 -0.00221453 53.5132 0.0354924 52.3971 0.0577563 51.2719 0.0664205 50.15 0.0575832 49.0426 0.0356725 47.9651 46.9194 22.3389 49.3052 22.8393 49.4166 23.3924 49.5776 23.7906 49.8481 24.0253 50.058 24.2884 50.1802 24.7056 50.2441 25.1287 50.4677 25.4408 50.7284 25.571 50.9509 25.7297 51.0642 26.0627 51.1467 26.3369 51.3694 26.4442 51.6312 26.4715 51.8469 26.6054 51.9659 26.845 52.0631 27.0284 52.2906 27.1267 52.5223 27.1248 52.7328 27.0621 52.9057 27.0409 53.0065 27.0404 53.1426 27.0491 53.3331 27.0735 53.4969 27.0944 53.6556 27.0985 53.8508 27.0638 53.9798 26.9483 54.1622 26.7647 54.3331 26.5674 54.4888 26.3429 54.6536 26.123 54.7764 25.9244 54.8944 25.7401 55.0034 25.5715 55.1263 25.3466 55.2726 25.1419 55.3816 24.9663 55.4928 24.8178 55.6147 24.6422 55.7602 24.4682 55.8483 24.2569 55.9774 24.0313 56.069 23.7845 56.1825 23.4921 56.309 23.1935 56.4023 22.9113 56.4939 22.6292 56.5916 22.3618 56.6678 22.0676 56.7553 21.7691 56.8486 21.4672 56.9382 21.1795 57.0099 20.896 57.0724 20.6382 57.1325 20.3679 57.2118 20.1068 57.2793 19.827 57.3579 19.5488 57.4181 19.2529 57.4976 18.9411 57.5596 18.6057 57.6267 18.2675 57.6826 17.9191 57.7373 17.5771 57.7854 17.2347 57.8305 16.9113 57.8711 16.5877 57.9131 16.281 57.9536 15.9727 57.9913 15.6721 58.0313 15.3636 58.0779 15.0593 58.1154 14.7381 58.1632 14.4156 58.2055 14.0625 58.2403 13.6469 58.2943 13.2618 58.2999 12.9757 58.2772 12.6913 58.315 12.3885 58.3581 12.1654 58.3401 11.9611 58.3574 11.7381 58.3824 11.4087 58.479 11.0402 58.5216 10.6696 58.5305 10.33 58.5412 10.0264 58.5372 9.78214 58.5224 9.56462 58.5311 9.33612 58.5549 9.05956 58.5959 8.76861 58.6116 8.45832 58.6384 8.14349 58.6534 7.84717 58.6566 7.55166 58.6756 7.26599 58.6785 6.9873 58.6886 6.71806 58.6949 6.4375 58.716 6.14932 58.7317 5.88245 58.7312 5.59487 58.7568 5.31803 58.7541 5.04236 58.7673 4.76447 58.777 4.47513 58.789 4.193 58.7934 3.92048 58.7959 3.65408 58.8078 3.38166 58.8164 3.10211 58.8289 2.81897 58.8366 2.53763 58.8438 2.26614 58.847 1.98827 58.8556 1.72562 58.8551 1.44325 58.8703 1.1646 58.8743 0.86942 58.8887 0.607953 58.8768 0.367281 58.8754 0.12416 58.881 -0.0686746 58.8128 -0.0923967 58.3115 -0.0681246 57.5218 -0.0279265 56.6091 0.0146267 55.616 0.052358 54.5682 0.0811497 53.4845 0.098703 52.3796 0.103962 51.2666 0.096387 50.1575 0.0756077 49.0634 0.0433865 47.9973 46.9628 23.2415 48.8537 23.6291 49.029 24.0076 49.1992 24.4761 49.3796 24.9255 49.6086 25.2073 49.8983 25.4515 50 25.7671 50.1521 26.1798 50.3157 26.5031 50.6276 26.6355 50.9318 26.6866 51.0956 26.8663 51.1898 27.1711 51.3263 27.4548 51.5632 27.5077 51.913 27.4541 52.1167 27.4802 52.2645 27.5868 52.4157 27.7466 52.5731 27.8253 52.827 27.7843 53.0475 27.7179 53.209 27.5673 53.4838 27.434 53.6302 27.3289 53.7606 27.2367 53.943 27.1229 54.0936 27.0416 54.2434 26.9548 54.4199 26.8892 54.5544 26.8026 54.7402 26.6923 54.8867 26.5166 55.07 26.3067 55.2133 26.1074 55.3256 25.9132 55.4668 25.6713 55.6236 25.3842 55.7798 25.091 55.9079 24.8262 56.025 24.5547 56.1199 24.3185 56.2136 24.0382 56.3493 23.7362 56.4845 23.4639 56.5813 23.2291 56.6371 22.9826 56.7404 22.7202 56.8539 22.4156 56.9725 22.11 57.0609 21.8222 57.1363 21.5519 57.2086 21.2598 57.3019 20.9503 57.3819 20.5997 57.4832 20.2463 57.5651 19.8914 57.6342 19.5519 57.6974 19.2205 57.7495 18.9138 57.8043 18.6099 57.8636 18.3169 57.9197 18.0174 57.982 17.7201 58.0346 17.4047 58.1009 17.0855 58.1496 16.753 58.2037 16.4176 58.2485 16.0777 58.2936 15.7418 58.3271 15.4165 58.3567 15.1144 58.38 14.8198 58.41 14.5416 58.4415 14.2471 58.5 13.9641 58.5232 13.7236 58.5349 13.438 58.5855 13.0716 58.6436 12.745 58.6416 12.4243 58.6787 12.0083 58.7562 11.5896 58.7761 11.2201 58.7518 10.9739 58.7252 10.7501 58.7454 10.5162 58.7644 10.2648 58.7925 9.97397 58.8281 9.62317 58.8732 9.25327 58.901 8.90932 58.8988 8.6101 58.8951 8.34022 58.8815 8.07003 58.9086 7.79778 58.9257 7.51477 58.9396 7.24878 58.9415 6.9694 58.9578 6.68344 58.9746 6.40143 58.9769 6.12639 58.991 5.8641 58.994 5.58657 59.0088 5.33428 59.0091 5.06616 59.0223 4.79981 59.0337 4.53827 59.0386 4.27639 59.0509 4.01059 59.0592 3.73951 59.0669 3.47674 59.0706 3.21441 59.0787 2.96392 59.0794 2.71793 59.0825 2.47147 59.0903 2.22346 59.095 1.98041 59.0986 1.72959 59.1059 1.49327 59.1066 1.25737 59.1102 1.02158 59.1245 0.753936 59.1445 0.474103 59.1553 0.20768 59.1474 0.0647322 58.9558 0.0508956 58.3253 0.0637245 57.5089 0.0867606 56.5861 0.11066 55.5921 0.130031 54.5489 0.141741 53.4727 0.144003 52.3773 0.135929 51.2747 0.117209 50.1763 0.08753 49.093 0.0483781 48.0364 47.0112 23.9382 48.3192 24.3769 48.5902 24.7821 48.794 25.2098 48.9519 25.6722 49.1461 26.1 49.4705 26.3589 49.7411 26.5178 49.9931 26.6994 50.1342 27.0715 50.2555 27.4485 50.5547 27.6628 50.8814 27.7462 51.1063 27.7723 51.3002 27.877 51.4585 28.0605 51.7296 28.2214 51.9558 28.2307 52.2552 28.1836 52.4628 28.1261 52.6305 28.1576 52.7955 28.1997 53.0054 28.2098 53.1989 28.2293 53.4643 28.14 53.7194 28.0339 53.8668 27.9497 54.0272 27.8256 54.2177 27.6304 54.4386 27.4019 54.6484 27.1824 54.7738 26.9718 54.9508 26.7438 55.1147 26.535 55.2788 26.3184 55.4299 26.0596 55.5844 25.809 55.7174 25.5757 55.8568 25.3611 55.9944 25.1485 56.1206 24.8944 56.2791 24.6125 56.4018 24.3017 56.5244 24.016 56.6349 23.7451 56.7554 23.4438 56.8826 23.1026 56.9783 22.7738 57.0693 22.4437 57.184 22.1373 57.2789 21.8318 57.3663 21.5184 57.4498 21.1868 57.5402 20.8722 57.6165 20.5505 57.7036 20.2502 57.7835 19.9491 57.8662 19.6477 57.9356 19.3227 58.0225 18.982 58.0902 18.6295 58.1568 18.2749 58.2182 17.9284 58.2662 17.5997 58.3108 17.2805 58.3538 16.9833 58.3981 16.6835 58.4494 16.3924 58.4947 16.0905 58.5504 15.7892 58.5949 15.466 58.6502 15.1312 58.6915 14.7846 58.7266 14.4287 58.7658 14.0843 58.7858 13.7751 58.8092 13.4395 58.8588 13.0691 58.9052 12.7541 58.9005 12.5014 58.8963 12.1916 58.9514 11.9027 58.9676 11.7105 58.9484 11.5007 58.9859 11.2468 59.0057 10.8895 59.0825 10.5266 59.1083 10.1964 59.0946 9.87879 59.1102 9.59729 59.1096 9.3588 59.1117 9.13358 59.1262 8.8852 59.1472 8.61434 59.166 8.29861 59.1973 8.01926 59.1879 7.7418 59.2032 7.45309 59.2283 7.16809 59.2266 6.89642 59.2295 6.6302 59.2408 6.35473 59.2524 6.08904 59.2567 5.82 59.263 5.56176 59.267 5.29556 59.2753 5.02531 59.2925 4.77145 59.2876 4.51493 59.2951 4.26455 59.3013 4.01276 59.311 3.76066 59.319 3.51164 59.3196 3.26194 59.3284 3.00744 59.3339 2.74571 59.3443 2.48823 59.3478 2.23404 59.3491 1.96974 59.3629 1.70706 59.3686 1.43346 59.3802 1.15776 59.3859 0.906244 59.376 0.677502 59.3732 0.461892 59.3709 0.251722 59.3575 0.170143 59.0374 0.154576 58.3409 0.158903 57.5046 0.169671 56.5753 0.180006 55.5817 0.185962 54.5429 0.185167 53.4735 0.176231 52.3863 0.158413 51.2925 0.131394 50.2033 0.0954437 49.129 0.0515662 48.0803 47.0627 24.6272 47.7953 25.1494 48.0679 25.5638 48.3797 25.8632 48.6524 26.2195 48.7899 26.692 48.998 27.1072 49.3259 27.4304 49.6699 27.5521 50.0125 27.6535 50.1541 27.9127 50.2955 28.1907 50.6034 28.389 50.908 28.5158 51.1735 28.5347 51.4395 28.5818 51.6824 28.6593 51.8784 28.7297 52.1848 28.7774 52.415 28.7959 52.612 28.7184 52.873 28.6129 53.1109 28.4532 53.3586 28.3014 53.6161 28.2086 53.8122 28.1096 53.9658 27.9622 54.1745 27.8064 54.3735 27.6722 54.5728 27.5035 54.8172 27.2997 54.9776 27.1068 55.1437 26.9092 55.3123 26.699 55.489 26.482 55.647 26.2706 55.7957 26.0341 55.954 25.7449 56.146 25.4192 56.3201 25.0996 56.4402 24.8042 56.5745 24.5032 56.7028 24.1977 56.8299 23.8803 56.9523 23.5733 57.0624 23.2547 57.2012 22.9459 57.287 22.6331 57.3821 22.3282 57.4889 22.01 57.5971 21.6939 57.6824 21.3652 57.7785 21.0349 57.8705 20.672 57.9794 20.3121 58.0636 19.96 58.1356 19.6326 58.1936 19.3116 58.2566 19.0212 58.313 18.7295 58.3818 18.4411 58.4452 18.1287 58.5305 17.7993 58.5956 17.4485 58.6616 17.0861 58.7162 16.7193 58.7649 16.362 58.8068 16.0136 58.843 15.6894 58.8747 15.3754 58.9089 15.0836 58.942 14.7943 58.9808 14.5054 59.0156 14.2087 59.0626 13.8969 59.0976 13.5642 59.1419 13.2802 59.1428 13.0416 59.1438 12.7218 59.2203 12.3632 59.255 12.0758 59.2388 11.7496 59.2939 11.3547 59.3432 10.9767 59.3639 10.6612 59.3213 10.4384 59.3052 10.2017 59.345 9.93474 59.3615 9.65978 59.3851 9.35401 59.4153 9.02946 59.4362 8.71665 59.439 8.42647 59.4374 8.15704 59.4354 7.89829 59.456 7.62113 59.4651 7.35943 59.4649 7.11564 59.4721 6.85461 59.4876 6.5828 59.5013 6.32084 59.5028 6.05708 59.5161 5.79501 59.5188 5.53648 59.5216 5.26891 59.5346 5.01754 59.5267 4.77345 59.5366 4.52012 59.5409 4.26611 59.5491 4.0212 59.5462 3.78129 59.5509 3.54331 59.557 3.30344 59.5595 3.06856 59.5633 2.83124 59.5713 2.59822 59.5773 2.36422 59.5818 2.12234 59.591 1.89805 59.5872 1.67487 59.5918 1.46871 59.5864 1.24816 59.6065 1.00165 59.6225 0.736997 59.6379 0.482151 59.6257 0.295237 59.5445 0.245667 59.0869 0.229482 58.3571 0.227224 57.5069 0.228845 56.5737 0.229171 55.5814 0.22521 54.5469 0.215167 53.4836 0.197999 52.4034 0.173183 51.3174 0.140587 50.2359 0.100425 49.1692 0.0534594 48.1273 47.1162 25.2459 47.3488 25.7473 47.5666 26.2927 47.8343 26.7023 48.2428 26.9404 48.5518 27.1785 48.7599 27.5388 48.9656 27.9762 49.2324 28.3271 49.6616 28.426 50.0552 28.4862 50.2354 28.6354 50.4541 28.8077 50.7357 29.0002 50.981 29.0954 51.3443 29.1214 51.6565 29.1548 51.8449 29.1702 52.1694 29.103 52.4823 29.0052 52.7097 28.9399 52.9383 28.8992 53.1516 28.8754 53.3825 28.8205 53.671 28.6494 53.9834 28.4486 54.1666 28.247 54.3761 28.0497 54.5709 27.8712 54.7512 27.6939 54.9945 27.4492 55.2224 27.1767 55.4162 26.9038 55.5852 26.6245 55.7683 26.304 55.9675 25.9701 56.1297 25.6571 56.2669 25.4065 56.3967 25.1476 56.579 24.8873 56.7005 24.5988 56.863 24.2964 57.0051 23.9803 57.146 23.6543 57.2783 23.332 57.3847 23.0284 57.5049 22.6772 57.6381 22.3062 57.7531 21.9352 57.8599 21.5979 57.9344 21.2596 58.0206 20.9251 58.1131 20.5647 58.2308 20.2196 58.3244 19.8913 58.3919 19.5715 58.4554 19.2278 58.5372 18.8761 58.6083 18.4999 58.6892 18.1332 58.7485 17.778 58.8004 17.4593 58.8493 17.1552 58.8996 16.8713 58.9455 16.5797 59.0077 16.2889 59.0557 15.9774 59.1182 15.655 59.1655 15.3158 59.2139 14.9689 59.2558 14.6248 59.2861 14.2971 59.3085 13.9781 59.3345 13.6694 59.3713 13.3771 59.3899 13.0951 59.424 12.7518 59.4861 12.3807 59.5149 12.0961 59.5049 11.8359 59.5152 11.5095 59.5652 11.2515 59.5519 11.0804 59.5143 10.8832 59.561 10.6032 59.6012 10.2634 59.6451 9.93916 59.6692 9.63946 59.6612 9.35657 59.668 9.10438 59.6675 8.873 59.6676 8.62173 59.6903 8.35274 59.7064 8.06771 59.7205 7.77669 59.747 7.50301 59.7388 7.22297 59.7449 6.95736 59.7377 6.696 59.7489 6.44527 59.7521 6.1924 59.7556 5.94962 59.7589 5.69992 59.7685 5.44048 59.781 5.20501 59.77 4.94982 59.7819 4.70675 59.7797 4.46586 59.7818 4.23003 59.7849 3.99027 59.7859 3.74721 59.7939 3.50943 59.7948 3.26332 59.8056 3.02179 59.8048 2.78108 59.812 2.54587 59.8125 2.31135 59.8163 2.08191 59.8205 1.84114 59.828 1.59438 59.8385 1.32724 59.8535 1.09024 59.8434 0.887528 59.8253 0.698684 59.8267 0.500271 59.8241 0.359799 59.6849 0.316393 59.1303 0.295263 58.3782 0.284528 57.5176 0.276767 56.5815 0.267807 55.5904 0.255184 54.5595 0.237411 53.5014 0.21362 52.4272 0.183379 51.3476 0.146587 50.2727 0.103418 49.2123 0.0544707 48.1762 47.1707 25.9095 46.7873 26.3115 47.1645 26.7107 47.4351 27.2647 47.6889 27.6937 48.1228 27.9352 48.5183 28.0759 48.825 28.2804 49.0279 28.6755 49.2665 29.0214 49.7092 29.1348 50.122 29.2023 50.3866 29.259 50.6791 29.3358 50.9042 29.4419 51.2381 29.455 51.6434 29.3817 51.9183 29.3867 52.1644 29.4274 52.4416 29.4019 52.7352 29.2648 53.0754 29.0347 53.3817 28.7966 53.6205 28.6549 53.8127 28.5687 54.0696 28.4287 54.3066 28.2231 54.5816 27.9537 54.8403 27.6825 55.0224 27.4693 55.2078 27.2545 55.4372 27.0297 55.641 26.7887 55.8261 26.539 56.0181 26.3131 56.1933 26.0306 56.4122 25.6957 56.6018 25.3195 56.773 24.9622 56.9362 24.5991 57.0636 24.2837 57.1784 23.9463 57.3426 23.619 57.4732 23.2855 57.6118 22.942 57.7282 22.5815 57.8654 22.2465 57.9731 21.9243 58.0753 21.6218 58.1624 21.2725 58.2837 20.9014 58.3918 20.5251 58.4894 20.1901 58.5658 19.8611 58.6535 19.5296 58.7234 19.1887 58.7962 18.866 58.86 18.5466 58.9277 18.2383 58.9976 17.909 59.0778 17.5725 59.1368 17.2119 59.2099 16.8472 59.2643 16.4844 59.3083 16.1405 59.3517 15.8067 59.3895 15.4946 59.4303 15.1914 59.4687 14.8968 59.5084 14.5934 59.5592 14.2865 59.5931 13.9636 59.6314 13.6419 59.6561 13.3263 59.687 13.0069 59.7092 12.6895 59.7414 12.4533 59.7222 12.2253 59.743 11.9192 59.811 11.603 59.8314 11.3501 59.8181 11.0067 59.8953 10.6069 59.9141 10.2412 59.9268 9.97103 59.8714 9.74392 59.8722 9.49664 59.9165 9.24021 59.9176 8.97379 59.9344 8.6958 59.9455 8.40496 59.9584 8.12875 59.9665 7.86841 59.9667 7.61796 59.9709 7.40229 59.9627 7.15026 59.9908 6.89384 60.0013 6.63122 60.0003 6.37287 60.0073 6.11782 60.0071 5.8675 60.006 5.63194 59.9945 5.40287 59.9976 5.18155 60.0023 4.93537 60.0162 4.69694 60.0203 4.46281 60.0138 4.21832 60.0263 3.98332 60.02 3.74872 60.0205 3.52424 60.0184 3.3016 60.0174 3.08013 60.027 2.85844 60.0265 2.64212 60.0283 2.42615 60.0285 2.2093 60.0331 1.98881 60.041 1.78195 60.0348 1.58467 60.0358 1.41329 60.0249 1.21263 60.0441 0.969595 60.0683 0.731464 60.0648 0.523807 60.0318 0.417709 59.791 0.373638 59.1744 0.34724 58.4046 0.328861 57.536 0.312953 56.5974 0.296176 55.6071 0.276473 54.5792 0.252565 53.5253 0.223687 52.4561 0.189441 51.3818 0.149714 50.3124 0.104638 49.2574 0.0546682 48.2262 47.2253 26.412 46.2745 26.9495 46.627 27.2914 47.0932 27.6355 47.3448 28.0773 47.6811 28.5111 48.0845 28.7931 48.543 28.8819 48.9391 29.003 49.1455 29.2907 49.4215 29.5329 49.8799 29.6479 50.2716 29.6594 50.6676 29.6269 50.9367 29.6577 51.2073 29.7293 51.5718 29.7108 51.9368 29.6368 52.2383 29.5119 52.5665 29.3721 52.8751 29.2775 53.17 29.2046 53.4546 29.0771 53.748 28.893 53.9968 28.6605 54.3021 28.4337 54.5334 28.2418 54.7736 28.0316 55.0506 27.7563 55.2977 27.4508 55.5133 27.1241 55.7638 26.7823 55.9828 26.4837 56.1246 26.1679 56.3339 25.8266 56.5346 25.5101 56.7287 25.2106 56.9013 24.9254 57.0582 24.6281 57.2335 24.2927 57.399 23.9223 57.5488 23.5931 57.6718 23.2319 57.8345 22.8773 57.9665 22.5243 58.0812 22.2017 58.1879 21.8549 58.3199 21.4966 58.4337 21.1213 58.5377 20.7539 58.6511 20.3832 58.7624 20.0327 58.8399 19.6941 58.9045 19.3688 58.9788 19.0289 59.0633 18.6825 59.1427 18.3158 59.2267 17.9446 59.2988 17.5863 59.3559 17.2509 59.4132 16.9217 59.466 16.6113 59.5203 16.2893 59.5863 15.9617 59.6359 15.6223 59.6911 15.282 59.7297 14.9455 59.7668 14.6211 59.7932 14.3041 59.8254 14.0055 59.8578 13.7086 59.89 13.4112 59.9288 13.1115 59.9559 12.8081 59.9903 12.5032 60.0142 12.2018 60.0428 11.8463 60.0777 11.5008 60.0884 11.2583 60.0535 11.0031 60.0865 10.7055 60.1158 10.5079 60.0929 10.3383 60.0838 10.1214 60.1436 9.82114 60.1716 9.51121 60.1822 9.22654 60.2012 8.94657 60.1976 8.68881 60.1922 8.43594 60.1984 8.19471 60.1997 7.95063 60.2106 7.7007 60.2166 7.43923 60.2324 7.1692 60.2327 6.92329 60.2367 6.67917 60.2454 6.43607 60.2434 6.20982 60.2335 5.99229 60.2246 5.75774 60.2405 5.51285 60.2394 5.26416 60.2463 5.01613 60.2504 4.79325 60.2391 4.56823 60.2453 4.35104 60.231 4.14243 60.2349 3.92445 60.2379 3.69847 60.2465 3.47081 60.2461 3.24518 60.2431 3.03159 60.2406 2.81233 60.2458 2.59674 60.2439 2.37747 60.2478 2.16152 60.2491 1.95778 60.2447 1.73826 60.2543 1.51653 60.2575 1.27575 60.2657 1.07495 60.2449 0.906394 60.2368 0.732934 60.2383 0.552501 60.2122 0.46422 59.8793 0.416258 59.2224 0.38424 58.4366 0.359386 57.5608 0.336994 56.6198 0.314204 55.6299 0.289208 54.6042 0.260857 53.5536 0.228442 52.4885 0.19158 51.4187 0.150135 50.3538 0.104194 49.3033 0.0541048 48.2763 47.2794 26.8868 45.7569 27.3794 46.1344 27.8573 46.6152 28.1987 47.0035 28.4549 47.4249 28.7955 47.7438 29.2126 48.1259 29.4711 48.6806 29.5152 49.1014 29.5747 49.362 29.7261 49.7285 29.8937 50.1039 29.9938 50.5675 29.9659 50.9646 29.8846 51.2886 29.8769 51.5795 29.8447 51.969 29.7191 52.3639 29.6106 52.675 29.5073 52.9784 29.3272 53.3501 29.1094 53.6724 28.8723 53.9851 28.6437 54.2255 28.4418 54.5039 28.1706 54.8046 27.8928 55.0513 27.626 55.3174 27.3747 55.549 27.1228 55.7652 26.8682 56.0184 26.5534 56.2976 26.1962 56.4818 25.8791 56.651 25.5835 56.8301 25.2366 57.0757 24.859 57.2789 24.49 57.4271 24.1504 57.5732 23.8084 57.7409 23.4528 57.9044 23.1028 58.0218 22.7682 58.1691 22.4182 58.3164 22.045 58.4545 21.6675 58.5654 21.3081 58.6794 20.9432 58.7986 20.5913 58.8895 20.248 58.9945 19.9105 59.0999 19.5538 59.1966 19.1927 59.2656 18.838 59.3335 18.4985 59.4027 18.1577 59.4835 17.8286 59.5558 17.4922 59.6352 17.1484 59.6997 16.7958 59.7658 16.4443 59.8175 16.1085 59.8561 15.7891 59.9057 15.4733 59.9517 15.1661 59.9983 14.8505 60.0454 14.5315 60.0858 14.2009 60.1238 13.875 60.1513 13.5538 60.179 13.2394 60.2044 12.9414 60.2267 12.6532 60.2441 12.3734 60.2701 12.0836 60.3041 11.8042 60.3222 11.5698 60.3121 11.3184 60.3398 10.9959 60.376 10.6992 60.3832 10.4519 60.3631 10.1136 60.4311 9.76101 60.4364 9.46041 60.4442 9.23876 60.3933 9.01204 60.4089 8.76177 60.4515 8.50225 60.4571 8.23577 60.4587 7.98168 60.4525 7.73174 60.4496 7.48674 60.4556 7.24425 60.4591 7.01434 60.4623 6.79663 60.4504 6.56269 60.4707 6.34111 60.467 6.11111 60.4734 5.87486 60.4698 5.62888 60.4706 5.40239 60.467 5.18024 60.4615 4.96988 60.4566 4.77194 60.4483 4.54743 60.4636 4.33876 60.454 4.10845 60.4613 3.89047 60.4528 3.6775 60.4509 3.47535 60.4486 3.27494 60.4465 3.06594 60.4521 2.86244 60.4441 2.65946 60.4487 2.45934 60.444 2.26173 60.4454 2.06577 60.445 1.86832 60.4421 1.68286 60.4398 1.50422 60.4362 1.34222 60.4277 1.13716 60.45 0.913432 60.4606 0.706699 60.445 0.550173 60.3687 0.480516 59.949 0.434825 59.2681 0.40147 58.47 0.373707 57.5886 0.347843 56.6456 0.321595 55.6562 0.293485 54.6323 0.262553 53.5846 0.228195 52.5229 0.190074 51.4568 0.148063 50.3959 0.102226 49.3492 0.0528341 48.3257 47.3323 27.302 44.9709 27.7766 45.6599 28.2309 46.1608 28.6454 46.589 28.9617 47.1085 29.1433 47.5622 29.3995 47.8697 29.7583 48.3218 29.9281 48.9316 29.9598 49.3303 29.9961 49.6922 30.0353 50.0647 30.133 50.4698 30.1991 50.8985 30.0933 51.3944 29.9349 51.7379 29.8821 52.0218 29.7886 52.4574 29.584 52.8796 29.3543 53.2082 29.1925 53.5118 29.0621 53.8028 28.8687 54.1784 28.6127 54.4815 28.3404 54.7762 28.0475 55.0975 27.7617 55.3371 27.471 55.6081 27.143 55.877 26.8028 56.1054 26.4816 56.3397 26.1719 56.6073 25.8312 56.8225 25.4467 57.0355 25.0542 57.2226 24.709 57.4209 24.3528 57.635 24.0019 57.778 23.6366 57.9385 23.3021 58.0754 22.9391 58.2674 22.5594 58.4014 22.1892 58.5393 21.8294 58.6763 21.4604 58.8234 21.0911 58.9347 20.7286 59.0419 20.3846 59.1426 20.0255 59.2486 19.6694 59.3505 19.3023 59.467 18.9442 59.5547 18.5778 59.632 18.211 59.7003 17.8374 59.7763 17.4797 59.8412 17.1328 59.9027 16.8045 59.9635 16.4801 60.0241 16.1584 60.0875 15.8242 60.1517 15.4823 60.198 15.1407 60.2473 14.8085 60.2839 14.4896 60.3172 14.1868 60.3482 13.8921 60.3805 13.5972 60.4186 13.298 60.4504 12.9961 60.4809 12.6875 60.513 12.3765 60.5377 12.0805 60.5401 11.7907 60.5599 11.5181 60.5767 11.2478 60.5924 10.922 60.6379 10.6234 60.6384 10.4004 60.599 10.139 60.6446 9.8515 60.6506 9.66383 60.6188 9.49626 60.604 9.25531 60.6852 8.95427 60.6943 8.67521 60.6879 8.42469 60.702 8.18309 60.6987 7.94823 60.6935 7.71489 60.6858 7.48067 60.6838 7.24506 60.6912 7.00737 60.6968 6.77417 60.6955 6.52186 60.7027 6.30479 60.6877 6.08055 60.6913 5.86585 60.6881 5.65795 60.6777 5.45348 60.6751 5.24151 60.679 5.02108 60.6819 4.79857 60.6791 4.57472 60.6722 4.37891 60.6594 4.17132 60.6616 3.96888 60.6637 3.77094 60.6508 3.57221 60.6496 3.37177 60.6491 3.168 60.6503 2.96854 60.6515 2.77127 60.6414 2.57885 60.6412 2.38558 60.6373 2.19211 60.6388 2.00231 60.6348 1.80953 60.6349 1.6087 60.6406 1.40454 60.6403 1.18971 60.6425 1.012 60.6277 0.858357 60.6142 0.687008 60.6164 0.550099 60.5057 0.486135 60.0129 0.441357 59.3128 0.407016 58.5043 0.377482 57.6181 0.349578 56.6735 0.321351 55.6844 0.29154 54.6621 0.25932 53.6168 0.224173 52.558 0.185802 51.4952 0.144094 50.4376 0.0990999 49.3942 0.0510351 48.3737 47.3833 27.4888 43.89 28.13 45.0186 28.5622 45.7287 28.9358 46.2154 29.3253 46.7191 29.5557 47.3317 29.6577 47.7677 29.8722 48.1073 30.1421 48.6617 30.2348 49.2375 30.2504 49.6766 30.2225 50.0926 30.1677 50.5246 30.1641 50.9022 30.1437 51.4148 29.989 51.8926 29.7844 52.2265 29.6556 52.5862 29.5343 53.0009 29.3279 53.4146 29.0299 53.8098 28.7116 54.1211 28.4301 54.4599 28.1582 54.7534 27.909 55.0254 27.6285 55.378 27.3 55.6656 26.9716 55.9365 26.6487 56.1999 26.3109 56.4432 25.9644 56.6862 25.6157 56.956 25.2796 57.1586 24.9525 57.3626 24.6188 57.5564 24.2427 57.797 23.8582 58.0195 23.4639 58.1723 23.0813 58.3211 22.6724 58.4843 22.3186 58.6212 21.9416 58.7784 21.5771 58.9038 21.1903 59.063 20.8346 59.1791 20.4817 59.2876 20.1278 59.3958 19.7407 59.5297 19.3577 59.6317 18.9907 59.7175 18.6586 59.7991 18.3286 59.8847 17.9918 59.9688 17.6498 60.0423 17.2973 60.1288 16.9427 60.1959 16.5846 60.2608 16.2287 60.3193 15.8846 60.3682 15.5581 60.414 15.2452 60.4647 14.9382 60.505 14.6276 60.5578 14.3147 60.5968 13.9988 60.633 13.6807 60.6663 13.3689 60.6923 13.0676 60.7199 12.7738 60.7442 12.4865 60.7682 12.2042 60.7953 11.9249 60.817 11.6375 60.8275 11.353 60.8445 11.0768 60.8528 10.8108 60.8585 10.5866 60.862 10.3431 60.8819 10.0451 60.897 9.78653 60.9032 9.54435 60.8928 9.22004 60.9431 8.89182 60.9322 8.63858 60.9384 8.42965 60.9032 8.21327 60.9043 7.98382 60.9314 7.75234 60.9302 7.51269 60.9332 7.27084 60.9277 7.03432 60.9203 6.80954 60.916 6.59277 60.9136 6.38471 60.9035 6.1813 60.9061 5.96342 60.9056 5.75448 60.9002 5.54033 60.9023 5.31782 60.9002 5.09861 60.8943 4.90108 60.8765 4.71031 60.8727 4.51936 60.8701 4.32692 60.8646 4.11719 60.8692 3.92555 60.8532 3.7284 60.8609 3.52767 60.8515 3.33136 60.846 3.14349 60.8369 2.96094 60.8328 2.78442 60.828 2.60188 60.8239 2.42313 60.8199 2.24054 60.8199 2.06161 60.8178 1.88008 60.8164 1.70014 60.8149 1.5347 60.8061 1.37152 60.8035 1.21269 60.8014 1.02155 60.8188 0.815789 60.82 0.645042 60.7871 0.536176 60.6145 0.479436 60.0697 0.437349 59.3549 0.403419 58.5382 0.373376 57.6482 0.344635 56.7023 0.315564 55.7135 0.285099 54.6926 0.252541 53.6493 0.217446 52.5931 0.17956 51.5331 0.138784 50.4783 0.0951615 49.4378 0.0488693 48.42 47.4322 27.3872 42.7407 28.2919 44.1139 28.8417 45.1789 29.1743 45.8828 29.5112 46.3822 29.8541 46.9889 29.9758 47.646 30.0154 48.0677 30.1924 48.4848 30.3206 49.1093 30.3639 49.6333 30.3221 50.1344 30.2065 50.6402 30.0995 51.0092 30.0252 51.489 29.9164 52.0014 29.7204 52.4225 29.4759 52.8306 29.2194 53.2574 28.999 53.635 28.7813 54.0275 28.5407 54.3618 28.2512 54.7494 27.8895 55.1152 27.5449 55.3699 27.2492 55.6737 26.9325 55.9824 26.5912 56.2777 26.2284 56.5627 25.8492 56.8224 25.483 57.0524 25.1013 57.3377 24.6955 57.5644 24.268 57.7901 23.8875 57.9369 23.546 58.1385 23.1978 58.3677 22.8302 58.5399 22.4547 58.6966 22.0922 58.8468 21.6838 59.0295 21.2961 59.1661 20.9178 59.2821 20.5664 59.4145 20.1751 59.5703 19.7846 59.6782 19.409 59.7714 19.0583 59.8804 18.6996 59.9904 18.3473 60.0698 17.9873 60.1591 17.6303 60.2416 17.2745 60.3246 16.9217 60.3951 16.5799 60.4706 16.2428 60.5329 15.9081 60.5956 15.5725 60.6549 15.2332 60.7075 14.9001 60.7472 14.5752 60.7895 14.2625 60.8177 13.9582 60.8622 13.6595 60.8955 13.3572 60.9354 13.0574 60.9661 12.7543 60.9954 12.4557 61.0186 12.1654 61.0344 11.8855 61.0481 11.6118 61.069 11.3361 61.0928 11.0644 61.0991 10.7927 61.1162 10.5227 61.1228 10.2465 61.1348 9.94642 61.1621 9.68175 61.1466 9.46463 61.1141 9.22041 61.1474 8.96981 61.1434 8.79833 61.1146 8.62766 61.1029 8.38842 61.1777 8.11921 61.1725 7.86767 61.1559 7.64025 61.1589 7.41016 61.1603 7.19253 61.1508 6.97765 61.1426 6.76492 61.133 6.54719 61.1337 6.33278 61.128 6.11498 61.1214 5.89157 61.1296 5.69102 61.1062 5.48762 61.1036 5.2976 61.0923 5.11021 61.0876 4.91981 61.0847 4.71456 61.0818 4.51422 61.073 4.31747 61.0668 4.11862 61.0635 3.94461 61.0432 3.75307 61.0447 3.5756 61.0384 3.39341 61.0337 3.21346 61.0259 3.03021 61.0202 2.84757 61.0155 2.66991 61.0057 2.48803 61.0058 2.30963 60.9983 2.13188 60.9976 1.9569 60.9927 1.78429 60.989 1.6098 60.9894 1.42283 60.993 1.23852 60.9878 1.05241 60.9875 0.897321 60.9739 0.752285 60.965 0.602999 60.9364 0.514314 60.7032 0.46383 60.1202 0.425333 59.3934 0.39299 58.5706 0.363529 57.6776 0.334929 56.7309 0.305889 55.7425 0.275551 54.7229 0.243344 53.6815 0.208902 52.6275 0.172017 51.57 0.132606 50.5178 0.0907085 49.4797 0.0464775 48.4643 47.4786 27.1349 41.6727 28.1923 43.0565 28.9688 44.4024 29.3961 45.4555 29.636 46.1423 29.9528 46.672 30.195 47.4039 30.1973 48.0653 30.215 48.4671 30.2686 49.0557 30.2967 49.6052 30.289 50.1421 30.1653 50.7639 29.9569 51.2175 29.8194 51.6266 29.6763 52.1445 29.4455 52.6532 29.206 53.0701 28.9681 53.4953 28.6864 53.9167 28.3463 54.3676 27.9894 54.7186 27.6716 55.0671 27.3488 55.438 27.0025 55.7162 26.6405 56.0358 26.2843 56.3385 25.915 56.647 25.5476 56.9301 25.1751 57.1949 24.8078 57.4197 24.4392 57.7063 24.0745 57.929 23.696 58.1686 23.2837 58.3492 22.8833 58.5389 22.5011 58.7498 22.1076 58.9335 21.7107 59.0935 21.3413 59.2163 20.9918 59.379 20.6077 59.5503 20.1972 59.6926 19.8161 59.7956 19.4634 59.9231 19.0899 60.0517 18.7195 60.1417 18.3531 60.2468 17.9961 60.3474 17.6341 60.4317 17.2937 60.4995 16.9586 60.5768 16.6241 60.659 16.2833 60.736 15.9412 60.8127 15.6053 60.8688 15.2754 60.9255 14.9581 60.9722 14.6451 61.0204 14.3286 61.0637 14.0104 61.1077 13.6932 61.1349 13.3867 61.1687 13.0895 61.1927 12.798 61.2269 12.5119 61.2522 12.2297 61.2775 11.9456 61.3026 11.6597 61.3204 11.3771 61.3307 11.1068 61.3393 10.8465 61.3531 10.5848 61.3609 10.332 61.369 10.0802 61.3745 9.83784 61.3771 9.62066 61.3793 9.37593 61.3913 9.09081 61.3992 8.85234 61.3859 8.61693 61.3788 8.32602 61.4055 8.04018 61.3887 7.82906 61.3888 7.62844 61.3731 7.41822 61.3661 7.20335 61.3737 6.99155 61.3721 6.7744 61.368 6.56103 61.3559 6.34876 61.3453 6.14515 61.3373 5.94846 61.3247 5.75253 61.3173 5.56525 61.3168 5.36227 61.3091 5.16884 61.297 4.97487 61.2863 4.78073 61.2817 4.59025 61.2752 4.40745 61.2646 4.22678 61.2537 4.052 61.2416 3.8789 61.2366 3.69165 61.2304 3.51727 61.2191 3.34262 61.213 3.16427 61.2121 2.98809 61.2021 2.81765 61.1906 2.65114 61.182 2.4851 61.1718 2.31759 61.1733 2.15112 61.1648 1.98648 61.1623 1.82322 61.156 1.65856 61.1536 1.49725 61.1507 1.35104 61.1392 1.20184 61.137 1.0534 61.1359 0.885144 61.1421 0.709775 61.1404 0.57036 61.0758 0.495582 60.778 0.448094 60.1676 0.411401 59.4301 0.379999 58.602 0.351031 57.7066 0.322763 56.7591 0.294079 55.7712 0.26424 54.7527 0.232759 53.713 0.199319 52.661 0.163741 51.6055 0.125952 50.5555 0.0859872 49.5197 0.0439771 48.5063 47.5226 26.879 40.6822 27.9027 42.0329 28.8416 43.4635 29.4885 44.8085 29.7683 45.8626 29.9348 46.5055 30.1971 47.1416 30.2962 47.9662 30.2364 48.5269 30.1988 49.0933 30.1499 49.6541 30.1026 50.1894 30.0366 50.8299 29.8091 51.4451 29.536 51.8997 29.339 52.3415 29.1128 52.8794 28.8049 53.378 28.4767 53.8235 28.2045 54.189 27.9409 54.6312 27.6104 55.0491 27.253 55.4245 26.8693 55.8217 26.4823 56.1032 26.1219 56.3962 25.7497 56.7107 25.3699 57.0268 24.9741 57.3259 24.574 57.595 24.1722 57.8215 23.7764 58.1022 23.377 58.3284 22.9525 58.5932 22.5494 58.7523 22.158 58.9303 21.7807 59.1271 21.3938 59.3204 20.9999 59.4874 20.6019 59.6143 20.2252 59.7556 19.8529 59.9225 19.4816 60.064 19.0977 60.1795 18.7275 60.2932 18.364 60.4152 17.9957 60.5101 17.64 60.6024 17.2872 60.7003 16.9297 60.7892 16.568 60.8612 16.2142 60.9306 15.8696 61.0036 15.5445 61.0611 15.2248 61.1324 14.9033 61.1903 14.5784 61.2504 14.2591 61.2915 13.9511 61.3285 13.6482 61.3666 13.3469 61.4091 13.045 61.4367 12.7463 61.4674 12.4503 61.4887 12.1626 61.5146 11.8824 61.5324 11.6068 61.5532 11.3374 61.572 11.0694 61.5883 10.8004 61.5997 10.5334 61.6063 10.2679 61.6187 10.0129 61.6158 9.76418 61.6178 9.51799 61.6207 9.26722 61.6279 9.00235 61.6441 8.76528 61.6284 8.5555 61.609 8.32088 61.6205 8.0929 61.6068 7.92148 61.5769 7.74245 61.5677 7.51766 61.6136 7.28591 61.6048 7.06798 61.584 6.85873 61.583 6.65159 61.5792 6.45214 61.5674 6.25354 61.5545 6.05659 61.5423 5.86 61.5339 5.66556 61.5191 5.4685 61.5143 5.27711 61.5082 5.09683 61.4894 4.91086 61.483 4.73168 61.4655 4.55766 61.4557 4.38876 61.4441 4.21152 61.4418 4.03616 61.4291 3.86095 61.4168 3.68347 61.414 3.51601 61.3979 3.34049 61.3946 3.17965 61.3738 3.02252 61.3692 2.86088 61.3637 2.69374 61.3578 2.52698 61.3487 2.36059 61.3381 2.20018 61.3337 2.04041 61.3246 1.88298 61.3197 1.72504 61.3139 1.56937 61.3093 1.41466 61.3054 1.24708 61.3068 1.08299 61.3011 0.920448 61.2985 0.786274 61.2763 0.659657 61.267 0.538341 61.1971 0.475117 60.8412 0.430863 60.2119 0.395786 59.4652 0.365266 58.6325 0.336874 57.735 0.309115 56.7869 0.281014 55.7993 0.251922 54.7818 0.221408 53.7435 0.18919 52.6932 0.155106 51.6396 0.119089 50.5916 0.0811646 49.5576 0.0414463 48.546 47.5641 26.6391 39.7353 27.5732 41.0988 28.5091 42.5276 29.3229 43.9948 29.8065 45.3789 29.9347 46.3773 30.0682 47.0081 30.2091 47.8252 30.1904 48.5456 30.0876 49.196 29.9529 49.7888 29.8086 50.3337 29.6868 50.9517 29.5097 51.6222 29.2045 52.2048 28.8971 52.649 28.6362 53.1403 28.3684 53.6458 28.043 54.1488 27.6624 54.5696 27.2752 55.0184 26.8973 55.427 26.5424 55.7794 26.1938 56.1704 25.7953 56.5017 25.3786 56.8129 24.9826 57.1067 24.5651 57.4443 24.1756 57.7154 23.7607 58.0099 23.3477 58.2344 22.9699 58.48 22.5977 58.7005 22.2389 58.9521 21.8229 59.1683 21.423 59.3302 21.022 59.528 20.6225 59.7199 20.2217 59.8882 19.8382 59.9978 19.463 60.1309 19.0817 60.3038 18.7066 60.4391 18.3392 60.5469 17.9804 60.652 17.6238 60.7718 17.2556 60.8784 16.8845 60.9735 16.534 61.0507 16.2031 61.1201 15.8729 61.1915 15.5396 61.264 15.1989 61.3443 14.8691 61.3909 14.5515 61.45 14.2408 61.5009 13.935 61.5562 13.6295 61.597 13.3274 61.6306 13.0322 61.6617 12.7421 61.6992 12.4529 61.7259 12.1678 61.7525 11.8838 61.7727 11.6029 61.7955 11.3268 61.8085 11.0586 61.8214 10.7982 61.8324 10.5427 61.8438 10.2895 61.8529 10.0387 61.8571 9.79289 61.8644 9.5436 61.8651 9.30159 61.8598 9.06725 61.8551 8.84956 61.8456 8.65158 61.8421 8.41978 61.8602 8.17104 61.8577 7.95393 61.8376 7.73147 61.8293 7.46656 61.8418 7.22106 61.8132 7.0231 61.8115 6.83089 61.797 6.63941 61.7755 6.44408 61.7783 6.25408 61.7692 6.06153 61.76 5.86834 61.7477 5.67715 61.7335 5.49214 61.7189 5.30939 61.7019 5.13106 61.6927 4.96209 61.6772 4.78052 61.671 4.60804 61.6555 4.43035 61.6432 4.25412 61.632 4.08378 61.6144 3.92263 61.6029 3.76238 61.5893 3.60325 61.576 3.44825 61.569 3.28111 61.565 3.12466 61.5511 2.96223 61.5363 2.80216 61.5293 2.64722 61.5187 2.49826 61.5067 2.34938 61.4976 2.19885 61.4887 2.05129 61.4813 1.90177 61.4741 1.75438 61.4671 1.60727 61.4611 1.46045 61.4561 1.31841 61.4474 1.18764 61.4376 1.05633 61.4324 0.924828 61.43 0.771114 61.43 0.622353 61.4158 0.51107 61.3084 0.454292 60.898 0.412455 60.2537 0.378788 59.4989 0.349209 58.6621 0.321554 57.7627 0.294503 56.814 0.267193 55.8266 0.239048 54.81 0.209678 53.7729 0.178831 52.724 0.146356 51.6721 0.11219 50.6257 0.0763514 49.5934 0.0389369 48.5834 47.603 26.3954 38.821 27.2596 40.2346 28.1082 41.679 28.9384 43.1645 29.6192 44.6982 29.8847 46.1118 29.9166 46.9762 29.9901 47.7517 29.9956 48.5402 29.8918 49.2998 29.7126 49.968 29.4857 50.5607 29.291 51.1464 29.0975 51.8157 28.7934 52.509 28.4427 52.9996 28.1114 53.4716 27.7678 53.9894 27.4211 54.4956 27.0811 54.9096 26.7364 55.363 26.3423 55.8212 25.9302 56.1915 25.5255 56.5751 25.1254 56.9018 24.7154 57.2229 24.3051 57.517 23.9116 57.8378 23.4784 58.1487 23.0743 58.4139 22.6523 58.6564 22.2251 58.9073 21.7958 59.1299 21.3727 59.3751 21.003 59.538 20.61 59.7232 20.2226 59.9155 19.8372 60.1052 19.4457 60.2798 19.0397 60.4038 18.6629 60.5077 18.304 60.6627 17.9324 60.8107 17.5599 60.9194 17.1953 61.0165 16.8413 61.1258 16.4967 61.223 16.1535 61.3167 15.8108 61.3934 15.4699 61.461 15.129 61.5324 14.7997 61.5932 14.4738 61.6702 14.1514 61.7133 13.838 61.7634 13.5337 61.8053 13.2391 61.8508 12.9463 61.8898 12.6519 61.925 12.3617 61.9519 12.077 61.9839 11.7973 62.0056 11.5237 62.0262 11.2539 62.0425 10.9894 62.0601 10.7248 62.0731 10.4656 62.0806 10.2105 62.0876 9.96183 62.0925 9.71685 62.0979 9.47716 62.0968 9.24222 62.0994 9.01054 62.0968 8.77614 62.0942 8.5439 62.0873 8.30584 62.0836 8.06254 62.0854 7.85463 62.0681 7.66739 62.045 7.45276 62.0523 7.25062 62.0314 7.091 62.0014 6.91349 61.9908 6.70435 62.0207 6.49463 62.0068 6.29879 61.9713 6.10883 61.9683 5.92234 61.9557 5.74466 61.9376 5.56598 61.9264 5.38855 61.9109 5.20976 61.8977 5.03368 61.878 4.85786 61.8685 4.68334 61.8517 4.52143 61.8329 4.3559 61.821 4.19795 61.8011 4.04301 61.7869 3.88602 61.7714 3.72423 61.7647 3.56427 61.7493 3.40368 61.7366 3.24941 61.7233 3.10624 61.7082 2.9561 61.7012 2.81041 61.682 2.66904 61.6706 2.52367 61.664 2.37397 61.6564 2.22711 61.6445 2.0804 61.6354 1.93936 61.6223 1.79631 61.6171 1.65566 61.6077 1.51588 61.6008 1.37986 61.5922 1.2426 61.5847 1.09438 61.5858 0.948606 61.5782 0.809236 61.5693 0.690742 61.5485 0.580995 61.5255 0.485702 61.4037 0.433446 60.9502 0.393523 60.2937 0.361028 59.5314 0.332372 58.6907 0.305556 57.7895 0.279364 56.8401 0.253004 55.853 0.22595 54.837 0.197848 53.801 0.168465 52.7534 0.137662 51.7029 0.105378 50.658 0.0716235 49.6272 0.0364842 48.6186 47.6395 26.1423 37.937 26.957 39.4198 27.7232 40.9129 28.4622 42.4255 29.1886 43.9718 29.67 45.6304 29.7333 46.9129 29.7005 47.7845 29.6737 48.567 29.5621 49.4114 29.3622 50.1678 29.0763 50.8466 28.775 51.4476 28.5382 52.0525 28.2593 52.7879 27.8821 53.3768 27.5098 53.8439 27.1718 54.3274 26.7908 54.8765 26.351 55.3495 25.931 55.7831 25.5313 56.2208 25.1376 56.5852 24.7503 56.9623 24.3205 57.3316 23.8698 57.6736 23.4322 57.9546 22.9938 58.2761 22.617 58.5255 22.1719 58.859 21.7648 59.0636 21.3926 59.2795 20.9863 59.5361 20.6166 59.7449 20.1699 59.9847 19.766 60.127 19.3735 60.308 19.0021 60.4767 18.6308 60.6511 18.2462 60.7884 17.8624 60.8915 17.4983 61.0269 17.1394 61.1695 16.7822 61.2766 16.425 61.3737 16.078 61.4728 15.7345 61.5665 15.3972 61.654 15.0686 61.722 14.7462 61.7834 14.4261 61.8526 14.1101 61.9092 13.8003 61.98 13.4918 62.0218 13.186 62.0692 12.8895 62.1018 12.6004 62.1399 12.3154 62.1748 12.0325 62.2079 11.7537 62.2307 11.4795 62.258 11.2104 62.2748 10.9462 62.2903 10.6866 62.3021 10.4326 62.314 10.1815 62.3242 9.93349 62.3285 9.69014 62.3309 9.4522 62.3304 9.21963 62.3305 8.99141 62.325 8.76681 62.324 8.54202 62.3216 8.32359 62.3126 8.10909 62.3018 7.90649 62.2862 7.71925 62.2727 7.50237 62.285 7.27929 62.268 7.08427 62.2473 6.8795 62.2362 6.64321 62.2377 6.42888 62.2051 6.25441 62.1952 6.08016 62.181 5.90441 62.1471 5.72768 62.145 5.55446 62.129 5.37979 62.1123 5.20784 62.0983 5.04008 62.0786 4.87343 62.0643 4.7068 62.0446 4.54824 62.027 4.39402 62.0059 4.22994 61.997 4.07567 61.9753 3.91692 61.9599 3.76081 61.943 3.60873 61.9235 3.46434 61.9091 3.3194 61.8942 3.1753 61.8806 3.0367 61.8619 2.8913 61.8536 2.75626 61.8363 2.61108 61.8271 2.46829 61.8134 2.33362 61.7987 2.20369 61.7864 2.07047 61.7777 1.93641 61.7695 1.80372 61.755 1.67095 61.7499 1.54092 61.7377 1.41202 61.7297 1.28134 61.7228 1.15336 61.7127 1.03829 61.7009 0.921321 61.6952 0.800515 61.6901 0.663012 61.686 0.539978 61.6486 0.457105 61.4866 0.409923 60.9974 0.372898 60.3307 0.342155 59.5621 0.314789 58.7181 0.28908 57.8152 0.263953 56.8653 0.238704 55.8782 0.212865 54.8629 0.186117 53.8278 0.158253 52.7813 0.129146 51.732 0.0987371 50.6884 0.0670335 49.6589 0.0341121 48.6515 47.6736 25.8804 37.0828 26.6524 38.6478 27.3534 40.2119 27.9986 41.7803 28.6252 43.3451 29.2194 45.0362 29.4502 46.682 29.3737 47.8611 29.2534 48.6873 29.1226 49.5423 28.9199 50.3705 28.633 51.1336 28.2795 51.8012 27.935 52.397 27.6333 53.0896 27.2649 53.7452 26.8323 54.2764 26.4219 54.7378 26.0534 55.245 25.6757 55.7272 25.2663 56.1925 24.8224 56.6647 24.3742 57.0334 23.9458 57.3907 23.544 57.7334 23.1092 58.1084 22.6736 58.3902 22.2638 58.6859 21.7898 58.9995 21.4247 59.2242 20.9814 59.5069 20.568 59.6929 20.143 59.9612 19.7446 60.1432 19.3551 60.3742 18.9418 60.5404 18.5529 60.6968 18.1719 60.8577 17.8013 61.0216 17.4334 61.1563 17.0647 61.2602 16.7074 61.3842 16.3534 61.5235 16.0055 61.6246 15.6626 61.7166 15.3207 61.8148 14.9876 61.8996 14.6711 61.9705 14.3473 62.0457 14.0201 62.1107 13.6987 62.1739 13.3847 62.2232 13.0874 62.2773 12.7956 62.3135 12.505 62.3597 12.2192 62.3877 11.936 62.4231 11.6565 62.4543 11.3826 62.4817 11.1145 62.4988 10.8524 62.5202 10.5952 62.532 10.3394 62.5461 10.089 62.5525 9.8463 62.5567 9.60849 62.562 9.37434 62.5627 9.14251 62.5627 8.91288 62.5601 8.68664 62.5567 8.46451 62.5471 8.24696 62.5415 8.03628 62.5322 7.82467 62.5242 7.61596 62.5106 7.39914 62.5031 7.17947 62.4923 6.99525 62.4692 6.81909 62.4442 6.6246 62.4418 6.44761 62.4132 6.29935 62.386 6.13264 62.3718 5.94692 62.3809 5.75925 62.3687 5.58044 62.3259 5.40921 62.3162 5.24094 62.2972 5.0784 62.2748 4.91965 62.2571 4.76211 62.2362 4.60313 62.2233 4.44478 62.203 4.28908 62.1827 4.13259 62.1624 3.98841 62.1412 3.84017 62.1235 3.69836 62.1017 3.55829 62.0831 3.41628 62.0655 3.27392 62.0515 3.13571 62.0324 2.99525 62.0211 2.85564 62.0015 2.72602 61.9832 2.59308 61.9692 2.46544 61.9548 2.34122 61.9377 2.212 61.9279 2.08082 61.9176 1.9541 61.9044 1.82636 61.8972 1.69986 61.8815 1.57498 61.8748 1.45149 61.8612 1.32886 61.8524 1.20736 61.8443 1.08476 61.8353 0.95274 61.8329 0.824168 61.8237 0.700317 61.814 0.592121 61.7942 0.496852 61.7438 0.426502 61.5569 0.384477 61.0394 0.350962 60.3642 0.322495 59.5906 0.29679 58.7438 0.272442 57.8395 0.248555 56.8892 0.22454 55.9022 0.199995 54.8874 0.174649 53.8531 0.14832 52.8076 0.120898 51.7594 0.0923293 50.717 0.0626183 49.6886 0.0318368 48.6823 47.7054 25.6114 36.2587 26.3428 37.9164 26.9867 39.5681 27.5554 41.2116 28.0624 42.8381 28.5923 44.5063 28.977 46.2974 28.984 47.8542 28.8028 48.8684 28.5908 49.7543 28.3483 50.6129 28.0515 51.4303 27.672 52.1807 27.2809 52.7881 26.9195 53.451 26.5378 54.127 26.1246 54.6896 25.6927 55.1697 25.2548 55.6829 24.7984 56.1836 24.3638 56.6272 23.9445 57.084 23.5159 57.4619 23.0786 57.8281 22.6272 58.1848 22.2016 58.534 21.7417 58.85 21.3083 59.1194 20.9091 59.3986 20.4456 59.6877 20.0563 59.8961 19.6846 60.0646 19.2938 60.3521 18.9142 60.5227 18.5029 60.7855 18.1035 60.9398 17.718 61.0824 17.3454 61.2303 16.9781 61.389 16.6131 61.5213 16.2519 61.6213 15.9083 61.7278 15.5714 61.8603 15.2325 61.9635 14.9047 62.0443 14.5766 62.1429 14.2473 62.2289 13.9304 62.2874 13.6236 62.3525 13.3228 62.4115 13.0216 62.4751 12.7209 62.524 12.4284 62.5698 12.143 62.5989 11.8652 62.6376 11.5911 62.6617 11.3217 62.6926 11.0556 62.7204 10.7927 62.7446 10.5341 62.7574 10.2817 62.7726 10.0348 62.7789 9.79034 62.7906 9.55077 62.7921 9.31664 62.7908 9.08863 62.7901 8.863 62.7883 8.64247 62.7833 8.42856 62.774 8.21629 62.769 8.00431 62.7591 7.79521 62.7506 7.59029 62.7372 7.39268 62.7218 7.19937 62.7039 7.01931 62.6831 6.84815 62.6635 6.65039 62.667 6.44937 62.6452 6.27187 62.6193 6.0855 62.5995 5.87632 62.5952 5.69277 62.5554 5.53571 62.5379 5.37985 62.5245 5.22107 62.4847 5.06312 62.4742 4.90625 62.4541 4.74772 62.4334 4.59445 62.4104 4.44443 62.3862 4.29688 62.3709 4.14793 62.3519 4.006 62.3247 3.86764 62.3008 3.72314 62.2857 3.58651 62.2601 3.44452 62.2437 3.30522 62.2224 3.17043 62.2003 3.04249 62.1794 2.91402 62.1609 2.78797 62.1472 2.66442 62.1251 2.535 62.1126 2.41342 62.0908 2.28586 62.0823 2.15807 62.0655 2.03959 62.0464 1.92614 62.031 1.80958 62.0209 1.69455 62.0122 1.57804 61.998 1.46379 61.989 1.34909 61.9759 1.23394 61.9675 1.11762 61.9607 1.00369 61.9492 0.898419 61.9382 0.792448 61.9297 0.683169 61.9233 0.560893 61.9165 0.459099 61.8456 0.398092 61.618 0.360006 61.0775 0.329456 60.3947 0.303123 59.6169 0.27907 58.7679 0.256116 57.8625 0.23351 56.9118 0.210757 55.925 0.187522 54.9107 0.163574 53.877 0.13876 52.8324 0.112983 51.7852 0.0861965 50.7438 0.0584019 49.7164 0.0296687 48.711 47.7351 25.3375 35.465 26.0279 37.226 26.6171 38.9788 27.1153 40.7134 27.5303 42.4231 27.9197 44.1169 28.3194 45.8976 28.4498 47.7238 28.2715 49.0466 28.0007 50.0252 27.7112 50.9024 27.3959 51.7456 27.007 52.5696 26.5681 53.2269 26.1625 53.8567 25.7617 54.5277 25.3124 55.1389 24.8591 55.623 24.4444 56.0976 24.0194 56.6086 23.5705 57.0761 23.1089 57.5457 22.6524 57.9183 22.1988 58.2817 21.7793 58.6043 21.3456 58.9677 20.9272 59.2685 20.5002 59.5463 20.0566 59.8423 19.6658 60.0785 19.2331 60.3289 18.8141 60.4836 18.4215 60.7446 18.0437 60.9005 17.6647 61.1644 17.281 61.3236 16.905 61.4583 16.5374 61.5979 16.1771 61.7492 15.8211 61.8773 15.4658 61.9767 15.1262 62.0674 14.7992 62.1873 14.4695 62.2932 14.1492 62.3646 13.8332 62.4588 13.5257 62.5364 13.2245 62.5886 12.9217 62.6553 12.62 62.7132 12.3276 62.7676 12.0401 62.8114 11.7589 62.8509 11.4815 62.8763 11.214 62.9052 10.9476 62.9281 10.6884 62.9518 10.4337 62.975 10.183 62.9953 9.93668 63.0038 9.69585 63.0134 9.45928 63.0155 9.22671 63.0231 8.99828 63.0205 8.77446 63.0147 8.5551 63.0094 8.33966 63.0038 8.1275 62.9954 7.91948 62.982 7.71588 62.9726 7.51506 62.9599 7.31738 62.9483 7.12613 62.9284 6.93367 62.9143 6.74301 62.8945 6.54955 62.8766 6.35718 62.8559 6.19544 62.8287 6.03457 62.8061 5.85934 62.7945 5.70194 62.7569 5.56374 62.7333 5.4102 62.7089 5.24207 62.7061 5.07673 62.6899 4.91842 62.643 4.76792 62.6247 4.61706 62.605 4.46983 62.5806 4.32607 62.5541 4.18329 62.529 4.04242 62.5117 3.90406 62.4903 3.76629 62.4624 3.628 62.4391 3.50047 62.4132 3.36831 62.3923 3.24199 62.37 3.1177 62.3467 2.99221 62.3258 2.865 62.3066 2.74117 62.2847 2.61873 62.2696 2.49617 62.2476 2.38207 62.2267 2.26492 62.208 2.15276 62.1945 2.04239 62.1758 1.92617 62.1626 1.80984 62.1473 1.69947 62.1313 1.5907 62.121 1.4815 62.1072 1.37396 62.0966 1.26474 62.0852 1.15575 62.0765 1.04918 62.0672 0.940349 62.058 0.823517 62.055 0.709432 62.0438 0.598721 62.034 0.501572 62.0136 0.422354 61.9248 0.371065 61.6692 0.336876 61.1117 0.308992 60.4226 0.284587 59.6413 0.26206 58.7904 0.240424 57.8841 0.219051 56.9331 0.197526 55.9465 0.175568 54.9326 0.15298 53.8996 0.129632 52.8558 0.105441 51.8094 0.0803624 50.7689 0.0543966 49.7424 0.0276123 48.7378 47.7627 25.0614 34.7026 25.7089 36.5785 26.2427 38.445 26.6717 40.2844 27.0072 42.0876 27.2751 43.849 27.5612 45.6115 27.7711 47.5139 27.6718 49.1459 27.366 50.3309 27.0151 51.2534 26.6554 52.1053 26.2615 52.9635 25.8058 53.6826 25.3447 54.3178 24.9199 54.9526 24.4881 55.5707 24.0122 56.0989 23.5237 56.5861 23.0559 57.0764 22.613 57.519 22.1825 57.9761 21.7343 58.3666 21.2721 58.7439 20.8147 59.0617 20.3956 59.3867 19.9596 59.7045 19.5412 59.9648 19.1363 60.2472 18.718 60.4968 18.3235 60.7234 17.9426 60.8645 17.562 61.1251 17.1854 61.2771 16.811 61.5389 16.4413 61.6933 16.0761 61.8235 15.7225 61.9515 15.3794 62.0924 15.0324 62.2243 14.6882 62.3209 14.3565 62.3991 14.0388 62.505 13.7214 62.6106 13.4104 62.6757 13.1066 62.7626 12.8064 62.8366 12.511 62.884 12.2302 62.9362 11.9501 62.9932 11.6735 63.0442 11.4005 63.0844 11.1302 63.1213 10.8645 63.1419 10.6082 63.1615 10.3532 63.1831 10.1037 63.2012 9.86039 63.2184 9.62091 63.2347 9.38693 63.2378 9.15719 63.2431 8.93142 63.2413 8.71193 63.2426 8.49519 63.2372 8.28066 63.2292 8.07016 63.2199 7.86341 63.2105 7.66207 63.1968 7.46628 63.1778 7.27305 63.1658 7.08235 63.1506 6.89462 63.136 6.71008 63.1129 6.53196 63.0924 6.35732 63.0692 6.19479 63.0391 6.03793 63.0127 5.86024 63.0064 5.68627 62.9801 5.5281 62.9527 5.35835 62.9267 5.17607 62.9156 5.01797 62.867 4.87733 62.8467 4.737 62.8302 4.59541 62.7846 4.45499 62.7651 4.31352 62.7464 4.1724 62.7217 4.03503 62.6915 3.89968 62.6643 3.76892 62.6425 3.63843 62.6208 3.51195 62.5889 3.38825 62.5628 3.26244 62.539 3.14104 62.5137 3.01585 62.4952 2.89303 62.4695 2.7741 62.4447 2.65948 62.4212 2.5445 62.3997 2.43413 62.38 2.32524 62.3565 2.21186 62.3401 2.10356 62.3163 1.99245 62.3056 1.88072 62.2876 1.77631 62.267 1.67548 62.2482 1.57157 62.2352 1.472 62.2206 1.3706 62.2086 1.27181 62.1954 1.17045 62.1865 1.06981 62.1771 0.968757 62.1683 0.868598 62.1582 0.775878 62.1477 0.68266 62.137 0.583167 62.1335 0.475895 62.1209 0.392685 62.008 0.347034 61.7149 0.31563 61.1431 0.289894 60.4484 0.267136 59.6641 0.245957 58.8116 0.22552 57.9046 0.205297 56.9534 0.184935 55.9669 0.164195 54.9534 0.14291 53.9209 0.120965 52.8777 0.0982876 51.8321 0.0748362 50.7923 0.0506062 49.7666 0.0256683 48.7627 47.7884 24.7869 33.9722 25.3884 35.977 25.8634 37.97 26.2213 39.9265 26.4771 41.8318 26.6491 43.677 26.7954 45.4653 26.9609 47.3485 26.9359 49.1708 26.6555 50.6114 26.2658 51.643 25.8611 52.51 25.4455 53.3792 24.9772 54.1509 24.5013 54.7937 24.0378 55.416 23.5735 56.035 23.1083 56.5641 22.6506 57.0438 22.1903 57.5368 21.7211 57.9882 21.2608 58.4363 20.8109 58.8165 20.3657 59.1891 19.9386 59.4889 19.5164 59.8089 19.1097 60.1112 18.6906 60.3838 18.2834 60.6544 17.9014 60.8788 17.4872 61.1376 17.0878 61.2639 16.7129 61.5001 16.3402 61.6498 15.9875 61.8916 15.6261 62.0547 15.2703 62.1793 14.9288 62.293 14.5946 62.4265 14.2634 62.5555 13.9341 62.6502 13.6059 62.7273 13.2965 62.8144 12.9926 62.9145 12.6878 62.9804 12.3969 63.0535 12.1159 63.1177 11.8335 63.1664 11.5558 63.2139 11.2794 63.2696 11.0138 63.3097 10.7525 63.3457 10.4955 63.3783 10.2433 63.3941 9.99727 63.4075 9.75261 63.4278 9.5138 63.44 9.28071 63.4515 9.05316 63.4623 8.83048 63.4605 8.61177 63.4618 8.39666 63.4564 8.18782 63.4515 7.9822 63.4429 7.77886 63.4325 7.57934 63.4194 7.3839 63.406 7.19067 63.39 7.00008 63.3684 6.81547 63.3505 6.63555 63.3306 6.45842 63.3132 6.28551 63.2858 6.11264 63.2653 5.94143 63.2404 5.76759 63.2129 5.59797 63.1824 5.45572 63.1487 5.31125 63.1245 5.15711 63.1068 5.01793 63.0659 4.89189 63.0417 4.75186 63.007 4.60225 62.9963 4.45688 62.9756 4.31679 62.9247 4.18189 62.9 4.04735 62.881 3.91669 62.8524 3.78802 62.8202 3.66128 62.7911 3.53701 62.7668 3.41601 62.7418 3.29326 62.7117 3.17167 62.6844 3.05891 62.6518 2.94179 62.6308 2.83122 62.6058 2.72121 62.5795 2.61051 62.5554 2.49787 62.5339 2.3882 62.5094 2.28092 62.4872 2.17319 62.4642 2.07236 62.4409 1.96858 62.42 1.87073 62.4034 1.77485 62.3834 1.6743 62.3676 1.57194 62.3505 1.47361 62.3335 1.37778 62.3164 1.28207 62.3043 1.18798 62.2895 1.09267 62.2818 0.999001 62.2708 0.906922 62.2604 0.812023 62.2531 0.709957 62.2498 0.609989 62.237 0.513658 62.2298 0.429165 62.2054 0.36506 62.0721 0.325142 61.7548 0.296151 61.1721 0.272197 60.4723 0.250823 59.6854 0.230812 58.8316 0.21145 57.9239 0.192283 56.9725 0.173009 55.9861 0.153421 54.9729 0.133373 53.941 0.112763 52.8983 0.0915248 51.8533 0.0696167 50.8142 0.0470286 49.7892 0.0238347 48.7859 47.8122 24.5173 33.2737 25.0695 35.4248 25.4804 37.5592 25.7626 39.6443 25.9349 41.6595 26.018 43.5939 26.0457 45.4375 26.0962 47.298 26.0957 49.1713 25.8667 50.8404 25.4659 52.0438 25.0193 52.9567 24.5792 53.8192 24.0932 54.6369 23.6053 55.2816 23.1282 55.8931 22.6581 56.5051 22.1625 57.0597 21.6566 57.5497 21.1877 58.0056 20.7428 58.4331 20.3029 58.8762 19.8621 59.2574 19.4181 59.633 18.9792 59.9278 18.5627 60.2254 18.149 60.5249 17.7456 60.7872 17.3594 61.0406 16.9694 61.2688 16.6015 61.5055 16.2359 61.6296 15.8711 61.8648 15.5036 62.0172 15.1582 62.2371 14.8153 62.3975 14.4722 62.5225 14.139 62.6261 13.8212 62.7444 13.5028 62.8739 13.1869 62.966 12.8748 63.0395 12.5749 63.1143 12.2828 63.2066 11.9912 63.272 11.7105 63.3342 11.4335 63.3947 11.1621 63.4378 10.904 63.4719 10.6483 63.5254 10.3956 63.5624 10.1474 63.5939 9.90194 63.6237 9.66114 63.6349 9.42517 63.6435 9.19358 63.6594 8.96674 63.6669 8.74584 63.6724 8.52987 63.6783 8.31785 63.6725 8.10874 63.6709 7.90382 63.6613 7.7054 63.6499 7.50942 63.6388 7.31634 63.6256 7.12746 63.6083 6.94314 63.5903 6.76213 63.571 6.58401 63.5465 6.40861 63.5259 6.23661 63.5026 6.06705 63.4827 5.90076 63.4521 5.74223 63.4238 5.58715 63.3955 5.44083 63.3593 5.29877 63.3244 5.14175 63.3057 4.99044 63.2758 4.84923 63.248 4.69857 63.2165 4.54289 63.1973 4.40615 63.1438 4.27974 63.1227 4.15466 63.1007 4.0281 63.0512 3.9017 63.0264 3.77512 63.0075 3.64997 62.9775 3.52796 62.9422 3.40821 62.9108 3.29345 62.8815 3.17943 62.8558 3.06777 62.8233 2.95835 62.7938 2.84755 62.7626 2.73958 62.7388 2.62961 62.7157 2.52193 62.6872 2.41741 62.6599 2.31656 62.6347 2.21602 62.6099 2.11917 62.5841 2.0223 62.5611 1.92165 62.5416 1.82524 62.5165 1.72896 62.4997 1.63282 62.4796 1.54202 62.4584 1.45335 62.4392 1.36143 62.4255 1.27339 62.4044 1.18458 62.3932 1.09811 62.3759 1.01139 62.3686 0.925064 62.3571 0.837075 62.3484 0.74918 62.341 0.669125 62.3299 0.586502 62.3196 0.498718 62.3176 0.407858 62.2963 0.341921 62.1381 0.30551 61.7912 0.278364 61.1993 0.255829 60.4949 0.235601 59.7057 0.216598 58.8506 0.198195 57.9423 0.179996 56.9907 0.161737 56.0044 0.143236 54.9914 0.124361 53.9598 0.105018 52.9177 0.0851436 51.8732 0.0646966 50.8347 0.0436581 49.8102 0.0221081 48.8075 47.8343 24.2535 32.6056 24.7536 34.9247 25.0947 37.2181 25.295 39.444 25.3786 41.5759 25.371 43.6014 25.2989 45.5096 25.2267 47.3703 25.1699 49.2281 24.9882 51.0221 24.6068 52.4252 24.1397 53.4238 23.6641 54.2948 23.1688 55.1322 22.6836 55.7668 22.1757 56.401 21.6874 56.9935 21.2119 57.5352 20.7431 58.0185 20.2672 58.4815 19.8041 58.8962 19.3577 59.3227 18.9292 59.6859 18.5113 60.0509 18.0967 60.3423 17.6909 60.6313 17.2992 60.9166 16.8983 61.188 16.5209 61.4181 16.1459 61.6437 15.7649 61.8865 15.3992 61.9952 15.0469 62.2171 14.6965 62.3676 14.3663 62.5673 14.0325 62.7314 13.7006 62.8543 13.3801 62.9466 13.0689 63.0556 12.7631 63.1796 12.4624 63.2668 12.1616 63.3403 11.8724 63.4035 11.5942 63.4848 11.3137 63.5526 11.0465 63.6014 10.7866 63.6545 10.5259 63.6985 10.2692 63.7287 10.0197 63.7749 9.77807 63.804 9.54243 63.8296 9.31127 63.8549 9.08321 63.863 8.8583 63.8684 8.63729 63.8804 8.42211 63.882 8.21174 63.8827 8.00734 63.8827 7.80592 63.8739 7.60796 63.8689 7.41378 63.8555 7.22461 63.8391 7.03853 63.8249 6.85632 63.8078 6.67802 63.7866 6.50362 63.7647 6.33097 63.7437 6.16036 63.7171 5.99506 63.6912 5.83295 63.6647 5.67269 63.643 5.51599 63.6088 5.36151 63.5783 5.20954 63.5474 5.05536 63.5134 4.90633 63.4734 4.78402 63.428 4.65438 63.4055 4.52381 63.3786 4.40005 63.3403 4.28168 63.3157 4.15767 63.2678 4.0298 63.2506 3.9033 63.2272 3.77779 63.1767 3.65392 63.1503 3.53301 63.1284 3.41722 63.0933 3.3033 63.0561 3.19234 63.0218 3.08378 62.9901 2.97784 62.9617 2.87019 62.931 2.76438 62.8996 2.66399 62.863 2.56101 62.8418 2.46461 62.8121 2.36741 62.7844 2.26927 62.7581 2.17046 62.7335 2.07479 62.7056 1.98071 62.6782 1.88587 62.6559 1.79739 62.6301 1.7063 62.6075 1.62144 62.5846 1.53742 62.5636 1.44944 62.5463 1.36014 62.5285 1.27502 62.5106 1.19063 62.4888 1.1076 62.4762 1.02524 62.4583 0.943582 62.4502 0.86291 62.4378 0.782837 62.4284 0.701184 62.4226 0.613448 62.4176 0.525592 62.4075 0.441548 62.4016 0.36992 62.3679 0.318939 62.1891 0.286935 61.8232 0.261792 61.2244 0.240558 60.5161 0.221343 59.7249 0.203236 58.8687 0.185701 57.9599 0.168395 57.008 0.151087 56.0217 0.133614 55.0089 0.115852 53.9776 0.0977114 52.9358 0.0791307 51.8918 0.0600661 50.8537 0.0404883 49.8298 0.0204852 48.8275 47.8548 23.9911 31.9643 24.4377 34.4782 24.7041 36.9517 24.8165 39.3316 24.8062 41.5861 24.7049 43.7028 24.5399 45.6746 24.3605 47.5496 24.2084 49.3803 24.0321 51.1984 23.6866 52.7707 23.2215 53.889 22.7117 54.8045 22.2216 55.6223 21.7222 56.2662 21.2129 56.9103 20.7156 57.4908 20.2157 58.0351 19.7335 58.5006 19.2745 58.9405 18.8366 59.3341 18.4072 59.7521 17.9859 60.1072 17.5699 60.4669 17.1541 60.7582 16.7557 61.0296 16.3669 61.3055 15.9876 61.5673 15.6225 61.7832 15.2544 62.0119 14.9181 62.2228 14.5746 62.3388 14.2325 62.5592 13.8977 62.7024 13.5767 62.8883 13.2617 63.0463 12.9454 63.1707 12.6345 63.2575 12.3375 63.3526 12.0442 63.4729 11.7552 63.5558 11.4708 63.6247 11.193 63.6813 10.926 63.7518 10.6616 63.8169 10.4041 63.8589 10.1506 63.9081 9.90535 63.9437 9.66662 63.9674 9.4336 64.0079 9.20272 64.0349 8.97864 64.0537 8.75882 64.0747 8.54111 64.0807 8.32694 64.0826 8.11845 64.0889 7.91476 64.0857 7.71621 64.0813 7.52286 64.076 7.3325 64.0643 7.14481 64.0566 6.96101 64.0393 6.78136 64.0187 6.60503 64.0012 6.43301 63.9799 6.26435 63.9553 6.09993 63.9291 5.93886 63.9047 5.78014 63.8758 5.62332 63.848 5.46846 63.8195 5.31587 63.7956 5.16667 63.758 5.02531 63.7196 4.88787 63.6849 4.75759 63.6437 4.62871 63.6023 4.49244 63.5643 4.36642 63.5315 4.24086 63.5042 4.11338 63.4678 3.9867 63.4424 3.87122 63.3833 3.75864 63.3632 3.63988 63.3459 3.52157 63.295 3.40243 63.2694 3.28982 63.2411 3.17956 63.2036 3.07241 63.1633 2.96835 63.1258 2.86786 63.0906 2.76798 63.0616 2.67058 63.0284 2.57453 62.9957 2.47605 62.9614 2.38096 62.9369 2.28503 62.9081 2.19166 62.8778 2.10031 62.8494 2.01173 62.8221 1.92345 62.7939 1.83775 62.7639 1.75216 62.7415 1.66463 62.7176 1.58095 62.6912 1.49782 62.6677 1.41433 62.6471 1.3351 62.6256 1.25719 62.6064 1.17733 62.5905 1.09979 62.5664 1.02338 62.5526 0.947927 62.5337 0.873656 62.5245 0.799349 62.5121 0.722789 62.505 0.647306 62.4981 0.577809 62.4871 0.504811 62.4805 0.427877 62.4786 0.351893 62.4439 0.299368 62.2416 0.269913 61.8527 0.246406 61.2479 0.226287 60.5362 0.207955 59.7432 0.190646 58.886 0.173904 57.9766 0.157431 57.0245 0.141022 56.0381 0.124524 55.0254 0.107821 53.9943 0.0908248 52.9528 0.0734714 51.9091 0.0557151 50.8715 0.037513 49.848 0.0189631 48.846 47.8738 23.7188 31.3445 24.1116 34.0854 24.3003 36.763 24.3208 39.3111 24.2134 41.6935 24.0167 43.8995 23.7617 45.9295 23.4896 47.8218 23.2409 49.629 23.0216 51.4177 22.7101 53.0822 22.259 54.3401 21.7382 55.3254 21.2573 56.1031 20.7415 56.782 20.2221 57.4297 19.7312 57.9817 19.2658 58.5005 18.8045 58.9619 18.3426 59.4023 17.8977 59.779 17.4764 60.1734 17.0715 60.5122 16.6798 60.8585 16.2878 61.1502 15.9015 61.4159 15.5306 61.6764 15.1625 61.9353 14.8071 62.1386 14.4581 62.361 14.1076 62.5733 13.7768 62.6696 13.4472 62.8887 13.1277 63.022 12.8222 63.1938 12.5183 63.3502 12.2152 63.4739 11.9187 63.554 11.6315 63.6398 11.3503 63.7541 11.0739 63.8321 10.8025 63.8961 10.536 63.9477 10.2814 64.0064 10.0307 64.0676 9.78678 64.1028 9.54946 64.1454 9.31448 64.1787 9.08055 64.2013 8.85456 64.2339 8.6351 64.2544 8.42278 64.266 8.21612 64.2814 8.0113 64.2855 7.80847 64.2854 7.60957 64.2878 7.41593 64.2794 7.22714 64.2701 7.04444 64.2587 6.86509 64.2436 6.68881 64.2329 6.51521 64.2129 6.3448 64.1891 6.17865 64.1674 6.01703 64.1415 5.85789 64.1144 5.70222 64.0848 5.54951 64.0574 5.39874 64.0266 5.25125 63.9955 5.10532 63.9655 4.96129 63.9396 4.82079 63.8985 4.68314 63.8573 4.54904 63.819 4.41468 63.7781 4.28209 63.7349 4.17221 63.6742 4.06387 63.6398 3.96054 63.6075 3.85754 63.5708 3.75692 63.543 3.64519 63.495 3.52618 63.4822 3.41088 63.4612 3.2882 63.4177 3.17689 63.3807 3.07209 63.3459 2.97051 63.3051 2.87074 63.263 2.77488 63.2217 2.68024 63.1852 2.58719 63.1546 2.49352 63.1221 2.40132 63.0879 2.31219 63.0506 2.22181 63.0272 2.13747 62.9924 2.05222 62.963 1.96658 62.9351 1.88114 62.9076 1.79756 62.8775 1.71426 62.8472 1.63122 62.8246 1.55403 62.7948 1.47641 62.7688 1.40257 62.7416 1.32922 62.7204 1.2527 62.7021 1.1758 62.6833 1.10223 62.664 1.02829 62.6403 0.956013 62.6249 0.883948 62.6058 0.813509 62.5949 0.744162 62.5814 0.675366 62.5738 0.60597 62.5675 0.53086 62.5622 0.454419 62.5569 0.381874 62.5511 0.322186 62.5036 0.280812 62.283 0.254204 61.8793 0.232124 61.27 0.21293 60.5554 0.195355 59.7608 0.178757 58.9026 0.162745 57.9926 0.147055 57.0402 0.1315 56.0537 0.115935 55.041 0.100245 54.01 0.0843385 52.9687 0.068151 51.9253 0.051634 50.888 0.0347273 49.8649 0.0175404 48.8632 47.8913 23.4197 30.7406 23.759 33.746 23.8684 36.6536 23.7959 39.3836 23.5916 41.8977 23.3014 44.1897 22.9608 46.2701 22.6065 48.1761 22.274 49.9614 21.9888 51.7029 21.6871 53.3838 21.2577 54.7696 20.7589 55.8241 20.2631 56.599 19.751 57.2941 19.2463 57.9344 18.7504 58.4776 18.2711 58.9799 17.8138 59.4192 17.3796 59.8366 16.9604 60.1981 16.5524 60.5814 16.1546 60.91 15.7672 61.2459 15.3821 61.5353 15.008 61.7901 14.6462 62.0382 14.2987 62.2828 13.9532 62.484 13.6237 62.6905 13.3123 62.8846 12.996 62.9859 12.6785 63.2062 12.3748 63.3256 12.0795 63.4891 11.7915 63.6381 11.5058 63.7596 11.2218 63.838 10.9484 63.9133 10.6815 64.021 10.4164 64.0972 10.1572 64.1553 9.90553 64.1995 9.66196 64.25 9.42468 64.3049 9.1922 64.3353 8.96387 64.3737 8.74441 64.3982 8.52725 64.4185 8.31462 64.4465 8.10529 64.4637 7.90358 64.4677 7.70741 64.4775 7.51354 64.4794 7.3224 64.4765 7.13571 64.4745 6.95271 64.4624 6.77423 64.4485 6.60105 64.4319 6.43196 64.4127 6.26573 64.3991 6.10228 64.3763 5.94136 64.35 5.78507 64.3237 5.6331 64.2934 5.48337 64.2641 5.33738 64.2308 5.19535 64.1995 5.05612 64.1658 4.91636 64.1352 4.77589 64.1059 4.63927 64.0762 4.50768 64.0301 4.38148 63.9835 4.2593 63.9412 4.14629 63.8911 4.03107 63.8501 3.90262 63.8026 3.79501 63.7474 3.71448 63.688 3.59383 63.6914 3.48847 63.6484 3.38137 63.6021 3.27374 63.5898 3.1599 63.5751 3.05406 63.5236 2.95331 63.4815 2.85656 63.4426 2.76016 63.4015 2.66713 63.3561 2.57758 63.3113 2.48965 63.2731 2.40287 63.2414 2.31828 63.2067 2.23297 63.1732 2.14524 63.1383 2.06281 63.1097 1.97949 63.0757 1.89823 63.0443 1.81903 63.0143 1.74261 62.984 1.66562 62.9544 1.58909 62.9237 1.51594 62.8977 1.44125 62.8695 1.36671 62.8434 1.29496 62.8133 1.22342 62.792 1.15544 62.7701 1.08771 62.7511 1.02123 62.7305 0.953998 62.7075 0.886077 62.6928 0.817135 62.6747 0.752188 62.6599 0.688734 62.6449 0.624633 62.6379 0.560641 62.6315 0.500104 62.6227 0.434817 62.6222 0.369734 62.6162 0.307416 62.5659 0.265037 62.3253 0.239957 61.9044 0.218872 61.2911 0.200395 60.5739 0.183456 59.7777 0.167496 58.9186 0.152165 58.0079 0.137222 57.0551 0.122488 56.0684 0.107818 55.0557 0.0930986 54.0247 0.0782345 52.9836 0.0631558 51.9404 0.0478139 50.9033 0.032127 49.8806 0.0162171 48.8791 47.9075 23.0753 30.1484 23.3605 33.4609 23.3902 36.6239 23.226 39.5478 22.929 42.1948 22.5515 44.5671 22.1331 46.6886 21.7073 48.6019 21.3057 50.363 20.9557 52.0529 20.6344 53.7051 20.2378 55.1661 19.7643 56.2977 19.2636 57.0996 18.7624 57.7954 18.2643 58.4325 17.7871 58.9547 17.336 59.431 16.8933 59.8619 16.4607 60.2691 16.0469 60.6119 15.6549 60.9734 15.2762 61.2887 14.9115 61.6106 14.5487 61.8981 14.1881 62.1507 13.8431 62.3831 13.5043 62.6217 13.1772 62.8111 12.8615 63.0062 12.5452 63.2009 12.2466 63.2846 11.943 63.5098 11.6503 63.6184 11.371 63.7684 11.0953 63.9139 10.8221 64.0328 10.5537 64.1064 10.2925 64.1744 10.038 64.2755 9.78416 64.351 9.53888 64.4006 9.30022 64.4381 9.06862 64.4816 8.84329 64.5303 8.62309 64.5555 8.41229 64.5845 8.20152 64.6089 7.99006 64.6299 7.78633 64.6503 7.58911 64.6609 7.39896 64.6578 7.21396 64.6625 7.03096 64.6624 6.85044 64.657 6.67336 64.6515 6.50086 64.6349 6.33223 64.6172 6.1686 64.5955 6.00896 64.5723 5.85279 64.5553 5.69868 64.5304 5.54705 64.5017 5.40015 64.4706 5.25795 64.4356 5.11786 64.4042 4.98052 64.3681 4.84548 64.3345 4.71462 64.2967 4.59086 64.259 4.46916 64.2276 4.35116 64.1942 4.23008 64.1512 4.10432 64.1092 3.98132 64.0642 3.86469 64.0077 3.75362 63.9612 3.62734 63.9289 3.52444 63.8504 3.44353 63.7689 3.34128 63.7937 3.2849 63.7047 3.1721 63.7149 3.05849 63.7034 2.94653 63.687 2.84598 63.6241 2.75262 63.5748 2.66265 63.5326 2.5735 63.4907 2.48829 63.4413 2.40543 63.3941 2.32371 63.3549 2.2441 63.321 2.16114 63.2896 2.07842 63.2559 1.99992 63.2168 1.92178 63.1878 1.84825 63.1493 1.77365 63.1189 1.69914 63.0888 1.62606 63.0571 1.55556 63.0249 1.48623 62.993 1.41638 62.9676 1.34916 62.9367 1.27927 62.9133 1.2102 62.8824 1.14707 62.8551 1.08346 62.8337 1.02 62.8145 0.956418 62.7941 0.89123 62.7727 0.828188 62.7558 0.763448 62.7395 0.699762 62.7236 0.639019 62.7056 0.584618 62.6923 0.52655 62.6896 0.460534 62.6888 0.390797 62.6919 0.333069 62.6739 0.283657 62.6153 0.25 62.359 0.22668 61.9277 0.20643 61.3113 0.188549 60.5918 0.172166 59.7941 0.156794 58.9339 0.142114 58.0226 0.127893 57.0694 0.113952 56.0824 0.100149 55.0695 0.0863626 54.0385 0.0724958 52.9975 0.0584726 51.9544 0.0442455 50.9176 0.0297079 49.8951 0.0149932 48.8938 47.9225 22.6707 29.5673 22.8985 33.2331 22.848 36.6744 22.5958 39.8 22.2133 42.5773 21.7588 45.0215 21.274 47.1735 20.7898 49.086 20.3336 50.8192 19.9305 52.4559 19.5782 54.0574 19.2034 55.541 18.7595 56.7416 18.2677 57.5914 17.7808 58.2823 17.3014 58.9118 16.8239 59.4323 16.3681 59.8868 15.9416 60.2885 15.5391 60.6715 15.1501 61.0009 14.771 61.3526 14.4012 61.6585 14.0446 61.9672 13.6933 62.2495 13.348 62.4959 13.0143 62.7168 12.6953 62.9407 12.3814 63.125 12.0875 63.3001 11.8025 63.4859 11.5138 63.5732 11.2264 63.7972 10.9488 63.8959 10.6813 64.0359 10.4203 64.1749 10.1638 64.2893 9.90883 64.3613 9.65947 64.4238 9.42153 64.5135 9.17575 64.5968 8.94435 64.632 8.72294 64.6595 8.50235 64.7022 8.28708 64.7455 8.07717 64.7654 7.88104 64.7807 7.68118 64.8088 7.48422 64.8269 7.29268 64.8418 7.10574 64.8478 6.92591 64.8377 6.75101 64.8374 6.57865 64.8347 6.40914 64.8266 6.24358 64.8171 6.08154 64.7969 5.92268 64.776 5.76778 64.7504 5.61721 64.7229 5.47024 64.7023 5.32574 64.6749 5.18335 64.644 5.04479 64.6091 4.9108 64.5696 4.78108 64.5339 4.65293 64.4963 4.52638 64.461 4.40372 64.4193 4.28776 64.3749 4.17797 64.3374 4.06569 64.3065 3.95338 64.2635 3.83664 64.226 3.7218 64.179 3.60762 64.1219 3.51704 64.0518 3.42705 64.0189 3.29054 63.9869 3.17954 63.8799 3.14579 63.8274 3.04326 63.8073 2.9368 63.8214 2.82486 63.8154 2.73196 63.7799 2.64277 63.7133 2.55471 63.6629 2.47818 63.6091 2.40495 63.5639 2.32602 63.5202 2.24679 63.4734 2.16636 63.4353 2.08513 63.4023 2.00585 63.3689 1.92964 63.3321 1.85288 63.2935 1.78251 63.2582 1.71053 63.2212 1.64014 63.1893 1.57069 63.1582 1.50382 63.1239 1.44074 63.088 1.37742 63.0564 1.31437 63.0306 1.24907 63.002 1.18454 62.9778 1.1202 62.9467 1.05543 62.9199 0.998125 62.891 0.941823 62.8708 0.882933 62.853 0.822625 62.833 0.764463 62.814 0.705999 62.7979 0.650145 62.7794 0.590402 62.7654 0.541108 62.7416 0.489161 62.7415 0.435098 62.7428 0.373458 62.7536 0.322991 62.7244 0.271746 62.6665 0.237066 62.3937 0.214358 61.9504 0.194676 61.331 0.177285 60.6092 0.161404 59.81 0.146594 58.9487 0.132549 58.0367 0.119035 57.0829 0.10587 56.0955 0.0929057 55.0824 0.0800187 54.0514 0.067107 53.0104 0.0540882 51.9674 0.0409188 50.9307 0.0274649 49.9086 0.0138681 48.9074 47.9364 22.1967 29.0016 22.3604 33.0693 22.2289 36.8058 21.8936 40.1354 21.4356 43.0353 20.9173 45.5399 20.3803 47.7105 19.8528 49.6135 19.3572 51.3149 18.9154 52.8977 18.5336 54.4392 18.1663 55.9082 17.7503 57.1576 17.2842 58.0576 16.8109 58.7556 16.3463 59.3764 15.895 59.8836 15.4633 60.3185 15.0484 60.7033 14.6537 61.0663 14.278 61.3766 13.919 61.7115 13.5701 62.0074 13.2354 62.302 12.9047 62.5801 12.5718 62.8289 12.254 63.0347 11.9465 63.2481 11.6555 63.416 11.3708 63.5848 11.0863 63.7704 10.8173 63.8422 10.5437 64.0708 10.2766 64.163 10.0236 64.2889 9.77709 64.4214 9.53322 64.5332 9.29234 64.6022 9.05437 64.6618 8.83169 64.7361 8.64933 64.7792 8.44954 64.8317 8.23883 64.8702 8.02784 64.9132 7.82289 64.9505 7.61132 64.9769 7.38651 65.0055 7.18488 65.0104 6.99554 65.0162 6.81419 65.0231 6.63943 65.0226 6.46998 65.0071 6.30528 65.0021 6.14249 64.9975 5.98274 64.9863 5.82646 64.9734 5.67464 64.9487 5.5256 64.9251 5.37984 64.8962 5.23771 64.865 5.09991 64.8401 4.96421 64.8106 4.83092 64.7773 4.7005 64.7396 4.57394 64.6962 4.45581 64.6521 4.33395 64.6181 4.21423 64.5808 4.09713 64.5364 3.98275 64.4893 3.8819 64.4383 3.78686 64.4015 3.68319 64.3672 3.56992 64.3393 3.43745 64.3115 3.32097 64.2384 3.20702 64.1657 3.20539 64.0205 3.08212 64.1101 2.92814 64.0339 2.95475 63.8008 2.84783 63.9142 2.72578 63.9434 2.63006 63.9111 2.54369 63.8663 2.45954 63.7974 2.39345 63.729 2.31971 63.6829 2.24194 63.6417 2.16623 63.5959 2.09389 63.5457 2.01777 63.5114 1.93947 63.4806 1.86516 63.4432 1.79314 63.4041 1.7249 63.3618 1.65783 63.3253 1.59413 63.2849 1.53017 63.2532 1.46868 63.2197 1.40898 63.1836 1.34369 63.1533 1.28143 63.1186 1.22175 63.0903 1.16422 63.0595 1.10332 63.0387 1.0462 63.0038 0.988798 62.9773 0.935039 62.9447 0.873465 62.9324 0.818543 62.9079 0.760918 62.8907 0.711281 62.8636 0.657496 62.8517 0.607911 62.829 0.547407 62.8259 0.499212 62.7898 0.461001 62.7797 0.401701 62.8021 0.338549 62.8167 0.29357 62.7694 0.254237 62.7059 0.224869 62.423 0.202707 61.9726 0.18348 61.3502 0.166513 60.6261 0.151106 59.8254 0.136853 58.963 0.123439 58.0501 0.110626 57.0957 0.0982213 56.1079 0.0860719 55.0946 0.0740509 54.0634 0.0620529 53.0224 0.0499889 51.9795 0.0378219 50.9429 0.025391 49.921 0.01284 48.92 47.9492 21.6511 28.4624 21.7404 32.98 21.5269 37.0193 21.1143 40.548 20.5925 43.5572 20.0251 46.1073 19.4517 48.2839 18.8966 50.1686 18.377 51.8344 17.9111 53.3637 17.5077 54.8426 17.1416 56.2744 16.7479 57.5512 16.3124 58.4931 15.86 59.2081 15.4123 59.8241 14.9651 60.3308 14.5395 60.7441 14.1505 61.0922 13.7855 61.4313 13.4312 61.7308 13.0844 62.0584 12.7458 62.346 12.4234 62.6244 12.1123 62.8912 11.7872 63.154 11.4872 63.3346 11.1972 63.5381 10.9249 63.6884 10.6578 63.8519 10.3968 64.0314 10.1395 64.0995 9.88337 64.327 9.6293 64.4171 9.38768 64.5305 9.15655 64.6525 8.93217 64.7575 8.69881 64.8356 8.50789 64.8527 8.33192 64.9121 8.11955 64.9915 7.91142 65.0399 7.71198 65.0697 7.51277 65.1124 7.31986 65.1434 7.13151 65.1653 6.95334 65.1837 6.7736 65.1901 6.59797 65.1919 6.42585 65.1953 6.25913 65.1893 6.0976 65.1687 5.94072 65.159 5.78656 65.1517 5.63562 65.1372 5.48818 65.1208 5.34455 65.0924 5.20395 65.0657 5.06522 65.0349 4.93031 65 4.79933 64.971 4.67192 64.938 4.54597 64.9033 4.42275 64.8628 4.29509 64.8238 4.15943 64.7877 4.03913 64.7384 3.92957 64.6903 3.82201 64.644 3.72671 64.5846 3.63179 64.5332 3.53377 64.4996 3.43506 64.4659 3.33592 64.4384 3.23568 64.4117 3.10766 64.3664 2.99157 64.2818 3.0037 64.0084 2.87763 64.2362 2.7178 64.1937 2.755 63.7636 2.6096 64.0596 2.51726 64.0358 2.436 63.9923 2.35757 63.9447 2.2929 63.8621 2.22426 63.7976 2.15253 63.7546 2.07973 63.7145 2.00703 63.6686 1.93296 63.6198 1.86083 63.5835 1.79399 63.5474 1.7284 63.5088 1.66278 63.4697 1.59667 63.4279 1.53568 63.3863 1.47463 63.346 1.41512 63.3127 1.36263 63.2722 1.30443 63.2418 1.24663 63.2111 1.18772 63.1775 1.13121 63.1468 1.07523 63.1155 1.02186 63.0921 0.967753 63.0579 0.909127 63.0359 0.859478 62.9944 0.806435 62.9854 0.754721 62.9596 0.70623 62.9392 0.651684 62.9182 0.610029 62.8934 0.556155 62.8829 0.514499 62.8675 0.458727 62.8455 0.429846 62.8086 0.374767 62.8572 0.326674 62.8648 0.283035 62.813 0.246238 62.7427 0.214075 62.4552 0.191665 61.995 0.172753 61.3691 0.15616 60.6427 0.141226 59.8403 0.127538 58.9767 0.114763 58.0629 0.102647 57.1078 0.0909905 56.1196 0.0796329 55.1059 0.0684442 54.0746 0.0573187 53.0335 0.0461602 51.9907 0.0349404 50.9541 0.0234764 49.9325 0.0119034 48.9315 47.9611 21.0383 27.9686 21.0399 32.9783 20.7435 37.3158 20.26 41.0314 19.6865 44.1307 19.0853 46.7084 18.4914 48.8778 17.9241 50.7359 17.3954 52.3631 16.9188 53.8403 16.5041 55.2573 16.138 56.6404 15.7648 57.9245 15.3588 58.8991 14.9268 59.6401 14.4999 60.251 14.0798 60.7509 13.6746 61.1493 13.3034 61.4634 12.9507 61.7841 12.6124 62.0691 12.2865 62.3842 11.9683 62.6643 11.6636 62.9291 11.3834 63.1714 11.1519 63.3854 10.887 63.5995 10.6009 63.8242 10.2784 64.0108 9.98756 64.1428 9.73567 64.2833 9.50507 64.3301 9.25425 64.5778 9.01121 64.6602 8.78289 64.7588 8.56572 64.8697 8.3667 64.9566 8.20577 64.9965 8.00412 65.0543 7.79598 65.1203 7.59619 65.1913 7.39976 65.2363 7.2092 65.2602 7.02227 65.2993 6.84247 65.3232 6.66651 65.3412 6.49601 65.3542 6.32516 65.361 6.15846 65.3586 5.99755 65.3562 5.84095 65.3459 5.68888 65.3207 5.54041 65.3075 5.39578 65.2963 5.25383 65.2792 5.11566 65.259 4.98042 65.2276 4.85 65.1961 4.71899 65.1659 4.59272 65.1262 4.46866 65.0951 4.35092 65.0558 4.23184 65.0224 4.11806 64.9766 4.00443 64.9375 3.89978 64.8924 3.7906 64.8476 3.68802 64.7929 3.58286 64.7491 3.47452 64.693 3.34947 64.6582 3.28809 64.5609 3.19336 64.5606 3.10015 64.5316 3.0081 64.5038 2.88222 64.4923 2.75619 64.4078 2.79909 63.9655 2.66587 64.3694 2.51219 64.3474 2.56567 63.7101 2.43556 64.1897 2.34268 64.1287 2.26477 64.0702 2.19904 64.0104 2.13659 63.9246 2.06931 63.8649 2.00023 63.8237 1.93377 63.7809 1.86612 63.7363 1.79805 63.6878 1.72922 63.6524 1.66665 63.61 1.60506 63.5704 1.54255 63.5323 1.48496 63.4855 1.42545 63.4458 1.37369 63.3977 1.32449 63.3619 1.26277 63.3339 1.21105 63.2936 1.15944 63.2627 1.10494 63.232 1.04261 63.2091 0.989893 63.1682 0.952392 63.1296 0.892673 63.1177 0.85191 63.0767 0.794362 63.0519 0.757127 63.0227 0.700002 63.0167 0.661582 62.9776 0.602916 62.9768 0.570363 62.9259 0.513399 62.9399 0.482512 62.8984 0.425066 62.903 0.403915 62.8297 0.344266 62.9168 0.304367 62.9047 0.257228 62.8601 0.23221 62.7677 0.203344 62.4841 0.180991 62.0173 0.162388 61.3878 0.146167 60.6589 0.131731 59.8548 0.118632 58.9898 0.106507 58.075 0.0950884 57.1192 0.084166 56.1305 0.0735755 55.1165 0.0631849 54.085 0.0528892 53.0438 0.0425874 52.001 0.0322583 50.9645 0.0217089 49.943 0.011048 48.9422 47.9722 20.3696 27.5482 20.2672 33.0807 19.8862 37.6967 19.3386 41.5791 18.7257 44.7436 18.1057 47.3285 17.5062 49.4772 16.9407 51.3014 16.4161 52.8878 15.941 54.3154 15.5249 55.6734 15.161 57.0043 14.8107 58.2747 14.4292 59.2806 14.0153 60.0539 13.6086 60.6578 13.257 61.1025 12.9377 61.4686 12.6002 61.8009 12.2687 62.1156 11.9453 62.3925 11.6301 62.6994 11.323 62.9714 11.029 63.2231 10.747 63.4534 10.4561 63.6764 10.1885 63.8671 9.92907 64.0837 9.67883 64.2611 9.43025 64.3913 9.18722 64.5263 8.96913 64.5482 8.74146 64.8055 8.5091 64.8925 8.2909 64.977 8.08701 65.0736 7.88743 65.1561 7.67602 65.2079 7.47772 65.2526 7.28506 65.3129 7.09754 65.3789 6.91154 65.4223 6.73132 65.4405 6.55819 65.4725 6.38747 65.4939 6.22197 65.5067 6.05942 65.5167 5.9003 65.5201 5.74559 65.5133 5.59802 65.5037 5.44772 65.4962 5.30636 65.4621 5.16433 65.4495 5.03105 65.4296 4.89659 65.4137 4.76963 65.3859 4.64113 65.3561 4.52088 65.3163 4.39649 65.2903 4.27967 65.243 4.1608 65.214 4.05373 65.1629 3.94124 65.1348 3.83525 65.0826 3.73002 65.0427 3.62977 64.9926 3.52877 64.9486 3.43206 64.8896 3.33767 64.8435 3.23834 64.7923 3.13919 64.7574 3.03325 64.6669 2.93841 64.6555 2.88787 64.5821 2.80946 64.5822 2.72009 64.5816 2.57433 64.5536 2.61127 63.9285 2.47122 64.5095 2.34084 64.4778 2.36898 63.682 2.24402 64.3146 2.16061 64.2121 2.09641 64.1345 2.04452 64.0623 1.98251 63.9866 1.91764 63.9298 1.8536 63.8877 1.78988 63.8446 1.727 63.7991 1.65982 63.755 1.59948 63.7127 1.54198 63.6675 1.487 63.6254 1.42788 63.5914 1.37389 63.5395 1.33011 63.4895 1.2695 63.4583 1.2223 63.4091 1.16543 63.3908 1.11603 63.343 1.06319 63.3155 1.02378 63.2714 0.965208 63.2677 0.910136 63.2233 0.883774 63.1559 0.819095 63.1823 0.789661 63.1061 0.7252 63.1164 0.702708 63.0452 0.641826 63.0776 0.612386 63.007 0.554027 63.0352 0.529036 62.9509 0.471836 62.9971 0.448826 62.9214 0.393028 62.9588 0.37395 62.8488 0.324182 62.9666 0.29491 62.934 0.248485 62.9066 0.224927 62.7913 0.193122 62.5159 0.170627 62.0398 0.152312 61.4061 0.136499 60.6747 0.122608 59.8687 0.110126 59.0023 0.0986646 58.0864 0.0879405 57.1299 0.0777373 56.1407 0.0678877 55.1264 0.058259 54.0946 0.0487492 53.0533 0.0392551 52.0105 0.0297582 50.9739 0.0200747 49.9527 0.0102597 48.952 47.9825 19.663 27.2444 19.4361 33.3077 18.968 38.1648 18.3624 42.1846 17.7221 45.384 17.0968 47.9537 16.5053 50.0687 15.9537 51.853 15.444 53.3975 14.9807 54.7787 14.5718 56.0822 14.2143 57.3618 13.8836 58.6055 13.5385 59.6256 13.217 60.3754 12.8672 61.0076 12.5013 61.4684 12.1422 61.8277 11.812 62.1311 11.4949 62.4327 11.1896 62.6978 10.8954 62.9935 10.6085 63.2584 10.3309 63.5006 10.0628 63.7216 9.79698 63.9422 9.54247 64.1216 9.29787 64.3283 9.05939 64.4995 8.81666 64.6341 8.58345 64.7595 8.39292 64.7387 8.16697 65.0315 7.94659 65.1129 7.74351 65.1801 7.55252 65.2645 7.36189 65.3468 7.16911 65.4007 6.98084 65.4409 6.79951 65.4943 6.62293 65.5554 6.44902 65.5962 6.27679 65.6127 6.11763 65.6316 5.95555 65.656 5.80137 65.6609 5.64972 65.6684 5.49856 65.6713 5.34874 65.6631 5.21579 65.6367 5.07042 65.6416 4.9415 65.591 4.80379 65.5872 4.68308 65.5503 4.5536 65.5431 4.43868 65.5009 4.31638 65.4784 4.20489 65.4278 4.08811 65.4071 3.9794 65.3518 3.86765 65.3257 3.7679 65.2626 3.66427 65.2385 3.56213 65.1847 3.46813 65.1367 3.36938 65.0914 3.27935 65.0387 3.17621 64.9928 3.07637 64.9434 3.0016 64.8671 2.92499 64.834 2.80785 64.784 2.7224 64.7409 2.68146 64.6231 2.60299 64.6606 2.5268 64.6578 2.38221 64.6982 2.41611 63.8946 2.29125 64.6343 2.17192 64.5971 2.19062 63.6633 2.08144 64.4238 2.00519 64.2883 1.94551 64.1941 1.90137 64.1065 1.84109 64.0469 1.77882 63.992 1.71896 63.9476 1.65511 63.9085 1.59242 63.8618 1.53706 63.8104 1.48499 63.7648 1.43158 63.7209 1.37847 63.6785 1.3369 63.6329 1.27581 63.6006 1.23545 63.5299 1.17512 63.5187 1.13842 63.4458 1.08093 63.4483 1.03233 63.3916 0.9848 63.3631 0.951626 63.3046 0.901349 63.318 0.843522 63.2811 0.822741 63.1767 0.757868 63.2472 0.739626 63.1243 0.67072 63.1853 0.655078 63.0608 0.59304 63.1396 0.57058 63.0295 0.51286 63.0929 0.493166 62.9706 0.435936 63.0543 0.417466 62.9399 0.366639 63.0096 0.346152 62.8693 0.2994 63.0134 0.274196 62.9592 0.228604 62.9522 0.212745 62.8071 0.182503 62.5461 0.160442 62.0619 0.14247 61.424 0.127143 60.6901 0.113851 59.8819 0.102018 59.0141 0.091231 58.0972 0.0811968 57.14 0.0716947 56.1502 0.0625571 55.1355 0.053653 54.1035 0.0448837 53.0621 0.0361483 52.0192 0.0274229 50.9827 0.0185592 49.9616 0.00952089 48.9611 47.992 18.9477 27.1297 18.5656 33.6898 18.0056 38.7249 17.3473 42.8429 16.6899 46.0414 16.0715 48.5722 15.4992 50.641 14.9713 52.3808 14.4853 53.8835 14.0416 55.2224 13.647 56.4769 13.3007 57.7081 12.987 58.9192 12.6571 59.9556 12.3484 60.6842 12.0235 61.3324 11.681 61.8108 11.3525 62.1562 11.0472 62.4365 10.7515 62.7283 10.4621 62.9872 10.1814 63.2742 9.90872 63.5312 9.64556 63.7637 9.3922 63.9749 9.14593 64.1884 8.9072 64.3603 8.67854 64.5569 8.45168 64.7264 8.22789 64.8579 8.00327 64.9841 7.83123 64.9108 7.61603 65.2467 7.40831 65.3206 7.2213 65.3671 7.04253 65.4433 6.86352 65.5258 6.68443 65.5798 6.50752 65.6178 6.33736 65.6644 6.17298 65.7198 6.0092 65.76 5.84661 65.7753 5.6991 65.7791 5.54459 65.8105 5.40161 65.8039 5.25872 65.8113 5.11957 65.8104 4.97827 65.8044 4.85574 65.7592 4.71577 65.7816 4.59828 65.7085 4.46576 65.7197 4.3558 65.6603 4.23159 65.6674 4.12804 65.6044 4.01556 65.5909 3.90625 65.5371 3.80161 65.5117 3.6958 65.4576 3.59679 65.4247 3.49479 65.3646 3.38825 65.345 3.29987 65.2731 3.19365 65.2429 3.1166 65.1684 3.0165 65.1388 2.94763 65.0616 2.85315 65.0378 2.7886 64.9316 2.69103 64.9316 2.63235 64.8427 2.52867 64.8446 2.49228 64.6595 2.38091 64.772 2.37031 64.6684 2.23152 64.837 2.2271 63.8991 2.14238 64.7191 2.06768 64.6718 2.00455 63.7264 1.90444 64.5239 1.84676 64.346 1.80567 64.2352 1.76156 64.1506 1.70396 64.1045 1.64415 64.0518 1.58312 64.0086 1.52936 63.9623 1.47484 63.9163 1.42088 63.8643 1.37352 63.8121 1.33793 63.7565 1.28638 63.73 1.22643 63.6929 1.17882 63.6482 1.14449 63.5642 1.08516 63.578 1.04093 63.4901 0.994195 63.495 0.957376 63.4284 0.908444 63.412 0.879181 63.3339 0.827595 63.3696 0.779434 63.3293 0.760161 63.196 0.697648 63.3097 0.680484 63.1415 0.616145 63.2496 0.603352 63.0736 0.544438 63.1986 0.526502 63.0474 0.472485 63.1469 0.454935 62.9882 0.402604 63.1066 0.386454 62.9561 0.339564 63.0565 0.313946 62.8949 0.282073 63.0452 0.26464 62.9766 0.223541 62.9933 0.205259 62.8254 0.17209 62.5793 0.150439 62.0835 0.132853 61.4416 0.118106 60.7048 0.105469 59.8946 0.09431 59.0253 0.0842041 58.1073 0.0748502 57.1493 0.0660275 56.159 0.0575709 55.144 0.0493527 54.1117 0.0412779 53.0701 0.0332528 52.0272 0.0252373 50.9907 0.0171492 49.9697 0.00881201 48.9694 48.0008 18.2626 27.3199 17.6796 34.2727 17.0182 39.3863 16.31 43.5511 15.6442 46.7072 15.0424 49.1739 14.4984 51.1851 14.0019 52.8773 13.5457 54.3397 13.1277 55.6404 12.7524 56.8522 12.4214 58.0391 12.1236 59.217 11.8169 60.2622 11.511 60.9901 11.2187 61.6248 10.9111 62.1184 10.6108 62.4565 10.3214 62.7259 10.0405 63.0091 9.76877 63.259 9.50763 63.5353 9.25386 63.7849 9.00734 64.0103 8.77053 64.2117 8.54025 64.4187 8.3157 64.5849 8.09882 64.7738 7.88817 64.9371 7.67802 65.068 7.45999 65.2022 7.3044 65.0664 7.09008 65.461 6.90003 65.5107 6.72921 65.538 6.5607 65.6118 6.39185 65.6946 6.22421 65.7474 6.0599 65.7821 5.89979 65.8245 5.74581 65.8738 5.59319 65.9126 5.44173 65.9268 5.30141 65.9195 5.15659 65.9553 5.02487 65.9356 4.89092 65.9452 4.76068 65.9407 4.62847 65.9366 4.51153 65.8762 4.38125 65.9118 4.27168 65.8181 4.14631 65.8451 4.04523 65.7613 3.92362 65.789 3.83319 65.6948 3.70243 65.7216 3.62187 65.6177 3.48699 65.6466 3.42451 65.52 3.3061 65.5431 3.23386 65.4369 3.1249 65.454 3.0636 65.3344 2.95402 65.3525 2.89643 65.226 2.78881 65.2464 2.74182 65.1086 2.63294 65.1467 2.59272 64.9718 2.48097 65.0433 2.45009 64.8736 2.33969 64.955 2.31093 64.6882 2.19533 64.8876 2.20357 64.6602 2.12037 64.9202 1.99854 64.0209 1.97725 64.7404 1.93491 64.7142 1.80607 63.8553 1.75896 64.5711 1.71505 64.3899 1.68317 64.2671 1.63329 64.2005 1.5703 64.1675 1.52278 64.0994 1.46003 64.0714 1.42206 64.0002 1.36468 63.9737 1.32105 63.908 1.26763 63.8655 1.2252 63.7989 1.17652 63.7787 1.1341 63.7353 1.10324 63.679 1.04671 63.6208 1.01305 63.6117 0.963833 63.5393 0.925739 63.5331 0.884104 63.47 0.845163 63.4509 0.813467 63.3656 0.761396 63.4216 0.731674 63.359 0.70177 63.2259 0.648954 63.3625 0.630658 63.1598 0.574021 63.3063 0.555218 63.0924 0.50509 63.2487 0.486748 63.0657 0.439516 63.1942 0.418841 63.0088 0.375736 63.1497 0.357121 62.9747 0.321243 63.0924 0.284799 62.9314 0.261181 63.0689 0.245234 62.9926 0.215856 63.0226 0.193298 62.848 0.161573 62.611 0.140571 62.1045 0.123474 61.4587 0.109405 60.7189 0.0974707 59.9065 0.0870066 59.0357 0.0775811 58.1168 0.0688927 57.158 0.0607242 56.1672 0.0529154 55.1518 0.045344 54.1193 0.0379175 53.0776 0.0305552 52.0346 0.0231889 50.9981 0.0158338 49.977 0.00811546 48.9771 48.0089 17.6467 27.9742 16.808 35.1114 16.0254 40.1689 15.2665 44.31 14.5989 47.3748 14.0218 49.751 13.5129 51.6941 13.053 53.3372 12.6311 54.7616 12.2425 56.029 11.8902 57.2045 11.5774 58.352 11.2959 59.4984 11.0133 60.5448 10.7114 61.292 10.4406 61.8956 10.1584 62.4007 9.88726 62.7276 9.62346 62.9897 9.3613 63.2713 9.10408 63.5162 8.85665 63.7828 8.61777 64.0238 8.38659 64.2414 8.16481 64.4335 7.94973 64.6338 7.73991 64.7947 7.53705 64.9767 7.33825 65.1358 7.15075 65.2555 6.95055 65.4024 6.79054 65.2264 6.58576 65.6658 6.41932 65.6771 6.2614 65.6959 6.10196 65.7713 5.94421 65.8524 5.78752 65.9041 5.63445 65.9352 5.48463 65.9743 5.34179 66.0166 5.19894 66.0554 5.05929 66.0664 4.92385 66.0549 4.79032 66.0888 4.66612 66.0598 4.54172 66.0696 4.42242 66.06 4.30234 66.0567 4.18899 65.9895 4.07032 66.0305 3.96718 65.9212 3.84924 65.9631 3.7568 65.8538 3.63916 65.9066 3.56175 65.7722 3.45149 65.8319 3.36846 65.7007 3.25888 65.7562 3.18486 65.5941 3.05427 65.6737 3.01076 65.4804 2.88572 65.579 2.84911 65.371 2.72751 65.4741 2.69331 65.2602 2.57732 65.3624 2.54769 65.1383 2.43547 65.2589 2.40717 65.0001 2.29416 65.1563 2.27503 64.8927 2.16543 65.0646 2.11588 64.7378 2.03984 64.9636 2.05173 64.6483 2.00201 64.9699 1.82967 64.1932 1.80986 64.7602 1.81401 64.71 1.64185 64.0274 1.61059 64.6023 1.60063 64.3999 1.55417 64.3136 1.50904 64.2456 1.4355 64.241 1.40874 64.1261 1.34391 64.1362 1.3178 64.0263 1.25583 64.0357 1.229 63.9348 1.16998 63.9246 1.12883 63.8401 1.10092 63.8066 1.04587 63.7904 1.01922 63.7057 0.964918 63.6751 0.935453 63.6411 0.886661 63.5881 0.857104 63.5627 0.817688 63.5094 0.778465 63.4902 0.740273 63.4038 0.711275 63.4506 0.683184 63.3871 0.633348 63.2757 0.61041 63.3855 0.565446 63.2048 0.541952 63.3298 0.495444 63.1389 0.475011 63.2691 0.436327 63.1044 0.416745 63.2138 0.373585 63.052 0.358306 63.165 0.319271 63.0137 0.301982 63.1097 0.259927 62.9734 0.2488 63.08 0.233144 63.0082 0.214578 63.0412 0.184558 62.878 0.151321 62.6443 0.130841 62.125 0.114369 61.4752 0.101065 60.7322 0.0898689 59.9177 0.0801099 59.0455 0.0713571 58.1255 0.0633142 57.1661 0.0557716 56.1747 0.0485762 55.159 0.0416123 54.1263 0.0347893 53.0844 0.0280432 52.0413 0.0212693 51.0048 0.0146053 49.9837 0.00741856 48.9843 48.0163 17.0991 29.229 15.978 36.2324 15.0434 41.1035 14.2306 45.1228 13.5662 48.0392 13.0198 50.2973 12.551 52.1629 12.1314 53.7568 11.7461 55.1469 11.3892 56.3859 11.0622 57.5315 10.7694 58.6448 10.5053 59.7625 10.2443 60.8057 9.95577 61.5806 9.70153 62.1498 9.45481 62.6474 9.20905 62.9733 8.96047 63.2383 8.71372 63.5181 8.47384 63.7561 8.24465 64.012 8.02324 64.2452 7.80781 64.4569 7.601 64.6403 7.40001 64.8348 7.20334 64.9914 7.01229 65.1677 6.82638 65.3218 6.65034 65.4316 6.47669 65.576 6.30091 65.4021 6.10956 65.8571 5.96924 65.8174 5.81898 65.8461 5.66858 65.9217 5.52086 66.0001 5.37463 66.0503 5.2326 66.0772 5.09282 66.1141 4.95868 66.1508 4.8263 66.1878 4.6985 66.1942 4.56534 66.1881 4.44692 66.2073 4.32815 66.1786 4.21425 66.1835 4.10102 66.1732 3.99215 66.1656 3.87927 66.1024 3.77651 66.1333 3.67536 66.0224 3.56862 66.0698 3.48148 65.9409 3.37042 66.0177 3.30196 65.8407 3.17836 65.9555 3.12389 65.7552 3.0062 65.8739 2.95446 65.6458 2.85585 65.7723 2.79434 65.5419 2.70157 65.6718 2.64149 65.4311 2.55418 65.5614 2.49547 65.3189 2.41201 65.4458 2.34526 65.205 2.2695 65.3347 2.19491 65.0747 2.14004 65.2112 2.07624 64.9565 2.03593 65.1049 1.94599 64.8277 1.8922 65.0174 1.84915 64.6914 1.86726 64.9518 1.67369 64.3868 1.66397 64.7699 1.69018 64.6838 1.5003 64.2173 1.48913 64.6135 1.48164 64.4073 1.43641 64.3588 1.39543 64.2866 1.34294 64.2935 1.29998 64.1691 1.24968 64.1865 1.20374 64.0723 1.15711 64.0823 1.12135 63.9706 1.0814 63.9645 1.03977 63.8817 1.0201 63.8263 0.966269 63.8442 0.944378 63.7276 0.889156 63.7303 0.865949 63.6643 0.819407 63.6346 0.793554 63.5885 0.755248 63.5477 0.720088 63.5253 0.681818 63.442 0.661167 63.4713 0.634133 63.4141 0.581399 63.3284 0.571507 63.3954 0.517663 63.2586 0.508012 63.3394 0.451913 63.195 0.445496 63.2755 0.397161 63.1528 0.390076 63.2208 0.341235 63.1008 0.335378 63.1709 0.290262 63.0588 0.282682 63.1173 0.238312 63.0178 0.230893 63.0874 0.209891 63.0292 0.204244 63.0468 0.170406 62.9118 0.140925 62.6737 0.121233 62.1447 0.10558 61.4908 0.0931068 60.7447 0.0826735 59.9281 0.0736198 59.0545 0.0655246 58.1336 0.0581027 57.1735 0.0511556 56.1817 0.0445382 55.1656 0.0381431 54.1327 0.0318807 53.0907 0.0257051 52.0475 0.0194739 51.0111 0.0134583 49.9897 0.00671639 48.991 48.023 16.4738 31.0084 15.1761 37.5301 14.0747 42.205 13.2099 45.9876 12.5541 48.6949 12.0442 50.8072 11.6194 52.5877 11.2422 54.134 10.8947 55.4943 10.5704 56.7103 10.2698 57.8321 9.99795 58.9167 9.75207 60.0084 9.51067 61.0471 9.24339 61.8479 8.99038 62.4028 8.77352 62.8642 8.55459 63.1923 8.32731 63.4656 8.09743 63.7479 7.87178 63.9818 7.65661 64.2271 7.44944 64.4524 7.24865 64.6577 7.05539 64.8336 6.86827 65.0219 6.68538 65.1743 6.50804 65.3451 6.33255 65.4972 6.16977 65.5943 6.03061 65.7152 5.81444 65.6183 5.67287 65.9987 5.54136 65.9489 5.39787 65.9896 5.25758 66.062 5.11965 66.1381 4.98459 66.1854 4.85162 66.2102 4.72229 66.2435 4.59716 66.2759 4.47427 66.3107 4.35702 66.3114 4.23078 66.3143 4.12183 66.3162 4.00894 66.2915 3.90423 66.2882 3.79856 66.2788 3.70213 66.262 3.58801 66.2165 3.50222 66.2191 3.39657 66.128 3.30907 66.1573 3.17625 66.0737 3.12729 66.0666 3.01078 65.9572 2.95262 66.0137 2.84395 65.8639 2.79819 65.9196 2.68575 65.7583 2.64805 65.81 2.53819 65.6517 2.50653 65.7034 2.39707 65.5405 2.3699 65.5886 2.26337 65.4255 2.2407 65.4685 2.1386 65.3071 2.12117 65.3521 2.01484 65.1811 2.00249 65.2236 1.9009 65.0581 1.89554 65.1103 1.79136 64.9319 1.80166 65.0071 1.69455 64.7985 1.74825 64.8981 1.53341 64.6016 1.53963 64.7637 1.57187 64.6515 1.36722 64.422 1.3937 64.587 1.36235 64.4387 1.32339 64.3978 1.26919 64.3408 1.23852 64.3242 1.18432 64.2233 1.15972 64.2111 1.10775 64.1242 1.08128 64.1088 1.0329 64.0189 1.01231 63.9851 0.955976 63.938 0.923075 63.8592 0.906172 63.8611 0.855111 63.7786 0.818835 63.7666 0.784243 63.6989 0.752413 63.6664 0.719972 63.621 0.691691 63.576 0.667466 63.5496 0.625169 63.4843 0.612508 63.4839 0.585662 63.441 0.532163 63.3819 0.529095 63.3984 0.471212 63.3165 0.469425 63.3412 0.411216 63.2532 0.411948 63.2748 0.361331 63.2034 0.36145 63.2207 0.3108 63.1515 0.311265 63.1704 0.264667 63.1054 0.262586 63.1193 0.216625 63.0638 0.2176 63.0864 0.197276 63.0495 0.200554 63.0436 0.159091 62.9533 0.13093 62.7019 0.111812 62.1638 0.0971545 61.5055 0.0855512 60.7563 0.0758909 59.9378 0.0675325 59.0629 0.0600734 58.1411 0.0532445 57.1803 0.0468605 56.1881 0.0407862 55.1717 0.034922 54.1385 0.0291798 53.0964 0.0235298 52.0531 0.0178003 51.0168 0.0123911 49.9951 0.00601162 48.9974 48.029 15.4591 33.0151 14.2059 38.7832 13.0839 43.327 12.1997 46.8717 11.5656 49.329 11.0997 51.2731 10.7227 52.9647 10.3891 54.4676 10.0797 55.8037 9.78785 57.0021 9.51401 58.1059 9.26339 59.1673 9.036 60.2358 8.81344 61.2697 8.57017 62.0911 8.32611 62.6469 8.13872 63.0516 7.93964 63.3913 7.72623 63.679 7.51213 63.962 7.30321 64.1907 7.10495 64.4254 6.9132 64.6441 6.72679 64.8441 6.54685 65.0135 6.37268 65.1961 6.20203 65.3449 6.03659 65.5105 5.87407 65.6598 5.71607 65.7523 5.59771 65.8336 5.28674 65.9293 5.26608 66.0194 5.13647 66.0785 5.00009 66.126 4.8702 66.1918 4.74111 66.2671 4.61653 66.31 4.49216 66.3346 4.3733 66.3623 4.25514 66.3941 4.14261 66.4232 4.0321 66.422 3.91618 66.4302 3.81438 66.418 3.71 66.3959 3.61257 66.3857 3.51314 66.3783 3.42402 66.3511 3.31583 66.3247 3.24005 66.2948 3.11666 66.2514 3.06188 66.2121 2.9631 66.1725 2.89621 66.1335 2.76397 66.0895 2.7381 66.0395 2.61413 65.9878 2.59259 65.9412 2.46926 65.8816 2.45235 65.8269 2.33351 65.7706 2.32047 65.7165 2.2036 65.6574 2.19343 65.5987 2.08072 65.5382 2.07307 65.4761 1.96553 65.4146 1.9613 65.3564 1.85174 65.2906 1.8527 65.2226 1.74632 65.1645 1.75371 65.1029 1.64625 65.0393 1.66959 64.9838 1.55629 64.9118 1.61395 64.8404 1.40793 64.8076 1.44532 64.7263 1.44954 64.6473 1.25574 64.6158 1.2884 64.5543 1.25614 64.471 1.21997 64.4339 1.16077 64.4 1.14354 64.3414 1.08927 64.2775 1.07142 64.2289 1.01966 64.176 0.999177 64.1293 0.951792 64.0663 0.92119 64.0157 0.900815 63.9584 0.846971 63.913 0.838584 63.8695 0.785297 63.8319 0.765116 63.7868 0.723901 63.7401 0.692932 63.6974 0.667963 63.6459 0.635905 63.6081 0.620629 63.5648 0.573734 63.5312 0.5668 63.4909 0.541116 63.4667 0.488754 63.4343 0.490403 63.3968 0.434258 63.3726 0.434322 63.3412 0.377194 63.3103 0.381106 63.2709 0.331412 63.2531 0.334383 63.2178 0.285213 63.2007 0.287989 63.1676 0.242661 63.1508 0.242979 63.119 0.198085 63.1087 0.201107 63.0834 0.180413 63.0702 0.186032 63.0379 0.146305 62.993 0.120809 62.7274 0.102646 62.182 0.0891302 61.519 0.0784132 60.767 0.0695224 59.9467 0.0618401 59.0706 0.0549904 58.1479 0.048724 57.1866 0.0428703 56.1939 0.0373042 55.1772 0.0319347 54.1439 0.0266747 53.1017 0.0215071 52.0583 0.0162436 51.0221 0.0114105 49.9999 0.00530889 49.0035 48.0344 13.5971 35.5616 12.8317 39.5487 11.9301 44.2286 11.1623 47.6395 10.5949 49.8964 10.1881 51.68 9.86365 53.2891 9.57459 54.7567 9.30267 56.0757 9.04259 57.2622 8.79515 58.3533 8.56564 59.3968 8.35658 60.4448 8.15182 61.4745 7.927 62.3159 7.69319 62.8807 7.47191 63.2729 7.26514 63.5981 7.06849 63.8756 6.87653 64.154 6.68782 64.3794 6.50375 64.6095 6.32668 64.8212 6.15475 65.016 5.98844 65.1798 5.82726 65.3573 5.67154 65.5006 5.52127 65.6608 5.37289 65.8081 5.23178 65.8934 5.09749 65.9678 4.95166 66.0751 4.82035 66.1507 4.69199 66.2069 4.56807 66.2499 4.44997 66.3099 4.33323 66.3839 4.21902 66.4242 4.10601 66.4476 3.99539 66.4729 3.8885 66.501 3.78366 66.5281 3.68072 66.5249 3.58024 66.5307 3.48257 66.5157 3.38873 66.4897 3.29781 66.4766 3.20938 66.4667 3.12252 66.438 3.03643 66.4108 2.9542 66.3771 2.87235 66.3332 2.79282 66.2916 2.7162 66.2491 2.64306 66.2067 2.57212 66.1604 2.50202 66.1096 2.43347 66.0564 2.36605 66.0086 2.3004 65.9472 2.23663 65.8907 2.17487 65.8324 2.11438 65.777 2.05463 65.7171 1.9976 65.6558 1.94108 65.5947 1.88743 65.5298 1.83399 65.4681 1.7836 65.4067 1.73042 65.3438 1.68268 65.2703 1.63333 65.2138 1.59034 65.1459 1.54544 65.0843 1.51384 65.0154 1.47413 64.9515 1.44334 64.8712 1.34028 64.9107 1.31914 64.7474 1.29248 64.674 1.19026 64.718 1.15673 64.5879 1.13195 64.4957 1.10519 64.4607 1.07634 64.4288 1.04246 64.3753 1.00986 64.3101 0.976487 64.2623 0.944621 64.2079 0.911717 64.1622 0.881777 64.0963 0.849261 64.0482 0.819092 63.9886 0.787972 63.9442 0.76036 63.8971 0.728645 63.8636 0.698974 63.8164 0.670505 63.7686 0.641234 63.7267 0.615514 63.6717 0.587582 63.636 0.562398 63.59 0.535204 63.5584 0.513423 63.5127 0.487269 63.4928 0.458991 63.4626 0.438258 63.4175 0.407649 63.4032 0.386154 63.3626 0.355054 63.3414 0.339036 63.2869 0.311811 63.2803 0.29721 63.2324 0.269087 63.2288 0.25586 63.1808 0.229296 63.1773 0.215021 63.1333 0.187132 63.1365 0.181215 63.0893 0.173761 63.0777 0.168759 63.043 0.137965 63.0238 0.111032 62.7543 0.0936466 62.1994 0.0813118 61.5314 0.0714884 60.7768 0.0633504 59.9548 0.0563214 59.0776 0.050051 58.1542 0.0443218 57.1923 0.0389659 56.1993 0.0338784 55.1823 0.0289686 54.1488 0.0241632 53.1065 0.0194243 52.0631 0.0146498 51.0268 0.0101969 50.0044 0.00461089 49.0091 48.039 31.5257 4.03591 44.2262 26.8482 49.3589 39.0959 50.7753 46.2231 50.5947 50.0771 49.7113 52.5633 48.6435 54.357 47.5516 55.8485 46.4433 57.184 45.3172 58.3883 44.1883 59.4822 43.0873 60.4979 42.0506 61.4816 41.0617 62.4633 40.013 63.3647 38.8863 64.0074 37.7796 64.3795 36.7048 64.6729 35.6655 64.9149 34.6689 65.1507 33.7078 65.3405 32.7845 65.5328 31.8968 65.7089 31.0304 65.8824 30.1897 66.0205 29.372 66.175 28.5722 66.3005 27.8043 66.4286 27.0475 66.565 26.3043 66.6367 25.598 66.6742 24.8911 66.782 24.2051 66.8367 23.5885 66.8235 22.9401 66.8983 22.344 66.906 21.736 66.9919 21.1649 66.9953 20.5787 67.0337 20.0369 67.0148 19.4743 67.0635 18.9619 67.0405 18.4225 67.0642 17.9333 67.02 17.4238 67.0251 16.9704 66.9431 16.4899 66.9571 16.0497 66.9069 15.5899 66.8978 15.1772 66.8236 14.7441 66.8102 14.347 66.7303 13.9316 66.707 13.5612 66.6195 13.1775 66.5904 12.8311 66.5068 12.4651 66.4756 12.133 66.3886 11.7828 66.3588 11.4657 66.2643 11.1326 66.2238 10.8333 66.1316 10.5179 66.0924 10.2326 66.0024 9.93139 65.957 9.66093 65.8652 9.37509 65.8156 9.11923 65.724 8.847 65.679 8.60414 65.5867 8.34725 65.5272 8.12152 65.4395 7.88535 65.382 7.68249 65.2871 7.47091 65.227 7.26232 65.1601 7.03637 65.0972 6.73992 65.2072 6.52548 64.9619 6.2902 64.9093 6.02813 64.98 5.828 64.788 5.66675 64.657 5.47917 64.6483 5.36859 64.5394 5.15033 64.5935 5.04386 64.4166 4.82468 64.4815 4.7225 64.3101 4.50228 64.3824 4.40503 64.1935 4.18771 64.2655 4.09669 64.0796 3.88325 64.1576 3.81034 63.97 3.61771 64.0563 3.44281 63.9913 3.35568 63.8557 3.15745 63.9249 3.09049 63.7386 2.88653 63.84 2.82401 63.6525 2.62669 63.7557 2.5757 63.5637 2.40936 63.6592 2.25868 63.6133 2.1986 63.4776 2.04091 63.5609 1.92105 63.4825 1.74168 63.5208 1.7061 63.3225 1.52486 63.4615 1.49197 63.2653 1.31465 63.4061 1.28209 63.2134 1.11124 63.3482 1.07528 63.1692 0.912817 63.299 0.891898 63.1102 0.800612 63.169 0.731302 63.1123 0.630931 63.1242 0.531501 62.8538 0.454258 62.2766 0.395305 61.5903 0.348302 60.8238 0.308954 59.9942 0.274806 59.1118 0.244291 58.1847 0.216359 57.2202 0.190278 56.2254 0.165498 55.2071 0.141594 54.1727 0.118227 53.1298 0.0950358 52.0862 0.0720035 51.0499 0.0475702 50.0288 0.0251862 49.0315 48.0642 11.4558 -7.41991 26.5238 11.7802 37.9543 27.6655 44.5407 39.6366 47.0452 47.5726 47.5329 52.0755 47.1933 54.6966 46.548 56.4939 45.801 57.931 44.9889 59.2004 44.1184 60.3526 43.2073 61.409 42.2887 62.4001 41.3927 63.3593 40.4934 64.264 39.5143 64.9865 38.4752 65.4186 37.3557 65.7925 36.1788 66.0918 35.0658 66.2637 34.0524 66.3538 33.1151 66.4701 32.2112 66.6127 31.3227 66.7709 30.4534 66.8897 29.6162 67.0122 28.7962 67.1205 28.0051 67.2197 27.2302 67.3399 26.4143 67.4526 25.5582 67.5302 24.9452 67.3949 24.5257 67.2562 23.7178 67.6314 23.1835 67.4326 22.3882 67.7013 21.915 67.4651 21.1714 67.7389 20.7292 67.476 20.0052 67.7388 19.6014 67.4673 18.9043 67.7376 18.5296 67.439 17.8619 67.6877 17.5187 67.3684 16.8666 67.5952 16.5647 67.2589 15.9562 67.5155 15.674 67.1799 15.0747 67.4229 14.81 67.0748 14.2342 67.3062 13.9898 66.9514 13.4392 67.1702 13.2189 66.8106 12.6948 67.0308 12.4942 66.6763 11.9908 66.892 11.8074 66.5422 11.3218 66.75 11.153 66.3926 10.6854 66.5992 10.5334 66.2444 10.0839 66.452 9.94519 66.0957 9.51376 66.2966 9.38653 65.9429 8.9678 66.1427 8.85486 65.7919 8.44151 66 8.34122 65.6275 7.95325 65.8275 7.87082 65.4645 7.49024 65.6677 7.42095 65.2963 7.0244 65.5566 6.97716 65.1444 6.62624 65.5581 6.58809 65 6.11411 65.3833 6.18484 64.9093 5.85543 65.1174 5.65987 64.8525 5.44934 64.8588 5.28428 64.7045 5.05224 64.8256 4.95095 64.5179 4.72639 64.7061 4.62609 64.4104 4.40875 64.5998 4.30858 64.2937 4.09545 64.4787 4.00634 64.1687 3.8055 64.3584 3.72474 64.0508 3.55976 64.2212 3.36636 64.1847 3.23843 63.9837 3.04974 64.1136 2.98436 63.804 2.80103 64.0233 2.73372 63.7198 2.55873 63.9307 2.49512 63.6273 2.34991 63.8044 2.1832 63.78 2.08822 63.5726 1.95424 63.6949 1.81686 63.6199 1.68421 63.6535 1.6246 63.3821 1.47594 63.6102 1.41304 63.3282 1.26643 63.5527 1.20363 63.2762 1.05621 63.4956 1.00344 63.222 0.873544 63.4289 0.81937 63.1644 0.693559 63.2948 0.53693 63.2689 0.503234 63.1579 0.449014 62.908 0.400558 62.3251 0.358092 61.6328 0.320282 60.8616 0.286572 60.0279 0.256198 59.1421 0.228427 58.2125 0.202644 57.246 0.178353 56.2497 0.155143 55.2303 0.132666 54.1952 0.110608 53.1519 0.0886815 52.1082 0.0665354 51.072 0.0441848 50.0512 0.0219288 49.0537 48.0861 -3.59254 -3.82737 5.63944 2.54825 19.6464 13.6585 31.8605 27.4225 39.6465 39.7866 43.3986 48.3235 44.7537 53.3415 44.9954 56.2522 44.7498 58.1766 44.2844 59.6657 43.6924 60.9446 43.0111 62.0904 42.2717 63.1396 41.5084 64.1226 40.7292 65.0433 39.8719 65.8438 38.908 66.3825 37.7039 66.9966 36.5243 67.2714 35.4761 67.3119 34.5023 67.3276 33.5282 67.4442 32.5776 67.5633 31.6658 67.6827 30.765 67.7906 29.916 67.8612 29.0476 67.9889 28.1854 68.0818 27.4446 68.0807 26.7157 68.1814 25.8414 68.4046 24.8645 68.3718 24.9259 67.1949 23.486 69.0713 23.5831 67.3354 22.1877 69.0968 22.2944 67.3583 20.9438 69.0895 21.061 67.3588 19.7626 69.0372 19.8995 67.3304 18.6412 68.9958 18.801 67.2791 17.5915 68.8972 17.7661 67.1938 16.5968 68.7645 16.7847 67.0711 15.6589 68.6412 15.8467 66.9922 14.7797 68.4899 14.9677 66.8868 13.9461 68.3278 14.1328 66.7646 13.1544 68.1486 13.3452 66.6198 12.4078 67.9682 12.5983 66.4858 11.6998 67.7905 11.8936 66.3483 11.0355 67.608 11.2284 66.1997 10.4028 67.4248 10.5958 66.0514 9.80511 67.2427 9.99856 65.9022 9.23819 67.057 9.4265 65.7546 8.69154 66.8777 8.88093 65.6025 8.17392 66.707 8.36349 65.4379 7.68062 66.5104 7.87163 65.2735 7.2032 66.3361 7.38036 65.1191 6.74684 66.1902 6.94269 64.9486 6.33967 66.1611 6.53767 64.802 5.95911 65.9618 6.19818 64.6702 5.70809 65.6075 5.53218 65.0284 5.51602 64.875 5.08158 65.1389 5.1112 64.796 4.7402 64.8889 4.77324 64.673 4.41429 64.7693 4.448 64.5661 4.1039 64.6378 4.13331 64.4493 3.79952 64.5025 3.82402 64.3339 3.51922 64.3556 3.49897 64.2415 3.37719 64.3065 3.096 64.2648 3.08415 64.1254 2.82559 64.0626 2.83386 64.015 2.56444 63.9893 2.57335 63.9218 2.32543 63.8752 2.29952 63.8303 2.19685 63.8826 1.96547 63.804 1.94777 63.7126 1.74416 63.8235 1.73211 63.6655 1.50791 63.6063 1.5081 63.61 1.29174 63.5445 1.29081 63.5536 1.07997 63.487 1.07718 63.4984 0.877628 63.4216 0.870847 63.4357 0.676749 63.3585 0.621742 63.3498 0.451306 63.4393 0.41848 63.1907 0.37606 62.9504 0.346813 62.3543 0.317176 61.6624 0.288204 60.8906 0.260704 60.0554 0.23479 59.168 0.210346 58.2369 0.187177 57.2692 0.165051 56.2718 0.14372 55.2516 0.122937 54.216 0.102461 53.1724 0.0820528 52.1286 0.0614687 51.0926 0.0406942 50.0719 0.0201644 49.0743 48.1062 0.0958159 -3.92319 2.96868 -0.324616 10.3882 6.23895 21.0574 16.7533 31.0793 29.7647 37.8421 41.5607 41.4235 49.76 42.9735 54.7022 43.4511 57.699 43.4004 59.7164 43.082 61.263 42.6105 62.5619 42.0401 63.7099 41.4071 64.7556 40.7341 65.7163 40.0099 66.568 39.2526 67.1397 38.361 67.8882 37.3523 68.2801 36.3032 68.361 35.2362 68.3947 34.2125 68.468 33.2341 68.5417 32.3129 68.6039 31.4167 68.6868 30.5265 68.7514 29.6483 68.8671 28.8232 68.907 27.9598 68.9441 27.0842 69.0571 26.3662 69.1226 25.0109 69.727 25.2627 66.9431 23.4277 70.9063 23.8105 66.9525 22.1462 70.7611 22.4245 67.0801 20.9017 70.6123 21.1457 67.1148 19.7135 70.4694 19.9371 67.1068 18.6017 70.3313 18.7963 67.0845 17.5536 70.1399 17.725 67.0224 16.5547 69.9347 16.7 66.9257 15.6878 69.6535 15.7082 66.9718 14.8159 69.3822 14.7961 66.9066 13.9889 69.1349 13.9403 66.8132 13.1961 68.8928 13.1465 66.6694 12.4623 68.6524 12.3829 66.5652 11.7585 68.4149 11.6554 66.4514 11.0989 68.1645 10.979 66.3196 10.4738 67.93 10.3361 66.1891 9.88341 67.6954 9.7385 66.0471 9.33189 67.4636 9.17842 65.908 8.83147 67.2246 8.6696 65.7644 8.37704 66.9996 8.1612 65.6538 7.87732 66.7943 7.66124 65.4896 7.4042 66.5932 7.16887 65.3544 6.92522 66.4338 6.63391 65.2399 6.54617 66.2488 6.25765 65.0905 6.16223 66.0572 5.89827 64.9342 5.67475 65.831 5.35209 65.3511 5.45358 64.7735 4.94039 65.6521 5.12637 64.61 4.56793 65.4473 4.78864 64.4523 4.25316 65.3048 4.46064 64.3586 3.94682 65.1516 4.1445 64.2516 3.64741 64.9996 3.83472 64.1466 3.37761 64.8127 3.44018 64.1789 3.31352 64.4332 2.99699 64.5814 3.09433 64.0281 2.69065 64.4662 2.84652 63.8592 2.44559 64.3902 2.58295 63.7845 2.21058 64.2476 2.24895 63.7919 2.13152 64.0001 1.85881 64.0767 1.93496 63.6365 1.67242 64.086 1.75952 63.5784 1.43495 63.9309 1.52262 63.5223 1.21705 63.8501 1.30084 63.4698 1.013 63.7749 1.08099 63.4304 0.807143 63.6954 0.871725 63.3711 0.621951 63.6083 0.590679 63.3811 0.480302 63.5497 0.35483 63.3162 0.332914 62.9723 0.307097 62.3801 0.282228 61.6873 0.258361 60.9145 0.235201 60.0786 0.212844 59.1904 0.191353 58.2584 0.170699 57.2899 0.150776 56.2917 0.131441 55.271 0.112513 54.2349 0.0938295 53.191 0.0752451 52.1472 0.0566502 51.1112 0.0371707 50.0914 0.0195307 49.0919 48.1258 0.307052 -0.307052 0.63714 -0.330088 0.952299 -0.315158 1.26828 -0.315983 1.5812 -0.312916 1.88927 -0.308071 2.19162 -0.30235 2.48735 -0.295727 2.77545 -0.288102 3.05479 -0.279341 3.32406 -0.269269 3.58175 -0.257691 3.82617 -0.24442 4.05545 -0.229283 4.26757 -0.212123 4.46037 -0.192795 4.63153 -0.171166 4.77863 -0.147091 4.89901 -0.120386 4.98971 -0.0906984 5.04677 -0.057059 5.06723 -0.0204625 5.04623 0.0210065 4.98013 0.0660976 4.85803 0.122094 4.6627 0.195333 4.35794 0.304764 3.87698 0.480954 0.17456 3.70242 0.331142 -0.638194 0.653955 -0.6529 0.985729 -0.646933 1.31333 -0.643581 1.63734 -0.636928 1.95676 -0.627487 2.27038 -0.615974 2.57715 -0.6025 2.876 -0.586948 3.16573 -0.569075 3.44501 -0.548548 3.71231 -0.524993 3.96593 -0.498039 4.20398 -0.467333 4.42441 -0.432546 4.62499 -0.393375 4.80335 -0.34953 4.95696 -0.300702 5.08307 -0.246495 5.17866 -0.186292 5.24067 -0.119068 5.26326 -0.0430546 5.24534 0.0389357 5.18193 0.129506 5.0636 0.240419 4.88152 0.377418 4.63727 0.549015 4.40264 0.715576 0.490402 4.0868 0.340477 -0.978671 0.679066 -0.991489 1.02153 -0.989398 1.36124 -0.98329 1.6973 -0.972986 2.02864 -0.958831 2.35407 -0.941403 2.67244 -0.920869 2.9826 -0.897108 3.28332 -0.869791 3.57322 -0.838451 3.85077 -0.802545 4.11425 -0.761522 4.36177 -0.714847 4.59123 -0.662008 4.80038 -0.602527 4.9868 -0.535946 5.14788 -0.461781 5.28082 -0.379437 5.38261 -0.288083 5.45002 -0.186474 5.48032 -0.0733555 5.46914 0.0501153 5.41147 0.187168 5.30465 0.347247 5.14794 0.53412 4.95514 0.741816 4.76112 0.909599 0.778445 4.47308 0.352513 -1.33118 0.705432 -1.34441 1.06012 -1.34409 1.41255 -1.33572 1.76142 -1.32186 2.10551 -1.30292 2.44357 -1.27946 2.77436 -1.25166 3.09667 -1.21942 3.4092 -1.18233 3.71056 -1.13981 3.99918 -1.09117 4.27333 -1.03568 4.53112 -0.972629 4.77043 -0.901321 4.989 -0.821096 5.18438 -0.731324 5.35395 -0.631353 5.49493 -0.520422 5.60443 -0.397577 5.67953 -0.261577 5.71759 -0.111411 5.71469 0.0530138 5.66733 0.234529 5.57529 0.439278 5.44195 0.667466 5.27916 0.904603 5.09765 1.09112 1.0566 4.81949 0.366586 -1.69777 0.733509 -1.71133 1.10136 -1.71194 1.46731 -1.70166 1.82984 -1.68439 2.18761 -1.6607 2.53924 -1.63109 2.88342 -1.59584 3.21883 -1.55482 3.5441 -1.5076 3.8578 -1.45351 4.15834 -1.3917 4.44398 -1.32131 4.71281 -1.24146 4.96274 -1.15125 5.19151 -1.04986 5.39668 -0.936494 5.57567 -0.810342 5.72576 -0.670517 5.84419 -0.516001 5.92824 -0.345628 5.97528 -0.158452 5.98229 0.0460031 5.94708 0.269739 5.87036 0.515999 5.75602 0.7818 5.61113 1.0495 5.43345 1.2688 1.33335 5.1567 0.381663 -2.07943 0.763085 -2.09275 1.14499 -2.09385 1.52531 -2.08198 1.90243 -2.0615 2.27487 -2.03313 2.64114 -1.99736 2.99978 -1.95448 3.34935 -1.90439 3.6884 -1.84666 4.01543 -1.78054 4.32882 -1.70509 4.62681 -1.61931 4.90751 -1.52216 5.16884 -1.41259 5.40857 -1.2896 5.62432 -1.15224 5.81356 -0.999582 5.97367 -0.83063 6.10202 -0.644346 6.19606 -0.43967 6.25337 -0.215757 6.27152 0.0278436 6.24908 0.292185 6.18686 0.578223 6.08767 0.880985 5.95405 1.18312 5.7769 1.44595 1.60833 5.50192 0.397251 -2.47669 0.793771 -2.48927 1.19061 -2.49068 1.58621 -2.47758 1.97889 -2.45418 2.36703 -2.42128 2.74904 -2.37936 3.1233 -2.32874 3.48822 -2.26931 3.84221 -2.20066 4.18369 -2.12201 4.51098 -2.03238 4.82231 -1.93063 5.11578 -1.81563 5.38935 -1.68616 5.64084 -1.54109 5.86794 -1.37934 6.06819 -1.19984 6.23912 -1.00155 6.37822 -0.783448 6.48312 -0.544571 6.5516 -0.284233 6.58161 -0.0021738 6.57198 0.30182 6.5231 0.627104 6.43616 0.967927 6.31008 1.3092 6.13262 1.62341 1.87824 5.8627 0.413047 -2.88973 0.825176 -2.9014 1.23776 -2.90326 1.64952 -2.88934 2.05873 -2.8634 2.46367 -2.82622 2.86256 -2.77825 3.25364 -2.71982 3.63516 -2.65084 4.00538 -2.57088 4.36255 -2.47918 4.70493 -2.37476 5.03071 -2.25642 5.33798 -2.1229 5.62473 -1.97291 5.88883 -1.80519 6.12805 -1.61855 6.34005 -1.41184 6.52248 -1.18399 6.67301 -0.933975 6.7894 -0.660963 6.8696 -0.36443 6.91177 -0.0443461 6.9147 0.298887 6.87811 0.663697 6.80159 1.04445 6.68171 1.42908 6.50583 1.79928 2.14001 6.24406 0.428769 -3.3185 0.856962 -3.32959 1.28602 -3.33232 1.71479 -3.31811 2.14148 -3.2901 2.56427 -3.24901 2.98122 -3.1952 3.39036 -3.12896 3.78978 -3.05025 4.17755 -2.95865 4.55178 -2.85342 4.91059 -2.73356 5.25208 -2.5979 5.5743 -2.44512 5.87528 -2.27388 6.15292 -2.08284 6.40509 -1.87072 6.62958 -1.63632 6.82415 -1.37856 6.98664 -1.09646 7.11496 -0.789279 7.20716 -0.456637 7.26152 -0.098703 7.27664 0.283765 7.25155 0.688792 7.1846 1.11139 7.07114 1.54255 6.89965 1.97077 2.39076 6.6489 0.444243 -3.76274 0.888919 -3.77427 1.33513 -3.77853 1.78169 -3.76467 2.22678 -3.73519 2.66844 -3.69066 3.10457 -3.63133 3.53303 -3.55742 3.95166 -3.46889 4.35837 -3.36535 4.75106 -3.24611 5.12773 -3.11023 5.48632 -2.9565 5.82482 -2.78363 6.14123 -2.59029 6.4335 -2.37511 6.69956 -2.13678 6.93731 -1.87408 7.14467 -1.58592 7.31961 -1.2714 7.46016 -0.929836 7.56451 -0.560985 7.63093 -0.165122 7.65785 0.256842 7.64374 0.7029 7.58618 1.16896 7.48012 1.6486 7.3158 2.13509 2.62818 7.07839 0.459484 -4.22223 0.921055 -4.23584 1.38505 -4.24253 1.85016 -4.22979 2.3145 -4.19952 2.77598 -4.15214 3.23237 -4.08772 3.68133 -4.00639 4.12051 -3.90807 4.54757 -3.7924 4.96021 -3.65875 5.35621 -3.50623 5.73339 -3.33369 6.08965 -3.13988 6.42288 -2.92352 6.73103 -2.68326 7.01207 -2.41782 7.26401 -2.12602 7.48488 -1.80679 7.67278 -1.45929 7.82588 -1.08294 7.94244 -0.677548 8.02077 -0.243447 8.05916 0.218444 8.05575 0.706314 8.00773 1.21698 7.91024 1.74609 7.75537 2.28996 2.85064 7.53291 0.474719 -4.69695 0.953639 -4.71476 1.43605 -4.72494 1.92044 -4.71418 2.40483 -4.68391 2.88704 -4.63435 3.3647 -4.56538 3.83531 -4.477 4.2963 -4.36906 4.74509 -4.2412 5.17918 -4.09284 5.59609 -3.92314 5.99347 -3.73107 6.36905 -3.51546 6.72063 -3.2751 7.04611 -3.00874 7.34344 -2.71515 7.61067 -2.39325 7.84593 -2.04206 8.04744 -1.6608 8.21348 -1.24898 8.3424 -0.806468 8.43255 -0.333599 8.4822 0.168789 8.48934 0.699176 8.45113 1.2552 8.36322 1.83399 8.21942 2.43377 3.05728 8.01277 0.490335 -5.18728 0.987173 -5.2116 1.48867 -5.22643 1.99309 -5.2186 2.49835 -5.18918 3.00218 -5.13817 3.50207 -5.06528 3.99539 -4.97032 4.47938 -4.85305 4.95126 -4.71308 5.40825 -4.54983 5.84767 -4.36255 6.26691 -4.15031 6.66351 -3.91206 7.03513 -3.64672 7.37954 -3.35314 7.69465 -3.03027 7.97852 -2.67711 8.22929 -2.29283 8.44526 -1.87676 8.62481 -1.42853 8.7664 -0.948055 8.86845 -0.43565 8.92929 0.107948 8.94695 0.681518 8.91879 1.28335 8.84116 1.91163 8.70934 2.56559 3.24792 8.51869 0.506807 -5.69409 1.02231 -5.72711 1.54369 -5.74781 2.06896 -5.74387 2.59595 -5.71617 3.12229 -5.66451 3.64538 -5.58837 4.16246 -5.48739 4.67061 -5.36119 5.16684 -5.20931 5.64816 -5.03115 6.11163 -4.82602 6.55442 -4.59309 6.9738 -4.33145 7.36724 -4.04016 7.73236 -3.71826 8.06694 -3.36486 8.36898 -2.97915 8.63662 -2.56046 8.86817 -2.10831 9.06208 -1.62244 9.21689 -1.10286 9.33114 -0.549901 9.40329 0.0357977 9.43154 0.653261 9.41364 1.30126 9.34664 1.97862 9.22712 2.68512 3.42297 9.05207 0.524599 -6.21869 1.05978 -6.26228 1.60199 -6.29003 2.14908 -6.29095 2.69875 -6.26585 3.24858 -6.21433 3.79588 -6.13568 4.33778 -6.02929 4.87122 -5.89463 5.39305 -5.73114 5.90008 -5.53818 6.38912 -5.31506 6.85708 -5.06106 7.30101 -4.77538 7.71811 -4.45726 8.10579 -4.10594 8.46168 -3.72075 8.78364 -3.3011 9.06973 -2.84655 9.31824 -2.35682 9.52763 -1.83184 9.69651 -1.27175 9.82355 -0.676935 9.90736 -0.0480193 9.94644 0.614183 9.93896 1.30874 9.88271 2.03487 9.77533 2.7925 3.58327 9.61503 0.544102 -6.76279 1.10022 -6.8184 1.66446 -6.85426 2.23449 -6.86098 2.80798 -6.83933 3.3824 -6.78876 3.95503 -6.7083 4.52288 -6.59714 5.0828 -6.45455 5.63149 -6.27983 6.16557 -6.07226 6.68165 -5.83114 7.17639 -5.5558 7.64659 -5.24557 8.08918 -4.89985 8.50133 -4.51809 8.88044 -4.09986 9.22419 -3.64485 9.5305 -3.15286 9.79757 -2.6239 10.0238 -2.05811 10.208 -1.45585 10.3487 -0.817637 10.4448 -0.144133 10.4951 0.563879 10.4982 1.3056 10.4527 2.0804 10.357 2.88817 3.72995 10.2103 0.565597 -7.32839 1.14421 -7.39701 1.73188 -7.44194 2.32621 -7.45532 2.92482 -7.43794 3.52514 -7.38907 4.12436 -7.30752 4.71943 -7.19222 5.30712 -7.04224 5.88399 -6.8567 6.44651 -6.63477 6.99109 -6.37573 7.51418 -6.07889 8.01231 -5.74371 8.48218 -5.36971 8.92067 -4.95658 9.32494 -4.50413 9.69241 -4.01232 10.0208 -3.48129 10.3083 -2.91133 10.553 -2.30289 10.7538 -1.6566 10.9093 -0.973172 11.0186 -0.253446 11.0808 0.501723 11.0949 1.29151 11.06 2.11527 10.9755 2.97271 3.86427 10.8412 0.589251 -7.91764 1.19213 -7.99989 1.80489 -8.05469 2.42511 -8.07554 3.05038 -8.06321 3.67808 -8.01678 4.30536 -7.9348 4.92912 -7.81598 5.54601 -7.65913 6.1525 -7.46319 6.74492 -7.22719 7.31951 -6.95032 7.87251 -6.6319 8.40023 -6.27143 8.8991 -5.86858 9.36575 -5.42323 9.79705 -4.93543 10.1902 -4.40546 10.5427 -3.83376 10.8523 -3.22098 11.1174 -2.56794 11.3363 -1.87558 11.5081 -1.14494 11.6318 -0.377095 11.7066 0.426875 11.7321 1.26598 11.708 2.1394 11.6341 3.04658 3.98744 11.511 0.615141 -8.53278 1.24427 -8.62903 1.88398 -8.6944 2.53187 -8.72343 3.18555 -8.71688 3.84236 -8.67359 4.49941 -8.59184 5.1535 -8.47007 5.80123 -8.30686 6.43896 -8.10091 7.06288 -7.85111 7.66908 -7.55652 8.25361 -7.21643 8.81257 -6.83039 9.34215 -6.39816 9.8387 -5.91979 10.2989 -5.39558 10.7195 -4.8261 11.0979 -4.21215 11.4317 -3.55474 11.7188 -2.85509 11.9577 -2.11452 12.1473 -1.33448 12.2866 -0.516397 12.3751 0.338317 12.4128 1.22837 12.3995 2.15263 12.3359 3.1102 4.10049 12.2229 0.643284 -9.17606 1.30078 -9.28653 1.96947 -9.36308 2.64704 -9.401 3.33109 -9.40093 4.01895 -9.36145 4.70766 -9.28056 5.39399 -9.1564 6.07441 -8.98729 6.74519 -8.77169 7.40239 -8.50831 8.04195 -8.19607 8.65974 -7.83422 9.25165 -7.42229 9.81363 -6.96014 10.3418 -6.44798 10.8326 -5.88632 11.2825 -5.27603 11.6886 -4.61826 12.0483 -3.9144 12.3593 -3.1661 12.6199 -2.37514 12.8288 -1.5434 12.9852 -0.672774 13.0886 0.234896 13.1391 1.17789 13.1371 2.15466 13.0834 3.16387 4.20439 12.9795 0.673666 -9.84973 1.36175 -9.97461 2.06159 -10.0629 2.771 -10.1104 3.48757 -10.1175 4.20862 -10.0825 4.93113 -10.0031 5.6518 -9.87706 6.367 -9.70249 7.07287 -9.47757 7.76534 -9.20078 8.44019 -8.87093 9.09312 -8.48714 9.71979 -8.04896 10.316 -7.55631 10.8775 -7.00953 11.4005 -6.40936 11.8814 -5.75693 12.3169 -5.05376 12.7042 -4.30164 13.0407 -3.50265 13.3246 -2.65906 13.5545 -1.77325 13.7294 -0.847641 13.8488 0.115406 13.9131 1.11364 13.9227 2.145 13.879 3.20764 4.29988 13.7835 0.706267 -10.556 1.4272 -10.6955 2.1605 -10.7962 2.90404 -10.8539 3.65545 -10.8689 4.41202 -10.8391 5.17067 -10.7617 5.928 -10.6344 6.68028 -10.4548 7.42352 -10.2208 8.15348 -9.93074 8.86577 -9.58321 9.55588 -9.17726 10.2193 -8.71238 10.8515 -8.18854 11.4482 -7.60623 12.0053 -6.96639 12.5188 -6.27045 12.9853 -5.52024 13.4016 -4.718 13.7652 -3.86624 14.0739 -2.96775 14.3261 -2.02544 14.5208 -1.04231 14.6575 -0.0213008 14.7364 1.03472 14.7583 2.12312 14.7245 3.24143 4.38739 14.637 0.741073 -11.2971 1.49718 -11.4517 2.2663 -11.5653 3.0464 -11.634 3.83511 -11.6576 4.62969 -11.6336 5.42699 -11.559 6.22352 -11.4309 7.0154 -11.2467 7.7985 -11.0039 8.56839 -10.7006 9.32049 -10.3353 10.0501 -9.90684 10.7524 -9.41469 11.4227 -8.85888 12.0565 -8.24 12.6493 -7.55922 13.1971 -6.81824 13.6961 -6.01927 14.1431 -5.16494 14.5351 -4.25826 14.8699 -3.30252 15.1456 -2.30121 15.3612 -1.25791 15.5161 -0.176224 15.6105 0.940346 15.6451 2.08848 15.6215 3.26509 4.46725 15.5416 0.778086 -12.0752 1.57173 -12.2453 2.37912 -12.3727 3.19829 -12.4532 4.02689 -12.4862 4.86212 -12.4689 5.70077 -12.3977 6.5392 -12.2694 7.37342 -12.0809 8.19909 -11.8296 9.01158 -11.5131 9.80608 -11.1298 10.5776 -10.6784 11.3212 -10.1583 12.0319 -9.56954 12.7048 -8.91289 13.3353 -8.18973 13.9191 -7.40204 14.4522 -6.5524 14.9312 -5.64388 15.3529 -4.67999 15.7149 -3.66453 16.0153 -2.60158 16.2527 -1.49536 16.4266 -0.350125 16.5371 0.829923 16.5848 2.04075 16.5713 3.27856 4.53976 16.4988 0.817324 -12.8925 1.65088 -13.0789 2.49905 -13.2209 3.35991 -13.3141 4.23109 -13.3574 5.10976 -13.3475 5.9926 -13.2805 6.87585 -13.1526 7.75532 -12.9603 8.62647 -12.7007 9.48445 -12.3711 10.3242 -11.9695 11.1404 -11.4946 11.9279 -10.9457 12.6813 -10.323 13.3956 -9.62717 14.0658 -8.85998 14.6875 -8.02372 15.2565 -7.12136 15.769 -6.15639 16.2218 -5.13278 16.6121 -4.05489 16.938 -2.92743 17.1979 -1.75529 17.3913 -0.543445 17.518 0.703185 17.5789 1.97983 17.5755 3.28198 4.60535 17.5099 0.85882 -13.7513 1.73473 -13.9548 2.62623 -14.1124 3.53147 -14.2193 4.44805 -14.274 5.37306 -14.2726 6.30309 -14.2105 7.2342 -14.0837 8.16203 -13.8882 9.0818 -13.6205 9.98837 -13.2777 10.8764 -12.8575 11.7402 -12.3585 12.5744 -11.7799 13.3732 -11.1218 14.1314 -10.3854 14.8438 -9.57241 15.5057 -8.68562 16.1126 -7.72823 16.6604 -6.70414 17.1455 -5.61788 17.565 -4.47448 17.917 -3.27935 18.1997 -2.03807 18.4126 -0.756346 18.5557 0.560163 18.6295 1.90595 18.6358 3.27576 4.66463 18.5765 0.902615 -14.6539 1.82335 -14.8755 2.76082 -15.0499 3.7132 -15.1717 4.67807 -15.2389 5.65245 -15.2469 6.6328 -15.1909 7.61501 -15.0659 8.59448 -14.8676 9.56617 -14.5922 10.5246 -14.2362 11.4642 -13.7971 12.3789 -13.2732 13.2627 -12.6638 14.1101 -11.9691 14.9152 -11.1905 15.6728 -10.33 16.3774 -9.39021 17.0241 -8.37492 17.6086 -7.28859 18.1271 -6.13643 18.5768 -4.92417 18.9554 -3.65792 19.2613 -2.344 19.4938 -0.988851 19.6529 0.401133 19.7391 1.81966 19.7542 3.26074 4.71867 19.7001 0.948753 -15.6027 1.91682 -15.8436 2.90294 -16.036 3.9053 -16.1741 4.92146 -16.255 5.94835 -16.2738 6.98228 -16.2248 8.01896 -16.1026 9.05352 -15.9022 10.0806 -15.6193 11.0945 -15.25 12.089 -14.7916 13.058 -14.2421 13.9952 -13.601 14.8947 -12.8686 15.7503 -12.0461 16.5556 -11.1353 17.305 -10.1396 17.9933 -9.0632 18.616 -7.9113 19.1694 -6.68981 19.6504 -5.40517 20.0566 -4.06414 20.3864 -2.67377 20.6387 -1.24124 20.8136 0.226284 20.9116 1.72163 20.9343 3.23804 4.76904 20.884 0.997272 -16.5999 2.01523 -16.8615 3.05272 -17.0735 4.10796 -17.2293 5.17848 -17.3255 6.26111 -17.3565 7.35201 -17.3157 8.44665 -17.1972 9.53992 -16.9955 10.6261 -16.7055 11.6991 -16.323 12.7523 -15.8449 13.7795 -15.2693 14.7742 -14.5957 15.7294 -13.8238 16.638 -12.9547 17.4935 -11.9908 18.2898 -10.936 19.0219 -9.79528 19.6852 -8.57462 20.2758 -7.28041 20.7903 -5.91965 21.226 -4.49978 21.5808 -3.02858 21.8536 -1.51406 22.0441 0.0357854 22.153 1.61269 22.1819 3.20915 4.81775 22.1332 1.04819 -17.6481 2.11861 -17.9319 3.21021 -18.1651 4.32126 -18.3404 5.44926 -18.4535 6.59093 -18.4981 7.74227 -18.4671 8.89852 -18.3535 10.0542 -18.1512 11.2033 -17.8546 12.3393 -17.459 13.4556 -16.9611 14.5453 -16.3591 15.601 -15.6514 16.6147 -14.8375 17.579 -13.919 18.4874 -12.8992 19.3341 -11.7827 20.1139 -10.575 20.8216 -9.28235 21.4529 -7.91167 22.0038 -6.47059 22.4712 -4.96722 22.8528 -3.41014 23.147 -1.80823 23.3533 -0.17053 23.4722 1.49374 23.5055 3.17589 4.86756 23.4557 1.10148 -18.7496 2.22691 -19.0574 3.37535 -19.3135 4.54514 -19.5101 5.73375 -19.6421 6.93781 -19.7022 8.15312 -19.6824 9.37466 -19.575 10.5966 -19.3732 11.8126 -19.0705 13.0159 -18.6622 14.1995 -18.1448 15.3554 -17.515 16.475 -16.771 17.5503 -15.9128 18.5741 -14.9429 19.5402 -13.8652 20.4421 -12.6847 21.2741 -11.407 22.0307 -10.0389 22.7068 -8.58778 23.298 -7.06185 23.8007 -5.46987 24.2117 -3.82118 24.5291 -2.12563 24.752 -0.393397 24.8806 1.36511 24.9167 3.13987 4.92135 24.8629 1.15708 -19.9067 2.33998 -20.2403 3.54792 -20.5215 4.77931 -20.7415 6.03162 -20.8944 7.30137 -20.9719 8.58415 -20.9652 9.87467 -20.8655 11.1667 -20.6652 12.4537 -20.3575 13.7286 -19.9371 14.9832 -19.3994 16.2083 -18.7401 17.3953 -17.9579 18.5367 -17.0541 19.6253 -16.0315 20.6542 -14.8941 21.6166 -13.6471 22.5061 -12.2966 23.3169 -10.8497 24.0434 -9.31425 24.6803 -7.69877 25.223 -6.01258 25.6676 -4.26578 26.0112 -2.46924 26.2523 -0.634434 26.3907 1.22671 26.428 3.10253 4.98208 26.3673 1.21484 -21.1215 2.45753 -21.483 3.72747 -21.7914 5.02317 -22.0372 6.3421 -22.2134 7.68069 -22.3105 9.03432 -22.3188 10.3974 -22.2286 11.7634 -22.0312 13.1254 -21.7196 14.4755 -21.2872 15.8041 -20.728 17.102 -20.038 18.3612 -19.2171 19.5739 -18.2669 20.7324 -17.19 21.8294 -15.9911 22.8579 -14.6756 23.8114 -13.2501 24.6833 -11.7216 25.4671 -10.098 26.1565 -8.38812 26.7455 -6.60158 27.2289 -4.74925 27.6028 -2.84314 27.8647 -0.896259 28.0137 1.07764 28.0514 3.06482 5.05259 27.9809 1.27452 -22.3961 2.57905 -22.7875 3.91322 -23.1256 5.27568 -23.3997 6.66389 -23.6016 8.07419 -23.7208 9.50174 -23.7463 10.9406 -23.6675 12.3841 -23.4747 13.8246 -23.1601 15.2528 -22.7153 16.6586 -22.1338 18.0337 -21.4131 19.3697 -20.5532 20.6582 -19.5554 21.8915 -18.4233 23.0623 -17.1618 24.1635 -15.7768 25.188 -14.2746 26.1285 -12.662 26.9771 -10.9466 27.726 -9.13702 28.3676 -7.24324 28.8954 -5.27701 29.3039 -3.25167 29.5897 -1.18205 29.7514 0.915985 29.7898 3.02635 5.13426 29.7082 1.33573 -23.7318 2.70377 -24.1555 4.10402 -24.5258 5.53528 -24.831 6.99502 -25.0613 8.47943 -25.2052 9.98344 -25.2503 11.5009 -25.1849 13.025 -24.9988 14.5464 -24.6815 16.0549 -24.2238 17.5415 -23.6204 18.9974 -22.869 20.4136 -21.9694 21.7818 -20.9236 23.0944 -19.7359 24.3442 -18.4117 25.524 -16.9566 26.6258 -15.3764 27.6407 -13.677 28.5592 -11.8651 29.3714 -9.94928 30.0685 -7.94029 30.6425 -5.85102 31.0874 -3.69653 31.3991 -1.49377 31.5758 0.739303 31.6177 2.98443 5.2244 31.5275 1.39796 -25.1297 2.83065 -25.5882 4.29826 -25.9934 5.79978 -26.3325 7.33269 -26.5942 8.89306 -26.7656 10.4756 -26.8328 12.0737 -26.7831 13.6796 -26.6046 15.283 -26.285 16.8743 -25.8151 18.444 -25.1901 19.9825 -24.4075 21.4807 -23.4676 22.9309 -22.3738 24.3256 -21.1307 25.6576 -19.7437 26.9186 -18.2175 28.0986 -16.5564 29.1864 -14.7648 30.1704 -12.8491 31.0392 -10.8181 31.7836 -8.68469 32.3963 -6.46367 32.872 -4.17228 33.2077 -1.82943 33.4018 0.545207 33.4537 2.93246 5.31298 33.3652 1.46049 -26.5902 2.95824 -27.086 4.49376 -27.529 6.06622 -27.9049 7.67309 -28.2011 9.31023 -28.4028 10.972 -28.4946 12.6518 -28.4629 14.3399 -28.2927 16.0259 -27.971 17.7002 -27.4894 19.3524 -26.8423 20.9726 -26.0277 22.5522 -25.0472 24.0835 -23.905 25.5588 -22.606 26.9694 -21.1543 28.3042 -19.5524 29.5498 -17.8019 30.6919 -15.9069 31.7181 -13.8753 32.6182 -11.7182 33.3858 -9.45224 34.0168 -7.0947 34.5094 -4.66485 34.8629 -2.18294 35.077 0.331112 35.1495 2.85997 5.3822 35.0803 1.52244 -28.1127 3.08475 -28.6483 4.68776 -29.132 6.33081 -29.548 8.01134 -29.8816 9.72504 -30.1165 11.466 -30.2356 13.226 -30.2229 14.9946 -30.0613 16.7617 -29.7381 18.5165 -29.2441 20.2477 -28.5735 21.9453 -27.7253 23.6006 -26.7025 25.2055 -25.5098 26.7501 -24.1507 28.2217 -22.6258 29.6036 -20.9342 30.879 -19.0774 32.0337 -17.0616 33.0587 -14.9003 33.9499 -12.6094 34.707 -10.2094 35.3323 -7.72007 35.8283 -5.16075 36.1958 -2.55044 36.4345 0.0923779 36.5402 2.75429 5.41146 36.5109 1.58273 -29.6954 3.20801 -30.2736 4.87697 -30.8009 6.58904 -31.2601 8.34152 -31.6341 10.1297 -31.9046 11.9473 -32.0532 13.7846 -32.0602 15.6309 -31.9075 17.4746 -31.5818 19.3033 -31.0728 21.1051 -30.3754 22.8696 -29.4898 24.587 -28.42 26.2463 -27.1691 27.8318 -25.7362 29.3236 -24.1176 30.7016 -22.3122 31.9508 -20.3266 33.0645 -18.1753 34.0429 -15.8787 34.893 -13.4595 35.6224 -10.9388 36.2373 -8.3349 36.7393 -5.66278 37.1273 -2.93842 37.3973 -0.177681 37.5471 2.60448 5.38746 37.5711 1.64014 -31.3355 3.32551 -31.9589 5.05745 -32.5329 6.83551 -33.0381 8.65681 -33.4554 10.5161 -33.7639 12.4057 -33.9428 14.3146 -33.9691 16.2314 -33.8243 18.1425 -33.4929 20.0337 -32.964 21.8917 -32.2334 23.7042 -31.3023 25.4579 -30.1737 27.1345 -28.8457 28.7102 -27.3119 30.162 -25.5695 31.4759 -23.6261 32.6491 -21.4999 33.6908 -19.2169 34.6151 -16.803 35.4342 -14.2786 36.1541 -11.6588 36.7758 -8.95661 37.2971 -6.18408 37.7134 -3.35473 38.0192 -0.483496 38.2095 2.41423 5.31842 38.2785 1.69331 -33.0289 3.43446 -33.7001 5.22489 -34.3233 7.06401 -34.8772 8.94869 -35.3401 10.8732 -35.6884 12.8275 -35.8972 14.7999 -35.9415 16.7764 -35.8008 18.7408 -35.4573 20.6765 -34.8998 22.5677 -34.1245 24.3976 -33.1323 26.1451 -31.9212 27.7832 -30.4837 29.2874 -28.8161 30.6461 -26.9282 31.8644 -24.8444 32.9605 -22.596 33.9547 -20.2111 34.8605 -17.7087 35.682 -15.1001 36.4173 -12.3941 37.0616 -9.60088 37.6097 -6.7322 38.0562 -3.80116 38.396 -0.823293 38.6253 2.1849 5.20674 38.737 1.74072 -34.7696 3.53179 -35.4912 5.37469 -36.1662 7.26847 -36.771 9.20903 -37.2807 11.1895 -37.6689 13.1981 -37.9058 15.2215 -37.9648 17.2421 -37.8214 19.2402 -37.4554 21.1951 -36.8547 23.0861 -36.0155 24.889 -34.9352 26.5742 -33.6063 28.1168 -32.0263 29.5099 -30.2092 30.7673 -28.1856 31.9151 -25.9922 32.9777 -23.6586 33.9682 -21.2016 34.8876 -18.6282 35.7308 -15.9432 36.4909 -13.1543 37.1609 -10.2709 37.7343 -7.30557 38.2054 -4.27223 38.5692 -1.18715 38.822 1.93212 5.06737 38.9614 1.78054 -36.5501 3.61364 -37.3243 5.50058 -38.0531 7.44007 -38.7105 9.42708 -39.2677 11.4524 -39.6942 13.5027 -39.9562 15.5608 -40.0229 17.6047 -39.8653 19.6097 -39.4604 21.5497 -38.7948 23.3967 -37.8624 25.1188 -36.6574 26.6915 -35.179 28.1127 -33.4475 29.4042 -31.5007 30.5987 -29.3801 31.7236 -27.1171 32.7914 -24.7264 33.8004 -22.2106 34.7427 -19.5704 35.6099 -16.8104 36.3937 -13.938 37.0864 -10.9636 37.6809 -7.90012 38.1714 -4.7627 38.5529 -1.56867 38.8218 1.6632 4.91333 38.9759 1.81116 -38.3613 3.67669 -39.1898 5.59749 -39.9739 7.57157 -40.6846 9.59269 -41.2888 11.6485 -41.7499 13.7234 -42.0311 15.7956 -42.095 17.8371 -41.9069 19.8164 -41.4397 21.6998 -40.6782 23.4527 -39.6154 25.0497 -38.2543 26.4928 -36.622 27.8104 -34.7652 29.0415 -32.7318 30.2169 -30.5555 31.3491 -28.2492 32.4341 -25.8115 33.4627 -23.2392 34.4256 -20.5334 35.3138 -17.6985 36.118 -14.7423 36.8299 -11.6755 37.4416 -8.51185 37.9468 -5.26792 38.3406 -1.96242 38.6194 1.38435 4.75129 38.7815 1.8306 -40.1919 3.71697 -41.0762 5.65928 -41.9162 7.65426 -42.6796 9.69421 -43.3287 11.7646 -43.8203 13.8447 -44.1112 15.9063 -44.1567 17.9143 -43.9148 19.8286 -43.3539 21.6088 -42.4584 23.2258 -41.2324 24.6833 -39.7118 26.0167 -37.9554 27.2704 -36.0189 28.4793 -33.9407 29.6577 -31.7339 30.8012 -29.3926 31.8994 -26.9097 32.9428 -24.2827 33.922 -21.5125 34.8266 -18.6031 35.6465 -15.5622 36.3723 -12.4013 36.9959 -9.13543 37.5105 -5.78258 37.9113 -2.36316 38.1949 1.10078 4.58659 38.3596 1.83682 -42.0287 3.7304 -42.9697 5.6802 -43.866 7.68155 -44.6809 9.72308 -45.3703 11.7875 -45.8848 13.849 -46.1727 15.8718 -46.1795 17.8109 -45.8539 19.6172 -45.1602 21.2527 -44.0938 22.7177 -42.6975 24.0546 -41.0487 25.3145 -39.2153 26.5371 -37.2415 27.7402 -35.1438 28.9201 -32.9138 30.0667 -30.5392 31.1707 -28.0137 32.2224 -25.3343 33.2105 -22.5007 34.1239 -19.5165 34.9516 -16.3899 35.6839 -13.1336 36.3123 -9.76386 36.8301 -6.30037 37.2322 -2.76531 37.5156 0.817442 4.42361 37.6786 1.8286 -43.8573 3.71401 -44.8552 5.65457 -45.8066 7.64419 -46.6705 9.66836 -47.3944 11.7054 -47.9218 13.7228 -48.1901 15.6752 -48.1319 17.5062 -47.6849 19.1629 -46.8169 20.6323 -45.5633 21.9599 -44.0251 23.2073 -42.2961 24.4214 -40.4293 25.6248 -38.445 26.8165 -36.3354 27.9866 -34.0839 29.1267 -31.6793 30.2271 -29.1142 31.2765 -26.3837 32.2627 -23.4869 33.1739 -20.4277 33.9991 -17.2151 34.7284 -13.8629 35.3534 -10.3888 35.8672 -6.81422 36.2649 -3.16301 36.5434 0.538998 4.26599 36.701 1.80433 -45.6616 3.6648 -46.7156 5.57827 -47.7201 7.53639 -48.6287 9.52209 -49.3801 11.508 -49.9077 13.4534 -50.1355 15.3009 -49.9795 16.9832 -49.3671 18.4607 -48.2944 19.7702 -46.8729 20.9876 -45.2425 22.17 -43.4784 23.3475 -41.6069 24.5239 -39.6214 25.6901 -37.5017 26.8382 -35.232 27.9596 -32.8006 29.0429 -30.1975 30.0758 -27.4166 31.0461 -24.4571 31.942 -21.3236 32.7527 -18.0258 33.4684 -14.5786 34.0808 -11.0012 34.5829 -7.3164 34.97 -3.55002 35.2389 0.27001 4.11702 35.3879 1.76144 -47.423 3.57902 -48.5332 5.44719 -49.5882 7.3538 -50.5353 9.27836 -51.3047 11.1877 -51.817 13.0312 -51.979 14.7371 -51.6854 16.2337 -50.8637 17.5243 -49.5849 18.6967 -48.0453 19.8266 -46.3723 20.9528 -44.6046 22.0859 -42.74 23.219 -40.7545 24.3449 -38.6276 25.4563 -36.3434 26.5424 -33.8867 27.5912 -31.2463 28.5908 -28.4162 29.5293 -25.3957 30.3955 -22.1898 31.1787 -18.809 31.8693 -15.2692 32.459 -11.5909 32.9411 -7.79851 33.3105 -3.91942 33.5656 0.0149246 3.9802 33.7024 1.70062 -49.1237 3.45539 -50.288 5.25721 -51.3901 7.09108 -52.3691 8.93162 -53.1452 10.7381 -53.6235 12.4487 -53.6895 13.9755 -53.2122 15.2631 -52.1513 16.3818 -50.7037 17.439 -49.1025 18.49 -47.4233 19.5532 -45.6677 20.6244 -43.8112 21.6976 -41.8277 22.7667 -39.6967 23.822 -37.3987 24.8528 -34.9175 25.8479 -32.2414 26.796 -29.3644 27.6861 -26.2857 28.5071 -23.0108 29.2488 -19.5507 29.9019 -15.9223 30.4582 -12.1473 30.9115 -8.25173 31.2569 -4.26481 31.49 -0.218257 3.85829 31.6119 1.62209 -50.7458 3.2943 -51.9602 5.00814 -53.1039 6.74634 -54.1073 8.47854 -54.8774 10.1554 -55.3005 11.7013 -55.2354 13.0148 -54.5257 14.0914 -53.2279 15.0618 -51.6741 16.0156 -50.0563 16.9827 -48.3904 17.9648 -46.6498 18.9556 -44.802 19.9502 -42.8224 20.9409 -40.6874 21.9183 -38.3761 22.8728 -35.8719 23.7943 -33.1629 24.6724 -30.2424 25.4964 -27.1098 26.2561 -23.7704 26.9415 -20.2361 27.5437 -16.5246 28.0552 -12.6587 28.4695 -8.66611 28.7822 -4.5775 28.99 -0.426029 3.756 29.0923 1.52115 -52.2669 3.09284 -53.5319 4.69896 -54.71 6.31985 -55.7282 7.92006 -56.4776 9.4402 -56.8206 10.7891 -56.5843 11.8656 -55.6022 12.7483 -54.1105 13.5866 -52.5125 14.435 -50.9047 15.3025 -49.2579 16.1831 -47.5304 17.0731 -45.692 17.9666 -43.7158 18.856 -41.5769 19.7337 -39.2538 20.591 -36.7293 21.419 -33.9909 22.2079 -31.0314 22.9479 -27.8498 23.6294 -24.4519 24.2431 -20.8499 24.7808 -17.0622 25.2352 -13.1132 25.6006 -9.03151 25.8727 -4.84959 26.0487 -0.60203 3.67696 26.1277 1.40799 -53.6749 2.85468 -54.9786 4.32996 -56.1853 5.81142 -57.2097 7.25657 -57.9228 8.59273 -58.1568 9.71462 -57.7062 10.5493 -56.4369 11.2607 -54.8219 11.9704 -53.2222 12.701 -51.6353 13.4479 -50.0048 14.207 -48.2895 14.9742 -46.4591 15.7436 -44.4853 16.5097 -42.3429 17.2659 -40.01 18.0051 -37.4685 18.7192 -34.7049 19.3994 -31.7116 20.037 -28.4874 20.6231 -25.038 21.1494 -21.3761 21.6083 -17.5211 21.9934 -13.4983 22.2994 -9.33756 22.5226 -5.07278 22.6605 -0.739935 3.62508 22.7124 1.27505 -54.9499 2.57393 -56.2775 3.89806 -57.5094 5.22068 -58.5323 6.49102 -59.1931 7.6185 -59.2842 8.4901 -58.5778 9.09635 -57.0432 9.65102 -55.3766 10.2247 -53.7959 10.8185 -52.2291 11.4248 -50.6111 12.0408 -48.9055 12.6624 -47.0808 13.2859 -45.1088 13.907 -42.964 14.5207 -40.6237 15.121 -38.0687 15.7009 -35.2849 16.253 -32.2638 16.7697 -29.004 17.2432 -25.5115 17.6662 -21.7992 18.0323 -17.8872 18.3357 -13.8016 18.5719 -9.57374 18.7376 -5.23848 18.8308 -0.833127 3.60497 18.8509 1.09485 -56.0448 2.24176 -57.4244 3.40551 -58.6732 4.55469 -59.6815 5.63316 -60.2716 6.53469 -60.1858 7.13306 -59.1761 7.53446 -57.4446 7.93514 -55.7773 8.35931 -54.22 8.79652 -52.6663 9.2423 -51.0569 9.69376 -49.357 10.1489 -47.5359 10.6057 -45.5656 11.0615 -43.4198 11.5124 -41.0746 11.9537 -38.51 12.3799 -35.7111 12.785 -32.6689 13.1628 -29.3818 13.507 -25.8557 13.8116 -22.1038 14.071 -18.1466 14.2806 -14.0112 14.4365 -9.7297 14.5362 -5.33816 14.578 -0.874953 3.62135 14.5617 0.926494 -56.9713 1.89816 -58.396 2.87692 -59.6519 3.82935 -60.6339 4.69145 -61.1337 5.35449 -60.8488 5.67781 -59.4995 5.89212 -57.6589 6.13065 -56.0158 6.38756 -54.4769 6.65003 -52.9288 6.9157 -51.3226 7.18345 -49.6247 7.45332 -47.8058 7.72467 -45.837 7.99601 -43.6911 8.265 -41.3436 8.52847 -38.7735 8.78254 -35.9652 9.02291 -32.9093 9.24501 -29.6039 9.44418 -26.0548 9.61582 -22.2754 9.75569 -18.2865 9.86012 -14.1156 9.92619 -9.79577 9.95197 -5.36394 9.93637 -0.859353 3.67833 9.87938 0.76647 -57.7378 1.53712 -59.1667 2.31008 -60.4249 3.05081 -61.3746 3.6826 -61.7655 4.0774 -61.2436 4.14881 -59.5709 4.18741 -57.6975 4.25319 -56.0816 4.32624 -54.55 4.39766 -53.0002 4.4665 -51.3914 4.53435 -49.6926 4.60262 -47.874 4.67186 -45.9062 4.74192 -43.7612 4.81205 -41.4137 4.8808 -38.8423 4.94612 -36.0305 5.00565 -32.9688 5.0568 -29.6551 5.09669 -26.0947 5.12242 -22.3011 5.13109 -18.2952 5.12012 -14.1047 5.08761 -9.76326 5.0325 -5.30883 4.95412 -0.780975 3.77977 4.85269 0.551822 -58.2896 1.12443 -59.7393 1.69126 -60.9917 2.21542 -61.8988 2.6178 -62.1679 2.73347 -61.3593 2.58236 -59.4198 2.44275 -57.5579 2.32218 -55.961 2.19746 -54.4253 2.06383 -52.8666 1.92289 -51.2504 1.77786 -49.5476 1.63119 -47.7274 1.48457 -45.7596 1.33929 -43.6159 1.1963 -41.2707 1.05602 -38.702 0.918391 -35.8928 0.783231 -32.8337 0.650109 -29.522 0.518237 -25.9629 0.386373 -22.1693 0.253395 -18.1622 0.11837 -13.9696 -0.0196058 -9.62528 -0.161547 -5.16689 -0.307612 -0.634911 3.92948 -0.457329 0.32635 -58.6159 0.696346 -60.1093 1.05087 -61.3463 1.35273 -62.2007 1.51512 -62.3302 1.34716 -61.1913 0.99823 -59.0708 0.675846 -57.2355 0.358401 -55.6436 0.0262367 -54.0931 -0.32159 -52.5187 -0.681173 -50.8909 -1.04833 -49.1804 -1.41964 -47.3561 -1.79218 -45.3871 -2.16318 -43.2449 -2.52986 -40.904 -2.88988 -38.342 -3.24118 -35.5415 -3.58152 -32.4933 -3.90901 -29.1945 -4.2223 -25.6496 -4.52045 -21.8711 -4.80312 -17.8795 -5.07009 -13.7027 -5.32116 -9.37421 -5.55612 -4.93193 -5.77499 -0.416047 4.13154 -5.97704 0.138816 -58.7548 0.281158 -60.2516 0.415125 -61.4802 0.481633 -62.2672 0.384575 -62.2332 -0.0473537 -60.7594 -0.581199 -58.537 -1.09162 -56.7251 -1.61206 -55.1231 -2.15676 -53.5484 -2.72361 -51.9519 -3.30686 -50.3076 -3.90147 -48.5858 -4.50304 -46.7545 -5.10743 -44.7827 -5.71039 -42.6419 -6.30739 -40.307 -6.89413 -37.7552 -7.46628 -34.9694 -8.01913 -31.9405 -8.5484 -28.6652 -9.05043 -25.1475 -9.52222 -21.3993 -9.96137 -17.4404 -10.3661 -13.2979 -10.7351 -9.00515 -11.0676 -4.59949 -11.3639 -0.119762 4.38943 -11.6218 -0.0503287 -58.7044 -0.148241 -60.1537 -0.227699 -61.4008 -0.396148 -62.0987 -0.744061 -61.8853 -1.41901 -60.0844 -2.13559 -57.8204 -2.83641 -56.0242 -3.56127 -54.3983 -4.3194 -52.7903 -5.10552 -51.1658 -5.91278 -49.5003 -6.7354 -47.7632 -7.56796 -45.9219 -8.40522 -43.9454 -9.24154 -41.8056 -10.0707 -39.4779 -10.8865 -36.9395 -11.6821 -34.1737 -12.4506 -31.172 -13.1853 -27.9306 -13.88 -24.4528 -14.5294 -20.7498 -15.1293 -16.8405 -15.6761 -12.7511 -16.1676 -8.51374 -16.6019 -4.16513 -16.9777 0.256068 4.70714 -17.2955 -0.278202 -58.4262 -0.549033 -59.8829 -0.873621 -61.0762 -1.2717 -61.7006 -1.86562 -61.2914 -2.75676 -59.1933 -3.64756 -56.9296 -4.53607 -55.1357 -5.46138 -53.4729 -6.42827 -51.8234 -7.42902 -50.165 -8.45582 -48.4735 -9.50186 -46.7171 -10.5609 -44.8629 -11.6268 -42.8795 -12.6926 -40.7398 -13.7503 -38.4201 -14.792 -35.8978 -15.8089 -33.1568 -16.7915 -30.1893 -17.7308 -26.9913 -18.6182 -23.5654 -19.4462 -19.9219 -20.2083 -16.0784 -20.8993 -12.0601 -21.5155 -7.89761 -22.0541 -3.62647 -22.5135 0.715437 5.08698 -22.8933 -0.481515 -57.9447 -0.967538 -59.3968 -1.5014 -60.5423 -2.12513 -61.0769 -2.96501 -60.4515 -4.04483 -58.1135 -5.09955 -55.8749 -6.1686 -54.0667 -7.28627 -52.3553 -8.45199 -50.6577 -9.65677 -48.9602 -10.8925 -47.2378 -12.1518 -45.4578 -13.4278 -43.5869 -14.7128 -41.5945 -15.9985 -39.4542 -17.2756 -37.143 -18.5345 -34.6389 -19.7646 -31.9267 -20.9544 -28.9996 -22.0924 -25.8532 -23.168 -22.4898 -24.1714 -18.9185 -25.0937 -15.1561 -25.9281 -11.2258 -26.6689 -7.15674 -27.3126 -2.98276 -27.8567 1.25947 5.53038 -28.3001 -0.680636 -57.2641 -1.37595 -58.7015 -2.11786 -59.8004 -2.95306 -60.2417 -4.02394 -59.3806 -5.26611 -56.8713 -6.47309 -54.6679 -7.71082 -52.8289 -9.00843 -51.0577 -10.36 -49.3061 -11.7549 -47.5653 -13.1844 -45.8083 -14.6412 -44.001 -16.1179 -42.1103 -17.6058 -40.1065 -19.0958 -37.9643 -20.5775 -35.6613 -22.0394 -33.177 -23.4688 -30.4973 -24.8527 -27.6157 -26.178 -24.5279 -27.432 -21.2359 -28.6024 -17.7481 -29.6784 -14.08 -30.6511 -10.2531 -31.5132 -6.29461 -32.2597 -2.23624 -32.8869 1.88662 6.03639 -33.3929 -0.872503 -56.3916 -1.76735 -57.8067 -2.71106 -58.8567 -3.74773 -59.2051 -5.03176 -58.0966 -6.41092 -55.4921 -7.75608 -53.3228 -9.14693 -51.4381 -10.6061 -49.5985 -12.1243 -47.7879 -13.6907 -45.9989 -15.2964 -44.2026 -16.9325 -42.3649 -18.5899 -40.4529 -20.2594 -38.437 -21.9316 -36.2921 -23.5956 -33.9972 -25.2385 -31.534 -26.8464 -28.8894 -28.4053 -26.0568 -29.9004 -23.0329 -31.3167 -19.8196 -32.64 -16.4248 -33.8577 -12.8623 -34.9588 -9.15202 -35.9343 -5.31915 -36.7774 -1.39317 -37.4825 2.59177 6.60092 -38.047 -1.0552 -55.3364 -2.13956 -56.7223 -3.27589 -57.7204 -4.50546 -57.9755 -5.97732 -56.6247 -7.46986 -53.9996 -8.93745 -51.8552 -10.4633 -49.9122 -12.0629 -47.9988 -13.7249 -46.126 -15.4391 -44.2847 -17.1965 -42.4452 -18.9879 -40.5735 -20.8036 -38.6372 -22.6328 -36.6078 -24.4642 -34.4606 -26.2854 -32.176 -28.0828 -29.7367 -29.8424 -27.1298 -31.5501 -24.3491 -33.1896 -21.3934 -34.7447 -18.2645 -36.1998 -14.9696 -37.5406 -11.5216 -38.7539 -7.93873 -39.8285 -4.24448 -40.7567 -0.465061 -41.53 3.3651 7.21613 -42.1452 -1.22827 -54.1081 -2.49127 -55.4593 -3.80955 -56.4021 -5.22435 -56.5607 -6.85357 -54.9955 -8.43939 -52.4138 -10.0132 -50.2813 -11.6541 -48.2713 -13.3701 -46.2828 -15.1506 -44.3455 -16.9863 -42.449 -18.8682 -40.5633 -20.7866 -38.6551 -22.7308 -36.693 -24.6896 -34.649 -26.6509 -32.4994 -28.6013 -30.2256 -30.5263 -27.8117 -32.4107 -25.2453 -34.2392 -22.5207 -35.9946 -19.638 -37.6603 -16.5987 -39.2201 -13.4098 -40.6583 -10.0834 -41.9605 -6.63656 -43.1142 -3.09082 -44.1082 0.529014 -44.9358 4.19263 7.87087 -45.5905 -1.39335 -52.7148 -2.82687 -54.0258 -4.31324 -54.9157 -5.89793 -54.976 -7.6546 -53.2388 -9.32091 -50.7475 -10.9853 -48.6169 -12.7196 -46.537 -14.5266 -44.4758 -16.3987 -42.4735 -18.3282 -40.5194 -20.3064 -38.5852 -22.3225 -36.639 -24.3652 -34.6503 -26.4223 -32.5918 -28.4809 -30.4408 -30.5273 -28.1793 -32.5464 -25.7926 -34.5225 -23.2692 -36.4391 -20.6041 -38.2793 -17.7978 -40.0255 -14.8525 -41.6607 -11.7746 -43.1684 -8.57573 -44.5334 -5.27155 -45.7423 -1.8819 -46.783 1.56966 -47.6473 5.057 8.55188 -48.3283 -1.54895 -51.1658 -3.14296 -52.4318 -4.79094 -53.2677 -6.53378 -53.2332 -8.38469 -51.3879 -10.1208 -49.0113 -11.8616 -46.8761 -13.668 -44.7306 -15.5408 -42.6031 -17.4774 -40.5369 -19.4727 -38.5241 -21.5179 -36.5399 -23.6022 -34.5548 -25.7132 -32.5393 -27.8378 -30.4672 -29.9621 -28.3164 -32.0723 -26.0691 -34.1528 -23.7121 -36.187 -21.235 -38.1583 -18.6328 -40.0502 -15.9059 -41.8447 -13.0579 -43.5244 -10.0949 -45.0726 -7.02754 -46.4737 -3.87043 -47.7139 -0.641675 -48.781 2.63675 -49.6658 5.94176 9.24743 -50.3613 -1.69585 -49.47 -3.43926 -50.6884 -5.23738 -51.4696 -7.12527 -51.3453 -9.04866 -49.4645 -10.8516 -47.2084 -12.6578 -45.0699 -14.5163 -42.8722 -16.4315 -40.6879 -18.4071 -38.5613 -20.4407 -36.4905 -22.5246 -34.456 -24.6478 -32.4316 -26.7973 -30.3898 -28.9593 -28.3052 -31.1194 -26.1564 -33.2626 -23.9259 -35.3731 -21.6016 -37.4343 -19.1738 -39.4298 -16.6373 -41.3429 -13.9928 -43.156 -11.2448 -44.8519 -8.3991 -46.414 -5.46541 -47.8272 -2.45727 -49.0775 0.608653 -50.1537 3.71292 -51.0463 6.83441 9.95035 -51.7492 -1.83391 -47.636 -3.71542 -48.8069 -5.65185 -49.5332 -7.66997 -49.3272 -9.6589 -47.4756 -11.5313 -45.336 -13.394 -43.2073 -15.2885 -40.9776 -17.2273 -38.7491 -19.2198 -36.5688 -21.2672 -34.4431 -23.3635 -32.3597 -25.4984 -30.2967 -27.6588 -28.2294 -29.8303 -26.1337 -31.9979 -23.9887 -34.1462 -21.7776 -36.2594 -19.4884 -38.3209 -17.1123 -40.314 -14.6442 -42.2223 -12.0845 -44.0292 -9.43789 -45.718 -6.71032 -47.2728 -3.91059 -48.6791 -1.05096 -49.924 1.85351 -50.9966 4.78559 -51.8888 7.72653 10.6566 -52.595 -1.96204 -45.674 -3.97038 -46.7985 -6.03352 -47.47 -8.17168 -47.189 -10.2322 -45.415 -12.1767 -43.3914 -14.0944 -41.2897 -16.018 -39.054 -17.9673 -36.7997 -19.9591 -34.5771 -21.9993 -32.4029 -24.0852 -30.2737 -26.208 -28.174 -28.3549 -26.0825 -30.5115 -23.9771 -32.6624 -21.8377 -34.792 -19.6481 -36.8846 -17.3957 -38.9239 -15.073 -40.8931 -12.675 -42.7766 -10.201 -44.5591 -7.65536 -46.2247 -5.04473 -47.7587 -2.37663 -49.1477 0.338087 -50.3803 3.08611 -51.447 5.85226 -52.3408 8.62031 11.3736 -53.0578 -2.08142 -43.5926 -4.20783 -44.6721 -6.39368 -45.2842 -8.64735 -44.9353 -10.788 -43.2744 -12.8151 -41.3643 -14.7926 -39.3122 -16.7446 -37.102 -18.6989 -34.8454 -20.6788 -32.5972 -22.6962 -30.3854 -24.7532 -28.2168 -26.8436 -26.0836 -28.9564 -23.9697 -31.0777 -21.8558 -33.1922 -19.7232 -35.2842 -17.5561 -37.3377 -15.3422 -39.3371 -13.0737 -41.2663 -10.7458 -43.1105 -8.35686 -44.8552 -5.91068 -46.4861 -3.41376 -47.99 -0.872822 -49.3549 1.70307 -50.5711 4.30223 -51.6305 6.9117 -52.5279 9.51771 12.1066 -53.2609 -2.19074 -41.4018 -4.43097 -42.4319 -6.74312 -42.972 -9.12701 -42.5514 -11.3672 -41.0342 -13.4824 -39.2491 -15.5266 -37.268 -17.515 -35.1136 -19.4772 -32.8833 -21.4416 -30.6328 -23.4271 -28.3999 -25.4417 -26.2022 -27.4841 -24.0412 -29.5463 -21.9075 -31.6159 -19.7862 -33.6783 -17.6608 -35.718 -15.5164 -37.7194 -13.3408 -39.6675 -11.1256 -41.5471 -8.86621 -43.3433 -6.56059 -45.0433 -4.2107 -46.6348 -1.82228 -48.1058 0.598191 -49.4463 3.04355 -50.648 5.50392 -51.7048 7.9685 -52.613 10.4259 12.8653 -53.3717 -2.2988 -39.103 -4.66148 -40.0692 -7.1174 -40.5161 -9.63974 -40.0291 -11.9936 -38.6803 -14.2158 -37.0269 -16.3421 -35.1417 -18.3802 -33.0754 -20.3607 -30.9028 -22.3149 -28.6787 -24.2673 -26.4475 -26.2328 -24.2366 -28.2166 -22.0574 -30.2155 -19.9086 -32.2205 -17.7812 -34.2188 -15.6625 -36.1959 -13.5392 -38.1368 -11.3999 -40.0267 -9.23577 -41.8511 -7.04179 -43.5965 -4.81522 -45.251 -2.5562 -46.8033 -0.270004 -48.2446 2.03953 -49.5656 4.36455 -50.7599 6.69824 -51.8232 9.03176 -52.7532 11.3559 13.6623 -53.5502 -2.42174 -36.6813 -4.93276 -37.5582 -7.56488 -37.884 -10.2357 -37.3583 -12.7172 -36.1988 -15.0557 -34.6884 -17.277 -32.9204 -19.3849 -30.9675 -21.4039 -28.8838 -23.3639 -26.7187 -25.2928 -24.5186 -27.212 -22.3174 -29.134 -20.1354 -31.0623 -17.9803 -32.9932 -15.8503 -34.9177 -13.738 -36.8236 -11.6334 -38.697 -9.52651 -40.5238 -7.40894 -42.2908 -5.27476 -43.9852 -3.1208 -45.5952 -0.946242 -47.1123 1.24707 -48.5269 3.45416 -49.8325 5.67017 -51.0242 7.8899 -52.0989 10.1065 -53.0557 12.3128 14.5025 -53.8959 -2.58325 -34.098 -5.29233 -34.8491 -8.14099 -35.0353 -10.9494 -34.5499 -13.5656 -33.5826 -16.0358 -32.2182 -18.3709 -30.5853 -20.5717 -28.7668 -22.6552 -26.8003 -24.6467 -24.7272 -26.5737 -22.5915 -28.4616 -20.4295 -30.3294 -18.2676 -32.1882 -16.1215 -34.0413 -13.9971 -35.8856 -11.8937 -37.7133 -9.80578 -39.5133 -7.72643 -41.2737 -5.64856 -42.9821 -3.56638 -44.6265 -1.47639 -46.1964 0.623666 -47.6829 2.73353 -49.0786 4.84986 -50.3778 6.96937 -51.5764 9.08852 -52.6727 11.2028 -53.667 13.3071 15.397 -54.5615 -2.80229 -31.2958 -5.76707 -31.8843 -8.85367 -31.9487 -11.8028 -31.6008 -14.5722 -30.8132 -17.1873 -29.6031 -19.65 -28.1226 -21.9645 -26.4522 -24.141 -24.6238 -26.1974 -22.6708 -28.157 -20.632 -30.0444 -18.542 -31.8823 -16.4298 -33.6876 -14.3161 -35.4711 -12.2136 -37.237 -10.1278 -38.9839 -8.05896 -40.706 -6.00431 -42.395 -3.95951 -44.0412 -1.92026 -45.6338 0.116283 -47.1657 2.15559 -48.627 4.19481 -50.0117 6.23455 -51.3149 8.27259 -52.5331 10.3067 -53.6648 12.3345 -54.7107 14.353 16.3598 -55.6735 -3.06658 -28.2292 -6.32671 -28.6242 -9.63731 -28.6381 -12.7626 -28.4755 -15.7042 -27.8716 -18.4752 -26.8321 -21.0845 -25.5133 -23.5375 -23.9992 -25.8404 -22.3209 -28.0037 -20.5075 -30.0434 -18.5922 -31.9794 -16.606 -33.8331 -14.5761 -35.6241 -12.5251 -37.3683 -10.4694 -39.0764 -8.41969 -40.7539 -6.38137 -42.4021 -4.35616 -44.0184 -2.34323 -45.5955 -0.343148 -47.1327 1.65349 -48.6188 3.6417 -50.0487 5.62469 -51.4171 7.60301 -52.7202 9.57566 -53.9549 11.5413 -55.1197 13.4993 -56.2147 15.4481 17.3872 -57.2422 -3.3466 -24.8826 -6.87901 -25.0918 -10.3574 -25.1597 -13.6925 -25.1405 -16.8591 -24.7049 -19.8151 -23.8761 -22.5966 -22.7318 -25.2182 -21.3776 -27.6843 -19.8548 -29.9993 -18.1926 -32.1725 -16.419 -34.2173 -14.5613 -36.1504 -12.6431 -37.9898 -10.6857 -39.7528 -8.70644 -41.4539 -6.71864 -43.104 -4.73129 -44.7102 -2.74993 -46.2757 -0.77766 -47.8035 1.18458 -49.2879 3.13791 -50.7287 5.08246 -52.1228 7.01887 -53.4674 8.94757 -54.76 10.8683 -55.9989 12.7802 -57.183 14.6834 -58.3128 16.5778 18.4629 -59.3885 -3.70687 -21.1757 -7.35086 -21.4478 -10.9675 -21.543 -14.503 -21.605 -17.9037 -21.3042 -21.1056 -20.6743 -24.1063 -19.7311 -26.9256 -18.5583 -29.5804 -17.2 -32.0765 -15.6965 -34.4219 -14.0735 -36.6253 -12.3579 -38.6984 -10.5699 -40.6552 -8.7289 -42.5106 -6.85102 -44.2792 -4.95007 -45.9739 -3.03662 -47.6058 -1.11802 -49.1807 0.797275 -50.7047 2.70857 -52.1816 4.61476 -53.6133 6.51423 -55.0008 8.40634 -56.344 10.2908 -57.6427 12.167 -58.8965 14.0341 -60.106 15.8928 -61.2714 17.7433 19.582 -62.3905 -3.63058 -17.5451 -7.41268 -17.6657 -11.2938 -17.6619 -15.1564 -17.7425 -18.8577 -17.6029 -22.3351 -17.1969 -25.5717 -16.4944 -28.5926 -15.5374 -31.4323 -14.3603 -34.1066 -13.0222 -36.6289 -11.5512 -39.0077 -9.97911 -41.2509 -8.32675 -43.3674 -6.61235 -45.368 -4.85049 -47.2642 -3.05386 -49.0695 -1.2313 -50.7914 0.60386 -52.4387 2.44459 -54.022 4.29189 -55.5472 6.13997 -57.0189 7.98586 -58.4401 9.82756 -59.8131 11.6637 -61.1388 13.4928 -62.4181 15.3134 -63.6511 17.1258 -64.8365 18.9286 20.7154 -65.9699 -3.79556 -13.7496 -7.92053 -13.5408 -11.8969 -13.6855 -15.8261 -13.8132 -19.6853 -13.7437 -23.3809 -13.5013 -26.858 -13.0174 -30.0929 -12.3025 -33.1155 -11.3378 -35.9535 -10.1841 -38.631 -8.87364 -41.164 -7.4461 -43.5635 -5.92726 -45.8371 -4.33882 -47.9919 -2.69568 -50.0348 -1.01092 -51.9679 0.701792 -53.8021 2.43803 -55.5501 4.19261 -57.2173 5.95913 -58.81 7.73267 -60.3333 9.50917 -61.7911 11.2853 -63.1857 13.0583 -64.5176 14.8247 -65.7876 16.5833 -66.9941 18.3324 -68.1338 20.0682 21.7827 -69.2011 -4.18406 -9.56551 -8.14172 -9.5831 -12.0791 -9.74816 -16.0406 -9.85166 -20.0134 -9.77088 -23.9029 -9.61184 -27.6442 -9.27612 -31.1586 -8.78806 -34.4294 -8.06696 -37.4719 -7.14167 -40.312 -6.03353 -42.9772 -4.78092 -45.4922 -3.41221 -47.8747 -1.9563 -50.1411 -0.429372 -52.2785 1.12657 -54.3072 2.73042 -56.2352 4.36602 -58.0662 6.02366 -59.8037 7.69663 -61.4504 9.3794 -63.0083 11.067 -64.4792 12.7562 -65.8642 14.4434 -67.1648 16.1252 -68.3812 17.7997 -69.5113 19.4625 -70.5528 21.1098 22.7281 -71.4982 -3.97128 -5.59422 -7.91785 -5.63653 -11.8592 -5.80678 -15.8006 -5.91028 -19.7697 -5.80176 -23.7156 -5.66601 -27.6019 -5.38973 -31.3576 -5.03236 -34.9165 -4.50814 -38.2495 -3.80866 -41.354 -2.92903 -44.2418 -1.89311 -46.9388 -0.715216 -49.449 0.553902 -51.7825 1.90414 -53.9845 3.32862 -56.0601 4.80601 -58.0168 6.32273 -59.8627 7.86956 -61.6046 9.43846 -63.247 11.0219 -64.7938 12.6138 -66.2443 14.2067 -67.5952 15.7942 -68.8446 17.3747 -69.9899 18.945 -71.0281 20.5007 -71.9565 22.0382 23.5445 -72.7728 -3.81779 -1.77643 -7.60084 -1.85348 -11.3872 -2.02046 -15.1704 -2.12701 -18.9907 -1.98153 -22.8287 -1.82797 -26.6542 -1.56426 -30.4389 -1.24769 -34.1169 -0.830089 -37.6452 -0.280319 -41.0057 0.431399 -44.167 1.26823 -47.1071 2.22487 -49.8486 3.29539 -52.4019 4.45742 -54.7732 5.69997 -56.9761 7.00893 -59.0236 8.37016 -60.9235 9.7695 -62.6832 11.1982 -64.3089 12.6475 -65.8037 14.1086 -67.1708 15.5739 -68.4187 17.0421 -69.5509 18.5068 -70.5655 19.9596 -71.4579 21.3931 -72.2206 22.8009 24.2004 -72.8765 -3.52122 1.74479 -7.04932 1.67462 -10.6223 1.55253 -14.1929 1.44363 -17.7761 1.60161 -21.3922 1.7881 -25.0051 2.04873 -28.6193 2.3665 -32.1854 2.73598 -35.671 3.20529 -39.0245 3.78494 -42.24 4.48372 -45.2951 5.27995 -48.1771 6.17735 -50.8814 7.16173 -53.408 8.22656 -55.7549 9.35586 -57.9273 10.5425 -59.9303 11.7726 -61.7683 13.0361 -63.4448 14.3241 -64.9631 15.6269 -66.3267 16.9375 -67.5361 18.2515 -68.5846 19.5552 -69.4736 20.8486 -70.2079 22.1274 -70.7881 23.3811 24.6399 -71.2276 -3.1648 4.90959 -6.38892 4.89875 -9.69362 4.85723 -13.0117 4.76173 -16.3035 4.89336 -19.6264 5.11098 -22.9346 5.35692 -26.2452 5.67717 -29.5292 6.01994 -32.763 6.43915 -35.9087 6.93057 -38.9526 7.5276 -41.8784 8.20578 -44.6714 8.97039 -47.3114 9.80172 -49.7913 10.7064 -52.1046 11.6691 -54.2463 12.6842 -56.2136 13.74 -58.0085 14.8309 -59.6283 15.9438 -61.0705 17.0692 -62.3349 18.2019 -63.4221 19.3387 -64.3333 20.4665 -65.0632 21.5785 -65.6024 22.6666 -65.9505 23.7292 24.8032 -66.1138 -2.82296 7.73254 -5.73194 7.80773 -8.72221 7.84751 -11.7501 7.78961 -14.7317 7.87498 -17.7335 8.11281 -20.7136 8.337 -23.6857 8.64927 -26.6305 8.96472 -29.538 9.34662 -32.3757 9.76825 -35.1274 10.2793 -37.7774 10.8558 -40.3223 11.5153 -42.7472 12.2267 -45.0354 12.9947 -47.1743 13.808 -49.159 14.669 -50.9806 15.5616 -52.6377 16.488 -54.1271 17.4332 -55.4506 18.3926 -56.6057 19.357 -57.588 20.321 -58.3999 21.2783 -59.0474 22.2261 -59.534 23.1531 -59.8677 24.063 24.992 -60.0565 -2.50281 10.2354 -5.09949 10.4044 -7.76535 10.5134 -10.4894 10.5137 -13.1757 10.5612 -15.8624 10.7996 -18.5275 11.002 -21.1724 11.2942 -23.7877 11.58 -26.3668 11.9257 -28.8897 12.2911 -31.339 12.7286 -33.6965 13.2133 -35.9553 13.7741 -38.1139 14.3852 -40.167 15.0478 -42.0977 15.7387 -43.8974 16.4687 -45.558 17.2221 -47.0763 18.0063 -48.4471 18.8041 -49.6732 19.6187 -50.7556 20.4394 -51.697 21.2624 -52.4996 22.0809 -53.168 22.8944 -53.7098 23.6949 -54.1327 24.486 25.301 -54.4418 -2.21285 12.4482 -4.50798 12.6995 -6.8715 12.8769 -9.30625 12.9484 -11.7271 12.9821 -14.1158 13.1882 -16.4956 13.3819 -18.8429 13.6415 -21.1646 13.9017 -23.4474 14.2086 -25.6852 14.5289 -27.8606 14.904 -29.962 15.3147 -31.9749 15.787 -33.8926 16.3029 -35.7199 16.8751 -37.4544 17.4732 -39.0883 18.1025 -40.6104 18.7443 -42.0151 19.411 -43.3005 20.0894 -44.4679 20.7861 -45.5145 21.486 -46.4441 22.192 -47.2605 22.8973 -47.9699 23.6039 -48.5767 24.3016 -49.089 24.9984 25.7222 -49.5102 -1.94329 14.3915 -3.96207 14.7183 -6.05152 14.9663 -8.22356 15.1205 -10.4134 15.1719 -12.5336 15.3084 -14.6606 15.509 -16.7487 15.7295 -18.8187 15.9718 -20.8493 16.2391 -22.845 16.5245 -24.7866 16.8456 -26.6694 17.1975 -28.4819 17.5995 -30.2138 18.0349 -31.8594 18.5207 -33.4232 19.037 -34.909 19.5883 -36.3138 20.1492 -37.6285 20.7257 -38.8457 21.3066 -39.9655 21.9059 -40.9896 22.5101 -41.9198 23.1222 -42.7533 23.7308 -43.4958 24.3464 -44.153 24.9588 -44.7289 25.5742 26.2212 -45.2279 -1.71035 16.1018 -3.48293 16.4909 -5.32316 16.8066 -7.23936 17.0367 -9.20767 17.1402 -11.1135 17.2143 -13.0227 17.4182 -14.8948 17.6016 -16.7518 17.8289 -18.572 18.0594 -20.365 18.3175 -22.1128 18.5935 -23.8129 18.8975 -25.4548 19.2415 -27.0367 19.6168 -28.5465 20.0305 -29.981 20.4714 -31.341 20.9483 -32.6342 21.4424 -33.8627 21.9542 -35.0201 22.4641 -36.0975 22.9833 -37.0925 23.505 -38.0091 24.0388 -38.8507 24.5724 -39.6137 25.1094 -40.3024 25.6475 -40.9198 26.1916 26.769 -41.4677 -1.51224 17.6141 -3.07626 18.0549 -4.69774 18.4281 -6.37851 18.7175 -8.12589 18.8876 -9.86753 18.9559 -11.5858 19.1365 -13.2773 19.2931 -14.9505 19.502 -16.5947 19.7036 -18.2142 19.937 -19.7984 20.1777 -21.3456 20.4447 -22.8416 20.7374 -24.2895 21.0647 -25.6824 21.4234 -27.0164 21.8054 -28.2832 22.2151 -29.4842 22.6435 -30.6242 23.0941 -31.7111 23.551 -32.7398 24.0121 -33.7053 24.4705 -34.5997 24.9332 -35.4277 25.4004 -36.1926 25.8743 -36.8943 26.3492 -37.5347 26.8321 27.3462 -38.1119 -1.33944 18.9535 -2.72142 19.4369 -4.15131 19.8579 -5.63426 20.2004 -7.19011 20.4434 -8.79048 20.5563 -10.3343 20.6803 -11.8676 20.8264 -13.3795 21.0139 -14.874 21.1981 -16.3437 21.4067 -17.7867 21.6207 -19.2019 21.8598 -20.5754 22.111 -21.9059 22.3952 -23.1888 22.7062 -24.427 23.0437 -25.6133 23.4013 -26.7448 23.775 -27.8145 24.1638 -28.831 24.5674 -29.7973 24.9784 -30.7173 25.3905 -31.5862 25.802 -32.396 26.2102 -33.1477 26.6261 -33.844 27.0454 -34.4879 27.476 27.9354 -35.0771 -1.18977 20.1433 -2.41411 20.6612 -3.67922 21.123 -4.9929 21.5141 -6.36958 21.8201 -7.81287 21.9996 -9.21527 22.0827 -10.6162 22.2274 -11.9945 22.3922 -13.3601 22.5636 -14.702 22.7487 -16.0235 22.9422 -17.3202 23.1566 -18.5867 23.3775 -19.8176 23.6261 -21.0036 23.8922 -22.1502 24.1903 -23.2529 24.504 -24.3156 24.8378 -25.3293 25.1775 -26.2904 25.5285 -27.2016 25.8897 -28.0664 26.2553 -28.8908 26.6265 -29.6743 26.9937 -30.4104 27.3622 -31.0959 27.7309 -31.7314 28.1115 28.5213 -32.3173 -1.06106 21.2044 -2.1499 21.7501 -3.27353 22.2467 -4.43918 22.6797 -5.65206 23.033 -6.92897 23.2765 -8.22748 23.3812 -9.51337 23.5132 -10.7774 23.6562 -12.0258 23.8121 -13.2577 23.9805 -14.4719 24.1564 -15.6613 24.346 -16.8282 24.5444 -17.968 24.7659 -19.0696 24.9938 -20.1349 25.2556 -21.1591 25.5282 -22.1465 25.8251 -23.0997 26.1307 -24.0118 26.4405 -24.8791 26.757 -25.7016 27.0778 -26.4799 27.4048 -27.2213 27.735 -27.928 28.069 -28.5977 28.4006 -29.2238 28.7377 29.1 -29.8026 -0.947586 22.1519 -1.91767 22.7201 -2.91646 23.2455 -3.95034 23.7136 -5.02551 24.1082 -6.1618 24.4128 -7.36481 24.5842 -8.53959 24.688 -9.69764 24.8143 -10.8393 24.9538 -11.9734 25.1146 -13.0896 25.2726 -14.1858 25.4422 -15.2618 25.6204 -16.3143 25.8183 -17.3393 26.0188 -18.3309 26.2471 -19.2874 26.4847 -20.2062 26.7439 -21.092 27.0165 -21.9491 27.2976 -22.7716 27.5795 -23.5584 27.8646 -24.3054 28.1518 -25.0125 28.4421 -25.6828 28.7393 -26.323 29.0408 -26.9312 29.3458 29.6691 -27.5003 -0.847613 22.9996 -1.71342 23.586 -2.6032 24.1353 -3.52343 24.6338 -4.48177 25.0665 -5.48929 25.4203 -6.56727 25.6622 -7.6456 25.7663 -8.71428 25.8829 -9.76899 26.0085 -10.8155 26.1612 -11.8437 26.3008 -12.8606 26.459 -13.8561 26.616 -14.827 26.7892 -15.7804 26.9722 -16.7031 27.1699 -17.5974 27.379 -18.4602 27.6067 -19.2861 27.8425 -20.0841 28.0957 -20.8553 28.3506 -21.5992 28.6085 -22.3137 28.8663 -22.9965 29.1249 -23.6429 29.3857 -24.2553 29.6531 -24.8378 29.9284 30.22 -25.3887 -0.759698 23.7593 -1.53391 24.3602 -2.32816 24.9295 -3.14845 25.4541 -4.00162 25.9197 -4.89308 26.3117 -5.84205 26.6111 -6.84412 26.7684 -7.83406 26.8729 -8.81182 26.9862 -9.77464 27.124 -10.7248 27.2509 -11.6659 27.4001 -12.5892 27.5393 -13.4887 27.6887 -14.3715 27.855 -15.2299 28.0283 -16.0636 28.2127 -16.8731 28.4162 -17.6523 28.6216 -18.4004 28.8438 -19.1214 29.0716 -19.8187 29.3059 -20.492 29.5395 -21.1423 29.7752 -21.7666 30.01 -22.3603 30.2469 -22.9228 30.4909 30.7511 -23.4539 -0.681136 24.4404 -1.37378 25.0528 -2.08283 25.6386 -2.8137 26.185 -3.5724 26.6784 -4.36551 27.1049 -5.20746 27.4531 -6.12404 27.685 -7.0372 27.786 -7.94154 27.8906 -8.82761 28.0101 -9.70899 28.1323 -10.5762 28.2673 -11.4338 28.3969 -12.2742 28.529 -13.0919 28.6728 -13.8905 28.8269 -14.6684 28.9906 -15.4226 29.1704 -16.1564 29.3554 -16.865 29.5524 -17.5456 29.7522 -18.2018 29.9621 -18.8351 30.1729 -19.4472 30.3874 -20.0396 30.6024 -20.6108 30.8181 -21.1565 31.0365 31.2674 -21.6728 -0.611162 25.0515 -1.23126 25.6729 -1.86481 26.2721 -2.51685 26.837 -3.19314 27.3546 -3.90072 27.8124 -4.64612 28.1985 -5.45198 28.4909 -6.297 28.6311 -7.13729 28.7309 -7.96054 28.8333 -8.78114 28.9529 -9.58355 29.0697 -10.3791 29.1925 -11.165 29.315 -11.9275 29.4352 -12.671 29.5704 -13.3978 29.7173 -14.1013 29.874 -14.787 30.0411 -15.4548 30.2202 -16.1013 30.3986 -16.7243 30.5851 -17.3244 30.7729 -17.9028 30.9658 -18.461 31.1606 -19.0016 31.3587 -19.5234 31.5583 31.7668 -20.0227 -0.548395 25.5999 -1.10361 26.2281 -1.66973 26.8382 -2.25132 27.4186 -2.8535 27.9568 -3.48206 28.441 -4.14231 28.8587 -4.84953 29.1981 -5.63007 29.4116 -6.4097 29.5105 -7.17714 29.6008 -7.93653 29.7123 -8.6833 29.8165 -9.41847 29.9276 -10.1476 30.0441 -10.8631 30.1507 -11.5589 30.2662 -12.2364 30.3949 -12.8962 30.5338 -13.538 30.6829 -14.1624 30.8447 -14.7726 31.0089 -15.3658 31.1783 -15.9386 31.3457 -16.4903 31.5174 -17.0204 31.6906 -17.5312 31.8695 -18.0244 32.0514 32.2417 -18.4992 -0.491697 26.0916 -0.988492 26.7249 -1.49398 27.3437 -2.01227 27.9369 -2.54804 28.4926 -3.10655 28.9995 -3.69439 29.4466 -4.32011 29.8238 -5.01419 30.1057 -5.73519 30.2315 -6.45241 30.318 -7.15367 30.4136 -7.85259 30.5154 -8.53645 30.6115 -9.21115 30.7188 -9.88073 30.8203 -10.536 30.9214 -11.1706 31.0295 -11.7896 31.1528 -12.3932 31.2865 -12.9791 31.4306 -13.5513 31.581 -14.1113 31.7383 -14.6572 31.8916 -15.186 32.0462 -15.6947 32.1993 -16.1829 32.3577 -16.6516 32.5202 32.6915 -17.1014 -0.440671 26.5323 -0.884955 27.1692 -1.33613 27.7949 -1.79794 28.3987 -2.27472 28.9694 -2.77133 29.4961 -3.29355 29.9688 -3.84617 30.3764 -4.44618 30.7057 -5.11238 30.8977 -5.78237 30.988 -6.43634 31.0675 -7.08951 31.1686 -7.73094 31.2529 -8.35837 31.3463 -8.97912 31.4411 -9.59362 31.5359 -10.1928 31.6288 -10.7745 31.7344 -11.3415 31.8535 -11.8945 31.9836 -12.4331 32.1196 -12.9586 32.2638 -13.4735 32.4065 -13.9768 32.5495 -14.4649 32.6874 -14.9346 32.8275 -15.3849 32.9705 33.122 -15.8154 -0.394314 26.9266 -0.791052 27.566 -1.19312 28.197 -1.60388 28.8095 -2.02723 29.3927 -2.46748 29.9364 -2.92943 30.4308 -3.41867 30.8657 -3.94483 31.2318 -4.54459 31.4974 -5.16601 31.6094 -5.78254 31.6841 -6.38575 31.7718 -6.9867 31.8539 -7.57563 31.9352 -8.15189 32.0173 -8.7231 32.1071 -9.28835 32.194 -9.83859 32.2846 -10.3725 32.3874 -10.8939 32.5049 -11.4035 32.6292 -11.8998 32.7601 -12.3845 32.8912 -12.859 33.024 -13.3229 33.1514 -13.7732 33.2778 -14.2069 33.4041 33.5374 -14.6223 -0.352261 27.2789 -0.705937 27.9196 -1.06364 28.5547 -1.42841 29.1743 -1.80381 29.7681 -2.19384 30.3264 -2.603 30.8399 -3.0369 31.2996 -3.50058 31.6955 -4.01631 32.0132 -4.58941 32.1825 -5.16966 32.2643 -5.73123 32.3334 -6.29376 32.4164 -6.84946 32.4909 -7.39234 32.5602 -7.92347 32.6382 -8.4507 32.7212 -8.97138 32.8053 -9.47833 32.8944 -9.97034 32.997 -10.451 33.1099 -10.9213 33.2303 -11.3803 33.3502 -11.8278 33.4715 -12.2654 33.5889 -12.6928 33.7052 -13.1078 33.8192 33.9376 -13.508 -0.314029 27.5929 -0.628633 28.2342 -0.946176 28.8722 -1.26941 29.4975 -1.60157 30.1003 -1.9463 30.6711 -2.30761 31.2012 -2.69001 31.682 -3.09825 32.1038 -3.54262 32.4576 -4.0618 32.7017 -4.60039 32.8029 -5.13409 32.8671 -5.65748 32.9398 -6.17758 33.011 -6.69126 33.0739 -7.19098 33.1379 -7.68078 33.211 -8.1677 33.2922 -8.64861 33.3753 -9.11668 33.465 -9.57141 33.5646 -10.0156 33.6745 -10.4507 33.7853 -10.8753 33.8962 -11.2891 34.0026 -11.6928 34.1088 -12.0863 34.2127 34.3198 -12.4685 -0.279098 27.872 -0.558097 28.5132 -0.839099 29.1532 -1.12459 29.783 -1.41751 30.3932 -1.72117 30.9748 -2.03923 31.5193 -2.37574 32.0185 -2.73599 32.464 -3.12545 32.847 -3.57386 33.1501 -4.06948 33.2985 -4.57543 33.373 -5.06465 33.429 -5.55013 33.4965 -6.03393 33.5577 -6.50959 33.6136 -6.97111 33.6726 -7.42422 33.7453 -7.87479 33.8259 -8.32015 33.9104 -8.75411 33.9986 -9.1751 34.0955 -9.58621 34.1964 -9.98901 34.299 -10.3826 34.3963 -10.7659 34.4921 -11.1392 34.5861 34.6828 -11.5023 -0.247272 28.1193 -0.493864 28.7598 -0.741695 29.401 -0.993022 30.0343 -1.25053 30.6507 -1.51727 31.2415 -1.79664 31.7986 -2.09237 32.3142 -2.40889 32.7805 -2.75057 33.1887 -3.12942 33.5289 -3.57978 33.7489 -4.04814 33.8414 -4.5151 33.896 -4.97193 33.9533 -5.42386 34.0096 -5.87375 34.0635 -6.31389 34.1127 -6.74058 34.172 -7.1601 34.2454 -7.57799 34.3283 -7.99129 34.4119 -8.39387 34.4981 -8.78417 34.5867 -9.16457 34.6794 -9.53738 34.7691 -9.9019 34.8566 -10.2576 34.9418 35.0289 -10.6037 -0.218124 28.3374 -0.43511 28.9768 -0.65268 29.6186 -0.872883 30.2545 -1.09817 30.876 -1.33132 31.4747 -1.57542 32.0427 -1.83384 32.5726 -2.11033 33.057 -2.40963 33.488 -2.73767 33.857 -3.13046 34.1417 -3.56009 34.271 -4.0036 34.3395 -4.43539 34.3851 -4.85862 34.4328 -5.27891 34.4838 -5.69685 34.5306 -6.1046 34.5798 -6.49981 34.6406 -6.88885 34.7173 -7.27706 34.8001 -7.66156 34.8826 -8.03618 34.9614 -8.39839 35.0416 -8.75093 35.1216 -9.0959 35.2016 -9.43418 35.2801 35.3596 -9.7649 -0.191469 28.5289 -0.381415 29.1668 -0.571402 29.8086 -0.763298 30.4464 -0.959338 31.072 -1.16209 31.6774 -1.37439 32.2551 -1.59941 32.7976 -1.84067 33.2983 -2.10254 33.7499 -2.38942 34.1438 -2.7173 34.4696 -3.10942 34.6631 -3.51754 34.7476 -3.9295 34.797 -4.3331 34.8364 -4.72742 34.8781 -5.11938 34.9226 -5.50767 34.9681 -5.88558 35.0185 -6.25209 35.0838 -6.61372 35.1617 -6.9749 35.2437 -7.33296 35.3194 -7.68145 35.3901 -8.0183 35.4585 -8.34512 35.5284 -8.66507 35.6 35.6741 -8.97953 -0.16707 28.6959 -0.332306 29.332 -0.497134 29.9734 -0.663257 30.6125 -0.832722 31.2415 -1.00788 31.8526 -1.19137 32.4385 -1.38607 32.9923 -1.59516 33.5074 -1.82227 33.977 -2.07184 34.3934 -2.35012 34.7478 -2.69616 35.0092 -3.06907 35.1205 -3.45813 35.1861 -3.84383 35.2221 -4.21886 35.2531 -4.58528 35.289 -4.94935 35.3321 -5.30986 35.379 -5.66081 35.4348 -6.00176 35.5026 -6.33839 35.5804 -6.67507 35.6561 -7.00854 35.7236 -7.33333 35.7833 -7.64656 35.8416 -7.9501 35.9036 35.9712 -8.24723 -0.144689 28.8406 -0.287301 29.4746 -0.429126 30.1152 -0.571716 30.7551 -0.716946 31.3867 -0.866973 32.0026 -1.02422 32.5958 -1.19134 33.1595 -1.37127 33.6873 -1.56736 34.1731 -1.78388 34.6099 -2.02537 34.9893 -2.31446 35.2983 -2.65813 35.4642 -3.01391 35.5419 -3.379 35.5872 -3.74028 35.6144 -4.08939 35.6381 -4.43022 35.673 -4.76882 35.7176 -5.1038 35.7698 -5.43046 35.8293 -5.74853 35.8984 -6.0633 35.9709 -6.37759 36.0379 -6.68886 36.0945 -6.99181 36.1446 -7.28394 36.1957 36.254 -7.56672 -0.124211 28.9648 -0.246143 29.5965 -0.366981 30.2361 -0.488147 30.8763 -0.611358 31.5099 -0.738598 32.1299 -0.872098 32.7293 -1.01432 33.3017 -1.16798 33.841 -1.33614 34.3412 -1.52244 34.7962 -1.7314 35.1983 -1.97099 35.5379 -2.27897 35.7722 -2.60344 35.8664 -2.94404 35.9278 -3.28985 35.9602 -3.62824 35.9765 -3.95261 35.9973 -4.26864 36.0337 -4.58277 36.0839 -4.89462 36.1411 -5.19966 36.2035 -5.49759 36.2688 -5.79209 36.3324 -6.08563 36.3881 -6.3759 36.4349 -6.6586 36.4784 36.5267 -6.93136 -0.10542 29.0703 -0.208415 29.6995 -0.310063 30.3377 -0.411664 30.9779 -0.51479 31.6131 -0.621263 32.2363 -0.733129 32.8411 -0.852645 33.4212 -0.982294 33.9706 -1.12484 34.4838 -1.28348 34.9549 -1.46253 35.3773 -1.66692 35.7423 -1.92651 36.0318 -2.2296 36.1694 -2.54028 36.2385 -2.86308 36.283 -3.18942 36.3029 -3.50486 36.3128 -3.80556 36.3344 -4.0986 36.3769 -4.39111 36.4337 -4.68262 36.495 -4.96919 36.5554 -5.24952 36.6127 -5.52597 36.6645 -5.80028 36.7092 -6.07092 36.7491 36.7904 -6.33459 -0.0882292 29.1585 -0.173916 29.7852 -0.258059 30.4219 -0.341849 31.0617 -0.42673 31.6979 -0.514378 32.324 -0.606676 32.9334 -0.705706 33.5202 -0.813754 34.0787 -0.933367 34.6034 -1.06749 35.089 -1.21985 35.5297 -1.39527 35.9177 -1.60556 36.242 -1.88248 36.4464 -2.16718 36.5232 -2.46427 36.5801 -2.77261 36.6112 -3.08011 36.6203 -3.37364 36.6279 -3.65166 36.655 -3.92314 36.7051 -4.19584 36.7677 -4.46973 36.8293 -4.74028 36.8833 -5.00495 36.9292 -5.2647 36.9689 -5.52096 37.0053 37.0425 -5.77306 -0.0724875 29.231 -0.142354 29.8551 -0.210529 30.49 -0.278098 31.1293 -0.346393 31.7662 -0.416958 32.3946 -0.49153 33.008 -0.572019 33.6007 -0.660517 34.1672 -0.759331 34.7022 -0.871068 35.2007 -0.998851 35.6575 -1.14697 36.0658 -1.32114 36.4162 -1.55779 36.683 -1.82727 36.7927 -2.09906 36.8519 -2.38298 36.8951 -2.67646 36.9138 -2.96456 36.916 -3.23594 36.9263 -3.49253 36.9617 -3.74478 37.0199 -4.00051 37.085 -4.2592 37.1419 -4.51549 37.1855 -4.76555 37.219 -5.00928 37.249 37.2814 -5.24811 -0.0580752 29.2891 -0.11348 29.9105 -0.167085 30.5436 -0.219878 31.182 -0.273088 31.8194 -0.328146 32.4496 -0.386651 33.0665 -0.450362 33.6644 -0.521192 34.238 -0.601244 34.7822 -0.692879 35.2924 -0.798901 35.7635 -0.923041 36.1899 -1.07042 36.5636 -1.25939 36.872 -1.51081 37.0441 -1.76293 37.104 -2.02223 37.1544 -2.29429 37.1858 -2.57206 37.1938 -2.8405 37.1948 -3.09096 37.2122 -3.32817 37.2572 -3.5638 37.3206 -3.80535 37.3835 -4.05119 37.4313 -4.29472 37.4625 -4.53095 37.4853 37.5097 -4.75927 -0.0449284 29.334 -0.0871511 29.9527 -0.127521 30.584 -0.166917 31.2214 -0.206481 31.859 -0.247546 32.4907 -0.291597 33.1106 -0.340257 33.7131 -0.395291 34.293 -0.458618 34.8456 -0.532373 35.3661 -0.619025 35.8502 -0.721679 36.2926 -0.844833 36.6867 -0.995514 37.0227 -1.21389 37.2625 -1.45523 37.3454 -1.69483 37.394 -1.9434 37.4344 -2.20366 37.454 -2.46494 37.4561 -2.7131 37.4603 -2.94321 37.4873 -3.16288 37.5403 -3.38434 37.605 -3.61375 37.6607 -3.8479 37.6967 -4.07899 37.7164 37.7322 -4.30151 -0.0328836 29.3669 -0.0630453 29.9829 -0.0913402 30.6123 -0.118516 31.2486 -0.145651 31.8861 -0.174003 32.519 -0.204954 33.1415 -0.240007 33.7481 -0.280784 34.3338 -0.329034 34.8938 -0.386677 35.4238 -0.45589 35.9194 -0.539319 36.376 -0.640635 36.7881 -0.76503 37.1471 -0.939229 37.4367 -1.16872 37.5749 -1.39447 37.6198 -1.62259 37.6625 -1.86153 37.693 -2.10917 37.7037 -2.35324 37.7044 -2.58194 37.716 -2.79399 37.7523 -2.99911 37.8101 -3.20901 37.8706 -3.42797 37.9156 -3.65096 37.9394 37.9507 -3.86952 -0.0220748 29.3889 -0.0414235 30.0022 -0.0589266 30.6298 -0.0750345 31.2647 -0.0908949 31.902 -0.107749 32.5359 -0.126873 33.1606 -0.149664 33.7709 -0.177634 34.3618 -0.212404 34.9286 -0.255728 35.4671 -0.309572 35.9732 -0.376265 36.4427 -0.458872 36.8707 -0.562093 37.2503 -0.695975 37.5706 -0.900127 37.779 -1.11816 37.8378 -1.33185 37.8762 -1.5504 37.9115 -1.77922 37.9325 -2.01296 37.9381 -2.23928 37.9423 -2.44942 37.9625 -2.64568 38.0063 -2.83898 38.0639 -3.03949 38.1161 -3.24894 38.1488 38.1626 -3.46081 -0.0121682 29.4011 -0.0216567 30.0117 -0.0292126 30.6374 -0.0349442 31.2705 -0.040732 31.9078 -0.0473203 32.5425 -0.0558669 33.1692 -0.0676982 33.7828 -0.0842288 34.3783 -0.106958 34.9513 -0.137492 35.4976 -0.177598 36.0133 -0.229303 36.4944 -0.295138 36.9365 -0.378748 37.3339 -0.485458 37.6773 -0.650673 37.9442 -0.861066 38.0482 -1.06555 38.0807 -1.26908 38.115 -1.47952 38.143 -1.69793 38.1566 -1.9168 38.1612 -2.12543 38.1711 -2.31874 38.1997 -2.50184 38.247 -2.68562 38.2999 -2.87789 38.3411 38.3626 -3.07786 -0.00287747 29.404 -0.00356054 30.0124 -0.000984317 30.6348 0.00146773 31.268 0.00482918 31.9044 0.00764362 32.5397 0.00868948 33.1681 0.00673849 33.7847 0.000483334 34.3846 -0.011467 34.9633 -0.030594 35.5168 -0.0585056 36.0412 -0.0970176 36.5329 -0.148326 36.9878 -0.215463 37.401 -0.30361 37.7654 -0.427748 38.0684 -0.619345 38.2398 -0.817523 38.2789 -1.0113 38.3088 -1.20643 38.3381 -1.40833 38.3585 -1.61546 38.3683 -1.81948 38.3751 -2.0118 38.392 -2.19089 38.4261 -2.36364 38.4727 -2.53985 38.5173 38.5472 -2.72447 0.00430498 29.3997 0.0112555 30.0054 0.0207361 30.6253 0.0322106 31.2565 0.0439945 31.8926 0.0553662 32.5283 0.065232 33.1583 0.0723802 33.7776 0.0755471 34.3814 0.073418 34.9654 0.0646127 35.5256 0.0476534 36.0582 0.0208961 36.5597 -0.0175974 37.0263 -0.0703011 37.4537 -0.140801 37.8359 -0.23564 38.1632 -0.395656 38.3998 -0.58867 38.4719 -0.775025 38.4952 -0.958994 38.5221 -1.1463 38.5458 -1.33914 38.5611 -1.53388 38.5699 -1.72278 38.5809 -1.90023 38.6035 -2.06751 38.6399 -2.23212 38.6819 38.7168 -2.40175 0.0119658 29.3877 0.026676 29.9907 0.0433516 30.6086 0.0617742 31.2381 0.0809102 31.8735 0.0997464 32.5095 0.117255 33.1408 0.132317 33.7625 0.143745 34.37 0.150295 34.9589 0.15067 35.5252 0.143503 36.0654 0.127304 36.5759 0.100372 37.0532 0.0605978 37.4935 0.00502776 37.8915 -0.0708757 38.2391 -0.192688 38.5216 -0.372139 38.6513 -0.55367 38.6767 -0.730922 38.6993 -0.907366 38.7222 -1.08701 38.7408 -1.27016 38.753 -1.45224 38.763 -1.62705 38.7784 -1.79174 38.8046 -1.94957 38.8397 38.8748 -2.10749 0.0192685 29.3685 0.0411064 29.9689 0.0646047 30.5851 0.0894901 31.2132 0.115045 31.848 0.140396 32.4841 0.16458 33.1166 0.186549 33.7405 0.205188 34.3513 0.219326 34.9447 0.227741 35.5168 0.229154 36.0639 0.222188 36.5828 0.205291 37.0701 0.176595 37.5222 0.133568 37.9345 0.0720398 38.3006 -0.0164245 38.6101 -0.17307 38.808 -0.348569 38.8522 -0.519397 38.8701 -0.687549 38.8904 -0.856323 38.9096 -1.02789 38.9246 -1.20077 38.9358 -1.37042 38.948 -1.53251 38.9667 -1.68663 38.9939 39.025 -1.83688 0.0252321 29.3432 0.0529587 29.9412 0.0824576 30.5556 0.113261 31.1824 0.14471 31.8165 0.175999 32.4528 0.206226 33.0864 0.234409 33.7123 0.259503 34.3262 0.280407 34.9238 0.295979 35.5012 0.305022 36.0549 0.306262 36.5816 0.298295 37.0781 0.279465 37.541 0.247648 37.9663 0.199768 38.3485 0.13184 38.678 0.00774672 38.9321 -0.158416 39.0184 -0.323389 39.0351 -0.485082 39.0521 -0.645414 39.0699 -0.80663 39.0858 -0.96936 39.0986 -1.13144 39.1101 -1.28913 39.1244 -1.44007 39.1448 39.1704 -1.58542 0.030694 29.3125 0.0636312 29.9082 0.0983433 30.5209 0.134329 31.1464 0.170955 31.7799 0.207467 32.4163 0.243014 33.0508 0.276676 33.6787 0.307471 34.2954 0.33437 34.8969 0.356303 35.4793 0.372157 36.039 0.380758 36.573 0.380826 37.078 0.370898 37.551 0.349168 37.9881 0.313132 38.3845 0.258256 38.7329 0.169367 39.0209 0.0172481 39.1705 -0.14154 39.1939 -0.297639 39.2082 -0.451065 39.2233 -0.603697 39.2384 -0.75697 39.2518 -0.910513 39.2636 -1.062 39.2759 -1.20883 39.2916 39.3118 -1.35025 0.0353671 29.2772 0.0728148 29.8708 0.112017 30.4817 0.152483 31.106 0.193598 31.7388 0.234644 32.3753 0.274818 33.0106 0.313248 33.6403 0.349009 34.2597 0.381133 34.8648 0.408616 35.4518 0.43042 36.0172 0.445452 36.558 0.452537 37.071 0.450347 37.5531 0.43727 38.0011 0.411127 38.4107 0.368382 38.7756 0.303569 39.0858 0.177129 39.2969 0.0243643 39.3467 -0.125183 39.3577 -0.272211 39.3703 -0.417614 39.3838 -0.562608 39.3968 -0.707676 39.4087 -0.851863 39.4201 -0.993244 39.433 39.4489 -1.13038 0.0388056 29.2384 0.0800638 29.8295 0.123062 30.4387 0.167322 31.0617 0.212258 31.6938 0.257185 32.3303 0.301335 32.9665 0.34388 33.5977 0.383943 34.2196 0.420609 34.8281 0.452933 35.4195 0.479942 35.9902 0.500621 36.5373 0.513884 37.0577 0.518527 37.5485 0.513121 38.0066 0.495828 38.428 0.464046 38.8074 0.414041 39.1358 0.317822 39.3931 0.17631 39.4882 0.0328012 39.5012 -0.10834 39.5115 -0.247437 39.5229 -0.385225 39.5346 -0.52246 39.5459 -0.659088 39.5567 -0.794068 39.568 39.5809 -0.926092 0.0422285 29.1961 0.0865588 29.7852 0.132615 30.3927 0.179931 31.0144 0.227945 31.6458 0.276005 32.2823 0.323385 32.9191 0.3693 33.5518 0.412919 34.176 0.453378 34.7877 0.489785 35.3831 0.521227 35.9588 0.546754 36.5118 0.565367 37.0391 0.575968 37.5379 0.577287 38.0052 0.567742 38.4375 0.545147 38.83 0.505671 39.1752 0.437102 39.4617 0.310915 39.6144 0.174426 39.6377 0.0396363 39.6463 -0.0930807 39.6556 -0.224199 39.6657 -0.354273 39.676 -0.483597 39.686 -0.611788 39.6962 39.7071 -0.73798 0.0449182 29.1512 0.0917956 29.7383 0.140335 30.3441 0.190103 30.9646 0.240568 31.5953 0.291117 32.2317 0.341066 32.8692 0.389673 33.5032 0.436155 34.1295 0.479695 34.7441 0.519456 35.3433 0.554577 35.9237 0.584174 36.4822 0.60732 37.0159 0.62301 37.5222 0.630101 37.9981 0.627192 38.4404 0.612361 38.8448 0.582445 39.2052 0.533011 39.5111 0.428493 39.7189 0.299632 39.7666 0.171651 39.7743 0.0452923 39.782 -0.0794084 39.7904 -0.202794 39.7994 -0.325187 39.8084 -0.446579 39.8176 39.8271 -0.566536 0.0467013 29.1045 0.0955411 29.6895 0.145994 30.2937 0.197643 30.913 0.24999 31.543 0.302454 32.1793 0.35439 32.8172 0.405096 33.4525 0.453833 34.0808 0.499832 34.6981 0.542302 35.3008 0.580437 35.8855 0.613409 36.4492 0.640355 36.989 0.66035 37.5022 0.672352 37.9861 0.67511 38.4377 0.666983 38.853 0.645612 39.2265 0.60778 39.549 0.52834 39.7983 0.409083 39.8858 0.287782 39.8956 0.167869 39.9019 0.0494289 39.9089 -0.0675856 39.9164 -0.183432 39.9243 -0.298235 39.9324 39.9407 -0.411863 0.0483768 29.0561 0.0985581 29.6393 0.150301 30.2419 0.203211 30.8601 0.256812 31.4894 0.310557 32.1255 0.363836 32.7639 0.41599 33.4003 0.46632 34.0304 0.514102 34.6503 0.55859 35.2563 0.599028 35.8451 0.634639 36.4136 0.664622 36.959 0.688124 37.4787 0.704205 37.9701 0.711764 38.4301 0.709421 38.8553 0.695257 39.2407 0.665953 39.5783 0.608761 39.8555 0.502312 39.9923 0.387803 40.0101 0.274406 40.0153 0.162308 40.021 0.051522 40.0272 -0.0580254 40.0338 -0.166478 40.0408 40.0481 -0.273856 0.049282 29.0068 0.100355 29.5882 0.152918 30.1894 0.2066 30.8064 0.260961 31.435 0.315484 32.071 0.369596 32.7098 0.422675 33.3473 0.474065 33.9791 0.523085 34.6013 0.569037 35.2104 0.611212 35.8029 0.648888 36.3759 0.681324 36.9266 0.707744 37.4523 0.727297 37.9505 0.738997 38.4184 0.741599 38.8527 0.733355 39.2489 0.711341 39.6003 0.670418 39.8964 0.580414 40.0823 0.472842 40.1176 0.365889 40.1223 0.260062 40.1268 0.155416 40.1318 0.0519306 40.1373 -0.0504433 40.1432 40.1494 -0.151773 0.0496413 28.9572 0.10108 29.5368 0.153965 30.1365 0.207939 30.7524 0.262578 31.3804 0.317396 32.0162 0.371852 32.6554 0.425363 33.2937 0.47731 33.9271 0.527054 34.5516 0.573941 35.1635 0.617306 35.7596 0.656477 36.3367 0.690762 36.8923 0.719438 37.4236 0.741717 37.9282 0.756705 38.4034 0.763329 38.8461 0.760221 39.252 0.744681 39.6158 0.714173 39.9269 0.642922 40.1535 0.54318 40.2174 0.442636 40.2228 0.34306 40.2264 0.244495 40.2304 0.146979 40.2348 0.0505115 40.2397 40.2449 -0.0449438 0.0497289 28.9075 0.101089 29.4854 0.153837 30.0837 0.207636 30.6986 0.262085 31.326 0.31673 31.9615 0.371062 32.601 0.424528 33.2403 0.476548 33.8751 0.526521 34.5016 0.573831 35.1162 0.617855 35.7155 0.657961 36.2966 0.693502 36.8567 0.723803 37.3933 0.748141 37.9039 0.765705 38.3859 0.775549 38.8362 0.776428 39.2512 0.766552 39.6257 0.743243 39.9502 0.689881 40.2069 0.599372 40.3079 0.505135 40.317 0.41172 40.3198 0.319197 40.3229 0.227585 40.3264 0.136917 40.3303 40.3346 0.0471898 0.0493046 28.8582 0.100214 29.4345 0.152446 30.0315 0.20569 30.6454 0.259569 31.2721 0.313652 31.9074 0.367462 32.5472 0.420483 33.1873 0.472169 33.8234 0.521956 34.4518 0.569266 35.0689 0.613515 35.6713 0.654114 36.256 0.690463 36.8204 0.72194 37.3618 0.747885 37.8779 0.767551 38.3662 0.780023 38.8238 0.783983 39.2472 0.77858 39.6311 0.760872 39.968 0.722177 40.2456 0.642719 40.3873 0.554719 40.405 0.467339 40.4072 0.380735 40.4095 0.294922 40.4123 0.209931 40.4153 40.4187 0.125789 0.048611 28.8096 0.0987179 29.3844 0.150091 29.9801 0.202435 30.593 0.255395 31.2191 0.308565 31.8543 0.361502 32.4943 0.413721 33.135 0.464711 33.7724 0.513943 34.4026 0.560876 35.0219 0.604966 35.6272 0.645662 36.2153 0.682406 36.7836 0.714623 37.3296 0.741703 37.8509 0.762967 38.3449 0.777614 38.8091 0.784687 39.2401 0.782851 39.633 0.769809 39.981 0.741617 40.2738 0.674558 40.4544 0.592778 40.4868 0.511205 40.4887 0.43033 40.4904 0.350153 40.4924 0.270684 40.4948 40.4975 0.19196 0.0475935 28.762 0.0966179 29.3354 0.146839 29.9299 0.197981 30.5419 0.249718 31.1674 0.301672 31.8023 0.353424 32.4425 0.40452 33.0839 0.454484 33.7225 0.502819 34.3543 0.549022 34.9757 0.592583 35.5836 0.632989 36.1749 0.669723 36.7469 0.702253 37.2971 0.730022 37.8231 0.752423 38.3225 0.768773 38.7928 0.778294 39.2306 0.779562 39.6317 0.770754 39.9898 0.749767 40.2948 0.695501 40.5087 0.620214 40.5621 0.544297 40.5647 0.468974 40.5657 0.394266 40.5671 0.320169 40.5689 40.5709 0.246711 0.0463402 28.7156 0.0940284 29.2877 0.142852 29.8811 0.192553 30.4922 0.242828 31.1171 0.293319 31.7518 0.343633 32.3922 0.393352 33.0342 0.442028 33.6738 0.4892 34.3071 0.534399 34.9305 0.57715 35.5409 0.616977 36.1351 0.6534 36.7105 0.685929 37.2646 0.714056 37.795 0.737227 38.2994 0.754817 38.7752 0.766053 39.2194 0.769829 39.6279 0.764639 39.995 0.748667 40.3107 0.706348 40.551 0.637963 40.6305 0.567524 40.6351 0.497576 40.6357 0.428157 40.6366 0.359272 40.6378 40.6393 0.290923 0.0448856 28.6707 0.0910434 29.2415 0.138277 29.8339 0.186342 30.4441 0.234952 31.0685 0.283778 31.703 0.332458 32.3436 0.380596 32.9861 0.427778 33.6266 0.473572 34.2613 0.517543 34.8866 0.559248 35.4992 0.598247 36.0961 0.634094 36.6746 0.666339 37.2323 0.694509 37.7668 0.718099 38.2758 0.736534 38.7568 0.749113 39.2068 0.754914 39.6221 0.752688 39.9972 0.74051 40.3229 0.708372 40.5831 0.647339 40.6915 0.58219 40.7003 0.517405 40.7005 0.453078 40.7009 0.38921 40.7016 40.7027 0.325797 0.0432711 28.6275 0.0877444 29.1971 0.133233 29.7884 0.17951 30.3978 0.226307 31.0217 0.273322 31.656 0.320212 32.2967 0.36661 32.9397 0.412132 33.5811 0.456377 34.217 0.49894 34.844 0.53941 35.4587 0.577378 36.0581 0.612432 36.6396 0.644154 37.2006 0.67211 37.7388 0.695835 38.2521 0.714806 38.7378 0.728397 39.1932 0.735809 39.6147 0.735956 39.9971 0.726903 40.332 0.702865 40.6072 0.64949 40.7449 0.589441 40.7603 0.529597 40.7603 0.47012 40.7604 0.411047 40.7607 40.7614 0.352368 0.0415425 28.5859 0.084216 29.1544 0.127848 29.7447 0.172226 30.3535 0.217103 30.9768 0.262193 31.6109 0.30718 32.2517 0.351721 32.8951 0.39546 33.5373 0.438025 34.1745 0.479039 34.803 0.518123 35.4196 0.554897 36.0214 0.588979 36.6055 0.619983 37.1696 0.647509 37.7113 0.671131 38.2284 0.690373 38.7185 0.704674 39.1789 0.713329 39.606 0.715361 39.995 0.708995 40.3383 0.691067 40.6251 0.645372 40.7906 0.590255 40.8154 0.53513 40.8154 0.480296 40.8152 0.42579 40.8152 40.8155 0.371619 0.0397342 28.5462 0.0805326 29.1136 0.122234 29.703 0.164643 30.311 0.207524 30.9339 0.250613 31.5678 0.293617 32.2087 0.336222 32.8525 0.378094 33.4955 0.41889 34.1337 0.458257 34.7636 0.495846 35.382 0.531303 35.9859 0.564277 36.5725 0.594411 37.1395 0.621337 37.6844 0.644665 38.2051 0.663961 38.6992 0.67872 39.1641 0.688311 39.5964 0.691851 39.9915 0.687822 40.3424 0.674408 40.6385 0.636105 40.8289 0.585759 40.8658 0.535112 40.8661 0.484677 40.8656 0.434502 40.8654 40.8654 0.384608 0.0378781 28.5083 0.0767564 29.0747 0.116485 29.6633 0.156879 30.2707 0.197724 30.8931 0.238773 31.5268 0.279756 32.1677 0.320378 32.8119 0.360331 33.4555 0.399296 34.0947 0.436951 34.726 0.472968 35.346 0.507023 35.9518 0.538789 36.5408 0.567938 37.1103 0.594131 37.6582 0.61701 38.1822 0.636182 38.6801 0.651189 39.1491 0.661461 39.5862 0.666207 39.9868 0.66417 40.3444 0.654089 40.6486 0.622586 40.8604 0.576844 40.9115 0.530405 40.9125 0.484122 40.9119 0.438036 40.9115 40.9113 0.392179 0.0360019 28.4723 0.0729426 29.0378 0.110682 29.6256 0.14905 30.2323 0.187846 30.8543 0.226843 31.4878 0.265788 32.1287 0.304409 32.7733 0.34242 33.4175 0.379526 34.0576 0.415429 34.6901 0.449828 35.3116 0.482421 35.9193 0.512907 36.5103 0.540983 37.0822 0.566339 37.6328 0.588645 38.1599 0.607543 38.6612 0.622617 39.1341 0.633352 39.5754 0.639044 39.9811 0.638659 40.3448 0.631082 40.6562 0.605593 40.8859 0.564313 40.9528 0.521843 40.955 0.479474 40.9543 0.437246 40.9537 40.9533 0.395196 0.03413 28.4382 0.0691404 29.0028 0.104902 29.5898 0.141255 30.1959 0.178016 30.8175 0.214971 31.4508 0.251887 32.0918 0.288513 32.7367 0.324587 33.3814 0.359834 34.0224 0.393977 34.6559 0.426739 35.2789 0.457842 35.8882 0.487008 36.4811 0.513958 37.0553 0.538406 37.6084 0.560052 38.1383 0.578566 38.6427 0.593571 39.1191 0.604602 39.5644 0.611037 39.9746 0.61201 40.3438 0.606409 40.6618 0.586094 40.9062 0.549095 40.9898 0.510317 40.9938 0.471602 40.993 0.432979 40.9923 40.9918 0.394485 0.0322817 28.4059 0.0653886 28.9697 0.0992003 29.556 0.13357 30.1616 0.168325 30.7828 0.203271 31.4159 0.238189 32.0569 0.272848 32.702 0.307006 33.3473 0.340409 33.989 0.372803 34.6235 0.403929 35.2477 0.433533 35.8585 0.461358 36.4533 0.487146 37.0295 0.510636 37.5849 0.531551 38.1174 0.549591 38.6246 0.564412 39.1042 0.575593 39.5532 0.582585 39.9676 0.584642 40.3417 0.580633 40.6658 0.564621 40.9222 0.531692 41.0227 0.496345 41.0291 0.46103 41.0283 0.425775 41.0276 41.027 0.390611 0.0304734 28.3754 0.0617195 28.9384 0.0936269 29.5241 0.12606 30.1291 0.158858 30.75 0.19184 31.3829 0.224806 32.0239 0.257544 32.6693 0.289825 33.315 0.321418 33.9574 0.352088 34.5929 0.381598 35.2182 0.409711 35.8304 0.436191 36.4268 0.460801 37.0049 0.483301 37.5624 0.503437 38.0972 0.520934 38.6071 0.535478 39.0897 0.54669 39.542 0.554083 39.9602 0.556999 40.3388 0.554319 40.6685 0.54184 40.9347 0.512767 41.0518 0.480618 41.0613 0.448467 41.0605 0.416352 41.0597 41.0591 0.384292 0.0287176 28.3467 0.0581585 28.909 0.0882194 29.494 0.118774 30.0986 0.149676 30.7191 0.180756 31.3518 0.21183 31.9929 0.242702 32.6384 0.273161 33.2845 0.302994 33.9275 0.331983 34.5639 0.35991 35.1903 0.386558 35.8038 0.411708 36.4017 0.435144 36.9814 0.456643 37.5409 0.475972 38.0779 0.49288 38.5902 0.507081 39.0755 0.518233 39.5309 0.525898 39.9526 0.529488 40.3352 0.527932 40.67 0.518309 40.9443 0.492808 41.0773 0.463604 41.0905 0.434359 41.0897 0.405132 41.0889 41.0883 0.375932 0.0270239 28.3197 0.0547242 28.8813 0.0830057 29.4657 0.111752 30.0698 0.140826 30.69 0.170073 31.3226 0.199324 31.9636 0.228394 32.6093 0.257094 33.2558 0.285223 33.8994 0.312583 34.5365 0.338971 35.1639 0.364188 35.7786 0.388033 36.3778 0.410307 36.9592 0.430803 37.5204 0.44931 38.0594 0.465597 38.5739 0.479404 39.0617 0.490419 39.5199 0.498251 39.9447 0.502364 40.3311 0.501769 40.6706 0.494443 40.9517 0.472239 41.0995 0.445761 41.1169 0.419211 41.1163 0.39267 41.1155 41.1148 0.366141 0.0253978 28.2943 0.0514284 28.8552 0.0780034 29.4392 0.105015 30.0428 0.132338 30.6627 0.159828 31.2951 0.187329 31.9361 0.214671 32.582 0.241679 33.2288 0.268169 33.8729 0.293956 34.5107 0.318856 35.139 0.342684 35.7547 0.365255 36.3552 0.386385 36.938 0.405886 37.5009 0.423563 38.0417 0.439203 38.5583 0.45257 39.0483 0.46338 39.509 0.471282 39.9368 0.475784 40.3266 0.475992 40.6704 0.470491 40.9572 0.451275 41.1187 0.427308 41.1409 0.403222 41.1403 0.379138 41.1396 41.1389 0.355055 0.0238453 28.2704 0.0482821 28.8308 0.073229 29.4142 0.0985864 30.0175 0.124238 30.637 0.150052 31.2692 0.175883 31.9103 0.201576 32.5563 0.226967 33.2034 0.251889 33.848 0.276171 34.4864 0.299643 35.1155 0.322134 35.7323 0.343475 36.3339 0.363496 36.918 0.382025 37.4824 0.398881 38.0249 0.413871 38.5433 0.426777 39.0354 0.437343 39.4985 0.445249 39.9289 0.450046 40.3218 0.450938 40.6695 0.446911 40.9612 0.43039 41.1352 0.408738 41.1626 0.38692 41.1622 0.365095 41.1614 41.1607 0.343263 0.0223675 28.2481 0.0452879 28.8079 0.068686 29.3908 0.09247 29.9937 0.116533 30.613 0.140752 31.245 0.164994 31.886 0.189116 32.5322 0.212967 33.1796 0.236393 33.8246 0.259237 34.4636 0.28134 35.0934 0.302548 35.711 0.322704 36.3137 0.341651 36.8991 0.359231 37.4648 0.375279 38.0088 0.389616 38.529 0.402046 39.023 0.412334 39.4882 0.420189 39.9211 0.425203 40.3168 0.426673 40.668 0.423844 40.964 0.409727 41.1494 0.390188 41.1821 0.370433 41.1819 0.350668 41.1812 41.1805 0.330892 0.0209656 28.2271 0.0424477 28.7864 0.064377 29.3689 0.0866687 29.9714 0.109224 30.5904 0.13193 31.2223 0.154664 31.8633 0.177294 32.5095 0.199681 33.1572 0.221683 33.8026 0.243154 34.4421 0.26395 35.0726 0.283927 35.6911 0.302942 36.2947 0.32085 36.8812 0.337505 37.4481 0.352755 37.9936 0.366438 38.5153 0.378371 39.0111 0.388341 39.4782 0.396081 39.9133 0.401217 40.3117 0.403132 40.6661 0.401225 40.9659 0.389224 41.1614 0.371665 41.1997 0.35384 41.1997 0.335994 41.199 41.1983 0.31813 0.0196404 28.2075 0.0397632 28.7663 0.0603043 29.3484 0.0811858 29.9505 0.102316 30.5693 0.123593 31.201 0.144901 31.842 0.166119 32.4883 0.18712 33.1362 0.207773 33.7819 0.227943 34.422 0.247497 35.0531 0.266304 35.6723 0.28423 36.2768 0.301143 36.8643 0.316909 37.4324 0.331388 37.9791 0.34443 38.5022 0.355869 38.9996 0.365512 39.4686 0.373114 39.9057 0.378336 40.3065 0.38064 40.6638 0.379523 40.967 0.369387 41.1715 0.353594 41.2154 0.337491 41.2158 0.321366 41.2151 41.2145 0.305225 0.0183885 28.1891 0.0372276 28.7474 0.0564584 29.3291 0.0760091 29.931 0.0957954 30.5495 0.115722 31.1811 0.135684 31.822 0.15557 32.4684 0.175261 33.1165 0.194638 33.7625 0.213576 34.403 0.231954 35.0347 0.24965 35.6546 0.266541 36.2599 0.282506 36.8483 0.29742 37.4175 0.311157 37.9653 0.323578 38.4898 0.33453 38.9887 0.343837 39.4593 0.351275 39.8983 0.356538 40.3012 0.359151 40.6612 0.35868 40.9675 0.350185 41.18 0.336031 41.2296 0.321516 41.2304 0.306974 41.2297 41.229 0.292413 0.0172073 28.1719 0.0348356 28.7298 0.0528305 29.3111 0.0711256 29.9127 0.0896432 30.531 0.108296 31.1625 0.126986 31.8034 0.145612 32.4498 0.164063 33.098 0.18223 33.7444 0.199999 34.3853 0.217256 35.0174 0.23389 35.6379 0.249788 36.244 0.264838 36.8332 0.278926 37.4034 0.291934 37.9523 0.303735 38.478 0.314189 38.9782 0.323132 39.4503 0.33036 39.8911 0.33559 40.296 0.338404 40.6584 0.338393 40.9675 0.331273 41.1871 0.318613 41.2423 0.305557 41.2434 0.292474 41.2427 41.2421 0.279367 0.0160981 28.1558 0.0325888 28.7133 0.0494223 29.2943 0.0665376 29.8955 0.0838632 30.5137 0.101318 31.145 0.118814 31.7859 0.136254 32.4324 0.15354 33.0808 0.170569 33.7273 0.187236 34.3686 0.203437 35.0012 0.219069 35.6223 0.234028 36.2291 0.248212 36.8191 0.261514 37.3901 0.273827 37.94 0.285035 38.4668 0.295009 38.9682 0.3036 39.4417 0.310624 39.8841 0.315826 40.2908 0.31884 40.6554 0.319292 40.9671 0.31344 41.193 0.302149 41.2536 0.290418 41.2551 0.278651 41.2545 41.2539 0.266861 0.0150542 28.1407 0.0304751 28.6979 0.0462167 29.2786 0.0622229 29.8795 0.0784278 30.4974 0.094757 31.1287 0.111129 31.7695 0.127455 32.416 0.143644 33.0646 0.159602 33.7114 0.175232 34.353 0.190439 34.986 0.205127 35.6076 0.219202 36.215 0.232567 36.8057 0.245126 37.3775 0.25678 37.9284 0.267422 38.4562 0.276933 38.9587 0.285176 39.4335 0.291981 39.8772 0.297116 40.2856 0.300255 40.6522 0.301039 40.9663 0.296214 41.1978 0.286115 41.2637 0.275554 41.2657 0.264962 41.2651 41.2646 0.25435 0.0140733 28.1267 0.0284886 28.6835 0.0432036 29.2638 0.0581668 29.8646 0.0733173 30.4823 0.0885868 31.1134 0.1039 31.7542 0.119176 32.4008 0.134329 33.0494 0.149274 33.6964 0.163922 34.3383 0.178184 34.9718 0.191973 35.5938 0.205201 36.2018 0.217781 36.7931 0.229623 37.3657 0.240636 37.9174 0.250721 38.4461 0.259769 38.9497 0.267655 39.4256 0.274221 39.8707 0.279257 40.2806 0.282471 40.649 0.283522 40.9652 0.279618 41.2017 0.270689 41.2726 0.261269 41.2751 0.251812 41.2746 41.274 0.242328 0.0131517 28.1135 0.0266227 28.67 0.040374 29.2501 0.0543578 29.8506 0.0685183 30.4681 0.0827924 31.0991 0.0971106 31.7399 0.111398 32.3865 0.125578 33.0352 0.139568 33.6824 0.153289 34.3246 0.166658 34.9584 0.179595 35.5809 0.192019 36.1893 0.203848 36.7813 0.215002 37.3545 0.225395 37.907 0.234936 38.4365 0.243527 38.9411 0.251051 39.4181 0.257365 39.8644 0.262278 40.2757 0.265528 40.6458 0.26679 40.964 0.263643 41.2048 0.255698 41.2805 0.247247 41.2836 0.238762 41.283 41.2825 0.230254 0.0122887 28.1012 0.024875 28.6574 0.0377235 29.2372 0.0507903 29.8375 0.0640242 30.4549 0.077367 31.0858 0.0907547 31.7265 0.104119 32.3731 0.117388 33.022 0.130487 33.6693 0.143343 34.3117 0.155879 34.9459 0.168023 35.5687 0.179698 36.1777 0.190831 36.7701 0.201347 37.344 0.211167 37.8971 0.220209 38.4275 0.228381 38.9329 0.235577 39.4109 0.241668 39.8583 0.24648 40.2709 0.24978 40.6425 0.251262 40.9625 0.248826 41.2073 0.241818 41.2875 0.234287 41.2911 0.22672 41.2906 41.2901 0.219125 0.0114774 28.0897 0.0232325 28.6457 0.0352324 29.2252 0.0474367 29.8253 0.0597985 30.4425 0.0722641 31.0733 0.0847747 31.714 0.0972674 32.3606 0.109676 33.0096 0.121933 33.6571 0.133968 34.2997 0.145714 34.9341 0.157101 35.5574 0.168061 36.1667 0.178525 36.7597 0.188424 37.3341 0.197685 37.8879 0.206231 38.419 0.213979 38.9252 0.220829 39.404 0.226661 39.8524 0.231317 40.2662 0.234583 40.6392 0.236166 40.9609 0.23425 41.2092 0.228023 41.2938 0.221275 41.2979 0.214495 41.2974 41.2969 0.207698 0.0107163 28.079 0.0216912 28.6347 0.0328947 29.214 0.0442897 29.8139 0.0558328 30.431 0.0674747 31.0617 0.0791611 31.7023 0.0908342 32.349 0.102433 32.998 0.113895 33.6456 0.125156 34.2884 0.136154 34.9231 0.146825 35.5467 0.157106 36.1564 0.166933 36.7499 0.176244 37.3248 0.184971 37.8792 0.193044 38.4109 0.200385 38.9178 0.206904 39.3975 0.212491 39.8469 0.217001 40.2617 0.220241 40.636 0.221937 40.9592 0.220532 41.2106 0.215119 41.2992 0.209177 41.3038 0.203197 41.3034 41.3029 0.197187 0.0100028 28.069 0.020247 28.6244 0.0307047 29.2036 0.0413419 29.8033 0.0521185 30.4202 0.0629892 31.0508 0.0739042 31.6914 0.0848099 32.338 0.0956504 32.9871 0.106368 33.6349 0.116904 34.2779 0.1272 34.9128 0.137197 35.5367 0.146839 36.1468 0.156065 36.7406 0.164817 37.316 0.173035 37.8709 0.180653 38.4033 0.187599 38.9109 0.193792 39.3913 0.199132 39.8415 0.203488 40.2573 0.206688 40.6328 0.208472 40.9574 0.207473 41.2116 0.202676 41.304 0.197357 41.3091 0.192009 41.3087 41.3083 0.186639 0.00933492 28.0597 0.0188943 28.6149 0.028653 29.1938 0.0385797 29.7934 0.0486378 30.4102 0.0587856 31.0407 0.0689772 31.6812 0.0791634 32.3279 0.0892927 32.977 0.099312 33.6249 0.109168 34.268 0.118806 34.9032 0.128173 35.5273 0.137215 36.1377 0.145879 36.732 0.15411 37.3078 0.161854 37.8632 0.169049 38.3961 0.175631 38.9043 0.181524 39.3854 0.186635 39.8364 0.190845 40.2531 0.193995 40.6296 0.195844 40.9556 0.19521 41.2122 0.191045 41.3081 0.186364 41.3138 0.181649 41.3134 41.3131 0.17691 0.00870695 28.051 0.0176232 28.606 0.0267253 29.1847 0.0359845 29.7841 0.0453673 30.4008 0.0548353 31.0312 0.0643464 31.6717 0.0738555 32.3183 0.0833153 32.9675 0.092677 33.6155 0.101891 34.2588 0.110908 34.8942 0.119679 35.5186 0.128154 36.1293 0.136284 36.7238 0.144018 37.3001 0.151305 37.8559 0.15809 38.3893 0.16431 38.8981 0.169895 39.3798 0.174758 39.8315 0.178788 40.2491 0.181836 40.6266 0.183669 40.9537 0.183257 41.2126 0.179598 41.3118 0.175448 41.318 0.171273 41.3176 41.3173 0.167076 0.00812015 28.0429 0.0164346 28.5977 0.0249223 29.1762 0.033557 29.7755 0.0423077 30.392 0.0511393 31.0224 0.0600129 31.6628 0.068887 32.3095 0.077718 32.9587 0.0864609 33.6068 0.09507 34.2502 0.103499 34.8857 0.111704 35.5103 0.119637 36.1213 0.127253 36.7162 0.134506 37.2928 0.141347 37.8491 0.147727 38.3829 0.153589 38.8922 0.158872 39.3746 0.163499 39.8269 0.167376 40.2452 0.17038 40.6236 0.172307 40.9518 0.172257 41.2127 0.169107 41.3149 0.165458 41.3216 0.161777 41.3213 41.321 0.158075 0.00756494 28.0353 0.015311 28.5899 0.0232183 29.1683 0.0312628 29.7674 0.0394158 30.3839 0.0476449 31.0141 0.0559146 31.6545 0.0641866 32.3012 0.0724208 32.9505 0.0805761 33.5986 0.0886106 34.2422 0.0964825 34.8779 0.10415 35.5027 0.111572 36.1139 0.118707 36.7091 0.125511 37.286 0.131943 37.8426 0.137955 38.3769 0.143495 38.8867 0.148504 39.3696 0.152909 39.8225 0.156617 40.2415 0.159505 40.6207 0.161371 40.9499 0.161427 41.2126 0.158687 41.3177 0.155486 41.3248 0.152264 41.3245 41.3242 0.149026 0.00704828 28.0282 0.0142651 28.5827 0.0216324 29.161 0.0291279 29.7599 0.0367254 30.3763 0.0443951 31.0065 0.0521045 31.6468 0.0598182 32.2935 0.0674996 32.9428 0.0751108 33.591 0.0826134 34.2347 0.089969 34.8705 0.0971391 35.4955 0.104086 36.107 0.11077 36.7024 0.117154 37.2796 0.123196 37.8366 0.128854 38.3712 0.134078 38.8814 0.138814 39.3648 0.142992 39.8183 0.146525 40.238 0.149295 40.6179 0.151114 40.9481 0.151307 41.2124 0.148983 41.32 0.146217 41.3276 0.143418 41.3273 41.327 0.14059 0.00656891 28.0217 0.0132942 28.576 0.0201598 29.1541 0.0271454 29.7529 0.034227 30.3692 0.0413772 30.9993 0.0485661 31.6396 0.055761 32.2863 0.0629281 32.9356 0.070032 33.5839 0.0770371 34.2277 0.0839074 34.8636 0.0906072 35.4888 0.0971005 36.1005 0.103352 36.6962 0.109324 37.2737 0.114981 37.8309 0.120282 38.3659 0.125187 38.8765 0.129646 39.3604 0.133604 39.8144 0.136988 40.2346 0.139705 40.6152 0.141591 40.9462 0.142031 41.212 0.140011 41.322 0.137554 41.33 0.135074 41.3298 41.3295 0.132577 0.00611209 28.0156 0.0123698 28.5697 0.0187581 29.1477 0.0252583 29.7464 0.0318486 30.3626 0.0385038 30.9927 0.0451966 31.6329 0.0518971 32.2796 0.0585744 32.9289 0.0651963 33.5773 0.0717301 34.2211 0.0781429 34.8572 0.084402 35.4826 0.0904744 36.0944 0.0963272 36.6903 0.101927 37.2681 0.107238 37.8256 0.112226 38.3609 0.116849 38.8719 0.121063 39.3561 0.124817 39.8106 0.128045 40.2314 0.130668 40.6126 0.132542 40.9444 0.133133 41.2114 0.131426 41.3237 0.129298 41.3322 0.127154 41.3319 41.3317 0.124997 0.00568168 28.0099 0.0114982 28.5639 0.0174359 29.1418 0.0234778 29.7404 0.0296038 30.3565 0.035791 30.9865 0.0420144 31.6267 0.0482468 32.2734 0.0544598 32.9227 0.0606242 33.5711 0.0667101 34.2151 0.0726875 34.8513 0.0785266 35.4767 0.0841972 36.0887 0.0896692 36.6848 0.0949117 37.2628 0.0998927 37.8206 0.104578 38.3563 0.10893 38.8676 0.112907 39.3522 0.116455 39.8071 0.119509 40.2283 0.12198 40.6101 0.123719 40.9426 0.124257 41.2109 0.12279 41.3252 0.120945 41.334 0.119082 41.3338 41.3335 0.117206 0.00528536 28.0046 0.0106949 28.5585 0.016216 29.1362 0.0218332 29.7348 0.0275279 30.3508 0.0332792 30.9807 0.0390638 31.6209 0.0448569 32.2676 0.0506323 32.917 0.0563633 33.5654 0.0620228 34.2094 0.0675837 34.8457 0.073019 35.4713 0.0783021 36.0834 0.0834062 36.6797 0.0883041 37.2579 0.0929674 37.816 0.0973653 38.3519 0.101463 38.8635 0.105217 39.3484 0.108572 39.8037 0.111457 40.2254 0.113771 40.6078 0.115358 40.941 0.115809 41.2104 0.114626 41.3264 0.113133 41.3355 0.111602 41.3353 41.3351 0.110043 0.00491537 27.9997 0.00994758 28.5535 0.0150846 29.1311 0.0203119 29.7296 0.0256121 30.3455 0.0309658 30.9754 0.0363515 31.6155 0.0417464 32.2622 0.0471264 32.9116 0.0524666 33.5601 0.057742 34.2041 0.0629278 34.8405 0.0679988 35.4662 0.0729292 36.0785 0.0776931 36.675 0.0822637 37.2534 0.0866127 37.8116 0.0907092 38.3478 0.0945185 38.8597 0.0980011 39.3449 0.101111 39.8006 0.103794 40.2227 0.105989 40.6056 0.107593 40.9394 0.108282 41.2097 0.107319 41.3273 0.106016 41.3368 0.104693 41.3367 41.3365 0.103348 0.00458017 27.9951 0.00926873 28.5488 0.0140551 29.1263 0.0189262 29.7247 0.0238662 30.3405 0.028857 30.9704 0.033879 31.6105 0.0389104 32.2571 0.0439286 32.9066 0.0489101 33.5551 0.0538306 34.1992 0.058666 34.8357 0.0633916 35.4615 0.0679824 36.0739 0.0724128 36.6705 0.0766567 37.2491 0.0806871 37.8076 0.0844772 38.344 0.088 38.8561 0.09123 39.3417 0.0941434 39.7977 0.0967192 40.2202 0.0989366 40.6034 0.100737 40.9376 0.101811 41.2087 0.101023 41.3281 0.0998296 41.338 0.0986208 41.3379 41.3377 0.0974022 0.00425866 27.9908 0.00861772 28.5444 0.0130673 29.1219 0.0175955 29.7202 0.0221877 30.336 0.0268275 30.9657 0.0314966 31.6058 0.0361751 32.2525 0.0408418 32.9019 0.0454749 33.5504 0.0500517 34.1946 0.0545486 34.8312 0.0589427 35.4571 0.063212 36.0696 0.0673357 36.6664 0.071294 37.2451 0.0750687 37.8038 0.0786434 38.3404 0.0820028 38.8528 0.0851317 39.3386 0.0880112 39.7948 0.0906102 40.2176 0.092871 40.6011 0.094658 40.9358 0.0955533 41.2078 0.0947961 41.3289 0.0937174 41.3391 0.0926368 41.3389 41.3388 0.0915574 0.00395267 27.9869 0.00799728 28.5404 0.0121254 29.1177 0.016326 29.716 0.0205859 30.3317 0.0248902 30.9614 0.0292222 31.6015 0.0335641 32.2481 0.0378971 32.8976 0.0422019 33.5461 0.0464602 34.1904 0.0506548 34.827 0.0547691 35.453 0.0587854 36.0656 0.0626862 36.6625 0.0664557 37.2414 0.0700793 37.8002 0.0735417 38.3369 0.0768237 38.8495 0.079897 39.3355 0.0827156 39.792 0.0852021 40.2151 0.0872392 40.5991 0.0886389 40.9344 0.0890386 41.2074 0.0883163 41.3296 0.087412 41.34 0.0864968 41.3399 41.3397 0.0855725 0.0036678 27.9832 0.00742071 28.5366 0.0112514 29.1139 0.0151505 29.7121 0.0191068 30.3277 0.0231076 30.9574 0.0271388 31.5975 0.0311854 32.2441 0.0352318 32.8935 0.0392622 33.5421 0.0432603 34.1864 0.0472102 34.823 0.0510998 35.4491 0.0549181 36.0618 0.0586517 36.6588 0.0622828 37.2377 0.065788 37.7967 0.069137 38.3336 0.072289 38.8463 0.0751874 39.3326 0.0777573 39.7894 0.0799076 40.2129 0.081522 40.5975 0.08245 40.9335 0.0824879 41.2073 0.0818331 41.3303 0.0810937 41.3407 0.0803431 41.3406 41.3404 0.0795824 0.00341693 27.9798 0.00691367 28.5331 0.010484 29.1103 0.0141205 29.7084 0.0178144 30.324 0.0215557 30.9537 0.0253333 31.5937 0.0291352 32.2403 0.0329489 32.8897 0.0367608 33.5383 0.0405553 34.1826 0.0443136 34.8193 0.0480164 35.4454 0.0516469 36.0582 0.0551883 36.6552 0.0586182 37.2343 0.0619046 37.7934 0.0650052 38.3305 0.0678685 38.8435 0.0704298 39.33 0.0726171 39.7872 0.0743609 40.2112 0.0755821 40.5962 0.0761952 40.9329 0.0761155 41.2074 0.0755774 41.3308 0.0749879 41.3413 0.0743892 41.3412 41.341 0.0737837 0.00320752 27.9766 0.00648913 28.5298 0.00983995 29.107 0.0132538 29.705 0.016723 30.3206 0.020239 30.9502 0.0237919 31.5901 0.0273707 32.2367 0.0309633 32.8861 0.0345559 33.5347 0.0381338 34.179 0.0416794 34.8157 0.0451686 35.4419 0.0485729 36.0548 0.0518639 36.6519 0.0550139 37.2312 0.0579912 37.7904 0.0607581 38.3277 0.0632717 38.841 0.065481 39.3278 0.0673287 39.7854 0.068757 40.2098 0.0697089 40.5953 0.0701398 40.9325 0.0700094 41.2075 0.0695759 41.3312 0.0691118 41.3418 0.0686384 41.3417 41.3415 0.0681523 0.0030219 27.9736 0.00611243 28.5267 0.00926673 29.1038 0.0124788 29.7018 0.0157413 30.3173 0.0190456 30.9469 0.0223817 31.5868 0.0257384 32.2333 0.029103 32.8827 0.0324611 33.5313 0.0357968 34.1757 0.0390921 34.8124 0.0423253 35.4387 0.0454685 36.0516 0.0484885 36.6489 0.0513526 37.2283 0.0540293 37.7878 0.0564852 38.3253 0.0586835 38.8388 0.0605803 39.3259 0.0621281 39.7838 0.0632818 40.2086 0.0640053 40.5946 0.0642836 40.9322 0.0641288 41.2077 0.0637839 41.3316 0.0634248 41.3421 0.0630541 41.3421 41.3419 0.0626724 0.0028407 27.9707 0.00574358 28.5238 0.00870403 29.1009 0.0117158 29.6988 0.0147713 30.3143 0.0178613 30.9438 0.0209756 31.5837 0.0241023 32.2302 0.027228 32.8796 0.0303381 33.5282 0.0334159 34.1726 0.036443 34.8094 0.0393993 35.4357 0.042261 36.0488 0.0449977 36.6462 0.0475743 37.2257 0.0499572 37.7854 0.0521151 38.3231 0.054016 38.8369 0.0556283 39.3243 0.0569237 39.7825 0.0578797 40.2077 0.0584832 40.594 0.058736 40.9319 0.058665 41.2078 0.0584082 41.3318 0.058129 41.3424 0.0578449 41.3423 41.3422 0.0575538 0.0026534 27.9681 0.00536205 28.5211 0.00812066 29.0981 0.0109227 29.696 0.0137604 30.3114 0.0166242 30.9409 0.0195034 31.5808 0.022386 32.2273 0.0252586 32.8767 0.0281065 33.5254 0.0309137 34.1698 0.0336626 34.8067 0.0363342 35.433 0.0389078 36.0462 0.0413595 36.6437 0.0436596 37.2234 0.0457759 37.7833 0.0476792 38.3212 0.0493437 38.8352 0.0507462 39.3229 0.0518671 39.7814 0.0526915 40.2068 0.0532135 40.5934 0.0534402 40.9317 0.0533977 41.2078 0.0532138 41.332 0.0530104 41.3426 0.0527988 41.3425 41.3424 0.0525748 0.00245192 27.9656 0.0049533 28.5186 0.00749874 29.0956 0.0100812 29.6934 0.0126922 30.3088 0.0153222 30.9383 0.0179604 31.5782 0.0205947 32.2247 0.0232122 32.8741 0.025799 33.5228 0.0283401 34.1672 0.0308195 34.8042 0.0332195 35.4306 0.0355215 36.0439 0.0377054 36.6415 0.0397485 37.2214 0.0416235 37.7814 0.043302 38.3195 0.0447599 38.8337 0.0459813 39.3217 0.0469558 39.7805 0.0476754 40.2061 0.0481397 40.593 0.048359 40.9315 0.0483584 41.2078 0.0482406 41.3321 0.0481086 41.3427 0.0479719 41.3427 41.3426 0.0478283 0.00223342 27.9634 0.00451221 28.5163 0.00683032 29.0932 0.00918046 29.691 0.0115542 30.3064 0.0139418 30.9359 0.0163328 31.5758 0.0187154 32.2223 0.0210772 32.8718 0.0234051 33.5205 0.0256849 34.165 0.027902 34.802 0.0300407 35.4285 0.0320843 36.0418 0.0340157 36.6396 0.0358172 37.2196 0.03747 37.7797 0.0389526 38.318 0.040244 38.8325 0.0413314 39.3206 0.0422061 39.7796 0.0428584 40.2055 0.0432878 40.5925 0.0435074 40.9313 0.0435207 41.2078 0.0434519 41.3322 0.0433722 41.3428 0.0432776 41.3428 41.3427 0.0431736 0.00201785 27.9614 0.00407493 28.5143 0.0061654 29.0912 0.00828246 29.6889 0.0104181 30.3043 0.0125634 30.9338 0.0147082 31.5736 0.0168417 32.2202 0.0189523 32.8696 0.0210279 33.5184 0.023056 34.1629 0.0250234 34.8 0.0269168 35.4266 0.0287227 36.04 0.0304275 36.6379 0.0320182 37.218 0.0334826 37.7783 0.034807 38.3167 0.0359748 38.8313 0.0369705 39.3196 0.0377786 39.7788 0.0383854 40.2049 0.038788 40.5921 0.0389949 40.9311 0.039013 41.2078 0.0390037 41.3322 0.0390001 41.3428 0.0389859 41.3428 41.3427 0.0389587 0.00180969 27.9596 0.0036531 28.5124 0.00552536 29.0893 0.00742015 29.687 0.00933011 30.3024 0.0112469 30.9318 0.0131612 31.5717 0.015063 32.2183 0.0169417 32.8678 0.0187861 33.5166 0.0205849 34.1611 0.0223267 34.7982 0.0240001 35.4249 0.0255941 36.0384 0.0270983 36.6364 0.0285024 37.2166 0.0297963 37.777 0.0309687 38.3155 0.0320062 38.8303 0.0328947 39.3187 0.0336228 39.778 0.0341845 40.2043 0.0345777 40.5917 0.0347987 40.9309 0.0348516 41.2077 0.0348263 41.3322 0.0347959 41.3429 0.0347661 41.3428 41.3427 0.0347348 0.00161888 27.9579 0.00326644 28.5108 0.00493788 29.0876 0.00662749 29.6853 0.00832854 30.3007 0.0100334 30.9301 0.0117336 31.57 0.0134201 32.2166 0.0150835 32.8661 0.016714 33.5149 0.0183022 34.1595 0.0198385 34.7967 0.0213143 35.4234 0.0227212 36.037 0.0240515 36.6351 0.0252969 37.2153 0.0264479 37.7758 0.0274932 38.3145 0.0284203 38.8293 0.0292175 39.3179 0.0298768 39.7774 0.0303938 40.2038 0.0307666 40.5914 0.030997 40.9306 0.0311057 41.2076 0.0311421 41.3322 0.0311597 41.3428 0.0311654 41.3428 41.3427 0.0311627 0.00142506 27.9565 0.00287679 28.5094 0.00435072 29.0861 0.0058411 29.6839 0.00734143 30.2992 0.00884457 30.9286 0.0103428 31.5685 0.0118282 32.2151 0.0132926 32.8646 0.0147278 33.5135 0.0161262 34.1581 0.0174802 34.7954 0.0187825 35.4221 0.0200258 36.0358 0.0212024 36.6339 0.0223031 37.2142 0.0233169 37.7748 0.0242302 38.3136 0.0250286 38.8285 0.0257114 39.3172 0.026288 39.7768 0.0267567 40.2033 0.0271074 40.591 0.0273287 40.9304 0.0274187 41.2075 0.0274406 41.3322 0.0274544 41.3428 0.0274579 41.3428 41.3427 0.0274527 0.0012476 27.9553 0.0025196 28.5081 0.00381127 29.0848 0.00511816 29.6825 0.0064351 30.2979 0.00775628 30.9273 0.00907537 31.5672 0.0103856 32.2138 0.01168 32.8633 0.0129512 33.5122 0.0141921 34.1569 0.015395 34.7942 0.0165521 35.421 0.0176553 36.0347 0.018696 36.6329 0.0196651 37.2133 0.020554 37.7739 0.0213542 38.3128 0.02206 38.8278 0.0226782 39.3166 0.0232111 39.7763 0.0236435 40.2029 0.023959 40.5907 0.0241469 40.9302 0.0242209 41.2074 0.0242739 41.3321 0.024323 41.3428 0.024357 41.3428 41.3427 0.0243753 0.00108435 27.9542 0.00218715 28.507 0.00330724 29.0837 0.00444054 29.6814 0.00558221 30.2967 0.00672682 30.9262 0.0078684 31.5661 0.00900052 32.2127 0.0101164 32.8622 0.011209 33.5111 0.012271 34.1558 0.0132952 34.7931 0.0142744 35.42 0.0152017 36.0338 0.0160708 36.632 0.0168767 37.2125 0.0176156 37.7732 0.0182857 38.3121 0.0188873 38.8272 0.0194183 39.3161 0.0198738 39.7758 0.0202447 40.2025 0.0205184 40.5904 0.0206915 40.93 0.0207835 41.2073 0.0207952 41.3321 0.0207966 41.3428 0.0208046 41.3428 41.3427 0.0208115 0.00092074 27.9533 0.0018648 28.506 0.00282628 29.0828 0.00380285 29.6804 0.00479155 30.2957 0.00578833 30.9252 0.00678824 31.5651 0.00778543 32.2117 0.00877342 32.8612 0.00974511 33.5102 0.0106931 34.1549 0.0116098 34.7922 0.012488 35.4191 0.0133209 36.0329 0.0141027 36.6312 0.0148285 37.2117 0.0154941 37.7725 0.0160956 38.3115 0.016629 38.8267 0.0170872 39.3156 0.0174758 39.7754 0.017803 40.2022 0.0180639 40.5902 0.0182601 40.9298 0.0183972 41.2072 0.018388 41.3321 0.0183448 41.3428 0.0182959 41.3428 41.3428 0.0182513 0.000796986 27.9525 0.00159731 28.5052 0.00240416 29.082 0.00321452 29.6796 0.00402504 30.2949 0.00483241 30.9244 0.00563344 31.5643 0.00642459 32.2109 0.00720216 32.8605 0.00796209 33.5094 0.00870062 34.1542 0.00941418 34.7915 0.0100988 35.4184 0.0107497 36.0323 0.0113626 36.6306 0.0119331 37.2112 0.0124577 37.772 0.0129341 38.311 0.0133634 38.8263 0.0137451 39.3153 0.0140779 39.7751 0.0143652 40.2019 0.0146117 40.5899 0.0148182 40.9296 0.0149547 41.2071 0.014968 41.3321 0.0149547 41.3428 0.0149304 41.3428 41.3428 0.0148957 0.000472105 27.952 0.00104547 28.5047 0.00168917 29.0813 0.00238553 29.6789 0.0031193 30.2942 0.00387701 30.9236 0.0046471 31.5635 0.00541924 32.2101 0.00618445 32.8597 0.00693425 33.5086 0.00766096 34.1534 0.00835706 34.7908 0.00901684 35.4178 0.0096354 36.0317 0.0102092 36.63 0.0107354 37.2106 0.0112141 37.7715 0.0116479 38.3106 0.0120413 38.8259 0.0123913 39.3149 0.0126861 39.7748 0.0129185 40.2017 0.0130879 40.5898 0.0131863 40.9295 0.0131861 41.2071 0.0131037 41.3322 0.0130246 41.3429 0.0129482 41.3429 41.3429 0.012872 0.000184992 0.000442254 0.000776626 0.00117351 0.00162031 0.0021054 0.00261825 0.00314906 0.00368935 0.00423054 0.00476422 0.00528185 0.00577631 0.00624287 0.00667821 0.00707915 0.00744648 0.00778119 0.00808637 0.00835864 0.00858962 0.00877462 0.00891412 0.00900323 0.00900989 0.00896674 0.00889008 0.00879971 0.00869289 2.13664 -2.3574 1.78607 0.0259491 2.63468 5.39034 4.81723 14.5708 7.6681 26.9138 10.0782 39.1506 11.5808 48.2575 12.3483 53.9347 12.6729 57.3744 12.7627 59.6266 12.7319 61.2938 12.6339 62.6599 12.4938 63.8501 12.3257 64.9237 12.1366 65.9053 11.9274 66.7772 11.6199 67.4472 11.6117 67.8964 11.4586 68.4332 11.1742 68.6455 10.8628 68.706 10.5545 68.7762 10.2572 68.8391 9.96475 68.8963 9.68612 68.9654 9.40545 69.0321 9.13668 69.1359 8.87267 69.171 8.60553 69.2113 8.34884 69.3138 8.06217 69.4092 8.10464 69.6846 6.92598 68.1217 7.70004 70.1323 6.51289 68.1397 7.24718 70.0268 6.14122 68.186 6.83041 69.9231 5.78426 68.161 6.43862 69.815 5.44936 68.0961 6.0743 69.7063 5.13214 68.0267 5.7288 69.5432 4.83616 67.915 5.40566 69.3652 4.55526 67.7761 5.10116 69.1076 4.28824 67.7847 4.80492 68.8655 4.04461 67.6669 4.52318 68.6564 3.81443 67.522 4.2683 68.439 3.59314 67.3446 4.01882 68.2267 3.38519 67.1988 3.78724 68.0129 3.19427 67.0444 3.56514 67.7937 3.00746 66.8773 3.35747 67.5799 2.83526 66.7113 3.16244 67.3682 2.66909 66.5405 2.97629 67.1564 2.51273 66.3716 2.79651 66.9408 2.3597 66.2012 2.62357 66.7357 2.21715 66.0602 2.47344 66.538 2.07816 65.8848 2.31964 66.3517 1.94111 65.733 2.18676 66.1882 1.82867 65.598 2.05856 66.0189 1.71058 65.4385 1.93495 65.8329 1.61606 65.2531 1.74926 65.6978 1.71933 65.381 1.45395 65.0389 1.61625 65.4898 1.37376 64.8525 1.5028 65.3183 1.27446 64.6806 1.39854 65.1807 1.18486 64.5722 1.30015 65.0363 1.09771 64.454 1.20428 64.893 1.01698 64.3339 1.11574 64.7139 0.946147 64.3485 0.920162 64.4592 0.969736 64.5318 0.834223 64.1636 0.887468 64.413 0.750281 63.9963 0.810577 64.3299 0.681009 63.914 0.738148 64.1904 0.610629 63.9194 0.594404 64.0163 0.614147 64.0569 0.505031 63.7456 0.556398 64.0347 0.458831 63.676 0.478952 63.9107 0.392244 63.609 0.410453 63.8319 0.329875 63.5504 0.343907 63.7609 0.270372 63.5039 0.280705 63.6851 0.212169 63.4396 0.219572 63.6009 0.144737 63.4559 0.150565 63.5439 0.0994032 63.3673 0.0957232 62.976 0.0866228 62.3892 0.0795067 61.6944 0.0727273 60.9212 0.0662011 60.0851 0.0599343 59.1967 0.0539259 58.2644 0.0481462 57.2956 0.0425753 56.2973 0.0371635 55.2764 0.0318697 54.2402 0.0266353 53.1963 0.0214186 52.1524 0.0162759 51.1163 0.011196 50.0965 0.00555069 49.0976 48.1313 2.85561 -1.12621 2.27719 0.60437 2.67202 4.99551 4.40326 12.8395 7.13778 24.1793 9.7489 36.5395 11.5028 46.5035 12.4484 52.9891 12.8784 56.9444 13.0268 59.4782 13.0281 61.2925 12.9484 62.7396 12.8186 63.9798 12.6552 65.0871 12.4657 66.0948 12.242 67.0009 11.9484 67.7408 11.5715 68.2733 11.3128 68.6919 11.0332 68.925 10.7272 69.012 10.4247 69.0787 10.1381 69.1257 9.85221 69.1821 9.57602 69.2416 9.29651 69.3116 9.03795 69.3945 8.78059 69.4284 8.50958 69.4823 8.24993 69.5734 8.04401 69.6152 8.14825 69.5803 7.3365 68.9335 7.69005 69.7787 6.8987 68.931 7.23069 69.6949 6.50071 68.916 6.81593 69.6079 6.12021 68.8567 6.42626 69.509 5.76069 68.7616 6.06161 69.4054 5.42375 68.6645 5.71645 69.2505 5.10894 68.5226 5.39432 69.0799 4.80972 68.3607 5.0825 68.8348 4.53129 68.3359 4.788 68.6088 4.27166 68.1833 4.50812 68.4199 4.03168 67.9984 4.25672 68.2139 3.79164 67.8096 4.00764 68.0107 3.57249 67.634 3.77423 67.8111 3.36892 67.4497 3.55459 67.608 3.1725 67.2594 3.34707 67.4054 2.98848 67.0699 3.15309 67.2036 2.81243 66.8811 2.96716 67.0016 2.64635 66.6924 2.78852 66.7987 2.48491 66.5048 2.61435 66.6063 2.33824 66.3363 2.46211 66.4141 2.18991 66.157 2.30897 66.2326 2.05024 65.9917 2.17195 66.0664 1.93032 65.8396 2.04326 65.906 1.80785 65.6739 1.91792 65.7228 1.68834 65.4827 1.7554 65.6308 1.72808 65.4083 1.51572 65.2512 1.62459 65.3809 1.43007 65.047 1.51451 65.2339 1.32248 64.8727 1.40832 65.0949 1.22917 64.7514 1.30919 64.9563 1.13834 64.6249 1.21368 64.8176 1.05419 64.4934 1.11365 64.6545 0.976882 64.4853 0.946361 64.4897 0.979206 64.499 0.864512 64.2783 0.899169 64.3783 0.773866 64.1216 0.819842 64.2839 0.703975 64.0299 0.737377 64.157 0.629237 64.0276 0.608468 64.0371 0.622858 64.0425 0.518942 63.8495 0.56306 63.9906 0.469691 63.7694 0.486833 63.8936 0.400682 63.6952 0.416891 63.8157 0.33616 63.6312 0.349502 63.7475 0.275487 63.5779 0.285302 63.6753 0.214966 63.51 0.218134 63.5977 0.147167 63.5269 0.143739 63.5473 0.10603 63.405 0.0949382 62.9871 0.0867603 62.3974 0.0793838 61.7018 0.0724476 60.9282 0.0658666 60.0917 0.0595904 59.2029 0.0535882 58.2704 0.047829 57.3014 0.0422759 56.3028 0.0368864 55.2818 0.0316139 54.2455 0.0264096 53.2015 0.0212345 52.1576 0.0160706 51.1215 0.0111237 50.1014 0.00534867 49.1033 48.1367 3.42768 -0.0808097 2.75758 1.27447 2.84011 4.91298 4.12679 11.5529 6.62301 21.6831 9.3498 33.8127 11.3562 44.4971 12.5038 51.8415 13.0598 56.3885 13.2786 59.2594 13.318 61.253 13.2594 62.7983 13.1416 64.0976 12.984 65.2446 12.7954 66.2835 12.5691 67.2272 12.2808 68.0291 11.9227 68.6314 11.6238 68.9909 11.346 69.2028 11.0494 69.3087 10.7446 69.3836 10.4438 69.4265 10.1471 69.4789 9.85968 69.529 9.57593 69.5953 9.30351 69.6669 9.03301 69.6989 8.7582 69.7571 8.50399 69.8276 8.33607 69.7831 8.32823 69.5882 7.64189 69.6198 7.82407 69.5966 7.17133 69.5838 7.35686 69.5093 6.7551 69.5178 6.93344 69.4296 6.35622 69.4339 6.53546 69.3298 5.98179 69.3153 6.16041 69.2268 5.63154 69.1934 5.80816 69.0739 5.30289 69.0278 5.47757 68.9052 4.99177 68.8465 5.1031 68.7235 4.74736 68.6917 4.7977 68.5585 4.48101 68.4999 4.52624 68.3747 4.21929 68.3054 4.26352 68.1697 3.9742 68.099 4.01385 67.971 3.74337 67.9045 3.78201 67.7725 3.52545 67.7062 3.5645 67.5689 3.31635 67.5075 3.35647 67.3653 3.12163 67.3048 3.16173 67.1635 2.93597 67.1069 2.97616 66.9615 2.7599 66.9086 2.79731 66.7613 2.59026 66.7118 2.6267 66.5698 2.43423 66.5288 2.4687 66.3796 2.2825 66.3432 2.3163 66.1988 2.13733 66.1707 2.17759 66.0262 2.01059 66.0066 2.05662 65.86 1.87575 65.8548 1.93214 65.6664 1.74297 65.6718 1.78745 65.5863 1.73163 65.4642 1.58442 65.3984 1.64162 65.3237 1.47655 65.2121 1.53501 65.1754 1.36321 65.0445 1.42559 65.0325 1.26668 64.9103 1.32489 64.8981 1.17304 64.7767 1.22807 64.7626 1.08497 64.6365 1.11687 64.6226 1.00964 64.5925 0.965627 64.5337 0.993669 64.4709 0.89106 64.3809 0.913253 64.3562 0.79587 64.239 0.830134 64.2497 0.723504 64.1365 0.735997 64.1445 0.652674 64.1109 0.619661 64.0701 0.632777 64.0294 0.534895 63.9474 0.567385 63.9581 0.480521 63.8562 0.491894 63.8822 0.410127 63.777 0.421303 63.8045 0.343664 63.7088 0.352733 63.7384 0.281496 63.6492 0.287628 63.6691 0.217959 63.5796 0.210429 63.6052 0.153564 63.5837 0.138531 63.5623 0.110863 63.4327 0.0964582 63.0015 0.0872144 62.4067 0.0794203 61.7096 0.0722934 60.9353 0.0656364 60.0983 0.0593393 59.2092 0.053343 58.2764 0.0476029 57.3071 0.0420759 56.3084 0.0367166 55.2871 0.0314777 54.2507 0.0263127 53.2066 0.0211836 52.1627 0.0160529 51.1266 0.0110486 50.1065 0.00548089 49.1089 48.1422 3.92782 0.810857 3.22766 1.97463 3.10037 5.04027 3.99766 10.6556 6.15942 19.5213 8.88976 31.0823 11.1408 42.246 12.512 50.4704 13.2132 55.6872 13.5153 58.9573 13.6002 61.1682 13.5663 62.8322 13.4624 64.2015 13.3121 65.3949 13.1266 66.469 12.9033 67.4505 12.6268 68.3056 12.2931 68.9652 11.9495 69.3345 11.6494 69.5028 11.356 69.6021 11.0522 69.6874 10.7427 69.7359 10.4385 69.783 10.1431 69.8244 9.85528 69.8832 9.57263 69.9495 9.29729 69.9742 9.04022 70.0141 8.80912 70.0587 8.63023 69.962 8.45708 69.7613 7.97598 70.1009 7.92462 69.6479 7.48433 70.0241 7.44641 69.5473 7.04402 69.9201 7.01387 69.4597 6.6304 69.8174 6.60604 69.3541 6.23794 69.6834 6.22414 69.2406 5.8727 69.5448 5.86301 69.0836 5.53242 69.3584 5.52598 68.9116 5.20058 69.1719 5.14785 68.7762 4.945 68.8945 4.84479 68.6587 4.66601 68.6787 4.57033 68.4703 4.39226 68.4834 4.30219 68.2598 4.13752 68.2636 4.04989 68.0587 3.89604 68.0583 3.81482 67.8537 3.66863 67.8524 3.59288 67.6447 3.45161 67.6488 3.38259 67.4343 3.24784 67.4395 3.18474 67.2266 3.05506 67.2366 2.99652 67.02 2.8716 67.0336 2.81492 66.8179 2.69667 66.8301 2.6436 66.6229 2.53259 66.6398 2.48202 66.4302 2.37611 66.4491 2.32798 66.247 2.22796 66.2707 2.18764 66.0665 2.09254 66.1017 2.06349 65.889 1.95447 65.9638 1.93035 65.6905 1.81359 65.7886 1.81208 65.5878 1.7434 65.5328 1.65367 65.4882 1.65016 65.3272 1.53104 65.3312 1.54231 65.1641 1.41483 65.172 1.43104 65.0163 1.3138 65.0275 1.32901 64.8829 1.21712 64.8886 1.23106 64.7487 1.12166 64.7459 1.11922 64.625 1.04206 64.6697 0.997106 64.5786 1.00015 64.4679 0.921414 64.4597 0.918601 64.359 0.824589 64.333 0.832198 64.2421 0.746348 64.2224 0.734742 64.1561 0.677423 64.1682 0.6376 64.1099 0.636346 64.0307 0.5566 64.0271 0.566641 63.948 0.494381 63.9285 0.492088 63.8845 0.423248 63.8458 0.420914 63.8068 0.35446 63.7752 0.351585 63.7413 0.289889 63.7109 0.284837 63.6742 0.221715 63.6428 0.203893 63.6231 0.16164 63.626 0.135593 63.5884 0.112833 63.4555 0.0978982 63.0164 0.0876693 62.4169 0.0793741 61.7179 0.0720323 60.9426 0.0652873 60.1051 0.0589645 59.2156 0.0529753 58.2824 0.0472604 57.3128 0.0417688 56.3138 0.0364513 55.2924 0.0312593 54.2559 0.0261461 53.2118 0.0210724 52.1678 0.0159861 51.1317 0.0109724 50.1115 0.0055348 49.1143 48.1477 4.38335 1.58421 3.68989 2.66809 3.42464 5.30552 4.00239 10.0778 5.77981 17.7439 8.40144 28.4607 10.8522 39.7952 12.4645 48.8582 13.3333 54.8184 13.7342 58.5564 13.8732 61.0291 13.8687 62.8366 13.7811 64.2892 13.6398 65.5361 13.4595 66.6494 13.2429 67.6671 12.9794 68.5691 12.6652 69.2794 12.3078 69.6918 11.9698 69.8408 11.6638 69.908 11.3567 69.9945 11.0417 70.0509 10.7306 70.0941 10.4278 70.1273 10.1352 70.1757 9.84622 70.2385 9.56743 70.253 9.31321 70.2684 9.08163 70.2903 8.84266 70.201 8.54574 70.0582 8.32694 70.3197 8.01295 69.9619 7.82411 70.2129 7.51923 69.8521 7.35619 70.0832 7.07473 69.7412 6.92433 69.9678 6.65639 69.622 6.51758 69.8222 6.26532 69.4929 6.13654 69.6736 5.89862 69.3215 5.78211 69.4749 5.55152 69.1422 5.42721 69.2962 5.22319 68.9802 5.10132 69.0164 4.9368 68.8232 4.80842 68.8071 4.65068 68.6281 4.52749 68.6066 4.37648 68.4108 4.26088 68.3792 4.12064 68.1989 4.01148 68.1675 3.88011 67.9851 3.77692 67.9556 3.65061 67.771 3.55509 67.7443 3.43515 67.5542 3.34563 67.529 3.23181 67.3404 3.14752 67.3209 3.03823 67.1293 2.95836 67.1134 2.85465 66.9216 2.77874 66.906 2.68084 66.7208 2.60997 66.7107 2.51493 66.5252 2.44855 66.5155 2.35786 66.3376 2.30092 66.3276 2.2132 66.1542 2.15576 66.1591 2.07367 65.9711 2.02763 66.0098 1.93157 65.7866 1.89067 65.8295 1.83339 65.6451 1.76909 65.5971 1.71167 65.5456 1.6611 65.3778 1.58369 65.4086 1.54697 65.2008 1.46805 65.2509 1.43452 65.0498 1.3623 65.0998 1.33195 64.9132 1.26204 64.9585 1.23271 64.778 1.15742 64.8212 1.11253 64.6699 1.07673 64.7055 1.03817 64.6172 1.00065 64.5054 0.94939 64.5109 0.921717 64.3866 0.854364 64.4004 0.833122 64.2633 0.767609 64.2879 0.731676 64.1921 0.698453 64.2014 0.661597 64.1468 0.634573 64.0577 0.58418 64.0775 0.564689 63.9675 0.508083 63.9851 0.491212 63.9014 0.436638 63.9004 0.419286 63.8242 0.36574 63.8288 0.349108 63.758 0.298237 63.7617 0.280402 63.692 0.225856 63.6973 0.201151 63.6478 0.166441 63.6607 0.135592 63.6192 0.113202 63.4778 0.0985582 63.0311 0.0878785 62.4276 0.0791833 61.7266 0.0716424 60.9502 0.0648086 60.1119 0.0584595 59.2219 0.0524806 58.2884 0.0467974 57.3185 0.0413508 56.3193 0.036087 55.2977 0.030955 54.261 0.0259062 53.2168 0.0208984 52.1728 0.0158726 51.1367 0.01087 50.1165 0.00553707 49.1197 48.1532 4.81832 2.26781 4.15025 3.33616 3.7964 5.65938 4.11963 9.75457 5.50987 16.3537 7.92599 26.0446 10.493 37.2282 12.354 46.9972 13.4141 53.7583 13.9316 58.0389 14.1354 60.8254 14.166 62.806 14.0976 64.3576 13.9672 65.6665 13.7936 66.823 13.5846 67.8761 13.3333 68.8204 13.0336 69.5791 12.6848 70.0407 12.3188 70.2068 11.9847 70.2422 11.665 70.3142 11.3431 70.3728 11.0247 70.4125 10.7144 70.4376 10.4141 70.476 10.1214 70.5312 9.83764 70.5368 9.57321 70.5328 9.32049 70.543 9.03731 70.4841 8.74058 70.355 8.56944 70.4909 8.20269 70.3287 8.04052 70.3751 7.70135 70.1913 7.55749 70.227 7.24304 70.0556 7.1138 70.097 6.81058 69.9253 6.69275 69.9401 6.4084 69.7772 6.30069 69.7813 6.0295 69.5927 5.9341 69.5703 5.6699 69.4064 5.57374 69.3924 5.33901 69.2149 5.23164 69.1237 5.04002 69.0149 4.93032 68.9168 4.74671 68.8117 4.64233 68.711 4.46784 68.5853 4.36689 68.4802 4.20489 68.3609 4.11027 68.2621 3.95728 68.1381 3.86917 68.0437 3.72328 67.9169 3.64113 67.8265 3.50248 67.6929 3.42533 67.6062 3.29381 67.472 3.22183 67.3928 3.09593 67.2552 3.02825 67.1811 2.90891 67.041 2.84429 66.9706 2.73015 66.835 2.67059 66.7702 2.56179 66.634 2.50575 66.5716 2.40263 66.4408 2.35234 66.3779 2.25169 66.2549 2.20919 66.2016 2.10834 66.072 2.07106 66.0471 1.96727 65.8904 1.93673 65.86 1.85737 65.7244 1.80069 65.6538 1.75439 65.5919 1.67034 65.4618 1.63617 65.4428 1.55264 65.2844 1.51975 65.2838 1.43834 65.1312 1.40992 65.1282 1.33498 64.9882 1.30535 64.9882 1.23191 64.8514 1.19486 64.8583 1.12734 64.7374 1.09946 64.7333 1.0616 64.6551 1.006 64.561 0.973625 64.5433 0.920291 64.44 0.886516 64.4342 0.830466 64.3193 0.786983 64.3314 0.739389 64.2397 0.711915 64.2289 0.678486 64.1802 0.631597 64.1046 0.607982 64.1011 0.558477 64.017 0.521174 64.0224 0.490213 63.9324 0.451535 63.9391 0.41611 63.8596 0.377843 63.8671 0.34579 63.79 0.306539 63.801 0.275378 63.7232 0.230481 63.7422 0.196873 63.6814 0.167679 63.6899 0.13605 63.6509 0.113051 63.5008 0.0986533 63.0455 0.0877605 62.4385 0.0788031 61.7355 0.071102 60.9579 0.0641882 60.1188 0.0578169 59.2283 0.0518531 58.2943 0.0462092 57.3242 0.0408177 56.3247 0.0356197 55.3029 0.0305607 54.2661 0.0255895 53.2218 0.0206593 52.1777 0.0157077 51.1417 0.0107361 50.1214 0.00549858 49.1249 48.1587 5.25095 2.87956 4.61609 3.97102 4.20617 6.0693 4.33037 9.63037 5.36638 15.3177 7.49978 23.9112 10.0761 34.6519 12.1756 44.8977 13.45 52.484 14.1037 57.3852 14.3847 60.5443 14.4572 62.7335 14.4116 64.4032 14.294 65.7841 14.1282 66.9888 13.9265 68.0778 13.686 69.0608 13.3975 69.8676 13.0615 70.3767 12.6868 70.5814 12.3236 70.6054 11.9836 70.6542 11.6501 70.7062 11.3218 70.7409 11.0024 70.757 10.6955 70.7829 10.3957 70.831 10.102 70.8305 9.82384 70.8109 9.54939 70.8175 9.24841 70.7851 8.95282 70.6506 8.76494 70.6788 8.43084 70.6628 8.22885 70.5771 7.91233 70.5078 7.73211 70.4073 7.43805 70.3497 7.27254 70.2625 6.99187 70.2059 6.84053 70.0914 6.57549 70.0423 6.43753 69.9193 6.1861 69.8441 6.05804 69.6984 5.81446 69.65 5.69559 69.5113 5.47586 69.4347 5.34494 69.2547 5.16178 69.198 5.03344 69.0451 4.8586 68.9865 4.7393 68.8303 4.57244 68.7521 4.45738 68.5952 4.30166 68.5166 4.19438 68.3694 4.04749 68.285 3.94682 68.1444 3.80729 68.0564 3.71319 67.9206 3.58035 67.8257 3.49268 67.6938 3.36598 67.5987 3.28375 67.4751 3.16293 67.376 3.08629 67.2578 2.97126 67.156 2.89874 67.0431 2.78855 66.9451 2.72085 66.8379 2.61636 66.7385 2.55277 66.6352 2.45438 66.5392 2.39493 66.4374 2.29921 66.3506 2.24743 66.2534 2.15115 66.1683 2.10568 66.0926 2.01043 65.9856 1.97255 65.8979 1.89257 65.8044 1.83464 65.7117 1.78602 65.6405 1.70107 65.5468 1.6658 65.478 1.58138 65.3688 1.54619 65.319 1.46466 65.2127 1.43432 65.1585 1.35916 65.0633 1.3267 65.0206 1.2517 64.9264 1.21743 64.8925 1.14905 64.8058 1.1193 64.7631 1.08021 64.6942 1.02268 64.6185 0.990201 64.5758 0.932403 64.4978 0.901142 64.4654 0.839253 64.3812 0.805886 64.3647 0.752757 64.2928 0.723181 64.2585 0.68894 64.2144 0.64078 64.1527 0.617363 64.1245 0.565013 64.0694 0.53585 64.0515 0.488778 63.9794 0.461117 63.9667 0.415182 63.9055 0.387218 63.895 0.342505 63.8347 0.314737 63.8288 0.268906 63.769 0.237385 63.7737 0.197141 63.7216 0.16805 63.719 0.135731 63.6832 0.112708 63.5239 0.0984034 63.0598 0.0873474 62.4495 0.078218 61.7446 0.0703933 60.9657 0.0634139 60.1258 0.0570279 59.2347 0.0510865 58.3003 0.0454906 57.3298 0.0401649 56.33 0.0350451 55.308 0.0300726 54.2711 0.0251924 53.2267 0.0203522 52.1825 0.0154877 51.1466 0.0105687 50.1264 0.00542606 49.1301 48.1642 5.69156 3.43206 5.09263 4.56994 4.64861 6.51332 4.61961 9.65937 5.34987 14.5874 7.14951 22.1116 9.6335 32.1679 11.9279 42.6032 13.4335 50.9784 14.2452 56.5734 14.6183 60.1712 14.7411 62.6108 14.7225 64.4218 14.6199 65.8867 14.4628 67.1458 14.2677 68.2729 14.0364 69.2921 13.7574 70.1466 13.4302 70.7038 13.0588 70.9529 12.675 70.9892 12.3132 71.016 11.9639 71.0556 11.6235 71.0813 11.2936 71.0869 10.9762 71.1003 10.6681 71.1391 10.3639 71.1347 10.0677 71.1072 9.7738 71.1113 9.46728 71.0916 9.17282 70.945 8.94741 70.9042 8.66401 70.9462 8.41412 70.8269 8.13399 70.788 7.9015 70.6398 7.63594 70.6152 7.4278 70.4707 7.17544 70.4583 6.98136 70.2855 6.74727 70.2764 6.56782 70.0987 6.3447 70.0672 6.17103 69.8721 5.96449 69.8565 5.81083 69.6649 5.62337 69.6221 5.45721 69.4208 5.28441 69.3708 5.133 69.1965 4.97135 69.1482 4.83181 68.9698 4.67791 68.906 4.54412 68.729 4.39899 68.6617 4.27513 68.4933 4.13713 68.4229 4.02194 68.2596 3.89078 68.1876 3.78277 68.0286 3.65805 67.9504 3.55673 67.7952 3.43781 67.7176 3.34331 67.5696 3.23 67.4893 3.14149 67.3463 3.03324 67.2643 2.95051 67.1259 2.84708 67.0486 2.76895 66.9161 2.6709 66.8366 2.59771 66.7083 2.50592 66.6309 2.4354 66.5079 2.34611 66.4399 2.28166 66.3179 2.19471 66.2552 2.13836 66.1489 2.05563 66.0684 2.00469 65.9489 1.92693 65.8822 1.86672 65.7719 1.81388 65.6933 1.73443 65.6262 1.68875 65.5237 1.61166 65.4459 1.56782 65.3628 1.49438 65.2862 1.45463 65.1983 1.38601 65.1319 1.34401 65.0626 1.27504 64.9954 1.23483 64.9327 1.1727 64.8679 1.13796 64.7978 1.09595 64.7362 1.0402 64.6743 1.00065 64.6153 0.94707 64.5513 0.911632 64.5009 0.852796 64.4401 0.817996 64.3995 0.767599 64.3432 0.733653 64.2924 0.697158 64.2509 0.651308 64.1986 0.622187 64.1537 0.573618 64.1179 0.542853 64.0823 0.494626 64.0277 0.465218 63.9961 0.419601 63.9512 0.390147 63.9245 0.345207 63.8797 0.316146 63.8578 0.269569 63.8156 0.239936 63.8034 0.198597 63.763 0.168006 63.7496 0.134829 63.7164 0.112187 63.5465 0.0978867 63.0741 0.0866832 62.4607 0.0774257 61.7539 0.0695037 60.9736 0.062474 60.1328 0.0560835 59.2411 0.0501736 58.3062 0.0446358 57.3353 0.0393875 56.3353 0.0343588 55.3131 0.0294865 54.2759 0.0247112 53.2314 0.0199745 52.1873 0.0152104 51.1513 0.0103657 50.1312 0.0053253 49.1351 48.1695 6.14645 3.93451 5.58337 5.13303 5.12087 6.97582 4.97607 9.80416 5.45147 14.112 6.89972 20.6633 9.20572 29.8619 11.6134 40.1956 13.3563 49.2355 14.3498 55.5799 14.8327 59.6883 15.0159 62.4276 15.0296 64.4081 14.9445 65.9718 14.7972 67.2931 14.6083 68.4619 14.3843 69.5161 14.1141 70.4168 13.7909 71.027 13.4251 71.3187 13.0322 71.3821 12.6505 71.3977 12.2845 71.4216 11.9295 71.4362 11.5866 71.4299 11.2582 71.4287 10.938 71.4592 10.6199 71.4529 10.3093 71.4177 10.004 71.4167 9.69312 71.4025 9.39305 71.2451 9.12565 71.1716 8.8699 71.2019 8.60072 71.0961 8.33658 71.0521 8.07506 70.9013 7.82946 70.8608 7.58431 70.7158 7.35566 70.6869 7.12679 70.5143 6.91342 70.4897 6.69814 70.314 6.49787 70.2675 6.29337 70.0766 6.11024 70.0397 5.92853 69.8466 5.75181 69.7989 5.57182 69.6008 5.40345 69.5392 5.23637 69.3636 5.08065 69.3039 4.92599 69.1245 4.77859 69.0534 4.63157 68.8761 4.49288 68.8004 4.35543 68.6307 4.22489 68.5535 4.09567 68.3888 3.97187 68.3114 3.85133 68.1491 3.73345 68.0683 3.62003 67.9086 3.50803 67.8296 3.4015 67.6761 3.29517 67.5956 3.19455 67.4469 3.0935 67.3653 2.9999 67.2195 2.90469 67.1438 2.81583 67.0049 2.72529 66.9271 2.642 66.7916 2.55558 66.7174 2.47464 66.5888 2.39169 66.5228 2.31492 66.3946 2.23749 66.3326 2.16925 66.2172 2.1002 66.1374 2.03599 66.0131 1.96074 65.9574 1.89679 65.8359 1.83869 65.7514 1.76872 65.6962 1.70786 65.5846 1.64067 65.5131 1.58835 65.4151 1.5275 65.347 1.47383 65.2519 1.41188 65.1939 1.35921 65.1153 1.29844 65.0562 1.25088 64.9803 1.19625 64.9226 1.15547 64.8386 1.10998 64.7817 1.05722 64.727 1.01216 64.6604 0.961757 64.6017 0.920696 64.5419 0.867259 64.4935 0.828507 64.4383 0.782407 64.3893 0.743683 64.3312 0.704703 64.2899 0.661227 64.2421 0.623569 64.1913 0.581441 64.1601 0.547628 64.1161 0.503459 64.0718 0.468113 64.0315 0.424626 63.9946 0.391678 63.9574 0.348551 63.9228 0.315897 63.8905 0.27159 63.8599 0.240563 63.8344 0.200333 63.8032 0.167748 63.7822 0.133722 63.7504 0.111468 63.5688 0.0971152 63.0884 0.0857845 62.472 0.0764221 61.7633 0.068422 60.9816 0.0613575 60.1399 0.0549744 59.2474 0.0491068 58.3121 0.0436386 57.3408 0.0384802 56.3404 0.0335562 55.318 0.0287983 54.2807 0.0241422 53.2361 0.0195236 52.1919 0.0148743 51.156 0.0101257 50.136 0.00520065 49.14 48.1747 6.6193 4.3936 6.09097 5.66136 5.62138 7.44541 5.39071 10.0348 5.65783 13.8449 6.76941 19.5517 8.82734 27.8039 11.2461 37.7768 13.2135 47.2681 14.4111 54.3823 15.0236 59.0759 15.2794 62.1718 15.332 64.3555 15.2674 66.0364 15.1312 67.4293 14.9484 68.6446 14.7302 69.7343 14.4679 70.6791 14.1471 71.3478 13.7827 71.6831 13.3878 71.7769 12.9916 71.7939 12.6092 71.804 12.2394 71.806 11.8821 71.7872 11.539 71.7717 11.2062 71.7921 10.8753 71.7838 10.5506 71.7423 10.2356 71.7318 9.92223 71.7158 9.61668 71.5506 9.32909 71.4592 9.06512 71.4659 8.78981 71.3714 8.52615 71.3157 8.25555 71.1719 8.00641 71.11 7.75334 70.9689 7.52036 70.9199 7.28066 70.754 7.06511 70.7053 6.84142 70.5377 6.63734 70.4716 6.4289 70.285 6.24373 70.2248 6.05069 70.0397 5.87236 69.9772 5.68829 69.7849 5.51489 69.7126 5.34417 69.5343 5.18415 69.4639 5.0238 69.2849 4.87341 69.2038 4.72173 69.0277 4.58086 68.9413 4.43874 68.7728 4.30596 68.6863 4.17205 68.5227 4.04737 68.436 3.92128 68.2752 3.80393 68.1856 3.68418 68.0283 3.57373 67.94 3.46071 67.7891 3.35654 67.6998 3.24945 67.554 3.15104 67.4637 3.05014 67.3204 2.95804 67.2359 2.86244 67.1005 2.77498 67.0146 2.68507 66.8815 2.60098 66.8015 2.5133 66.6765 2.43394 66.6022 2.35283 66.4758 2.27995 66.4055 2.20438 66.2928 2.13929 66.2025 2.06709 66.0853 1.99424 66.0303 1.92576 65.9044 1.86144 65.8158 1.79759 65.7601 1.73138 65.6508 1.67029 65.5742 1.61036 65.475 1.55317 65.4042 1.49196 65.3132 1.43459 65.2513 1.37664 65.1732 1.32112 65.1117 1.26895 65.0325 1.22037 64.9711 1.17205 64.8869 1.1232 64.8305 1.07285 64.7774 1.02424 64.709 0.975742 64.6502 0.929172 64.5885 0.882766 64.5399 0.838863 64.4822 0.796236 64.4319 0.753255 64.3741 0.712076 64.3311 0.669462 64.2847 0.626783 64.234 0.587669 64.1992 0.551133 64.1527 0.50965 64.1133 0.470516 64.0706 0.42959 64.0356 0.392312 63.9947 0.351625 63.9635 0.314402 63.9277 0.274122 63.9002 0.240501 63.868 0.202128 63.8416 0.167172 63.8171 0.132556 63.785 0.11056 63.5908 0.0960934 63.1029 0.084648 62.4835 0.0751974 61.7727 0.0671369 60.9897 0.0600533 60.147 0.0536909 59.2538 0.0478781 58.3179 0.0424921 57.3462 0.0374372 56.3455 0.0326322 55.3228 0.0280037 54.2853 0.0234818 53.2406 0.0189969 52.1964 0.0144783 51.1605 0.00984764 50.1406 0.00505488 49.1448 48.1797 7.11222 4.81429 6.61725 6.15632 6.14892 7.91374 5.85594 10.3278 5.95602 13.7448 6.76638 18.7414 8.52453 26.0458 10.8571 35.4442 13.0065 45.1187 14.4232 52.9655 15.1859 58.3132 15.5288 61.8289 15.6283 64.2561 15.5881 66.0766 15.4646 67.5528 15.2882 68.821 15.0743 69.9483 14.8186 70.9348 14.5016 71.6648 14.1331 72.0516 13.7377 72.1724 13.3325 72.1991 12.936 72.2006 12.5512 72.1908 12.1784 72.16 11.8211 72.1291 11.4737 72.1395 11.1278 72.1297 10.7922 72.078 10.4733 72.0506 10.1568 72.0324 9.83911 71.8683 9.53996 71.7583 9.26113 71.7447 8.97948 71.6531 8.70821 71.587 8.43772 71.4424 8.17893 71.3688 7.92229 71.2255 7.67952 71.1627 7.43886 70.9947 7.21082 70.9333 6.98586 70.7627 6.77445 70.683 6.56447 70.495 6.36935 70.42 6.17516 70.2339 5.98798 70.1644 5.80134 69.9715 5.62437 69.8895 5.44988 69.7088 5.28431 69.6295 5.12151 69.4477 4.96471 69.3606 4.81157 69.1809 4.66505 69.0878 4.52078 68.9171 4.38401 68.823 4.24779 68.659 4.11909 68.5647 3.9915 68.4028 3.86999 68.3071 3.74923 68.1491 3.63523 68.054 3.52065 67.9037 3.41317 67.8073 3.30527 67.6619 3.20405 67.5649 3.10181 67.4226 3.00683 67.3309 2.91016 67.1972 2.82018 67.1045 2.72839 66.9733 2.64197 66.8879 2.55366 66.7648 2.47272 66.6831 2.39111 66.5574 2.31694 66.4797 2.24023 66.3695 2.17064 66.2721 2.09682 66.1591 2.02631 66.1008 1.95357 65.9771 1.88483 65.8845 1.8227 65.8222 1.75667 65.7168 1.69612 65.6347 1.63383 65.5373 1.57531 65.4628 1.51215 65.3763 1.45458 65.3088 1.3963 65.2315 1.34243 65.1656 1.28869 65.0862 1.2394 65.0204 1.18727 64.9391 1.13586 64.8819 1.08688 64.8264 1.03646 64.7594 0.98869 64.698 0.939306 64.6379 0.894786 64.5844 0.84967 64.5273 0.806886 64.4747 0.762149 64.4189 0.719071 64.3742 0.676356 64.3274 0.632032 64.2783 0.592634 64.2386 0.5535 64.1918 0.514029 64.1528 0.472878 64.1118 0.433873 64.0746 0.392982 64.0356 0.354207 64.0022 0.314656 63.9672 0.277019 63.9378 0.239944 63.9051 0.202798 63.8787 0.166084 63.8538 0.131301 63.8198 0.109474 63.6126 0.0948153 63.1175 0.0832618 62.495 0.0737387 61.7822 0.0656361 60.9978 0.05855 60.1541 0.0522231 59.2601 0.0464789 58.3236 0.0411893 57.3514 0.0362524 56.3504 0.0315817 55.3275 0.0270981 54.2898 0.0227265 53.245 0.0183919 52.2007 0.0140212 51.1649 0.00953075 50.1451 0.00488961 49.1495 48.1846 7.62662 5.20044 7.16344 6.6195 6.70241 8.37478 6.36554 10.6647 6.33405 13.7763 6.88582 18.1896 8.31967 24.6119 10.4865 33.2774 12.7384 42.8668 14.3776 51.3263 15.3132 57.3776 15.7605 61.3815 15.9166 64.1 15.9058 66.0874 15.7971 67.6616 15.6277 68.9904 15.4173 70.1587 15.1665 71.1856 14.8548 71.9765 14.4812 72.4251 14.0806 72.573 13.6696 72.61 13.2618 72.6084 12.8633 72.5892 12.4755 72.5478 12.1024 72.5022 11.7421 72.4998 11.3863 72.4854 11.0389 72.4255 10.71 72.3794 10.3878 72.3546 10.0636 72.1926 9.75396 72.0679 9.45764 72.041 9.16881 71.9419 8.88982 71.866 8.61503 71.7171 8.3472 71.6366 8.08873 71.484 7.83705 71.4144 7.59126 71.2405 7.35623 71.1684 7.12886 70.99 6.90949 70.9024 6.69786 70.7066 6.49423 70.6236 6.29461 70.4335 6.10109 70.3579 5.91208 70.1605 5.72996 70.0717 5.55326 69.8855 5.38266 69.8001 5.21555 69.6148 5.05468 69.5215 4.89808 69.3375 4.74718 69.2387 4.6011 69.0632 4.45934 68.9648 4.32162 68.7967 4.18869 68.6977 4.05933 68.5322 3.93431 68.4322 3.81206 68.2713 3.69423 68.1719 3.57903 68.0189 3.46802 67.9183 3.35949 67.7704 3.25465 67.6698 3.15183 67.5254 3.05336 67.4293 2.95628 67.2943 2.86295 67.1979 2.77042 67.0659 2.68126 66.977 2.5933 66.8528 2.51009 66.7663 2.42878 66.6387 2.35169 66.5568 2.27424 66.4469 2.19997 66.3464 2.12496 66.2341 2.05422 66.1715 1.98042 66.0509 1.91072 65.9542 1.84648 65.8864 1.78186 65.7814 1.71997 65.6966 1.65676 65.6005 1.59533 65.5242 1.53237 65.4393 1.4736 65.3676 1.41554 65.2896 1.36113 65.22 1.30701 65.1403 1.25557 65.0719 1.20121 64.9934 1.14846 64.9347 1.09924 64.8756 1.0484 64.8103 0.999857 64.7466 0.950707 64.687 0.905244 64.6299 0.859813 64.5728 0.815922 64.5186 0.770163 64.4646 0.725264 64.4191 0.682278 64.3704 0.637758 64.3228 0.597214 64.2791 0.556595 64.2324 0.517181 64.1922 0.475705 64.1532 0.43599 64.1143 0.394674 64.0769 0.355704 64.0412 0.315568 64.0074 0.277819 63.9756 0.239498 63.9434 0.202181 63.916 0.164428 63.8916 0.129756 63.8545 0.108046 63.6343 0.0932419 63.1324 0.0816079 62.5067 0.0720313 61.7918 0.0639064 61.0059 0.0568358 60.1611 0.0505604 59.2664 0.0449005 58.3293 0.0397224 57.3566 0.0349194 56.3552 0.0303991 55.332 0.026077 54.2941 0.0218727 53.2492 0.0177062 52.2049 0.0135022 51.1691 0.00917431 50.1494 0.00470579 49.1539 48.1893 8.16382 5.55531 7.73063 7.0527 7.28103 8.82438 6.91459 11.0311 6.78124 13.9097 7.11722 17.8536 8.2305 23.4987 10.167 31.3409 12.4231 40.6106 14.2692 49.4803 15.3987 56.2481 15.97 60.8103 16.1947 63.8753 16.2194 66.0626 16.1282 67.7528 15.9667 69.1519 15.7593 70.366 15.5119 71.4331 15.2059 72.2825 14.8302 72.8008 14.4191 72.984 14.0012 73.028 13.5842 73.0254 13.1739 72.9996 12.7717 72.9499 12.3847 72.8892 12.0117 72.8728 11.6443 72.8528 11.2879 72.7819 10.9503 72.717 10.6186 72.6863 10.2845 72.5267 9.96523 72.3872 9.65881 72.3475 9.35862 72.2421 9.06739 72.1572 8.78901 71.9955 8.51619 71.9094 8.25036 71.7498 7.9921 71.6726 7.74238 71.4902 7.49959 71.4112 7.267 71.2226 7.04385 71.1255 6.82634 70.9241 6.61561 70.8343 6.41174 70.6374 6.212 70.5576 6.01799 70.3545 5.833 70.2567 5.65234 70.0662 5.47755 69.9749 5.30786 69.7845 5.14195 69.6874 4.98229 69.4971 4.82736 69.3936 4.67757 69.213 4.53294 69.1094 4.39243 68.9372 4.25627 68.8338 4.12466 68.6638 3.99619 68.5606 3.8721 68.3954 3.75171 68.2922 3.6347 68.1359 3.52106 68.0319 3.41099 67.8805 3.30367 67.7771 3.19955 67.6296 3.09847 67.5304 3.00001 67.3927 2.90388 67.294 2.81039 67.1594 2.71946 67.068 2.6311 66.9411 2.54623 66.8512 2.46425 66.7207 2.38471 66.6363 2.30608 66.5255 2.22866 66.4238 2.15237 66.3104 2.08051 66.2434 2.00639 66.125 1.9359 66.0247 1.86891 65.9534 1.80481 65.8456 1.74178 65.7596 1.67769 65.6646 1.61422 65.5877 1.55144 65.502 1.49179 65.4273 1.43382 65.3475 1.37844 65.2754 1.32353 65.1952 1.26942 65.126 1.21399 65.0488 1.16096 64.9877 1.11048 64.9261 1.05965 64.8611 1.01024 64.796 0.961406 64.7359 0.914741 64.6766 0.868671 64.6188 0.823029 64.5642 0.776993 64.5107 0.731447 64.4646 0.687688 64.4141 0.643692 64.3668 0.601534 64.3213 0.559834 64.2741 0.519428 64.2326 0.478023 64.1946 0.437451 64.1549 0.396197 64.1182 0.356378 64.081 0.316383 64.0474 0.277906 64.014 0.238952 63.9824 0.200462 63.9545 0.162285 63.9298 0.127777 63.889 0.106154 63.6559 0.0913425 63.1472 0.0796661 62.5184 0.0700598 61.8014 0.0619344 61.014 0.0548984 60.1682 0.0486923 59.2726 0.0431333 58.3348 0.0380836 57.3617 0.0334313 56.3599 0.0290787 55.3363 0.0249358 54.2983 0.0209169 53.2532 0.0169375 52.2089 0.0129202 51.1731 0.00877747 50.1535 0.00450354 49.1582 48.1938 8.72545 5.88193 8.32013 7.45801 7.88451 9.26 7.49936 11.4163 7.28837 14.1206 7.44849 17.6935 8.26774 22.6794 9.92581 29.6828 12.0922 38.4443 14.1011 47.4713 15.4368 54.9125 16.1518 60.0953 16.4594 63.5676 16.5275 65.9945 16.4573 67.823 16.305 69.3042 16.1007 70.5703 15.8552 71.6786 15.5543 72.5834 15.18 73.1752 14.7573 73.4068 14.3288 73.4564 13.9025 73.4516 13.4817 73.4205 13.0672 73.3645 12.6659 73.2905 12.2812 73.2575 11.905 73.229 11.5371 73.1498 11.1865 73.0677 10.8457 73.0271 10.5053 72.867 10.1761 72.7164 9.85747 72.6661 9.54781 72.5518 9.24811 72.4569 8.96028 72.2834 8.67997 72.1897 8.40955 72.0202 8.1455 71.9367 7.88758 71.7481 7.64056 71.6582 7.40319 71.46 7.17309 71.3556 6.95024 71.147 6.73453 71.05 6.52427 70.8476 6.31998 70.7619 6.12262 70.5519 5.93158 70.4477 5.74746 70.2503 5.56946 70.1529 5.39568 69.9582 5.22734 69.8557 5.06373 69.6607 4.90482 69.5526 4.7522 69.3656 4.6035 69.2581 4.46048 69.0802 4.32141 68.9729 4.18679 68.7984 4.0564 68.691 3.92967 68.5222 3.80654 68.4154 3.68754 68.2549 3.57202 68.1475 3.46007 67.9924 3.35067 67.8865 3.24452 67.7357 3.14152 67.6334 3.0413 67.4929 2.94334 67.392 2.84845 67.2542 2.75622 67.1602 2.66692 67.0304 2.58053 66.9376 2.49725 66.8039 2.41601 66.7176 2.33584 66.6057 2.25673 66.5029 2.17932 66.3878 2.10558 66.3171 2.03094 66.1997 1.95959 66.096 1.89068 66.0223 1.8254 65.9108 1.76129 65.8238 1.69626 65.7297 1.63195 65.652 1.56931 65.5647 1.50918 65.4874 1.45079 65.4059 1.39423 65.3319 1.3381 65.2514 1.28171 65.1824 1.22607 65.1045 1.17263 65.0411 1.12094 64.9777 1.07021 64.9118 1.02005 64.8461 0.970995 64.7849 0.923312 64.7242 0.876237 64.6659 0.829351 64.6111 0.782703 64.5573 0.737091 64.5102 0.692503 64.4587 0.648682 64.4107 0.605454 64.3645 0.56281 64.3168 0.521035 64.2744 0.479426 64.2362 0.438419 64.1959 0.397176 64.1594 0.356771 64.1214 0.316792 64.0874 0.277503 64.0533 0.237821 64.022 0.198576 63.9938 0.160169 63.9682 0.125524 63.9236 0.103972 63.6775 0.0891381 63.162 0.0774249 62.5301 0.0678109 61.811 0.0597067 61.0221 0.0527254 60.1751 0.0466074 59.2787 0.0411677 58.3403 0.0362645 57.3666 0.0317811 56.3643 0.0276145 55.3405 0.0236696 54.3022 0.0198553 53.257 0.0160833 52.2126 0.0122739 51.1769 0.00833921 50.1575 0.00428244 49.1623 48.1981 9.31367 6.18329 8.93379 7.83788 8.51327 9.68052 8.11739 11.8121 7.84807 14.39 7.86769 17.6739 8.43043 22.1167 9.78418 28.3291 11.7848 36.4437 13.8796 45.3765 15.4208 53.3713 16.2998 59.2163 16.7071 63.1604 16.828 65.8735 16.7836 67.8674 16.6423 69.4455 16.4414 70.7712 16.197 71.923 15.8999 72.8804 15.5293 73.5458 15.0975 73.8385 14.6547 73.8993 14.2174 73.8889 13.7865 73.8514 13.3603 73.7907 12.9468 73.704 12.5502 73.654 12.1623 73.6169 11.7844 73.5277 11.4239 73.4282 11.072 73.379 10.72 73.219 10.3816 73.0548 10.0562 72.9915 9.73674 72.8713 9.42509 72.7686 9.13002 72.5784 8.84398 72.4758 8.56451 72.2997 8.29392 72.2073 8.03195 72.0101 7.77802 71.9121 7.53402 71.704 7.29985 71.5898 7.07037 71.3765 6.84803 71.2724 6.63428 71.0614 6.42544 70.9708 6.22209 70.7553 6.02739 70.6424 5.83899 70.4387 5.65709 70.3348 5.48136 70.134 5.30887 70.0282 5.14148 69.8281 4.97958 69.7145 4.82273 69.5224 4.67166 69.4092 4.52539 69.2265 4.38332 69.115 4.2464 68.9353 4.11327 68.8242 3.9842 68.6512 3.85927 68.5403 3.73816 68.376 3.62062 68.265 3.50645 68.1066 3.39516 67.9978 3.28718 67.8437 3.18259 67.738 3.08061 67.5949 2.98093 67.4917 2.88449 67.3507 2.79117 67.2535 2.70083 67.1208 2.61288 67.0255 2.52782 66.889 2.44523 66.8002 2.36365 66.6873 2.2831 66.5834 2.2046 66.4663 2.1292 66.3925 2.05395 66.2749 1.98216 66.1678 1.91221 66.0923 1.84475 65.9783 1.77881 65.8897 1.71311 65.7954 1.64877 65.7163 1.58592 65.6275 1.5252 65.5481 1.46611 65.465 1.40827 65.3898 1.35089 65.3087 1.29355 65.2397 1.23735 65.1607 1.18325 65.0952 1.1307 65.0303 1.07964 64.9629 1.02906 64.8967 0.979545 64.8344 0.93088 64.7729 0.882736 64.714 0.834939 64.6589 0.787562 64.6047 0.741711 64.5561 0.696643 64.5038 0.652549 64.4548 0.608779 64.4083 0.565354 64.3602 0.522395 64.3173 0.480258 64.2784 0.438869 64.2373 0.397557 64.2007 0.356747 64.1623 0.316284 64.1278 0.276216 64.0934 0.23587 64.0624 0.196421 64.0332 0.157964 64.0066 0.12301 63.9586 0.10159 63.6989 0.0866282 63.177 0.0748749 62.5418 0.0652722 61.8206 0.0572102 61.0302 0.0503041 60.182 0.0442944 59.2847 0.0389935 58.3456 0.0342563 57.3713 0.0299613 56.3686 0.0260005 55.3445 0.0222734 54.3059 0.0186843 53.2606 0.0151413 52.2162 0.0115621 51.1805 0.00785836 50.1612 0.00404179 49.1661 48.2022 9.93124 6.46239 9.57402 8.1951 9.16856 10.086 8.76751 12.2132 8.45467 14.7028 8.36311 17.7654 8.70883 21.7709 9.75813 27.2798 11.5345 34.6673 13.619 43.2921 15.3458 51.6445 16.4073 58.1547 16.9329 62.6348 17.1185 65.6879 17.1059 67.8801 16.9782 69.5732 16.7813 70.9681 16.5372 72.1671 16.2426 73.175 15.8766 73.9118 15.4399 74.2752 14.9815 74.3576 14.5304 74.34 14.0882 74.2935 13.6515 74.2275 13.2251 74.1304 12.8166 74.0625 12.4197 74.0138 12.0298 73.9176 11.655 73.803 11.2927 73.7413 10.9329 73.5788 10.5852 73.4025 10.249 73.3277 9.92172 73.1986 9.60309 73.0872 9.29678 72.8847 9.0015 72.7711 8.71675 72.5844 8.44035 72.4837 8.17013 72.2803 7.91102 72.1712 7.66234 71.9527 7.4204 71.8317 7.18551 71.6113 6.95884 71.499 6.73958 71.2806 6.52611 71.1842 6.31973 70.9616 6.11903 70.8431 5.92642 70.6313 5.74175 70.5194 5.56161 70.3141 5.38672 70.2031 5.2159 69.999 5.05029 69.8801 4.89114 69.6816 4.73628 69.5641 4.58692 69.3759 4.44256 69.2593 4.30254 69.0754 4.16769 68.959 4.03634 68.7826 3.90871 68.6679 3.7854 68.4993 3.66611 68.3843 3.55034 68.2224 3.43732 68.1108 3.32735 67.9537 3.22106 67.8443 3.11753 67.6985 3.01633 67.5929 2.91848 67.4485 2.82407 67.3479 2.73243 67.2124 2.64294 67.115 2.55607 66.9759 2.4721 66.8841 2.38907 66.7703 2.30732 66.6652 2.22778 66.5458 2.15107 66.4692 2.07576 66.3502 2.00397 66.2396 1.93318 66.163 1.86341 66.0481 1.79562 65.9575 1.72902 65.862 1.66405 65.7813 1.60098 65.6906 1.53978 65.6093 1.47974 65.5251 1.42077 65.4487 1.36211 65.3674 1.30414 65.2977 1.24745 65.2174 1.19266 65.15 1.13959 65.0834 1.08813 65.0143 1.03716 64.9477 0.986971 64.8846 0.937374 64.8225 0.888128 64.7633 0.83953 64.7075 0.791744 64.6525 0.745473 64.6023 0.699998 64.5493 0.655445 64.4993 0.611134 64.4526 0.567061 64.4043 0.52339 64.361 0.480738 64.321 0.438815 64.2792 0.397227 64.2423 0.356133 64.2033 0.315114 64.1688 0.274353 64.1342 0.233581 64.1032 0.194029 64.0728 0.155133 64.0455 0.119871 63.9938 0.098737 63.72 0.0837386 63.192 0.0719942 62.5536 0.0624276 61.8302 0.0544302 61.0382 0.0476215 60.1889 0.0417414 59.2906 0.0366005 58.3507 0.03205 57.3759 0.0279641 56.3727 0.02423 55.3482 0.0207421 54.3094 0.0174001 53.264 0.0141088 52.2195 0.0107834 51.1838 0.00733369 50.1646 0.00378101 49.1696 48.2059 10.5814 6.72218 10.2438 8.53268 9.85231 10.4775 9.44951 12.616 9.10409 15.0482 8.92487 17.9447 9.09131 21.6045 9.85791 26.5132 11.3671 33.158 13.3491 41.3101 15.2153 49.7782 16.4686 56.9014 17.1312 61.9722 17.3955 65.4236 17.4224 67.8532 17.3118 69.6838 17.1201 71.1599 16.876 72.4112 16.5824 73.4685 16.221 74.2732 15.7829 74.7134 15.3099 74.8306 14.8426 74.8073 14.3877 74.7484 13.9392 74.676 13.5014 74.5682 13.0808 74.4831 12.6711 74.4235 12.2703 74.3184 11.8855 74.1878 11.5114 74.1153 11.139 73.9512 10.7814 73.7601 10.4394 73.6697 10.104 73.5339 9.77444 73.4168 9.46032 73.1989 9.15862 73.0728 8.86421 72.8789 8.58023 72.7677 8.30626 72.5543 8.0401 72.4374 7.78367 72.2091 7.53752 72.0779 7.29731 71.8516 7.06387 71.7325 6.84063 71.5039 6.62376 71.4011 6.41122 71.1742 6.20697 71.0473 6.0102 70.8281 5.82059 70.709 5.63844 70.4963 5.46031 70.3813 5.28588 70.1734 5.11792 70.048 4.95489 69.8446 4.7977 69.7213 4.64547 69.5281 4.49802 69.4068 4.35597 69.2174 4.21849 69.0965 4.08491 68.9162 3.9558 68.797 3.83042 68.6247 3.70897 68.5058 3.59119 68.3401 3.47633 68.2256 3.36475 68.0653 3.25699 67.9521 3.15202 67.8034 3.04949 67.6954 2.95013 67.5479 2.85439 67.4437 2.76153 67.3053 2.67063 67.2059 2.58184 67.0646 2.49633 66.9696 2.41209 66.8546 2.32943 66.7479 2.24903 66.6262 2.17121 66.5471 2.096 66.4254 2.02393 66.3117 1.95252 66.2345 1.88099 66.1196 1.81158 66.0269 1.74397 65.9296 1.67839 65.8469 1.61449 65.7545 1.55236 65.6714 1.49139 65.5861 1.43146 65.5087 1.37192 65.4269 1.31369 65.3559 1.25652 65.2745 1.20107 65.2055 1.14743 65.137 1.0953 65.0665 1.04384 64.9991 0.992927 64.9355 0.942454 64.873 0.892365 64.8134 0.843119 64.7568 0.795021 64.7006 0.74828 64.6491 0.702375 64.5952 0.657419 64.5443 0.612712 64.4973 0.568105 64.4489 0.523818 64.4053 0.48064 64.3642 0.438163 64.3217 0.396194 64.2843 0.354737 64.2448 0.313307 64.2103 0.272186 64.1753 0.231318 64.144 0.191329 64.1128 0.151517 64.0853 0.116063 64.0293 0.0952906 63.7408 0.0804332 63.2068 0.0687595 62.5652 0.0592593 61.8397 0.0513519 61.0461 0.0446639 60.1955 0.0389362 59.2963 0.0339776 58.3557 0.0296361 57.3802 0.0257816 56.3766 0.0222965 55.3517 0.0190705 54.3127 0.0159989 53.267 0.0129834 52.2225 0.00993647 51.1868 0.00676398 50.1678 0.00349972 49.1729 48.2094 11.2676 6.96551 10.9465 8.85386 10.567 10.8569 10.164 13.019 9.7936 15.4186 9.54522 18.193 9.56596 21.5837 10.0829 25.9963 11.3026 31.9383 13.1104 39.5023 15.0389 47.8498 16.4788 55.4615 17.2963 61.1547 17.6551 65.0647 17.7308 67.7776 17.642 69.7726 17.4572 71.3446 17.2131 72.6553 16.9194 73.7623 16.5618 74.6309 16.1247 75.1505 15.6399 75.3153 15.155 75.2922 14.685 75.2184 14.2246 75.1365 13.7734 75.0194 13.34 74.9165 12.9207 74.8428 12.5077 74.7314 12.1081 74.5874 11.7224 74.501 11.3418 74.3318 10.9748 74.1272 10.6215 74.0229 10.2789 73.8765 9.94379 73.7519 9.61952 73.5231 9.30828 73.384 9.00832 73.1788 8.71805 73.0579 8.4354 72.8369 8.16302 72.7098 7.90169 72.4704 7.64806 72.3315 7.4026 72.097 7.16571 71.9694 6.93678 71.7328 6.71475 71.6231 6.49966 71.3893 6.29024 71.2568 6.0887 71.0296 5.89652 70.9012 5.70999 70.6828 5.52923 70.562 5.35273 70.3499 5.18078 70.22 5.0154 70.01 4.85483 69.8818 4.69967 69.6832 4.55065 69.5558 4.40548 69.3626 4.26582 69.2362 4.13067 69.0513 3.99939 68.9283 3.87169 68.7524 3.74815 68.6293 3.62891 68.4594 3.51276 68.3418 3.39953 68.1785 3.29016 68.0614 3.18371 67.9099 3.07982 67.7993 2.97905 67.6487 2.88193 67.5408 2.78766 67.3995 2.69551 67.2981 2.60523 67.1549 2.51817 67.0567 2.43301 66.9397 2.34943 66.8314 2.26832 66.7073 2.18968 66.6257 2.11432 66.5008 2.04155 66.3845 1.96935 66.3067 1.89665 66.1923 1.82639 66.0972 1.75781 65.9981 1.69122 65.9134 1.6263 65.8194 1.56313 65.7346 1.50133 65.6479 1.44082 65.5692 1.38053 65.4872 1.32188 65.4146 1.26441 65.332 1.20835 65.2615 1.15411 65.1912 1.10135 65.1192 1.04914 65.0513 0.997395 64.9873 0.946204 64.9242 0.895443 64.8641 0.845693 64.8065 0.797311 64.749 0.750187 64.6962 0.703763 64.6416 0.6583 64.5897 0.613097 64.5425 0.568179 64.4938 0.523539 64.4499 0.480002 64.4077 0.437037 64.3646 0.394581 64.3267 0.352579 64.2868 0.310798 64.2521 0.269463 64.2166 0.228407 64.1851 0.187815 64.1533 0.147409 64.1257 0.112019 64.0647 0.0915373 63.7613 0.0767694 63.2216 0.0651655 62.5768 0.0557537 61.8491 0.0479606 61.0539 0.0414175 60.2021 0.0358661 59.3019 0.0311137 58.3604 0.0270048 57.3843 0.0234054 56.3802 0.0201931 55.3549 0.0172531 54.3156 0.0144765 53.2698 0.0117622 52.2252 0.00902004 51.1896 0.00614809 50.1707 0.00319711 49.1758 48.2126 11.9934 7.19492 11.6855 9.16183 11.3155 11.2269 10.9123 13.4222 10.522 15.8089 10.2183 18.4968 10.1213 21.6808 10.4245 25.693 11.3553 31.0075 12.9364 37.9212 14.8325 45.9537 16.4341 53.8599 17.4215 60.1674 17.8926 64.5936 18.0285 67.6416 17.9673 69.8339 17.792 71.5199 17.5483 72.8989 17.2533 74.0573 16.8982 74.986 16.4637 75.585 15.9702 75.8088 15.4675 75.7949 14.9808 75.7051 14.5061 75.6112 14.0421 75.4833 13.5955 75.3631 13.162 75.2763 12.7373 75.1562 12.328 74.9967 11.9308 74.8982 11.5373 74.7253 11.1594 74.505 10.7995 74.3828 10.4496 74.2264 10.1043 74.0972 9.77257 73.8549 9.45545 73.7011 9.14668 73.4876 8.84804 73.3566 8.5608 73.1242 8.282 72.9886 8.01196 72.7405 7.75406 72.5894 7.50447 72.3466 7.26063 72.2132 7.02693 71.9665 6.80241 71.8476 6.58179 71.6099 6.3688 71.4697 6.16387 71.2346 5.96619 71.0989 5.77671 70.8723 5.5931 70.7456 5.41345 70.5295 5.23963 70.3938 5.07059 70.179 4.90786 70.0446 4.75076 69.8403 4.59863 69.7079 4.45166 69.5096 4.3098 69.378 4.17227 69.1888 4.03945 69.0611 3.90993 68.8819 3.78438 68.7549 3.66341 68.5804 3.5458 68.4594 3.43107 68.2932 3.32015 68.1723 3.2122 68.0178 3.10708 67.9044 3.0051 67.7506 2.90655 67.6393 2.8108 67.4953 2.71729 67.3916 2.62593 67.2463 2.53767 67.145 2.4517 67.0257 2.36748 66.9157 2.28594 66.7889 2.20693 66.7047 2.13098 66.5767 2.05664 66.4588 1.98351 66.3798 1.91003 66.2658 1.83898 66.1682 1.76978 66.0673 1.70253 65.9807 1.63634 65.8856 1.57218 65.7987 1.50984 65.7102 1.4485 65.6305 1.38765 65.5481 1.32881 65.4734 1.27108 65.3897 1.21447 65.3182 1.15953 65.2462 1.10595 65.1728 1.05286 65.1044 1.00023 65.0399 0.948441 64.976 0.897347 64.9152 0.847353 64.8565 0.798687 64.7976 0.751093 64.7438 0.704069 64.6886 0.658117 64.6357 0.612491 64.5881 0.567317 64.539 0.522324 64.4949 0.478347 64.4517 0.434976 64.408 0.392182 64.3695 0.349687 64.3293 0.307508 64.2942 0.265873 64.2583 0.224517 64.2264 0.183376 64.1945 0.142795 64.1663 0.107817 64.0996 0.0875849 63.7815 0.072764 63.2364 0.0612082 62.5884 0.0518984 61.8584 0.0442417 61.0616 0.0378681 60.2085 0.0325183 59.3073 0.0279971 58.365 0.0241461 57.3882 0.0208268 56.3835 0.0179126 55.3578 0.0152841 54.3182 0.0128287 53.2723 0.0104427 52.2276 0.00803319 51.192 0.00548534 50.1732 0.0028727 49.1785 48.2155 12.7617 7.4127 12.464 9.45949 12.1009 11.59 11.6964 13.8267 11.2891 16.2162 10.9399 18.846 10.7473 21.8734 10.8717 25.5686 11.5327 30.3465 12.8517 36.6022 14.6273 44.1781 16.3392 52.148 17.5012 59.0054 18.1016 63.9932 18.3116 67.4316 18.2856 69.8599 18.1232 71.6823 17.881 73.1412 17.5839 74.3544 17.2297 75.3402 16.7983 76.0164 16.2991 76.308 15.7795 76.3146 15.2743 76.2104 14.7847 76.1008 14.3057 75.9624 13.8443 75.8244 13.3999 75.7207 12.9629 75.5933 12.5382 75.4213 12.1289 75.3074 11.7273 75.127 11.3404 74.892 10.9686 74.7546 10.6102 74.5848 10.2603 74.447 9.92028 74.1949 9.5937 74.0277 9.2795 73.8018 8.97492 73.6612 8.67847 73.4206 8.39287 73.2742 8.11858 73.0148 7.85339 72.8546 7.59807 72.6019 7.35136 72.4599 7.11219 72.2057 6.88205 72.0778 6.65941 71.8325 6.4424 71.6868 6.2325 71.4445 6.03242 71.299 5.83825 71.0664 5.65078 70.9331 5.46989 70.7104 5.29267 70.571 5.12174 70.3499 4.95665 70.2097 4.79643 70.0006 4.64299 69.8614 4.49333 69.6592 4.34923 69.5221 4.21031 69.3277 4.07565 69.1958 3.94449 69.0131 3.81693 68.8824 3.69412 68.7032 3.57553 68.578 3.45935 68.4094 3.34669 68.285 3.23738 68.1271 3.13108 68.0107 3.02784 67.8539 2.92798 67.7392 2.83068 67.5926 2.73593 67.4863 2.64373 67.3385 2.55477 67.2339 2.46851 67.112 2.38375 67.0004 2.30159 66.871 2.22206 66.7843 2.14485 66.6539 2.06923 66.5344 1.99526 66.4537 1.92119 66.3399 1.8497 66.2397 1.77969 66.1374 1.71167 66.0487 1.64471 65.9526 1.57977 65.8637 1.51659 65.7734 1.45459 65.6925 1.39353 65.6091 1.33448 65.5325 1.27635 65.4479 1.21911 65.3754 1.16348 65.3018 1.10914 65.2272 1.05517 65.1584 1.0019 65.0932 0.949677 65.0282 0.898219 64.9667 0.848041 64.9067 0.799058 64.8466 0.750943 64.7919 0.703381 64.7362 0.656944 64.6821 0.610851 64.6342 0.565432 64.5844 0.52029 64.5401 0.475951 64.4961 0.432115 64.4518 0.388924 64.4127 0.345857 64.3724 0.303223 64.3369 0.261332 64.3001 0.219843 64.2679 0.178223 64.2361 0.13739 64.2072 0.102984 64.134 0.0831047 63.8014 0.0683256 63.2512 0.0568578 62.5999 0.0476737 61.8676 0.0401783 61.0691 0.0340005 60.2146 0.0288789 59.3124 0.0246159 58.3692 0.0210493 57.3917 0.0180369 56.3865 0.0154475 55.3604 0.0131577 54.3205 0.011051 53.2744 0.0090216 52.2296 0.00697528 51.194 0.00477587 50.1754 0.00252584 49.1807 48.218 13.5752 7.62095 13.285 9.74971 12.9259 11.9491 12.5186 14.234 12.0956 16.6393 11.7075 19.234 11.4357 22.1452 11.4121 25.5923 11.8335 29.9251 12.875 35.5608 14.4627 42.5904 16.2062 50.4044 17.5322 57.6795 18.2769 63.2485 18.5758 67.1326 18.5943 69.8414 18.4494 71.8272 18.2102 73.3804 17.9106 74.654 17.5556 75.6951 17.1272 76.4448 16.6245 76.8106 16.0898 76.8493 15.5653 76.7349 15.0585 76.6076 14.5648 76.4561 14.0886 76.3005 13.6282 76.1812 13.1782 76.0433 12.7439 75.8556 12.3243 75.727 11.9096 75.5417 11.511 75.2906 11.1318 75.1338 10.7661 74.9505 10.4062 74.807 10.058 74.5431 9.7262 74.3595 9.40447 74.1235 9.09173 73.9739 8.79025 73.7221 8.49935 73.5651 8.21678 73.2973 7.9466 73.1248 7.68745 72.8611 7.43402 72.7133 7.19005 72.4497 6.95812 72.3097 6.73069 72.06 6.5095 71.9079 6.29683 71.6571 6.0911 71.5047 5.89363 71.2639 5.70422 71.1225 5.52002 70.8946 5.34126 70.7498 5.16726 70.5239 4.99957 70.3773 4.83842 70.1617 4.68197 70.0178 4.53061 69.8106 4.38502 69.6677 4.24339 69.4694 4.10697 69.3322 3.97463 69.1454 3.84566 69.0114 3.72124 68.8276 3.60122 68.698 3.48366 68.527 3.36961 68.399 3.259 68.2377 3.15152 68.1182 3.047 67.9584 2.94602 67.8402 2.84752 67.6911 2.75166 67.5822 2.65894 67.4312 2.56957 67.3233 2.48263 67.1989 2.39784 67.0852 2.31491 66.954 2.23456 66.8646 2.1561 66.7324 2.07933 66.6112 2.00461 66.5285 1.93011 66.4144 1.85798 66.3118 1.7874 66.2079 1.71891 66.1172 1.65122 66.0203 1.58578 65.9291 1.52199 65.8372 1.45927 65.7552 1.39793 65.6705 1.33845 65.5919 1.27976 65.5066 1.22208 65.4331 1.16589 65.358 1.11081 65.2823 1.05626 65.2129 1.00247 65.147 0.949769 65.0809 0.897966 65.0185 0.847655 64.957 0.798492 64.8958 0.749842 64.8406 0.701663 64.7844 0.654759 64.729 0.60821 64.6808 0.562428 64.6302 0.51714 64.5854 0.472514 64.5407 0.42815 64.4962 0.384572 64.4563 0.341249 64.4157 0.298556 64.3796 0.25647 64.3422 0.21466 64.3097 0.172392 64.2784 0.131181 64.2484 0.0973291 64.1679 0.0779484 63.8208 0.0633911 63.2657 0.0520769 62.6112 0.0430544 61.8766 0.0357511 61.0764 0.0297983 60.2206 0.0249338 59.3172 0.0209574 58.3732 0.0177036 57.395 0.0150262 56.3892 0.0127901 55.3626 0.0108675 54.3224 0.00913851 53.2761 0.00749528 52.2313 0.00584569 51.1957 0.00402138 50.1772 0.00215459 49.1826 48.2202 14.4367 7.82128 14.1512 10.0351 13.7932 12.3072 13.381 14.6462 12.9422 17.078 12.5195 19.6567 12.1807 22.484 12.0342 25.7388 12.2484 29.7109 13.0157 34.7935 14.37 41.236 16.0537 48.7208 17.5126 56.2206 18.4124 62.3487 18.8164 66.7286 18.8903 69.7675 18.7686 71.9489 18.5347 73.6142 18.2326 74.9561 17.8753 76.0524 17.4489 76.8713 16.9446 77.3149 16.3968 77.3971 15.8525 77.2792 15.328 77.1321 14.8172 76.9669 14.3247 76.7931 13.8522 76.6536 13.3895 76.506 12.9394 76.3056 12.507 76.1595 12.0841 75.9646 11.6771 75.6976 11.2859 75.525 10.9101 75.3263 10.5455 75.1715 10.1902 74.8985 9.84836 74.7013 9.52055 74.4513 9.20296 74.2915 8.89355 74.0315 8.59557 73.863 8.30972 73.5832 8.0329 73.4016 7.76705 73.1269 7.51159 72.9688 7.26309 72.6981 7.02489 72.5479 6.79492 72.2899 6.57103 72.1318 6.353 71.8752 6.14495 71.7128 5.94437 71.4645 5.75093 71.3159 5.56474 71.0808 5.38308 70.9314 5.20761 70.6994 5.03841 70.5465 4.87412 70.326 4.71623 70.1757 4.56308 69.9637 4.41521 69.8156 4.27228 69.6123 4.13408 69.4704 4.00026 69.2792 3.87007 69.1416 3.74394 68.9537 3.62262 68.8193 3.50394 68.6456 3.38848 68.5145 3.27669 68.3495 3.16828 68.2266 3.06264 68.0641 2.96054 67.9423 2.86112 67.7905 2.76461 67.6787 2.67113 67.5247 2.58113 67.4133 2.4937 67.2863 2.40865 67.1703 2.32536 67.0373 2.24478 66.9452 2.16487 66.8123 2.08704 66.689 2.01119 66.6043 1.93626 66.4893 1.86384 66.3843 1.79304 66.2787 1.72425 66.186 1.65617 66.0883 1.58995 65.9953 1.52527 65.9018 1.46232 65.8182 1.401 65.7318 1.34104 65.6519 1.28173 65.5659 1.22349 65.4913 1.16668 65.4148 1.11095 65.338 1.05583 65.2681 1.00168 65.2011 0.948771 65.1338 0.896838 65.0704 0.846264 65.0076 0.796749 64.9453 0.747538 64.8898 0.698869 64.833 0.651622 64.7763 0.60474 64.7277 0.558523 64.6764 0.512881 64.631 0.46796 64.5856 0.423292 64.5409 0.379474 64.5001 0.33587 64.4593 0.2929 64.4225 0.250447 64.3847 0.208283 64.3519 0.16567 64.321 0.1246 64.2894 0.0914342 64.2011 0.0724027 63.8398 0.0580011 63.2801 0.04685 62.6223 0.0380205 61.8855 0.0309415 61.0834 0.025245 60.2263 0.0206681 59.3218 0.0170085 58.3769 0.0140975 57.3979 0.0117851 56.3915 0.00993206 55.3645 0.00840687 54.324 0.00708563 53.2774 0.00585849 52.2325 0.00464274 51.1969 0.00322664 50.1787 0.00174621 49.184 48.2219 15.348 8.01495 15.0651 10.318 14.7053 12.667 14.2855 15.0661 13.8301 17.5335 13.3753 20.1114 12.9779 22.8814 12.7278 25.9889 12.7655 29.6732 13.277 34.2819 14.3718 40.1412 15.9135 47.1791 17.4491 54.685 18.503 61.2948 19.0268 66.2048 19.1692 69.6251 19.0782 72.0399 18.8529 73.8395 18.5489 75.2602 18.188 76.4133 17.7621 77.2972 17.2574 77.8196 16.6985 77.956 16.1349 77.8429 15.5907 77.6763 15.0634 77.4941 14.5549 77.3016 14.0649 77.1436 13.5882 76.9827 13.129 76.7647 12.6866 76.6019 12.25 76.4012 11.8303 76.1174 11.4314 75.9238 11.0488 75.709 10.6736 75.5467 10.3091 75.2629 9.96236 75.0481 9.62799 74.7857 9.30228 74.6172 8.98809 74.3457 8.68627 74.1649 8.39292 73.8765 8.11084 73.6837 7.84176 73.396 7.58035 73.2302 7.32696 72.9515 7.08653 72.7883 6.85247 72.524 6.62461 72.3597 6.40528 72.0945 6.19226 71.9258 5.98735 71.6694 5.79217 71.5111 5.60213 71.2709 5.4192 71.1144 5.24207 70.8765 5.06978 70.7188 4.90501 70.4908 4.74488 70.3358 4.58973 70.1189 4.44056 69.9648 4.29537 69.7575 4.15557 69.6102 4.02058 69.4142 3.88951 69.2727 3.76243 69.0808 3.63961 68.9421 3.51952 68.7657 3.40315 68.6309 3.29083 68.4619 3.18158 68.3358 3.07462 68.171 2.97143 68.0455 2.87144 67.8905 2.77439 67.7758 2.68051 67.6186 2.58989 67.5039 2.50164 67.3746 2.41637 67.2555 2.33199 67.1216 2.25045 67.0267 2.17006 66.8927 2.09211 66.767 2.01604 66.6804 1.94108 66.5642 1.86794 66.4574 1.79678 66.3499 1.72745 66.2553 1.65877 66.157 1.59211 66.062 1.52718 65.9668 1.46403 65.8813 1.40238 65.7935 1.34177 65.7125 1.28196 65.6257 1.22325 65.55 1.16579 65.4723 1.10947 65.3943 1.05403 65.3235 0.999742 65.2554 0.946698 65.1868 0.89469 65.1224 0.843708 65.0585 0.793846 64.9951 0.744208 64.9394 0.695038 64.8822 0.647212 64.8241 0.599882 64.775 0.5534 64.7229 0.507615 64.6768 0.462482 64.6307 0.417552 64.5858 0.373463 64.5442 0.329624 64.5031 0.286254 64.4659 0.243275 64.4277 0.200713 64.3945 0.158209 64.3635 0.117659 64.33 0.0853264 64.2334 0.0664984 63.8586 0.0521508 63.2945 0.0411633 62.6333 0.0325537 61.8941 0.0257308 61.0903 0.0203232 60.2317 0.0160665 59.3261 0.0127558 58.3802 0.0102193 57.4004 0.00830332 56.3934 0.00686492 55.3659 0.00576888 54.3251 0.00488659 53.2783 0.00410247 52.2333 0.00336091 51.1976 0.00240508 50.1796 0.00125758 49.1852 48.2232 16.3107 8.20307 16.0285 10.6001 15.6644 13.0311 15.2343 15.4961 14.7604 18.0073 14.2745 20.5974 13.8242 23.3317 13.4848 26.3284 13.373 29.7849 13.656 33.9989 14.484 39.3133 15.8238 45.8393 17.3562 53.1525 18.5469 60.1041 19.2018 65.55 19.4264 69.4005 19.3749 72.0914 19.1628 74.0516 18.8582 75.5647 18.4927 76.7787 18.0656 77.7243 17.561 78.3242 16.993 78.524 16.4105 78.4254 15.8466 78.2401 15.3009 78.0398 14.7747 77.8278 14.2719 77.6465 13.7819 77.4727 13.3064 77.2402 12.8507 77.0575 12.4059 76.846 11.9779 76.5454 11.5667 76.335 11.1728 76.1029 10.7929 75.9267 10.4224 75.6335 10.0648 75.4057 9.72354 75.127 9.39431 74.9464 9.07393 74.6661 8.76472 74.4741 8.46816 74.1731 8.18118 73.9707 7.90515 73.672 7.64177 73.4936 7.38533 73.208 7.13852 73.0351 6.90113 72.7614 6.67231 72.5885 6.44778 72.319 6.23234 72.1412 6.02503 71.8767 5.82575 71.7104 5.63368 71.4629 5.44836 71.2997 5.26927 71.0556 5.0967 70.8914 4.92887 70.6586 4.76739 70.4973 4.61145 70.2748 4.46005 70.1161 4.31376 69.9038 4.1724 69.7516 4.03576 69.5509 3.90391 69.4045 3.77558 69.2091 3.65153 69.0662 3.53072 68.8865 3.41368 68.7479 3.30049 68.575 3.19049 68.4458 3.0829 68.2786 2.97898 68.1494 2.87836 67.9911 2.78112 67.873 2.68642 67.7133 2.59498 67.5953 2.5063 67.4633 2.42003 67.3418 2.33455 67.2071 2.25226 67.109 2.17158 66.9734 2.09427 66.8443 2.01863 66.756 1.94379 66.6391 1.87009 66.5311 1.79842 66.4216 1.72862 66.3251 1.65972 66.2259 1.5926 66.1291 1.52725 66.0321 1.46385 65.9447 1.40181 65.8555 1.34064 65.7737 1.28045 65.6859 1.22132 65.6092 1.16326 65.5303 1.10645 65.4511 1.05075 65.3792 0.99631 65.3098 0.94318 65.24 0.891196 65.1744 0.839868 65.1099 0.789506 65.0455 0.739486 64.9894 0.690077 64.9316 0.641838 64.8723 0.594196 64.8226 0.547432 64.7696 0.501311 64.7229 0.455796 64.6763 0.410646 64.6309 0.366311 64.5885 0.322423 64.547 0.278948 64.5094 0.235842 64.4708 0.192921 64.4374 0.150229 64.4062 0.109576 64.3706 0.0781433 64.2648 0.0598007 63.877 0.0457098 63.3086 0.03497 62.6441 0.0266262 61.9024 0.0200977 61.0968 0.0150151 60.2368 0.0111133 59.33 0.00818536 58.3831 0.00605677 57.4026 0.00457039 56.3949 0.00357956 55.3669 0.0029461 54.3257 0.00253832 53.2787 0.00221612 52.2336 0.00197459 51.1979 0.0015894 50.18 0.000884057 49.1859 48.2241 17.3262 8.38676 17.0429 10.8834 16.672 13.402 16.229 15.9391 15.7345 18.5018 15.2169 21.115 14.7174 23.8313 14.299 26.7468 14.0595 30.0245 14.1426 33.9158 14.7107 38.7452 15.8117 44.7384 17.2544 51.7097 18.5447 58.8138 19.3363 64.7584 19.6569 69.08 19.6552 72.0931 19.4616 74.2452 19.1585 75.8678 18.7881 77.1492 18.358 78.1544 17.8533 78.8289 17.2781 79.0992 16.6779 79.0255 16.0931 78.825 15.5294 78.6035 14.9866 78.3706 14.465 78.168 13.9599 77.9778 13.4749 77.7252 13.0097 77.5227 12.5515 77.3042 12.1098 76.9871 11.6906 76.7542 11.2904 76.503 10.8998 76.3173 10.5196 76.0136 10.1573 75.768 9.81018 75.4741 9.47278 75.2838 9.14747 74.9914 8.83596 74.7856 8.53268 74.4764 8.2401 74.2632 7.96184 73.9503 7.69321 73.7622 7.43178 73.4694 7.18294 73.284 6.94251 73.0018 6.70959 72.8214 6.485 72.5436 6.26671 72.3595 6.05454 72.0889 5.85322 71.9117 5.65791 71.6582 5.47093 71.4867 5.29063 71.2359 5.11524 71.0668 4.94664 70.8272 4.78376 70.6602 4.62574 70.4328 4.47356 70.2683 4.32576 70.0516 4.18335 69.894 4.04598 69.6882 3.91311 69.5374 3.78395 69.3383 3.65896 69.1912 3.53692 69.0086 3.41927 68.8656 3.30583 68.6885 3.19564 68.556 3.08727 68.387 2.98262 68.254 2.8817 68.092 2.78414 67.9706 2.68865 67.8088 2.59643 67.6876 2.50691 67.5528 2.42043 67.4283 2.33465 67.2929 2.25156 67.1921 2.17085 67.0541 2.09324 66.9219 2.01748 66.8318 1.9428 66.7138 1.86913 66.6048 1.79762 66.4931 1.72749 66.3953 1.65831 66.2951 1.59086 66.1966 1.5253 66.0977 1.46157 66.0084 1.39913 65.9179 1.3375 65.8353 1.27687 65.7465 1.21734 65.6687 1.15886 65.5888 1.10179 65.5082 1.04608 65.4349 0.991654 65.3643 0.938394 65.2932 0.886251 65.2266 0.834516 65.1616 0.783659 65.0964 0.733431 65.0397 0.683954 64.9811 0.635349 64.9209 0.587355 64.8706 0.540382 64.8166 0.494135 64.7691 0.448376 64.722 0.403117 64.6762 0.358512 64.6331 0.314444 64.5911 0.270827 64.553 0.227597 64.514 0.184434 64.4806 0.141733 64.4489 0.1008 64.4116 0.0699406 64.2957 0.0522273 63.8947 0.0386151 63.3222 0.0282278 62.6544 0.0202097 61.9104 0.0140206 61.103 0.0093022 60.2415 0.00579206 59.3335 0.00328275 58.3856 0.00159728 57.4043 0.000575336 56.3959 6.65136e-005 55.3674 -7.17753e-005 54.3258 3.03842e-005 53.2786 0.000270206 52.2333 0.000263424 51.1979 0.000744206 50.1795 0.000443398 49.1862 48.2245 18.396 8.56725 18.1097 11.1697 17.7296 13.7821 17.271 16.3978 16.7533 19.0195 16.2027 21.6655 15.6556 24.3784 15.1655 27.2369 14.8144 30.3755 14.7242 34.0059 15.0505 38.4188 15.8955 43.8934 17.1754 50.4298 18.5049 57.4844 19.4259 63.8373 19.8543 68.6516 19.9143 72.0331 19.7463 74.4132 19.4477 76.1663 19.0725 77.5244 18.6378 78.5891 18.1322 79.3345 17.5516 79.6798 16.9348 79.6423 16.3297 79.4301 15.7462 79.187 15.1849 78.9319 14.6499 78.7031 14.131 78.4967 13.6291 78.2271 13.1505 78.0013 12.684 77.7707 12.2344 77.4367 11.8031 77.1854 11.3912 76.915 10.9955 76.7129 10.6097 76.3994 10.2364 76.1413 9.88153 75.8289 9.54181 75.6235 9.21188 75.3213 8.89286 75.1046 8.58654 74.7827 8.29064 74.5591 8.00502 74.2359 7.73356 74.0337 7.47119 73.7318 7.21766 73.5375 6.97353 73.2459 6.74026 73.0547 6.51127 72.7726 6.29029 72.5805 6.07723 72.3019 5.87243 72.1165 5.67576 71.8549 5.48728 71.6752 5.30346 71.4198 5.12808 71.2422 4.9577 70.9976 4.79306 70.8249 4.63459 70.5913 4.4805 70.4224 4.3321 70.2 4.18928 70.0368 4.0508 69.8267 3.91721 69.671 3.7868 69.4687 3.66076 69.3172 3.5385 69.1309 3.42094 68.9831 3.30675 68.8027 3.1958 68.667 3.08705 68.4957 2.98218 68.3589 2.88125 68.193 2.78351 68.0683 2.68688 67.9054 2.59414 67.7803 2.50457 67.6424 2.41755 67.5153 2.3319 67.3786 2.24872 67.2753 2.1677 67.1351 2.0893 67.0003 2.01286 66.9083 1.93779 66.7888 1.86419 66.6784 1.79277 66.5645 1.72281 66.4652 1.654 66.3639 1.58657 66.264 1.52078 66.1635 1.45671 66.0725 1.39381 65.9808 1.33175 65.8974 1.27091 65.8073 1.21135 65.7283 1.15275 65.6474 1.09554 65.5654 1.0399 65.4905 0.985488 65.4187 0.931941 65.3468 0.879432 65.2791 0.827427 65.2136 0.776308 65.1475 0.725969 65.09 0.676456 65.0306 0.627596 64.9698 0.579458 64.9188 0.532367 64.8637 0.485989 64.8155 0.439956 64.7681 0.394594 64.7216 0.349849 64.6779 0.305728 64.6352 0.261949 64.5968 0.218281 64.5577 0.174956 64.5239 0.132708 64.4911 0.0919721 64.4523 0.061507 64.3262 0.0441637 63.912 0.0309561 63.3354 0.0209409 62.6645 0.01329 61.9181 0.00748166 61.1088 0.0031669 60.2458 8.66528e-005 59.3366 -0.00196672 58.3877 -0.00317225 57.4055 -0.00369326 56.3964 -0.00368339 55.3674 -0.0032877 54.3254 -0.00264353 53.278 -0.00189929 52.2326 -0.0011458 51.1971 -0.000278134 50.1787 -6.4472e-005 49.186 48.2245 19.521 8.74632 19.2297 11.461 18.8382 14.1736 18.3611 16.8748 17.8175 19.5631 17.2319 22.2512 16.6372 24.973 16.0799 27.7942 15.6293 30.8261 15.3887 34.2466 15.4977 38.3098 16.0864 43.3047 17.1535 49.3627 18.4444 56.1935 19.4706 62.8111 20.0133 68.1089 20.1469 71.8994 20.0129 74.5473 19.723 76.4562 19.344 77.9034 18.9034 79.0297 18.3958 79.8421 17.8111 80.2645 17.1795 80.2739 16.5532 80.0564 15.9508 79.7894 15.3721 79.5106 14.8177 79.2574 14.2829 79.0316 13.7706 78.7394 13.2825 78.4893 12.8037 78.2495 12.3406 77.8999 11.9008 77.6252 11.4828 77.3331 11.0776 77.1182 10.6823 76.7946 10.3042 76.5195 9.94369 76.1894 9.59516 75.9721 9.25981 75.6567 8.93992 75.4245 8.62856 75.0941 8.32689 74.8608 8.04025 74.5225 7.76469 74.3093 7.497 73.9995 7.24134 73.7932 6.99548 73.4918 6.75766 73.2925 6.52879 73.0015 6.30727 72.802 6.09051 72.5187 5.88415 72.3229 5.68537 72.0537 5.49492 71.8656 5.31104 71.6036 5.13312 71.4201 4.96145 71.1692 4.79642 70.9899 4.63623 70.7515 4.48186 70.5768 4.33268 70.3492 4.18875 70.1808 4.04999 69.9655 3.9156 69.8054 3.78462 69.5997 3.65852 69.4433 3.5357 69.2537 3.41706 69.1018 3.30183 68.9179 3.19071 68.7781 3.08203 68.6044 2.97715 68.4638 2.87627 68.2939 2.77812 68.1664 2.68131 68.0022 2.58856 67.8731 2.4985 67.7324 2.41104 67.6028 2.3253 67.4643 2.24209 67.3585 2.16148 67.2157 2.08249 67.0793 2.00578 66.985 1.93043 66.8642 1.85659 66.7522 1.78483 66.6362 1.71461 66.5354 1.64591 66.4326 1.57849 66.3314 1.51261 66.2293 1.44853 66.1366 1.3857 66.0437 1.32379 65.9593 1.26297 65.8682 1.20341 65.7878 1.14478 65.706 1.08758 65.6226 1.03195 65.5462 0.977505 65.4731 0.923804 65.4005 0.870997 65.3319 0.818718 65.2659 0.767336 65.1989 0.716939 65.1404 0.667468 65.0801 0.618616 65.0187 0.570583 64.9668 0.523399 64.9109 0.476804 64.8621 0.430564 64.8143 0.385163 64.767 0.340217 64.7228 0.295877 64.6795 0.251852 64.6408 0.207885 64.6016 0.164814 64.5669 0.123166 64.5328 0.0827009 64.4928 0.0528335 64.356 0.0356866 63.9292 0.0227709 63.3483 0.0131178 62.6741 0.00585742 61.9253 0.000464745 61.1142 -0.00340799 60.2497 -0.00601945 59.3392 -0.00757813 58.3892 -0.00826531 57.4061 -0.00824734 56.3964 -0.00768121 55.3668 -0.0067161 54.3245 -0.00549427 53.2767 -0.00414868 52.2313 -0.00275076 51.1957 -0.00142388 50.1773 -0.000616698 49.1852 48.2238 20.7036 8.92663 20.4042 11.7604 19.998 14.5799 19.4997 17.3731 18.9274 20.1355 18.3042 22.8743 17.661 25.6163 17.039 28.4162 16.4975 31.3676 16.1241 34.62 16.0405 38.3934 16.3831 42.9621 17.21 48.5358 18.3842 55.0193 19.4732 61.7221 20.1302 67.452 20.3482 71.6814 20.2571 74.6383 19.981 76.7323 19.6001 78.2843 19.1529 79.4769 18.6417 80.3533 18.0541 80.8522 17.4092 80.9188 16.7627 80.7029 16.1394 80.4127 15.5418 80.1082 14.9737 79.8256 14.4256 79.5797 13.8967 79.2683 13.3946 78.9915 12.9065 78.7376 12.4359 78.3705 11.9851 78.076 11.5548 77.7634 11.1438 77.5292 10.7446 77.1938 10.3569 76.9072 9.98821 76.5581 9.63744 76.3229 9.29825 75.9959 8.97082 75.7519 8.65732 75.4076 8.35452 75.1636 8.06083 74.8162 7.78134 74.5888 7.51371 74.2671 7.2543 74.0526 7.00463 73.7415 6.7673 73.5299 6.53618 73.2326 6.31171 73.0265 6.09534 72.7351 5.88625 72.532 5.68596 72.254 5.49516 72.0564 5.30856 71.7902 5.13066 71.598 4.95862 71.3413 4.79205 71.1565 4.63171 70.9118 4.47614 70.7323 4.32659 70.4987 4.1828 70.3245 4.04328 70.105 3.90858 69.9401 3.77728 69.731 3.65042 69.5702 3.52724 69.3769 3.40815 69.2208 3.29231 69.0338 3.18084 68.8895 3.07194 68.7133 2.96712 68.5686 2.86618 68.3948 2.76783 68.2648 2.67106 68.099 2.5783 67.9658 2.48804 67.8227 2.39984 67.691 2.31457 67.5496 2.23181 67.4412 2.15117 67.2964 2.07249 67.158 1.99658 67.0609 1.92115 66.9396 1.84669 66.8267 1.77402 66.7089 1.70333 66.6061 1.6344 66.5015 1.56693 66.3989 1.50104 66.2952 1.43716 66.2005 1.37457 66.1063 1.31295 66.0209 1.2524 65.9287 1.1932 65.847 1.1348 65.7644 1.07768 65.6797 1.02206 65.6018 0.967585 65.5276 0.913678 65.4544 0.860501 65.385 0.80812 65.3183 0.756747 65.2502 0.7065 65.1906 0.657029 65.1295 0.607903 65.0678 0.559937 65.0148 0.512932 64.9579 0.466457 64.9086 0.420218 64.8605 0.37471 64.8125 0.329564 64.768 0.28509 64.724 0.241135 64.6847 0.197383 64.6454 0.154827 64.6095 0.113177 64.5744 0.0723358 64.5336 0.0431767 64.3852 0.026468 63.9459 0.0139599 63.3608 0.00472338 62.6833 -0.00211195 61.9322 -0.00705026 61.1191 -0.0104412 60.2531 -0.0125435 59.3413 -0.0135672 58.3902 -0.013696 57.4063 -0.0130994 56.3958 -0.0119382 55.3657 -0.0103653 54.3229 -0.00852649 53.2749 -0.00655589 52.2293 -0.00456008 51.1937 -0.00278708 50.1756 -0.00126534 49.1837 48.2226 21.9482 9.11165 21.6366 12.072 21.2112 15.0053 20.6871 17.8972 20.0824 20.7402 19.419 23.5377 18.7253 26.31 18.0392 29.1023 17.4124 31.9944 16.9195 35.1129 16.6654 38.6474 16.7797 42.8478 17.3573 47.9583 18.3527 54.0239 19.4436 60.6311 20.2013 66.6943 20.5119 71.3708 20.4741 74.6762 20.2181 76.9883 19.8378 78.6645 19.3839 79.9308 18.8678 80.8694 18.2776 81.4424 17.6217 81.5746 16.9549 81.3697 16.3118 81.0559 15.6962 80.7238 15.1093 80.4125 14.545 80.144 14.0044 79.8089 13.4933 79.5026 12.9948 79.2361 12.5106 78.8546 12.0501 78.5364 11.6141 78.1995 11.1954 77.9479 10.7877 77.6015 10.3953 77.2996 10.0219 76.9315 9.66304 76.6817 9.3184 76.3405 8.99033 76.08 8.67281 75.7251 8.36419 75.4722 8.07029 75.1101 7.78892 74.8701 7.51643 74.5396 7.25442 74.3146 7.00369 73.9922 6.76244 73.7711 6.53072 73.4643 6.30783 73.2494 6.08941 72.9535 5.87987 72.7415 5.67904 72.4548 5.48525 72.2502 5.29928 71.9762 5.12035 71.7769 4.94673 71.5149 4.78087 71.3223 4.61973 71.073 4.46471 70.8874 4.315 70.6484 4.16972 70.4698 4.02974 70.245 3.89453 70.0753 3.76266 69.8629 3.63599 69.6968 3.51305 69.4998 3.39339 69.3405 3.27706 69.1501 3.16542 69.0012 3.05664 68.8221 2.95208 68.6732 2.85062 68.4963 2.75211 68.3633 2.65593 68.1951 2.56295 68.0588 2.47247 67.9132 2.3848 67.7786 2.3004 67.634 2.21783 67.5238 2.13743 67.3768 2.05917 67.2362 1.98362 67.1364 1.90789 67.0153 1.83314 66.9014 1.76015 66.7819 1.68927 66.677 1.62039 66.5704 1.5527 66.4666 1.48663 66.3613 1.42282 66.2643 1.36047 66.1686 1.29934 66.082 1.23934 65.9887 1.18057 65.9058 1.12248 65.8225 1.06552 65.7367 1.00982 65.6575 0.955156 65.5823 0.901163 65.5084 0.848047 65.4382 0.795816 65.3705 0.744436 65.3016 0.694243 65.2408 0.644935 65.1789 0.595974 65.1167 0.548157 65.0626 0.501067 65.005 0.454536 64.9551 0.408399 64.9067 0.362914 64.858 0.31783 64.8131 0.273472 64.7684 0.229922 64.7283 0.186684 64.6886 0.144481 64.6517 0.102343 64.6166 0.0609712 64.575 0.0325612 64.4136 0.0164545 63.962 0.00450222 63.3728 -0.00428717 62.6921 -0.0106456 61.9385 -0.0150862 61.1236 -0.0179528 60.2559 -0.0195037 59.3428 -0.0199503 58.3907 -0.0194789 57.4058 -0.0182625 56.3946 -0.0164657 55.3639 -0.0142458 54.3207 -0.0117533 53.2724 -0.00912909 52.2267 -0.00649767 51.1911 -0.00409505 50.1732 -0.0018559 49.1814 48.2207 23.2611 9.30628 22.9317 12.4014 22.4812 15.4557 21.9255 18.4529 21.2828 21.3829 20.5749 24.2457 19.8281 27.0568 19.0771 29.8533 18.3682 32.7033 17.7656 35.7156 17.3596 39.0533 17.2673 42.9401 17.6004 47.6251 18.3779 53.2465 19.3994 59.6096 20.228 65.8656 20.6326 70.9662 20.6577 74.6511 20.4294 77.2167 20.0537 79.0402 19.5938 80.3907 19.0714 81.3918 18.4786 82.0353 17.8141 82.2391 17.1281 82.0556 16.464 81.72 15.8288 81.359 15.2274 81.0139 14.6509 80.7204 14.0949 80.3649 13.5687 80.0288 13.0602 79.7446 12.5698 79.345 12.1005 79.0057 11.6521 78.6479 11.2259 78.3741 10.8162 78.0113 10.4171 77.6986 10.0352 77.3133 9.67434 77.0426 9.32756 76.6873 8.99297 76.4146 8.67323 76.0448 8.3652 75.7803 8.06493 75.4104 7.77818 75.1569 7.50625 74.8115 7.24292 74.5779 6.98894 74.2462 6.74806 74.012 6.51596 73.6964 6.28994 73.4754 6.07268 73.1708 5.8624 72.9518 5.66069 72.6565 5.46803 72.4429 5.28072 72.1635 5.10063 71.957 4.92749 71.688 4.76055 71.4893 4.60035 71.2332 4.44522 71.0425 4.29441 70.7992 4.1495 70.6147 4.00903 70.3855 3.87363 70.2107 3.74177 69.9947 3.61501 69.8236 3.4918 69.623 3.37213 69.4602 3.25614 69.2661 3.14473 69.1126 3.03644 68.9304 2.93171 68.7779 2.82965 68.5983 2.73159 68.4614 2.63597 68.2908 2.54297 68.1518 2.45304 68.0031 2.36609 67.8656 2.28274 67.7173 2.20049 67.6061 2.11979 67.4574 2.04157 67.3144 1.96578 67.2122 1.8899 67.0912 1.81538 66.9759 1.74278 66.8545 1.67216 66.7476 1.6032 66.6394 1.53548 66.5343 1.46962 66.4272 1.40612 66.3278 1.34416 66.2306 1.28335 66.1428 1.22355 66.0485 1.16513 65.9642 1.10743 65.8802 1.05053 65.7936 0.994842 65.7132 0.940217 65.6369 0.8864 65.5622 0.833548 65.491 0.781572 65.4225 0.730403 65.3528 0.680429 65.2908 0.631321 65.228 0.582501 65.1656 0.534699 65.1104 0.487615 65.052 0.441248 65.0015 0.395413 64.9525 0.350206 64.9032 0.30535 64.8579 0.260996 64.8127 0.217487 64.7718 0.174264 64.7318 0.132186 64.6938 0.0902157 64.6585 0.0491976 64.616 0.0217293 64.4411 0.00582199 63.9779 -0.00559736 63.3842 -0.0139126 62.7005 -0.019764 61.9444 -0.0236649 61.1275 -0.0259636 60.2582 -0.026919 59.3438 -0.0267444 58.3905 -0.0256292 57.4047 -0.02375 56.3927 -0.0212753 55.3614 -0.0183674 54.3178 -0.0151818 53.2692 -0.011865 52.2233 -0.00855229 51.1878 -0.00545599 50.1701 -0.00250647 49.1785 48.2182 24.6526 9.51649 24.2976 12.7564 23.8136 15.9397 23.2182 19.0484 22.5302 22.0709 21.7713 25.0046 20.9672 27.8609 20.1495 30.671 19.3597 33.4932 18.654 36.4213 18.1104 39.5969 17.8325 43.2181 17.9336 47.524 18.4746 52.7054 19.3607 58.7236 20.2158 65.0105 20.708 70.474 20.8032 74.5559 20.61 77.4099 20.2434 79.4067 19.7791 80.855 19.2498 81.9211 18.6538 82.6314 17.9831 82.9097 17.2794 82.7593 16.5947 82.4047 15.9416 82.0121 15.3217 81.6338 14.7276 81.3145 14.1596 80.933 13.6258 80.5626 13.109 80.2614 12.6058 79.8482 12.127 79.4845 11.6747 79.1002 11.2422 78.8065 10.8233 78.4301 10.4195 78.1024 10.0349 77.698 9.66768 77.4099 9.31627 77.0387 8.98149 76.7493 8.659 76.3673 8.34577 76.0935 8.045 75.7111 7.75826 75.4436 7.48229 75.0875 7.21707 74.8432 6.96322 74.5 6.71976 74.2555 6.48493 73.9312 6.26159 73.6988 6.04362 73.3887 5.83387 73.1615 5.63378 72.8566 5.43889 72.6378 5.2521 72.3503 5.073 72.1361 4.89924 71.8618 4.73326 71.6552 4.57222 71.3942 4.41667 71.198 4.2667 70.9492 4.12085 70.7606 3.98011 70.5262 3.84475 70.346 3.71262 70.1268 3.58613 69.9501 3.46305 69.7461 3.34425 69.579 3.22909 69.3812 3.11848 69.2232 3.01101 69.0378 2.90593 68.883 2.80353 68.7007 2.70614 68.5587 2.61128 68.3856 2.51855 68.2445 2.42914 68.0925 2.3428 67.9519 2.25982 67.8003 2.17811 67.6878 2.09784 67.5377 2.01932 67.393 1.94283 67.2887 1.86714 67.1669 1.79347 67.0496 1.72168 66.9263 1.6517 66.8176 1.58351 66.7076 1.51627 66.6015 1.45048 66.493 1.38697 66.3913 1.32499 66.2925 1.26449 66.2033 1.20524 66.1078 1.14718 66.0223 1.08982 65.9376 1.03305 65.8504 0.977391 65.7688 0.922828 65.6915 0.869287 65.6157 0.816696 65.5436 0.765107 65.4741 0.714409 65.4035 0.664707 65.3405 0.615725 65.2769 0.567261 65.214 0.519734 65.1579 0.472861 65.0989 0.426646 65.0477 0.380852 64.9983 0.335821 64.9482 0.291368 64.9024 0.247277 64.8568 0.20379 64.8153 0.160599 64.775 0.11861 64.7358 0.0767788 64.7004 0.0363305 64.6565 0.0101752 64.4672 -0.00547887 63.9936 -0.0164372 63.3952 -0.0241956 62.7082 -0.0294913 61.9497 -0.0328098 61.1308 -0.0344955 60.2599 -0.0348093 59.3441 -0.0339674 58.3897 -0.0321626 57.4029 -0.0295754 56.3902 -0.0263789 55.3582 -0.0227398 54.3141 -0.0188187 53.2653 -0.0147676 52.2193 -0.0107293 51.1838 -0.0068946 50.1662 -0.00322347 49.1748 48.215 26.1353 9.74846 25.7461 13.1457 25.2177 16.468 24.571 19.6951 23.8273 22.8146 23.0088 25.8231 22.1404 28.7292 21.2522 31.5593 20.3811 34.3643 19.5765 37.2259 18.906 40.2673 18.4605 43.6636 18.3454 47.6391 18.6447 52.4062 19.3465 58.0218 20.1722 64.1848 20.7351 69.9111 20.9047 74.3863 20.7547 77.5598 20.4027 79.7588 19.9363 81.3213 19.3999 82.4575 18.7997 83.2316 18.1252 83.5842 17.4059 83.4786 16.7006 83.11 16.0271 82.6857 15.3918 82.2691 14.7875 81.9188 14.205 81.5154 13.6554 81.1123 13.129 80.7878 12.6212 80.356 12.1362 79.9695 11.6726 79.5637 11.2321 79.2471 10.8124 78.8499 10.4053 78.5095 10.0124 78.0909 9.64236 77.7799 9.29009 77.391 8.95087 77.0886 8.62565 76.6925 8.31525 76.4039 8.01238 76.014 7.72042 75.7356 7.44367 75.3642 7.17839 75.1084 6.92144 74.757 6.67765 74.4993 6.44492 74.164 6.21966 73.924 6.00289 73.6055 5.79405 73.3704 5.59239 73.0583 5.39955 72.8306 5.21361 72.5362 5.0336 72.3161 4.86131 72.0341 4.69485 71.8217 4.53442 71.5546 4.37958 71.3529 4.22841 71.1004 4.08306 70.9059 3.94304 70.6662 3.80776 70.4813 3.67641 70.2582 3.55 70.0765 3.42719 69.8689 3.30942 69.6967 3.19519 69.4955 3.08594 69.3325 2.97923 69.1446 2.8745 68.9877 2.77309 68.8021 2.6764 68.6554 2.58176 68.4803 2.48908 68.3372 2.4001 68.1815 2.31427 68.0378 2.23146 67.8831 2.15015 67.7691 2.07019 67.6177 1.99178 67.4714 1.91542 67.3651 1.84051 67.2418 1.76768 67.1224 1.69694 66.997 1.62787 66.8867 1.56043 66.775 1.494 66.668 1.42878 66.5582 1.36539 66.4547 1.3035 66.3544 1.24327 66.2636 1.1842 66.1668 1.12639 66.0801 1.0693 65.9947 1.01266 65.907 0.957303 65.8242 0.903012 65.7457 0.849934 65.6688 0.797797 65.5957 0.746632 65.5252 0.696331 65.4538 0.647058 65.3898 0.59854 65.3255 0.550653 65.2619 0.503342 65.2052 0.456414 65.1458 0.410304 65.0938 0.36478 65.0438 0.31997 64.993 0.275635 64.9467 0.23185 64.9006 0.188884 64.8583 0.146306 64.8176 0.104223 64.7779 0.0619215 64.7427 0.0218148 64.6966 -0.00313809 64.4922 -0.0175692 64.008 -0.0279752 63.4056 -0.0351707 62.7154 -0.0398635 61.9544 -0.0425493 61.1335 -0.0435725 60.2609 -0.0431956 59.3437 -0.0416378 58.3881 -0.0390954 57.4003 -0.0357532 56.3868 -0.0317885 55.3542 -0.027373 54.3097 -0.0226721 53.2606 -0.0178426 52.2145 -0.0130328 51.1789 -0.00841655 50.1616 -0.00398897 49.1704 48.211 27.7202 10.0091 27.2872 13.5787 26.7035 17.0518 25.9928 20.4057 25.18 23.6274 24.2896 26.7135 23.347 29.6717 22.3811 32.5252 21.426 35.3194 20.5245 38.1274 19.7352 41.0566 19.1388 44.2601 18.8374 47.9405 18.9103 52.3332 19.3861 57.546 20.1158 63.455 20.7158 69.3111 20.9566 74.1455 20.857 77.6594 20.5259 80.0899 20.0609 81.7864 19.5179 83.0004 18.9129 83.8366 18.2358 84.2613 17.5044 84.21 16.7787 83.8357 16.0876 83.3768 15.4346 82.9221 14.8125 82.5409 14.2187 82.1092 13.6627 81.6683 13.1296 81.3209 12.6103 80.8752 12.1158 80.4641 11.6501 80.0294 11.2058 79.6914 10.777 79.2787 10.3656 78.9209 9.97342 78.4831 9.5993 78.154 9.24193 77.7483 8.90244 77.4281 8.5771 77.0179 8.26266 76.7183 7.95884 76.3178 7.66964 76.0248 7.39108 75.6428 7.12397 75.3755 6.86825 75.0127 6.62357 74.7439 6.38699 74.4006 6.16428 74.1467 5.94822 73.8216 5.73988 73.5787 5.54129 73.2568 5.34874 73.0231 5.16259 72.7224 4.98424 72.4945 4.81139 72.2069 4.64644 71.9867 4.48631 71.7148 4.33073 71.5085 4.18103 71.2501 4.03669 71.0503 3.89715 70.8057 3.76297 70.6155 3.63259 70.3886 3.50712 70.202 3.38582 69.9902 3.26858 69.814 3.15462 69.6094 3.04579 69.4413 2.93991 69.2504 2.83701 69.0906 2.73706 68.9021 2.64093 68.7516 2.54656 68.5746 2.45444 68.4293 2.3662 68.2697 2.28032 68.1236 2.19735 67.9661 2.11665 67.8498 2.0374 67.6969 1.9595 67.5493 1.8834 67.4412 1.80929 67.3159 1.73761 67.1941 1.66777 67.0669 1.59974 66.9547 1.53377 66.841 1.46845 66.7333 1.40384 66.6228 1.34089 66.5177 1.27922 66.4161 1.21925 66.3235 1.16028 66.2258 1.10257 66.1378 1.04581 66.0514 0.989855 65.963 0.934919 65.8791 0.880847 65.7998 0.828162 65.7215 0.776569 65.6473 0.726081 65.5757 0.676467 65.5034 0.627705 65.4386 0.579371 65.3738 0.53182 65.3095 0.484815 65.2522 0.438157 65.1925 0.392458 65.1395 0.347386 65.0889 0.302985 65.0374 0.258933 64.9908 0.215409 64.9441 0.172585 64.9011 0.130289 64.8599 0.0880315 64.8201 0.0456565 64.7851 0.00665581 64.7356 -0.0166324 64.5155 -0.0306161 64.022 -0.0403379 63.4153 -0.0468794 62.7219 -0.0509116 61.9584 -0.052911 61.1355 -0.0532191 60.2613 -0.0520998 59.3426 -0.0497749 58.3858 -0.0464447 57.397 -0.0422979 56.3827 -0.0375166 55.3495 -0.0322773 54.3045 -0.0267499 53.2551 -0.0210954 52.2088 -0.0154662 51.1733 -0.0100242 50.1562 -0.00479592 49.1651 48.2062 29.4137 10.3036 28.9283 14.0641 28.2777 17.7024 27.49 21.1934 26.5939 24.5236 25.6172 27.6902 24.5879 30.701 23.5342 33.5789 22.4884 36.3652 21.489 39.1268 20.5851 41.9604 19.8448 45.0004 19.3557 48.4296 19.2231 52.4659 19.4764 57.2927 20.0626 62.8688 20.6574 68.7164 20.9578 73.845 20.912 77.7053 20.6077 80.3942 20.1478 82.2463 19.5998 83.5485 18.9894 84.4471 18.3106 84.9401 17.5703 84.9502 16.8262 84.5799 16.1145 84.0884 15.4461 83.5904 14.8158 83.1713 14.2095 82.7154 13.638 82.2399 13.0959 81.863 12.5733 81.3978 12.074 80.9633 11.5992 80.5042 11.1481 80.1425 10.7203 79.7065 10.3081 79.333 9.90906 78.8822 9.53211 78.531 9.17621 78.1042 8.83429 77.77 8.50484 77.3473 8.19323 77.0299 7.89181 76.6193 7.59889 76.3177 7.32011 75.9216 7.05541 75.6402 6.79844 75.2697 6.55271 74.9897 6.31946 74.6338 6.09529 74.3709 5.87996 74.0369 5.67487 73.7838 5.47526 73.4564 5.28395 73.2145 5.10019 72.9061 4.92187 72.6728 4.75109 72.3777 4.58611 72.1516 4.4258 71.8751 4.2728 71.6615 4.12354 71.3993 3.98045 71.1934 3.84246 70.9437 3.70954 70.7484 3.58101 70.5171 3.45686 70.3261 3.33683 70.1102 3.22031 69.9305 3.10734 69.7224 2.99894 69.5497 2.894 69.3554 2.79243 69.1922 2.69335 69.0012 2.59817 68.8468 2.50525 68.6675 2.41459 68.52 2.32663 68.3577 2.24089 68.2094 2.1585 68.0485 2.07859 67.9297 2.00009 67.7754 1.92264 67.6267 1.847 67.5168 1.77401 67.3889 1.70348 67.2646 1.63487 67.1355 1.56786 67.0217 1.50265 66.9062 1.43828 66.7977 1.3747 66.6864 1.31217 66.5802 1.25089 66.4774 1.19136 66.3831 1.13286 66.2843 1.07596 66.1947 1.01987 66.1075 0.964485 66.0183 0.909963 65.9337 0.856517 65.8533 0.804497 65.7735 0.753529 65.6983 0.703586 65.6257 0.654439 65.5525 0.606161 65.4868 0.558215 65.4217 0.511173 65.3565 0.464655 65.2987 0.418255 65.2389 0.372749 65.185 0.327989 65.1337 0.284071 65.0813 0.240606 65.0342 0.197369 64.9874 0.154368 64.9441 0.112078 64.9022 0.070009 64.8622 0.0283585 64.8267 -0.00871917 64.7726 -0.0308535 64.5376 -0.0443549 64.0355 -0.0534686 63.4244 -0.0593376 62.7278 -0.062662 61.9617 -0.0639218 61.1367 -0.0634604 60.2608 -0.0615442 59.3407 -0.0583986 58.3826 -0.0542277 57.3928 -0.0492247 56.3777 -0.0435763 55.3438 -0.0374633 54.2984 -0.0310602 53.2487 -0.024532 52.2023 -0.0180335 51.1668 -0.0117197 50.1499 -0.00564245 49.1591 48.2006 31.2017 10.6294 30.6624 14.6034 29.9379 18.4269 29.0621 22.0692 28.0694 25.5162 26.9928 28.7669 25.8629 31.8309 24.7096 34.7322 23.564 37.5108 22.4618 40.229 21.4454 42.9769 20.5705 45.8753 19.9127 49.0874 19.5715 52.8071 19.608 57.2562 20.0179 62.459 20.5621 68.1721 20.9045 73.5026 20.9136 77.6962 20.6419 80.6658 20.1918 82.6964 19.6408 84.0995 19.0251 85.0628 18.3447 85.6204 17.5994 85.6955 16.8387 85.3407 16.1105 84.8166 15.4262 84.2747 14.7787 83.8188 14.1624 83.3317 13.5852 82.8171 13.0373 82.411 12.506 81.9291 11.9985 81.4707 11.5226 80.9801 11.0707 80.5945 10.6358 80.1413 10.2199 79.749 9.82403 79.278 9.44607 78.9089 9.0851 78.4652 8.74331 78.1118 8.41776 77.6729 8.10347 77.3442 7.79915 76.9236 7.50996 76.6069 7.2319 76.1996 6.96633 75.9058 6.71294 75.523 6.46999 75.2326 6.23462 74.8692 6.012 74.5935 5.79904 74.2498 5.59304 73.9898 5.39623 73.6533 5.20666 73.404 5.02294 73.0899 4.84698 72.8488 4.67681 72.5479 4.51309 72.3153 4.35597 72.0322 4.20357 71.8139 4.05664 71.5463 3.91617 71.3338 3.77944 71.0805 3.64829 70.8796 3.52065 70.6447 3.39726 70.4495 3.27904 70.2285 3.16429 70.0452 3.05299 69.8337 2.94549 69.6572 2.84186 69.459 2.74097 69.293 2.64249 69.0996 2.54863 68.9406 2.45706 68.7591 2.368 68.609 2.28091 68.4448 2.1956 68.2947 2.11425 68.1298 2.03572 68.0082 1.95813 67.853 1.8818 67.7031 1.8074 67.5912 1.73563 67.4607 1.66574 67.3345 1.59718 67.2041 1.53049 67.0884 1.46638 66.9703 1.40312 66.8609 1.34048 66.749 1.27866 66.642 1.21825 66.5378 1.15963 66.4417 1.10201 66.3419 1.04586 66.2508 0.990536 66.1628 0.936196 66.0727 0.882557 65.9873 0.830056 65.9058 0.778778 65.8248 0.728426 65.7487 0.678921 65.6752 0.630173 65.6013 0.582404 65.5346 0.534999 65.4691 0.488501 65.403 0.442442 65.3448 0.396478 65.2849 0.351549 65.23 0.307333 65.1779 0.263577 65.1251 0.220241 65.0776 0.177387 65.0302 0.134789 64.9867 0.0928499 64.9441 0.0510624 64.904 0.010139 64.8676 -0.0259542 64.8087 -0.0462926 64.5579 -0.0590432 64.0482 -0.0674593 63.4328 -0.0725942 62.733 -0.0751513 61.9643 -0.0756124 61.1372 -0.0743229 60.2595 -0.0715524 59.3379 -0.0675297 58.3786 -0.0624628 57.3878 -0.0565494 56.3717 -0.0499806 55.3372 -0.042942 54.2913 -0.035612 53.2413 -0.0281588 52.1948 -0.02074 51.1594 -0.0135066 50.1426 -0.00653002 49.1521 48.194 33.0244 10.9702 32.4459 15.1819 31.6563 19.2164 30.6925 23.0331 29.5962 26.6125 28.4091 29.954 27.1671 33.0729 25.9027 35.9966 24.6478 38.7657 23.436 41.4407 22.3064 44.1064 21.3061 46.8756 20.5007 49.8928 19.9686 53.3392 19.8048 57.42 20.0064 62.2574 20.4463 67.7322 20.7991 73.1498 20.8569 77.6384 20.6222 80.9005 20.1869 83.1317 19.6358 84.6506 19.0154 85.6831 18.3337 86.3021 17.586 86.4432 16.8127 86.114 16.0654 85.564 15.366 84.9742 14.7121 84.4727 14.0862 83.9575 13.4963 83.407 12.9403 82.967 12.4068 82.4627 11.8975 81.98 11.4161 81.4616 10.9588 81.0517 10.5257 80.5744 10.111 80.1637 9.70992 79.6791 9.32983 79.289 8.97375 78.8213 8.63229 78.4532 8.30182 78.0034 7.9897 77.6563 7.69112 77.2222 7.40065 76.8973 7.12274 76.4775 6.86153 76.167 6.60873 75.7758 6.36525 75.4761 6.13463 75.0998 5.91416 74.814 5.70125 74.4628 5.49958 74.1915 5.30327 73.8496 5.11439 73.5929 4.93417 73.2701 4.75917 73.0238 4.59155 72.7155 4.4302 72.4767 4.27356 72.1888 4.12414 71.9633 3.97989 71.6905 3.84081 71.4729 3.70609 71.2152 3.57608 71.0096 3.45008 70.7707 3.3288 70.5708 3.21224 70.345 3.09872 70.1588 2.98942 69.943 2.88444 69.7622 2.78302 69.5604 2.68333 69.3927 2.58579 69.1972 2.49254 69.0339 2.40218 68.8495 2.31448 68.6967 2.22817 68.5311 2.14463 68.3782 2.06489 68.2095 1.98795 68.0852 1.91147 67.9295 1.83603 67.7785 1.76295 67.6643 1.69229 67.5313 1.62305 67.4038 1.55543 67.2717 1.48959 67.1542 1.4259 67.034 1.36318 66.9236 1.30131 66.8109 1.24032 66.703 1.18131 66.5968 1.12389 66.4991 1.06729 66.3985 1.01221 66.3059 0.958161 66.2169 0.905201 66.1256 0.852808 66.0397 0.801231 65.9573 0.750521 65.8755 0.700775 65.7984 0.651837 65.7241 0.603703 65.6494 0.556338 65.582 0.509214 65.5163 0.46316 65.4491 0.417809 65.3901 0.372709 65.33 0.328515 65.2741 0.284939 65.2214 0.241598 65.1684 0.198779 65.1204 0.156577 65.0724 0.114637 65.0286 0.0732802 64.9855 0.0315256 64.9457 -0.0091857 64.9083 -0.0448539 64.8444 -0.0633865 64.5765 -0.0750149 64.0599 -0.0824671 63.4403 -0.0867273 62.7372 -0.0884272 61.966 -0.0880176 61.1368 -0.0858353 60.2573 -0.082149 59.3342 -0.0771896 58.3737 -0.0711687 57.3818 -0.0642882 56.3649 -0.0567436 55.3297 -0.0487249 54.2833 -0.0404144 53.233 -0.0319837 52.1864 -0.0235927 51.151 -0.0153905 50.1344 -0.0074633 49.1442 48.1866 34.7579 11.2926 34.1785 15.7613 33.3597 20.0353 32.3331 24.0596 31.1447 27.8009 29.8464 31.2524 28.4859 34.4334 27.1026 37.3799 25.7303 40.138 24.4028 42.7682 23.1569 45.3524 22.0341 47.9984 21.0873 50.8395 20.3866 54.04 20.0221 57.7844 20.0208 62.2588 20.3195 67.4334 20.6459 72.8235 20.7393 77.545 20.5428 81.097 20.1267 83.5478 19.5788 85.1985 18.9553 86.3066 18.2726 86.9848 17.5251 87.1907 16.7424 86.8967 15.9815 86.3248 15.2685 85.6872 14.5997 85.1415 13.9651 84.5921 13.3714 84.0007 12.8123 83.5261 12.274 83.001 11.7583 82.4956 11.276 81.9439 10.8214 81.5064 10.3848 81.011 9.96742 80.581 9.57117 80.0754 9.19379 79.6664 8.83319 79.1819 8.49204 78.7944 8.16838 78.327 7.85688 77.9678 7.55534 77.5237 7.26955 77.1831 6.99466 76.7524 6.73298 76.4287 6.48386 76.025 6.24638 75.7136 6.01676 75.3294 5.79754 75.0332 5.58965 74.6706 5.38799 74.3932 5.19402 74.0435 5.0093 73.7776 4.83036 73.449 4.65882 73.1953 4.49382 72.8805 4.33353 72.637 4.18112 72.3412 4.03381 72.1106 3.89181 71.8325 3.75526 71.6095 3.62178 71.3487 3.49396 71.1374 3.37035 70.8944 3.25034 70.6908 3.13549 70.4599 3.02412 70.2701 2.9177 70.0494 2.81528 69.8646 2.71565 69.6601 2.61785 69.4905 2.52241 69.2926 2.43051 69.1258 2.34094 68.939 2.25455 68.7831 2.17016 68.6155 2.0883 68.4601 2.00987 68.288 1.93389 68.1611 1.85757 68.0058 1.78373 67.8524 1.7126 67.7354 1.64365 67.6003 1.57621 67.4712 1.5098 67.3381 1.44454 67.2195 1.38112 67.0974 1.31884 66.9859 1.25784 66.8719 1.19813 66.7627 1.14032 66.6546 1.08375 66.5557 1.02855 66.4537 0.974952 66.3595 0.922421 66.2694 0.870833 66.1772 0.81962 66.0909 0.769209 66.0078 0.71941 65.9253 0.670366 65.8474 0.621998 65.7725 0.574464 65.697 0.527708 65.6287 0.481381 65.5626 0.436135 65.4943 0.391465 65.4348 0.347001 65.3744 0.303307 65.3178 0.260551 65.2642 0.218114 65.2109 0.176088 65.1624 0.134491 65.114 0.0930123 65.0701 0.0520862 65.0264 0.0106644 64.9871 -0.0294716 64.9485 -0.0638196 64.8787 -0.08137 64.594 -0.0920186 64.0705 -0.0984537 63.4467 -0.101756 62.7405 -0.102519 61.9668 -0.101167 61.1354 -0.0980248 60.2542 -0.0933586 59.3296 -0.0874003 58.3677 -0.0803648 57.3747 -0.0724578 56.357 -0.0638795 55.3211 -0.054824 54.2743 -0.0454776 53.2237 -0.0360154 52.1769 -0.0266002 51.1416 -0.0173814 50.1252 -0.00845532 49.1352 48.1781 36.2471 11.5564 35.7189 16.2895 34.9284 20.8257 33.8936 25.0945 32.6537 29.0407 31.2661 32.64 29.7931 35.9064 28.2891 38.8839 26.7959 41.6312 25.3487 44.2154 23.9834 46.7177 22.7392 49.2426 21.6604 51.9183 20.8076 54.8927 20.2499 58.3421 20.0498 62.4589 20.1837 67.2995 20.4471 72.56 20.5581 77.4341 20.3979 81.2572 20.0047 83.9409 19.4638 85.7394 18.8391 86.9313 18.1559 87.668 17.4107 87.9359 16.6231 87.6843 15.8481 87.0999 15.1217 86.4136 14.4485 85.8146 13.8091 85.2316 13.2067 84.603 12.6415 84.0913 12.1023 83.5402 11.5887 83.0093 11.1045 82.4281 10.6459 81.965 10.2112 81.4456 9.79836 80.9939 9.40069 80.473 9.0223 80.0448 8.66877 79.5354 8.33157 79.1316 8.00482 78.6538 7.69461 78.2781 7.40012 77.8182 7.11588 77.4674 6.8422 77.0261 6.58635 76.6846 6.34044 76.2709 6.10347 75.9505 5.87826 75.5546 5.66494 75.2465 5.45771 74.8779 5.26173 74.5891 5.07168 74.2336 4.88838 73.9609 4.71361 73.6238 4.54513 73.3638 4.38246 73.0432 4.22685 72.7926 4.07602 72.4921 3.93143 72.2552 3.79249 71.9715 3.65727 71.7447 3.52682 71.4791 3.40141 71.2628 3.27983 71.0159 3.16232 70.8083 3.05028 70.5719 2.94179 70.3786 2.83726 70.154 2.73611 69.9657 2.63819 69.758 2.54317 69.5855 2.45065 69.3852 2.36056 69.2159 2.27316 69.0264 2.18896 68.8673 2.10582 68.6986 2.02559 68.5403 1.94786 68.3657 1.87269 68.2363 1.79813 68.0804 1.72624 67.9242 1.65669 67.805 1.58901 67.668 1.52268 67.5375 1.45753 67.4032 1.39401 67.283 1.3323 67.1591 1.27193 67.0463 1.21237 66.9314 1.15353 66.8215 1.09612 66.712 1.04033 66.6115 0.986459 66.5076 0.934169 66.4118 0.883043 66.3206 0.832733 66.2275 0.782862 66.1408 0.733612 66.057 0.684884 65.974 0.636745 65.8956 0.58918 65.82 0.54242 65.7437 0.49635 65.6748 0.450932 65.608 0.406495 65.5387 0.362816 65.4785 0.319637 65.4176 0.276905 65.3606 0.234844 65.3063 0.192907 65.2528 0.151452 65.2039 0.110378 65.1551 0.0694483 65.111 0.0291274 65.0667 -0.0110979 65.0274 -0.0500547 64.9874 -0.0831538 64.9118 -0.0998625 64.6107 -0.109777 64.0804 -0.115312 63.4522 -0.117657 62.7429 -0.117438 61.9665 -0.115083 61.1331 -0.110917 60.25 -0.105206 59.3239 -0.0981844 58.3607 -0.090071 57.3666 -0.0810756 56.348 -0.071403 55.3115 -0.0612516 54.2641 -0.0508116 53.2132 -0.0402622 52.1664 -0.0297703 51.1311 -0.0194901 50.1149 -0.00952981 49.1253 48.1686 37.3904 11.7372 36.9511 16.7288 36.2415 21.5352 35.2613 26.0748 34.0322 30.2698 32.6039 34.0682 31.0469 37.4635 29.433 40.4977 27.8214 43.2429 26.2549 45.7819 24.7699 48.2027 23.4048 50.6077 22.2002 53.123 21.2041 55.8888 20.4774 59.0688 20.0858 62.8505 20.0412 67.3442 20.2071 72.394 20.3119 77.3293 20.1819 81.3872 19.8142 84.3086 19.2841 86.2696 18.6608 87.5546 17.9783 88.3505 17.237 88.6771 16.4484 88.4729 15.6655 87.8828 14.9302 87.1489 14.2467 86.4981 13.6004 85.878 12.9968 85.2066 12.4319 84.6561 11.8921 84.08 11.3748 83.5266 10.891 82.9119 10.4391 82.4168 10.0067 81.878 9.59174 81.4089 9.19924 80.8655 8.82767 80.4163 8.4729 79.8902 8.13584 79.4686 7.81741 78.9722 7.51213 78.5833 7.21712 78.1132 6.93736 77.7471 6.67038 77.2931 6.41548 76.9394 6.1725 76.5139 5.94283 76.1802 5.72211 75.7754 5.50953 75.4591 5.30968 75.0777 5.1168 74.782 4.93015 74.4202 4.75369 74.1374 4.58264 73.7948 4.41795 73.5285 4.25964 73.2015 4.1055 72.9467 3.95775 72.6398 3.81612 72.3968 3.67863 72.109 3.5472 71.8761 3.41958 71.6067 3.29668 71.3857 3.17907 71.1335 3.06483 70.9226 2.95549 70.6812 2.84988 70.4842 2.74685 70.257 2.64753 70.0651 2.55249 69.853 2.46015 69.6779 2.3701 69.4752 2.28235 69.3036 2.19733 69.1115 2.11573 68.9489 2.0345 68.7798 1.95606 68.6188 1.88033 68.4414 1.80674 68.3099 1.73343 68.1537 1.66289 67.9948 1.59429 67.8736 1.52765 67.7346 1.46306 67.6021 1.39983 67.4665 1.3389 67.344 1.27919 67.2188 1.22063 67.1049 1.1625 66.9896 1.10522 66.8788 1.04911 66.7681 0.994726 66.6658 0.942051 66.5603 0.890514 66.4633 0.840138 66.3709 0.790851 66.2768 0.742269 66.1894 0.694167 66.1051 0.64661 66.0216 0.599561 65.9426 0.55326 65.8663 0.507625 65.7894 0.462535 65.7199 0.418231 65.6523 0.374602 65.5824 0.331819 65.5213 0.289667 65.4598 0.247726 65.4025 0.206429 65.3476 0.165349 65.2939 0.124704 65.2445 0.0844636 65.1953 0.0445573 65.1509 0.00518937 65.1061 -0.0337041 65.0663 -0.0713866 65.0251 -0.10365 64.9441 -0.119354 64.6264 -0.128471 64.0895 -0.133101 63.4569 -0.134463 62.7442 -0.133214 61.9653 -0.129796 61.1297 -0.12454 60.2448 -0.117717 59.317 -0.109565 58.3525 -0.100308 57.3573 -0.0901595 56.3378 -0.0793292 55.3006 -0.0680197 54.2528 -0.0564253 53.2016 -0.0447288 52.1547 -0.0331009 51.1195 -0.0217001 50.1035 -0.0106452 49.1142 48.1579 38.1791 11.8366 37.8369 17.071 37.2304 22.1418 36.3463 26.9588 35.1859 31.4302 33.7783 35.4758 32.1863 39.0555 30.4925 42.1915 28.7758 44.9596 27.096 47.4617 25.4958 49.8029 24.0129 52.0907 22.6872 54.4486 21.5591 57.0169 20.6807 59.9472 20.1135 63.4177 19.8891 67.5686 19.9303 72.3529 20.0013 77.2582 19.8905 81.498 19.5487 84.6504 19.0328 86.7854 18.4139 88.1735 17.7337 89.0307 16.9983 89.4126 16.2129 89.2582 15.4238 88.6719 14.6789 87.8938 13.9942 87.1829 13.35 86.5222 12.7417 85.8149 12.1735 85.2243 11.6353 84.6182 11.1243 84.0376 10.6437 83.3926 10.1904 82.8701 9.76144 82.3069 9.35546 81.8149 8.9661 81.2549 8.59323 80.7892 8.2445 80.2389 7.9157 79.7974 7.5996 79.2883 7.29669 78.8862 7.01062 78.3993 6.73664 78.0211 6.47196 77.5578 6.22335 77.1881 5.98709 76.7501 5.75929 76.408 5.54206 75.9926 5.33781 75.6634 5.14056 75.275 4.953 74.9696 4.77398 74.5993 4.59996 74.3114 4.43351 73.9613 4.27455 73.6874 4.11943 73.3566 3.97059 73.0956 3.82595 72.7845 3.6871 72.5357 3.55423 72.2418 3.42505 72.0053 3.30062 71.7312 3.18168 71.5046 3.06737 71.2479 2.9566 71.0333 2.8495 70.7883 2.74677 70.587 2.64654 70.3572 2.55015 70.1614 2.45842 69.9448 2.36872 69.7676 2.28101 69.5629 2.19559 69.389 2.1134 69.1937 2.03448 69.0279 1.95553 68.8588 1.87997 68.6943 1.80561 68.5158 1.73341 68.3821 1.6624 68.2247 1.59353 68.0636 1.52692 67.9402 1.46248 67.7991 1.39957 67.665 1.33795 67.5281 1.27833 67.4036 1.21962 67.2775 1.1629 67.1616 1.10723 67.0452 1.05234 66.9337 0.998396 66.8221 0.945904 66.7183 0.894563 66.6116 0.843893 66.514 0.794289 66.4205 0.74562 66.3255 0.697887 66.2371 0.65097 66.152 0.604802 66.0678 0.559007 65.9884 0.514057 65.9113 0.469686 65.8337 0.42595 65.7636 0.383172 65.6951 0.340637 65.6249 0.29858 65.5633 0.257125 65.5012 0.215933 65.4437 0.175493 65.388 0.1356 65.3338 0.0961058 65.284 0.0570494 65.2344 0.018396 65.1896 -0.0199789 65.1445 -0.0573959 65.1037 -0.0943657 65.0621 -0.125744 64.9755 -0.140261 64.6409 -0.148366 64.0976 -0.151961 63.4605 -0.152252 62.7445 -0.149898 61.9629 -0.145345 61.1251 -0.138927 60.2383 -0.130921 59.309 -0.121568 58.3432 -0.111097 57.3469 -0.0997279 56.3264 -0.0876733 55.2886 -0.0751403 54.2403 -0.0623265 53.1888 -0.0494175 52.1418 -0.0365851 51.1066 -0.0239856 50.0909 -0.0117383 49.102 48.1462 38.6958 11.8778 38.4197 17.347 37.8974 22.6641 37.1126 27.7437 36.0503 32.4925 34.7133 36.8128 33.1416 40.6272 31.413 43.9201 29.6194 46.7531 27.841 49.2401 26.1348 51.5091 24.5418 53.6837 23.1018 55.8886 21.8529 58.2659 20.8376 60.9624 20.1116 64.1438 19.7154 67.9648 19.6157 72.4526 19.6266 77.2474 19.5201 81.6044 19.2017 84.9689 18.703 87.2842 18.0919 88.7846 17.4161 89.7065 16.6883 90.1405 15.9099 90.0366 15.1211 89.4607 14.3742 88.6407 13.6847 87.8723 13.0364 87.1705 12.4321 86.4192 11.8693 85.7871 11.3351 85.1524 10.8247 84.5479 10.3468 83.8705 9.90388 83.313 9.48307 82.7277 9.07686 82.2211 8.69217 81.6396 8.33139 81.15 7.98789 80.5824 7.6589 80.1264 7.34993 79.5973 7.05647 79.1797 6.77426 78.6815 6.50602 78.2894 6.25331 77.8105 6.0094 77.432 5.77503 76.9845 5.55443 76.6286 5.34461 76.2024 5.14288 75.8651 4.9538 75.464 4.77273 75.1507 4.59604 74.7759 4.42832 74.4791 4.26784 74.1218 4.11281 73.8424 3.9633 73.5061 3.81807 73.2408 3.6779 72.9246 3.5449 72.6687 3.41497 72.3718 3.29019 72.1301 3.17062 71.8507 3.0553 71.62 2.94467 71.3585 2.83697 71.141 2.73204 70.8933 2.63305 70.686 2.53702 70.4533 2.44363 70.2548 2.35497 70.0334 2.26834 69.8542 2.1834 69.6478 2.10108 69.4713 2.02143 69.2733 1.94484 69.1044 1.86864 68.935 1.79529 68.7677 1.72358 68.5875 1.65398 68.4517 1.5852 68.2935 1.51879 68.1301 1.45472 68.0043 1.3923 67.8615 1.33106 67.7263 1.27098 67.5882 1.21287 67.4617 1.15575 67.3347 1.10114 67.2162 1.04763 67.0987 0.994946 66.9864 0.943124 66.8739 0.892143 66.7693 0.842049 66.6617 0.792698 66.5634 0.744436 66.4688 0.696848 66.3731 0.650224 66.2837 0.604593 66.1977 0.55982 66.1125 0.515693 66.0326 0.472244 65.9547 0.429088 65.8769 0.386523 65.8062 0.344709 65.7369 0.303135 65.6665 0.262195 65.6043 0.222042 65.5414 0.182234 65.4835 0.14278 65.4275 0.104098 65.3724 0.0658612 65.3222 0.0279155 65.2723 -0.00933512 65.2268 -0.0469095 65.1821 -0.0832935 65.1401 -0.11985 65.0986 -0.149682 65.0053 -0.162658 64.6539 -0.169556 64.1045 -0.171985 63.4629 -0.171098 62.7436 -0.167547 61.9594 -0.161774 61.1193 -0.154115 60.2307 -0.144847 59.2998 -0.134219 58.3325 -0.122462 57.3351 -0.1098 56.3138 -0.0964515 55.2752 -0.0826266 54.2264 -0.0685262 53.1747 -0.0543382 52.1276 -0.0402361 51.0925 -0.0263765 50.0771 -0.0128875 49.0885 48.1333 38.9611 11.8781 38.7342 17.5739 38.2723 23.126 37.5657 28.4503 36.5991 33.4591 35.358 38.0539 33.8514 42.1338 32.1359 45.6356 30.3046 48.5844 28.4529 51.0918 26.6561 53.3059 24.9658 55.374 23.4217 57.4327 22.063 59.6245 20.9263 62.0991 20.0587 65.0114 19.5038 68.5196 19.2575 72.6989 19.186 77.3189 19.0673 81.7231 18.7675 85.2686 18.2877 87.764 17.6876 89.3847 17.0191 90.375 16.3009 90.8587 15.5334 90.804 14.7486 90.2455 13.998 89.3913 13.3116 88.5588 12.6728 87.8093 12.0702 87.0218 11.5089 86.3484 10.981 85.6803 10.4813 85.0476 10.0121 84.3397 9.57075 83.7544 9.15392 83.1446 8.76184 82.6132 8.38814 82.0133 8.02851 81.5096 7.69044 80.9205 7.37434 80.4425 7.07204 79.8996 6.78117 79.4706 6.50852 78.9541 6.25068 78.5472 6.00227 78.0589 5.76619 77.668 5.54367 77.207 5.32924 76.843 5.12329 76.4084 4.93008 76.0583 4.74546 75.6487 4.56752 75.3286 4.4004 74.9431 4.23821 74.6413 4.08178 74.2782 3.9333 73.9909 3.7887 73.6507 3.65008 73.3794 3.517 73.0577 3.38679 72.7989 3.2627 72.4958 3.1433 72.2495 3.02775 71.9663 2.91712 71.7306 2.80898 71.4666 2.70467 71.2453 2.60461 70.9933 2.50986 70.7807 2.41793 70.5452 2.32724 70.3455 2.24118 70.1195 2.1584 69.937 2.07686 69.7294 1.99763 69.5506 1.92094 69.35 1.84696 69.1784 1.77391 69.008 1.70372 68.8379 1.63449 68.6567 1.56712 68.5191 1.50089 68.3597 1.43655 68.1944 1.37509 68.0657 1.31546 67.9211 1.25698 67.7847 1.1997 67.6454 1.14363 67.5178 1.0887 67.3896 1.03587 67.269 0.983906 67.1507 0.932929 67.0374 0.88286 66.924 0.833419 66.8188 0.784807 66.7103 0.736891 66.6113 0.690274 66.5154 0.644315 66.419 0.59926 66.3288 0.555116 66.2418 0.511553 66.1561 0.469121 66.075 0.427282 65.9966 0.385555 65.9186 0.344494 65.8472 0.303844 65.7776 0.263419 65.7069 0.223473 65.6442 0.184211 65.5806 0.145884 65.5218 0.107891 65.4654 0.0704988 65.4098 0.0333118 65.3594 -0.00358226 65.3092 -0.0400263 65.2633 -0.0762953 65.2183 -0.111777 65.1755 -0.147505 65.1344 -0.175234 65.033 -0.186476 64.6652 -0.192057 64.1101 -0.193217 63.464 -0.191052 62.7415 -0.186209 61.9545 -0.179126 61.1122 -0.170139 60.2217 -0.159528 59.2891 -0.147544 58.3206 -0.134424 57.322 -0.120396 56.2998 -0.105681 55.2605 -0.0904936 54.2112 -0.0750385 53.1593 -0.0595068 52.1121 -0.0440767 51.0771 -0.0289118 50.0619 -0.0141546 49.0737 48.1192 38.9986 11.8553 38.8025 17.77 38.381 23.5475 37.7287 29.1026 36.8355 34.3524 35.6865 39.2029 34.2708 43.5495 32.6105 47.2959 30.7827 50.4122 28.8908 52.9838 27.0261 55.1705 25.255 57.1451 23.6218 59.0658 22.1667 61.0797 20.9241 63.3418 19.933 66.0025 19.2366 69.2161 18.8473 73.0881 18.6776 77.4886 18.5287 81.872 18.2403 85.5571 17.7798 88.2245 17.1941 89.9704 16.5359 91.0333 15.8298 91.5647 15.0769 91.557 14.3019 91.0205 13.5589 90.1342 12.8752 89.2425 12.2377 88.4468 11.6449 87.6146 11.0956 86.8977 10.5775 86.1983 10.0847 85.5404 9.62099 84.8035 9.19303 84.1823 8.78976 83.5478 8.40129 83.0016 8.03285 82.3817 7.6901 81.8524 7.36471 81.2459 7.05193 80.7553 6.75743 80.1941 6.48013 79.7479 6.21351 79.2208 5.95987 78.8008 5.72444 78.2943 5.49948 77.893 5.28265 77.4238 5.07758 77.0481 4.88244 76.6035 4.69471 76.246 4.51555 75.8278 4.34702 75.4971 4.182 75.1081 4.02477 74.7986 3.87603 74.4269 3.73427 74.1327 3.59846 73.7865 3.46645 73.5114 3.33788 73.1863 3.21476 72.922 3.09679 72.6138 2.98261 72.3636 2.87135 72.0775 2.76405 71.8379 2.66088 71.5698 2.5624 71.3438 2.46756 71.0882 2.37582 70.8724 2.28705 70.634 2.20022 70.4323 2.11753 70.2022 2.03868 70.0158 1.96082 69.8073 1.88503 69.6264 1.81176 69.4233 1.74112 69.2491 1.67148 69.0777 1.60376 68.9056 1.53735 68.7232 1.4728 68.5836 1.40913 68.4234 1.34777 68.2558 1.28905 68.1244 1.23223 67.9779 1.1767 67.8403 1.12256 67.6996 1.06914 67.5712 1.01705 67.4417 0.966225 67.3199 0.916113 67.2008 0.867093 67.0864 0.818848 66.9722 0.770833 66.8668 0.723907 66.7572 0.677629 66.6575 0.632653 66.5604 0.588178 66.4635 0.544883 66.3721 0.502586 66.2841 0.460604 66.1981 0.419499 66.1161 0.378837 66.0372 0.338444 65.959 0.299061 65.8866 0.26 65.8166 0.221194 65.7457 0.182817 65.6826 0.14472 65.6187 0.107513 65.5591 0.0705976 65.5024 0.0341451 65.4463 -0.00238408 65.396 -0.0381168 65.345 -0.0733194 65.2985 -0.108243 65.2533 -0.142967 65.2103 -0.177374 65.1688 -0.202507 65.0582 -0.211858 64.6745 -0.215961 64.1142 -0.21572 63.4638 -0.212166 62.7379 -0.205928 61.9483 -0.19744 61.1038 -0.187034 60.2113 -0.174993 59.2771 -0.161571 58.3071 -0.147007 57.3074 -0.131534 56.2843 -0.115378 55.2443 -0.0987562 54.1946 -0.0818766 53.1424 -0.0649352 52.0951 -0.0481155 51.0603 -0.031588 50.0454 -0.0154997 49.0576 48.1037 38.8138 11.823 38.6302 17.9536 38.2304 23.9473 37.6134 29.7195 36.7723 35.1935 35.6953 40.2799 34.3698 44.875 32.7938 48.8719 31.0091 52.1969 29.1131 54.8798 27.2093 57.0743 25.3785 58.976 23.6751 60.7692 22.1395 62.6153 20.8073 64.6739 19.7122 67.0977 18.8927 70.0356 18.3713 73.6094 18.0962 77.7638 17.9017 82.0664 17.6152 85.8436 17.173 88.6666 16.6044 90.539 15.9599 91.6778 15.2687 92.2559 14.5343 92.2914 13.7743 91.7806 13.0371 90.8714 12.363 89.9166 11.7426 89.0672 11.1605 88.1967 10.6181 87.4402 10.1115 86.7049 9.63389 86.018 9.18641 85.251 8.76683 84.6019 8.36979 83.9449 7.99733 83.3741 7.64718 82.7319 7.31077 82.1888 6.9917 81.565 6.69538 81.0516 6.41315 80.4763 6.13993 80.0211 5.88409 79.4766 5.64556 79.0394 5.41755 78.5223 5.19933 78.1112 4.99567 77.6275 4.80123 77.2425 4.6132 76.7915 4.43507 76.4242 4.26587 75.997 4.09994 75.6631 3.94347 75.2645 3.79516 74.9469 3.65293 74.5692 3.51855 74.2671 3.38871 73.9164 3.26176 73.6384 3.14286 73.3052 3.02716 73.0377 2.9145 72.7265 2.8061 72.472 2.69903 72.1846 2.59863 71.9383 2.50286 71.6656 2.40873 71.438 2.3182 71.1787 2.2302 70.9604 2.14569 70.7185 2.06409 70.5139 1.98474 70.2815 1.90923 70.0914 1.83559 69.8809 1.76343 69.6985 1.6937 69.493 1.62625 69.3165 1.56023 69.1437 1.49589 68.9699 1.43261 68.7864 1.37118 68.645 1.31136 68.4832 1.25285 68.3143 1.19713 68.1802 1.14295 68.0321 1.09037 67.8929 1.03903 67.7509 0.988586 67.6216 0.93933 67.4909 0.890677 67.3685 0.842803 67.2487 0.796266 67.1329 0.749911 67.0186 0.703722 66.913 0.658492 66.8025 0.613986 66.7021 0.570937 66.6034 0.528342 66.5061 0.48725 66.4132 0.446629 66.3247 0.406266 66.2384 0.366564 66.1558 0.327468 66.0763 0.288469 65.998 0.250311 65.9248 0.212753 65.8542 0.17575 65.7827 0.139504 65.7188 0.102918 65.6553 0.0667254 65.5952 0.0307229 65.5384 -0.00480324 65.4818 -0.0397903 65.4309 -0.0740842 65.3793 -0.108261 65.3327 -0.142184 65.2872 -0.176211 65.2443 -0.209127 65.2017 -0.231571 65.0806 -0.238941 64.6819 -0.241363 64.1166 -0.239562 63.462 -0.23449 62.7328 -0.226747 61.9406 -0.216752 61.0938 -0.204833 60.1994 -0.191272 59.2635 -0.176325 58.2922 -0.160234 57.2913 -0.143237 56.2673 -0.125561 55.2267 -0.107428 54.1765 -0.0890512 53.124 -0.0706294 52.0767 -0.0523513 51.042 -0.034393 50.0274 -0.0169051 49.0402 48.0868 38.3929 11.7896 38.2105 18.136 37.8173 24.3406 37.2181 30.3187 36.4121 35.9996 35.3896 41.3024 34.1393 46.1253 32.6531 50.3581 30.944 53.9061 29.0802 56.7436 27.1692 58.9853 25.3046 60.8406 23.5525 62.5213 21.9562 64.2116 20.5529 66.0772 19.3731 68.2774 18.4505 70.9582 17.8123 74.2477 17.432 78.1441 17.1806 82.3178 16.887 86.1373 16.461 89.0926 15.9117 91.0882 15.2844 92.3051 14.6115 92.9287 13.8989 93.004 13.1594 92.5201 12.4411 91.5897 11.7803 90.5774 11.1692 89.6783 10.6026 88.7633 10.0798 87.963 9.59033 87.1944 9.12757 86.4808 8.69001 85.6885 8.28617 85.0057 7.91051 84.3205 7.54897 83.7356 7.20525 83.0756 6.88712 82.5069 6.58596 81.8661 6.29739 81.3402 6.02539 80.7483 5.77072 80.2757 5.52753 79.7198 5.29547 79.2714 5.07981 78.738 4.87632 78.3147 4.68143 77.8224 4.49552 77.4284 4.31919 76.9679 4.14974 76.5936 3.98469 76.1621 3.83269 75.8151 3.68633 75.4109 3.54524 75.0879 3.41202 74.7024 3.28246 74.3966 3.15976 74.0391 3.0438 73.7543 2.93104 73.4179 2.82178 73.147 2.71446 72.8338 2.61151 72.575 2.51409 72.282 2.42022 72.0322 2.32978 71.756 2.24099 71.5268 2.15552 71.2642 2.07332 71.0426 1.99374 70.7981 1.91664 70.591 1.84119 70.357 1.7696 70.1629 1.70053 69.95 1.63227 69.7668 1.56618 69.5591 1.50262 69.3801 1.44083 69.2055 1.38 69.0307 1.32012 68.8463 1.26211 68.7031 1.20597 68.5394 1.15151 68.3687 1.09948 68.2322 1.04845 68.0831 0.998585 67.9427 0.94967 67.7998 0.901821 67.6695 0.854627 67.5381 0.808218 67.4149 0.763036 67.2939 0.718975 67.177 0.67497 67.0626 0.631288 66.9566 0.588266 66.8455 0.546497 66.7438 0.505704 66.6442 0.465259 66.5466 0.426047 66.4524 0.386852 66.3639 0.348248 66.277 0.309889 66.1942 0.272496 66.1137 0.235338 66.0352 0.19906 65.9611 0.16349 65.8897 0.127912 65.8183 0.0931488 65.7536 0.0577531 65.6907 0.0230265 65.63 -0.0113489 65.5727 -0.0456264 65.5161 -0.0789234 65.4642 -0.112508 65.4128 -0.145293 65.3654 -0.178209 65.3201 -0.21094 65.277 -0.242114 65.2329 -0.262066 65.1006 -0.267551 64.6874 -0.268212 64.1173 -0.264748 63.4585 -0.25805 62.7261 -0.248695 61.9312 -0.237091 61.0822 -0.223563 60.1858 -0.208391 59.2484 -0.19183 58.2756 -0.174127 57.2736 -0.155521 56.2487 -0.136245 55.2074 -0.116523 54.1568 -0.0965709 53.1041 -0.0765916 52.0567 -0.0567768 51.0222 -0.0373062 50.0079 -0.018339 49.0212 48.0684 37.7075 11.7607 37.5208 18.3227 37.1263 24.7351 36.5332 30.9118 35.7474 36.7854 34.7657 42.2841 33.5773 47.3137 32.1724 51.763 30.5538 55.5247 28.7558 58.5416 26.871 60.8701 25.0017 62.7098 23.2251 64.2979 21.5911 65.8456 20.1373 67.531 18.8937 69.521 17.8896 71.9623 17.1528 74.9845 16.6746 78.6222 16.3597 82.6327 16.0502 86.4467 15.6375 89.5054 15.1094 91.6163 14.503 92.9114 13.8518 93.5799 13.1657 93.6901 12.4527 93.2331 11.7516 92.2908 11.1082 91.2208 10.5233 90.2632 9.97983 89.3068 9.4716 88.4713 8.99909 87.6669 8.55682 86.923 8.14347 86.1019 7.75721 85.392 7.39168 84.6861 7.04736 84.08 6.72679 83.3962 6.42281 82.8109 6.13133 82.1576 5.86067 81.6108 5.60759 81.0014 5.36383 80.5195 5.13223 79.9514 4.91807 79.4856 4.71549 78.9406 4.52052 78.5097 4.33767 78.0053 4.16454 77.6016 3.99557 77.1368 3.83432 76.7549 3.68516 76.3112 3.54159 75.9586 3.40474 75.5477 3.27389 75.2188 3.14775 74.8285 3.02781 74.5166 2.91454 74.1524 2.80511 73.8638 2.69835 73.5247 2.59632 73.249 2.49725 72.9329 2.40422 72.668 2.31492 72.3713 2.22619 72.1209 2.14181 71.8404 2.05989 71.6087 1.98061 71.3434 1.90407 71.1192 1.82951 70.8726 1.75738 70.6632 1.68687 70.4275 1.62006 70.2298 1.55535 70.0147 1.49153 69.8306 1.42975 69.6209 1.3702 69.4396 1.31258 69.2631 1.25579 69.0875 1.19985 68.9022 1.146 68.7569 1.0943 68.5911 1.04361 68.4194 0.994954 68.2808 0.947192 68.1309 0.900187 67.9897 0.853795 67.8462 0.80861 67.7146 0.763956 67.5828 0.719874 67.459 0.677285 67.3365 0.635712 67.2186 0.594459 67.1038 0.553981 66.9971 0.513898 66.8856 0.474895 66.7828 0.436076 66.6831 0.397706 66.5849 0.360183 66.4899 0.32273 66.4014 0.286284 66.3135 0.24981 66.2306 0.214265 66.1493 0.17943 66.07 0.144971 65.9955 0.110669 65.9241 0.0762064 65.8528 0.0428694 65.7869 0.00944871 65.7241 -0.0232527 65.6627 -0.056231 65.6057 -0.0884386 65.5483 -0.12059 65.4964 -0.152696 65.445 -0.184091 65.3968 -0.215444 65.3514 -0.246652 65.3082 -0.27624 65.2624 -0.29394 65.1183 -0.297584 64.691 -0.296459 64.1162 -0.291264 63.4533 -0.282851 62.7177 -0.271789 61.9201 -0.258483 61.0689 -0.243252 60.1706 -0.226374 59.2315 -0.20811 58.2574 -0.188707 57.2542 -0.168407 56.2284 -0.147447 55.1864 -0.126054 54.1354 -0.104446 53.0825 -0.0828285 52.0351 -0.0613938 51.0008 -0.0403194 49.9869 -0.0197688 49.0006 48.0486 36.7222 11.7395 36.5285 18.5164 36.1301 25.1335 35.5386 31.5032 34.7647 37.5593 33.8127 43.2361 32.677 48.4494 31.346 53.0939 29.8168 57.0539 28.1077 60.2507 26.2816 62.6963 24.4391 64.5523 22.6655 66.0715 21.0187 67.4924 19.5375 69.0123 18.2523 70.8061 17.1892 73.0254 16.3744 75.7993 15.8112 79.1854 15.4324 83.0116 15.1003 86.7788 14.6971 89.9086 14.1913 92.1221 13.6096 93.4931 12.9843 94.2052 12.3277 94.3468 11.6461 93.9146 10.9759 92.961 10.3604 91.8363 9.79477 90.8289 9.27274 89.8288 8.79357 88.9504 8.34847 88.112 7.92925 87.3422 7.5317 86.4994 7.16252 85.7612 6.82318 85.0254 6.50109 84.402 6.19467 83.7026 5.90887 83.0967 5.64152 82.425 5.38493 81.8674 5.14089 81.2454 4.91663 80.7438 4.70723 80.1608 4.50594 79.6869 4.31559 79.1309 4.13819 78.6871 3.96622 78.1772 3.79979 77.768 3.64487 77.2917 3.49982 76.8999 3.3603 76.4508 3.22814 76.0908 3.1037 75.6722 2.98012 75.3424 2.86359 74.9451 2.75362 74.6265 2.64599 74.26 2.54527 73.9645 2.44759 73.6224 2.35392 73.3427 2.26619 73.0206 2.17963 72.7546 2.09702 72.454 2.01675 72.2012 1.9389 71.9182 1.86454 71.683 1.7922 71.4158 1.72141 71.19 1.65285 70.9412 1.58663 70.7294 1.52127 70.4929 1.4595 70.2915 1.39957 70.0746 1.3404 69.8898 1.28329 69.678 1.22851 69.4944 1.17582 69.3158 1.12362 69.1397 1.07226 68.9536 1.02222 68.8069 0.974634 68.6386 0.927661 68.4664 0.882509 68.326 0.838035 68.1754 0.794585 68.0332 0.751691 67.8891 0.709784 67.7566 0.667752 67.6248 0.626351 67.5004 0.586115 67.3767 0.546878 67.2578 0.508524 67.1422 0.471073 67.0346 0.433761 66.9229 0.397524 66.8191 0.361122 66.7195 0.325346 66.6207 0.289769 66.5255 0.254057 66.4371 0.220067 66.3475 0.186375 66.2643 0.152813 66.1828 0.120067 66.1027 0.0871361 66.0285 0.0541239 65.9571 0.0215232 65.8854 -0.0108396 65.8193 -0.0418223 65.7551 -0.0728869 65.6937 -0.103639 65.6365 -0.134108 65.5788 -0.164326 65.5266 -0.194209 65.4748 -0.224101 65.4267 -0.253828 65.3812 -0.283559 65.338 -0.311577 65.2905 -0.327182 65.1339 -0.329066 64.6929 -0.32612 64.1132 -0.319118 63.4463 -0.308906 62.7075 -0.29605 61.9073 -0.28095 61.0538 -0.263922 60.1536 -0.245248 59.2128 -0.225188 58.2373 -0.203995 57.233 -0.181914 56.2063 -0.159184 55.1637 -0.136037 54.1122 -0.112694 53.0591 -0.0893625 52.0118 -0.0662381 50.9776 -0.0435012 49.9641 -0.0213209 48.9785 48.0273 35.3992 11.7283 35.1982 18.7173 34.7964 25.5353 34.2072 32.0925 33.4439 38.3225 32.5165 44.1635 31.4263 49.5396 30.1647 54.3555 28.7233 58.4953 27.1132 61.8608 25.3731 64.4363 23.5886 66.3369 21.848 67.8121 20.2153 69.125 18.7317 70.4958 17.4283 72.1095 16.3293 74.1245 15.4587 76.6699 14.8264 79.8177 14.3886 83.4494 14.0309 87.1366 13.6346 90.3048 13.152 92.6047 12.5984 94.0467 12.0035 94.8001 11.3822 94.9681 10.7374 94.5595 10.0988 93.5995 9.5106 92.4245 8.98227 91.3572 8.49755 90.3135 8.04316 89.4048 7.62063 88.5345 7.22773 87.7351 6.86086 86.8663 6.52022 86.1018 6.19837 85.3473 5.89446 84.706 5.61564 83.9814 5.35519 83.3571 5.10157 82.6786 4.86235 82.1066 4.64198 81.4658 4.43592 80.9498 4.2397 80.357 4.05822 79.8684 3.88676 79.3024 3.72027 78.8536 3.56012 78.3374 3.41244 77.9157 3.27302 77.4312 3.13743 77.0355 3.01232 76.5759 2.89157 76.2115 2.7729 75.7909 2.6644 75.4509 2.55775 75.0517 2.45634 74.7279 2.35932 74.357 2.2666 74.0572 2.17931 73.7097 2.09614 73.4258 2.01506 73.1017 1.93704 72.8326 1.86231 72.5287 1.78937 72.2741 1.72057 71.987 1.65429 71.7493 1.58894 71.4811 1.52486 71.254 1.46264 71.0034 1.40228 70.7897 1.34342 70.5517 1.28736 70.3476 1.23258 70.1294 1.17921 69.9431 1.12737 69.7298 1.07798 69.5438 1.03036 69.3634 0.982283 69.1878 0.935185 69.0007 0.890146 68.852 0.847045 68.6817 0.804615 68.5088 0.763268 68.3673 0.722458 68.2162 0.681952 68.0737 0.642294 67.9288 0.603235 67.7956 0.564741 67.6633 0.526901 67.5382 0.489619 67.414 0.453389 67.294 0.417731 67.1778 0.382789 67.0695 0.348659 66.957 0.314974 66.8527 0.28098 66.7534 0.247903 66.6538 0.215127 66.5582 0.181674 66.4705 0.149998 66.3792 0.118751 66.2956 0.0869557 66.2146 0.0558138 66.1339 0.0250531 66.0592 -0.00508302 65.9872 -0.0357731 65.916 -0.0661768 65.8497 -0.0957901 65.7847 -0.124997 65.7229 -0.153517 65.665 -0.181846 65.6071 -0.209928 65.5547 -0.238121 65.503 -0.266575 65.4552 -0.294492 65.4091 -0.322277 65.3658 -0.348267 65.3165 -0.361751 65.1474 -0.361974 64.6931 -0.357184 64.1084 -0.348315 63.4375 -0.336234 62.6954 -0.321502 61.8926 -0.304518 61.0368 -0.285601 60.1347 -0.265036 59.1923 -0.243088 58.2154 -0.220013 57.21 -0.196061 56.1823 -0.171475 55.1391 -0.146492 54.0872 -0.121335 53.034 -0.0962179 51.9867 -0.0713439 50.9528 -0.0469054 49.9397 -0.0230795 48.9546 48.0042 33.702 11.7287 33.4947 18.9246 33.0926 25.9374 32.5099 32.6753 31.7613 39.0711 30.8599 45.0649 29.8131 50.5864 28.6177 55.5509 27.2651 59.848 25.7585 63.3673 24.125 66.0699 22.4272 68.0347 20.7494 69.4899 19.1592 70.7153 17.7002 71.9548 16.4034 73.4063 15.2924 75.2355 14.389 77.5733 13.7067 80.4999 13.2195 83.9366 12.836 87.5201 12.4447 90.6961 11.9864 93.0631 11.4643 94.5688 10.904 95.3604 10.3224 95.5497 9.7184 95.1635 9.12404 94.1939 8.58067 92.9679 8.0845 91.8534 7.62808 90.7699 7.21106 89.8218 6.82637 88.9192 6.46665 88.0949 6.12693 87.206 5.80736 86.4214 5.51429 85.6403 5.24297 84.9773 4.98413 84.2403 4.74152 83.5997 4.51893 82.9012 4.30839 82.3172 4.10296 81.6712 3.91276 81.14 3.73911 80.5306 3.57227 80.0352 3.41035 79.4643 3.26446 78.9994 3.12951 78.4723 2.99668 78.0485 2.87262 77.5552 2.7519 77.1562 2.63534 76.6924 2.52354 76.3233 2.42107 75.8933 2.32421 75.5477 2.2294 75.1465 2.1388 74.8185 2.05267 74.4431 1.9706 74.1393 1.89469 73.7856 1.82035 73.5002 1.74762 73.1744 1.678 72.9022 1.61141 72.5953 1.54813 72.3374 1.48758 72.0476 1.42885 71.8081 1.37051 71.5395 1.31334 71.3112 1.25915 71.0576 1.20616 70.8427 1.15354 70.6043 1.10326 70.3979 1.05446 70.1782 1.00721 69.9904 0.961437 69.7756 0.916989 69.5883 0.874236 69.4062 0.831628 69.2304 0.790364 69.042 0.750409 68.8919 0.711786 68.7204 0.674013 68.5466 0.635869 68.4055 0.598474 68.2536 0.56101 68.1112 0.525001 67.9648 0.489347 67.8313 0.454395 67.6983 0.420679 67.572 0.387079 67.4476 0.35469 67.3264 0.322431 67.2101 0.290392 67.1015 0.258971 66.9884 0.227158 66.8846 0.195308 66.7853 0.164606 66.6845 0.135031 66.5878 0.104754 66.5008 0.0747947 66.4091 0.0455375 66.3248 0.0168389 66.2433 -0.0125724 66.1633 -0.0411023 66.0877 -0.0689974 66.0151 -0.097081 65.9441 -0.124373 65.877 -0.151811 65.8122 -0.178605 65.7497 -0.205106 65.6915 -0.231762 65.6338 -0.258374 65.5813 -0.284942 65.5296 -0.311418 65.4817 -0.337213 65.4349 -0.362929 65.3915 -0.386894 65.3404 -0.397974 65.1584 -0.3964 64.6915 -0.389679 64.1017 -0.378887 63.4267 -0.364868 62.6814 -0.348177 61.8759 -0.329217 61.0178 -0.308317 60.1138 -0.285765 59.1697 -0.261832 58.1914 -0.236782 57.1849 -0.210867 56.1564 -0.184337 55.1126 -0.15743 54.0603 -0.130377 53.0069 -0.103396 51.9597 -0.0766931 50.9261 -0.0504645 49.9135 -0.024878 48.929 47.9794 31.5982 11.7424 31.3857 19.1371 30.9869 26.3362 30.4161 33.2461 29.6887 39.7985 28.82 45.9336 27.8208 51.5856 26.6935 56.6781 25.4326 61.1089 24.0358 64.7641 22.5229 67.5827 20.9371 69.6205 19.3517 71.0753 17.8328 72.2341 16.426 73.3616 15.1619 74.6705 14.0634 76.334 13.1504 78.4862 12.4386 81.2118 11.9148 84.4604 11.5099 87.925 11.1234 91.0825 10.69 93.4965 10.2029 95.056 9.6824 95.8809 9.14695 96.0851 8.59276 95.7177 8.04448 94.7421 7.53912 93.4733 7.09078 92.3017 6.68556 91.1752 6.30731 90.2001 5.9543 89.2722 5.62779 88.4214 5.32336 87.5105 5.04157 86.7032 4.77692 85.905 4.52715 85.2271 4.3 84.4674 4.09342 83.8063 3.89242 83.1022 3.69645 82.5132 3.51787 81.8498 3.35199 81.3059 3.18999 80.6926 3.04263 80.1826 2.9109 79.596 2.78459 79.1258 2.66534 78.5916 2.55024 78.1636 2.4403 77.6652 2.33248 77.264 2.22927 76.7956 2.13879 76.4138 2.04702 75.9851 1.96089 75.6339 1.87983 75.2276 1.79983 74.8985 1.72729 74.5157 1.65933 74.2072 1.59092 73.854 1.52572 73.5654 1.46224 73.2379 1.40154 72.9629 1.3463 72.6505 1.29165 72.392 1.23811 72.1011 1.18697 71.8592 1.13702 71.5894 1.08879 71.3594 1.04246 71.1039 0.996342 70.8889 0.950302 70.6504 0.906567 70.4416 0.864672 70.2201 0.824254 70.0308 0.783999 69.8158 0.745384 69.6269 0.709319 69.4423 0.672003 69.2677 0.636248 69.0777 0.601366 68.9268 0.566541 68.7552 0.533509 68.5796 0.499043 68.44 0.46574 68.2869 0.432604 68.1443 0.400819 67.9966 0.369576 67.8625 0.338513 67.7293 0.308242 67.6022 0.278125 67.4777 0.249578 67.355 0.220705 67.239 0.191546 67.1307 0.163186 67.0168 0.134308 66.9134 0.105532 66.8141 0.0773425 66.7127 0.0496403 66.6155 0.023645 66.5268 -0.00448554 66.4372 -0.031324 66.3517 -0.0575627 66.2696 -0.0841135 66.1898 -0.109976 66.1136 -0.135929 66.041 -0.160865 65.9691 -0.18552 65.9017 -0.210385 65.837 -0.235389 65.7747 -0.260395 65.7165 -0.285533 65.6589 -0.310178 65.6059 -0.334371 65.5538 -0.358397 65.5057 -0.3821 65.4586 -0.405864 65.4152 -0.427715 65.3623 -0.435985 65.1667 -0.432411 64.688 -0.423688 64.093 -0.410906 63.4139 -0.394864 62.6654 -0.376119 61.8571 -0.355085 60.9968 -0.3321 60.0908 -0.307461 59.1451 -0.281446 58.1654 -0.254322 57.1578 -0.22635 56.1285 -0.197782 55.084 -0.168862 54.0314 -0.139823 52.9779 -0.110886 51.9307 -0.082258 50.8974 -0.0541311 49.8853 -0.0266674 48.9016 47.9527 29.0627 11.772 28.8462 19.3536 28.4548 26.7275 27.9025 33.7984 27.2046 40.4964 26.3775 46.7607 25.4341 52.529 24.3811 57.7312 23.2173 62.2727 21.9393 66.0421 20.5591 68.9629 19.1075 71.0721 17.6419 72.5409 16.2233 73.6527 14.8965 74.6884 13.6913 75.8757 12.6299 77.3954 11.7309 79.3852 11.0106 81.9321 10.4654 85.0056 10.0459 88.3445 9.66648 91.4619 9.26031 93.9026 8.81162 95.5046 8.3355 96.357 7.8494 96.5712 7.34774 96.2194 6.85549 95.2344 6.41216 93.9166 6.01416 92.6997 5.64777 91.5415 5.31298 90.5349 5.00656 89.5787 4.72382 88.7041 4.45918 87.7751 4.20732 86.9551 3.97588 86.1364 3.76799 85.435 3.56983 84.6656 3.37918 83.997 3.20534 83.276 3.04285 82.6756 2.88479 82.0079 2.7398 81.4509 2.61415 80.8183 2.49654 80.3002 2.38262 79.7099 2.27079 79.2376 2.16679 78.6956 2.0659 78.2645 1.96972 77.7613 1.88456 77.3492 1.80367 76.8765 1.72173 76.4958 1.64631 76.0605 1.57472 75.7055 1.50645 75.2959 1.44393 74.9611 1.38308 74.5765 1.32374 74.2666 1.26633 73.9114 1.21133 73.6204 1.1607 73.2885 1.11369 73.0099 1.06582 72.6984 1.0183 72.4396 0.973699 72.1457 0.931477 71.9014 0.890994 71.6299 0.850672 71.3998 0.810933 71.1437 0.772021 70.9278 0.734434 70.688 0.698653 70.4774 0.663761 70.255 0.629965 70.0646 0.596489 69.8493 0.564046 69.6593 0.533282 69.473 0.501521 69.2995 0.4707 69.1085 0.441253 68.9563 0.411786 68.7847 0.384156 68.6072 0.353788 68.4703 0.32567 68.315 0.297686 68.1723 0.269639 68.0246 0.242779 67.8894 0.215975 67.7561 0.189508 67.6287 0.162833 67.5044 0.136973 67.3808 0.111816 67.2641 0.0863209 67.1562 0.0612268 67.0419 0.036446 66.9382 0.0126693 66.8378 -0.0135523 66.7389 -0.0389807 66.6409 -0.0627849 66.5506 -0.0868858 66.4613 -0.110699 66.3755 -0.135066 66.2939 -0.158228 66.213 -0.181722 66.1371 -0.204925 66.0643 -0.227958 65.9921 -0.25069 65.9244 -0.27375 65.8601 -0.296921 65.7979 -0.319731 65.7393 -0.342381 65.6815 -0.364569 65.6281 -0.386595 65.5758 -0.408513 65.5276 -0.430132 65.4802 -0.451699 65.4368 -0.470934 65.3815 -0.475942 65.1717 -0.470162 64.6822 -0.459345 64.0822 -0.444467 63.399 -0.42629 62.6472 -0.40538 61.8362 -0.382163 60.9736 -0.356986 60.0656 -0.330153 59.1182 -0.301952 58.1372 -0.272654 57.1285 -0.242526 56.0983 -0.211824 55.0533 -0.180796 54.0004 -0.149677 52.9467 -0.11869 51.8997 -0.0880442 50.8668 -0.0579293 49.8552 -0.0285173 48.8722 47.9242 26.0807 11.819 25.8627 19.5717 25.4848 27.1054 24.9594 34.3238 24.3009 41.1549 23.5256 47.536 22.6476 53.407 21.6774 58.7014 20.6183 63.3318 19.4684 67.192 18.233 70.1983 16.9347 72.3704 15.6142 73.8614 14.3235 74.9434 13.1038 75.9081 11.9835 76.996 10.9834 78.3955 10.1212 80.2474 9.41347 82.6398 8.86376 85.5553 8.43919 88.7691 8.07018 91.831 7.6937 94.2791 7.2875 95.9108 6.86095 96.7835 6.43124 97.0009 5.99431 96.6563 5.56533 95.6634 5.17478 94.3072 4.83137 93.0431 4.5269 91.846 4.24677 90.815 3.98504 89.8404 3.74336 88.9458 3.51974 87.9987 3.31337 87.1614 3.12124 86.3285 2.93952 85.6167 2.77065 84.8344 2.62161 84.146 2.47823 83.4194 2.33857 82.8153 2.21534 82.1311 2.10615 81.5601 2.00544 80.919 1.90145 80.4042 1.80805 79.8033 1.71976 79.3259 1.63019 78.7852 1.55382 78.3409 1.48367 77.8315 1.41324 77.4196 1.34265 76.9471 1.27827 76.5602 1.21965 76.1191 1.16399 75.7611 1.11329 75.3466 1.06227 75.0121 1.01208 74.6267 0.965189 74.3135 0.922636 73.954 0.883047 73.66 0.844595 73.327 0.805481 73.049 0.767765 72.7361 0.730518 72.4768 0.696329 72.1799 0.664075 71.9337 0.630924 71.663 0.5974 71.4333 0.566293 71.1748 0.53675 70.9573 0.507219 70.7175 0.478095 70.5065 0.449719 70.2833 0.4236 70.0907 0.39718 69.8757 0.37087 69.6856 0.345523 69.4984 0.319885 69.3251 0.295495 69.1329 0.272038 68.9797 0.248574 68.8081 0.225607 68.6302 0.200713 68.4952 0.177373 68.3383 0.155057 68.1946 0.13144 68.0482 0.108332 67.9125 0.0865966 67.7779 0.0641856 67.6511 0.0417143 67.5268 0.0176307 67.4049 -0.00283972 67.2846 -0.0233908 67.1768 -0.045513 67.064 -0.0668462 66.9596 -0.0889589 66.86 -0.109498 66.7594 -0.131684 66.6631 -0.153466 66.5724 -0.174002 66.4819 -0.195366 66.3968 -0.216192 66.3148 -0.236656 66.2335 -0.257456 66.1579 -0.277988 66.0848 -0.299049 66.0132 -0.319819 65.9452 -0.340564 65.8808 -0.360955 65.8183 -0.380992 65.7593 -0.401028 65.7016 -0.421223 65.6483 -0.441451 65.596 -0.461407 65.5476 -0.480998 65.4998 -0.500538 65.4563 -0.517104 65.3981 -0.518485 65.1731 -0.510091 64.6738 -0.496891 64.069 -0.479706 63.3818 -0.459232 62.6267 -0.436019 61.813 -0.410494 60.948 -0.383006 60.0381 -0.353869 59.0891 -0.323373 58.1067 -0.291798 57.0969 -0.259413 56.0659 -0.226479 55.0204 -0.193247 53.9672 -0.159955 52.9135 -0.126829 51.8666 -0.0940777 50.834 -0.0618956 49.823 -0.0304629 48.8407 47.8937 22.6463 11.8851 22.4289 19.7891 22.0698 27.4644 21.5794 34.8143 20.9708 41.7634 20.2594 48.2475 19.4596 54.2067 18.5843 59.5768 17.6403 64.2758 16.6286 68.2037 15.5513 71.2756 14.4229 73.4987 13.2702 75.0141 12.1329 76.0807 11.0462 76.9948 10.0354 78.0068 9.11974 79.3112 8.31609 81.0511 7.64128 83.3146 7.10421 86.0923 6.68611 89.1872 6.33349 92.1836 5.99 94.6226 5.63088 96.27 5.2597 97.1547 4.89026 97.3704 4.51777 97.0288 4.15685 96.0243 3.8414 94.6226 3.57105 93.3135 3.32031 92.0968 3.09021 91.0451 2.88171 90.0489 2.69268 89.1348 2.51813 88.1733 2.35024 87.3293 2.19497 86.4838 2.05872 85.7529 1.93415 84.959 1.81434 84.2658 1.70262 83.5311 1.60474 82.9132 1.51211 82.2237 1.41889 81.6533 1.3375 81.0004 1.26733 80.4743 1.19415 79.8765 1.13143 79.3886 1.07656 78.84 1.02007 78.3974 0.965608 77.886 0.909923 77.4753 0.860005 76.997 0.811986 76.6082 0.769444 76.1617 0.732119 75.7984 0.690839 75.3878 0.652015 75.0509 0.617713 74.661 0.588509 74.3427 0.560145 73.9823 0.532622 73.6875 0.504475 73.3551 0.477238 73.0763 0.451734 72.7616 0.42822 72.5003 0.40447 72.2037 0.379348 71.9588 0.355758 71.6866 0.332603 71.4564 0.310287 71.1971 0.288877 70.9787 0.267058 70.7393 0.244519 70.529 0.224378 70.3035 0.205709 70.1094 0.18691 69.8945 0.16744 69.7051 0.146564 69.5192 0.130169 69.3415 0.109602 69.1535 0.0910938 68.9982 0.0783766 68.8208 0.0562125 68.6524 0.0405886 68.5108 0.0216676 68.3573 0.00313926 68.2131 -0.0149222 68.0663 -0.0329959 67.9306 -0.05012 67.795 -0.0678555 67.6688 -0.0863833 67.5454 -0.104058 67.4226 -0.123068 67.3036 -0.141227 67.1949 -0.158409 67.0812 -0.177428 66.9786 -0.195608 66.8781 -0.212413 66.7762 -0.230347 66.6811 -0.24835 66.5904 -0.26613 66.4997 -0.284061 66.4148 -0.30173 66.3324 -0.319613 66.2514 -0.337559 66.1758 -0.355557 66.1028 -0.373975 66.0316 -0.392103 65.9633 -0.410076 65.8988 -0.4278 65.836 -0.445417 65.777 -0.463008 65.7192 -0.480706 65.666 -0.498298 65.6136 -0.515847 65.5651 -0.53349 65.5174 -0.551337 65.4742 -0.565367 65.4121 -0.563349 65.1711 -0.552219 64.6627 -0.536397 64.0532 -0.51669 63.3621 -0.493743 62.6038 -0.468079 61.7873 -0.440112 60.9201 -0.410191 60.0082 -0.378633 59.0575 -0.345732 58.0738 -0.311772 57.063 -0.277027 56.0312 -0.241762 54.9851 -0.20623 53.9316 -0.170673 52.8779 -0.135318 51.8313 -0.10038 50.7991 -0.0660579 49.7887 -0.0325372 48.8072 47.8612 18.7626 11.9734 18.5465 20.0052 18.2102 27.8007 17.762 35.2624 17.2138 42.3117 16.5791 48.8822 15.8722 54.9136 15.1065 60.3425 14.2915 65.0908 13.4313 69.0639 12.5264 72.1805 11.5842 74.441 10.6195 75.9788 9.65855 77.0417 8.72825 77.9251 7.84967 78.8854 7.03975 80.1211 6.31468 81.7761 5.6917 83.9376 5.18387 86.6002 4.78419 89.5869 4.45507 92.5127 4.14936 94.9283 3.84173 96.5776 3.53125 97.4652 3.22726 97.6744 2.93119 97.3248 2.65616 96.2993 2.41157 94.8672 2.19967 93.5254 2.0175 92.2789 1.85652 91.2061 1.70657 90.1988 1.56824 89.2731 1.44025 88.3012 1.32299 87.4466 1.22099 86.5858 1.12541 85.8485 1.03473 85.0497 0.956237 84.3443 0.887373 83.6 0.814995 82.9856 0.743618 82.2951 0.69005 81.7069 0.642292 81.0482 0.596063 80.5206 0.55452 79.9181 0.517008 79.4261 0.482082 78.875 0.444805 78.4346 0.410415 77.9204 0.382894 77.5028 0.353725 77.0262 0.325225 76.6367 0.298327 76.1886 0.269858 75.8269 0.246955 75.4107 0.226551 75.0713 0.208088 74.6795 0.19131 74.3594 0.174913 73.9987 0.158249 73.7042 0.144255 73.3691 0.132918 73.0876 0.121187 72.7733 0.10768 72.5138 0.0924316 72.2189 0.078982 71.9723 0.0669312 71.6987 0.0538472 71.4695 0.0409017 71.21 0.0276936 70.9919 0.0134561 70.7535 1.20356e-005 70.5425 -0.010827 70.3143 -0.0236448 70.1222 -0.0354149 69.9063 -0.0473015 69.717 -0.0617619 69.5337 -0.0722408 69.352 -0.083889 69.1651 -0.0956447 69.01 -0.106618 68.8318 -0.117081 68.6628 -0.131166 68.5249 -0.14251 68.3686 -0.155862 68.2265 -0.168561 68.079 -0.181057 67.943 -0.194772 67.8087 -0.207599 67.6817 -0.221593 67.5594 -0.23567 67.4367 -0.250884 67.3188 -0.264811 67.2088 -0.278641 67.095 -0.292546 66.9925 -0.305815 66.8914 -0.320093 66.7905 -0.333981 66.695 -0.348286 66.6047 -0.363005 66.5144 -0.377577 66.4293 -0.39247 66.3473 -0.407502 66.2664 -0.422259 66.1906 -0.4371 66.1176 -0.452068 66.0465 -0.467042 65.9783 -0.482285 65.9141 -0.497618 65.8514 -0.512895 65.7922 -0.528073 65.7343 -0.542935 65.6809 -0.55779 65.6285 -0.572909 65.5802 -0.588387 65.5329 -0.604071 65.4899 -0.615173 65.4232 -0.610048 65.166 -0.59627 64.6489 -0.577748 64.0346 -0.555387 63.3398 -0.529828 62.5782 -0.501576 61.7591 -0.471038 60.8895 -0.438562 59.9757 -0.404465 59.0234 -0.369047 58.0384 -0.332593 57.0265 -0.295383 55.994 -0.257685 54.9474 -0.219755 53.8937 -0.181838 52.84 -0.144164 51.7936 -0.106951 50.7619 -0.0704009 49.7522 -0.0346996 48.7715 47.8265 14.4482 12.0868 14.2338 20.2197 13.9238 28.1107 13.5249 35.6614 13.0466 42.79 12.5008 49.428 11.9007 55.5137 11.2598 60.9834 10.5894 65.7611 9.89558 69.7578 9.17848 72.8976 8.43841 75.181 7.67977 76.7374 6.91518 77.8062 6.16174 78.6785 5.435 79.6121 4.74933 80.8068 4.12028 82.4052 3.56568 84.4922 3.10246 87.0634 2.73368 89.9557 2.43634 92.81 2.17393 95.1907 1.92382 96.8277 1.68228 97.7067 1.4517 97.9049 1.23425 97.5423 1.03006 96.5035 0.867109 95.0302 0.751536 93.641 0.643553 92.3869 0.535693 91.314 0.446811 90.2877 0.37134 89.3486 0.303989 88.3686 0.23936 87.5112 0.176548 86.6486 0.126486 85.8986 0.089921 85.0862 0.0506564 84.3836 0.0061835 83.6445 -0.0265997 83.0183 -0.0467495 82.3153 -0.0674025 81.7275 -0.0906884 81.0714 -0.104326 80.5342 -0.117762 79.9315 -0.138045 79.4464 -0.152343 78.8893 -0.159651 78.4419 -0.167075 77.9278 -0.175319 77.5111 -0.181688 77.0326 -0.18834 76.6433 -0.199522 76.1997 -0.204114 75.8315 -0.20773 75.4144 -0.212401 75.076 -0.217362 74.6844 -0.223084 74.3652 -0.227303 74.0029 -0.228858 73.7057 -0.227776 73.368 -0.228959 73.0888 -0.229687 72.7741 -0.231524 72.5157 -0.233068 72.2204 -0.234015 71.9732 -0.234977 71.6997 -0.237848 71.4724 -0.241443 71.2136 -0.244506 70.995 -0.247221 70.7563 -0.253317 70.5486 -0.259239 70.3203 -0.262443 70.1254 -0.268557 69.9124 -0.274976 69.7234 -0.277113 69.5358 -0.28584 69.3607 -0.288005 69.1673 -0.290326 69.0123 -0.299018 68.8405 -0.301524 68.6653 -0.309577 68.533 -0.316334 68.3754 -0.323172 68.2333 -0.330852 68.0867 -0.339003 67.9512 -0.346899 67.8166 -0.356094 67.6909 -0.365772 67.569 -0.37513 67.446 -0.384417 67.3281 -0.393569 67.218 -0.403136 67.1046 -0.412475 67.0018 -0.422235 66.9012 -0.433072 66.8014 -0.443586 66.7055 -0.454093 66.6152 -0.464941 66.5252 -0.47595 66.4404 -0.487562 66.3589 -0.499372 66.2782 -0.51107 66.2023 -0.522744 66.1293 -0.534275 66.0581 -0.545712 65.9897 -0.557593 65.9259 -0.569608 65.8634 -0.58195 65.8046 -0.594642 65.747 -0.607374 65.6936 -0.620285 65.6414 -0.633231 65.5932 -0.64627 65.546 -0.659125 65.5027 -0.666994 65.4311 -0.658703 65.1577 -0.642194 64.6324 -0.620884 64.0133 -0.595766 63.3147 -0.567477 62.5499 -0.536515 61.7281 -0.503284 60.8563 -0.468133 59.9406 -0.431381 58.9867 -0.393331 58.0003 -0.354275 56.9874 -0.314493 55.9542 -0.274257 54.9072 -0.233828 53.8533 -0.193452 52.7996 -0.153363 51.7535 -0.113779 50.7223 -0.0749053 49.7133 -0.0369254 48.7335 47.7896 9.73803 12.2282 9.5252 20.4325 9.24427 28.3916 8.9001 36.0055 8.50004 43.19 8.0539 49.8741 7.57363 55.994 7.07246 61.4845 6.56259 66.271 6.05111 70.2693 5.53722 73.4115 5.01462 75.7036 4.47745 77.2746 3.92534 78.3584 3.36529 79.2386 2.80618 80.1712 2.25957 81.3534 1.74068 82.9241 1.26816 84.9647 0.86321 87.4683 0.538782 90.2801 0.286201 93.0626 0.0770686 95.3998 -0.115799 97.0206 -0.288808 97.8798 -0.444212 98.0603 -0.574894 97.673 -0.66956 96.5982 -0.731687 95.0923 -0.77992 93.6892 -0.817457 92.4244 -0.839721 91.3362 -0.85958 90.3076 -0.875788 89.3648 -0.887611 88.3804 -0.899513 87.5231 -0.903339 86.6524 -0.900342 85.8956 -0.905304 85.0912 -0.907487 84.3858 -0.894774 83.6317 -0.88152 83.0051 -0.878037 82.3118 -0.866761 81.7163 -0.848776 81.0535 -0.839848 80.5253 -0.833533 79.9252 -0.818056 79.4309 -0.801169 78.8724 -0.788001 78.4288 -0.774637 77.9144 -0.759054 77.4955 -0.745616 77.0191 -0.733917 76.6316 -0.714909 76.1807 -0.699502 75.8161 -0.687671 75.4025 -0.675294 75.0636 -0.665396 74.6745 -0.65515 74.3549 -0.642688 73.9905 -0.629963 73.693 -0.617732 73.3558 -0.607462 73.0785 -0.597388 72.764 -0.585583 72.5039 -0.574452 72.2093 -0.564569 71.9633 -0.554317 71.6894 -0.545698 71.4638 -0.538134 71.2061 -0.530504 70.9874 -0.524297 70.7501 -0.521112 70.5454 -0.516984 70.3161 -0.513167 70.1216 -0.510557 69.9098 -0.508478 69.7213 -0.505908 69.5333 -0.502627 69.3574 -0.5009 69.1656 -0.498349 69.0098 -0.495953 68.8381 -0.497734 68.6671 -0.498098 68.5333 -0.498985 68.3762 -0.500749 68.2351 -0.502724 68.0887 -0.505848 67.9543 -0.508844 67.8196 -0.512314 67.6943 -0.51591 67.5726 -0.519604 67.4497 -0.523651 67.3322 -0.528283 67.2226 -0.533746 67.1101 -0.539537 67.0076 -0.545514 66.9071 -0.551848 66.8077 -0.558415 66.712 -0.564882 66.6217 -0.571753 66.5321 -0.578817 66.4474 -0.586372 66.3665 -0.594423 66.2863 -0.60298 66.2109 -0.611676 66.138 -0.620459 66.0669 -0.628992 65.9982 -0.637824 65.9348 -0.646519 65.8721 -0.655654 65.8137 -0.665107 65.7565 -0.675151 65.7037 -0.685392 65.6516 -0.695632 65.6034 -0.705917 65.5562 -0.715768 65.5126 -0.720536 65.4358 -0.709101 65.1462 -0.689857 64.6131 -0.665743 63.9892 -0.637802 63.2867 -0.606687 62.5188 -0.572903 61.6943 -0.536862 60.8203 -0.498918 59.9026 -0.459394 58.9472 -0.418599 57.9595 -0.376827 56.9457 -0.334364 55.9117 -0.291484 54.8643 -0.248452 53.8102 -0.205515 52.7567 -0.162912 51.7109 -0.120862 50.6803 -0.0795708 49.672 -0.0392249 48.6932 47.7503 4.68021 12.4006 4.468 20.6447 4.21765 28.642 3.93228 36.2909 3.61718 43.5051 3.28025 50.2111 2.93208 56.3422 2.58532 61.8313 2.25214 66.6042 1.93925 70.5821 1.64337 73.7074 1.35145 75.9955 1.04751 77.5785 0.718979 78.6869 0.361948 79.5956 -0.0187062 80.5519 -0.413733 81.7484 -0.810935 83.3213 -1.19016 85.3439 -1.52733 87.8055 -1.8026 90.5554 -2.01227 93.2723 -2.16978 95.5574 -2.29601 97.1468 -2.38365 97.9674 -2.44968 98.1264 -2.47725 97.7005 -2.46933 96.5903 -2.4361 95.0591 -2.38551 93.6386 -2.33367 92.3726 -2.2898 91.2924 -2.24448 90.2623 -2.19275 89.3131 -2.13844 88.3261 -2.0875 87.4722 -2.04309 86.608 -1.99836 85.8508 -1.94603 85.0389 -1.89172 84.3315 -1.84672 83.5867 -1.80432 82.9627 -1.75089 82.2583 -1.69999 81.6654 -1.65892 81.0124 -1.61583 80.4822 -1.56733 79.8767 -1.52461 79.3882 -1.48593 78.8337 -1.44511 78.388 -1.40526 77.8746 -1.37063 77.4609 -1.33489 76.9834 -1.29497 76.5917 -1.25895 76.1447 -1.22773 75.7849 -1.19399 75.3688 -1.16366 75.0333 -1.13344 74.6443 -1.10405 74.3255 -1.07659 73.963 -1.05082 73.6672 -1.02572 73.3307 -1.00276 73.0556 -0.977983 72.7392 -0.953865 72.4797 -0.932523 72.188 -0.911212 71.942 -0.889748 71.6679 -0.869361 71.4434 -0.850103 71.1868 -0.83175 70.969 -0.814928 70.7332 -0.800817 70.5313 -0.787227 70.3025 -0.774928 70.1093 -0.763318 69.8982 -0.753019 69.711 -0.743061 69.5233 -0.73169 69.3461 -0.722667 69.1566 -0.714308 69.0014 -0.705336 68.8291 -0.701225 68.663 -0.696125 68.5282 -0.690929 68.3711 -0.687346 68.2315 -0.68317 68.0845 -0.680092 67.9512 -0.677235 67.8167 -0.674105 67.6912 -0.671524 67.5701 -0.670683 67.4489 -0.67092 67.3324 -0.671303 67.223 -0.672129 67.1109 -0.672926 67.0084 -0.673421 66.9076 -0.674754 66.809 -0.677096 66.7144 -0.680057 66.6246 -0.683538 66.5356 -0.68703 66.4509 -0.6908 66.3703 -0.694634 66.2901 -0.699007 66.2152 -0.703699 66.1427 -0.709162 66.0723 -0.714934 66.004 -0.721313 65.9411 -0.7276 65.8784 -0.734048 65.8202 -0.740341 65.7628 -0.747022 65.7103 -0.753836 65.6585 -0.760874 65.6105 -0.768131 65.5635 -0.774981 65.5194 -0.776484 65.4373 -0.761663 65.1314 -0.73948 64.591 -0.71243 63.9622 -0.681547 63.2558 -0.647487 62.4847 -0.610761 61.6576 -0.571788 60.7813 -0.53093 59.8618 -0.488516 58.9047 -0.444858 57.9159 -0.400258 56.9011 -0.355004 55.8665 -0.309375 54.8187 -0.263635 53.7645 -0.218039 52.7111 -0.172824 51.6657 -0.128213 50.6356 -0.0844117 49.6282 -0.0416115 48.6504 47.7087 -0.664616 12.6079 -0.877888 20.858 -1.09717 28.8613 -1.32105 36.5148 -1.54608 43.7302 -1.76605 50.431 -1.97167 56.5478 -2.15123 62.0109 -2.2934 66.7464 -2.39313 70.6819 -2.45712 73.7714 -2.50608 76.0445 -2.5667 77.6391 -2.66282 78.783 -2.80736 79.7401 -3.00331 80.7478 -3.24446 81.9896 -3.51615 83.593 -3.79711 85.6249 -4.05927 88.0677 -4.27458 90.7707 -4.42806 93.4258 -4.52538 95.6547 -4.58223 97.2036 -4.57915 97.9643 -4.54874 98.096 -4.47866 97.6305 -4.35995 96.4716 -4.20979 94.9089 -4.06395 93.4928 -3.93709 92.2457 -3.81179 91.1671 -3.68378 90.1342 -3.56167 89.191 -3.44933 88.2138 -3.34523 87.3681 -3.23879 86.5016 -3.12864 85.7407 -3.02896 84.9392 -2.94083 84.2433 -2.84757 83.4935 -2.75059 82.8657 -2.66196 82.1697 -2.58221 81.5856 -2.49762 80.9278 -2.41251 80.3971 -2.3406 79.8048 -2.27237 79.32 -2.19948 78.7608 -2.13022 78.3187 -2.06752 77.8119 -2.00324 77.3966 -1.9394 76.9196 -1.8832 76.5355 -1.82964 76.0912 -1.77462 75.7299 -1.72344 75.3176 -1.67144 74.9813 -1.62137 74.5942 -1.57488 74.279 -1.53201 73.9202 -1.48968 73.6249 -1.44914 73.2902 -1.41016 73.0166 -1.37256 72.7016 -1.33747 72.4447 -1.30347 72.154 -1.27089 71.9094 -1.2379 71.6349 -1.20574 71.4112 -1.17576 71.1568 -1.14666 70.9399 -1.11885 70.7054 -1.0938 70.5062 -1.07004 70.2788 -1.04808 70.0873 -1.02688 69.877 -1.00762 69.6918 -0.989069 69.5048 -0.971003 69.328 -0.954 69.1396 -0.938918 68.9863 -0.924763 68.815 -0.913684 68.6519 -0.902396 68.517 -0.891004 68.3597 -0.880935 68.2214 -0.869871 68.0734 -0.860505 67.9419 -0.851924 67.8082 -0.843008 67.6823 -0.834945 67.562 -0.829259 67.4432 -0.824705 67.3278 -0.819816 67.2181 -0.815368 67.1064 -0.810937 67.004 -0.806692 66.9034 -0.803838 66.8062 -0.8018 66.7123 -0.800709 66.6235 -0.799886 66.5348 -0.799348 66.4504 -0.799506 66.3704 -0.799546 66.2901 -0.799982 66.2157 -0.800833 66.1435 -0.802379 66.0739 -0.804431 66.0061 -0.807236 65.944 -0.810314 65.8814 -0.813793 65.8236 -0.817399 65.7664 -0.821109 65.7141 -0.824942 65.6623 -0.828938 65.6145 -0.833168 65.5677 -0.837077 65.5233 -0.835175 65.4354 -0.816835 65.1131 -0.791416 64.5655 -0.761152 63.9319 -0.727113 63.2218 -0.689937 62.4476 -0.650122 61.6178 -0.608083 60.7392 -0.564183 59.8179 -0.518756 58.8593 -0.472119 57.8693 -0.424576 56.8535 -0.376421 55.8183 -0.327935 54.7702 -0.279387 53.716 -0.231031 52.6627 -0.183109 51.6178 -0.135842 50.5884 -0.0894427 49.5818 -0.0441017 48.605 47.6646 -6.22339 12.8543 -6.44046 21.075 -6.62952 29.0503 -6.79055 36.6758 -6.92156 43.8612 -7.0177 50.5272 -7.07085 56.6009 -7.07052 62.0105 -7.00739 66.6832 -6.88006 70.5545 -6.70097 73.5923 -6.50016 75.8437 -6.31504 77.454 -6.17946 78.6474 -6.11433 79.675 -6.12681 80.7603 -6.21251 82.0753 -6.35701 83.7375 -6.53662 85.8045 -6.71881 88.2498 -6.8683 90.9202 -6.96027 93.5177 -6.99287 95.6873 -6.96705 97.1778 -6.86908 97.8664 -6.73804 97.9649 -6.5529 97.4453 -6.31661 96.2353 -6.06754 94.6598 -5.82614 93.2514 -5.59709 92.0167 -5.38611 90.9561 -5.18871 89.9368 -4.99893 89.0012 -4.81685 88.0317 -4.6404 87.1916 -4.47242 86.3336 -4.31661 85.5849 -4.16701 84.7896 -4.0178 84.0941 -3.87471 83.3504 -3.74469 82.7357 -3.61718 82.0422 -3.48629 81.4547 -3.36639 80.8079 -3.25863 80.2893 -3.14903 79.6952 -3.04277 79.2137 -2.94416 78.6622 -2.84841 78.223 -2.75024 77.7137 -2.65877 77.3051 -2.57543 76.8362 -2.49567 76.4558 -2.41511 76.0106 -2.34311 75.6579 -2.2693 75.2438 -2.19862 74.9106 -2.13221 74.5278 -2.06764 74.2145 -2.00558 73.8581 -1.94544 73.5647 -1.88735 73.2321 -1.83345 72.9627 -1.7829 72.6511 -1.73342 72.3952 -1.68679 72.1073 -1.64201 71.8646 -1.59748 71.5904 -1.55488 71.3686 -1.51404 71.116 -1.47403 70.8999 -1.43534 70.6667 -1.39894 70.4698 -1.36431 70.2441 -1.33233 70.0554 -1.30132 69.846 -1.27277 69.6632 -1.24571 69.4777 -1.21992 69.3022 -1.19581 69.1155 -1.17412 68.9646 -1.15386 68.7947 -1.13555 68.6336 -1.1168 68.4982 -1.09822 68.3411 -1.08106 68.2043 -1.06317 68.0555 -1.0483 67.927 -1.03404 67.7939 -1.01936 67.6676 -1.00539 67.548 -0.993432 67.4312 -0.982691 67.3171 -0.972147 67.2076 -0.962731 67.097 -0.954222 66.9955 -0.946442 66.8956 -0.939408 66.7991 -0.932589 66.7055 -0.926419 66.6174 -0.920458 66.5288 -0.915328 66.4452 -0.911264 66.3664 -0.907871 66.2867 -0.905114 66.2129 -0.903007 66.1414 -0.901013 66.0719 -0.899289 66.0043 -0.897915 65.9426 -0.896977 65.8805 -0.896596 65.8233 -0.896653 65.7664 -0.897067 65.7145 -0.897627 65.6628 -0.898475 65.6153 -0.899641 65.5689 -0.900636 65.5243 -0.895391 65.4302 -0.873774 65.0915 -0.84524 64.537 -0.811738 63.8984 -0.774439 63.1845 -0.734019 62.4072 -0.690983 61.5748 -0.645747 60.694 -0.598679 59.7708 -0.550117 58.8108 -0.500382 57.8195 -0.449783 56.8029 -0.398617 55.7672 -0.347168 54.7187 -0.295708 53.6645 -0.244492 52.6115 -0.193763 51.567 -0.143748 50.5384 -0.0946582 49.5327 -0.0466859 48.5571 47.6179 -11.9112 13.1437 -12.1347 21.2986 -12.2945 29.2101 -12.3916 36.7729 -12.4251 43.8946 -12.3911 50.4932 -12.2826 56.4925 -12.0912 61.8191 -11.8114 66.4034 -11.447 70.1901 -11.0192 73.1645 -10.5681 75.3926 -10.1414 77.0273 -9.7811 78.2871 -9.51407 79.408 -9.35091 80.5972 -9.28793 82.0123 -9.30986 83.7594 -9.3902 85.8848 -9.49167 88.3513 -9.57183 91.0003 -9.59703 93.5429 -9.55807 95.6483 -9.43738 97.0571 -9.24036 97.6693 -9.00757 97.7322 -8.70831 97.1461 -8.35614 95.8831 -7.97916 94.2828 -7.62776 92.9 -7.31549 91.7044 -7.02712 90.6677 -6.74486 89.6546 -6.47108 88.7274 -6.21933 87.7799 -5.98473 86.957 -5.76166 86.1105 -5.54221 85.3654 -5.3313 84.5787 -5.13621 83.899 -4.95372 83.1679 -4.77014 82.5521 -4.58997 81.862 -4.42882 81.2936 -4.27765 80.6567 -4.12426 80.1359 -3.97892 79.5498 -3.84605 79.0808 -3.71519 78.5313 -3.5854 78.0932 -3.46368 77.592 -3.34883 77.1903 -3.23532 76.7227 -3.12542 76.3459 -3.02565 75.9108 -2.92632 75.5585 -2.83271 75.1502 -2.74585 74.8237 -2.66052 74.4425 -2.57731 74.1313 -2.49775 73.7785 -2.42054 73.4875 -2.34589 73.1574 -2.27585 72.8926 -2.20811 72.5833 -2.14457 72.3316 -2.08349 72.0463 -2.02545 71.8066 -1.96977 71.5347 -1.91504 71.3139 -1.86243 71.0634 -1.8117 70.8492 -1.76206 70.6171 -1.71478 70.4226 -1.67023 70.1996 -1.6286 70.0137 -1.58794 69.8053 -1.55025 69.6255 -1.51441 69.4419 -1.48015 69.268 -1.44828 69.0836 -1.41866 68.935 -1.39046 68.7665 -1.36384 68.607 -1.33743 68.4718 -1.31173 68.3154 -1.28788 68.1804 -1.2635 68.0311 -1.24273 67.9062 -1.22162 67.7728 -1.20073 67.6467 -1.18073 67.528 -1.16289 67.4134 -1.14655 67.3008 -1.13073 67.1918 -1.1164 67.0827 -1.10315 66.9822 -1.09047 66.8829 -1.07819 66.7869 -1.06673 66.6941 -1.05617 66.6068 -1.0462 66.5188 -1.03725 66.4363 -1.02891 66.358 -1.02155 66.2794 -1.01475 66.2061 -1.00872 66.1354 -1.00279 66.0659 -0.997526 65.9991 -0.992525 65.9376 -0.988115 65.8761 -0.983864 65.819 -0.979841 65.7624 -0.976535 65.7112 -0.973446 65.6598 -0.971109 65.613 -0.969058 65.5668 -0.966908 65.5222 -0.9578 65.4211 -0.932529 65.0662 -0.900787 64.5053 -0.86404 63.8617 -0.823435 63.1439 -0.779683 62.3634 -0.733315 61.5284 -0.684764 60.6455 -0.634407 59.7204 -0.582591 58.7589 -0.529642 57.7666 -0.475873 56.7492 -0.421585 55.7129 -0.367066 54.6642 -0.312589 53.61 -0.258412 52.5573 -0.204781 51.5134 -0.151922 50.4855 -0.100048 49.4808 -0.0493523 48.5064 47.5686 -17.6322 13.4805 -17.8652 21.5315 -17.997 29.3419 -18.0293 36.8052 -17.962 43.8272 -17.7919 50.3232 -17.514 56.2145 -17.1225 61.4276 -16.6179 65.8988 -16.0114 69.5836 -15.336 72.4891 -14.6423 74.6989 -13.9867 76.3716 -13.4169 77.7174 -12.9641 78.9551 -12.6402 80.2733 -12.4413 81.8135 -12.3506 83.6686 -12.3379 85.8722 -12.3609 88.3743 -12.3706 91.01 -12.3263 93.4986 -12.2106 95.5327 -11.9903 96.8369 -11.691 97.37 -11.3439 97.385 -10.9165 96.7187 -10.4234 95.39 -9.93304 93.7925 -9.49687 92.4638 -9.0888 91.2964 -8.69776 90.2767 -8.33256 89.2894 -7.99509 88.39 -7.67749 87.4623 -7.37226 86.6518 -7.07809 85.8164 -6.80232 85.0897 -6.54628 84.3226 -6.29776 83.6505 -6.04894 82.9191 -5.81647 82.3197 -5.6065 81.6521 -5.40101 81.0881 -5.20064 80.4564 -5.01772 79.953 -4.84411 79.3762 -4.67039 78.9071 -4.50763 78.3686 -4.35499 77.9405 -4.20541 77.4424 -4.05771 77.0426 -3.91591 76.5809 -3.78331 76.2133 -3.65286 75.7804 -3.53061 75.4363 -3.41734 75.0369 -3.30637 74.7128 -3.20115 74.3373 -3.1005 74.0306 -3.00428 73.6823 -2.9108 73.394 -2.82071 73.0673 -2.73303 72.805 -2.65005 72.5003 -2.57069 72.2523 -2.49373 71.9693 -2.42212 71.735 -2.35251 71.4651 -2.28496 71.2463 -2.22082 70.9992 -2.15932 70.7877 -2.09918 70.557 -2.04161 70.365 -1.98739 70.1454 -1.93588 69.9622 -1.88561 69.755 -1.83875 69.5787 -1.7938 69.3969 -1.75054 69.2247 -1.70965 69.0427 -1.67104 68.8964 -1.634 68.7295 -1.59883 68.5718 -1.56467 68.4376 -1.53176 68.2825 -1.50087 68.1495 -1.4701 68.0004 -1.44286 67.879 -1.41474 67.7447 -1.38805 67.62 -1.36244 67.5024 -1.33924 67.3902 -1.31742 67.2789 -1.29602 67.1703 -1.27627 67.063 -1.25704 66.963 -1.23858 66.8645 -1.22138 66.7697 -1.20568 66.6784 -1.19127 66.5924 -1.17744 66.505 -1.16448 66.4233 -1.15188 66.3454 -1.13991 66.2674 -1.12839 66.1946 -1.11759 66.1246 -1.10714 66.0555 -1.09773 65.9897 -1.08892 65.9288 -1.08099 65.8682 -1.07331 65.8113 -1.06613 65.7553 -1.05966 65.7047 -1.05359 65.6537 -1.04831 65.6077 -1.04297 65.5615 -1.03747 65.5167 -1.02393 65.4075 -0.994312 65.0366 -0.958733 64.4697 -0.918358 63.8213 -0.874214 63.0997 -0.826962 62.3161 -0.777121 61.4785 -0.725125 60.5935 -0.671355 59.6667 -0.616165 58.7038 -0.559885 57.7103 -0.502834 56.6921 -0.445314 55.6554 -0.387617 54.6065 -0.330018 53.5524 -0.272781 52.5001 -0.216149 51.4568 -0.160353 50.4297 -0.105606 49.4261 -0.0520983 48.4529 47.5165 -23.2806 13.8678 -23.5251 21.776 -23.6296 29.4464 -23.596 36.7716 -23.4244 43.6556 -23.1131 50.0118 -22.6591 55.7606 -22.0625 60.831 -21.3302 65.1665 -20.4849 68.7383 -19.5729 71.5771 -18.6543 73.7804 -17.792 75.5093 -17.0371 76.9625 -16.4223 78.3403 -15.9593 79.8103 -15.6432 81.4974 -15.4544 83.4799 -15.3592 85.777 -15.3097 88.3249 -15.2504 90.9506 -15.1325 93.3807 -14.9271 95.3273 -14.5975 96.5072 -14.1947 96.9673 -13.723 96.9133 -13.1618 96.1575 -12.5441 94.7723 -11.9387 93.1871 -11.3842 91.9094 -10.8771 90.7892 -10.4143 89.8139 -9.97764 88.8527 -9.55588 87.9682 -9.15707 87.0635 -8.78419 86.2789 -8.43497 85.4672 -8.10258 84.7573 -7.77553 83.9956 -7.46427 83.3393 -7.17756 82.6324 -6.90794 82.05 -6.64147 81.3856 -6.39158 80.8382 -6.16181 80.2266 -5.94217 79.7333 -5.72232 79.1564 -5.51866 78.7034 -5.32791 78.1778 -5.14153 77.7541 -4.95713 77.258 -4.78658 76.872 -4.62049 76.4148 -4.45814 76.0509 -4.30555 75.6278 -4.1614 75.2921 -4.01954 74.8951 -3.88607 74.5793 -3.75918 74.2104 -3.6391 73.9105 -3.5231 73.5663 -3.41351 73.2845 -3.30716 72.961 -3.20478 72.7026 -3.10626 72.4018 -3.01134 72.1574 -2.91973 71.8777 -2.83224 71.6475 -2.7487 71.3816 -2.66819 71.1658 -2.59105 70.9221 -2.51786 70.7145 -2.4466 70.4857 -2.37827 70.2967 -2.31392 70.081 -2.25225 69.9005 -2.19228 69.6951 -2.13591 69.5223 -2.08149 69.3425 -2.02903 69.1722 -1.97915 68.9928 -1.93197 68.8492 -1.8861 68.6836 -1.84246 68.5282 -1.80003 68.3952 -1.75925 68.2417 -1.72055 68.1108 -1.68344 67.9632 -1.64936 67.8449 -1.61476 67.7101 -1.58262 67.5879 -1.55133 67.4711 -1.52209 67.3609 -1.49404 67.2509 -1.46679 67.1431 -1.44137 67.0375 -1.41641 66.938 -1.39302 66.8411 -1.37131 66.748 -1.35064 66.6577 -1.33115 66.5729 -1.31199 66.4858 -1.29378 66.4051 -1.27642 66.3281 -1.25985 66.2508 -1.24413 66.1789 -1.22934 66.1098 -1.21495 66.0411 -1.20138 65.9761 -1.18868 65.9161 -1.17683 65.8563 -1.16578 65.8003 -1.15562 65.7451 -1.14584 65.6949 -1.13664 65.6445 -1.12793 65.599 -1.11913 65.5527 -1.11017 65.5077 -1.09244 65.3898 -1.05867 65.0028 -1.01903 64.43 -0.974725 63.777 -0.926798 63.0518 -0.875858 62.2652 -0.822389 61.4251 -0.766811 60.5379 -0.709504 59.6094 -0.65082 58.6451 -0.591096 57.6506 -0.53065 56.6317 -0.469791 55.5945 -0.408813 54.5455 -0.347994 53.4916 -0.287598 52.4397 -0.227871 51.397 -0.169044 50.3709 -0.111333 49.3684 -0.0549271 48.3965 47.4616 -28.7397 14.3074 -28.9967 22.033 -29.0736 29.5233 -28.9721 36.6701 -28.693 43.3766 -28.2366 49.5554 -27.6038 55.1279 -26.802 60.0292 -25.8481 64.2126 -24.7793 67.6695 -23.6538 70.4516 -22.5397 72.6663 -21.5029 74.4725 -20.5962 76.0557 -19.8508 77.595 -19.277 79.2364 -18.8676 81.088 -18.6 83.2122 -18.4353 85.6123 -18.3197 88.2092 -18.1909 90.8219 -17.9937 93.1835 -17.6876 95.0212 -17.2504 96.07 -16.7418 96.4587 -16.138 96.3095 -15.4372 95.4567 -14.6724 94.0075 -13.9418 92.4564 -13.3028 91.2704 -12.7178 90.2042 -12.1585 89.2546 -11.6284 88.3226 -11.1309 87.4707 -10.6712 86.6038 -10.2322 85.8399 -9.8095 85.0444 -9.40685 84.3546 -9.03165 83.6204 -8.68048 82.9881 -8.33812 82.29 -8.00698 81.7189 -7.70533 81.0839 -7.42103 80.5539 -7.14087 79.9464 -6.87426 79.4667 -6.62869 78.9108 -6.39133 78.4661 -6.15921 77.9457 -5.93981 77.5347 -5.73154 77.0497 -5.53126 76.6717 -5.33485 76.2184 -5.15135 75.8674 -4.97615 75.4526 -4.8027 75.1187 -4.64201 74.7344 -4.48581 74.4231 -4.33727 74.0619 -4.19539 73.7687 -4.05923 73.4301 -3.93013 73.1553 -3.8066 72.8375 -3.68781 72.5838 -3.57344 72.2875 -3.46478 72.0487 -3.3573 71.7702 -3.25555 71.5457 -3.15846 71.2845 -3.06367 71.0711 -2.97322 70.8316 -2.88748 70.6287 -2.80421 70.4024 -2.72455 70.217 -2.64918 70.0057 -2.57678 69.8281 -2.50694 69.6252 -2.44093 69.4563 -2.37723 69.2788 -2.31584 69.1109 -2.25711 68.9341 -2.20085 68.793 -2.14564 68.6284 -2.0934 68.476 -2.04269 68.3445 -1.99403 68.193 -1.94753 68.0643 -1.90398 67.9197 -1.86244 67.8034 -1.82146 67.6691 -1.78345 67.5499 -1.74587 67.4336 -1.71013 67.3252 -1.67579 67.2166 -1.64297 67.1103 -1.61191 67.0065 -1.58179 66.9079 -1.55348 66.8128 -1.52621 66.7207 -1.49971 66.6312 -1.47437 66.5476 -1.44984 66.4613 -1.42654 66.3818 -1.4044 66.3059 -1.38349 66.2299 -1.36366 66.159 -1.34504 66.0912 -1.32697 66.023 -1.30973 65.9588 -1.29335 65.8997 -1.27755 65.8405 -1.26264 65.7854 -1.24829 65.7307 -1.23427 65.6809 -1.22081 65.631 -1.20796 65.5861 -1.19547 65.5402 -1.18275 65.495 -1.16113 65.3682 -1.12386 64.9655 -1.08063 64.3868 -1.03261 63.729 -0.980919 63.0001 -0.926229 62.2105 -0.869036 61.3679 -0.80977 60.4786 -0.748814 59.5484 -0.686526 58.5828 -0.623248 57.5873 -0.559303 56.5677 -0.495003 55.5302 -0.430644 54.4812 -0.366508 53.4275 -0.30286 52.376 -0.239946 51.3341 -0.177999 50.3089 -0.117236 49.3076 -0.0578451 48.3371 47.4037 -33.8839 14.7985 -34.1524 22.3016 -34.2 29.5709 -34.0285 36.4985 -33.64 42.9881 -33.038 48.9534 -32.2302 54.3201 -31.233 59.032 -30.077 63.0566 -28.8145 66.407 -27.5123 69.1494 -26.2433 71.3973 -25.0743 73.3035 -24.0567 75.0382 -23.2183 76.7565 -22.5663 78.5845 -22.0909 80.6126 -21.7651 82.8864 -21.5452 85.3924 -21.3715 88.0356 -21.1759 90.6262 -20.8952 92.9027 -20.4803 94.6063 -19.9343 95.524 -19.3028 95.8273 -18.5579 95.5645 -17.702 94.6009 -16.8006 93.106 -15.9787 91.6345 -15.2447 90.5364 -14.5492 89.5087 -13.9037 88.6091 -13.3061 87.725 -12.7406 86.9052 -12.1983 86.0614 -11.6822 85.3238 -11.2015 84.5638 -10.7533 83.9065 -10.3204 83.1874 -9.90052 82.5682 -9.50605 81.8955 -9.13804 81.3509 -8.7918 80.7377 -8.45221 80.2143 -8.13312 79.6273 -7.84035 79.174 -7.55192 78.6224 -7.27152 78.1857 -7.00982 77.684 -6.76175 77.2867 -6.51732 76.8053 -6.2854 76.4398 -6.06485 75.9978 -5.85537 75.6579 -5.64997 75.2472 -5.45936 74.9281 -5.27538 74.5504 -5.09677 74.2445 -4.92771 73.8928 -4.76572 73.6067 -4.60851 73.2729 -4.45983 73.0067 -4.31825 72.6959 -4.18126 72.4468 -4.05107 72.1573 -3.92596 71.9236 -3.80435 71.6486 -3.68912 71.4305 -3.57793 71.1733 -3.47052 70.9636 -3.36714 70.7283 -3.26851 70.5301 -3.17296 70.3069 -3.08114 70.1252 -2.99382 69.9183 -2.91006 69.7444 -2.82982 69.545 -2.75365 69.3801 -2.68047 69.2056 -2.60988 69.0403 -2.54191 68.8661 -2.47612 68.7272 -2.41168 68.564 -2.35098 68.4153 -2.29221 68.2857 -2.23565 68.1365 -2.18147 68.0102 -2.13093 67.8692 -2.0815 67.754 -2.03395 67.6215 -1.98935 67.5053 -1.94498 67.3892 -1.90286 67.2831 -1.86231 67.176 -1.82372 67.0717 -1.78688 66.9696 -1.7514 66.8724 -1.71751 66.7789 -1.68435 66.6875 -1.65274 66.5996 -1.62243 66.5173 -1.59359 66.4325 -1.56601 66.3542 -1.53929 66.2792 -1.51367 66.2043 -1.48904 66.1344 -1.46543 66.0676 -1.44277 66.0004 -1.42141 65.9375 -1.40076 65.879 -1.38085 65.8206 -1.36181 65.7663 -1.34307 65.712 -1.32504 65.6628 -1.30739 65.6134 -1.29062 65.5693 -1.27436 65.524 -1.2575 65.4781 -1.2313 65.342 -1.19017 64.9244 -1.14344 64.3401 -1.09184 63.6773 -1.03644 62.9447 -0.977971 62.1521 -0.916988 61.3069 -0.853944 60.4156 -0.78924 59.4837 -0.723247 58.5168 -0.656313 57.5204 -0.588768 56.5002 -0.520929 55.4624 -0.453093 54.4134 -0.385544 53.3599 -0.318549 52.309 -0.252358 51.2679 -0.187206 50.2438 -0.123306 49.2437 -0.060848 48.2746 47.3429 -38.5852 15.3366 -38.8616 22.578 -38.8772 29.5865 -38.6346 36.2559 -38.1386 42.4921 -37.3977 48.2125 -36.4295 53.3518 -35.2619 57.8645 -33.9402 61.7349 -32.5277 64.9946 -31.0974 67.719 -29.7237 70.0236 -28.473 72.0527 -27.3908 73.956 -26.5006 75.8663 -25.8065 77.8905 -25.2951 80.1011 -24.9349 82.5262 -24.6759 85.1334 -24.4512 87.8108 -24.1852 90.3603 -23.8096 92.5272 -23.2768 94.0735 -22.6142 94.8613 -21.8481 95.0612 -20.9574 94.6738 -19.9587 93.6021 -18.931 92.0784 -17.9984 90.7019 -17.1604 89.6985 -16.3875 88.7358 -15.6746 87.8962 -14.9926 87.043 -14.3394 86.252 -13.7268 85.4489 -13.1602 84.7572 -12.6211 84.0247 -12.1009 83.3863 -11.6024 82.6889 -11.1345 82.1003 -10.6976 81.4587 -10.2761 80.9294 -9.87443 80.336 -9.50533 79.8452 -9.15315 79.2752 -8.80923 78.83 -8.481 78.2942 -8.17479 77.8795 -7.87819 77.3874 -7.59077 76.9992 -7.31688 76.5314 -7.05963 76.1826 -6.80828 75.7465 -6.56865 75.4183 -6.34417 75.0227 -6.12645 74.7103 -5.91753 74.3415 -5.71874 74.0457 -5.52815 73.7022 -5.34552 73.424 -5.16855 73.096 -5.00262 72.8407 -4.84126 72.5345 -4.68717 72.2927 -4.53872 72.0088 -4.39776 71.7826 -4.26156 71.5124 -4.13109 71.3 -4.00677 71.049 -3.88633 70.8432 -3.76981 70.6117 -3.6586 70.4189 -3.55077 70.199 -3.44675 70.0211 -3.34728 69.8189 -3.25171 69.6488 -3.16022 69.4535 -3.07303 69.2929 -2.98965 69.1222 -2.90936 68.96 -2.83214 68.7889 -2.7571 68.6521 -2.68406 68.4909 -2.61524 68.3464 -2.54867 68.2192 -2.48409 68.0719 -2.42208 67.9481 -2.36348 67.8106 -2.30592 67.6964 -2.25142 67.567 -2.19973 67.4536 -2.14847 67.3379 -2.09991 67.2345 -2.05306 67.1292 -2.00848 67.0271 -1.96589 66.927 -1.9247 66.8312 -1.88513 66.7393 -1.84676 66.6492 -1.8104 66.5632 -1.77527 66.4821 -1.74168 66.3989 -1.70931 66.3219 -1.67776 66.2477 -1.64716 66.1737 -1.61799 66.1052 -1.58934 66.0389 -1.5621 65.9731 -1.53622 65.9116 -1.51088 65.8537 -1.48647 65.7962 -1.46329 65.7431 -1.44078 65.6895 -1.41912 65.6412 -1.39797 65.5922 -1.37765 65.549 -1.35775 65.5041 -1.33683 65.4572 -1.30538 65.3105 -1.25945 64.8785 -1.20852 64.2891 -1.15291 63.6217 -1.09356 62.8854 -1.03116 62.0896 -0.966254 61.242 -0.899315 60.3486 -0.830755 59.4151 -0.760951 58.447 -0.690259 57.4497 -0.619015 56.4289 -0.547538 55.3909 -0.47613 54.3419 -0.405076 53.2889 -0.334648 52.2386 -0.265094 51.1984 -0.19665 50.1753 -0.129531 49.1766 -0.0639272 48.209 47.2789 -42.7227 15.9141 -43.0021 22.8574 -42.9842 29.5686 -42.6736 35.9453 -42.0796 41.8981 -41.2188 47.3518 -40.1192 52.2523 -38.8225 56.5677 -37.3856 60.298 -35.8789 63.4879 -34.379 66.2191 -32.9601 68.6048 -31.6825 70.7751 -30.5851 72.8586 -29.6871 74.9683 -28.9885 77.1918 -28.4706 79.5833 -28.096 82.1517 -27.8078 84.8452 -27.5324 87.5354 -27.1902 90.0181 -26.7135 92.0504 -26.0685 93.4286 -25.2856 94.0784 -24.3767 94.1524 -23.3287 93.6257 -22.1659 92.4394 -21 90.9125 -19.9895 89.6914 -19.0872 88.7961 -18.2321 87.8807 -17.4198 87.0839 -16.6573 86.2805 -15.9455 85.5402 -15.275 84.7783 -14.6335 84.1158 -14.0191 83.4103 -13.4418 82.809 -12.9001 82.1472 -12.3811 81.5813 -11.8847 80.9622 -11.4178 80.4625 -10.985 79.9032 -10.5718 79.432 -10.1673 78.8707 -9.78548 78.4483 -9.43069 77.9394 -9.0845 77.5333 -8.74981 77.0527 -8.43339 76.6828 -8.1341 76.2321 -7.84287 75.8913 -7.5639 75.4675 -7.30338 75.1578 -7.0486 74.7679 -6.80438 74.4661 -6.5749 74.112 -6.3514 73.8222 -6.13916 73.49 -5.93521 73.2201 -5.74103 72.9018 -5.55459 72.6543 -5.37518 72.3551 -5.20308 72.1206 -5.03733 71.8431 -4.88002 71.6253 -4.72708 71.3595 -4.58195 71.1549 -4.44261 70.9097 -4.30846 70.709 -4.17943 70.4827 -4.05568 70.2952 -3.93599 70.0794 -3.82004 69.9052 -3.70842 69.7072 -3.60099 69.5414 -3.49809 69.3506 -3.39978 69.1946 -3.30581 69.0283 -3.21548 68.8696 -3.12856 68.702 -3.04384 68.5674 -2.96208 68.4092 -2.88504 68.2694 -2.81065 68.1448 -2.73804 67.9993 -2.66815 67.8782 -2.60095 67.7433 -2.5356 67.6311 -2.47426 67.5057 -2.41554 67.3949 -2.35763 67.28 -2.30266 67.1796 -2.24955 67.0761 -2.19889 66.9764 -2.15024 66.8784 -2.10285 66.7839 -2.05756 66.694 -2.01393 66.6055 -1.97197 66.5213 -1.93115 66.4413 -1.89193 66.3597 -1.85415 66.2841 -1.81738 66.2109 -1.7821 66.1384 -1.74875 66.0719 -1.71574 66.0059 -1.68468 65.9421 -1.65439 65.8813 -1.62485 65.8242 -1.59585 65.7672 -1.56849 65.7158 -1.54193 65.6629 -1.5161 65.6154 -1.49118 65.5673 -1.46702 65.5249 -1.44355 65.4806 -1.41894 65.4326 -1.38262 65.2742 -1.3318 64.8277 -1.27614 64.2335 -1.21606 63.5617 -1.15241 62.8217 -1.08584 62.0231 -1.01684 61.173 -0.945862 60.2777 -0.873323 59.3426 -0.799598 58.3733 -0.725044 57.3751 -0.65 56.3539 -0.574789 55.3157 -0.499717 54.2669 -0.425072 53.2142 -0.351125 52.1647 -0.278127 51.1254 -0.206314 50.1035 -0.135902 49.1062 -0.0670768 48.1402 47.2119 -46.1971 16.5208 -46.4753 23.1356 -46.4264 29.5197 -46.0588 35.5776 -45.3881 41.2274 -44.4407 46.4043 -43.255 51.0666 -41.884 55.1967 -40.3938 58.8078 -38.8588 61.9529 -37.3556 64.7159 -35.9529 67.202 -34.703 69.5252 -33.6388 71.7945 -32.7742 74.1036 -32.1041 76.5217 -31.605 79.0842 -31.2338 81.7805 -30.9274 84.5388 -30.6064 87.2144 -30.1864 89.5981 -29.5995 91.4635 -28.8233 92.6523 -27.8973 93.1524 -26.8368 93.0919 -25.6259 92.4148 -24.3044 91.1179 -23.0527 89.6608 -21.9787 88.6174 -20.972 87.7895 -20.0194 86.9281 -19.1475 86.2119 -18.3305 85.4635 -17.5404 84.7502 -16.7843 84.0223 -16.0802 83.4117 -15.4244 82.7545 -14.7986 82.1832 -14.1915 81.54 -13.6145 81.0043 -13.0827 80.4304 -12.5831 79.963 -12.0913 79.4114 -11.6278 78.9684 -11.1926 78.4355 -10.7769 78.0325 -10.3743 77.5367 -9.99218 77.1512 -9.6289 76.6894 -9.28398 76.3379 -8.95029 75.8984 -8.63446 75.5755 -8.33367 75.1668 -8.04239 74.8665 -7.76002 74.4855 -7.49683 74.2029 -7.2377 73.8529 -6.99273 73.5772 -6.75744 73.2547 -6.5345 72.9972 -6.31951 72.6868 -6.11461 72.4494 -5.91716 72.1577 -5.72721 71.9306 -5.54474 71.6606 -5.36926 71.4498 -5.20133 71.1915 -5.0401 70.9937 -4.88523 70.7548 -4.73818 70.562 -4.59558 70.3401 -4.4592 70.1588 -4.32755 69.9477 -4.19971 69.7774 -4.07649 69.584 -3.95777 69.4227 -3.84362 69.2364 -3.73405 69.085 -3.62905 68.9233 -3.52822 68.7688 -3.43086 68.6046 -3.33615 68.4727 -3.24532 68.3183 -3.15945 68.1835 -3.07662 68.0619 -2.99595 67.9186 -2.91851 67.8008 -2.8433 67.6681 -2.77091 67.5587 -2.70304 67.4378 -2.63749 67.3293 -2.57315 67.2157 -2.51193 67.1183 -2.45224 67.0164 -2.39499 66.9192 -2.33957 66.823 -2.2857 66.73 -2.23443 66.6427 -2.18492 66.556 -2.13683 66.4732 -2.09023 66.3947 -2.04569 66.3151 -2.00287 66.2413 -1.96083 66.1689 -1.92095 66.0985 -1.88245 66.0334 -1.84454 65.968 -1.80919 65.9067 -1.77418 65.8463 -1.74059 65.7906 -1.70728 65.7339 -1.67585 65.6843 -1.64497 65.6321 -1.61497 65.5854 -1.58595 65.5383 -1.55771 65.4966 -1.53046 65.4534 -1.50182 65.404 -1.46088 65.2333 -1.40563 64.7724 -1.34538 64.1732 -1.28078 63.4971 -1.21273 62.7537 -1.14185 61.9522 -1.06863 61.0998 -0.993502 60.2025 -0.916876 59.266 -0.839128 58.2955 -0.760615 57.2966 -0.681681 56.275 -0.602649 55.2366 -0.523828 54.1881 -0.44551 53.1359 -0.367964 52.0871 -0.291445 51.0489 -0.21619 50.0283 -0.142411 49.0324 -0.0702944 48.0681 47.1416 -48.9531 17.1455 -49.2282 23.4107 -49.1574 29.4489 -48.7535 35.1737 -48.04 40.5139 -47.0524 45.4167 -45.8384 49.8526 -44.4585 53.8167 -42.9837 57.333 -41.4892 60.4584 -40.047 63.2737 -38.7178 65.8729 -37.5468 68.3541 -36.5609 70.8086 -35.7688 73.3115 -35.1604 75.9134 -34.7062 78.63 -34.3548 81.429 -34.033 84.2169 -33.6527 86.8341 -33.1303 89.0758 -32.4157 90.7488 -31.5076 91.7442 -30.4387 92.0835 -29.2136 91.8668 -27.8267 91.0279 -26.3692 89.6604 -25.0423 88.3339 -23.8881 87.4632 -22.8043 86.7057 -21.8016 85.9254 -20.8639 85.2742 -19.9537 84.5532 -19.0849 83.8814 -18.2853 83.2227 -17.5426 82.6689 -16.8204 82.0324 -16.122 81.4848 -15.471 80.889 -14.866 80.3993 -14.2839 79.8483 -13.7221 79.4012 -13.1905 78.8798 -12.6956 78.4735 -12.2188 77.9587 -11.7552 77.569 -11.3187 77.1002 -10.9087 76.7413 -10.5091 76.2898 -10.1292 75.958 -9.77261 75.5419 -9.43028 75.2332 -9.09919 74.8357 -8.78046 74.5478 -8.47926 74.1843 -8.18562 73.9093 -7.90464 73.5719 -7.63859 73.3112 -7.38192 72.998 -7.13759 72.7528 -6.90339 72.4526 -6.68053 72.2265 -6.46314 71.9403 -6.25737 71.7249 -6.05689 71.4601 -5.86559 71.2585 -5.68176 71.0077 -5.50397 70.8159 -5.33459 70.5854 -5.17285 70.4003 -5.01636 70.1836 -4.86737 70.0098 -4.72349 69.8038 -4.58432 69.6382 -4.44991 69.4496 -4.32015 69.2929 -4.19477 69.1111 -4.07397 68.9642 -3.958 68.8073 -3.84662 68.6574 -3.73893 68.4969 -3.63452 68.3683 -3.53436 68.2182 -3.43931 68.0885 -3.34782 67.9704 -3.25913 67.8299 -3.17427 67.7159 -3.09143 67.5853 -3.0122 67.4795 -2.93739 67.363 -2.86473 67.2567 -2.79362 67.1446 -2.72559 67.0503 -2.65874 66.9495 -2.59463 66.8551 -2.53257 66.7609 -2.47277 66.6702 -2.41548 66.5855 -2.35968 66.5002 -2.30571 66.4192 -2.25353 66.3425 -2.20369 66.2653 -2.15569 66.1933 -2.10844 66.1216 -2.06365 66.0538 -2.0195 65.9892 -1.97648 65.925 -1.93622 65.8665 -1.89638 65.8065 -1.85814 65.7523 -1.82052 65.6962 -1.78462 65.6485 -1.74931 65.5967 -1.71541 65.5515 -1.68218 65.5051 -1.64984 65.4643 -1.61842 65.4219 -1.58521 65.3707 -1.53925 65.1873 -1.47984 64.713 -1.41539 64.1088 -1.34651 63.4282 -1.27415 62.6813 -1.19896 61.877 -1.12146 61.0223 -1.04211 60.1232 -0.961321 59.1852 -0.879467 58.2137 -0.796913 57.214 -0.714007 56.1921 -0.631077 55.1537 -0.548433 54.1054 -0.466367 53.0538 -0.38515 52.0059 -0.305039 50.9688 -0.226271 49.9495 -0.149056 48.9552 -0.0735801 47.9926 47.068 -50.9966 17.7808 -51.2725 23.6866 -51.1962 29.3726 -50.7862 34.7637 -50.0733 39.801 -49.1001 44.4435 -47.9206 48.6732 -46.5992 52.4953 -45.2076 55.9414 -43.818 59.0688 -42.4954 61.9511 -41.293 64.6705 -40.2486 67.3097 -39.3826 69.9425 -38.6968 72.6257 -38.1737 75.3902 -37.7742 78.2305 -37.4378 81.0926 -37.0862 83.8654 -36.6345 86.3824 -36.0082 88.4495 -35.1631 89.9037 -34.1056 90.6867 -32.8744 90.8523 -31.4719 90.4644 -29.9097 89.4657 -28.3245 88.0752 -26.9443 86.9537 -25.7447 86.2636 -24.6036 85.5645 -23.5287 84.8505 -22.5071 84.2527 -21.5334 83.5795 -20.6267 82.9747 -19.7788 82.3747 -18.9587 81.8489 -18.1718 81.2455 -17.4395 80.7525 -16.7496 80.1992 -16.0841 79.7338 -15.4504 79.2146 -14.8582 78.8089 -14.294 78.3156 -13.7472 77.9267 -13.2267 77.4383 -12.7373 77.0796 -12.267 76.6299 -11.8185 76.2928 -11.3867 75.858 -10.9809 75.5522 -10.5952 75.1561 -10.2173 74.8553 -9.86166 74.48 -9.52149 74.2076 -9.19037 73.8532 -8.87648 73.5954 -8.57506 73.2705 -8.2873 73.0234 -8.0097 72.7204 -7.74508 72.4882 -7.49287 72.2004 -7.24815 71.9818 -7.01409 71.7062 -6.79064 71.5014 -6.57352 71.243 -6.36615 71.0512 -6.16623 70.8078 -5.97388 70.6235 -5.78897 70.4005 -5.61271 70.224 -5.44267 70.0136 -5.28012 69.8472 -5.12372 69.6474 -4.97284 69.4873 -4.8269 69.3037 -4.68642 69.1524 -4.55034 68.975 -4.41921 68.8331 -4.29288 68.681 -4.1711 68.5356 -4.05344 68.3792 -3.93953 68.2544 -3.83003 68.1087 -3.72597 67.9844 -3.62579 67.8703 -3.52871 67.7328 -3.4357 67.6229 -3.3446 67.4942 -3.25788 67.3927 -3.17536 67.2805 -3.09508 67.1764 -3.0167 67.0662 -2.94139 66.975 -2.86774 66.8758 -2.79731 66.7847 -2.72893 66.6925 -2.66332 66.6046 -2.59976 66.5219 -2.53765 66.4381 -2.47815 66.3597 -2.42049 66.2849 -2.36499 66.2098 -2.31113 66.1394 -2.25863 66.0691 -2.20827 66.0034 -2.15884 65.9398 -2.11118 65.8773 -2.06592 65.8212 -2.02175 65.7623 -1.97874 65.7093 -1.93677 65.6543 -1.896 65.6077 -1.85624 65.557 -1.81797 65.5132 -1.78027 65.4674 -1.74372 65.4277 -1.70787 65.3861 -1.67017 65.333 -1.61883 65.136 -1.55505 64.6492 -1.48636 64.0401 -1.41323 63.355 -1.33656 62.6046 -1.25704 61.7975 -1.17523 60.9405 -1.0916 60.0396 -1.00657 59.1002 -0.920536 58.1276 -0.83387 57.1274 -0.746921 56.1051 -0.66002 55.0668 -0.573481 54.0189 -0.487597 52.9679 -0.402643 51.921 -0.318876 50.885 -0.236532 49.8672 -0.155822 48.8745 -0.0769263 47.9137 46.9911 -52.3953 18.4268 -52.6849 23.9761 -52.6283 29.316 -52.2474 34.3828 -51.5823 39.1359 -50.6791 43.5403 -49.5946 47.5887 -48.394 51.2946 -47.1461 54.6936 -45.9171 57.8397 -44.7639 60.798 -43.7315 63.6381 -42.8492 66.4275 -42.1298 69.2231 -41.5677 72.0636 -41.1382 74.9607 -40.7963 77.8886 -40.4768 80.7731 -40.0961 83.4846 -39.5623 85.8487 -38.8012 87.6884 -37.7909 88.8934 -36.5633 89.4592 -35.1572 89.4461 -33.5731 88.8803 -31.8304 87.7229 -30.1734 86.4182 -28.7941 85.5744 -27.5402 85.0096 -26.3135 84.3379 -25.177 83.714 -24.1077 83.1834 -23.0892 82.5609 -22.1232 82.0088 -21.2026 81.4541 -20.329 80.9753 -19.5129 80.4294 -18.7346 79.9741 -17.9836 79.4482 -17.2771 79.0273 -16.616 78.5535 -15.9839 78.1768 -15.3661 77.6978 -14.7818 77.3424 -14.2329 76.8894 -13.7085 76.5552 -13.1974 76.1187 -12.7212 75.8166 -12.2636 75.4004 -11.8284 75.117 -11.4067 74.7344 -11.0065 74.455 -10.6261 74.0996 -10.2555 73.837 -9.90411 73.5018 -9.57072 73.262 -9.24456 72.9443 -8.93811 72.717 -8.63928 72.4216 -8.35678 72.2057 -8.08205 71.9256 -7.82032 71.7201 -7.56801 71.4539 -7.32651 71.2599 -7.09347 71.0099 -6.86957 70.8273 -6.65566 70.5939 -6.44825 70.4161 -6.24875 70.201 -6.05856 70.0338 -5.87373 69.8287 -5.69711 69.6706 -5.52743 69.4777 -5.36414 69.324 -5.20688 69.1464 -5.05591 69.0014 -4.90943 68.8285 -4.76854 68.6922 -4.63199 68.5444 -4.49992 68.4036 -4.37285 68.2522 -4.25 68.1315 -4.13146 67.9901 -4.01848 67.8714 -3.90921 67.761 -3.80313 67.6268 -3.70136 67.5212 -3.60163 67.3945 -3.50684 67.2979 -3.41605 67.1897 -3.32776 67.0881 -3.24211 66.9805 -3.15985 66.8927 -3.08008 66.7961 -3.00353 66.7081 -2.92868 66.6177 -2.85679 66.5327 -2.7865 66.4516 -2.71803 66.3696 -2.65276 66.2944 -2.58931 66.2214 -2.5283 66.1488 -2.4687 66.0798 -2.4112 66.0116 -2.35514 65.9473 -2.30085 65.8855 -2.24854 65.825 -2.19788 65.7706 -2.14905 65.7135 -2.10123 65.6615 -2.05484 65.6079 -2.00936 65.5622 -1.96538 65.513 -1.92254 65.4703 -1.88063 65.4255 -1.84004 65.3871 -1.79998 65.346 -1.75803 65.2911 -1.70124 65.0792 -1.63249 64.5805 -1.55903 63.9666 -1.48129 63.2773 -1.4001 62.5235 -1.31611 61.7135 -1.22988 60.8542 -1.14188 59.9516 -1.05254 59.0108 -0.962259 58.0373 -0.87141 57.0365 -0.78035 56.014 -0.689413 54.9759 -0.598916 53.9284 -0.509155 52.8782 -0.420405 51.8322 -0.332924 50.7975 -0.246949 49.7812 -0.162689 48.7902 -0.0803228 47.8313 46.9107 -53.2525 19.0843 -53.568 24.2917 -53.5616 29.3096 -53.2578 34.079 -52.689 38.5672 -51.9072 42.7585 -50.9707 46.6523 -49.9427 50.2666 -48.8863 53.6372 -47.8596 56.813 -46.9115 59.8498 -46.0785 62.8051 -45.3828 65.7318 -44.8304 68.6708 -44.4095 71.6427 -44.0873 74.6386 -43.8073 77.6086 -43.4884 80.4541 -43.0343 83.0305 -42.3608 85.1752 -41.4285 86.7561 -40.2522 87.7171 -38.8652 88.0722 -37.2816 87.8626 -35.4804 87.079 -33.5932 85.8357 -31.9439 84.769 -30.5489 84.1794 -29.2151 83.6758 -27.9453 83.0682 -26.7798 82.5484 -25.6493 82.0529 -24.5627 81.4744 -23.5418 80.9878 -22.5821 80.4944 -21.6794 80.0726 -20.8112 79.5612 -19.9729 79.1359 -19.1891 78.6644 -18.4591 78.2972 -17.7518 77.8463 -17.0634 77.4884 -16.4154 77.0498 -15.804 76.731 -15.2146 76.3 -14.6551 75.9957 -14.1192 75.5828 -13.6154 75.3128 -13.1282 74.9132 -12.6596 74.6483 -12.2162 74.291 -11.7912 74.03 -11.3812 73.6897 -10.9889 73.4448 -10.6184 73.1314 -10.2574 72.901 -9.91363 72.6006 -9.58514 72.3885 -9.26799 72.1044 -8.96386 71.9016 -8.67195 71.6337 -8.39249 71.4406 -8.12085 71.1823 -7.86391 71.003 -7.61368 70.7597 -7.37502 70.5886 -7.14562 70.3645 -6.92359 70.1941 -6.71046 69.9879 -6.5056 69.8289 -6.30731 69.6305 -6.11758 69.4809 -5.93491 69.2951 -5.75966 69.1488 -5.59079 68.9776 -5.42833 68.839 -5.27079 68.671 -5.11984 68.5413 -4.97275 68.3973 -4.83095 68.2618 -4.6954 68.1166 -4.56415 68.0003 -4.43691 67.8629 -4.31522 67.7497 -4.19684 67.6426 -4.0817 67.5116 -3.97131 67.4108 -3.86343 67.2866 -3.76064 67.1952 -3.6615 67.0906 -3.56524 66.9918 -3.47242 66.8877 -3.38295 66.8033 -3.29627 66.7094 -3.21259 66.6244 -3.13111 66.5362 -3.05292 66.4545 -2.97612 66.3748 -2.90165 66.2952 -2.83031 66.2231 -2.76052 66.1516 -2.69404 66.0823 -2.62888 66.0146 -2.56618 65.9489 -2.50488 65.886 -2.44586 65.8265 -2.38865 65.7678 -2.33245 65.7144 -2.27817 65.6592 -2.22522 65.6085 -2.17405 65.5567 -2.12385 65.512 -2.07547 65.4646 -2.02813 65.423 -1.98226 65.3796 -1.93757 65.3424 -1.89353 65.302 -1.84726 65.2448 -1.78531 65.0172 -1.7116 64.5068 -1.63315 63.8882 -1.55057 63.1947 -1.46468 62.4376 -1.37609 61.6249 -1.28533 60.7635 -1.19287 59.8591 -1.09914 58.9171 -1.00454 57.9427 -0.909439 56.9414 -0.814205 55.9188 -0.719173 54.8808 -0.624665 53.8339 -0.530976 52.7845 -0.438382 51.7396 -0.347142 50.7063 -0.257492 49.6915 -0.169639 48.7024 -0.0837603 47.7455 46.827 -53.7475 19.774 -54.1156 24.6598 -54.1773 29.3713 -53.9698 33.8715 -53.5316 38.129 -52.9116 42.1385 -52.1645 45.9052 -51.3484 49.4505 -50.5192 52.808 -49.7271 56.0209 -49.013 59.1357 -48.4056 62.1977 -47.9189 65.245 -47.5488 68.3007 -47.2701 71.364 -47.0336 74.4021 -46.7674 77.3424 -46.3866 80.0734 -45.8136 82.4575 -44.9967 84.3582 -43.9157 85.6752 -42.5667 86.368 -40.9699 86.4754 -39.1545 86.0472 -37.1526 85.0772 -35.2298 83.9129 -33.6152 83.1543 -32.1862 82.7505 -30.8051 82.2946 -29.5067 81.7698 -28.2759 81.3175 -27.0807 80.8578 -25.9652 80.3588 -24.9123 79.9349 -23.9143 79.4964 -22.9615 79.1198 -22.0445 78.6442 -21.1828 78.2742 -20.3744 77.856 -19.5906 77.5134 -18.8339 77.0896 -18.1206 76.7751 -17.4438 76.373 -16.7873 76.0745 -16.1693 75.682 -15.5843 75.4107 -15.0233 75.0218 -14.4869 74.7764 -13.969 74.3953 -13.4819 74.1613 -13.0099 73.819 -12.5598 73.5799 -12.1287 73.2586 -11.7188 73.0348 -11.3199 72.7325 -10.9415 72.5226 -10.5755 72.2346 -10.227 72.04 -9.88938 71.7668 -9.56773 71.5799 -9.25883 71.3248 -8.9596 71.1414 -8.67385 70.8965 -8.39912 70.7283 -8.13291 70.4935 -7.87867 70.3344 -7.63334 70.1191 -7.39809 69.9588 -7.17112 69.7609 -6.95339 69.6112 -6.74344 69.4205 -6.54131 69.2788 -6.34668 69.1004 -6.15951 68.9616 -5.97828 68.7963 -5.80353 68.6642 -5.63454 68.502 -5.47293 68.3797 -5.31499 68.2394 -5.16357 68.1104 -5.0194 67.9725 -4.87945 67.8604 -4.74391 67.7273 -4.61408 67.6199 -4.48719 67.5157 -4.36359 67.388 -4.24485 67.292 -4.12928 67.171 -4.01855 67.0844 -3.9111 66.9831 -3.807 66.8877 -3.70666 66.7874 -3.60946 66.7061 -3.51516 66.6151 -3.42385 66.5331 -3.33555 66.4479 -3.25096 66.3699 -3.1679 66.2918 -3.08788 66.2151 -3.01076 66.146 -2.93486 66.0757 -2.86269 66.0101 -2.7918 65.9437 -2.72321 65.8803 -2.65661 65.8194 -2.59218 65.7621 -2.5296 65.7052 -2.46826 65.653 -2.40862 65.5995 -2.35089 65.5508 -2.29517 65.501 -2.24033 65.4572 -2.18731 65.4116 -2.13535 65.371 -2.0851 65.3293 -2.03572 65.2931 -1.98752 65.2538 -1.93646 65.1938 -1.86927 64.9501 -1.79094 64.4284 -1.70777 63.805 -1.62049 63.1075 -1.52992 62.347 -1.4367 61.5317 -1.34138 60.6682 -1.24441 59.7621 -1.14623 58.8189 -1.04726 57.8438 -0.947863 56.842 -0.84841 55.8194 -0.749241 54.7817 -0.650679 53.7353 -0.553018 52.6868 -0.456539 51.6431 -0.361502 50.6112 -0.268141 49.5982 -0.17666 48.6109 -0.0872322 47.656 46.7397 -53.9937 20.5068 -54.4331 25.0992 -54.5988 29.537 -54.5258 33.7985 -54.2563 37.8595 -53.8331 41.7153 -53.3087 45.3809 -52.7349 48.8766 -52.1599 52.233 -51.625 55.486 -51.1611 58.6718 -50.7858 61.8224 -50.5003 64.9596 -50.287 68.0873 -50.1082 71.1853 -49.9089 74.2028 -49.6216 77.0551 -49.1731 79.6249 -48.4895 81.7739 -47.5068 83.3755 -46.1919 84.3602 -44.5893 84.7654 -42.7821 84.6683 -40.7615 84.0266 -38.6387 82.9543 -36.7352 82.0095 -35.1569 81.5759 -33.7106 81.3042 -32.2973 80.8814 -30.9479 80.4204 -29.6644 80.034 -28.4504 79.6438 -27.3005 79.209 -26.2013 78.8356 -25.1684 78.4635 -24.1814 78.1328 -23.2368 77.6997 -22.3466 77.3839 -21.4928 77.0022 -20.6726 76.6932 -19.892 76.3089 -19.1471 76.0302 -18.4288 75.6547 -17.745 75.3907 -17.1036 75.0406 -16.4843 74.7913 -15.8965 74.434 -15.3301 74.21 -14.791 73.8562 -14.2817 73.6519 -13.7804 73.3177 -13.3149 73.1144 -12.8637 72.8073 -12.4284 72.5996 -12.0132 72.3172 -11.6141 72.1235 -11.2285 71.849 -10.8612 71.6726 -10.5047 71.4103 -10.1665 71.2418 -9.83663 70.9949 -9.52362 70.8284 -9.22153 70.5944 -8.92997 70.4367 -8.64982 70.2134 -8.38033 70.0649 -8.1209 69.8597 -7.87189 69.7098 -7.63173 69.5207 -7.40115 69.3806 -7.17868 69.198 -6.96453 69.0646 -6.75811 68.894 -6.55928 68.7628 -6.36634 68.6034 -6.18003 68.4779 -6.0003 68.3223 -5.8279 68.2073 -5.65923 68.0707 -5.49783 67.949 -5.34402 67.8186 -5.19476 67.7111 -5.05068 67.5832 -4.91243 67.4817 -4.77705 67.3804 -4.64563 67.2566 -4.51906 67.1654 -4.39618 67.0482 -4.27768 66.9659 -4.16204 66.8675 -4.04977 66.7755 -3.94153 66.6791 -3.83688 66.6014 -3.73567 66.5139 -3.63771 66.4352 -3.54262 66.3528 -3.45138 66.2787 -3.36191 66.2023 -3.27584 66.1291 -3.19259 66.0627 -3.11086 65.994 -3.03252 65.9318 -2.95609 65.8673 -2.882 65.8062 -2.81022 65.7477 -2.74014 65.692 -2.67198 65.637 -2.60558 65.5866 -2.54089 65.5349 -2.47843 65.4884 -2.418 65.4406 -2.3584 65.3976 -2.30085 65.3541 -2.24426 65.3145 -2.18942 65.2745 -2.13539 65.239 -2.0828 65.2012 -2.02662 65.1376 -1.95367 64.8771 -1.87057 64.3453 -1.78272 63.7171 -1.6908 63.0155 -1.59558 62.2518 -1.49775 61.4339 -1.39784 60.5682 -1.29634 59.6606 -1.19369 58.7163 -1.09031 57.7404 -0.986585 56.7383 -0.882882 55.7157 -0.779546 54.6783 -0.676899 53.6327 -0.575238 52.5852 -0.474846 51.5427 -0.375983 50.5124 -0.278879 49.5011 -0.183739 48.5157 -0.0907336 47.563 46.649 -54.1643 21.2994 -54.6971 25.632 -54.9948 29.8346 -55.0858 33.8895 -55.0107 37.7844 -54.8053 41.5099 -54.5225 45.098 -54.2045 48.5586 -53.8902 51.9187 -53.61 55.2058 -53.3839 58.4458 -53.219 61.6575 -53.1071 64.8477 -53.0242 68.0043 -52.929 71.0901 -52.7615 74.0353 -52.4403 76.7339 -51.8676 79.0522 -50.9567 80.8631 -49.6791 82.0979 -48.1096 82.7906 -46.3479 83.0038 -44.3493 82.6697 -42.0976 81.7749 -39.9047 80.7614 -38.1078 80.2126 -36.6086 80.0767 -35.1287 79.8243 -33.6512 79.4039 -32.2633 79.0325 -30.9689 78.7395 -29.7269 78.4018 -28.5276 78.0097 -27.4075 77.7155 -26.3569 77.4129 -25.3325 77.1083 -24.3606 76.7278 -23.4414 76.4647 -22.5539 76.1147 -21.7064 75.8457 -20.8993 75.5018 -20.1224 75.2533 -19.3777 74.9101 -18.6758 74.6888 -18.0026 74.3674 -17.355 74.1437 -16.744 73.823 -16.1501 73.6161 -15.5907 73.2968 -15.0528 73.1141 -14.5373 72.8022 -14.0502 72.6273 -13.5736 72.3307 -13.1231 72.149 -12.6896 71.8837 -12.2699 71.7038 -11.8702 71.4493 -11.483 71.2854 -11.1114 71.0387 -10.7525 70.883 -10.4088 70.6511 -10.0789 70.4985 -9.761 70.2766 -9.45599 70.1317 -9.16243 69.9198 -8.87983 69.7823 -8.60622 69.5861 -8.34417 69.4478 -8.09006 69.2666 -7.84539 69.136 -7.61014 68.9628 -7.38376 68.8382 -7.16558 68.6758 -6.95577 68.553 -6.75233 68.3999 -6.5557 68.2813 -6.36632 68.1329 -6.1838 68.0247 -6.00528 67.8922 -5.83416 67.7778 -5.6702 67.6547 -5.51127 67.5522 -5.3577 67.4297 -5.20996 67.3339 -5.0655 67.2359 -4.92619 67.1173 -4.79174 67.031 -4.66166 66.9181 -4.53601 66.8403 -4.41281 66.7443 -4.29291 66.6556 -4.17723 66.5634 -4.06561 66.4898 -3.95763 66.4059 -3.85338 66.3309 -3.75163 66.2511 -3.6539 66.1809 -3.55841 66.1068 -3.46581 66.0365 -3.37592 65.9728 -3.28828 65.9063 -3.20327 65.8468 -3.12124 65.7853 -3.0421 65.7271 -2.96518 65.6708 -2.88988 65.6167 -2.81658 65.5637 -2.74499 65.5151 -2.67537 65.4652 -2.60775 65.4207 -2.54193 65.3748 -2.4772 65.3328 -2.41503 65.2919 -2.35383 65.2533 -2.29439 65.2151 -2.23631 65.181 -2.17922 65.1441 -2.11798 65.0763 -2.03918 64.7983 -1.95105 64.2572 -1.85829 63.6244 -1.76157 62.9188 -1.66163 62.1518 -1.55912 61.3313 -1.45459 60.4637 -1.34852 59.5546 -1.24138 58.6091 -1.13357 57.6326 -1.0255 56.6302 -0.917525 55.6077 -0.809998 54.5708 -0.703243 53.5259 -0.597563 52.4795 -0.49324 51.4384 -0.390531 50.4097 -0.289668 49.4002 -0.190853 48.4169 -0.0942531 47.4664 46.5548 -54.4236 22.1729 -55.0711 26.2795 -55.5148 30.2783 -55.7792 34.154 -55.8992 37.9044 -55.9187 41.5294 -55.8764 45.0556 -55.8107 48.493 -55.7496 51.8576 -55.7145 55.1706 -55.7166 58.4479 -55.7547 61.6956 -55.8112 64.9041 -55.8475 68.0407 -55.7995 71.0421 -55.5766 73.8124 -55.0761 76.2334 -54.2224 78.1985 -53.0123 79.653 -51.5294 80.615 -49.8416 81.1029 -47.8565 81.0187 -45.4987 80.3118 -43.0699 79.3461 -41.0345 78.726 -39.4545 78.6325 -37.9538 78.576 -36.3692 78.2397 -34.8551 77.8898 -33.4781 77.6555 -32.1668 77.4283 -30.8734 77.1084 -29.6596 76.7959 -28.5435 76.5994 -27.4537 76.3231 -26.3982 76.0528 -25.4147 75.7444 -24.4643 75.5143 -23.5516 75.202 -22.6836 74.9777 -21.8488 74.667 -21.0462 74.4506 -20.2896 74.1535 -19.5623 73.9615 -18.8655 73.6706 -18.1956 73.4738 -17.5629 73.1904 -16.9471 73.0003 -16.3615 72.7112 -15.8085 72.5611 -15.2714 72.2651 -14.7608 72.1167 -14.2665 71.8365 -13.8009 71.6834 -13.3446 71.4274 -12.9115 71.2707 -12.4923 71.0301 -12.0903 70.8834 -11.7006 70.649 -11.3294 70.5117 -10.97 70.2918 -10.6235 70.152 -10.2938 69.9469 -9.97319 69.811 -9.66703 69.6136 -9.37096 69.4862 -9.0846 69.2997 -8.81045 69.1736 -8.54319 68.9994 -8.2862 68.879 -8.03846 68.7151 -7.79931 68.5991 -7.56909 68.4456 -7.34806 68.332 -7.13405 68.1859 -6.92771 68.0749 -6.72923 67.9344 -6.53748 67.833 -6.35023 67.7049 -6.16987 67.5975 -5.99588 67.4807 -5.82728 67.3836 -5.66398 67.2664 -5.50674 67.1767 -5.35345 67.0826 -5.20588 66.9697 -5.06277 66.8879 -4.92491 66.7802 -4.79212 66.7075 -4.66183 66.614 -4.53558 66.5293 -4.41344 66.4413 -4.2952 66.3716 -4.17996 66.2907 -4.06878 66.2197 -3.96042 66.1427 -3.85631 66.0768 -3.75503 66.0055 -3.65598 65.9374 -3.55981 65.8766 -3.46655 65.8131 -3.37529 65.7555 -3.28749 65.6975 -3.20267 65.6423 -3.11993 65.588 -3.03935 65.5361 -2.96113 65.4855 -2.8843 65.4382 -2.80982 65.3907 -2.7372 65.3481 -2.66638 65.3039 -2.59698 65.2635 -2.53017 65.2251 -2.46453 65.1876 -2.40043 65.151 -2.33826 65.1188 -2.27638 65.0822 -2.20995 65.0099 -2.12542 64.7138 -2.03217 64.164 -1.93435 63.5266 -1.83271 62.8172 -1.72795 62.0471 -1.62069 61.2241 -1.5115 60.3545 -1.40084 59.4439 -1.28917 58.4975 -1.17692 57.5203 -1.06448 56.5178 -0.952216 55.4954 -0.840488 54.4591 -0.729621 53.415 -0.619916 52.3698 -0.511653 51.3302 -0.405094 50.3031 -0.300469 49.2956 -0.197976 48.3144 -0.0977768 47.3662 46.457 -54.8547 23.1316 -55.6187 27.0435 -56.2092 30.8688 -56.6541 34.5989 -56.9819 38.2321 -57.247 41.7946 -57.4657 45.2743 -57.6607 48.688 -57.8555 52.0525 -58.0627 55.3778 -58.2808 58.666 -58.4905 61.9053 -58.6499 65.0635 -58.6927 68.0834 -58.5335 70.8829 -58.0887 73.3675 -57.3111 75.4559 -56.2151 77.1024 -54.8541 78.292 -53.2299 78.9908 -51.212 79.085 -48.7442 78.5509 -46.1486 77.7163 -43.9282 77.1257 -42.234 77.0318 -40.7085 77.107 -39.0466 76.9141 -37.4023 76.5954 -35.945 76.4325 -34.5821 76.2926 -33.2241 76.0703 -31.9131 75.7974 -30.7166 75.5995 -29.5748 75.4577 -28.4479 75.1961 -27.3938 74.9987 -26.3893 74.7398 -25.4056 74.5307 -24.4758 74.2722 -23.5906 74.0925 -22.7337 73.8102 -21.9218 73.6387 -21.1453 73.377 -20.3997 73.2159 -19.6847 72.9555 -18.9993 72.7884 -18.3475 72.5386 -17.7088 72.3617 -17.1127 72.1151 -16.5372 71.9856 -15.9778 71.7057 -15.4507 71.5896 -14.9417 71.3275 -14.4526 71.1944 -13.9835 70.9582 -13.5309 70.8181 -13.0971 70.5963 -12.6784 70.4647 -12.2756 70.2462 -11.8916 70.1277 -11.5144 69.9146 -11.1589 69.7966 -10.813 69.6009 -10.4792 69.4772 -10.1599 69.2944 -9.8507 69.177 -9.55297 69.002 -9.2667 68.8874 -8.98881 68.7215 -8.72081 68.611 -8.46134 68.4556 -8.21073 68.3485 -7.9688 68.2037 -7.73625 68.0994 -7.51128 67.961 -7.2947 67.8584 -7.08678 67.7265 -6.88601 67.6322 -6.69045 67.5094 -6.50086 67.4079 -6.3175 67.2973 -6.13997 67.206 -5.96771 67.0941 -5.80187 67.0109 -5.64039 66.9211 -5.48455 66.8139 -5.33277 66.7361 -5.18695 66.6344 -5.04652 66.567 -4.90917 66.4766 -4.77674 66.3969 -4.64808 66.3126 -4.52327 66.2467 -4.40105 66.1684 -4.28295 66.1016 -4.1684 66.0282 -4.05801 65.9664 -3.9504 65.8979 -3.84492 65.832 -3.743 65.7747 -3.64413 65.7142 -3.54755 65.659 -3.45426 65.6042 -3.36335 65.5513 -3.27484 65.4995 -3.18898 65.4502 -3.10577 65.4023 -3.0236 65.356 -2.94376 65.3109 -2.86617 65.2705 -2.79072 65.2285 -2.71707 65.1898 -2.64538 65.1534 -2.57546 65.1177 -2.50676 65.0823 -2.44 65.052 -2.37347 65.0157 -2.3017 64.9381 -2.21153 64.6236 -2.11325 64.0657 -2.01041 63.4237 -1.90384 62.7106 -1.79424 61.9375 -1.68224 61.1121 -1.56836 60.2406 -1.4531 59.3286 -1.3369 58.3813 -1.22019 57.4036 -1.10338 56.401 -0.986836 55.3789 -0.870913 54.3432 -0.755938 53.3001 -0.642212 52.2561 -0.530022 51.218 -0.419624 50.1927 -0.311246 49.1872 -0.205083 48.2083 -0.101293 47.2624 46.3557 -55.6212 24.1913 -56.5197 27.9421 -57.2782 31.6273 -57.9233 35.244 -58.4866 38.7954 -58.9904 42.2984 -59.4494 45.7333 -59.8817 49.1204 -60.2953 52.4661 -60.6848 55.7673 -61.0285 59.0097 -61.2857 62.1625 -61.3986 65.1765 -61.3003 67.985 -60.9328 70.5155 -60.2685 72.7032 -59.3106 74.4981 -58.0522 75.844 -56.435 76.6748 -54.3337 76.8895 -51.765 76.5162 -49.078 75.8639 -46.748 75.3863 -44.9313 75.309 -43.3335 75.4341 -41.6285 75.4019 -39.8922 75.1778 -38.3552 75.0584 -36.9449 75.0222 -35.527 74.8747 -34.1378 74.681 -32.852 74.5116 -31.6634 74.4109 -30.489 74.2833 -29.3617 74.0688 -28.3004 73.9374 -27.2567 73.6961 -26.2691 73.5431 -25.3349 73.338 -24.4271 73.1847 -23.5579 72.941 -22.7385 72.8192 -21.9404 72.5789 -21.1848 72.4603 -20.4556 72.2263 -19.7551 72.0879 -19.085 71.8685 -18.4351 71.7118 -17.8278 71.5078 -17.2233 71.3812 -16.6565 71.1388 -16.1153 71.0485 -15.5858 70.798 -15.0842 70.6928 -14.5978 70.4718 -14.1317 70.352 -13.6839 70.1485 -13.2492 70.03 -12.8356 69.8326 -12.4321 69.7241 -12.0466 69.529 -11.6769 69.427 -11.317 69.241 -10.9731 69.1333 -10.6405 68.9618 -10.3201 68.8566 -10.0097 68.6916 -9.71204 68.5897 -9.42354 68.433 -9.14463 68.3321 -8.87574 68.1867 -8.61546 68.0882 -8.36362 67.9518 -8.12069 67.8565 -7.88519 67.7255 -7.65826 67.6314 -7.44038 67.5086 -7.2299 67.4217 -7.02515 67.3046 -6.82615 67.2089 -6.63413 67.1053 -6.4485 67.0204 -6.26814 66.9138 -6.0944 66.8371 -5.92474 66.7514 -5.76066 66.6498 -5.60086 66.5763 -5.44754 66.4811 -5.29943 66.4189 -5.15497 66.3322 -5.01564 66.2575 -4.87987 66.1769 -4.74831 66.1152 -4.61982 66.0399 -4.49553 65.9773 -4.3751 65.9078 -4.25869 65.85 -4.14468 65.7839 -4.03315 65.7204 -3.92583 65.6674 -3.82099 65.6094 -3.71919 65.5572 -3.62031 65.5053 -3.52329 65.4543 -3.42958 65.4058 -3.33855 65.3592 -3.25031 65.3141 -3.16313 65.2689 -3.07796 65.2257 -2.99542 65.188 -2.91506 65.1481 -2.8369 65.1116 -2.75987 65.0763 -2.68539 65.0432 -2.61214 65.009 -2.5404 64.9803 -2.46969 64.945 -2.39262 64.8611 -2.29691 64.5279 -2.19374 63.9625 -2.08601 63.316 -1.9746 62.5992 -1.86023 61.8231 -1.7435 60.9954 -1.62496 60.1221 -1.50511 59.2088 -1.3844 58.2606 -1.26326 57.2825 -1.1421 56.2798 -1.0213 55.2581 -0.9012 54.2231 -0.782134 53.181 -0.664408 52.1383 -0.548309 51.1019 -0.43409 50.0785 -0.321976 49.0751 -0.212159 48.0985 -0.104795 47.1551 46.2509 -56.854 25.3717 -57.9023 28.9904 -58.8371 32.5621 -59.6782 36.0851 -60.4439 39.5611 -61.1387 42.9932 -61.7812 46.3758 -62.3767 49.7159 -62.9169 53.0063 -63.3814 56.2317 -63.7359 59.3642 -63.9347 62.3613 -63.9264 65.1682 -63.6665 67.7251 -63.1244 69.9733 -62.276 71.8548 -61.0532 73.2753 -59.3772 74.1679 -57.1683 74.4659 -54.5256 74.2468 -51.8092 73.7998 -49.4239 73.4787 -47.4937 73.456 -45.7963 73.6116 -44.0577 73.6955 -42.2859 73.6302 -40.6758 73.5677 -39.2192 73.6018 -37.7494 73.5524 -36.2992 73.4244 -34.9531 73.335 -33.6957 73.2542 -32.4867 73.2019 -31.2969 73.0934 -30.178 72.9499 -29.0901 72.8496 -28.0423 72.6483 -27.0641 72.5649 -26.1107 72.3847 -25.1931 72.2671 -24.3311 72.079 -23.4864 71.9745 -22.6771 71.7697 -21.9171 71.7003 -21.1725 71.4818 -20.4585 71.3739 -19.7752 71.1851 -19.1197 71.0563 -18.4898 70.8779 -17.8743 70.7657 -17.2992 70.5637 -16.7411 70.4904 -16.1985 70.2554 -15.6864 70.1807 -15.1827 69.9681 -14.7094 69.8787 -14.2439 69.683 -13.8008 69.587 -13.3702 69.402 -12.9571 69.311 -12.5605 69.1325 -12.1759 69.0424 -11.8069 68.872 -11.4506 68.777 -11.107 68.6183 -10.7748 68.5244 -10.4536 68.3704 -10.1454 68.2814 -9.84581 68.1334 -9.55781 68.0441 -9.27968 67.9086 -9.01011 67.8186 -8.74963 67.6914 -8.49752 67.6044 -8.25297 67.4809 -8.01695 67.3954 -7.78931 67.2809 -7.56895 67.2014 -7.35428 67.09 -7.14588 67.0005 -6.94524 66.9047 -6.75143 66.8266 -6.56347 66.7258 -6.38228 66.6559 -6.20474 66.5739 -6.03295 66.478 -5.8659 66.4093 -5.70537 66.3205 -5.54964 66.2632 -5.39783 66.1804 -5.25127 66.111 -5.10851 66.0341 -4.97042 65.9771 -4.83614 65.9057 -4.70623 65.8474 -4.57973 65.7812 -4.45722 65.7275 -4.33726 65.6639 -4.22022 65.6034 -4.1076 65.5548 -3.99673 65.4985 -3.88943 65.4498 -3.78454 65.4004 -3.68181 65.3516 -3.58287 65.3069 -3.48619 65.2625 -3.39258 65.2205 -3.30078 65.1771 -3.21126 65.1362 -3.12418 65.1009 -3.03876 65.0627 -2.9562 65.0291 -2.87422 64.9944 -2.79507 64.9641 -2.71735 64.9313 -2.64075 64.9037 -2.56577 64.87 -2.48318 64.7785 -2.3818 64.4265 -2.27367 63.8544 -2.16105 63.2034 -2.04483 62.483 -1.9257 61.704 -1.80428 60.8739 -1.68111 59.9989 -1.55671 59.0844 -1.43153 58.1354 -1.30599 57.1569 -1.18052 56.1543 -1.05549 55.133 -0.931245 54.0988 -0.808124 53.0579 -0.686432 52.0166 -0.566455 50.9819 -0.448444 49.9605 -0.332622 48.9593 -0.219181 47.985 -0.10827 47.0442 46.1426 -58.533 26.6625 -59.7129 30.1703 -60.7942 33.6434 -61.7887 37.0796 -62.7055 40.4779 -63.5487 43.8364 -64.3233 47.1503 -65.0216 50.4143 -65.6253 53.61 -66.103 56.7094 -66.4109 59.6722 -66.5023 62.4527 -66.3351 65.0009 -65.8694 67.2594 -65.0528 69.1568 -63.7778 70.5798 -61.9862 71.4837 -59.6688 71.8505 -56.9864 71.7835 -54.2838 71.5443 -51.8794 71.3954 -49.8606 71.46 -48.0712 71.6666 -46.305 71.8454 -44.5388 71.9293 -42.884 71.9754 -41.3633 72.0469 -39.8517 72.0902 -38.3514 72.0522 -36.9682 72.0412 -35.66 72.0268 -34.3927 71.9869 -33.1762 71.9854 -31.9961 71.9133 -30.8723 71.8261 -29.7742 71.7515 -28.7501 71.6242 -27.7657 71.5805 -26.7995 71.4185 -25.8913 71.3589 -25.018 71.2058 -24.162 71.1184 -23.3583 70.966 -22.5856 70.9275 -21.8283 70.7245 -21.1123 70.6579 -20.4224 70.4953 -19.752 70.3858 -19.1124 70.2382 -18.4867 70.14 -17.9008 69.9778 -17.3257 69.9153 -16.7758 69.7054 -16.2497 69.6546 -15.7368 69.4552 -15.2503 69.3923 -14.7764 69.2091 -14.321 69.1315 -13.8817 68.9627 -13.4605 68.8898 -13.0493 68.7213 -12.657 68.6501 -12.2749 68.4898 -11.9093 68.4114 -11.5551 68.2641 -11.213 68.1823 -10.8839 68.0413 -10.5653 67.9629 -10.2569 67.8249 -9.96012 67.7473 -9.67163 67.6201 -9.39295 67.5399 -9.12376 67.4222 -8.86268 67.3433 -8.61008 67.2283 -8.36585 67.1512 -8.12919 67.0443 -7.90008 66.9723 -7.67647 66.8664 -7.45953 66.7835 -7.25052 66.6957 -7.04835 66.6244 -6.85285 66.5303 -6.66429 66.4674 -6.47952 66.3891 -6.30113 66.2996 -6.12781 66.2359 -5.96023 66.153 -5.7972 66.1002 -5.63821 66.0214 -5.48466 65.9574 -5.33546 65.8849 -5.19122 65.8328 -5.05073 65.7652 -4.915 65.7117 -4.78231 65.6486 -4.65338 65.5986 -4.52793 65.5385 -4.40556 65.481 -4.28724 65.4365 -4.17076 65.382 -4.05806 65.3371 -3.94747 65.2898 -3.84019 65.2443 -3.73595 65.2026 -3.6333 65.1599 -3.53393 65.1211 -3.43734 65.0805 -3.34368 65.0426 -3.25167 65.0089 -3.16097 64.972 -3.07387 64.942 -2.98761 64.9081 -2.90391 64.8804 -2.82187 64.8493 -2.74103 64.8228 -2.66127 64.7903 -2.57304 64.6902 -2.46605 64.3195 -2.35294 63.7413 -2.2354 63.0858 -2.11435 62.3619 -1.99047 61.5801 -1.86438 60.7478 -1.73663 59.8712 -1.60771 58.9555 -1.47809 58.0057 -1.34821 57.0271 -1.21847 56.0246 -1.08925 55.0038 -0.960915 53.9705 -0.833788 52.9307 -0.708177 51.891 -0.58437 50.8581 -0.462616 49.8387 -0.343136 48.8398 -0.226116 47.868 -0.111702 46.9297 46.0309 -60.7593 28.0334 -62.0413 31.4523 -63.2396 34.8417 -64.3587 38.1987 -65.3998 41.519 -66.3584 44.795 -67.2224 48.0143 -67.9655 51.1574 -68.5489 54.1933 -68.9258 57.0864 -69.0555 59.8019 -68.8919 62.2891 -68.4031 64.5121 -67.5295 66.3858 -66.1312 67.7585 -64.1913 68.6399 -61.7826 69.075 -59.0925 69.1604 -56.4305 69.1215 -54.0351 69.1489 -51.967 69.3273 -50.1217 69.6147 -48.3485 69.8934 -46.6025 70.0993 -44.9259 70.2527 -43.3391 70.3886 -41.7944 70.5023 -40.2767 70.5725 -38.8627 70.6381 -37.5243 70.7028 -36.1944 70.6969 -34.9358 70.7282 -33.7403 70.79 -32.5733 70.7463 -31.4477 70.7005 -30.371 70.6748 -29.359 70.6122 -28.3624 70.5839 -27.407 70.4631 -26.5099 70.4618 -25.6218 70.3177 -24.7742 70.2708 -23.971 70.1628 -23.1824 70.139 -22.4293 69.9714 -21.7091 69.9377 -21.0093 69.7955 -20.3336 69.7102 -19.6894 69.594 -19.0529 69.5035 -18.4595 69.3845 -17.8719 69.3277 -17.315 69.1486 -16.7799 69.1194 -16.2564 68.9318 -15.7606 68.8965 -15.2782 68.7267 -14.8124 68.6657 -14.3693 68.5196 -13.9328 68.4533 -13.5166 68.305 -13.1137 68.2472 -12.7222 68.0984 -12.3495 68.0387 -11.9848 67.8994 -11.6359 67.8334 -11.2977 67.7031 -10.9701 67.6353 -10.6539 67.5087 -10.3481 67.4415 -10.0502 67.3222 -9.76345 67.2532 -9.4852 67.1439 -9.21545 67.0735 -8.9548 66.9677 -8.70211 66.8985 -8.4572 66.7994 -8.22063 66.7357 -7.98966 66.6354 -7.76595 66.5598 -7.54969 66.4794 -7.33985 66.4146 -7.13694 66.3274 -6.9409 66.2713 -6.74892 66.1971 -6.56451 66.1152 -6.38519 66.0566 -6.21081 65.9786 -6.04127 65.9306 -5.87581 65.8559 -5.71588 65.7975 -5.56084 65.7299 -5.41066 65.6827 -5.26319 65.6177 -5.12094 65.5694 -4.9822 65.5098 -4.84672 65.4631 -4.71592 65.4077 -4.58823 65.3533 -4.4639 65.3121 -4.34227 65.2604 -4.22441 65.2193 -4.10875 65.1742 -3.99756 65.1331 -3.88811 65.0932 -3.78005 65.0518 -3.67533 65.0164 -3.57405 64.9792 -3.47589 64.9444 -3.37845 64.9114 -3.28275 64.8763 -3.19049 64.8497 -3.09993 64.8175 -3.0115 64.7919 -2.92493 64.7627 -2.84011 64.738 -2.75521 64.7054 -2.66133 64.5964 -2.54901 64.2072 -2.43105 63.6233 -2.30867 62.9634 -2.18284 62.2361 -2.05427 61.4515 -1.92357 60.6171 -1.79128 59.7389 -1.6579 58.8221 -1.5239 57.8718 -1.38972 56.8929 -1.25577 55.8906 -1.12244 54.8705 -0.990072 53.8381 -0.859003 52.7997 -0.729541 51.7616 -0.601972 50.7305 -0.476542 49.7133 -0.353469 48.7167 -0.232934 47.7475 -0.115078 46.8119 45.9158 -63.8285 29.4714 -65.1882 32.812 -66.464 36.1175 -67.648 39.3827 -68.726 42.5971 -69.6758 45.7447 -70.4621 48.8007 -71.037 51.7322 -71.3528 54.5091 -71.3939 57.1275 -71.1411 59.5491 -70.5536 61.7015 -69.5622 63.5207 -67.9953 64.8189 -65.9031 65.6663 -63.4368 66.1736 -60.7756 66.4138 -58.1846 66.5694 -55.8393 66.7762 -53.7785 67.088 -51.924 67.4728 -50.1617 67.8525 -48.4311 68.1627 -46.7428 68.4111 -45.1159 68.6259 -43.5493 68.822 -42.0365 68.9895 -40.603 69.1389 -39.2394 69.2745 -37.8742 69.3377 -36.5707 69.3933 -35.3789 69.5365 -34.197 69.6081 -33.0255 69.5748 -31.922 69.5971 -30.8746 69.6274 -29.8658 69.6033 -28.8687 69.5868 -27.9356 69.5299 -27.03 69.5562 -26.1489 69.4365 -25.3203 69.4422 -24.5007 69.3432 -23.7138 69.3521 -22.9635 69.2211 -22.2374 69.2115 -21.5337 69.0918 -20.8614 69.0378 -20.2064 68.939 -19.5732 68.8703 -18.9706 68.7818 -18.3771 68.7342 -17.8182 68.5897 -17.2732 68.5745 -16.7439 68.4025 -16.242 68.3945 -15.7476 68.2323 -15.2812 68.1993 -14.823 68.0614 -14.3811 68.0114 -13.9582 67.8821 -13.5455 67.8345 -13.1501 67.703 -12.7674 67.656 -12.3953 67.5273 -12.0381 67.4762 -11.6912 67.3561 -11.3558 67.2999 -11.0315 67.1844 -10.7183 67.1283 -10.4125 67.0164 -10.1189 66.9595 -9.83244 66.8575 -9.55497 66.7961 -9.2869 66.6996 -9.0259 66.6375 -8.77373 66.5472 -8.53025 66.4922 -8.29292 66.3981 -8.0639 66.3308 -7.84125 66.2568 -7.6246 66.1979 -7.41513 66.1179 -7.21213 66.0683 -7.01305 65.9981 -6.82234 65.9245 -6.63654 65.8708 -6.45578 65.7978 -6.28015 65.755 -6.10848 65.6843 -5.94259 65.6316 -5.78199 65.5693 -5.62589 65.5266 -5.47187 65.4637 -5.32324 65.4208 -5.17872 65.3653 -5.037 65.3214 -4.9005 65.2712 -4.76738 65.2202 -4.63724 65.182 -4.51054 65.1337 -4.38757 65.0963 -4.26707 65.0537 -4.15132 65.0174 -4.03657 64.9784 -3.92412 64.9394 -3.8148 64.907 -3.70901 64.8734 -3.60594 64.8413 -3.50352 64.809 -3.40403 64.7768 -3.3064 64.7521 -3.21145 64.7226 -3.1183 64.6988 -3.02707 64.6715 -2.93794 64.6489 -2.84798 64.6154 -2.74823 64.4966 -2.63057 64.0896 -2.50773 63.5005 -2.38056 62.8363 -2.25003 62.1056 -2.11683 61.3183 -1.98158 60.4819 -1.84482 59.6021 -1.70706 58.6843 -1.56877 57.7335 -1.43038 56.7545 -1.29231 55.7526 -1.15494 54.7331 -1.01862 53.7018 -0.883693 52.6647 -0.750464 51.6283 -0.619211 50.5993 -0.490181 49.5843 -0.363589 48.5901 -0.239611 47.6235 -0.118383 46.6907 45.7975 -67.4183 30.9199 -68.7629 34.1565 -69.9849 37.3395 -71.0622 40.4601 -71.9654 43.5003 -72.6562 46.4355 -73.0907 49.2352 -73.2541 51.8956 -73.1685 54.4235 -72.8259 56.7848 -72.1551 58.8783 -71.0272 60.5736 -69.2829 61.7765 -67.0473 62.5833 -64.5636 63.1826 -61.9811 63.5911 -59.5043 63.937 -57.2578 64.3229 -55.2552 64.7737 -53.4301 65.2629 -51.6936 65.7363 -49.9844 66.1432 -48.3009 66.4792 -46.6661 66.7762 -45.1012 67.061 -43.6091 67.3299 -42.1761 67.5565 -40.7842 67.7471 -39.4083 67.8987 -38.0785 68.0078 -36.8725 68.1874 -35.7008 68.3648 -34.5069 68.4142 -33.3659 68.4338 -32.3083 68.5394 -31.2753 68.5944 -30.2652 68.5932 -29.2884 68.61 -28.376 68.6174 -27.4633 68.6435 -26.6017 68.5749 -25.7751 68.6157 -24.9569 68.525 -24.1797 68.5749 -23.4233 68.4647 -22.7002 68.4884 -21.9995 68.3911 -21.3258 68.3641 -20.672 68.2853 -20.0394 68.2377 -19.4323 68.1748 -18.8373 68.1391 -18.2773 68.0297 -17.7238 68.0209 -17.1965 67.8753 -16.6838 67.8818 -16.1891 67.7376 -15.7152 67.7254 -15.2477 67.594 -14.8047 67.5684 -14.3719 67.4494 -13.9558 67.4184 -13.5514 67.2985 -13.161 67.2656 -12.7823 67.1486 -12.4175 67.1114 -12.063 67.0017 -11.7208 66.9577 -11.3898 66.8534 -11.0695 66.8079 -10.7575 66.7045 -10.4576 66.6595 -10.1645 66.5645 -9.88122 66.5128 -9.60648 66.4248 -9.33864 66.3697 -9.08032 66.2889 -8.8301 66.242 -8.5867 66.1547 -8.35252 66.0966 -8.12385 66.0281 -7.90123 65.9753 -7.68621 65.9029 -7.47694 65.8591 -7.27132 65.7924 -7.07406 65.7273 -6.88171 65.6785 -6.69526 65.6114 -6.51356 65.5733 -6.33581 65.5065 -6.164 65.4598 -5.99747 65.4027 -5.83491 65.364 -5.67567 65.3045 -5.52162 65.2667 -5.37156 65.2153 -5.22451 65.1743 -5.08225 65.1289 -4.94398 65.0819 -4.80877 65.0468 -4.67695 65.0019 -4.54887 64.9682 -4.42348 64.9283 -4.30205 64.8959 -4.18185 64.8582 -4.06551 64.823 -3.95156 64.7931 -3.84061 64.7625 -3.73204 64.7328 -3.62509 64.7021 -3.52238 64.6741 -3.4195 64.6492 -3.32023 64.6233 -3.22269 64.6013 -3.12715 64.5759 -3.03341 64.5552 -2.93906 64.5211 -2.83345 64.391 -2.71049 63.9666 -2.58275 63.3728 -2.45081 62.7043 -2.31563 61.9704 -2.17789 61.1806 -2.03818 60.3422 -1.89706 59.461 -1.75502 58.5423 -1.61253 57.591 -1.47004 56.612 -1.32795 55.6105 -1.18664 54.5918 -1.04647 53.5616 -0.907781 52.5261 -0.770875 51.4914 -0.636027 50.4644 -0.503484 49.4517 -0.373459 48.4601 -0.246124 47.4961 -0.121608 46.5661 45.6758 -70.5253 32.2441 -71.6944 35.3255 -72.6837 38.3288 -73.4689 41.2452 -74.0259 44.0573 -74.3319 46.7415 -74.4149 49.3182 -74.2966 51.7773 -73.9328 54.0598 -73.1865 56.0385 -71.8342 57.526 -69.8856 58.625 -67.5536 59.4445 -65.1295 60.1592 -62.6882 60.7413 -60.3715 61.2745 -58.2638 61.8293 -56.3545 62.4136 -54.587 63.0062 -52.8893 63.5652 -51.2126 64.0596 -49.5569 64.4875 -47.9497 64.872 -46.4174 65.244 -44.9583 65.6018 -43.5398 65.9114 -42.1385 66.1552 -40.762 66.3706 -39.4446 66.5813 -38.2263 66.7895 -37.0619 67.023 -35.8655 67.1684 -34.6969 67.2455 -33.6238 67.3607 -32.5891 67.5046 -31.5631 67.5684 -30.5664 67.5966 -29.627 67.6706 -28.7131 67.7036 -27.809 67.7394 -26.9797 67.7457 -26.1447 67.7807 -25.3429 67.7232 -24.57 67.802 -23.8191 67.7138 -23.1032 67.7725 -22.4036 67.6916 -21.7312 67.6917 -21.0817 67.6357 -20.4492 67.6052 -19.8439 67.5694 -19.2478 67.543 -18.6895 67.4715 -18.1319 67.4633 -17.6041 67.3474 -17.0903 67.3679 -16.5931 67.2404 -16.1112 67.2435 -15.6459 67.1287 -15.1946 67.1171 -14.7599 67.0147 -14.336 66.9945 -13.9253 66.8879 -13.5308 66.8711 -13.145 66.7627 -12.7759 66.7423 -12.4147 66.6405 -12.067 66.6101 -11.7302 66.5166 -11.403 66.4807 -11.0862 66.3878 -10.7802 66.3535 -10.4812 66.2655 -10.1937 66.2252 -9.91283 66.144 -9.64009 66.0969 -9.37648 66.0253 -9.11957 65.9851 -8.87012 65.9052 -8.63021 65.8567 -8.39606 65.7939 -8.1682 65.7475 -7.94806 65.6828 -7.73291 65.6439 -7.52131 65.5808 -7.31783 65.5238 -7.11955 65.4802 -6.92774 65.4196 -6.74023 65.3858 -6.55704 65.3233 -6.37939 65.2822 -6.20688 65.2302 -6.03776 65.1949 -5.87423 65.1409 -5.71521 65.1077 -5.5597 65.0597 -5.40798 65.0226 -5.26041 64.9814 -5.11742 64.9389 -4.97782 64.9072 -4.84097 64.865 -4.70784 64.8351 -4.57745 64.7979 -4.44992 64.7684 -4.32453 64.7328 -4.20433 64.7028 -4.08549 64.6743 -3.96888 64.6459 -3.85497 64.6188 -3.7438 64.5909 -3.63724 64.5675 -3.52938 64.5414 -3.42578 64.5197 -3.32392 64.4994 -3.22433 64.4763 -3.12588 64.4567 -3.02768 64.4229 -2.91629 64.2796 -2.78825 63.8386 -2.6557 63.2402 -2.51909 62.5677 -2.37936 61.8306 -2.23717 61.0384 -2.09312 60.1981 -1.94775 59.3156 -1.80154 58.3961 -1.65498 57.4444 -1.50849 56.4655 -1.36249 55.4645 -1.21736 54.4467 -1.07346 53.4177 -0.931116 52.3837 -0.790645 51.351 -0.652317 50.3261 -0.516374 49.3158 -0.383024 48.3267 -0.252437 47.3656 -0.124735 46.4384 45.5511 -72.6206 33.3665 -73.5472 36.2521 -74.2587 39.0404 -74.7387 41.7252 -75.0079 44.3264 -75.0906 46.8243 -74.9532 49.1808 -74.4954 51.3195 -73.4942 53.0586 -71.8261 54.3704 -69.6986 55.3985 -67.4007 56.3272 -65.1192 57.1629 -62.88 57.92 -60.7683 58.6296 -58.8296 59.3358 -57.0411 60.0409 -55.353 60.7255 -53.7105 61.3636 -52.0879 61.9426 -50.4945 62.4662 -48.9496 62.9426 -47.47 63.3924 -46.0481 63.8221 -44.6535 64.2073 -43.2687 64.5266 -41.9136 64.8001 -40.6269 65.0839 -39.4162 65.3705 -38.2518 65.625 -37.0655 65.8368 -35.9033 66.0062 -34.816 66.1583 -33.7816 66.3263 -32.7456 66.4687 -31.741 66.5638 -30.7796 66.6352 -29.8679 66.7589 -28.9475 66.7831 -28.0865 66.8784 -27.2611 66.9202 -26.4337 66.9533 -25.6579 66.9474 -24.8893 67.0334 -24.1518 66.9764 -23.44 67.0607 -22.7504 67.0019 -22.0843 67.0256 -21.4336 66.9851 -20.8136 66.9851 -20.2026 66.9585 -19.614 66.9544 -19.057 66.9144 -18.4957 66.9021 -17.9699 66.8216 -17.458 66.8561 -16.9511 66.7335 -16.475 66.7674 -16.0041 66.6577 -15.5519 66.6649 -15.1142 66.5769 -14.6833 66.5637 -14.2736 66.4781 -13.8736 66.4712 -13.4848 66.3739 -13.111 66.3685 -12.745 66.2745 -12.3938 66.2588 -12.0509 66.1737 -11.7191 66.1489 -11.3979 66.0666 -11.0858 66.0414 -10.7821 65.9619 -10.4902 65.9332 -10.2042 65.858 -9.92785 65.8206 -9.65937 65.7568 -9.3962 65.7219 -9.14124 65.6502 -8.89546 65.6109 -8.65608 65.5546 -8.42326 65.5146 -8.19776 65.4573 -7.97724 65.4234 -7.76063 65.3642 -7.55186 65.315 -7.34858 65.2769 -7.1517 65.2227 -6.95889 65.193 -6.77059 65.135 -6.58737 65.0989 -6.40952 65.0524 -6.23504 65.0204 -6.06721 64.9731 -5.90316 64.9437 -5.74261 64.8992 -5.58624 64.8662 -5.43374 64.8289 -5.28587 64.7911 -5.14156 64.7629 -4.99973 64.7232 -4.86156 64.6969 -4.72618 64.6625 -4.59322 64.6355 -4.46337 64.603 -4.33911 64.5786 -4.21558 64.5507 -4.0938 64.5241 -3.97555 64.5006 -3.86038 64.4758 -3.749 64.4562 -3.63678 64.4291 -3.52887 64.4118 -3.4225 64.393 -3.3188 64.3726 -3.2157 64.3536 -3.11347 64.3206 -2.99625 64.1624 -2.86336 63.7057 -2.72616 63.103 -2.58503 62.4266 -2.44088 61.6865 -2.29438 60.8919 -2.14612 60.0499 -1.99662 59.1661 -1.84637 58.2458 -1.69585 57.2939 -1.5455 56.3152 -1.39573 55.3147 -1.24691 54.2979 -1.09941 53.2702 -0.953559 52.2379 -0.809661 51.2071 -0.667988 50.1844 -0.528776 49.1766 -0.39223 48.1902 -0.258514 47.2318 -0.127746 46.3077 45.4234 -73.6991 34.2928 -74.3888 36.9417 -74.8569 39.5085 -75.1226 41.9909 -75.1524 44.3562 -74.8681 46.54 -74.0999 48.4126 -72.6958 49.9154 -70.7752 51.138 -68.6386 52.2338 -66.5517 53.3115 -64.5058 54.2813 -62.5301 55.1873 -60.6569 56.0467 -58.9092 56.8819 -57.2646 57.6912 -55.6804 58.4566 -54.1253 59.1705 -52.591 59.8293 -51.0864 60.4379 -49.6286 61.0085 -48.2207 61.5347 -46.8522 62.0239 -45.4988 62.4686 -44.1515 62.86 -42.8394 63.2145 -41.5952 63.5558 -40.4131 63.9018 -39.2552 64.2127 -38.0898 64.4596 -36.9457 64.6926 -35.8681 64.9287 -34.822 65.1122 -33.7944 65.2986 -32.7921 65.4664 -31.8283 65.6 -30.9007 65.7076 -29.9974 65.8556 -29.0997 65.8854 -28.2902 66.0689 -27.4491 66.0791 -26.6511 66.1553 -25.8962 66.1926 -25.1405 66.2776 -24.4162 66.2521 -23.7185 66.363 -23.0385 66.3219 -22.3759 66.363 -21.7427 66.3519 -21.1223 66.3648 -20.5158 66.352 -19.9373 66.3758 -19.3764 66.3536 -18.8167 66.3423 -18.2987 66.3036 -17.7766 66.334 -17.2768 66.2337 -16.8003 66.291 -16.3249 66.1823 -15.877 66.217 -15.4309 66.1307 -15.0053 66.1381 -14.5937 66.0665 -14.1888 66.0662 -13.7997 65.9849 -13.4218 65.9906 -13.0528 65.9055 -12.6984 65.9044 -12.3515 65.8268 -12.0164 65.8138 -11.6911 65.7412 -11.3741 65.7244 -11.0669 65.6547 -10.7703 65.6366 -10.4798 65.5675 -10.1999 65.5407 -9.92645 65.4833 -9.65842 65.4539 -9.39876 65.3906 -9.14759 65.3598 -8.90313 65.3101 -8.66544 65.277 -8.43456 65.2264 -8.20951 65.1983 -7.98883 65.1436 -7.77532 65.1015 -7.56779 65.0694 -7.36643 65.0213 -7.16885 64.9954 -6.97572 64.9419 -6.78768 64.9109 -6.60508 64.8698 -6.42663 64.842 -6.25362 64.8001 -6.08432 64.7744 -5.91955 64.7344 -5.75856 64.7052 -5.6016 64.6719 -5.44887 64.6383 -5.29933 64.6133 -5.15281 64.5767 -5.00969 64.5538 -4.86936 64.5222 -4.73191 64.498 -4.59802 64.4691 -4.46895 64.4495 -4.34096 64.4227 -4.21474 64.3979 -4.09269 64.3785 -3.97338 64.3564 -3.85649 64.3393 -3.74065 64.3133 -3.62853 64.2997 -3.51759 64.2821 -3.40967 64.2647 -3.30231 64.2463 -3.19557 64.2139 -3.07261 64.0394 -2.93519 63.5683 -2.7936 62.9614 -2.64818 62.2812 -2.49982 61.5381 -2.3492 60.7413 -2.19688 59.8976 -2.04341 59.0127 -1.88929 58.0917 -1.73499 57.1396 -1.58093 56.1611 -1.42755 55.1613 -1.2752 54.1455 -1.12425 53.1193 -0.975038 52.0886 -0.827858 51.0599 -0.682981 50.0395 -0.540641 49.0342 -0.401038 48.0506 -0.264329 47.0951 -0.130627 46.174 45.2927 -73.5826 34.9989 -74.0409 37.4 -74.2312 39.6989 -74.0655 41.8253 -73.4183 43.7089 -72.2098 45.3314 -70.5511 46.7539 -68.6901 48.0544 -66.8557 49.3036 -65.0824 50.4605 -63.3301 51.5593 -61.6387 52.5898 -60.0245 53.5731 -58.4871 54.5093 -57.0083 55.4031 -55.556 56.2388 -54.1198 57.0205 -52.7017 57.7524 -51.3108 58.4384 -49.9613 59.0884 -48.6409 59.6881 -47.3371 60.2309 -46.0415 60.7283 -44.7563 61.1833 -43.511 61.6148 -42.3218 62.0253 -41.1802 62.4142 -40.0445 62.7661 -38.9103 63.0785 -37.8031 63.3524 -36.753 63.6425 -35.725 63.9007 -34.6925 64.0796 -33.7082 64.3143 -32.7652 64.5234 -31.8249 64.6597 -30.9301 64.8128 -30.0418 64.9673 -29.204 65.0476 -28.3941 65.259 -27.5642 65.2492 -26.8159 65.407 -26.0598 65.4365 -25.3231 65.5409 -24.6172 65.5462 -23.9355 65.6813 -23.2592 65.6456 -22.6119 65.7157 -21.9929 65.7329 -21.3685 65.7404 -20.7831 65.7665 -20.2048 65.7976 -19.645 65.7938 -19.0991 65.7963 -18.5791 65.7837 -18.056 65.8108 -17.5704 65.7482 -17.0841 65.8046 -16.6172 65.7154 -16.1662 65.766 -15.7207 65.6852 -15.2987 65.7161 -14.8827 65.6505 -14.4778 65.6613 -14.088 65.5951 -13.7076 65.6103 -13.3373 65.5352 -12.98 65.5471 -12.6301 65.4769 -12.2928 65.4764 -11.964 65.4125 -11.6441 65.4044 -11.3339 65.3446 -11.0324 65.3351 -10.7379 65.273 -10.4543 65.2572 -10.1762 65.2052 -9.90474 65.1824 -9.64098 65.1268 -9.385 65.1038 -9.13652 65.0616 -8.89451 65.0349 -8.65889 64.9908 -8.43008 64.9695 -8.20561 64.9191 -7.98754 64.8834 -7.77562 64.8575 -7.56963 64.8153 -7.36775 64.7935 -7.1707 64.7448 -6.97906 64.7193 -6.79236 64.6831 -6.61054 64.6601 -6.43167 64.6212 -6.25713 64.5998 -6.08833 64.5656 -5.92266 64.5396 -5.76145 64.5107 -5.60431 64.4812 -5.44972 64.4587 -5.29934 64.4263 -5.15177 64.4062 -5.00685 64.3773 -4.86562 64.3568 -4.72782 64.3313 -4.59334 64.315 -4.46109 64.2905 -4.33107 64.2678 -4.20515 64.2526 -4.08154 64.2328 -3.95924 64.217 -3.84036 64.1944 -3.72401 64.1833 -3.60871 64.1668 -3.4965 64.1525 -3.38541 64.1352 -3.27383 64.1023 -3.14531 63.9109 -3.00356 63.4265 -2.85778 62.8156 -2.70827 62.1317 -2.5559 61.3858 -2.40133 60.5867 -2.24516 59.7414 -2.08792 58.8554 -1.93011 57.9339 -1.7722 56.9817 -1.61462 56.0035 -1.45779 55.0045 -1.30209 53.9898 -1.14786 52.9651 -0.995447 51.9362 -0.845146 50.9096 -0.697223 49.8916 -0.551911 48.8889 -0.409404 47.9081 -0.269853 46.9556 -0.133365 46.0375 45.1594 -71.5278 35.299 -71.4135 37.2857 -70.8707 39.1561 -69.9269 40.8815 -68.6827 42.4647 -67.2907 43.9395 -65.863 45.3263 -64.4386 46.63 -63.0083 47.8733 -61.605 49.0572 -60.2239 50.1782 -58.8808 51.2468 -57.5673 52.2597 -56.2746 53.2166 -54.9883 54.1168 -53.7022 54.9527 -52.4241 55.7424 -51.1675 56.4957 -49.9358 57.2068 -48.7168 57.8694 -47.4978 58.4691 -46.2812 59.0142 -45.0779 59.525 -43.9073 60.0128 -42.7863 60.4937 -41.6949 60.9339 -40.603 61.3223 -39.5155 61.6786 -38.4558 62.0188 -37.4477 62.3443 -36.4463 62.6411 -35.4289 62.8834 -34.4657 63.1165 -33.5587 63.4073 -32.6449 63.6097 -31.7225 63.7373 -30.8826 63.973 -30.0179 64.1026 -29.2275 64.2572 -28.4081 64.4395 -27.6309 64.4721 -26.8985 64.6745 -26.1491 64.6872 -25.444 64.8357 -24.7552 64.8574 -24.0767 65.0027 -23.416 64.985 -22.7954 65.095 -22.1654 65.1029 -21.5675 65.1425 -20.9895 65.1885 -20.4143 65.2224 -19.8664 65.2459 -19.3315 65.2614 -18.8084 65.2605 -18.3004 65.3028 -17.8148 65.2626 -17.3328 65.3226 -16.8708 65.2535 -16.4196 65.3148 -15.9818 65.2475 -15.5572 65.2915 -15.1402 65.2335 -14.7367 65.2579 -14.348 65.2063 -13.965 65.2273 -13.5942 65.1643 -13.2359 65.1888 -12.8834 65.1244 -12.5451 65.1382 -12.2137 65.081 -11.8917 65.0824 -11.579 65.0319 -11.2731 65.0292 -10.9761 64.9759 -10.6891 64.9702 -10.4075 64.9237 -10.1333 64.9082 -9.86636 64.8599 -9.60668 64.8441 -9.35518 64.8101 -9.10943 64.7892 -8.86997 64.7513 -8.63754 64.7371 -8.40928 64.6908 -8.18755 64.6617 -7.97124 64.6411 -7.76026 64.6043 -7.55444 64.5877 -7.35415 64.5445 -7.15964 64.5247 -6.9694 64.4928 -6.7841 64.4748 -6.60012 64.4372 -6.42133 64.421 -6.24794 64.3922 -6.07751 64.3691 -5.91179 64.345 -5.75031 64.3197 -5.59106 64.2995 -5.43736 64.2726 -5.28595 64.2548 -5.13722 64.2285 -4.99277 64.2123 -4.85151 64.19 -4.712 64.1755 -4.57596 64.1544 -4.44257 64.1345 -4.31252 64.1226 -4.18456 64.1049 -4.0575 64.0899 -3.93565 64.0726 -3.81492 64.0626 -3.69567 64.0475 -3.57921 64.036 -3.46474 64.0207 -3.34822 63.9858 -3.2143 63.777 -3.06833 63.2805 -2.91849 62.6658 -2.76506 61.9782 -2.60884 61.2295 -2.45051 60.4284 -2.29066 59.5815 -2.12983 58.6946 -1.96851 57.7726 -1.80717 56.8203 -1.64627 55.8426 -1.4862 54.8444 -1.32733 53.8309 -1.17002 52.8078 -1.01461 51.7808 -0.861381 50.7564 -0.710604 49.7408 -0.562503 48.7408 -0.417269 47.7629 -0.275049 46.8134 -0.135941 45.8984 45.0234 -66.0424 35.2277 -65.6769 36.9203 -65.0809 38.5601 -64.3092 40.1098 -63.4207 41.5762 -62.4612 42.9799 -61.4519 44.317 -60.4219 45.6 -59.3715 46.8229 -58.3093 47.995 -57.2396 49.1085 -56.1655 50.1726 -55.0805 51.1747 -53.981 52.1171 -52.8659 53.0016 -51.7476 53.8344 -50.6404 54.6352 -49.5385 55.3938 -48.4382 56.1064 -47.3248 56.7561 -46.2039 57.3482 -45.097 57.9073 -44.0156 58.4437 -42.9716 58.9688 -41.9431 59.4653 -40.9133 59.9041 -39.8848 60.2938 -38.888 60.6818 -37.928 61.0588 -36.9709 61.3872 -35.9879 61.6581 -35.0377 61.9331 -34.1722 62.2509 -33.2975 62.5326 -32.3924 62.7046 -31.538 62.8828 -30.7479 63.1829 -29.9133 63.2679 -29.1468 63.4907 -28.3494 63.6422 -27.6317 63.7543 -26.8884 63.9313 -26.1727 63.9714 -25.4994 64.1624 -24.8177 64.1758 -24.1558 64.3408 -23.5252 64.3544 -22.9059 64.4757 -22.2886 64.4857 -21.7162 64.5701 -21.1349 64.6072 -20.5753 64.6629 -20.0399 64.7104 -19.5069 64.7284 -18.998 64.7517 -18.4947 64.7995 -18.0129 64.7808 -17.5409 64.8507 -17.0787 64.7913 -16.6365 64.8725 -16.1994 64.8104 -15.7769 64.869 -15.3633 64.8199 -14.9624 64.857 -14.5737 64.8176 -14.1908 64.8445 -13.8218 64.7953 -13.4622 64.8292 -13.11 64.7722 -12.7709 64.7991 -12.4374 64.7475 -12.1145 64.7596 -11.7993 64.7167 -11.4915 64.7214 -11.1935 64.6779 -10.9036 64.6803 -10.6196 64.6398 -10.3437 64.6322 -10.0743 64.5905 -9.81248 64.5823 -9.55811 64.5557 -9.30886 64.5399 -9.06619 64.5086 -8.83007 64.501 -8.59842 64.4592 -8.37418 64.4375 -8.15432 64.4213 -7.93941 64.3894 -7.73038 64.3787 -7.52668 64.3408 -7.32897 64.327 -7.1352 64.2991 -6.94589 64.2855 -6.75861 64.25 -6.57695 64.2394 -6.39885 64.2141 -6.22447 64.1947 -6.05457 64.1751 -5.88884 64.154 -5.72546 64.1361 -5.56817 64.1153 -5.41298 64.0996 -5.26076 64.0763 -5.113 64.0646 -4.96835 64.0454 -4.82464 64.0318 -4.6851 64.0149 -4.54841 63.9978 -4.41425 63.9884 -4.28204 63.9727 -4.15109 63.959 -4.02588 63.9474 -3.90066 63.9374 -3.77792 63.9248 -3.65731 63.9154 -3.53948 63.9029 -3.41806 63.8644 -3.27901 63.6379 -3.12903 63.1306 -2.97531 62.5121 -2.81814 61.8211 -2.65828 61.0697 -2.49639 60.2665 -2.33307 59.4182 -2.16885 58.5304 -2.00424 57.608 -1.83971 56.6558 -1.6757 55.6786 -1.5126 54.6813 -1.35078 53.6691 -1.19061 52.6476 -1.03241 51.6226 -0.876468 50.6004 -0.723042 49.5874 -0.572354 48.5901 -0.424588 47.6151 -0.279885 46.6687 -0.13834 45.7568 44.8851 -60.0967 35.2678 -59.9328 36.7564 -59.6108 38.238 -59.1722 39.6712 -58.6475 41.0515 -58.053 42.3855 -57.4022 43.6661 -56.699 44.8968 -55.9497 46.0736 -55.1576 47.2029 -54.3285 48.2794 -53.4629 49.3069 -52.5638 50.2756 -51.6364 51.1897 -50.6907 52.0559 -49.7384 52.8822 -48.7781 53.6749 -47.8057 54.4214 -46.8147 55.1154 -45.8081 55.7495 -44.8073 56.3474 -43.8283 56.9283 -42.8669 57.4823 -41.9149 58.0168 -40.959 58.5093 -40.0045 58.9496 -39.082 59.3713 -38.1787 59.7785 -37.2703 60.1505 -36.3387 60.4555 -35.4233 60.7428 -34.592 61.1018 -33.7763 61.4353 -32.8984 61.6547 -32.0476 61.8538 -31.2888 62.124 -30.5064 62.4005 -29.7114 62.4729 -28.9805 62.7599 -28.2227 62.8843 -27.5265 63.0581 -26.8026 63.2074 -26.1411 63.3099 -25.4694 63.4907 -24.8075 63.5139 -24.1823 63.7156 -23.5654 63.7375 -22.9491 63.8593 -22.3718 63.9084 -21.7973 63.9956 -21.2324 64.0423 -20.6912 64.1217 -20.1578 64.177 -19.6391 64.2096 -19.143 64.2556 -18.6382 64.2947 -18.1729 64.3155 -17.7005 64.3783 -17.2477 64.3384 -16.8098 64.4347 -16.3758 64.3764 -15.9583 64.4515 -15.5477 64.4093 -15.1534 64.4627 -14.7631 64.4273 -14.3836 64.465 -14.0186 64.4303 -13.6575 64.468 -13.3079 64.4227 -12.9687 64.4599 -12.634 64.4128 -12.3125 64.4381 -11.9957 64.3998 -11.6878 64.4134 -11.3893 64.3795 -11.0973 64.3883 -10.8122 64.3546 -10.5351 64.3551 -10.2638 64.3192 -10.0008 64.3193 -9.74402 64.2989 -9.49206 64.288 -9.24717 64.2637 -9.0076 64.2614 -8.77312 64.2247 -8.54668 64.211 -8.32424 64.1988 -8.10706 64.1723 -7.89566 64.1673 -7.6883 64.1335 -7.487 64.1257 -7.28963 64.1017 -7.09608 64.092 -6.90687 64.0607 -6.72276 64.0553 -6.54042 64.0318 -6.36339 64.0177 -6.19018 64.0019 -6.02082 63.9846 -5.85418 63.9695 -5.69295 63.9541 -5.53402 63.9407 -5.37814 63.9204 -5.22654 63.913 -5.07792 63.8968 -4.93061 63.8845 -4.78746 63.8717 -4.64747 63.8578 -4.50969 63.8506 -4.37369 63.8367 -4.23989 63.8252 -4.11093 63.8184 -3.98163 63.8081 -3.8557 63.7989 -3.73119 63.7909 -3.60977 63.7815 -3.48343 63.738 -3.33943 63.4939 -3.18549 62.9766 -3.02799 62.3546 -2.86724 61.6603 -2.70394 60.9064 -2.53872 60.1013 -2.37218 59.2517 -2.20484 58.363 -2.0372 57.4403 -1.86973 56.4883 -1.70284 55.5117 -1.53694 54.5154 -1.3724 53.5046 -1.20959 52.4848 -1.04882 51.4618 -0.890365 50.442 -0.734495 49.4315 -0.581423 48.437 -0.431325 47.465 -0.284339 46.5217 -0.14055 45.613 44.7445 -54.6959 35.522 -54.7901 36.8505 -54.7547 38.2026 -54.6139 39.5305 -54.3856 40.8231 -54.0738 42.0737 -53.6869 43.2792 -53.2293 44.4392 -52.706 45.5503 -52.1195 46.6164 -51.477 47.6369 -50.7821 48.6121 -50.0465 49.54 -49.2824 50.4256 -48.4925 51.266 -47.6892 52.0789 -46.859 52.8446 -45.9979 53.5604 -45.1156 54.2331 -44.231 54.8649 -43.3559 55.4724 -42.4873 56.0596 -41.6251 56.6201 -40.7554 57.147 -39.8846 57.6386 -39.0353 58.1003 -38.2044 58.5404 -37.3582 58.9323 -36.4828 59.275 -35.6194 59.5921 -34.823 59.9464 -34.0607 60.3395 -33.2442 60.6187 -32.4087 60.8191 -31.6615 61.1066 -30.9502 61.4127 -30.1671 61.6175 -29.4408 61.7467 -28.739 62.058 -28.0197 62.165 -27.3385 62.3769 -26.6622 62.5311 -26.0279 62.6756 -25.3613 62.8241 -24.7446 62.8972 -24.1441 63.1151 -23.5239 63.1173 -22.9519 63.2873 -22.3862 63.3428 -21.8191 63.4285 -21.2827 63.5059 -20.7501 63.5891 -20.2257 63.6526 -19.7293 63.7133 -19.2336 63.7599 -18.7453 63.8065 -18.2869 63.8571 -17.8168 63.9082 -17.3799 63.9016 -16.9399 63.9946 -16.515 63.9515 -16.105 64.0415 -15.6974 64.0016 -15.3067 64.072 -14.92 64.0406 -14.5455 64.0905 -14.1824 64.0672 -13.8235 64.1091 -13.4766 64.0758 -13.1385 64.1218 -12.8056 64.0799 -12.4856 64.118 -12.1689 64.0832 -11.8619 64.1064 -11.563 64.0806 -11.2702 64.0955 -10.9851 64.0695 -10.7069 64.077 -10.4343 64.0466 -10.1708 64.0558 -9.91241 64.0406 -9.65912 64.0347 -9.41324 64.0179 -9.17108 64.0192 -8.93439 63.988 -8.70584 63.9825 -8.48109 63.9741 -8.26212 63.9533 -8.04852 63.9537 -7.83799 63.9229 -7.63339 63.9212 -7.43267 63.901 -7.23567 63.895 -7.04475 63.8698 -6.85761 63.8682 -6.67176 63.8459 -6.4927 63.8387 -6.31637 63.8255 -6.14398 63.8122 -5.97467 63.8002 -5.80975 63.7892 -5.64773 63.7787 -5.48854 63.7612 -5.33339 63.7578 -5.18055 63.7439 -5.03019 63.7341 -4.88312 63.7247 -4.73967 63.7143 -4.59842 63.7094 -4.45887 63.6971 -4.32263 63.6889 -4.18947 63.6852 -4.05676 63.6754 -3.92773 63.6698 -3.79983 63.663 -3.67472 63.6563 -3.54367 63.607 -3.39502 63.3453 -3.23736 62.819 -3.07624 62.1935 -2.91209 61.4962 -2.74556 60.7398 -2.57725 59.933 -2.40773 59.0821 -2.23751 58.1928 -2.06709 57.2699 -1.89692 56.3182 -1.72742 55.3422 -1.55898 54.347 -1.39198 53.3376 -1.22678 52.3196 -1.06367 51.2987 -0.902953 50.2813 -0.744872 49.2735 -0.589642 48.2818 -0.437434 47.3128 -0.288379 46.3726 -0.142556 45.4672 44.602 -49.9499 35.9617 -50.2579 37.1585 -50.4478 38.3925 -50.5335 39.6162 -50.5252 40.8147 -50.4245 41.973 -50.2347 43.0894 -49.9609 44.1654 -49.6087 45.1981 -49.1831 46.1908 -48.6948 47.1486 -48.1515 48.0688 -47.5619 48.9504 -46.9435 49.8072 -46.2994 50.6218 -45.6221 51.4016 -44.9074 52.13 -44.1619 52.8149 -43.3939 53.4651 -42.6289 54.0999 -41.8673 54.7108 -41.093 55.2853 -40.3119 55.8391 -39.5342 56.3693 -38.7646 56.869 -38.0106 57.3463 -37.2359 57.7656 -36.4291 58.1255 -35.6299 58.4758 -34.8767 58.8389 -34.1697 59.2394 -33.4161 59.5859 -32.623 59.8257 -31.8901 60.0862 -31.215 60.4316 -30.5035 60.7012 -29.7593 60.8732 -29.118 61.1053 -28.4261 61.3661 -27.7512 61.4902 -27.1008 61.7264 -26.4754 61.9058 -25.8386 62.0388 -25.2115 62.197 -24.6341 62.3198 -24.0348 62.5159 -23.4463 62.5288 -22.9058 62.7467 -22.3347 62.7717 -21.8038 62.8976 -21.2789 62.981 -20.755 63.0652 -20.2541 63.1517 -19.7657 63.2248 -19.2792 63.2734 -18.8134 63.3407 -18.3529 63.3966 -17.8989 63.4541 -17.4719 63.4745 -17.036 63.5588 -16.6187 63.5342 -16.216 63.6388 -15.8151 63.6008 -15.4272 63.6841 -15.0468 63.6602 -14.6786 63.7223 -14.3163 63.705 -13.9622 63.755 -13.619 63.7326 -13.2821 63.7849 -12.9535 63.7513 -12.6346 63.7991 -12.3191 63.7678 -12.0143 63.8016 -11.7148 63.7811 -11.4231 63.8038 -11.1382 63.7846 -10.8594 63.7982 -10.5865 63.7736 -10.3229 63.7922 -10.0634 63.7811 -9.80994 63.7812 -9.56343 63.7714 -9.31971 63.7755 -9.08176 63.7501 -8.85145 63.7522 -8.62453 63.7472 -8.40372 63.7325 -8.18767 63.7376 -7.97486 63.7101 -7.76762 63.7139 -7.56414 63.6975 -7.36479 63.6956 -7.17162 63.6766 -6.9812 63.6777 -6.793 63.6577 -6.61192 63.6576 -6.43221 63.6458 -6.25708 63.6371 -6.08494 63.628 -5.91674 63.621 -5.75215 63.6141 -5.59022 63.5993 -5.4323 63.5999 -5.27566 63.5873 -5.12285 63.5813 -4.97189 63.5737 -4.82496 63.5674 -4.68002 63.5644 -4.53693 63.554 -4.39793 63.5499 -4.26023 63.5475 -4.12454 63.5397 -3.99214 63.5374 -3.86136 63.5322 -3.73249 63.5275 -3.59728 63.4718 -3.44453 63.1925 -3.28367 62.6581 -3.11936 62.0291 -2.95216 61.329 -2.7827 60.5704 -2.61159 59.7619 -2.43937 58.9099 -2.26656 58.02 -2.09363 57.097 -1.92105 56.1456 -1.74922 55.1704 -1.57851 54.1763 -1.40933 53.1684 -1.242 52.1522 -1.07684 51.1336 -0.914116 50.1185 -0.754081 49.1134 -0.596941 48.1247 -0.442864 47.1587 -0.291973 46.2217 -0.144342 45.3196 44.4576 -45.7932 36.5271 -46.245 37.6102 -46.5875 38.7351 -46.8279 39.8566 -46.9731 40.9599 -47.0219 42.0219 -46.9768 43.0443 -46.8437 44.0323 -46.632 44.9864 -46.3435 45.9024 -45.9896 46.7947 -45.5831 47.6622 -45.1341 48.5014 -44.6447 49.3178 -44.1247 50.1018 -43.5662 50.8432 -42.9596 51.5233 -42.3235 52.1788 -41.6738 52.8154 -41.0191 53.4452 -40.3514 54.043 -39.6676 54.6015 -38.9751 55.1465 -38.285 55.6792 -37.6038 56.1878 -36.9112 56.6537 -36.1838 57.0383 -35.4473 57.3891 -34.7502 57.7787 -34.0927 58.1814 -33.4146 58.5612 -32.6823 58.8537 -31.9754 59.1187 -31.3399 59.4507 -30.6778 59.7695 -29.9821 60.0055 -29.3196 60.2108 -28.7175 60.5032 -28.0432 60.6918 -27.432 60.879 -26.8125 61.1069 -26.2096 61.3028 -25.6015 61.4307 -25.0245 61.62 -24.4583 61.7536 -23.8737 61.9312 -23.3361 61.9912 -22.7931 62.2038 -22.2476 62.2262 -21.7446 62.3946 -21.2226 62.4589 -20.7242 62.5668 -20.2387 62.6663 -19.7552 62.7413 -19.2922 62.8105 -18.8351 62.8836 -18.3829 62.9443 -17.9444 63.0157 -17.5242 63.0543 -17.0971 63.1316 -16.6928 63.1299 -16.2941 63.2401 -15.8987 63.2053 -15.5206 63.306 -15.145 63.2846 -14.7823 63.3596 -14.4238 63.3464 -14.0745 63.4057 -13.7359 63.394 -13.4011 63.45 -13.0763 63.4265 -12.7596 63.4825 -12.4462 63.4544 -12.1444 63.4998 -11.8452 63.4819 -11.5552 63.5137 -11.2709 63.5003 -10.9919 63.5192 -10.7202 63.5019 -10.4568 63.5289 -10.1964 63.5206 -9.94318 63.528 -9.69583 63.524 -9.45132 63.531 -9.21297 63.5117 -8.98126 63.5205 -8.75298 63.5189 -8.53065 63.5102 -8.31229 63.5193 -8.09812 63.496 -7.88902 63.5048 -7.68371 63.4922 -7.48252 63.4944 -7.28657 63.4807 -7.09336 63.4845 -6.90413 63.4685 -6.72075 63.4742 -6.53804 63.4631 -6.36041 63.4595 -6.18514 63.4528 -6.01389 63.4497 -5.84645 63.4467 -5.68186 63.4347 -5.52125 63.4393 -5.36134 63.4274 -5.20638 63.4263 -5.05216 63.4195 -4.90227 63.4175 -4.75401 63.4162 -4.60803 63.408 -4.46617 63.4081 -4.32434 63.4057 -4.18592 63.4013 -4.04982 63.4013 -3.91622 63.3986 -3.78337 63.3946 -3.64436 63.3328 -3.48788 63.036 -3.3242 62.4944 -3.1571 61.862 -2.98722 61.1591 -2.81519 60.3984 -2.64162 59.5883 -2.46703 58.7353 -2.29194 57.8449 -2.11682 56.9219 -1.94212 55.9709 -1.76823 54.9965 -1.59554 54.0036 -1.42443 52.9973 -1.25525 51.983 -1.08828 50.9666 -0.923815 49.9541 -0.762082 48.9517 -0.603284 47.9659 -0.447584 47.003 -0.2951 46.0692 -0.145898 45.1704 44.3117 -42.1131 37.1725 -42.657 38.1541 -43.1006 39.1786 -43.441 40.197 -43.6848 41.2036 -43.8334 42.1705 -43.8904 43.1013 -43.8601 44.0019 -43.7612 44.8876 -43.5966 45.7378 -43.3685 46.5666 -43.0847 47.3785 -42.7586 48.1753 -42.3899 48.9491 -41.9759 49.6878 -41.5178 50.3851 -41.0219 51.0274 -40.4934 51.6503 -39.9515 52.2735 -39.3989 52.8926 -38.8225 53.4667 -38.2244 54.0033 -37.6214 54.5436 -37.0152 55.073 -36.4 55.5726 -35.7559 56.0096 -35.087 56.3694 -34.4472 56.7492 -33.8377 57.1692 -33.2286 57.5723 -32.5715 57.9041 -31.9099 58.192 -31.3028 58.5117 -30.7039 58.8518 -30.0584 59.1241 -29.4218 59.3688 -28.8392 59.6282 -28.2393 59.9033 -27.6125 60.065 -27.0525 60.319 -26.4577 60.5121 -25.8793 60.7244 -25.3148 60.8662 -24.7711 61.0763 -24.2129 61.1954 -23.6749 61.3933 -23.1551 61.4714 -22.6248 61.6734 -22.122 61.7233 -21.6247 61.8974 -21.1253 61.9594 -20.6531 62.0946 -20.1744 62.1876 -19.7105 62.2774 -19.2655 62.3655 -18.8155 62.4336 -18.3812 62.5099 -17.9522 62.5867 -17.5415 62.6437 -17.1237 62.7138 -16.734 62.7402 -16.3385 62.8447 -15.9525 62.8193 -15.583 62.9365 -15.2126 62.9142 -14.8561 63.0031 -14.5028 62.9931 -14.1597 63.0627 -13.8248 63.0591 -13.4936 63.1188 -13.1731 63.106 -12.8589 63.1683 -12.5495 63.145 -12.25 63.2003 -11.9526 63.1845 -11.6647 63.2258 -11.3816 63.2172 -11.1037 63.2413 -10.8337 63.2319 -10.5704 63.2655 -10.3101 63.2603 -10.0573 63.2752 -9.8093 63.276 -9.56496 63.2867 -9.32645 63.2732 -9.09384 63.2879 -8.86513 63.2902 -8.6418 63.2868 -8.42171 63.2992 -8.20681 63.2811 -7.99659 63.2946 -7.79039 63.286 -7.58772 63.2918 -7.38913 63.2821 -7.19403 63.2894 -7.00435 63.2788 -6.81831 63.2882 -6.63364 63.2784 -6.45384 63.2797 -6.27597 63.2749 -6.10214 63.2759 -5.93179 63.2763 -5.76452 63.2675 -5.60093 63.2757 -5.43816 63.2646 -5.28072 63.2689 -5.12374 63.2625 -4.97111 63.2649 -4.81987 63.2649 -4.67156 63.2597 -4.52682 63.2633 -4.38168 63.2606 -4.2407 63.2603 -4.10108 63.2617 -3.96465 63.2622 -3.82799 63.258 -3.6855 63.1903 -3.52547 62.876 -3.35919 62.3281 -3.18955 61.6924 -3.01726 60.9868 -2.84295 60.2241 -2.66719 59.4125 -2.49052 58.5587 -2.31344 57.6678 -2.13642 56.7449 -1.95989 55.7943 -1.78424 54.8209 -1.60987 53.8292 -1.43714 52.8246 -1.26639 51.8123 -1.09791 50.7981 -0.93197 49.7881 -0.768809 48.7885 -0.60862 47.8057 -0.451558 46.8459 -0.297735 45.9154 -0.14721 45.0199 44.1645 -38.8061 37.8667 -39.4055 38.7535 -39.9129 39.686 -40.324 40.6082 -40.6372 41.5168 -40.8541 42.3874 -40.9865 43.2337 -41.0373 44.0528 -41.0232 44.8734 -40.96 45.6746 -40.8435 46.45 -40.671 47.206 -40.448 47.9523 -40.1753 48.6765 -39.8561 49.3685 -39.4879 50.0169 -39.0893 50.6288 -38.6682 51.2292 -38.2297 51.835 -37.7664 52.4293 -37.2748 52.9752 -36.766 53.4945 -36.2413 54.0189 -35.7092 54.5409 -35.1555 55.0189 -34.5689 55.4229 -33.976 55.7765 -33.4182 56.1915 -32.8712 56.6222 -32.2935 56.9947 -31.6881 57.2987 -31.1135 57.6175 -30.5683 57.9664 -29.9776 58.2611 -29.3873 58.5337 -28.8285 58.8099 -28.2772 59.077 -27.6985 59.3246 -27.1467 59.5133 -26.6049 59.7772 -26.0381 59.9453 -25.5101 60.1964 -24.9772 60.3333 -24.4461 60.5452 -23.9263 60.6756 -23.4256 60.8926 -22.9141 60.9599 -22.421 61.1803 -21.9408 61.2431 -21.4559 61.4125 -20.9901 61.4936 -20.5307 61.6353 -20.0671 61.724 -19.6284 61.8387 -19.19 61.927 -18.7601 62.0037 -18.3394 62.0893 -17.9227 62.1699 -17.521 62.242 -17.1181 62.3109 -16.737 62.3591 -16.346 62.4537 -15.9769 62.4502 -15.6112 62.5707 -15.2474 62.5505 -14.8993 62.655 -14.5514 62.6452 -14.2156 62.7269 -13.8843 62.7278 -13.5582 62.7927 -13.2432 62.791 -12.9315 62.8565 -12.6271 62.8407 -12.33 62.9031 -12.0354 62.8899 -11.7512 62.9416 -11.4691 62.9352 -11.1939 62.9662 -10.9257 62.9637 -10.6628 63.0026 -10.404 63.0016 -10.152 63.0231 -9.90402 63.028 -9.66064 63.0433 -9.42196 63.0345 -9.1893 63.0552 -8.96049 63.0614 -8.73663 63.063 -8.51538 63.0779 -8.30008 63.0658 -8.08921 63.0837 -7.88246 63.0792 -7.67892 63.0882 -7.47859 63.0818 -7.28266 63.0935 -7.09221 63.0884 -6.90363 63.0996 -6.71791 63.0927 -6.53639 63.0981 -6.35701 63.0955 -6.18137 63.1003 -6.00879 63.1037 -5.83932 63.098 -5.67292 63.1093 -5.50785 63.0995 -5.34751 63.1086 -5.18791 63.1029 -5.03213 63.1091 -4.87775 63.1106 -4.72686 63.1088 -4.57891 63.1154 -4.43102 63.1127 -4.28746 63.1167 -4.1448 63.1191 -4.00566 63.1231 -3.86581 63.1181 -3.7201 63.0446 -3.55687 62.7128 -3.38828 62.1595 -3.21642 61.5205 -3.04202 60.8124 -2.86572 60.0478 -2.68808 59.2349 -2.50963 58.3802 -2.33086 57.4891 -2.15225 56.5662 -1.9742 55.6163 -1.79709 54.6438 -1.62134 53.6535 -1.4473 52.6505 -1.27529 51.6403 -1.1056 50.6284 -0.938492 49.621 -0.774194 48.6242 -0.612897 47.6444 -0.454749 46.6878 -0.299854 45.7605 -0.148268 44.8683 44.0163 -35.7978 38.5874 -36.4318 39.3876 -36.9763 40.2305 -37.4323 41.0642 -37.8006 41.8851 -38.0761 42.6629 -38.2673 43.4249 -38.3893 44.1748 -38.4487 44.9328 -38.4634 45.6893 -38.4368 46.4234 -38.3547 47.1239 -38.2178 47.8155 -38.025 48.4836 -37.7795 49.1231 -37.4959 49.7333 -37.1904 50.3233 -36.8636 50.9024 -36.5161 51.4875 -36.1374 52.0505 -35.7194 52.5572 -35.2891 53.0642 -34.8436 53.5734 -34.3751 54.0724 -33.8804 54.5242 -33.3598 54.9023 -32.8516 55.2682 -32.3581 55.698 -31.8564 56.1205 -31.3276 56.4659 -30.7917 56.7628 -30.2801 57.1059 -29.7614 57.4477 -29.2132 57.7129 -28.6909 58.0114 -28.1832 58.3023 -27.6443 58.5381 -27.1133 58.7935 -26.6261 59.0261 -26.0917 59.2428 -25.5924 59.446 -25.0872 59.6912 -24.5815 59.8277 -24.0813 60.045 -23.6036 60.1979 -23.1159 60.4048 -22.6342 60.4782 -22.1757 60.7218 -21.7065 60.7739 -21.2503 60.9564 -20.8082 61.0515 -20.3598 61.1869 -19.9229 61.287 -19.4987 61.4146 -19.0723 61.5007 -18.6646 61.596 -18.2552 61.6799 -17.854 61.7688 -17.4611 61.849 -17.0755 61.9253 -16.7013 61.9849 -16.3215 62.0738 -15.9657 62.0944 -15.6045 62.2095 -15.251 62.1969 -14.9107 62.3147 -14.5703 62.3048 -14.2415 62.3981 -13.9145 62.4008 -13.5961 62.4743 -13.2859 62.4808 -12.9778 62.5484 -12.6789 62.5418 -12.3849 62.6091 -12.0947 62.5996 -11.8145 62.6614 -11.5342 62.655 -11.2622 62.6941 -10.9966 62.6981 -10.7352 62.7413 -10.4788 62.7452 -10.2277 62.772 -9.98069 62.781 -9.73841 62.801 -9.50012 62.7962 -9.2684 62.8235 -9.03956 62.8325 -8.81529 62.8387 -8.59361 62.8563 -8.37827 62.8504 -8.16689 62.8723 -7.95948 62.8718 -7.75551 62.8842 -7.55472 62.881 -7.35864 62.8974 -7.16666 62.8964 -6.9763 62.9092 -6.78968 62.9061 -6.6068 62.9153 -6.42643 62.9151 -6.24938 62.9232 -6.07513 62.9295 -5.90391 62.9268 -5.73526 62.9407 -5.56858 62.9329 -5.40568 62.9457 -5.24407 62.9413 -5.08546 62.9505 -4.92844 62.9535 -4.77506 62.9555 -4.62398 62.9643 -4.47378 62.9625 -4.32752 62.9705 -4.18209 62.9736 -4.03998 62.9809 -3.89719 62.9753 -3.74815 62.8955 -3.58208 62.5467 -3.41141 61.9889 -3.2376 61.3467 -3.06141 60.6362 -2.88343 59.8698 -2.70423 59.0557 -2.52432 58.2003 -2.34419 57.3089 -2.1643 56.3864 -1.98503 55.437 -1.80678 54.4655 -1.62996 53.4766 -1.45491 52.4755 -1.28193 51.4673 -1.11133 50.4578 -0.943345 49.453 -0.778201 48.4591 -0.616082 47.4823 -0.457129 46.5288 -0.30144 45.6048 -0.149063 44.7159 43.8672 -33.0419 39.312 -33.6928 40.0385 -34.2633 40.801 -34.7489 41.5498 -35.1541 42.2902 -35.4833 42.9922 -35.7309 43.6725 -35.9104 44.3543 -36.0354 45.0578 -36.1125 45.7664 -36.1525 46.4633 -36.1431 47.1145 -36.0712 47.7436 -35.947 48.3595 -35.7734 48.9495 -35.5606 49.5206 -35.3391 50.1018 -35.1017 50.6651 -34.8282 51.214 -34.5175 51.7399 -34.1751 52.2148 -33.8124 52.7015 -33.4365 53.1974 -33.0306 53.6666 -32.5894 54.083 -32.137 54.4499 -31.7074 54.8386 -31.2774 55.268 -30.8206 55.6637 -30.3487 55.994 -29.8743 56.2884 -29.4031 56.6346 -28.917 56.9616 -28.4368 57.2327 -27.9706 57.5452 -27.48 57.8116 -26.9858 58.0439 -26.5124 58.3201 -26.0514 58.5651 -25.5342 58.7257 -25.1074 59.0192 -24.6118 59.1956 -24.1393 59.3552 -23.6867 59.5923 -23.2288 59.7399 -22.7604 59.9365 -22.317 60.0348 -21.8761 60.2809 -21.4299 60.3277 -21.0027 60.5293 -20.5772 60.6259 -20.1479 60.7576 -19.7381 60.8772 -19.3225 60.999 -18.9198 61.0979 -18.5264 61.2026 -18.1336 61.2871 -17.7472 61.3824 -17.3671 61.4689 -16.9953 61.5536 -16.6312 61.6208 -16.2655 61.7081 -15.9193 61.7482 -15.5662 61.8565 -15.2257 61.8564 -14.8918 61.9807 -14.5598 61.9729 -14.2391 62.0773 -13.9178 62.0795 -13.6082 62.1647 -13.3025 62.1751 -12.9996 62.2455 -12.7068 62.249 -12.4166 62.3189 -12.1323 62.3153 -11.8549 62.384 -11.578 62.3781 -11.3098 62.4259 -11.0469 62.4352 -10.7884 62.4828 -10.5346 62.4913 -10.285 62.5225 -10.0396 62.5356 -9.7986 62.56 -9.56154 62.5592 -9.33138 62.5933 -9.10299 62.6041 -8.87877 62.6145 -8.65764 62.6351 -8.44265 62.6354 -8.23084 62.6605 -8.02292 62.6639 -7.81862 62.6799 -7.61836 62.6807 -7.42214 62.7012 -7.22834 62.7026 -7.03703 62.7179 -6.84923 62.7183 -6.66517 62.7312 -6.48364 62.7336 -6.3052 62.7448 -6.1292 62.7535 -5.95645 62.754 -5.78583 62.77 -5.61803 62.7651 -5.45322 62.7808 -5.29038 62.7785 -5.12988 62.79 -4.97124 62.7949 -4.81594 62.8002 -4.6623 62.8107 -4.51025 62.8104 -4.36129 62.8215 -4.21319 62.8255 -4.06788 62.8356 -3.92216 62.8296 -3.76966 62.743 -3.60107 62.3781 -3.42847 61.8163 -3.25294 61.1712 -3.07519 60.4585 -2.89582 59.6904 -2.71536 58.8752 -2.53431 58.0193 -2.35315 57.1278 -2.1723 56.2055 -1.99215 55.2569 -1.8131 54.2865 -1.63555 53.2991 -1.45982 52.2997 -1.28621 51.2937 -1.11501 50.2866 -0.946461 49.2845 -0.780778 48.2934 -0.618137 47.3196 -0.458672 46.3694 -0.302475 45.4486 -0.149585 44.563 43.7176 -30.5194 40.0288 -31.1672 40.6862 -31.7479 41.3816 -32.2586 42.0606 -32.692 42.7236 -33.0591 43.3593 -33.3625 43.9759 -33.5962 44.5879 -33.7728 45.2345 -33.9011 45.8947 -33.9856 46.5479 -34.0289 47.1578 -34.0147 47.7293 -33.9428 48.2875 -33.8385 48.8452 -33.701 49.383 -33.5443 49.9451 -33.3774 50.4982 -33.1755 51.0121 -32.9221 51.4864 -32.6438 51.9365 -32.3503 52.408 -32.0312 52.8784 -31.6793 53.3146 -31.2919 53.6957 -30.9092 54.0671 -30.5489 54.4783 -30.1771 54.8962 -29.7703 55.2569 -29.3472 55.5709 -28.9235 55.8647 -28.4929 56.2041 -28.0635 56.5322 -27.6396 56.8089 -27.2036 57.1092 -26.7436 57.3517 -26.3124 57.6127 -25.8867 57.8943 -25.4341 58.1125 -24.9745 58.2661 -24.5659 58.6106 -24.091 58.7206 -23.6786 58.9428 -23.2485 59.1622 -22.8061 59.2976 -22.3795 59.5098 -21.9606 59.616 -21.5383 59.8586 -21.1204 59.9098 -20.7167 60.1255 -20.3069 60.2161 -19.9051 60.3558 -19.5126 60.4847 -19.1136 60.6 -18.7326 60.7169 -18.3517 60.8217 -17.9783 60.9136 -17.6069 61.0111 -17.2411 61.1032 -16.8813 61.1937 -16.531 61.2705 -16.1785 61.3556 -15.8425 61.4122 -15.4998 61.5138 -15.1725 61.5291 -14.8445 61.6527 -14.5215 61.6499 -14.2095 61.7653 -13.8964 61.7665 -13.5944 61.8627 -13.2936 61.8743 -12.9981 61.95 -12.7108 61.9617 -12.4254 62.0334 -12.1468 62.0368 -11.8727 62.1099 -11.5999 62.1053 -11.337 62.163 -11.0764 62.1746 -10.8215 62.2279 -10.5703 62.2401 -10.3229 62.2751 -10.0801 62.2928 -9.84075 62.3207 -9.60573 62.3242 -9.37743 62.365 -9.15006 62.3768 -8.92698 62.3914 -8.70717 62.4153 -8.49285 62.4211 -8.28108 62.4488 -8.07325 62.4561 -7.86875 62.4754 -7.66929 62.4813 -7.47268 62.5046 -7.27769 62.5076 -7.08612 62.5263 -6.89726 62.5294 -6.71238 62.5463 -6.5298 62.551 -6.3502 62.5652 -6.17251 62.5758 -5.99853 62.58 -5.82599 62.5975 -5.65711 62.5962 -5.49046 62.6142 -5.32634 62.6143 -5.16418 62.6278 -5.00406 62.6348 -4.84688 62.643 -4.69095 62.6547 -4.53726 62.6567 -4.38585 62.6701 -4.23555 62.6752 -4.08749 62.6876 -3.93945 62.6816 -3.78368 62.5872 -3.61305 62.2075 -3.43894 61.6422 -3.26206 60.9943 -3.08314 60.2796 -2.90273 59.51 -2.72136 58.6939 -2.53951 57.8374 -2.35766 56.9459 -2.17618 56.024 -1.99548 55.0762 -1.81598 54.107 -1.63802 53.1211 -1.46195 52.1237 -1.28804 51.1198 -1.11658 50.1152 -0.947786 49.1157 -0.78188 48.1275 -0.619026 47.1568 -0.459352 46.2097 -0.302941 45.2922 -0.149827 44.4099 43.5678 -28.2103 40.7389 -28.8506 41.3265 -29.4239 41.9549 -29.9425 42.5791 -30.4019 43.1831 -30.7961 43.7534 -31.1374 44.3173 -31.4234 44.8738 -31.6471 45.4582 -31.8172 46.0647 -31.9392 46.6699 -32.0159 47.2345 -32.0511 47.7645 -32.0326 48.2691 -31.9804 48.793 -31.9121 49.3147 -31.8189 49.8518 -31.6998 50.3791 -31.5526 50.8649 -31.3631 51.2969 -31.1413 51.7148 -30.9032 52.1698 -30.6368 52.612 -30.3344 53.0122 -30.0042 53.3655 -29.689 53.7519 -29.3906 54.1799 -29.0615 54.5671 -28.6979 54.8933 -28.3193 55.1923 -27.9504 55.4958 -27.5746 55.8283 -27.1971 56.1547 -26.8116 56.4234 -26.392 56.6895 -25.9941 56.9538 -25.6122 57.2308 -25.2078 57.49 -24.7774 57.6821 -24.399 57.8876 -23.9955 58.2071 -23.5545 58.2796 -23.1875 58.5759 -22.7617 58.7363 -22.358 58.8939 -21.9705 59.1224 -21.5669 59.2124 -21.1745 59.4661 -20.78 59.5153 -20.399 59.7445 -20.0078 59.8249 -19.6335 59.9815 -19.254 60.1052 -18.8784 60.2244 -18.5127 60.3512 -18.1474 60.4563 -17.7917 60.558 -17.4362 60.6556 -17.0841 60.7511 -16.7381 60.8477 -16.4001 60.9326 -16.0619 61.0174 -15.7361 61.0863 -15.4039 61.1816 -15.0902 61.2155 -14.7694 61.3319 -14.4575 61.3379 -14.153 61.4609 -13.8493 61.4627 -13.5547 61.5682 -13.2593 61.5789 -12.9728 61.6635 -12.69 61.6789 -12.4103 61.7537 -12.1375 61.764 -11.8679 61.8402 -11.6002 61.8376 -11.3423 61.9051 -11.0846 61.9169 -10.834 61.9773 -10.5856 61.9918 -10.3411 62.0306 -10.1015 62.0532 -9.86419 62.0833 -9.63206 62.092 -9.40572 62.1387 -9.17986 62.1509 -8.95886 62.1704 -8.74074 62.1972 -8.52732 62.2077 -8.31638 62.2378 -8.10918 62.2489 -7.90488 62.2711 -7.70587 62.2823 -7.50878 62.3075 -7.3137 62.3125 -7.12223 62.3349 -6.93293 62.3401 -6.74766 62.3611 -6.56457 62.3679 -6.38424 62.3848 -6.20549 62.397 -6.03069 62.4052 -5.85654 62.4233 -5.68666 62.4263 -5.51808 62.4456 -5.35248 62.4488 -5.18855 62.4639 -5.02675 62.473 -4.86756 62.4838 -4.70952 62.4967 -4.55426 62.5015 -4.40072 62.5166 -4.24871 62.5232 -4.09848 62.5374 -3.9486 62.5317 -3.78989 62.4285 -3.61773 62.0353 -3.44249 61.4669 -3.26467 60.8165 -3.08496 60.0998 -2.9039 59.3289 -2.722 58.512 -2.53974 57.6551 -2.35756 56.7637 -2.17583 55.8423 -1.99495 54.8953 -1.81535 53.9274 -1.63734 52.9431 -1.46126 51.9476 -1.28739 50.9459 -1.11599 49.9438 -0.947287 48.947 -0.781479 47.9617 -0.618727 46.994 -0.459151 46.0501 -0.302827 45.1359 -0.149783 44.2568 43.418 -26.0863 41.4365 -26.7231 41.9633 -27.2912 42.523 -27.8002 43.0881 -28.2676 43.6505 -28.6864 44.1722 -29.0505 44.6814 -29.3683 45.1916 -29.6344 45.7243 -29.8422 46.2726 -30.0007 46.8284 -30.1123 47.3461 -30.1842 47.8364 -30.2204 48.3053 -30.2195 48.7921 -30.1982 49.2933 -30.1561 49.8098 -30.0822 50.3052 -29.9736 50.7562 -29.8351 51.1584 -29.6735 51.5531 -29.4821 51.9785 -29.2579 52.3878 -29.0083 52.7627 -28.7462 53.1033 -28.4915 53.4972 -28.2387 53.9271 -27.9424 54.2708 -27.6116 54.5624 -27.2825 54.8633 -26.9731 55.1864 -26.6558 55.511 -26.3099 55.8087 -25.9518 56.0654 -25.5725 56.3103 -25.2334 56.6147 -24.8821 56.8795 -24.492 57.0998 -24.1084 57.2985 -23.7812 57.5605 -23.385 57.811 -23.0061 57.9006 -22.6534 58.2232 -22.2414 58.3244 -21.8979 58.5504 -21.5149 58.7393 -21.1432 58.8408 -20.7754 59.0983 -20.4055 59.1454 -20.0482 59.3873 -19.6778 59.4544 -19.3276 59.6314 -18.964 59.7415 -18.6125 59.8729 -18.2605 59.9992 -17.9135 60.1093 -17.5744 60.2189 -17.2346 60.3158 -16.8983 60.4148 -16.5661 60.5155 -16.2388 60.6052 -15.9163 60.6949 -15.6004 60.7705 -15.2801 60.8612 -14.9784 60.9137 -14.6669 61.0204 -14.3681 61.0391 -14.0703 61.1631 -13.7753 61.1677 -13.4889 61.2818 -13.2006 61.2906 -12.9226 61.3855 -12.6452 61.4016 -12.3723 61.4808 -12.1059 61.4975 -11.841 61.5754 -11.5797 61.5762 -11.3261 61.6516 -11.0724 61.6631 -10.8268 61.7317 -10.5814 61.7464 -10.3408 61.79 -10.1047 61.8171 -9.86971 61.8483 -9.64115 61.8635 -9.4167 61.9142 -9.193 61.9272 -8.97437 61.9518 -8.75815 61.981 -8.54591 61.9955 -8.33664 62.0285 -8.13033 62.0426 -7.9268 62.0676 -7.72776 62.0832 -7.53027 62.11 -7.33591 62.1182 -7.14454 62.1435 -6.95528 62.1509 -6.76976 62.1755 -6.58652 62.1847 -6.40564 62.204 -6.22652 62.2179 -6.05115 62.2299 -5.87608 62.2483 -5.70555 62.2558 -5.53554 62.2756 -5.36896 62.2822 -5.20373 62.2986 -5.04067 62.3099 -4.8799 62.323 -4.72025 62.337 -4.56357 62.3448 -4.40815 62.3611 -4.25451 62.3696 -4.1022 62.385 -3.95034 62.3798 -3.78904 62.2672 -3.61567 61.862 -3.4395 61.2908 -3.26098 60.638 -3.08077 59.9196 -2.89937 59.1475 -2.71727 58.3299 -2.53494 57.4728 -2.35278 56.5816 -2.17114 55.6607 -1.99045 54.7146 -1.81111 53.748 -1.63342 52.7654 -1.45769 51.7719 -1.28421 50.7724 -1.11321 49.7728 -0.944931 48.7787 -0.779549 47.7963 -0.61722 46.8317 -0.458056 45.891 -0.302124 44.98 -0.149447 44.1042 43.2686 -24.1298 42.1124 -24.7561 42.5896 -25.3251 43.0921 -25.8306 43.5936 -26.288 44.108 -26.7157 44.5999 -27.1013 45.067 -27.4363 45.5266 -27.7254 46.0134 -27.9656 46.5128 -28.1557 47.0185 -28.3059 47.4964 -28.4172 47.9477 -28.4971 48.3852 -28.5476 48.8427 -28.5687 49.3144 -28.5594 49.8005 -28.5187 50.2645 -28.4499 50.6875 -28.3507 51.0592 -28.2319 51.4343 -28.0892 51.8358 -27.9087 52.2073 -27.7074 52.5614 -27.5141 52.91 -27.3163 53.2994 -27.0889 53.6996 -26.8243 54.0063 -26.5317 54.2698 -26.2564 54.5879 -25.9994 54.9294 -25.7215 55.2332 -25.4029 55.4901 -25.0752 55.7377 -24.7592 55.9942 -24.4564 56.3119 -24.1243 56.5474 -23.7677 56.7432 -23.4377 56.9685 -23.1263 57.2491 -22.7417 57.4263 -22.4265 57.5854 -22.0833 57.88 -21.7132 57.9543 -21.4033 58.2406 -21.0211 58.3571 -20.695 58.5147 -20.3434 58.7467 -20.0017 58.8037 -19.6626 59.0482 -19.3168 59.1087 -18.9871 59.3017 -18.6427 59.3971 -18.3136 59.5438 -17.9762 59.6619 -17.6496 59.7827 -17.325 59.8942 -17.0026 59.9935 -16.684 60.0962 -16.3646 60.1961 -16.0507 60.2913 -15.7424 60.3865 -15.4375 60.4656 -15.1316 60.5553 -14.839 60.6211 -14.5385 60.7199 -14.2526 60.7532 -13.9617 60.8722 -13.6767 60.8827 -13.3979 61.0029 -13.1186 61.0113 -12.8482 61.1151 -12.5775 61.1308 -12.313 61.2164 -12.0525 61.237 -11.7931 61.316 -11.5382 61.3213 -11.2893 61.4027 -11.0407 61.4145 -10.8004 61.4913 -10.5581 61.5041 -10.3226 61.5545 -10.0898 61.5843 -9.85787 61.6164 -9.63326 61.6389 -9.41069 61.6917 -9.1898 61.7063 -8.97364 61.7356 -8.75945 61.7668 -8.54895 61.785 -8.34201 61.8216 -8.13691 61.8375 -7.93483 61.8655 -7.73568 61.8841 -7.53828 61.9126 -7.34493 61.9248 -7.15374 61.9523 -6.96481 61.9619 -6.77916 61.9899 -6.59587 62.0014 -6.41459 62.0227 -6.23551 62.0388 -6.05958 62.0539 -5.88428 62.073 -5.71324 62.0848 -5.54245 62.1048 -5.37533 62.1151 -5.20927 62.1326 -5.04541 62.1461 -4.88347 62.1611 -4.72266 62.1762 -4.56466 62.1868 -4.4076 62.2041 -4.25242 62.2144 -4.09823 62.2308 -3.94449 62.2261 -3.78101 62.1037 -3.60672 61.6877 -3.42991 61.114 -3.25099 60.459 -3.07059 59.7392 -2.88918 58.9661 -2.70724 58.1479 -2.5252 57.2908 -2.34339 56.3998 -2.16219 55.4795 -1.98206 54.5345 -1.80331 53.5693 -1.62627 52.5884 -1.45124 51.5968 -1.27849 50.5997 -1.10824 49.6025 -0.94071 48.6112 -0.776083 47.6317 -0.614498 46.6701 -0.456059 45.7325 -0.300828 44.8247 -0.148818 43.9522 43.1197 -22.3293 42.769 -22.938 43.1982 -23.4992 43.6533 -24.0093 44.1037 -24.4622 44.5609 -24.8807 45.0184 -25.2754 45.4617 -25.6304 45.8816 -25.9327 46.3158 -26.1912 46.7712 -26.4074 47.2347 -26.5884 47.6774 -26.7402 48.0996 -26.8604 48.5053 -26.9498 48.9321 -27.0083 49.373 -27.0321 49.8243 -27.0156 50.2479 -26.9751 50.647 -26.9193 51.0034 -26.8339 51.3489 -26.7248 51.7267 -26.596 52.0785 -26.4458 52.4112 -26.3008 52.765 -26.1476 53.1462 -25.9419 53.4939 -25.7099 53.7743 -25.4707 54.0306 -25.2442 54.3615 -25.0252 54.7103 -24.7674 54.9754 -24.4832 55.2058 -24.2047 55.4592 -23.9381 55.7275 -23.6553 56.0292 -23.346 56.238 -23.0401 56.4374 -22.7482 56.6765 -22.4455 56.9464 -22.0972 57.0781 -21.8258 57.314 -21.4829 57.5371 -21.1777 57.649 -20.8605 57.9234 -20.5195 58.016 -20.2234 58.2186 -19.8899 58.4132 -19.5731 58.4869 -19.2521 58.7272 -18.9331 58.7897 -18.6183 58.9868 -18.2977 59.0765 -17.9862 59.2322 -17.6668 59.3425 -17.3592 59.4751 -17.0476 59.5826 -16.7449 59.6908 -16.4416 59.7928 -16.1369 59.8915 -15.8381 59.9925 -15.5413 60.0897 -15.2495 60.1739 -14.9583 60.2641 -14.6743 60.3371 -14.3855 60.4311 -14.1112 60.4789 -13.8285 60.5895 -13.5554 60.6095 -13.2838 60.7314 -13.0138 60.7413 -12.7517 60.8531 -12.488 60.8671 -12.2319 60.9603 -11.9771 60.9822 -11.7238 61.0627 -11.476 61.0735 -11.2318 61.1586 -10.9894 61.1721 -10.7538 61.2557 -10.5157 61.2661 -10.2855 61.3243 -10.0558 61.3546 -9.82803 61.3886 -9.60726 61.4181 -9.38699 61.4714 -9.16942 61.4887 -8.95588 61.5221 -8.74387 61.5548 -8.53595 61.577 -8.33134 61.617 -8.1282 61.6343 -7.92809 61.6654 -7.72936 61.6854 -7.53307 61.7163 -7.34075 61.7325 -7.15028 61.7618 -6.96207 61.7737 -6.7767 61.8045 -6.59358 61.8183 -6.41238 61.8415 -6.23351 61.86 -6.05717 61.8776 -5.88198 61.8978 -5.71029 61.9131 -5.53903 61.9335 -5.37125 61.9473 -5.2044 61.9657 -5.03972 61.9814 -4.87665 61.998 -4.71483 62.0144 -4.55558 62.0275 -4.39718 62.0457 -4.24077 62.058 -4.08523 62.0753 -3.93006 62.0709 -3.76481 61.9385 -3.59009 61.513 -3.41317 60.937 -3.23434 60.2802 -3.05418 59.5591 -2.87316 58.7851 -2.69175 57.9665 -2.51033 57.1094 -2.32924 56.2187 -2.14888 55.2991 -1.96966 54.3552 -1.79188 53.3915 -1.61587 52.4124 -1.44189 51.4228 -1.27021 50.428 -1.10105 49.4334 -0.934619 48.4448 -0.771075 47.4681 -0.610558 46.5096 -0.453161 45.5751 -0.298938 44.6705 -0.147895 43.8011 42.9719 -20.6635 43.4097 -21.259 43.7937 -21.806 44.2003 -22.3125 44.6101 -22.7703 45.0188 -23.1825 45.4305 -23.5683 45.8475 -23.9339 46.2472 -24.2569 46.6388 -24.5281 47.0424 -24.7611 47.4678 -24.9648 47.881 -25.1459 48.2806 -25.3019 48.6613 -25.4249 49.055 -25.5094 49.4574 -25.5599 49.8749 -25.5769 50.2649 -25.5588 50.6288 -25.5326 50.9772 -25.4903 51.3066 -25.4104 51.6468 -25.3199 51.988 -25.2232 52.3145 -25.1145 52.6564 -24.9833 53.0151 -24.8059 53.3165 -24.6129 53.5813 -24.4304 53.8482 -24.2429 54.174 -24.0462 54.5136 -23.809 54.7382 -23.5636 54.9604 -23.3424 55.2381 -23.1048 55.4899 -22.8363 55.7606 -22.563 55.9648 -22.3041 56.1785 -22.034 56.4065 -21.753 56.6653 -21.4547 56.7798 -21.2028 57.0621 -20.8726 57.2069 -20.6199 57.3963 -20.2959 57.5995 -20.0123 57.7323 -19.723 57.9293 -19.4162 58.1064 -19.1207 58.1913 -18.8237 58.4302 -18.5271 58.4931 -18.2271 58.6869 -17.9331 58.7825 -17.6343 58.9334 -17.3383 59.0465 -17.0439 59.1807 -16.7492 59.288 -16.4638 59.4053 -16.1738 59.5029 -15.8871 59.6047 -15.6012 59.7067 -15.3162 59.8046 -15.0378 59.8956 -14.7596 59.9859 -14.4856 60.0631 -14.2089 60.1544 -13.9445 60.2146 -13.6721 60.3171 -13.4112 60.3487 -13.1474 60.4675 -12.8872 60.4811 -12.6329 60.5988 -12.3775 60.6117 -12.1291 60.7118 -11.8804 60.7335 -11.6338 60.8161 -11.3935 60.8331 -11.1544 60.9195 -10.9187 60.9364 -10.6873 61.0243 -10.4547 61.0335 -10.2295 61.0991 -10.0033 61.1284 -9.78044 61.1657 -9.56309 61.2007 -9.34596 61.2543 -9.13202 61.2748 -8.9214 61.3114 -8.71192 61.3453 -8.50706 61.3722 -8.30439 61.4143 -8.10395 61.4339 -7.90599 61.4675 -7.70857 61.4879 -7.51429 61.522 -7.32296 61.5412 -7.13385 61.5727 -6.94685 61.5867 -6.76215 61.6198 -6.5796 61.6357 -6.39902 61.6609 -6.22048 61.6814 -6.04415 61.7013 -5.86926 61.7229 -5.69702 61.7408 -5.5256 61.7621 -5.35712 61.7788 -5.18964 61.7982 -5.0242 61.816 -4.86017 61.834 -4.69754 61.8518 -4.53718 61.8672 -4.37767 61.8862 -4.22016 61.9005 -4.0634 61.9186 -3.90689 61.9144 -3.74052 61.7721 -3.56591 61.3384 -3.38933 60.7604 -3.21101 60.1019 -3.0315 59.3796 -2.85127 58.6049 -2.6708 57.786 -2.49039 56.9289 -2.31038 56.0387 -2.13124 55.12 -1.95329 54.1773 -1.77685 53.215 -1.60221 52.2378 -1.42965 51.2503 -1.25939 50.2577 -1.09167 49.2656 -0.926664 48.2797 -0.764534 47.306 -0.605405 46.3505 -0.449364 45.4191 -0.296456 44.5176 -0.146681 43.6513 42.8252 -19.1162 44.0268 -19.6997 44.3771 -20.2376 44.7383 -20.7335 45.106 -21.1913 45.4765 -21.6064 45.8457 -21.9848 46.2259 -22.3424 46.6048 -22.6794 46.9757 -22.9719 47.3349 -23.2174 47.7133 -23.4345 48.0981 -23.6337 48.4799 -23.8133 48.8409 -23.9644 49.2061 -24.0763 49.5694 -24.1445 49.943 -24.1888 50.3093 -24.2072 50.6472 -24.2002 50.9703 -24.1889 51.2952 -24.1508 51.6087 -24.0908 51.928 -24.0293 52.253 -23.954 52.5811 -23.8407 52.9018 -23.6925 53.1682 -23.5443 53.433 -23.4086 53.7125 -23.2517 54.0171 -23.0686 54.3304 -22.8638 54.5334 -22.6577 54.7543 -22.4756 55.056 -22.2628 55.2771 -22.0179 55.5158 -21.7873 55.7341 -21.556 55.9472 -21.3095 56.1601 -21.0558 56.4116 -20.8032 56.5273 -20.5475 56.8064 -20.2627 56.9221 -20.0292 57.1628 -19.7339 57.3042 -19.4829 57.4813 -19.1988 57.6452 -18.9232 57.8308 -18.6502 57.9183 -18.3741 58.1542 -18.0958 58.2147 -17.8167 58.4077 -17.5444 58.5102 -17.2606 58.6497 -16.9882 58.774 -16.7047 58.8972 -16.4314 59.0146 -16.1577 59.1316 -15.8841 59.2293 -15.6146 59.3352 -15.3409 59.433 -15.0698 59.5335 -14.8033 59.629 -14.5374 59.7201 -14.275 59.8007 -14.0107 59.89 -13.7555 59.9594 -13.4944 60.056 -13.2451 60.0994 -12.9891 60.2115 -12.74 60.2321 -12.4925 60.3513 -12.2459 60.3651 -12.0059 60.4718 -11.7641 60.4917 -11.5255 60.5775 -11.2918 60.5994 -11.0583 60.6859 -10.83 60.7082 -10.6028 60.7971 -10.3763 60.8069 -10.1559 60.8788 -9.93377 60.9062 -9.71627 60.9482 -9.50235 60.9868 -9.28914 61.041 -9.079 61.0647 -8.87155 61.104 -8.66522 61.139 -8.4634 61.1703 -8.26267 61.2136 -8.06507 61.2363 -7.86929 61.2717 -7.67406 61.2927 -7.4822 61.3302 -7.29189 61.3509 -7.10456 61.3854 -6.91901 61.4012 -6.73522 61.436 -6.55366 61.4542 -6.37396 61.4812 -6.19597 61.5034 -6.02013 61.5254 -5.84571 61.5485 -5.67342 61.5685 -5.50226 61.591 -5.33347 61.61 -5.16586 61.6306 -5.00001 61.6501 -4.83546 61.6694 -4.67236 61.6887 -4.51115 61.706 -4.35079 61.7258 -4.19225 61.7419 -4.03432 61.7606 -3.87649 61.7566 -3.70948 61.6051 -3.53511 61.164 -3.35898 60.5843 -3.18137 59.9243 -3.00279 59.201 -2.8237 58.4258 -2.6445 57.6068 -2.46542 56.7499 -2.28689 55.8601 -2.10932 54.9424 -1.93301 54.001 -1.75826 53.0403 -1.58536 52.0649 -1.41455 51.0795 -1.24607 50.0893 -1.08012 49.0997 -0.91687 48.1165 -0.756479 47.1456 -0.599057 46.193 -0.444681 45.2647 -0.29339 44.3663 -0.145178 43.5031 42.68 -17.6864 44.6117 -18.2476 44.9383 -18.7774 45.2682 -19.2664 45.595 -19.7181 45.9281 -20.1336 46.2612 -20.5135 46.6058 -20.8628 46.9542 -21.1942 47.3072 -21.5037 47.6443 -21.7694 47.9789 -21.9947 48.3234 -22.2009 48.6861 -22.3941 49.034 -22.5624 49.3744 -22.7 49.707 -22.7948 50.0379 -22.854 50.3685 -22.9038 50.697 -22.9301 50.9965 -22.9358 51.301 -22.9301 51.6029 -22.9068 51.9048 -22.8693 52.2154 -22.8134 52.5252 -22.7266 52.8149 -22.6137 53.0554 -22.5044 53.3238 -22.4006 53.6087 -22.2698 53.8862 -22.1042 54.1648 -21.938 54.3673 -21.7697 54.586 -21.6041 54.8903 -21.4166 55.0897 -21.2079 55.307 -21.0145 55.5408 -20.7972 55.7298 -20.5841 55.947 -20.3523 56.1798 -20.1361 56.3111 -19.8838 56.5541 -19.654 56.6923 -19.4154 56.9241 -19.1675 57.0563 -18.9245 57.2383 -18.6643 57.3851 -18.4155 57.5819 -18.1629 57.6657 -17.9038 57.8951 -17.6438 57.9548 -17.3895 58.1534 -17.1306 58.2513 -16.8696 58.3887 -16.6128 58.5172 -16.3463 58.6308 -16.0915 58.7598 -15.8286 58.8688 -15.574 58.9748 -15.3184 59.0795 -15.0596 59.1743 -14.8032 59.277 -14.5477 59.3736 -14.2947 59.4671 -14.0446 59.5507 -13.7932 59.6386 -13.5474 59.7136 -13.2973 59.8059 -13.0585 59.8606 -12.8111 59.964 -12.573 59.994 -12.3329 60.1112 -12.0953 60.1275 -11.8633 60.2398 -11.629 60.2574 -11.3989 60.3474 -11.1716 60.3722 -10.9444 60.4586 -10.7234 60.4872 -10.5009 60.5746 -10.2807 60.5868 -10.065 60.6631 -9.8475 60.6887 -9.63566 60.7364 -9.42581 60.777 -9.21687 60.8321 -9.01078 60.8586 -8.80678 60.9 -8.60413 60.9363 -8.40539 60.9716 -8.20703 61.0152 -8.01198 61.0413 -7.81851 61.0782 -7.62623 61.1004 -7.43679 61.1407 -7.24792 61.162 -7.0626 61.2001 -6.87868 61.2173 -6.69609 61.2534 -6.51587 61.274 -6.33717 61.3025 -6.16008 61.3263 -5.98503 61.3504 -5.81126 61.3747 -5.63941 61.3967 -5.46875 61.4203 -5.30005 61.4413 -5.13265 61.4632 -4.9667 61.4842 -4.80203 61.5048 -4.6387 61.5253 -4.47697 61.5442 -4.31611 61.5649 -4.1569 61.5827 -3.99829 61.602 -3.83955 61.5978 -3.67183 61.4374 -3.49779 60.9899 -3.32235 60.4089 -3.14574 59.7477 -2.96838 59.0236 -2.79075 58.2482 -2.61308 57.4292 -2.43566 56.5725 -2.25894 55.6834 -2.08326 54.7667 -1.90892 53.8266 -1.7362 52.8676 -1.56537 51.894 -1.39666 50.9108 -1.23029 49.9229 -1.06644 48.9358 -0.905275 47.9553 -0.746939 46.9873 -0.591534 46.0376 -0.439129 45.1123 -0.289752 44.2169 -0.143392 43.3568 42.5366 -16.371 45.1673 -16.9022 45.4696 -17.4143 45.7802 -17.8973 46.078 -18.3448 46.3757 -18.7566 46.673 -19.1357 46.9849 -19.4859 47.3044 -19.8085 47.6298 -20.1155 47.9513 -20.3993 48.2628 -20.6411 48.5652 -20.8486 48.8936 -21.0446 49.23 -21.2252 49.5551 -21.3776 49.8594 -21.5011 50.1613 -21.5848 50.4522 -21.6478 50.7601 -21.7055 51.0542 -21.7387 51.3342 -21.7515 51.6157 -21.7548 51.9081 -21.7451 52.2057 -21.7052 52.4853 -21.6386 52.7483 -21.568 52.9848 -21.492 53.2477 -21.4057 53.5225 -21.2976 53.7781 -21.1606 54.0279 -21.0298 54.2365 -20.895 54.4512 -20.7396 54.7349 -20.5771 54.9271 -20.4032 55.1331 -20.2357 55.3733 -20.038 55.5321 -19.8575 55.7665 -19.6456 55.9679 -19.4544 56.1199 -19.2292 56.3289 -19.0346 56.4976 -18.7989 56.6885 -18.5883 56.8457 -18.3495 56.9995 -18.1246 57.1602 -17.8931 57.3504 -17.6604 57.4331 -17.4196 57.6543 -17.18 57.7151 -16.9469 57.9203 -16.6999 58.0044 -16.4642 58.153 -16.217 58.27 -15.9741 58.3879 -15.7305 58.5162 -15.4833 58.6216 -15.2449 58.7364 -15.0018 58.8364 -14.7602 58.9327 -14.5174 59.0342 -14.2739 59.1301 -14.0335 59.2266 -13.7954 59.3127 -13.5569 59.4 -13.321 59.4777 -13.0819 59.5668 -12.8522 59.6309 -12.6149 59.7267 -12.3874 59.7665 -12.1552 59.879 -11.9279 59.9002 -11.7025 60.0145 -11.476 60.0309 -11.2536 60.125 -11.0332 60.1518 -10.8132 60.2386 -10.5992 60.2732 -10.3812 60.3566 -10.1684 60.374 -9.95701 60.4517 -9.74481 60.4765 -9.53857 60.5302 -9.33314 60.5715 -9.12871 60.6277 -8.92696 60.6568 -8.72696 60.7 -8.52822 60.7376 -8.33284 60.7762 -8.13739 60.8198 -7.94474 60.8486 -7.75388 60.8873 -7.56498 60.9115 -7.37789 60.9536 -7.19119 60.9753 -7.008 61.0169 -6.82591 61.0352 -6.64496 61.0725 -6.46635 61.0953 -6.28886 61.125 -6.11304 61.1505 -5.93896 61.1763 -5.76604 61.2018 -5.59491 61.2255 -5.42485 61.2502 -5.2565 61.273 -5.08941 61.2961 -4.92355 61.3183 -4.75896 61.3402 -4.59555 61.3619 -4.43354 61.3822 -4.27243 61.4038 -4.11278 61.4231 -3.95379 61.443 -3.79448 61.4385 -3.62654 61.2694 -3.45342 60.8168 -3.27918 60.2347 -3.10396 59.5724 -2.92822 58.8479 -2.75235 58.0723 -2.57653 57.2533 -2.40111 56.397 -2.22655 55.5089 -2.05311 54.5933 -1.88108 53.6546 -1.71074 52.6972 -1.54232 51.7256 -1.37604 50.7445 -1.2121 49.759 -1.05068 48.7744 -0.891921 47.7966 -0.735952 46.8313 -0.582868 45.8846 -0.432728 44.9622 -0.285555 44.0698 -0.14133 43.2125 42.3953 -15.1567 45.7017 -15.6616 45.9745 -16.1476 46.2662 -16.6166 46.547 -17.0592 46.8183 -17.4696 47.0834 -17.844 47.3593 -18.1926 47.6529 -18.5153 47.9525 -18.8133 48.2494 -19.0974 48.5469 -19.3578 48.8256 -19.5771 49.1129 -19.7692 49.4221 -19.9548 49.7407 -20.1206 50.0252 -20.2597 50.3005 -20.3733 50.5657 -20.4539 50.8407 -20.5234 51.1236 -20.5838 51.3947 -20.6221 51.6541 -20.64 51.926 -20.6482 52.2139 -20.6367 52.4738 -20.5888 52.7004 -20.5472 52.9432 -20.5036 53.2041 -20.4306 53.4495 -20.3415 53.689 -20.2381 53.9245 -20.1366 54.135 -20.027 54.3416 -19.8885 54.5964 -19.7535 54.7921 -19.6046 54.9842 -19.4533 55.222 -19.2886 55.3674 -19.127 55.6049 -18.942 55.783 -18.7661 55.9439 -18.5803 56.1432 -18.3968 56.3141 -18.1801 56.4717 -17.9955 56.6611 -17.7729 56.7769 -17.58 56.9674 -17.3568 57.1271 -17.1469 57.2232 -16.926 57.4335 -16.7074 57.4964 -16.4889 57.7019 -16.2596 57.775 -16.043 57.9364 -15.809 58.036 -15.5878 58.1667 -15.3536 58.282 -15.1258 58.3938 -14.8986 58.5092 -14.6697 58.6074 -14.4441 58.7071 -14.2143 58.8044 -13.984 58.8999 -13.755 58.9976 -13.5282 59.0859 -13.302 59.1738 -13.0767 59.2525 -12.849 59.3391 -12.6278 59.4097 -12.4015 59.5004 -12.1844 59.5494 -11.96 59.6547 -11.743 59.6832 -11.5242 59.7957 -11.3059 59.8126 -11.0913 59.9104 -10.8778 59.9383 -10.6654 60.0261 -10.458 60.0658 -10.2454 60.1441 -10.0399 60.1685 -9.83305 60.2449 -9.62718 60.2706 -9.42625 60.3292 -9.22498 60.3703 -9.02555 60.4282 -8.82817 60.4594 -8.63265 60.5045 -8.43811 60.543 -8.24639 60.5845 -8.05425 60.6276 -7.86432 60.6587 -7.67633 60.6993 -7.49089 60.7261 -7.30618 60.7689 -7.12233 60.7914 -6.94122 60.8358 -6.76125 60.8552 -6.58232 60.8936 -6.40544 60.9185 -6.22951 60.9491 -6.05521 60.9762 -5.88228 61.0034 -5.71052 61.03 -5.54031 61.0553 -5.37107 61.081 -5.20335 61.1052 -5.03673 61.1295 -4.87125 61.1528 -4.70692 61.1758 -4.54361 61.1986 -4.38153 61.2202 -4.22026 61.2426 -4.06022 61.263 -3.90077 61.2836 -3.741 61.2788 -3.57381 61.1023 -3.40209 60.6451 -3.22937 60.0619 -3.0559 59.399 -2.88221 58.6742 -2.70844 57.8985 -2.53481 57.0797 -2.36182 56.2241 -2.18976 55.3368 -2.01893 54.4224 -1.84958 53.4853 -1.68196 52.5296 -1.51629 51.5599 -1.35278 50.581 -1.1916 49.5978 -1.03291 48.6157 -0.876866 47.6405 -0.723564 46.678 -0.573094 45.7341 -0.425507 44.8146 -0.280817 43.9251 -0.139 43.0707 42.2563 -14.026 46.2196 -14.5135 46.462 -14.9759 46.7286 -15.4236 46.9947 -15.8536 47.2482 -16.2607 47.4905 -16.6338 47.7325 -16.9755 47.9946 -17.2971 48.2741 -17.5944 48.5467 -17.8702 48.8227 -18.1339 49.0892 -18.3724 49.3514 -18.5715 49.6212 -18.7519 49.9212 -18.9279 50.2012 -19.0805 50.4531 -19.2113 50.6965 -19.317 50.9464 -19.398 51.2046 -19.4693 51.466 -19.5318 51.7165 -19.5717 51.9659 -19.5854 52.2276 -19.5961 52.4845 -19.585 52.6894 -19.5577 52.9159 -19.5338 53.1802 -19.4809 53.3966 -19.4117 53.6198 -19.3353 53.848 -19.2585 54.0582 -19.1677 54.2508 -19.0494 54.4782 -18.9434 54.686 -18.8156 54.8564 -18.6763 55.0827 -18.551 55.2421 -18.3958 55.4497 -18.2405 55.6277 -18.0838 55.7872 -17.9241 55.9835 -17.7478 56.1378 -17.5623 56.2862 -17.3921 56.4909 -17.1953 56.5802 -17.0238 56.7958 -16.8129 56.9162 -16.6251 57.0354 -16.4229 57.2313 -16.2227 57.2963 -16.0178 57.497 -15.8103 57.5675 -15.6049 57.731 -15.3917 57.8227 -15.1843 57.9593 -14.9649 58.0627 -14.754 58.1829 -14.537 58.2922 -14.3235 58.3939 -14.1109 58.4946 -13.8949 58.5883 -13.6782 58.6831 -13.4602 58.7796 -13.2441 58.8698 -13.0292 58.9588 -12.8151 59.0385 -12.5992 59.1232 -12.387 59.1974 -12.1715 59.2849 -11.9639 59.3418 -11.7481 59.4388 -11.5406 59.4757 -11.3289 59.584 -11.1194 59.6031 -10.9133 59.7043 -10.7063 59.7313 -10.502 59.8219 -10.3002 59.864 -10.0947 59.9386 -9.89606 59.9698 -9.69445 60.0432 -9.49564 60.0718 -9.2996 60.1332 -9.10273 60.1734 -8.90859 60.2341 -8.71554 60.2664 -8.52463 60.3136 -8.33457 60.353 -8.14681 60.3968 -7.95832 60.4391 -7.7716 60.472 -7.58679 60.5145 -7.40459 60.5439 -7.22259 60.5869 -7.04192 60.6108 -6.8629 60.6568 -6.68539 60.6777 -6.50867 60.7168 -6.33368 60.7435 -6.15966 60.7751 -5.98701 60.8036 -5.81554 60.8319 -5.64524 60.8597 -5.47618 60.8863 -5.30809 60.9129 -5.14128 60.9384 -4.97542 60.9637 -4.81064 60.988 -4.64684 61.012 -4.48395 61.0357 -4.32213 61.0583 -4.16101 61.0814 -4.00093 61.103 -3.84141 61.124 -3.68147 61.1188 -3.5149 60.9357 -3.34447 60.4747 -3.17343 59.8909 -3.00208 59.2276 -2.8307 58.5028 -2.6593 57.7271 -2.48827 56.9087 -2.31802 56.0538 -2.14882 55.1676 -1.98092 54.2545 -1.81458 53.3189 -1.65001 52.365 -1.48741 51.3973 -1.32697 50.4205 -1.16886 49.4397 -1.01322 48.4601 -0.860179 47.4875 -0.709833 46.5277 -0.562259 45.5865 -0.417499 44.6698 -0.27556 43.7831 -0.136414 42.9316 42.1199 -12.9678 46.719 -13.4424 46.9366 -13.8892 47.1753 -14.3164 47.4219 -14.7275 47.6594 -15.1226 47.8855 -15.4944 48.1043 -15.8327 48.3329 -16.1471 48.5885 -16.445 48.8446 -16.7199 49.0976 -16.9766 49.3459 -17.2213 49.5962 -17.439 49.8389 -17.6207 50.1029 -17.7938 50.3742 -17.96 50.6193 -18.1036 50.8402 -18.2259 51.0687 -18.3265 51.3052 -18.4088 51.5483 -18.4796 51.7873 -18.5412 52.0275 -18.5705 52.2569 -18.5858 52.4998 -18.6118 52.7153 -18.6084 52.9125 -18.5866 53.1584 -18.5545 53.3646 -18.512 53.5772 -18.4546 53.7907 -18.3939 53.9975 -18.325 54.1818 -18.2264 54.3796 -18.1415 54.6011 -18.0386 54.7536 -17.912 54.9561 -17.8182 55.1483 -17.6726 55.304 -17.5392 55.4943 -17.4098 55.6578 -17.2577 55.8314 -17.0988 55.979 -16.9517 56.1391 -16.7855 56.3247 -16.6143 56.4089 -16.4526 56.6342 -16.2679 56.7315 -16.0955 56.8629 -15.9105 57.0462 -15.7264 57.1122 -15.5372 57.3078 -15.3496 57.3799 -15.1545 57.5359 -14.9633 57.6315 -14.7652 57.7612 -14.5656 57.8631 -14.3667 57.984 -14.1626 58.0881 -13.9631 58.1944 -13.7621 58.2935 -13.5604 58.3866 -13.3569 58.4796 -13.1507 58.5734 -12.9455 58.6645 -12.7411 58.7545 -12.5383 58.8356 -12.3342 58.9191 -12.1313 58.9945 -11.9258 59.0795 -11.7267 59.1427 -11.5205 59.2326 -11.3225 59.2777 -11.1182 59.3797 -10.9182 59.403 -10.7199 59.506 -10.5195 59.5309 -10.3235 59.6258 -10.1271 59.6676 -9.9294 59.7409 -9.73691 59.7773 -9.54147 59.8478 -9.34976 59.8801 -9.15822 59.9417 -8.96691 59.9821 -8.77787 60.0451 -8.58926 60.0778 -8.40313 60.1274 -8.21765 60.1675 -8.0339 60.213 -7.84953 60.2548 -7.66647 60.2889 -7.48514 60.3332 -7.30602 60.3648 -7.12724 60.4081 -6.94977 60.4333 -6.77309 60.4801 -6.59838 60.503 -6.42401 60.5425 -6.25119 60.5706 -6.07932 60.6032 -5.90853 60.6328 -5.73883 60.6622 -5.57017 60.6911 -5.40252 60.7186 -5.23582 60.7462 -5.07014 60.7728 -4.90533 60.7988 -4.74148 60.8242 -4.57847 60.849 -4.41628 60.8736 -4.25501 60.8971 -4.09438 60.9208 -3.93467 60.9432 -3.77551 60.9649 -3.61575 60.9591 -3.44966 60.7696 -3.28098 60.306 -3.11205 59.722 -2.94312 59.0587 -2.77419 58.3339 -2.60541 57.5584 -2.43728 56.7405 -2.27005 55.8866 -2.10399 55.0015 -1.93933 54.0899 -1.77629 53.1559 -1.61506 52.2038 -1.45583 51.2381 -1.29877 50.2635 -1.14402 49.2849 -0.991703 48.3078 -0.841943 47.3377 -0.694826 46.3805 -0.550414 45.4421 -0.408742 44.5282 -0.26981 43.6442 -0.133584 42.7954 41.9863 -11.9791 47.1958 -12.4381 47.3956 -12.8739 47.6112 -13.2862 47.8342 -13.6793 48.0524 -14.0558 48.2621 -14.4184 48.4669 -14.7567 48.6711 -15.0664 48.8983 -15.3591 49.1372 -15.6359 49.3744 -15.8914 49.6013 -16.1294 49.8342 -16.3558 50.0653 -16.5534 50.3005 -16.7236 50.5443 -16.8908 50.7865 -17.0489 50.9983 -17.1835 51.2034 -17.2968 51.4185 -17.3964 51.6479 -17.4762 51.8671 -17.5435 52.0947 -17.5971 52.3105 -17.6232 52.526 -17.6602 52.7523 -17.6885 52.9408 -17.6724 53.1423 -17.6519 53.3441 -17.6364 53.5617 -17.5995 53.7537 -17.5457 53.9437 -17.5002 54.1363 -17.427 54.3064 -17.3489 54.523 -17.2739 54.6786 -17.1667 54.849 -17.0848 55.0664 -16.9616 55.1808 -16.8452 55.3779 -16.7391 55.5517 -16.594 55.6863 -16.4606 55.8455 -16.3399 56.0184 -16.177 56.1618 -16.0337 56.2656 -15.8783 56.4788 -15.7221 56.5752 -15.5594 56.7003 -15.3914 56.8782 -15.224 56.9449 -15.0509 57.1347 -14.8781 57.2072 -14.6982 57.356 -14.5233 57.4566 -14.3372 57.5752 -14.156 57.6819 -13.9675 57.7954 -13.7786 57.8993 -13.5906 58.0064 -13.4014 58.1043 -13.2132 58.1984 -13.0227 58.2892 -12.8294 58.3801 -12.6354 58.4705 -12.4413 58.5604 -12.2489 58.6433 -12.056 58.7261 -11.8626 58.8012 -11.6668 58.8837 -11.4754 58.9513 -11.2795 59.0367 -11.0909 59.0892 -10.8943 59.183 -10.7038 59.2126 -10.5121 59.3143 -10.3193 59.3381 -10.1308 59.4373 -9.9406 59.4774 -9.75076 59.5511 -9.5639 59.5904 -9.37481 59.6587 -9.18955 59.6948 -9.00277 59.7549 -8.81784 59.7972 -8.63364 59.8609 -8.44973 59.8939 -8.26853 59.9462 -8.08763 59.9866 -7.90789 60.0333 -7.72793 60.0748 -7.54897 60.11 -7.37143 60.1557 -7.19535 60.1887 -7.02023 60.233 -6.84592 60.259 -6.67204 60.3062 -6.50026 60.3312 -6.32843 60.3706 -6.15811 60.4003 -5.98853 60.4336 -5.81982 60.4641 -5.65215 60.4945 -5.48527 60.5242 -5.31929 60.5526 -5.15414 60.5811 -4.9898 60.6084 -4.82627 60.6353 -4.66352 60.6614 -4.50151 60.687 -4.34021 60.7122 -4.17966 60.7365 -4.01968 60.7608 -3.86045 60.784 -3.7017 60.8061 -3.54251 60.7999 -3.37815 60.6052 -3.21161 60.1395 -3.04508 59.5554 -2.87879 58.8924 -2.71257 58.1677 -2.54683 57.3926 -2.38191 56.5756 -2.21803 55.7227 -2.05543 54.8389 -1.89431 53.9288 -1.73487 52.9964 -1.57728 52.0462 -1.42171 51.0825 -1.2683 50.1101 -1.11717 49.1338 -0.968454 48.1591 -0.82224 47.1915 -0.678607 46.2369 -0.537609 45.3011 -0.399272 44.3898 -0.263589 43.5085 -0.13052 42.6623 41.8558 -11.0581 47.6502 -11.4969 47.8344 -11.9196 48.0339 -12.3211 48.2356 -12.701 48.4324 -13.0605 48.6216 -13.407 48.8134 -13.7405 49.0047 -14.0507 49.2085 -14.3387 49.4252 -14.6111 49.6469 -14.8685 49.8587 -15.1044 50.0701 -15.3249 50.2859 -15.5343 50.5099 -15.7168 50.7268 -15.8798 50.9495 -16.0411 51.1597 -16.1901 51.3523 -16.3117 51.5401 -16.4183 51.7544 -16.5157 51.9645 -16.5882 52.1673 -16.654 52.3762 -16.7052 52.5773 -16.7428 52.7899 -16.7848 52.9827 -16.7914 53.149 -16.7816 53.3343 -16.7812 53.5614 -16.7669 53.7393 -16.7239 53.9007 -16.6905 54.1029 -16.6492 54.265 -16.5728 54.4467 -16.5188 54.6246 -16.4414 54.7716 -16.3561 54.981 -16.2608 55.0856 -16.1657 55.2829 -16.0687 55.4546 -15.9437 55.5613 -15.8304 55.7323 -15.7221 55.91 -15.5727 56.0125 -15.4519 56.1449 -15.3098 56.3367 -15.1716 56.4371 -15.0217 56.5503 -14.8701 56.7266 -14.7192 56.794 -14.5606 56.9761 -14.4006 57.0472 -14.2382 57.1936 -14.0743 57.2927 -13.9046 57.4054 -13.737 57.5143 -13.5612 57.6196 -13.3869 57.725 -13.2096 57.8291 -13.0326 57.9273 -12.8562 58.0219 -12.6783 58.1114 -12.498 58.1998 -12.3155 58.2879 -12.1317 58.3766 -11.9489 58.4605 -11.7661 58.5433 -11.5828 58.6179 -11.3969 58.6977 -11.2133 58.7677 -11.0272 58.8506 -10.8475 58.9095 -10.6593 58.9948 -10.4777 59.031 -10.292 59.1286 -10.1074 59.1535 -9.92654 59.2564 -9.74246 59.2934 -9.56035 59.3689 -9.37903 59.4091 -9.19616 59.4759 -9.0167 59.5154 -8.83545 59.5736 -8.65687 59.6186 -8.4774 59.6814 -8.29862 59.7151 -8.12249 59.7701 -7.94574 59.8099 -7.77038 59.8579 -7.59483 59.8993 -7.42024 59.9354 -7.24674 59.9822 -7.07383 60.0158 -6.90256 60.0618 -6.73145 60.0879 -6.56079 60.1355 -6.39191 60.1623 -6.22288 60.2016 -6.05524 60.2327 -5.88806 60.2664 -5.72173 60.2977 -5.55622 60.329 -5.39131 60.3593 -5.22726 60.3886 -5.06382 60.4176 -4.90109 60.4457 -4.73906 60.4733 -4.57764 60.5 -4.41688 60.5263 -4.25667 60.552 -4.0971 60.577 -3.93799 60.6017 -3.77951 60.6255 -3.62145 60.6481 -3.46313 60.6416 -3.30061 60.4427 -3.13638 59.9752 -2.97271 59.3918 -2.80925 58.7289 -2.6461 58.0045 -2.48375 57.2303 -2.32237 56.4142 -2.16216 55.5625 -2.00333 54.6801 -1.84605 53.7715 -1.6905 52.8409 -1.53683 51.8926 -1.38518 50.9309 -1.23568 49.9606 -1.08844 48.9865 -0.943571 48.0142 -0.801147 47.0491 -0.661239 46.097 -0.523891 45.1638 -0.389122 44.255 -0.256918 43.3763 -0.127233 42.5326 41.7285 -10.2 48.0852 -10.6189 48.2534 -11.0237 48.4386 -11.4125 48.6244 -11.7827 48.8026 -12.1306 48.9695 -12.4614 49.1442 -12.7836 49.3269 -13.0922 49.5171 -13.3803 49.7133 -13.647 49.9136 -13.8991 50.1108 -14.1381 50.3091 -14.3562 50.504 -14.5628 50.7165 -14.7592 50.9231 -14.9296 51.1199 -15.0845 51.3146 -15.238 51.5058 -15.3742 51.6763 -15.4821 51.8623 -15.5868 52.0691 -15.6776 52.2581 -15.7482 52.4468 -15.8162 52.6453 -15.8655 52.8392 -15.9053 53.0225 -15.9351 53.1787 -15.946 53.3452 -15.9514 53.5667 -15.9505 53.7384 -15.9319 53.8821 -15.901 54.0721 -15.882 54.246 -15.8207 54.3854 -15.7739 54.5778 -15.7284 54.726 -15.641 54.8936 -15.5703 55.0149 -15.4987 55.2112 -15.4014 55.3574 -15.3045 55.4644 -15.2047 55.6325 -15.1014 55.8067 -14.9811 55.8921 -14.8697 56.0335 -14.744 56.2111 -14.6157 56.3088 -14.486 56.4206 -14.3491 56.5897 -14.2124 56.6572 -14.0671 56.8308 -13.9206 56.9006 -13.7734 57.0464 -13.6203 57.1396 -13.4673 57.2524 -13.3103 57.3573 -13.1494 57.4588 -12.9875 57.563 -12.8217 57.6633 -12.6563 57.7619 -12.4904 57.8561 -12.3242 57.9452 -12.156 58.0316 -11.9851 58.117 -11.8118 58.2034 -11.6383 58.287 -11.465 58.37 -11.2919 58.4448 -11.1164 58.5223 -10.9413 58.5925 -10.7641 58.6734 -10.5919 58.7373 -10.4131 58.816 -10.2398 58.8577 -10.0605 58.9493 -9.88486 58.9778 -9.71126 59.0828 -9.53358 59.1157 -9.3586 59.194 -9.18295 59.2335 -9.00626 59.2992 -8.83277 59.3419 -8.65752 59.3984 -8.48514 59.4462 -8.31065 59.5069 -8.13718 59.5416 -7.96626 59.5992 -7.79329 59.6369 -7.62264 59.6873 -7.45156 59.7282 -7.28142 59.7652 -7.11216 59.8129 -6.94264 59.8463 -6.77518 59.8943 -6.60747 59.9202 -6.44023 59.9683 -6.27429 59.9964 -6.1083 60.0356 -5.94344 60.0678 -5.77887 60.1019 -5.6151 60.134 -5.45191 60.1658 -5.28921 60.1966 -5.12728 60.2266 -4.96576 60.2561 -4.80488 60.2848 -4.64453 60.3129 -4.48469 60.3402 -4.32539 60.367 -4.16652 60.3932 -4.00818 60.4186 -3.85021 60.4438 -3.69273 60.4681 -3.53563 60.491 -3.37824 60.4842 -3.2173 60.2818 -3.05607 59.814 -2.89541 59.2311 -2.73499 58.5685 -2.57529 57.8448 -2.41658 57.0716 -2.259 56.2567 -2.10274 55.4062 -1.94794 54.5253 -1.79477 53.6183 -1.64337 52.6895 -1.49387 51.7431 -1.3464 50.7834 -1.20105 49.8152 -1.05794 48.8434 -0.917146 47.8734 -0.778741 46.9107 -0.642782 45.961 -0.509307 45.0303 -0.378325 44.1241 -0.249819 43.2478 -0.123741 42.4065 41.6048 -9.39663 48.5023 -9.79976 48.6565 -10.1869 48.8258 -10.5588 48.9963 -10.9173 49.1611 -11.2579 49.3101 -11.5778 49.4642 -11.8871 49.6361 -12.1879 49.8179 -12.4747 50.0001 -12.7406 50.1795 -12.9846 50.3548 -13.2199 50.5444 -13.4443 50.7283 -13.6481 50.9204 -13.8437 51.1187 -14.0259 51.302 -14.1824 51.4712 -14.3287 51.6521 -14.4756 51.8232 -14.5969 51.9837 -14.6976 52.1697 -14.8017 52.3622 -14.8866 52.5317 -14.9569 52.7156 -15.0194 52.9017 -15.0641 53.0671 -15.1042 53.2188 -15.1365 53.3775 -15.1518 53.5821 -15.1535 53.7401 -15.1603 53.8889 -15.1401 54.0519 -15.1229 54.2288 -15.0921 54.3546 -15.0492 54.5349 -15.0196 54.6965 -14.9445 54.8185 -14.8935 54.964 -14.8368 55.1544 -14.7446 55.2651 -14.6724 55.3922 -14.5866 55.5467 -14.4856 55.7057 -14.3958 55.8024 -14.2929 55.9306 -14.1793 56.0974 -14.0597 56.1892 -13.9512 56.3121 -13.8268 56.4653 -13.7034 56.5338 -13.5712 56.6986 -13.4386 56.7681 -13.3035 56.9113 -13.1632 56.9993 -13.0237 57.1129 -12.8777 57.2114 -12.7313 57.3123 -12.5804 57.4122 -12.4269 57.5098 -12.2721 57.6071 -12.1162 57.7002 -11.9604 57.7894 -11.8033 57.8744 -11.6437 57.9574 -11.4811 58.0408 -11.3171 58.123 -11.1528 58.2057 -10.9893 58.2813 -10.8243 58.3573 -10.6583 58.4265 -10.4896 58.5047 -10.324 58.5717 -10.1547 58.6467 -9.98983 58.6928 -9.81782 58.7773 -9.65159 58.8116 -9.48399 58.9152 -9.31358 58.9453 -9.14545 59.0258 -8.97541 59.0634 -8.8052 59.129 -8.63791 59.1746 -8.46871 59.2292 -8.30228 59.2798 -8.13349 59.3381 -7.96544 59.3736 -7.79937 59.4331 -7.63075 59.4683 -7.4648 59.5213 -7.29822 59.5616 -7.13264 59.5996 -6.96766 59.6479 -6.8019 59.6805 -6.63814 59.7305 -6.47412 59.7561 -6.31036 59.8045 -6.14755 59.8336 -5.9848 59.8729 -5.82282 59.9058 -5.6611 59.9402 -5.50004 59.9729 -5.33932 60.0051 -5.17908 60.0363 -5.01937 60.0669 -4.86 60.0967 -4.70115 60.126 -4.54264 60.1544 -4.38459 60.1821 -4.22691 60.2093 -4.0696 60.2358 -3.91267 60.2617 -3.75603 60.2871 -3.59974 60.3118 -3.44373 60.3349 -3.28761 60.3281 -3.12908 60.1232 -2.97084 59.6557 -2.81319 59.0734 -2.65623 58.4115 -2.5003 57.6889 -2.34552 56.9168 -2.19203 56.1032 -2.03997 55.2542 -1.88946 54.3748 -1.74065 53.4695 -1.59365 52.5425 -1.44856 51.598 -1.30549 50.6404 -1.16453 49.6743 -1.02576 48.7047 -0.889259 47.7369 -0.755089 46.7765 -0.623294 45.8293 -0.493903 44.9009 -0.366916 43.9971 -0.242313 43.1232 -0.120039 42.2842 41.4847 -8.64359 48.8987 -9.03173 49.0447 -9.40594 49.2 -9.76129 49.3516 -10.1033 49.5031 -10.4353 49.6421 -10.7493 49.7781 -11.0484 49.9353 -11.3385 50.108 -11.6177 50.2793 -11.8829 50.4447 -12.1252 50.597 -12.3511 50.7703 -12.5765 50.9537 -12.7868 51.1308 -12.9764 51.3083 -13.1579 51.4834 -13.3244 51.6377 -13.4694 51.7971 -13.613 51.9669 -13.7509 52.1216 -13.858 52.2769 -13.9592 52.4635 -14.0601 52.6325 -14.1358 52.7913 -14.2018 52.9678 -14.2608 53.1261 -14.3078 53.2659 -14.3486 53.4183 -14.379 53.6126 -14.3875 53.7486 -14.4041 53.9054 -14.4062 54.054 -14.3842 54.2068 -14.379 54.3494 -14.3514 54.5073 -14.3195 54.6646 -14.2682 54.7672 -14.2312 54.927 -14.1794 55.1026 -14.1049 55.1906 -14.0475 55.3348 -13.9738 55.4729 -13.8846 55.6165 -13.8091 55.7268 -13.7198 55.8413 -13.6204 55.9981 -13.5119 56.0807 -13.4176 56.2178 -13.3043 56.352 -13.1937 56.4232 -13.0751 56.58 -12.955 56.6479 -12.8311 56.7874 -12.7042 56.8724 -12.5752 56.9839 -12.4417 57.0779 -12.3072 57.1778 -12.1677 57.2727 -12.0261 57.3682 -11.8816 57.4625 -11.7357 57.5543 -11.5893 57.6431 -11.4422 57.7272 -11.2933 57.8086 -11.1415 57.889 -10.9874 57.9689 -10.8318 58.0501 -10.6769 58.1264 -10.5213 58.2016 -10.3646 58.2698 -10.2047 58.3447 -10.0458 58.4128 -9.8854 58.4863 -9.7288 58.5362 -9.56478 58.6133 -9.40719 58.654 -9.24508 58.7531 -9.08241 58.7826 -8.92132 58.8647 -8.75684 58.899 -8.59408 58.9662 -8.43236 59.0129 -8.26923 59.066 -8.10825 59.1188 -7.94567 59.1755 -7.7835 59.2114 -7.6217 59.2713 -7.45834 59.3049 -7.29689 59.3599 -7.13493 59.3996 -6.974 59.4387 -6.8132 59.4871 -6.65166 59.5189 -6.49151 59.5704 -6.33144 59.5961 -6.17118 59.6443 -6.01178 59.6742 -5.8524 59.7135 -5.69346 59.7469 -5.53481 59.7815 -5.37655 59.8146 -5.2185 59.8471 -5.0609 59.8787 -4.90356 59.9096 -4.74652 59.9397 -4.58986 59.9693 -4.43339 59.998 -4.27731 60.026 -4.12145 60.0534 -3.9659 60.0803 -3.81059 60.1064 -3.6555 60.132 -3.50066 60.1569 -3.34608 60.1804 -3.19169 60.1737 -3.03615 59.9677 -2.88083 59.5004 -2.72648 58.9191 -2.57332 58.2584 -2.42141 57.537 -2.27083 56.7662 -2.12168 55.954 -1.97407 55.1065 -1.8281 54.2288 -1.68387 53.3253 -1.54147 52.4001 -1.40101 51.4575 -1.26256 50.5019 -1.12619 49.5379 -0.991975 48.5705 -0.859979 47.6049 -0.73025 46.6468 -0.602824 45.7018 -0.477719 44.7758 -0.35493 43.8743 -0.234426 43.0027 -0.116148 42.166 41.3686 -7.94119 49.2732 -8.31064 49.4141 -8.67332 49.5627 -9.0179 49.6962 -9.34269 49.8279 -9.66038 49.9597 -9.96878 50.0865 -10.2616 50.2281 -10.5424 50.3888 -10.8111 50.5479 -11.069 50.7026 -11.3133 50.8414 -11.5354 50.9923 -11.7517 51.17 -11.9658 51.345 -12.1575 51.4999 -12.3305 51.6564 -12.4999 51.8071 -12.6554 51.9526 -12.7951 52.1066 -12.9337 52.2601 -13.0577 52.4009 -13.1575 52.5632 -13.2607 52.7358 -13.3501 52.8806 -13.4195 53.0372 -13.4867 53.1933 -13.546 53.3252 -13.5891 53.4614 -13.6275 53.651 -13.6548 53.7759 -13.6719 53.9225 -13.6897 54.0718 -13.6775 54.1946 -13.6797 54.3516 -13.6738 54.5013 -13.6381 54.629 -13.6114 54.7404 -13.583 54.8987 -13.5323 55.052 -13.4836 55.1419 -13.4314 55.2826 -13.3685 55.4101 -13.2993 55.5473 -13.2247 55.6522 -13.1507 55.7673 -13.0678 55.9152 -12.9741 55.987 -12.8873 56.1311 -12.7864 56.2511 -12.6867 56.3236 -12.5812 56.4744 -12.4715 56.5383 -12.3599 56.6758 -12.2444 56.7569 -12.1255 56.865 -12.0044 56.9568 -11.8802 57.0536 -11.7523 57.1448 -11.6218 57.2377 -11.4876 57.3284 -11.3518 57.4184 -11.2146 57.5059 -11.0768 57.5894 -10.9379 57.6696 -10.7965 57.7476 -10.6524 57.8249 -10.5057 57.9034 -10.3587 57.9794 -10.2112 58.0541 -10.0633 58.122 -9.91249 58.1939 -9.76096 58.2613 -9.6085 58.3339 -9.45933 58.3871 -9.30366 58.4576 -9.15369 58.504 -8.99708 58.5965 -8.84214 58.6276 -8.68783 58.7104 -8.52946 58.7406 -8.37448 58.8112 -8.2177 58.8561 -8.06083 58.9092 -7.90511 58.9631 -7.7483 59.0187 -7.59216 59.0552 -7.43475 59.1139 -7.27724 59.1474 -7.12004 59.2027 -6.96296 59.2426 -6.80657 59.2823 -6.64996 59.3305 -6.4929 59.3619 -6.33641 59.4139 -6.18042 59.4401 -6.02374 59.4876 -5.86797 59.5184 -5.71199 59.5575 -5.55629 59.5912 -5.40083 59.626 -5.24548 59.6593 -5.0903 59.6919 -4.93544 59.7239 -4.78064 59.7548 -4.62612 59.7852 -4.47177 59.8149 -4.31756 59.8438 -4.1636 59.8721 -4.00978 59.8996 -3.85616 59.9267 -3.70269 59.9529 -3.54938 59.9787 -3.39622 60.0038 -3.2433 60.0274 -3.09088 60.0213 -2.93838 59.8152 -2.78639 59.3485 -2.63577 58.7685 -2.48663 58.1092 -2.33896 57.3893 -2.1928 56.62 -2.0482 55.8094 -1.90524 54.9636 -1.764 54.0876 -1.62455 53.1858 -1.48697 52.2625 -1.35133 51.3219 -1.21769 50.3683 -1.08612 49.4063 -0.956655 48.441 -0.829361 47.4776 -0.704271 46.5217 -0.581411 45.579 -0.460788 44.6552 -0.342388 43.7559 -0.226173 42.8865 -0.112077 42.0519 41.2565 -7.28802 49.6298 -7.63658 49.7627 -7.98336 49.9095 -8.32054 50.0334 -8.6344 50.1417 -8.93443 50.2598 -9.23223 50.3843 -9.52057 50.5165 -9.79473 50.6629 -10.0545 50.8077 -10.301 50.9491 -10.5421 51.0825 -10.768 51.2182 -10.9762 51.3782 -11.182 51.5508 -11.3776 51.6955 -11.5493 51.8281 -11.7128 51.9706 -11.8753 52.1151 -12.0224 52.2537 -12.1532 52.3909 -12.2835 52.5312 -12.3949 52.6747 -12.4936 52.8345 -12.5919 52.979 -12.6728 53.118 -12.7408 53.2614 -12.8091 53.3934 -12.8629 53.5152 -12.9009 53.689 -12.9461 53.8211 -12.9705 53.9469 -12.9882 54.0895 -12.9993 54.2057 -13.001 54.3534 -13.0066 54.5069 -12.9803 54.6026 -12.9699 54.7301 -12.9488 54.8775 -12.9027 55.0058 -12.8764 55.1156 -12.8254 55.2316 -12.7761 55.3607 -12.7234 55.4946 -12.6514 55.5802 -12.5923 55.7082 -12.5198 55.8428 -12.4426 55.9097 -12.3623 56.0508 -12.2743 56.1631 -12.1855 56.2348 -12.0906 56.3795 -11.9906 56.4383 -11.8915 56.5767 -11.7856 56.651 -11.6775 56.757 -11.5673 56.8465 -11.4529 56.9393 -11.3363 57.0281 -11.216 57.1175 -11.0924 57.2048 -10.9664 57.2924 -10.8383 57.3777 -10.7094 57.4605 -10.5796 57.5398 -10.448 57.616 -10.3138 57.6907 -10.1763 57.7659 -10.037 57.8401 -9.89697 57.9141 -9.75714 57.9821 -9.61529 58.0521 -9.47173 58.1177 -9.32651 58.1886 -9.1835 58.244 -9.03601 58.3101 -8.89313 58.3612 -8.74258 58.446 -8.59535 58.4804 -8.44689 58.562 -8.29571 58.5894 -8.14761 58.6631 -7.99575 58.7042 -7.84549 58.7589 -7.69534 58.8129 -7.54342 58.8668 -7.39277 58.9046 -7.2405 58.9616 -7.08876 58.9956 -6.93588 59.0498 -6.78378 59.0905 -6.63181 59.1303 -6.47956 59.1783 -6.32698 59.2093 -6.17431 59.2612 -6.02239 59.2882 -5.86943 59.3346 -5.71735 59.3663 -5.56485 59.405 -5.41252 59.4389 -5.26028 59.4738 -5.108 59.507 -4.95583 59.5397 -4.80377 59.5718 -4.6517 59.6027 -4.4998 59.6333 -4.3479 59.663 -4.19611 59.692 -4.04441 59.7204 -3.89278 59.748 -3.74122 59.7751 -3.58974 59.8014 -3.43833 59.8273 -3.28699 59.8524 -3.13583 59.8763 -2.98543 59.8709 -2.83595 59.6657 -2.68772 59.2002 -2.54117 58.6219 -2.39631 57.9644 -2.2531 57.2461 -2.11156 56.4785 -1.97171 55.6696 -1.83359 54.8255 -1.69727 53.9513 -1.5628 53.0513 -1.43022 52.1299 -1.29959 51.1912 -1.17096 50.2396 -1.04436 49.2797 -0.91985 48.3165 -0.79745 47.3552 -0.677192 46.4014 -0.559088 45.4609 -0.443135 44.5392 -0.329309 43.6421 -0.217564 42.7747 -0.10783 41.9421 41.1487 -6.67854 49.9738 -7.00955 50.0937 -7.33624 50.2361 -7.66188 50.359 -7.97089 50.4508 -8.25764 50.5465 -8.53918 50.6659 -8.82016 50.7975 -9.08959 50.9324 -9.3436 51.0617 -9.58058 51.1861 -9.81171 51.3136 -10.0395 51.446 -10.2486 51.5873 -10.4428 51.7449 -10.6333 51.8861 -10.8099 52.0047 -10.9712 52.1319 -11.1288 52.2727 -11.2833 52.4082 -11.4162 52.5237 -11.5394 52.6544 -11.6625 52.7978 -11.7657 52.9377 -11.8621 53.0754 -11.953 53.2089 -12.0265 53.3349 -12.0948 53.4617 -12.1635 53.5839 -12.2059 53.7314 -12.2556 53.8708 -12.2946 53.9858 -12.3094 54.1043 -12.339 54.2353 -12.3474 54.3618 -12.351 54.5105 -12.3463 54.5979 -12.3418 54.7255 -12.3269 54.8627 -12.2944 54.9733 -12.2783 55.0995 -12.2334 55.1868 -12.1977 55.3249 -12.1531 55.4501 -12.0935 55.5206 -12.0446 55.6593 -11.9791 55.7772 -11.9154 55.846 -11.8442 55.9795 -11.7662 56.0851 -11.6891 56.1577 -11.6041 56.2945 -11.5146 56.3487 -11.4256 56.4878 -11.329 56.5543 -11.2317 56.6597 -11.1308 56.7456 -11.0264 56.8348 -10.9198 56.9216 -10.8094 57.007 -10.696 57.0914 -10.5794 57.1758 -10.4603 57.2586 -10.3398 57.34 -10.2183 57.4183 -10.0955 57.4933 -9.97068 57.5658 -9.84253 57.6377 -9.7117 57.7093 -9.57915 57.7815 -9.44679 57.8498 -9.31325 57.9185 -9.17781 57.9823 -9.03958 58.0504 -8.90213 58.1066 -8.7622 58.1702 -8.62582 58.2248 -8.48227 58.3024 -8.34265 58.3408 -8.19938 58.4187 -8.05593 58.4459 -7.91391 58.5211 -7.76715 58.5575 -7.62385 58.6156 -7.47954 58.6686 -7.3322 58.7195 -7.18636 58.7588 -7.03984 58.8151 -6.89329 58.8491 -6.74523 58.9017 -6.59791 58.9432 -6.45039 58.9828 -6.30261 59.0305 -6.15443 59.0611 -6.00579 59.1126 -5.85788 59.1402 -5.70882 59.1856 -5.5604 59.2179 -5.41145 59.2561 -5.26259 59.29 -5.11363 59.3249 -4.96455 59.3579 -4.81548 59.3907 -4.66632 59.4226 -4.51712 59.4535 -4.36792 59.4841 -4.21862 59.5137 -4.06935 59.5427 -3.92002 59.571 -3.77069 59.5987 -3.62131 59.6257 -3.47193 59.6521 -3.3225 59.6779 -3.17309 59.703 -3.02375 59.7269 -2.87541 59.7225 -2.72905 59.5194 -2.58484 59.056 -2.44264 58.4797 -2.30232 57.8241 -2.16382 57.1076 -2.02712 56.3418 -1.89223 55.5347 -1.75917 54.6924 -1.62797 53.8201 -1.49866 52.922 -1.37128 52.0026 -1.24585 51.0658 -1.12241 50.1162 -1.00099 49.1583 -0.881611 48.1971 -0.764294 47.2379 -0.649054 46.2862 -0.53589 45.3477 -0.424789 44.4281 -0.315717 43.533 -0.208618 42.6676 -0.103416 41.8369 41.0453 -6.10509 50.3058 -6.424 50.4126 -6.733 50.5451 -7.04092 50.667 -7.34346 50.7533 -7.62476 50.8278 -7.89068 50.9318 -8.1586 51.0654 -8.42242 51.1962 -8.67226 51.3116 -8.90385 51.4177 -9.12403 51.5338 -9.34598 51.6679 -9.5593 51.8006 -9.74989 51.9355 -9.92992 52.0661 -10.1064 52.1813 -10.2728 52.2982 -10.4241 52.424 -10.5725 52.5566 -10.7147 52.6659 -10.836 52.7758 -10.9584 52.9202 -11.0735 53.0528 -11.1676 53.1696 -11.2579 53.2991 -11.3413 53.4183 -11.4118 53.5322 -11.4851 53.6572 -11.541 53.7872 -11.5873 53.9171 -11.6358 54.0343 -11.6592 54.1277 -11.6944 54.2705 -11.7154 54.3828 -11.7166 54.5117 -11.7325 54.6139 -11.7299 54.7229 -11.7192 54.852 -11.7057 54.9598 -11.6884 55.0822 -11.6585 55.1569 -11.6322 55.2986 -11.5909 55.4088 -11.5496 55.4793 -11.5047 55.6144 -11.4485 55.7211 -11.3947 55.7922 -11.3337 55.9185 -11.2634 56.0147 -11.1968 56.0911 -11.1215 56.2192 -11.0441 56.2713 -10.9622 56.4059 -10.8756 56.4678 -10.7878 56.5718 -10.6954 56.6533 -10.6006 56.74 -10.5031 56.8241 -10.402 56.9059 -10.2981 56.9875 -10.1905 57.0683 -10.0802 57.1482 -9.96767 57.2275 -9.85378 57.3044 -9.73887 57.3784 -9.62245 57.4494 -9.5034 57.5187 -9.38139 57.5873 -9.25684 57.657 -9.13173 57.7247 -9.0057 57.7925 -8.8781 57.8547 -8.74705 57.9194 -8.61556 57.9751 -8.48267 58.0373 -8.35219 58.0943 -8.21617 58.1664 -8.08364 58.2083 -7.94582 58.2809 -7.80965 58.3098 -7.67331 58.3848 -7.53217 58.4163 -7.39569 58.4791 -7.25701 58.5299 -7.11476 58.5772 -6.97347 58.6175 -6.83272 58.6744 -6.69095 58.7073 -6.54819 58.759 -6.40537 58.8003 -6.26241 58.8399 -6.11909 58.8872 -5.97532 58.9174 -5.83081 58.9681 -5.6869 58.9963 -5.54184 59.0405 -5.39712 59.0732 -5.25182 59.1108 -5.10651 59.1447 -4.96091 59.1793 -4.81515 59.2122 -4.66925 59.2448 -4.5231 59.2765 -4.37687 59.3073 -4.23048 59.3377 -4.0839 59.3672 -3.93723 59.396 -3.79039 59.4242 -3.64346 59.4517 -3.49636 59.4786 -3.34918 59.5049 -3.20184 59.5305 -3.05444 59.5556 -2.90701 59.5795 -2.7608 59.5763 -2.61781 59.3764 -2.47778 58.916 -2.34015 58.3421 -2.20463 57.6885 -2.07109 56.9741 -1.93948 56.2102 -1.80979 55.405 -1.682 54.5646 -1.55613 53.6942 -1.43219 52.7981 -1.3102 51.8806 -1.19017 50.9458 -1.07212 49.9981 -0.956065 49.0422 -0.842006 48.083 -0.729956 47.1258 -0.619914 46.1762 -0.511867 45.2397 -0.405791 44.322 -0.30164 43.4288 -0.199352 42.5654 -0.0988434 41.7364 40.9464 -5.56465 50.6223 -5.87231 50.7203 -6.16978 50.8426 -6.46012 50.9573 -6.74923 51.0424 -7.02747 51.1061 -7.28463 51.1889 -7.5369 51.3176 -7.7912 51.4505 -8.03639 51.5568 -8.26485 51.6461 -8.47752 51.7465 -8.68882 51.8792 -8.90104 52.0128 -9.09492 52.1294 -9.26944 52.2407 -9.43881 52.3506 -9.60769 52.4671 -9.76116 52.5775 -9.89797 52.6934 -10.0408 52.8087 -10.1725 52.9076 -10.2891 53.0367 -10.4079 53.1716 -10.5082 53.2699 -10.5942 53.3851 -10.6822 53.5063 -10.7627 53.6128 -10.8323 53.7268 -10.8991 53.8541 -10.9473 53.9653 -10.9957 54.0827 -11.0352 54.1672 -11.0713 54.3067 -11.1007 54.4121 -11.1092 54.5202 -11.1339 54.6386 -11.1359 54.725 -11.1314 54.8474 -11.1324 54.9608 -11.1113 55.0611 -11.0998 55.1454 -11.0786 55.2773 -11.0423 55.3725 -11.0161 55.4531 -10.9749 55.5733 -10.9285 55.6747 -10.8834 55.7471 -10.8311 55.8662 -10.7691 55.9528 -10.7119 56.0339 -10.6436 56.1509 -10.5787 56.2064 -10.5025 56.3296 -10.4265 56.3918 -10.3466 56.4919 -10.2627 56.5694 -10.1767 56.654 -10.0874 56.7348 -9.99507 56.8136 -9.89983 56.8922 -9.801 56.9694 -9.69913 57.0464 -9.59445 57.1229 -9.48787 57.1978 -9.38007 57.2706 -9.2711 57.3404 -9.16029 57.4079 -9.04687 57.4739 -8.93051 57.5406 -8.81261 57.6068 -8.69347 57.6734 -8.57322 57.7344 -8.44967 57.7958 -8.32495 57.8504 -8.19897 57.9113 -8.07422 57.9696 -7.94545 58.0376 -7.81924 58.0821 -7.68746 58.1491 -7.558 58.1803 -7.4267 58.2535 -7.29209 58.2817 -7.16167 58.3487 -7.02799 58.3962 -6.89158 58.4408 -6.75523 58.4811 -6.61965 58.5388 -6.4827 58.5704 -6.34528 58.6215 -6.20694 58.662 -6.06855 58.7015 -5.92962 58.7483 -5.79032 58.7781 -5.64995 58.8277 -5.51009 58.8565 -5.36907 58.8995 -5.22813 58.9322 -5.08658 58.9692 -4.94488 59.003 -4.80272 59.0371 -4.66036 59.0698 -4.5177 59.1021 -4.37469 59.1335 -4.2315 59.1641 -4.08799 59.1942 -3.94425 59.2234 -3.80026 59.2521 -3.65601 59.2799 -3.51156 59.3073 -3.36687 59.3339 -3.22195 59.36 -3.07681 59.3854 -2.93149 59.4103 -2.78605 59.4341 -2.64206 59.4323 -2.50259 59.2369 -2.36687 58.7803 -2.23398 58.2092 -2.10346 57.558 -1.97511 56.8457 -1.84882 56.0839 -1.72454 55.2807 -1.60224 54.4423 -1.48191 53.5739 -1.36354 52.6797 -1.24714 51.7642 -1.1327 50.8314 -1.02022 49.8857 -0.909706 48.9317 -0.801145 47.9745 -0.694533 47.0192 -0.589856 46.0715 -0.487089 45.1369 -0.386195 44.2211 -0.28712 43.3298 -0.189793 42.468 -0.0941257 41.6408 40.8523 -5.05882 50.9219 -5.35125 51.0127 -5.63934 51.1307 -5.91858 51.2365 -6.19113 51.315 -6.46105 51.376 -6.71491 51.4428 -6.95513 51.5579 -7.19651 51.6919 -7.43453 51.7948 -7.65964 51.8713 -7.86805 51.9549 -8.06932 52.0805 -8.27411 52.2176 -8.46956 52.3249 -8.6451 52.4162 -8.80822 52.5137 -8.97174 52.6306 -9.1307 52.7364 -9.26523 52.8279 -9.39776 52.9412 -9.53886 53.0487 -9.65714 53.155 -9.76787 53.2823 -9.87608 53.3781 -9.96501 53.474 -10.0517 53.593 -10.1402 53.7013 -10.2105 53.7971 -10.2788 53.9224 -10.3357 54.0223 -10.3826 54.1296 -10.4327 54.2173 -10.4735 54.3475 -10.5039 54.4425 -10.5258 54.5421 -10.5503 54.6631 -10.5583 54.733 -10.5659 54.855 -10.572 54.9669 -10.5542 55.0434 -10.5559 55.1471 -10.5369 55.2583 -10.511 55.3466 -10.4917 55.4338 -10.4584 55.5399 -10.4193 55.6356 -10.3832 55.711 -10.3371 55.8201 -10.2851 55.9008 -10.2363 55.9852 -10.1737 56.0883 -10.119 56.1517 -10.0491 56.2597 -9.9828 56.3255 -9.91 56.4191 -9.83453 56.494 -9.75643 56.5759 -9.67487 56.6532 -9.59071 56.7294 -9.5035 56.805 -9.413 56.8789 -9.31938 56.9528 -9.22255 57.026 -9.12328 57.0985 -9.02229 57.1696 -8.92007 57.2382 -8.81649 57.3043 -8.71085 57.3682 -8.60235 57.4321 -8.49158 57.496 -8.37897 57.5608 -8.26554 57.621 -8.14957 57.6799 -8.03223 57.733 -7.91323 57.7923 -7.79433 57.8507 -7.67235 57.9157 -7.55175 57.9615 -7.4261 58.0235 -7.30293 58.0571 -7.17638 58.1269 -7.04895 58.1543 -6.92361 58.2234 -6.79434 58.267 -6.664 58.3105 -6.53319 58.3503 -6.4021 58.4077 -6.27028 58.4386 -6.13783 58.4891 -6.0042 58.5284 -5.87029 58.5676 -5.73572 58.6137 -5.60092 58.6433 -5.46465 58.6914 -5.32893 58.7207 -5.19188 58.7625 -5.05481 58.7952 -4.91706 58.8315 -4.77901 58.8649 -4.64039 58.8985 -4.50146 58.9309 -4.36209 58.9627 -4.22231 58.9937 -4.08221 59.024 -3.94167 59.0536 -3.80082 59.0826 -3.65959 59.1108 -3.51803 59.1384 -3.37612 59.1654 -3.23389 59.1917 -3.09131 59.2174 -2.94843 59.2425 -2.80522 59.2671 -2.66182 59.2907 -2.52004 59.2905 -2.38412 59.101 -2.25279 58.6489 -2.12472 58.0811 -1.99933 57.4326 -1.87632 56.7227 -1.75551 55.9631 -1.63682 55.162 -1.52019 54.3257 -1.40558 53.4592 -1.29296 52.5671 -1.18232 51.6535 -1.07364 50.7227 -0.966907 49.7789 -0.862095 48.8269 -0.759188 47.8716 -0.658166 46.9182 -0.559 45.9723 -0.461654 45.0395 -0.366081 44.1256 -0.272216 43.2359 -0.17998 42.3758 -0.0892816 41.5501 40.763 -4.58818 51.2086 -4.86282 51.2873 -5.13723 51.4051 -5.4102 51.5095 -5.67108 51.5758 -5.92705 51.6319 -6.17604 51.6918 -6.40983 51.7917 -6.63907 51.9211 -6.86719 52.0229 -7.08702 52.0911 -7.29227 52.1601 -7.48624 52.2745 -7.68144 52.4128 -7.873 52.5164 -8.04929 52.5925 -8.21114 52.6756 -8.36732 52.7868 -8.52603 52.8951 -8.66761 52.9695 -8.79137 53.065 -8.92851 53.1858 -9.05541 53.2819 -9.15972 53.3866 -9.26791 53.4863 -9.36566 53.5717 -9.45228 53.6797 -9.53919 53.7882 -9.61713 53.875 -9.68358 53.9888 -9.74795 54.0866 -9.79952 54.1812 -9.85098 54.2688 -9.89826 54.3948 -9.92962 54.4738 -9.96112 54.5736 -9.9857 54.6877 -9.99926 54.7466 -10.0194 54.8751 -10.0251 54.9726 -10.0189 55.0372 -10.0262 55.1544 -10.0091 55.2412 -9.99633 55.3338 -9.97843 55.4159 -9.95543 55.5169 -9.92206 55.6022 -9.89414 55.6831 -9.85368 55.7797 -9.8115 55.8586 -9.76885 55.9425 -9.71399 56.0334 -9.66613 56.1038 -9.60393 56.1975 -9.54562 56.2672 -9.47978 56.3533 -9.41227 56.4264 -9.34139 56.505 -9.26726 56.5791 -9.19063 56.6528 -9.11091 56.7253 -9.02826 56.7963 -8.94252 56.867 -8.8535 56.937 -8.76163 57.0067 -8.66748 57.0754 -8.57172 57.1425 -8.47461 57.2072 -8.37586 57.2695 -8.27459 57.3308 -8.17072 57.3921 -8.06447 57.4545 -7.95736 57.5139 -7.84859 57.5711 -7.73871 57.6232 -7.62674 57.6803 -7.51371 57.7376 -7.39819 57.8001 -7.28295 57.8462 -7.16312 57.9036 -7.04553 57.9396 -6.92408 58.0055 -6.80392 58.0341 -6.68294 58.1024 -6.55791 58.1419 -6.4335 58.186 -6.3084 58.2252 -6.18147 58.2808 -6.05497 58.3121 -5.92709 58.3612 -5.79843 58.3997 -5.66882 58.438 -5.53868 58.4835 -5.40829 58.5129 -5.27614 58.5593 -5.14459 58.5892 -5.01149 58.6294 -4.87835 58.662 -4.7444 58.6975 -4.61003 58.7306 -4.475 58.7634 -4.33952 58.7954 -4.2035 58.8267 -4.067 58.8572 -3.93003 58.8871 -3.79255 58.9162 -3.65465 58.9447 -3.51625 58.9724 -3.37744 58.9996 -3.23814 59.0261 -3.09844 59.052 -2.95826 59.0772 -2.81768 59.1019 -2.67663 59.126 -2.53528 59.1493 -2.39565 59.1509 -2.26327 58.9686 -2.13634 58.522 -2.01313 57.9579 -1.89293 57.3124 -1.77534 56.6051 -1.66012 55.8479 -1.54715 55.049 -1.43631 54.2149 -1.32756 53.3505 -1.22084 52.4604 -1.1161 51.5488 -1.01332 50.6199 -0.912454 49.6781 -0.813475 48.7279 -0.716348 47.7744 -0.621036 46.8229 -0.527499 45.8788 -0.435689 44.9477 -0.345546 44.0354 -0.256998 43.1474 -0.169961 42.2888 -0.0843346 41.4644 40.6787 -4.14981 51.4889 -4.40994 51.5475 -4.66526 51.6604 -4.92916 51.7734 -5.1855 51.8322 -5.42877 51.8752 -5.66741 51.9304 -5.89615 52.0204 -6.11715 52.1421 -6.33523 52.241 -6.54749 52.3034 -6.74882 52.3615 -6.93755 52.4632 -7.12399 52.5993 -7.30868 52.7011 -7.48133 52.7651 -7.64256 52.8368 -7.79562 52.9399 -7.94854 53.0481 -8.09586 53.1168 -8.21967 53.1888 -8.34424 53.3104 -8.47591 53.4136 -8.58501 53.4958 -8.6871 53.5883 -8.79047 53.6751 -8.8807 53.7699 -8.96191 53.8694 -9.04567 53.9588 -9.11589 54.0591 -9.18118 54.1519 -9.24071 54.2407 -9.29221 54.3203 -9.34157 54.4442 -9.37958 54.5118 -9.41482 54.6088 -9.44201 54.7148 -9.46354 54.7681 -9.48852 54.9001 -9.49393 54.978 -9.50163 55.0449 -9.50953 55.1623 -9.49832 55.2299 -9.49505 55.3306 -9.47928 55.4001 -9.46492 55.5026 -9.43793 55.5752 -9.4159 55.6611 -9.38211 55.7459 -9.34775 55.8242 -9.3103 55.9051 -9.2641 55.9872 -9.2212 56.0609 -9.16731 56.1436 -9.11551 56.2154 -9.05668 56.2944 -8.99639 56.3661 -8.93231 56.441 -8.86524 56.512 -8.79554 56.5831 -8.72282 56.6526 -8.64741 56.7209 -8.56901 56.7886 -8.48748 56.8555 -8.40293 56.9221 -8.31568 56.9882 -8.22635 57.0531 -8.13538 57.1162 -8.04287 57.177 -7.94821 57.2362 -7.85093 57.2948 -7.75094 57.3545 -7.6497 57.4126 -7.5474 57.4688 -7.44444 57.5202 -7.33934 57.5753 -7.23217 57.6305 -7.12265 57.6906 -7.01284 57.7364 -6.89878 57.7896 -6.78624 57.827 -6.67003 57.8893 -6.55664 57.9207 -6.43987 57.9856 -6.31938 58.0215 -6.20063 58.0673 -6.08103 58.1056 -5.95843 58.1581 -5.83699 58.1906 -5.71348 58.2377 -5.5899 58.2761 -5.46449 58.3126 -5.33887 58.3579 -5.21275 58.3868 -5.08482 58.4314 -4.9574 58.4618 -4.82826 58.5002 -4.69907 58.5329 -4.56892 58.5674 -4.43824 58.5999 -4.30685 58.6321 -4.17488 58.6634 -4.04226 58.6941 -3.90909 58.724 -3.77533 58.7533 -3.64097 58.7818 -3.50609 58.8098 -3.37062 58.8369 -3.23464 58.8636 -3.09806 58.8895 -2.96096 58.9149 -2.82329 58.9395 -2.6851 58.9637 -2.54632 58.9873 -2.40709 59.0101 -2.26965 59.0135 -2.14081 58.8398 -2.01832 58.3995 -1.9 57.8396 -1.78501 57.1974 -1.67289 56.493 -1.56334 55.7383 -1.45615 54.9418 -1.3512 54.1099 -1.24838 53.2477 -1.14764 52.3596 -1.0489 51.4501 -0.952102 50.5231 -0.8572 49.5832 -0.764143 48.6349 -0.672881 47.6832 -0.583363 46.7334 -0.495537 45.7909 -0.409341 44.8615 -0.324707 43.9508 -0.241554 43.0642 -0.15979 42.207 -0.0793121 41.384 40.5994 -3.73804 51.7661 -3.9913 51.8007 -4.22788 51.897 -4.4751 52.0206 -4.72807 52.0852 -4.96543 52.1126 -5.19165 52.1567 -5.41172 52.2405 -5.6266 52.357 -5.83733 52.4517 -6.04139 52.5074 -6.23708 52.5572 -6.42125 52.6474 -6.60022 52.7782 -6.77797 52.8789 -6.94477 52.9319 -7.10169 52.9937 -7.25417 53.0923 -7.40213 53.196 -7.54805 53.2627 -7.67604 53.3168 -7.79199 53.4263 -7.91962 53.5412 -8.03755 53.6137 -8.13556 53.6864 -8.238 53.7776 -8.33297 53.8649 -8.41235 53.9488 -8.4947 54.0411 -8.57316 54.1375 -8.63698 54.2157 -8.70017 54.3039 -8.75683 54.3769 -8.80411 54.4914 -8.85058 54.5583 -8.88888 54.6471 -8.91802 54.744 -8.94963 54.7997 -8.97364 54.9241 -8.9811 54.9854 -8.99979 55.0636 -9.006 55.1685 -9.00575 55.2297 -9.00556 55.3304 -8.99593 55.3905 -8.98639 55.493 -8.96718 55.556 -8.94878 55.6427 -8.92273 55.7198 -8.89392 55.7954 -8.86207 55.8732 -8.82359 55.9488 -8.78521 56.0226 -8.73923 56.0977 -8.69302 56.1692 -8.64105 56.2425 -8.58722 56.3123 -8.52957 56.3833 -8.46908 56.4515 -8.40578 56.5198 -8.33956 56.5864 -8.27073 56.652 -8.19901 56.7169 -8.12441 56.7809 -8.0468 56.8445 -7.96631 56.9077 -7.88338 56.9702 -7.79846 57.0313 -7.71187 57.0904 -7.62339 57.1477 -7.53242 57.2039 -7.43856 57.2607 -7.34291 57.317 -7.2463 57.3722 -7.14938 57.4233 -7.05065 57.4765 -6.94929 57.5291 -6.84527 57.5866 -6.74073 57.6319 -6.63276 57.6816 -6.52547 57.7197 -6.41423 57.778 -6.30651 57.813 -6.19428 57.8734 -6.0789 57.9061 -5.96541 57.9538 -5.85087 57.9911 -5.73322 58.0405 -5.61631 58.0737 -5.49717 58.1186 -5.37861 58.1576 -5.25739 58.1913 -5.13631 58.2368 -5.01436 58.2648 -4.89075 58.3077 -4.76737 58.3384 -4.64229 58.3751 -4.51702 58.4076 -4.3907 58.441 -4.26374 58.4729 -4.13603 58.5043 -4.00763 58.535 -3.87848 58.5649 -3.74871 58.5943 -3.61824 58.6228 -3.48711 58.6507 -3.35534 58.678 -3.22291 58.7045 -3.08985 58.7305 -2.95613 58.7558 -2.82178 58.7805 -2.68677 58.8045 -2.55112 58.8281 -2.4148 58.8509 -2.27789 58.8732 -2.14276 58.8783 -2.01752 58.7145 -1.89955 58.2816 -1.78615 57.7262 -1.67641 57.0877 -1.56978 56.3864 -1.4659 55.6344 -1.36452 54.8405 -1.26547 54.0109 -1.16864 53.1508 -1.0739 52.2649 -0.981191 51.3573 -0.89042 50.4323 -0.801521 49.4943 -0.714425 48.5478 -0.629068 47.5978 -0.545386 46.6497 -0.463312 45.7089 -0.382773 44.781 -0.30369 43.8717 -0.225975 42.9865 -0.149528 42.1305 -0.0742437 41.3087 40.5251 -3.34917 52.0374 -3.60142 52.053 -3.82632 52.1219 -4.05215 52.2465 -4.29542 52.3284 -4.53183 52.349 -4.74982 52.3746 -4.95783 52.4485 -5.16428 52.5635 -5.36994 52.6574 -5.56775 52.7052 -5.75648 52.7459 -5.93546 52.8263 -6.10774 52.9505 -6.279 53.0501 -6.44101 53.094 -6.59131 53.144 -6.74072 53.2417 -6.88709 53.3424 -7.02756 53.4032 -7.15678 53.446 -7.27226 53.5418 -7.39308 53.662 -7.51195 53.7326 -7.61044 53.7848 -7.70986 53.877 -7.80787 53.9629 -7.89026 54.0312 -7.96851 54.1194 -8.05103 54.22 -8.11737 54.2821 -8.17815 54.3647 -8.24229 54.4411 -8.2892 54.5383 -8.33935 54.6084 -8.38273 54.6905 -8.41279 54.774 -8.45171 54.8387 -8.47599 54.9484 -8.48851 54.998 -8.51342 55.0885 -8.51881 55.1739 -8.52964 55.2405 -8.52904 55.3298 -8.528 55.3894 -8.52075 55.4858 -8.50953 55.5448 -8.49395 55.6271 -8.47539 55.7013 -8.45094 55.7709 -8.42487 55.8471 -8.3928 55.9167 -8.35909 55.9888 -8.32005 56.0586 -8.279 56.1281 -8.23343 56.1969 -8.18541 56.2643 -8.13377 56.3317 -8.07935 56.3971 -8.02197 56.4624 -7.96177 56.5262 -7.89894 56.5892 -7.8333 56.6513 -7.76494 56.7125 -7.69373 56.7733 -7.61963 56.8336 -7.54291 56.8935 -7.46395 56.9523 -7.38313 57.0096 -7.30052 57.0651 -7.2156 57.119 -7.12778 57.1729 -7.03763 57.2268 -6.94616 57.2807 -6.85445 57.3316 -6.76136 57.3834 -6.6656 57.4333 -6.56673 57.4877 -6.46721 57.5323 -6.36538 57.5798 -6.2638 57.6182 -6.15752 57.6717 -6.05444 57.7099 -5.94685 57.7658 -5.83713 57.7964 -5.72856 57.8452 -5.61849 57.881 -5.50643 57.9284 -5.39371 57.961 -5.27901 58.0038 -5.16521 58.0438 -5.04829 58.0744 -4.93167 58.1202 -4.81384 58.147 -4.69461 58.1885 -4.57518 58.219 -4.45425 58.2542 -4.33288 58.2862 -4.21042 58.3186 -4.08724 58.3497 -3.96323 58.3803 -3.83847 58.4103 -3.71287 58.4393 -3.58656 58.468 -3.45947 58.4957 -3.33166 58.5229 -3.2031 58.5495 -3.07383 58.5752 -2.94381 58.6005 -2.81309 58.625 -2.68163 58.6491 -2.54946 58.6724 -2.41655 58.6952 -2.2829 58.7173 -2.14856 58.7389 -2.01592 58.7457 -1.8943 58.5929 -1.78092 58.1682 -1.67247 57.6177 -1.56797 56.9832 -1.4668 56.2852 -1.36856 55.5362 -1.27296 54.7449 -1.17979 53.9177 -1.0889 53.06 -1.00016 52.1762 -0.913456 51.2706 -0.828696 50.3476 -0.745788 49.4113 -0.664647 48.4666 -0.585192 47.5184 -0.507345 46.5719 -0.431025 45.6326 -0.356147 44.7061 -0.282623 43.7982 -0.210355 42.9142 -0.139237 42.0594 -0.0691598 41.2386 40.456 -2.98344 52.2964 -3.23466 52.3042 -3.45654 52.3438 -3.66374 52.4537 -3.88911 52.5538 -4.12251 52.5824 -4.33847 52.5906 -4.53591 52.6459 -4.72993 52.7575 -4.92918 52.8566 -5.12351 52.8996 -5.30597 52.9283 -5.47848 52.9988 -5.64422 53.1162 -5.80897 53.2149 -5.96764 53.2526 -6.11286 53.2893 -6.25549 53.3844 -6.40034 53.4873 -6.53623 53.5391 -6.66263 53.5724 -6.78133 53.6605 -6.89844 53.7791 -7.00946 53.8436 -7.10932 53.8847 -7.20843 53.9761 -7.30619 54.0606 -7.39168 54.1167 -7.46969 54.1974 -7.54887 54.2992 -7.62086 54.3541 -7.67898 54.4228 -7.74628 54.5084 -7.79768 54.5897 -7.84613 54.6569 -7.89448 54.7389 -7.92682 54.8064 -7.96878 54.8806 -7.99512 54.9748 -8.01566 55.0185 -8.04246 55.1153 -8.05047 55.1819 -8.0678 55.2578 -8.06766 55.3296 -8.07418 55.396 -8.06922 55.4808 -8.06452 55.5401 -8.05237 55.6149 -8.03976 55.6887 -8.01973 55.7509 -7.9989 55.8263 -7.97237 55.8902 -7.9434 55.9599 -7.91029 56.0255 -7.87421 56.092 -7.83443 56.1571 -7.79177 56.2216 -7.7457 56.2856 -7.69686 56.3483 -7.64499 56.4106 -7.59037 56.4715 -7.53307 56.5319 -7.47303 56.5912 -7.41035 56.6498 -7.34496 56.7079 -7.27677 56.7654 -7.20591 56.8226 -7.13269 56.8791 -7.05746 56.9343 -6.98042 56.988 -6.9013 57.0398 -6.81941 57.091 -6.73482 57.1422 -6.64836 57.1942 -6.56132 57.2445 -6.47315 57.2953 -6.38266 57.3428 -6.2888 57.3939 -6.19416 57.4377 -6.09807 57.4837 -6.00221 57.5223 -5.90126 57.5708 -5.80227 57.611 -5.69936 57.6629 -5.5954 57.6924 -5.49159 57.7414 -5.38547 57.7749 -5.27912 57.8221 -5.17067 57.8526 -5.06048 57.8936 -4.95106 57.9343 -4.83864 57.962 -4.72629 58.0079 -4.61262 58.0333 -4.49774 58.0736 -4.38221 58.1034 -4.26546 58.1375 -4.14797 58.1687 -4.02941 58.2 -3.91004 58.2304 -3.78976 58.2601 -3.66867 58.2892 -3.54669 58.3174 -3.42389 58.3452 -3.30026 58.3721 -3.17585 58.3985 -3.05059 58.4242 -2.92458 58.4492 -2.79773 58.4737 -2.67012 58.4974 -2.54171 58.5207 -2.41253 58.5432 -2.28252 58.5652 -2.15174 58.5865 -2.02018 58.6073 -1.89018 58.6157 -1.77212 58.4748 -1.66331 58.0594 -1.55976 57.5142 -1.46044 56.8839 -1.36467 56.1894 -1.27199 55.4435 -1.18208 54.655 -1.09472 53.8303 -1.0097 52.9749 -0.926879 52.0934 -0.846125 51.1899 -0.767318 50.2688 -0.690348 49.3344 -0.615114 48.3914 -0.541519 47.4448 -0.469468 46.4998 -0.398868 45.562 -0.329622 44.6369 -0.26163 43.7302 -0.194785 42.8474 -0.128977 41.9936 -0.0640898 41.1737 40.3919 -2.64315 52.5378 -2.88826 52.5493 -3.11167 52.5672 -3.3085 52.6505 -3.51276 52.7581 -3.73582 52.8054 -3.95196 52.8067 -4.14439 52.8383 -4.32495 52.938 -4.51338 53.0451 -4.70462 53.0908 -4.88331 53.107 -5.04884 53.1644 -5.20748 53.2749 -5.36557 53.373 -5.521 53.4081 -5.664 53.4323 -5.79924 53.5196 -5.93909 53.6271 -6.07247 53.6725 -6.19566 53.6956 -6.31534 53.7802 -6.43043 53.8942 -6.53363 53.9468 -6.63288 53.984 -6.73402 54.0772 -6.82896 54.1556 -6.91371 54.2014 -6.9953 54.279 -7.0699 54.3738 -7.14453 54.4287 -7.20503 54.4833 -7.2697 54.573 -7.32719 54.6472 -7.37339 54.7031 -7.42383 54.7893 -7.4612 54.8438 -7.50307 54.9225 -7.53127 55.003 -7.56034 55.0476 -7.58656 55.1415 -7.59967 55.195 -7.61949 55.2777 -7.62285 55.333 -7.63368 55.4068 -7.63237 55.4795 -7.63207 55.5398 -7.62431 55.6072 -7.61584 55.6802 -7.60074 55.7358 -7.58421 55.8098 -7.56273 55.8687 -7.53833 55.9355 -7.51037 55.9976 -7.47907 56.0607 -7.44448 56.1225 -7.40682 56.184 -7.36591 56.2447 -7.3222 56.3045 -7.27549 56.3638 -7.22606 56.4221 -7.17392 56.4798 -7.11911 56.5364 -7.06169 56.5924 -7.00164 56.6479 -6.93891 56.7027 -6.87352 56.7572 -6.8057 56.8113 -6.73578 56.8644 -6.66399 56.9163 -6.59032 56.9662 -6.51415 57.0148 -6.4352 57.0633 -6.35386 57.1129 -6.27138 57.162 -6.18766 57.2115 -6.10206 57.2572 -6.01319 57.305 -5.92341 57.3479 -5.83253 57.3928 -5.74179 57.4316 -5.64663 57.4756 -5.55146 57.5158 -5.4534 57.5648 -5.35489 57.5939 -5.25583 57.6424 -5.15352 57.6726 -5.05235 57.7209 -4.94841 57.7486 -4.84286 57.7881 -4.73746 57.8289 -4.6297 57.8542 -4.52141 57.8996 -4.41197 57.9239 -4.30133 57.963 -4.18973 57.9919 -4.07712 58.0248 -3.96351 58.0551 -3.84886 58.0854 -3.73333 58.1148 -3.61681 58.1435 -3.49941 58.1718 -3.38109 58.199 -3.26186 58.2259 -3.14174 58.252 -3.0208 58.2775 -2.89893 58.3023 -2.77626 58.3266 -2.65268 58.3501 -2.5283 58.373 -2.40305 58.3954 -2.27698 58.4171 -2.15003 58.4382 -2.02226 58.4587 -1.89365 58.4787 -1.7664 58.4884 -1.65174 58.3602 -1.54742 57.9551 -1.44868 57.4154 -1.35443 56.7896 -1.26394 56.0989 -1.17671 55.3563 -1.09239 54.5706 -1.01072 53.7487 -0.931469 52.8957 -0.854471 52.0164 -0.77957 51.115 -0.706625 50.1958 -0.635508 49.2633 -0.566101 48.322 -0.49829 47.377 -0.431965 46.4335 -0.367019 45.497 -0.303343 44.5732 -0.240826 43.6677 -0.179352 42.7859 -0.118804 41.9331 -0.059062 41.114 40.3328 -2.33008 52.7604 -2.56283 52.782 -2.78623 52.7906 -2.98071 52.845 -3.16756 52.9449 -3.37351 53.0114 -3.58614 53.0194 -3.77852 53.0307 -3.94933 53.1089 -4.12335 53.2191 -4.30826 53.2757 -4.48534 53.2841 -4.64527 53.3243 -4.79601 53.4256 -4.94714 53.5241 -5.09862 53.5595 -5.24069 53.5743 -5.37076 53.6497 -5.50253 53.7589 -5.63339 53.8033 -5.75527 53.8175 -5.87162 53.8965 -5.98391 54.0065 -6.08512 54.048 -6.18273 54.0816 -6.28398 54.1785 -6.37602 54.2476 -6.45771 54.2831 -6.5417 54.3629 -6.61561 54.4477 -6.68761 54.5007 -6.75415 54.5498 -6.81489 54.6338 -6.87519 54.7075 -6.92301 54.7509 -6.97182 54.8381 -7.01584 54.8878 -7.0556 54.9622 -7.08606 55.0334 -7.12055 55.0821 -7.14602 55.167 -7.16435 55.2134 -7.18517 55.2985 -7.19461 55.3424 -7.20675 55.4189 -7.21006 55.4828 -7.21261 55.5423 -7.2096 55.6042 -7.20403 55.6746 -7.19398 55.7258 -7.18095 55.7967 -7.16415 55.8519 -7.14395 55.9153 -7.12055 55.9742 -7.09375 56.0339 -7.06384 56.0926 -7.03082 56.151 -6.99468 56.2085 -6.95572 56.2656 -6.91381 56.3219 -6.8692 56.3775 -6.82189 56.4325 -6.77199 56.4865 -6.71949 56.5399 -6.66439 56.5928 -6.60672 56.645 -6.54642 56.6969 -6.48364 56.7485 -6.41869 56.7995 -6.35179 56.8494 -6.28316 56.8975 -6.21237 56.944 -6.13898 56.9899 -6.06291 57.0368 -5.98509 57.0842 -5.90565 57.1321 -5.82468 57.1763 -5.74077 57.2211 -5.65585 57.263 -5.5698 57.3067 -5.4834 57.3451 -5.394 57.3862 -5.30285 57.4246 -5.20961 57.4716 -5.11611 57.5004 -5.0217 57.5479 -4.92353 57.5744 -4.82676 57.6241 -4.72741 57.6493 -4.62659 57.6873 -4.52499 57.7273 -4.42196 57.7512 -4.31758 57.7952 -4.21242 57.8187 -4.1059 57.8565 -3.99829 57.8842 -3.88973 57.9163 -3.78003 57.9454 -3.66929 57.9746 -3.5576 58.0031 -3.44486 58.0308 -3.33118 58.0581 -3.21655 58.0844 -3.10094 58.1103 -2.9844 58.1354 -2.86698 58.1601 -2.74858 58.1839 -2.62934 58.2073 -2.50915 58.2299 -2.38809 58.252 -2.26613 58.2735 -2.14329 58.2943 -2.01955 58.3145 -1.89492 58.3341 -1.76942 58.3532 -1.64501 58.364 -1.53359 58.2487 -1.43367 57.8551 -1.33962 57.3214 -1.25033 56.7003 -1.16501 56.0136 -1.08312 55.2744 -1.00427 54.4918 -0.928165 53.6725 -0.854567 52.8221 -0.783273 51.9451 -0.714108 51.0458 -0.646913 50.1286 -0.58154 49.1979 -0.517854 48.2583 -0.455725 47.3148 -0.395028 46.3728 -0.335643 45.4376 -0.277448 44.515 -0.220321 43.6105 -0.164137 42.7297 -0.108772 41.8777 -0.0541027 41.0593 40.2787 -2.04334 52.9668 -2.26008 52.9988 -2.4782 53.0087 -2.67381 53.0406 -2.85062 53.1217 -3.03771 53.1985 -3.24027 53.2219 -3.43311 53.2236 -3.60002 53.2758 -3.76 53.3791 -3.93377 53.4495 -4.10872 53.4591 -4.26573 53.4813 -4.40878 53.5687 -4.55224 53.6676 -4.69908 53.7064 -4.83968 53.7149 -4.96687 53.7769 -5.09045 53.8825 -5.21711 53.93 -5.33864 53.939 -5.45046 54.0084 -5.55804 54.1141 -5.6607 54.1506 -5.75806 54.1789 -5.85494 54.2753 -5.94543 54.3381 -6.02611 54.3638 -6.10842 54.4453 -6.18408 54.5234 -6.25189 54.5685 -6.32277 54.6207 -6.38252 54.6935 -6.44091 54.7659 -6.49476 54.8048 -6.53962 54.883 -6.58873 54.9369 -6.62682 55.0003 -6.66031 55.0669 -6.69581 55.1176 -6.72139 55.1926 -6.74549 55.2375 -6.76572 55.3187 -6.7819 55.3586 -6.79429 55.4313 -6.80204 55.4906 -6.80689 55.5472 -6.80816 55.6054 -6.80503 55.6715 -6.79953 55.7203 -6.78959 55.7868 -6.77697 55.8393 -6.76058 55.8989 -6.74126 55.9549 -6.71857 56.0112 -6.69289 56.0669 -6.66413 56.1222 -6.63237 56.1768 -6.59776 56.231 -6.5603 56.2845 -6.52016 56.3374 -6.47733 56.3896 -6.43197 56.4411 -6.38406 56.492 -6.33359 56.5423 -6.2806 56.592 -6.22504 56.6414 -6.16696 56.6904 -6.10666 56.7392 -6.04432 56.787 -5.98029 56.8335 -5.91442 56.8781 -5.84628 56.9218 -5.77544 56.966 -5.7024 57.0112 -5.6273 57.057 -5.55076 57.0997 -5.47174 57.1421 -5.39156 57.1828 -5.31011 57.2253 -5.22761 57.2626 -5.14337 57.302 -5.05671 57.338 -4.96804 57.3829 -4.87913 57.4115 -4.78914 57.458 -4.69558 57.4809 -4.60267 57.5312 -4.50776 57.5544 -4.4116 57.5911 -4.31378 57.6295 -4.2154 57.6528 -4.11489 57.6947 -4.01399 57.7178 -3.91149 57.754 -3.80792 57.7807 -3.70333 57.8117 -3.59756 57.8397 -3.49073 57.8678 -3.38288 57.8953 -3.27394 57.9219 -3.16401 57.9482 -3.0531 57.9735 -2.94117 57.9984 -2.82827 58.0225 -2.71443 58.0463 -2.5996 58.0691 -2.48388 58.0916 -2.36718 58.1132 -2.24957 58.1344 -2.13102 58.1549 -2.01156 58.1748 -1.89117 58.1941 -1.76986 58.2128 -1.64763 58.231 -1.52622 58.2426 -1.41791 58.1404 -1.32232 57.7595 -1.23288 57.232 -1.14846 56.6159 -1.06821 55.9334 -0.991544 55.1977 -0.918044 54.4183 -0.847387 53.6019 -0.779311 52.754 -0.713591 51.8793 -0.650031 50.9823 -0.588453 50.067 -0.528694 49.1381 -0.470601 48.2002 -0.414028 47.2583 -0.358837 46.3176 -0.304894 45.3837 -0.252064 44.4622 -0.200216 43.5587 -0.149216 42.6787 -0.0989324 41.8274 -0.0492372 41.0096 40.2295 -1.77997 53.1614 -1.98069 53.1995 -2.18829 53.2163 -2.38354 53.2358 -2.55669 53.2948 -2.72835 53.3702 -2.91591 53.4095 -3.1054 53.413 -3.27243 53.4428 -3.42253 53.5291 -3.58219 53.6091 -3.75164 53.6285 -3.90765 53.6373 -4.04487 53.7059 -4.17998 53.8027 -4.32128 53.8477 -4.45944 53.8531 -4.58451 53.9019 -4.70181 53.9998 -4.82302 54.0512 -4.94324 54.0593 -5.05232 54.1174 -5.15435 54.2161 -5.25706 54.2534 -5.35571 54.2776 -5.44554 54.3652 -5.53496 54.4275 -5.61836 54.4472 -5.69608 54.523 -5.77255 54.5999 -5.83893 54.6349 -5.9094 54.6912 -5.97122 54.7554 -6.02566 54.8203 -6.08528 54.8644 -6.12769 54.9254 -6.17819 54.9874 -6.21711 55.0392 -6.25332 55.1031 -6.28742 55.1517 -6.31415 55.2193 -6.34384 55.2672 -6.36257 55.3375 -6.38394 55.38 -6.39723 55.4446 -6.40841 55.5018 -6.41563 55.5544 -6.42027 55.6101 -6.41965 55.6709 -6.41783 55.7185 -6.41083 55.7798 -6.40181 55.8303 -6.38886 55.8859 -6.37317 55.9392 -6.35419 55.9923 -6.33231 56.0451 -6.3074 56.0973 -6.27962 56.149 -6.249 56.2004 -6.2156 56.2511 -6.17956 56.3013 -6.14087 56.3509 -6.09968 56.3999 -6.056 56.4483 -6.00982 56.4961 -5.96117 56.5434 -5.91003 56.5902 -5.85637 56.6368 -5.80041 56.6832 -5.74235 56.729 -5.68255 56.7737 -5.62111 56.8167 -5.55773 56.8584 -5.49186 56.9001 -5.42356 56.9429 -5.35287 56.9863 -5.28065 57.0275 -5.20635 57.0678 -5.13072 57.1072 -5.05363 57.1482 -4.97505 57.1841 -4.8952 57.2221 -4.81327 57.256 -4.72897 57.2986 -4.64432 57.3268 -4.5584 57.372 -4.46976 57.3922 -4.38051 57.442 -4.28987 57.4637 -4.19813 57.4994 -4.10416 57.5356 -4.01021 57.5589 -3.91359 57.5981 -3.81689 57.6211 -3.71833 57.6554 -3.61882 57.6812 -3.51813 57.711 -3.4163 57.7378 -3.31336 57.7649 -3.20935 57.7913 -3.10425 57.8168 -2.99808 57.842 -2.89093 57.8663 -2.78273 57.8902 -2.67352 57.9133 -2.56334 57.9361 -2.45216 57.9579 -2.34003 57.9795 -2.22693 58.0001 -2.11289 58.0203 -1.99788 58.0399 -1.88193 58.0588 -1.76506 58.0772 -1.64723 58.095 -1.52848 58.1122 -1.41026 58.1244 -1.30499 58.0352 -1.21368 57.6682 -1.12878 57.1471 -1.04915 56.5363 -0.973876 55.8581 -0.902325 55.1262 -0.834053 54.35 -0.768711 53.5365 -0.706016 52.6913 -0.645724 51.8191 -0.58762 50.9242 -0.531509 50.0109 -0.477212 49.0838 -0.42456 48.1476 -0.373394 47.2071 -0.323562 46.2678 -0.274917 45.335 -0.227313 44.4146 -0.180609 43.512 -0.134661 42.6328 -0.0893314 41.7821 -0.0444888 40.9648 40.185 -1.53643 53.3476 -1.72364 53.3867 -1.91794 53.4106 -2.10874 53.4266 -2.28091 53.467 -2.44274 53.532 -2.61442 53.5812 -2.79537 53.594 -2.96266 53.6101 -3.10819 53.6747 -3.25439 53.7553 -3.41421 53.7883 -3.56884 53.792 -3.70298 53.84 -3.83 53.9297 -3.96456 53.9822 -4.09953 53.9881 -4.22224 54.0247 -4.33496 54.1125 -4.45079 54.167 -4.56801 54.1765 -4.67544 54.2249 -4.7733 54.314 -4.87323 54.3533 -4.97243 54.3768 -5.05678 54.4495 -5.14398 54.5147 -5.23122 54.5344 -5.30411 54.5959 -5.37954 54.6753 -5.44787 54.7032 -5.51467 54.758 -5.57872 54.8194 -5.63069 54.8723 -5.69132 54.925 -5.73542 54.9695 -5.78422 55.0362 -5.82575 55.0808 -5.86361 55.141 -5.897 55.1851 -5.92592 55.2482 -5.95793 55.2992 -5.97712 55.3566 -6.00103 55.4039 -6.01621 55.4598 -6.02967 55.5152 -6.03935 55.5641 -6.04648 55.6172 -6.04847 55.6729 -6.04948 55.7195 -6.04532 55.7756 -6.03933 55.8243 -6.0295 55.8761 -6.01701 55.9267 -6.00135 55.9766 -5.98287 56.0266 -5.96145 56.0759 -5.93726 56.1248 -5.91027 56.1734 -5.88058 56.2214 -5.84827 56.269 -5.81338 56.316 -5.77602 56.3626 -5.73622 56.4085 -5.694 56.4539 -5.64937 56.4987 -5.60234 56.5432 -5.55283 56.5873 -5.50099 56.6314 -5.44698 56.6749 -5.39112 56.7178 -5.33368 56.7592 -5.27455 56.7993 -5.21321 56.8388 -5.14945 56.8791 -5.08317 56.92 -5.01518 56.9595 -4.94535 56.9979 -4.87403 57.0359 -4.80107 57.0753 -4.72648 57.1095 -4.6506 57.1462 -4.5732 57.1786 -4.49319 57.2186 -4.41262 57.2463 -4.33044 57.2899 -4.24671 57.3085 -4.16103 57.3563 -4.07465 57.3773 -3.98702 57.4117 -3.89697 57.4455 -3.8072 57.4691 -3.71451 57.5054 -3.62187 57.5284 -3.5272 57.5607 -3.43172 57.5857 -3.3349 57.6142 -3.23698 57.6399 -3.13791 57.6658 -3.03774 57.6911 -2.93647 57.7155 -2.8341 57.7396 -2.73072 57.763 -2.62629 57.7858 -2.52082 57.8079 -2.41435 57.8296 -2.30688 57.8504 -2.19842 57.871 -2.089 57.8907 -1.97861 57.9099 -1.86725 57.9286 -1.75494 57.9465 -1.64172 57.964 -1.52753 57.9808 -1.41241 57.9971 -1.29757 58.0096 -1.19527 57.9329 -1.10817 57.5811 -1.02774 57.0666 -0.95281 56.4614 -0.882395 55.7877 -0.815832 55.0596 -0.752646 54.2868 -0.692468 53.4764 -0.634994 52.6338 -0.579963 51.764 -0.527144 50.8713 -0.476327 49.9601 -0.427318 49.0348 -0.379934 48.1002 -0.334003 47.1612 -0.289361 46.2231 -0.245847 45.2915 -0.203306 44.372 -0.161586 43.4703 -0.120536 42.5917 -0.0800126 41.7416 -0.0398789 40.9246 40.1451 -1.31005 53.5272 -1.48684 53.5635 -1.66788 53.5917 -1.85036 53.6091 -2.02071 53.6374 -2.17727 53.6885 -2.33563 53.7395 -2.50452 53.7629 -2.66911 53.7747 -2.8135 53.8191 -2.94971 53.8915 -3.09746 53.9361 -3.24819 53.9427 -3.38131 53.9731 -3.50178 54.0502 -3.62859 54.1091 -3.75957 54.119 -3.87974 54.1448 -3.98852 54.2213 -4.09964 54.2781 -4.2129 54.2897 -4.31793 54.3299 -4.41346 54.4095 -4.50949 54.4493 -4.60667 54.4739 -4.68974 54.5326 -4.77297 54.598 -4.8614 54.6228 -4.93258 54.667 -5.00476 54.7475 -5.07584 54.7743 -5.13925 54.8214 -5.2032 54.8834 -5.25583 54.925 -5.31286 54.982 -5.36144 55.0181 -5.40723 55.082 -5.45126 55.1248 -5.49028 55.18 -5.52474 55.2195 -5.55616 55.2796 -5.58723 55.3302 -5.60917 55.3786 -5.63356 55.4283 -5.6511 55.4773 -5.66608 55.5302 -5.67805 55.5761 -5.68708 55.6262 -5.69162 55.6774 -5.69482 55.7227 -5.69334 55.7741 -5.68991 55.8208 -5.6829 55.8691 -5.67324 55.917 -5.66056 55.9639 -5.64514 56.0112 -5.62686 56.0576 -5.6059 56.1039 -5.58222 56.1497 -5.55592 56.1951 -5.52705 56.2401 -5.49565 56.2846 -5.46181 56.3287 -5.42559 56.3723 -5.38702 56.4153 -5.34612 56.4578 -5.3029 56.5 -5.25731 56.5417 -5.20937 56.5834 -5.15924 56.6248 -5.10713 56.6657 -5.05338 56.7055 -4.99805 56.7439 -4.9408 56.7815 -4.88125 56.8196 -4.81924 56.858 -4.75537 56.8957 -4.68977 56.9323 -4.62254 56.9686 -4.5535 57.0062 -4.48288 57.0389 -4.41081 57.0742 -4.33757 57.1054 -4.26174 57.1428 -4.18518 57.1697 -4.10655 57.2112 -4.02749 57.2294 -3.94535 57.2742 -3.86315 57.2951 -3.7794 57.328 -3.69333 57.3594 -3.6075 57.3833 -3.51877 57.4166 -3.43005 57.4397 -3.33925 57.4699 -3.24771 57.4941 -3.15473 57.5212 -3.06068 57.5459 -2.96546 57.5706 -2.8691 57.5947 -2.77167 57.6181 -2.6731 57.6411 -2.57349 57.6633 -2.47283 57.6851 -2.37113 57.7062 -2.2684 57.7269 -2.16468 57.7467 -2.05994 57.7663 -1.95424 57.785 -1.84756 57.8033 -1.73993 57.8209 -1.63134 57.838 -1.52183 57.8545 -1.41137 57.8703 -1.3 57.8857 -1.18866 57.8982 -1.08924 57.8334 -1.00625 57.4981 -0.930176 56.9906 -0.859828 56.391 -0.794139 55.722 -0.732412 54.9979 -0.674149 54.2286 -0.618961 53.4212 -0.566528 52.5814 -0.516571 51.7141 -0.468846 50.8236 -0.423129 49.9144 -0.379213 48.9909 -0.336903 48.0579 -0.296015 47.1203 -0.256371 46.1835 -0.217802 45.253 -0.180141 44.3344 -0.143226 43.4334 -0.106901 42.5554 -0.0710144 41.7057 -0.0354266 40.889 40.1097 -1.09955 53.7007 -1.26825 53.7322 -1.4377 53.7611 -1.60981 53.7812 -1.77578 53.8033 -1.92909 53.8418 -2.07795 53.8884 -2.23412 53.9191 -2.39232 53.9329 -2.53601 53.9628 -2.66637 54.0219 -2.8023 54.072 -2.946 54.0864 -3.07825 54.1054 -3.19461 54.1665 -3.31339 54.2278 -3.43918 54.2448 -3.55684 54.2625 -3.66195 54.3264 -3.76853 54.3847 -3.87777 54.399 -3.97945 54.4316 -4.07301 54.5031 -4.16587 54.5422 -4.25877 54.5668 -4.34322 54.6171 -4.42223 54.677 -4.50769 54.7083 -4.58111 54.7405 -4.64861 54.815 -4.72028 54.8459 -4.7827 54.8838 -4.84398 54.9446 -4.89944 54.9804 -4.95154 55.0341 -5.00481 55.0713 -5.04815 55.1253 -5.09289 55.1695 -5.13325 55.2204 -5.1694 55.2557 -5.20254 55.3128 -5.23224 55.3599 -5.2574 55.4037 -5.28147 55.4524 -5.30118 55.497 -5.31738 55.5464 -5.33127 55.59 -5.34189 55.6368 -5.34871 55.6842 -5.35375 55.7277 -5.3547 55.7751 -5.35347 55.8196 -5.34901 55.8646 -5.34187 55.9099 -5.33188 55.9539 -5.3192 55.9985 -5.30378 56.0422 -5.28576 56.0858 -5.26511 56.129 -5.24191 56.1719 -5.2162 56.2144 -5.18803 56.2565 -5.15746 56.2982 -5.12456 56.3394 -5.08939 56.3802 -5.05195 56.4204 -5.01228 56.4603 -4.97036 56.4998 -4.92613 56.5392 -4.87971 56.5784 -4.83121 56.6172 -4.78096 56.6552 -4.72913 56.6921 -4.67556 56.728 -4.61989 56.7639 -4.56193 56.8001 -4.50202 56.8358 -4.44041 56.8707 -4.37706 56.9053 -4.31179 56.941 -4.24507 56.9721 -4.17671 57.0058 -4.10734 57.036 -4.03552 57.071 -3.9629 57.0971 -3.88775 57.1361 -3.81302 57.1547 -3.73449 57.1956 -3.65629 57.2169 -3.5763 57.248 -3.49418 57.2773 -3.41211 57.3012 -3.32732 57.3318 -3.2424 57.3548 -3.15544 57.383 -3.06775 57.4065 -2.97857 57.432 -2.88835 57.4556 -2.79694 57.4792 -2.70437 57.5022 -2.61073 57.5244 -2.51595 57.5463 -2.42011 57.5675 -2.32322 57.5882 -2.22528 57.6082 -2.12631 57.6279 -2.02634 57.6467 -1.92535 57.6653 -1.82339 57.683 -1.72046 57.7003 -1.61658 57.717 -1.51175 57.7331 -1.40601 57.7487 -1.29933 57.7636 -1.19174 57.7781 -1.08397 57.7904 -0.98731 57.7368 -0.908267 57.4191 -0.836427 56.9187 -0.77052 56.3251 -0.7094 55.6609 -0.65234 54.9408 -0.59882 54.175 -0.548433 53.3708 -0.500842 52.5338 -0.455757 51.669 -0.41292 50.7808 -0.372094 49.8736 -0.33306 48.9519 -0.295614 48.0204 -0.25956 47.0842 -0.224709 46.1486 -0.19088 45.2191 -0.157899 44.3014 -0.125594 43.401 -0.0938029 42.5236 -0.0623682 41.6742 -0.0311472 40.8578 40.0785 -0.904742 53.8674 -1.06647 53.8939 -1.22635 53.921 -1.38785 53.9427 -1.54702 53.9625 -1.69685 53.9917 -1.83926 54.0308 -1.98424 54.064 -2.13352 54.0822 -2.27479 54.104 -2.40212 54.1492 -2.5285 54.1984 -2.66313 54.221 -2.79304 54.2353 -2.90733 54.2808 -3.0189 54.3394 -3.13823 54.3641 -3.25321 54.3775 -3.35526 54.4284 -3.4569 54.4864 -3.5622 54.5043 -3.66045 54.5298 -3.75119 54.5938 -3.8418 54.6328 -3.93004 54.6551 -4.0147 54.7017 -4.09136 54.7536 -4.17126 54.7882 -4.24727 54.8165 -4.31156 54.8793 -4.38065 54.915 -4.44397 54.9471 -4.50188 55.0025 -4.55979 55.0383 -4.60911 55.0835 -4.66407 55.1263 -4.70735 55.1686 -4.75088 55.2131 -4.79229 55.2618 -4.82936 55.2927 -4.86367 55.3471 -4.8928 55.3891 -4.9204 55.4313 -4.9443 55.4763 -4.96562 55.5183 -4.983 55.5638 -4.99837 55.6053 -5.01043 55.6489 -5.01919 55.693 -5.02584 55.7344 -5.02893 55.7782 -5.02967 55.8203 -5.02747 55.8624 -5.02258 55.905 -5.01502 55.9464 -5.00482 55.9883 -4.992 56.0294 -4.97666 56.0705 -4.95878 56.1111 -4.93843 56.1515 -4.91563 56.1916 -4.89046 56.2313 -4.86294 56.2707 -4.83314 56.3096 -4.80112 56.3481 -4.76693 56.3862 -4.73057 56.424 -4.69207 56.4613 -4.65133 56.4985 -4.60842 56.5355 -4.56341 56.5722 -4.51653 56.6084 -4.46801 56.6436 -4.41785 56.6778 -4.36575 56.7118 -4.31156 56.7459 -4.25543 56.7796 -4.19757 56.8129 -4.13794 56.8457 -4.07632 56.8793 -4.01337 56.9092 -3.94867 56.9411 -3.88294 56.9703 -3.81493 57.003 -3.74617 57.0283 -3.67453 57.0645 -3.60373 57.0839 -3.52891 57.1208 -3.45451 57.1425 -3.37819 57.1717 -3.29998 57.1991 -3.22153 57.2228 -3.14063 57.2509 -3.05941 57.2736 -2.97625 57.2998 -2.89232 57.3225 -2.80692 57.3466 -2.72046 57.3692 -2.63282 57.3915 -2.54402 57.4134 -2.45413 57.4345 -2.36313 57.4553 -2.27104 57.4754 -2.1779 57.4951 -2.08372 57.514 -1.98849 57.5327 -1.89228 57.5505 -1.79505 57.568 -1.69685 57.5848 -1.59767 57.6012 -1.49756 57.6169 -1.3965 57.6321 -1.29453 57.6468 -1.19164 57.6607 -1.08784 57.6743 -0.983685 57.6863 -0.889684 57.6428 -0.814415 57.3438 -0.746676 56.851 -0.685066 56.2635 -0.628357 55.6042 -0.575792 54.8883 -0.52683 54.1261 -0.481049 53.325 -0.438098 52.4909 -0.397675 51.6286 -0.359509 50.7426 -0.323356 49.8374 -0.288986 48.9175 -0.256183 47.9876 -0.224742 47.0528 -0.194464 46.1183 -0.165161 45.1898 -0.136646 44.2729 -0.108744 43.3731 -0.0812821 42.4961 -0.054101 41.6471 -0.0270545 40.8308 40.0515 -0.725946 54.0269 -0.880915 54.0489 -1.03273 54.0728 -1.18449 54.0945 -1.33548 54.1135 -1.48053 54.1367 -1.618 54.1683 -1.7541 54.2001 -1.89371 54.2218 -2.03022 54.2405 -2.1553 54.2743 -2.27492 54.318 -2.40013 54.3462 -2.52555 54.3607 -2.63847 54.3937 -2.74453 54.4455 -2.85667 54.4763 -2.96829 54.4891 -3.06799 54.5281 -3.16453 54.5829 -3.26558 54.6053 -3.36089 54.6251 -3.44809 54.681 -3.53638 54.7211 -3.62101 54.7397 -3.70317 54.7839 -3.77928 54.8298 -3.85371 54.8626 -3.92928 54.892 -3.99329 54.9433 -4.05825 54.98 -4.12242 55.0113 -4.17837 55.0585 -4.2362 55.0962 -4.28578 55.133 -4.33847 55.179 -4.38354 55.2137 -4.42555 55.2551 -4.46705 55.3033 -4.5039 55.3296 -4.53927 55.3825 -4.56826 55.4181 -4.5972 55.4603 -4.62142 55.5005 -4.64381 55.5407 -4.66234 55.5823 -4.67884 55.6218 -4.69222 55.6623 -4.70259 55.7033 -4.71068 55.7424 -4.71562 55.7831 -4.71811 55.8228 -4.71791 55.8622 -4.71504 55.9021 -4.70965 55.941 -4.70169 55.9803 -4.69123 56.0189 -4.67831 56.0576 -4.66296 56.0958 -4.64522 56.1338 -4.62512 56.1715 -4.60271 56.2089 -4.57802 56.246 -4.55111 56.2827 -4.52204 56.3191 -4.49086 56.355 -4.45758 56.3907 -4.42224 56.4259 -4.38477 56.461 -4.34518 56.4959 -4.30349 56.5305 -4.25988 56.5647 -4.21453 56.5982 -4.16757 56.6308 -4.11881 56.663 -4.06812 56.6952 -4.01555 56.727 -3.96124 56.7586 -3.90516 56.7896 -3.84708 56.8213 -3.78775 56.8498 -3.72664 56.88 -3.6644 56.908 -3.60003 56.9386 -3.53496 56.9632 -3.4669 56.9964 -3.39969 57.0167 -3.32864 57.0498 -3.25786 57.0717 -3.18515 57.099 -3.11075 57.1247 -3.03584 57.1479 -2.95876 57.1738 -2.88116 57.196 -2.80175 57.2204 -2.72151 57.2423 -2.63984 57.2649 -2.55709 57.2864 -2.47317 57.3076 -2.38809 57.3283 -2.30194 57.3484 -2.21466 57.368 -2.12631 57.3871 -2.0369 57.4057 -1.94647 57.4236 -1.85498 57.4412 -1.76252 57.4581 -1.66904 57.4746 -1.5746 57.4904 -1.4792 57.5058 -1.38286 57.5206 -1.28559 57.5348 -1.1874 57.5486 -1.08831 57.5617 -0.988324 57.5744 -0.887827 57.5858 -0.796427 57.5514 -0.724758 57.2722 -0.66101 56.7872 -0.603568 56.2061 -0.551118 55.5517 -0.502879 54.84 -0.458294 54.0815 -0.416924 53.2836 -0.378409 52.4524 -0.342435 51.5926 -0.308724 50.7089 -0.27702 49.8057 -0.247087 48.8876 -0.218699 47.9592 -0.191643 47.0257 -0.165711 46.0924 -0.140706 45.1648 -0.116436 44.2486 -0.0927164 43.3494 -0.0693705 42.4728 -0.0462341 41.6239 -0.023159 40.8077 40.0283 -0.563465 54.1785 -0.711448 54.1969 -0.855994 54.2174 -0.99911 54.2376 -1.14159 54.256 -1.28055 54.2757 -1.41328 54.301 -1.54243 54.3293 -1.673 54.3523 -1.80304 54.3706 -1.92521 54.3965 -2.04013 54.4329 -2.15693 54.4631 -2.27617 54.48 -2.38712 54.5047 -2.48932 54.5477 -2.5944 54.5814 -2.70159 54.5963 -2.79923 54.6258 -2.89116 54.6748 -2.98735 54.7015 -3.08005 54.7178 -3.16376 54.7647 -3.24884 54.8061 -3.33108 54.822 -3.40927 54.8621 -3.48469 54.9052 -3.55541 54.9333 -3.62774 54.9644 -3.69286 55.0084 -3.75424 55.0414 -3.81768 55.0747 -3.87313 55.1139 -3.92866 55.1517 -3.97963 55.184 -4.02869 55.2281 -4.07518 55.2601 -4.11663 55.2965 -4.15715 55.3438 -4.1934 55.3658 -4.22913 55.4182 -4.25842 55.4473 -4.28775 55.4896 -4.31261 55.5253 -4.33563 55.5637 -4.35518 55.6019 -4.37255 55.6392 -4.38706 55.6768 -4.39874 55.715 -4.4081 55.7518 -4.4146 55.7896 -4.41863 55.8269 -4.42016 55.8637 -4.41909 55.901 -4.41562 55.9375 -4.40966 55.9743 -4.40132 56.0106 -4.39059 56.0468 -4.37753 56.0827 -4.36216 56.1184 -4.34451 56.1539 -4.32464 56.189 -4.30257 56.2239 -4.27833 56.2585 -4.25199 56.2927 -4.22361 56.3266 -4.19318 56.3602 -4.16077 56.3935 -4.12631 56.4265 -4.08981 56.4594 -4.05126 56.492 -4.01077 56.5243 -3.96849 56.5559 -3.92458 56.5869 -3.87897 56.6174 -3.83154 56.6478 -3.78231 56.6778 -3.73135 56.7076 -3.67866 56.7369 -3.62401 56.7666 -3.56813 56.794 -3.51049 56.8224 -3.45163 56.8492 -3.39077 56.8777 -3.32921 56.9017 -3.26475 56.9319 -3.20088 56.9528 -3.13358 56.9825 -3.06627 57.0044 -2.99712 57.0298 -2.92641 57.054 -2.85498 57.0764 -2.78163 57.1005 -2.70757 57.1219 -2.63186 57.1447 -2.55523 57.1657 -2.47723 57.1869 -2.39815 57.2074 -2.3179 57.2274 -2.23652 57.2469 -2.15405 57.2659 -2.07048 57.2845 -1.98584 57.3024 -1.90015 57.32 -1.81345 57.3369 -1.7257 57.3535 -1.63699 57.3694 -1.54727 57.3848 -1.4566 57.3997 -1.36497 57.4141 -1.27242 57.428 -1.17895 57.4413 -1.08457 57.4542 -0.989303 57.4664 -0.893144 57.4782 -0.796372 57.489 -0.707572 57.4626 -0.639332 57.2039 -0.579487 56.7274 -0.526092 56.1527 -0.477759 55.5034 -0.433685 54.796 -0.393298 54.0411 -0.356148 53.2465 -0.321864 52.4181 -0.290126 51.5608 -0.260647 50.6794 -0.233166 49.7782 -0.207438 48.8618 -0.183232 47.935 -0.160325 47.0028 -0.138506 46.0706 -0.117566 45.1439 -0.0973096 44.2283 -0.0775451 43.3297 -0.058092 42.4533 -0.0387828 41.6046 -0.0194683 40.7884 40.0089 -0.417449 54.3221 -0.558148 54.3376 -0.695672 54.3549 -0.831019 54.373 -0.965291 54.3902 -1.09733 54.4077 -1.2248 54.4285 -1.34808 54.4526 -1.47076 54.475 -1.59356 54.4934 -1.7116 54.5145 -1.82272 54.544 -1.93265 54.573 -2.04497 54.5923 -2.15277 54.6125 -2.25205 54.6469 -2.35095 54.6803 -2.4528 54.6981 -2.54816 54.7211 -2.63632 54.763 -2.72724 54.7924 -2.81712 54.8077 -2.89792 54.8455 -2.9789 54.8871 -3.05916 54.9022 -3.13355 54.9365 -3.20692 54.9785 -3.27566 55.0021 -3.3439 55.0326 -3.40918 55.0737 -3.46826 55.1005 -3.52937 55.1359 -3.58477 55.1693 -3.63758 55.2045 -3.68913 55.2355 -3.73533 55.2743 -3.78187 55.3067 -3.82301 55.3377 -3.86229 55.3831 -3.89843 55.402 -3.93339 55.4531 -3.96342 55.4774 -3.99248 55.5187 -4.01795 55.5508 -4.04129 55.5871 -4.06162 55.6222 -4.07963 55.6572 -4.09505 55.6922 -4.10776 55.7277 -4.11819 55.7622 -4.12597 55.7974 -4.13133 55.8322 -4.13432 55.8667 -4.13482 55.9015 -4.13303 55.9357 -4.12883 55.9701 -4.12236 56.0041 -4.11359 56.0381 -4.10258 56.0717 -4.08935 56.1052 -4.07393 56.1384 -4.05636 56.1715 -4.03667 56.2042 -4.01488 56.2367 -3.99106 56.2689 -3.96525 56.3008 -3.93745 56.3325 -3.90773 56.3638 -3.87605 56.3949 -3.8424 56.4257 -3.80678 56.4564 -3.76925 56.4867 -3.72991 56.5166 -3.68893 56.5459 -3.64628 56.5748 -3.60192 56.6034 -3.55583 56.6317 -3.50804 56.6598 -3.45857 56.6874 -3.40722 56.7153 -3.35461 56.7414 -3.30031 56.7681 -3.24471 56.7936 -3.18723 56.8202 -3.129 56.8435 -3.0681 56.871 -3.0074 56.8921 -2.94377 56.9188 -2.87981 56.9405 -2.81414 56.9642 -2.74702 56.9869 -2.679 57.0084 -2.60929 57.0308 -2.53871 57.0514 -2.46662 57.0726 -2.39354 57.0926 -2.31916 57.1126 -2.24369 57.1319 -2.16707 57.1508 -2.08933 57.1692 -2.01051 57.1871 -1.93061 57.2046 -1.84966 57.2215 -1.76767 57.238 -1.68467 57.2539 -1.60066 57.2694 -1.51568 57.2844 -1.42972 57.2989 -1.34282 57.3128 -1.25498 57.3263 -1.16623 57.3393 -1.07658 57.3517 -0.986025 57.3636 -0.894613 57.375 -0.802325 57.3859 -0.709352 57.396 -0.623206 57.3764 -0.558216 57.1389 -0.502197 56.6714 -0.452733 56.1032 -0.408374 55.459 -0.368302 54.7559 -0.331933 54.0047 -0.298807 53.2134 -0.268547 52.3878 -0.240826 51.5331 -0.215353 50.6539 -0.191863 49.7547 -0.170104 48.8401 -0.14984 47.9148 -0.130843 46.9838 -0.112894 46.0526 -0.0957812 45.1268 -0.0793011 44.2119 -0.0632583 43.3136 -0.0474681 42.4375 -0.0317621 41.5889 -0.0159899 40.7726 39.9929 -0.287425 54.4577 -0.420702 54.4708 -0.551236 54.4854 -0.679367 54.5011 -0.805966 54.5168 -0.930829 54.5326 -1.05245 54.5501 -1.17021 54.5703 -1.28608 54.5909 -1.40167 54.609 -1.51452 54.6274 -1.62181 54.6513 -1.72615 54.6773 -1.83164 54.6978 -1.93509 54.7159 -2.03158 54.7434 -2.12536 54.774 -2.22146 54.7942 -2.31389 54.8136 -2.399 54.8481 -2.48474 54.8782 -2.57119 54.8942 -2.64969 54.924 -2.72633 54.9638 -2.80419 54.9801 -2.87566 55.0079 -2.94579 55.0487 -3.01325 55.0695 -3.07788 55.0972 -3.14151 55.1373 -3.19937 55.1583 -3.25743 55.1939 -3.31241 55.2243 -3.36292 55.255 -3.41379 55.2864 -3.45824 55.3187 -3.50374 55.3522 -3.5442 55.3781 -3.58257 55.4214 -3.61882 55.4382 -3.65245 55.4868 -3.68315 55.5081 -3.71167 55.5472 -3.73751 55.5766 -3.76096 55.6105 -3.78178 55.643 -3.80025 55.6757 -3.81632 55.7083 -3.82981 55.7412 -3.8411 55.7735 -3.8499 55.8062 -3.85638 55.8387 -3.86059 55.8709 -3.86243 55.9034 -3.86207 55.9354 -3.85942 55.9675 -3.85459 55.9993 -3.84755 56.031 -3.83836 56.0625 -3.82704 56.0939 -3.81362 56.125 -3.79812 56.156 -3.78059 56.1867 -3.76104 56.2171 -3.73952 56.2474 -3.71606 56.2774 -3.69069 56.3071 -3.66344 56.3365 -3.63431 56.3657 -3.60329 56.3947 -3.57039 56.4235 -3.53562 56.452 -3.49908 56.4801 -3.46088 56.5077 -3.42105 56.535 -3.37957 56.5619 -3.33643 56.5886 -3.29163 56.615 -3.24521 56.641 -3.19701 56.6671 -3.14752 56.6919 -3.0964 56.717 -3.04395 56.7411 -2.98972 56.766 -2.93466 56.7884 -2.87723 56.8136 -2.81959 56.8345 -2.7595 56.8588 -2.6988 56.8798 -2.63651 56.9019 -2.57287 56.9232 -2.5082 56.9438 -2.44201 56.9646 -2.37485 56.9842 -2.30629 57.004 -2.2367 57.023 -2.16587 57.0417 -2.09394 57.0599 -2.0209 57.0777 -1.94675 57.095 -1.87154 57.1119 -1.79527 57.1283 -1.71797 57.1442 -1.63965 57.1597 -1.56034 57.1746 -1.48004 57.1891 -1.39878 57.2031 -1.31658 57.2167 -1.23345 57.2297 -1.1494 57.2423 -1.06446 57.2543 -0.978643 57.2659 -0.891949 57.2769 -0.804417 57.2875 -0.716032 57.2975 -0.626927 57.3069 -0.543517 57.293 -0.481569 57.077 -0.429287 56.6191 -0.383621 56.0575 -0.343079 55.4185 -0.306835 54.7196 -0.274293 53.9722 -0.244986 53.1841 -0.218533 52.3614 -0.194604 51.5092 -0.172905 50.6322 -0.153167 49.735 -0.135135 48.822 -0.118569 47.8982 -0.103235 46.9685 -0.0889116 46.0383 -0.0753811 45.1132 -0.0624358 44.1989 -0.0498766 43.3011 -0.0375149 42.4252 -0.0251811 41.5766 -0.0127284 40.7602 39.9801 -0.1728 54.5856 -0.298627 54.5967 -0.422138 54.6089 -0.543337 54.6223 -0.66274 54.6362 -0.780518 54.6504 -0.895889 54.6655 -1.00809 54.6825 -1.11785 54.7006 -1.22669 54.7178 -1.33377 54.7345 -1.43679 54.7543 -1.5363 54.7768 -1.63556 54.797 -1.7339 54.8143 -1.8272 54.8367 -1.91669 54.8635 -2.00714 54.8847 -2.09589 54.9023 -2.17824 54.9304 -2.25927 54.9592 -2.34165 54.9765 -2.41803 55.0004 -2.49068 55.0364 -2.56537 55.0548 -2.63463 55.0772 -2.7011 55.1151 -2.76696 55.1354 -2.82882 55.1591 -2.88956 55.1981 -2.94659 55.2153 -3.0016 55.2489 -3.05539 55.2781 -3.10414 55.3038 -3.15345 55.3357 -3.19681 55.3621 -3.24074 55.3961 -3.28033 55.4177 -3.3179 55.459 -3.35412 55.4744 -3.38642 55.5191 -3.4174 55.5391 -3.44533 55.5751 -3.47123 55.6025 -3.49464 55.634 -3.5157 55.6641 -3.53444 55.6945 -3.55093 55.7248 -3.56501 55.7553 -3.57694 55.7855 -3.58655 55.8158 -3.59393 55.8461 -3.59915 55.8762 -3.60211 55.9063 -3.60297 55.9362 -3.60165 55.9662 -3.59824 55.9959 -3.59272 56.0255 -3.58514 56.0549 -3.57551 56.0843 -3.56387 56.1134 -3.55024 56.1423 -3.53466 56.1711 -3.51713 56.1996 -3.4977 56.228 -3.47639 56.2561 -3.45324 56.2839 -3.42826 56.3116 -3.40148 56.339 -3.37289 56.3661 -3.3425 56.3931 -3.31031 56.4198 -3.27639 56.4462 -3.24082 56.4722 -3.20367 56.4978 -3.16491 56.5232 -3.12455 56.5482 -3.08258 56.573 -3.03905 56.5975 -2.99384 56.6218 -2.94731 56.6453 -2.89923 56.6689 -2.8498 56.6917 -2.7987 56.7149 -2.74667 56.7364 -2.69256 56.7595 -2.63791 56.7798 -2.5812 56.8021 -2.52366 56.8222 -2.46466 56.8429 -2.40437 56.8629 -2.34298 56.8824 -2.2802 56.9018 -2.21639 56.9204 -2.15128 56.9389 -2.0851 56.9568 -2.01775 56.9744 -1.94931 56.9915 -1.87977 57.0082 -1.80917 57.0244 -1.73751 57.0402 -1.66483 57.0556 -1.59114 57.0705 -1.51645 57.085 -1.44079 57.0989 -1.36417 57.1125 -1.28662 57.1256 -1.20815 57.1382 -1.12877 57.1503 -1.04851 57.162 -0.96737 57.1732 -0.885386 57.1839 -0.802554 57.1941 -0.718911 57.2038 -0.634449 57.2131 -0.549256 57.2217 -0.468683 57.2125 -0.409545 57.0178 -0.360893 56.5704 -0.318871 56.0155 -0.281974 55.3816 -0.249369 54.687 -0.220452 53.9433 -0.19475 53.1584 -0.17188 52.3385 -0.15151 51.4888 -0.133346 50.6141 -0.117117 49.7188 -0.102565 48.8075 -0.0894477 47.8851 -0.0775293 46.9566 -0.0665824 46.0274 -0.0563875 45.103 -0.0467333 44.1893 -0.0374172 43.2917 -0.0282464 42.416 -0.0190474 41.5674 -0.009688 40.7508 39.9704 -0.0729757 54.7057 -0.1914 54.7151 -0.307864 54.7254 -0.42225 54.7367 -0.534787 54.7488 -0.64571 54.7613 -0.754683 54.7745 -0.861131 54.789 -0.965131 54.8046 -1.0677 54.8204 -1.16884 54.8356 -1.26708 54.8526 -1.36203 54.8718 -1.45568 54.8907 -1.54865 54.9072 -1.63818 54.9263 -1.72383 54.9492 -1.80908 54.9699 -1.89358 54.9868 -1.97312 55.01 -2.05003 55.0361 -2.12799 55.0545 -2.20199 55.0744 -2.27125 55.1057 -2.34218 55.1257 -2.4094 55.1444 -2.47245 55.1782 -2.536 55.199 -2.5957 55.2188 -2.65315 55.2555 -2.70908 55.2713 -2.76143 55.3013 -2.8133 55.33 -2.86054 55.351 -2.90794 55.3831 -2.95035 55.4045 -2.99262 55.4384 -3.03142 55.4565 -3.06795 55.4955 -3.10387 55.5104 -3.13501 55.5502 -3.1658 55.5698 -3.19316 55.6025 -3.21888 55.6283 -3.24213 55.6572 -3.2632 55.6852 -3.28207 55.7133 -3.2988 55.7415 -3.31327 55.7698 -3.32567 55.7979 -3.33588 55.8261 -3.34398 55.8542 -3.35001 55.8822 -3.35391 55.9102 -3.35579 55.9381 -3.3556 55.966 -3.35342 55.9937 -3.34922 56.0213 -3.34306 56.0488 -3.33493 56.0761 -3.32488 56.1033 -3.31292 56.1304 -3.29909 56.1572 -3.28339 56.1839 -3.26586 56.2104 -3.24652 56.2367 -3.2254 56.2628 -3.20252 56.2887 -3.17791 56.3143 -3.15155 56.3398 -3.12348 56.365 -3.09369 56.39 -3.06222 56.4147 -3.02914 56.4391 -2.99451 56.4632 -2.95831 56.487 -2.92058 56.5105 -2.8813 56.5338 -2.84051 56.5567 -2.79813 56.5795 -2.75441 56.6016 -2.70922 56.6237 -2.66268 56.6452 -2.61458 56.6668 -2.56546 56.6872 -2.51452 56.7085 -2.46279 56.7281 -2.40931 56.7486 -2.35485 56.7678 -2.29902 56.7871 -2.24196 56.8059 -2.18377 56.8242 -2.1243 56.8423 -2.06375 56.8598 -2.002 56.8772 -1.93916 56.894 -1.87521 56.9104 -1.81018 56.9265 -1.74408 56.9421 -1.67695 56.9573 -1.6088 56.9721 -1.53964 56.9864 -1.4695 57.0003 -1.39839 57.0139 -1.32635 57.0269 -1.25337 57.0395 -1.17949 57.0517 -1.10471 57.0634 -1.02906 57.0747 -0.952555 57.0855 -0.875207 57.0958 -0.797042 57.1057 -0.718064 57.1151 -0.638306 57.1241 -0.557765 57.1325 -0.4765 57.1405 -0.398871 57.1348 -0.342289 56.9613 -0.297136 56.5253 -0.258578 55.977 -0.225134 55.3481 -0.195966 54.6579 -0.170458 53.9178 -0.148137 53.136 -0.128617 52.319 -0.111569 51.4718 -0.0966973 50.5992 -0.0837298 49.7058 -0.0724096 48.7962 -0.0624908 47.8752 -0.0537362 46.9478 -0.0459158 46.0196 -0.038808 45.0959 -0.0322002 44.1827 -0.0258877 43.2854 -0.0196701 42.4098 -0.0133619 41.5611 -0.00687502 40.7443 39.9636 0.0130299 54.8185 -0.0981152 54.8262 -0.207585 54.8349 -0.315246 54.8443 -0.421143 54.8547 -0.525463 54.8656 -0.628083 54.8771 -0.728663 54.8896 -0.827039 54.903 -0.923728 54.9171 -1.01903 54.9309 -1.11218 54.9457 -1.20254 54.9622 -1.29107 54.9792 -1.37871 54.9949 -1.464 55.0116 -1.54589 55.0311 -1.6264 55.0504 -1.70638 55.0668 -1.78279 55.0864 -1.85606 55.1094 -1.92958 55.128 -2.00073 55.1456 -2.06709 55.172 -2.13408 55.1927 -2.19898 55.2093 -2.25911 55.2383 -2.31973 55.2596 -2.37752 55.2766 -2.43185 55.3098 -2.48611 55.3255 -2.53625 55.3514 -2.58576 55.3795 -2.63164 55.3969 -2.67697 55.4285 -2.71846 55.446 -2.75901 55.4789 -2.79714 55.4946 -2.83233 55.5307 -2.86756 55.5456 -2.89776 55.5804 -2.92795 55.6 -2.95477 55.6293 -2.98009 55.6536 -3.00307 55.6802 -3.024 55.7061 -3.04285 55.7322 -3.05966 55.7583 -3.07436 55.7845 -3.08707 55.8106 -3.09773 55.8367 -3.10638 55.8628 -3.11306 55.8889 -3.11772 55.9149 -3.12046 55.9408 -3.12123 55.9668 -3.1201 55.9925 -3.11705 56.0183 -3.11212 56.0439 -3.10533 56.0693 -3.09669 56.0947 -3.08623 56.1199 -3.07396 56.145 -3.05992 56.1699 -3.04412 56.1946 -3.02658 56.2192 -3.00733 56.2436 -2.98638 56.2677 -2.96377 56.2917 -2.93949 56.3155 -2.91355 56.3391 -2.88599 56.3624 -2.85682 56.3855 -2.82608 56.4084 -2.79382 56.4309 -2.76005 56.4532 -2.7248 56.4752 -2.68806 56.497 -2.64986 56.5185 -2.61016 56.5398 -2.56913 56.5606 -2.52668 56.5812 -2.48292 56.6014 -2.43768 56.6216 -2.39136 56.6409 -2.34343 56.6606 -2.29455 56.6792 -2.24414 56.6982 -2.19267 56.7163 -2.13992 56.7343 -2.08597 56.7519 -2.0309 56.7691 -1.97462 56.7861 -1.91726 56.8025 -1.85876 56.8187 -1.79919 56.8344 -1.73854 56.8498 -1.67684 56.8648 -1.61412 56.8794 -1.55039 56.8936 -1.48567 56.9073 -1.41997 56.9207 -1.35333 56.9337 -1.28575 56.9463 -1.21726 56.9584 -1.14788 56.9701 -1.07761 56.9814 -1.00649 56.9923 -0.934527 57.0027 -0.86174 57.0127 -0.788145 57.0223 -0.713766 57.0313 -0.638611 57.04 -0.562708 57.0482 -0.486064 57.0559 -0.408716 57.0631 -0.33413 57.0602 -0.279856 56.907 -0.238049 56.4835 -0.202758 55.9417 -0.172566 55.3179 -0.146623 54.6319 -0.124304 53.8955 -0.105135 53.1169 -0.088732 52.3026 -0.0747657 51.4578 -0.0629427 50.5874 -0.0529914 49.6959 -0.0446551 48.7878 -0.0376876 47.8682 -0.0318506 46.942 -0.0269126 46.0146 -0.0226499 45.0917 -0.0188503 44.1789 -0.0153158 43.2819 -0.0118384 42.4063 -0.0081516 41.5574 -0.00428934 40.7405 39.9593 0.0864304 54.924 -0.0176792 54.9303 -0.120326 54.9375 -0.221398 54.9454 -0.32085 54.9541 -0.418799 54.9635 -0.515208 54.9735 -0.609902 54.9843 -0.702696 54.9958 -0.793772 55.0081 -0.883439 55.0206 -0.971364 55.0337 -1.05703 55.0478 -1.14072 55.0629 -1.22327 55.0774 -1.30406 55.0923 -1.38208 55.1091 -1.45824 55.1266 -1.53369 55.1423 -1.60662 55.1593 -1.67649 55.1793 -1.74578 55.1973 -1.81365 55.2134 -1.87732 55.2357 -1.94049 55.2559 -2.00265 55.2715 -2.06025 55.2959 -2.11768 55.317 -2.17341 55.3323 -2.225 55.3614 -2.27706 55.3776 -2.32532 55.3997 -2.37232 55.4265 -2.41692 55.4415 -2.46003 55.4716 -2.50064 55.4866 -2.53931 55.5176 -2.57674 55.5321 -2.61046 55.5645 -2.64462 55.5797 -2.67407 55.6099 -2.7034 55.6294 -2.72966 55.6556 -2.75444 55.6784 -2.77704 55.7028 -2.79771 55.7268 -2.81642 55.7509 -2.83318 55.7751 -2.84797 55.7993 -2.86086 55.8235 -2.87182 55.8477 -2.88087 55.8719 -2.88805 55.896 -2.89333 55.9202 -2.89677 55.9443 -2.89835 55.9683 -2.89811 55.9923 -2.89606 56.0162 -2.89221 56.04 -2.88658 56.0637 -2.8792 56.0873 -2.87008 56.1108 -2.85923 56.1341 -2.84669 56.1573 -2.83246 56.1804 -2.81656 56.2033 -2.79903 56.226 -2.77986 56.2486 -2.7591 56.271 -2.73674 56.2931 -2.7128 56.3151 -2.6873 56.3369 -2.66027 56.3585 -2.63172 56.3798 -2.60171 56.4009 -2.57024 56.4217 -2.53733 56.4423 -2.50299 56.4627 -2.46725 56.4827 -2.43009 56.5026 -2.39162 56.5221 -2.35178 56.5414 -2.31067 56.5603 -2.26817 56.5791 -2.22454 56.5973 -2.17948 56.6156 -2.13337 56.6331 -2.08589 56.6507 -2.03731 56.6677 -1.98753 56.6845 -1.93659 56.701 -1.88454 56.7171 -1.83134 56.7329 -1.77709 56.7482 -1.72174 56.7633 -1.66536 56.778 -1.60793 56.7924 -1.54949 56.8063 -1.49005 56.8199 -1.42965 56.8331 -1.36828 56.846 -1.30598 56.8584 -1.24276 56.8705 -1.17864 56.8822 -1.11365 56.8934 -1.04779 56.9043 -0.98109 56.9147 -0.913563 56.9248 -0.845231 56.9344 -0.776112 56.9436 -0.70622 56.9524 -0.635582 56.9607 -0.564205 56.9686 -0.492118 56.9761 -0.419329 56.9831 -0.345866 56.9897 -0.27442 56.9888 -0.22223 56.8548 -0.183599 56.4448 -0.151375 55.9094 -0.124229 55.2908 -0.101298 54.609 -0.0819476 53.8761 -0.0657038 53.1006 -0.0521846 52.289 -0.0410642 51.4467 -0.0320507 50.5784 -0.0248737 49.6887 -0.0192771 48.7822 -0.0150145 47.8639 -0.0118469 46.9388 -0.00954168 46.0123 -0.00787185 45.09 -0.00661818 44.1776 -0.00558267 43.2809 -0.00462282 42.4054 -0.00349567 41.5563 -0.00194893 40.7389 39.9573 0.148163 55.0226 0.0508832 55.0276 -0.0450814 55.0335 -0.139711 55.04 -0.232896 55.0473 -0.324688 55.0553 -0.415079 55.0639 -0.503974 55.0732 -0.591246 55.0831 -0.676897 55.0938 -0.761144 55.1048 -0.843873 55.1164 -0.924755 55.1287 -1.00377 55.1419 -1.08146 55.1551 -1.15767 55.1686 -1.23168 55.1831 -1.30374 55.1987 -1.3748 55.2133 -1.44401 55.2285 -1.51053 55.2458 -1.57588 55.2627 -1.64021 55.2778 -1.70117 55.2966 -1.76081 55.3155 -1.81989 55.3305 -1.87512 55.3512 -1.92939 55.3713 -1.98278 55.3857 -2.032 55.4106 -2.08153 55.4271 -2.12805 55.4462 -2.17255 55.471 -2.21584 55.4848 -2.25667 55.5124 -2.29628 55.5262 -2.33302 55.5544 -2.36946 55.5685 -2.4018 55.5968 -2.43462 55.6126 -2.46337 55.6386 -2.4917 55.6577 -2.51733 55.6812 -2.54147 55.7025 -2.5636 55.7249 -2.5839 55.7471 -2.60235 55.7693 -2.61896 55.7917 -2.63372 55.814 -2.64667 55.8364 -2.65781 55.8588 -2.66714 55.8812 -2.67469 55.9036 -2.68045 55.926 -2.68446 55.9483 -2.68671 55.9706 -2.68723 55.9928 -2.68603 56.015 -2.68312 56.0371 -2.67852 56.0591 -2.67225 56.081 -2.66432 56.1029 -2.65475 56.1246 -2.64356 56.1461 -2.63076 56.1676 -2.61637 56.1889 -2.60041 56.2101 -2.58289 56.2311 -2.56384 56.2519 -2.54326 56.2726 -2.52118 56.293 -2.49761 56.3133 -2.47257 56.3334 -2.44608 56.3533 -2.41817 56.373 -2.38887 56.3924 -2.35818 56.4116 -2.32611 56.4306 -2.29271 56.4493 -2.25796 56.4679 -2.22192 56.4861 -2.18458 56.504 -2.14599 56.5217 -2.10611 56.5392 -2.06507 56.5562 -2.02273 56.5732 -1.97931 56.5897 -1.93463 56.606 -1.88885 56.6219 -1.84192 56.6376 -1.79388 56.6529 -1.74476 56.6679 -1.69455 56.6827 -1.64331 56.697 -1.59102 56.711 -1.53772 56.7247 -1.48343 56.7381 -1.42815 56.7511 -1.37193 56.7637 -1.31476 56.776 -1.25668 56.7879 -1.19769 56.7995 -1.13783 56.8106 -1.0771 56.8214 -1.01553 56.8318 -0.953129 56.8419 -0.889925 56.8515 -0.825932 56.8608 -0.76117 56.8696 -0.695657 56.8781 -0.629409 56.8861 -0.562451 56.8937 -0.494795 56.9009 -0.426465 56.9077 -0.357474 56.9141 -0.287845 56.92 -0.21962 56.9206 -0.169333 56.8045 -0.133696 56.4092 -0.104335 55.8801 -0.0800305 55.2665 -0.0598985 54.5889 -0.0432981 53.8595 -0.029755 53.0871 -0.0188911 52.2782 -0.0103835 51.4382 -0.00394314 50.5719 0.000698005 49.684 0.00379442 48.7791 0.00559144 47.8621 0.00632739 46.9381 0.00623351 46.0124 0.00553298 45.0907 0.00444389 44.1787 0.00318962 43.2821 0.00199279 42.4066 0.000712763 41.5575 0.000185528 40.7394 39.9575 0.199151 55.1143 0.108497 55.1183 0.0189871 55.123 -0.0693279 55.1284 -0.156388 55.1344 -0.242189 55.1411 -0.326735 55.1484 -0.409954 55.1564 -0.491777 55.1649 -0.572137 55.1742 -0.651151 55.1838 -0.728792 55.194 -0.804883 55.2048 -0.879306 55.2163 -0.952345 55.2281 -1.02403 55.2402 -1.09394 55.253 -1.16201 55.2667 -1.22889 55.2802 -1.29426 55.2939 -1.35741 55.3089 -1.41907 55.3243 -1.47978 55.3385 -1.5379 55.3548 -1.59428 55.3719 -1.65013 55.3864 -1.70296 55.404 -1.75426 55.4226 -1.80505 55.4365 -1.85211 55.4577 -1.89901 55.474 -1.94371 55.4909 -1.98591 55.5132 -2.02767 55.5265 -2.06633 55.5511 -2.10466 55.5645 -2.13961 55.5893 -2.17468 55.6036 -2.20582 55.6279 -2.23719 55.6439 -2.26516 55.6666 -2.29242 55.685 -2.31733 55.7061 -2.34076 55.7259 -2.36232 55.7465 -2.38216 55.7669 -2.40026 55.7874 -2.41661 55.808 -2.43124 55.8287 -2.44415 55.8493 -2.45534 55.87 -2.46484 55.8907 -2.47265 55.9114 -2.47877 55.9321 -2.48323 55.9527 -2.48603 55.9734 -2.48719 55.994 -2.48671 56.0145 -2.48462 56.035 -2.48092 56.0554 -2.47563 56.0757 -2.46876 56.096 -2.46034 56.1161 -2.45037 56.1362 -2.43887 56.1561 -2.42585 56.1759 -2.41133 56.1955 -2.39533 56.2151 -2.37786 56.2344 -2.35894 56.2536 -2.33859 56.2727 -2.31681 56.2916 -2.29363 56.3103 -2.26907 56.3288 -2.24314 56.3471 -2.21588 56.3652 -2.18728 56.383 -2.15738 56.4007 -2.12618 56.4181 -2.0937 56.4354 -2.05998 56.4523 -2.02502 56.4691 -1.98885 56.4855 -1.95145 56.5018 -1.91292 56.5177 -1.87317 56.5335 -1.83234 56.5488 -1.79034 56.564 -1.74726 56.5788 -1.70308 56.5934 -1.65784 56.6077 -1.61155 56.6217 -1.56422 56.6353 -1.5159 56.6487 -1.46657 56.6617 -1.41628 56.6744 -1.36502 56.6868 -1.31283 56.6989 -1.25973 56.7106 -1.20572 56.722 -1.15083 56.733 -1.09508 56.7437 -1.03849 56.754 -0.981066 56.764 -0.922841 56.7736 -0.863827 56.7829 -0.804044 56.7917 -0.743511 56.8002 -0.682245 56.8084 -0.620267 56.8161 -0.557593 56.8234 -0.494245 56.8304 -0.430239 56.8369 -0.365598 56.8431 -0.300336 56.8488 -0.234475 56.8542 -0.169531 56.8556 -0.121021 56.756 -0.0881853 56.3764 -0.0614847 55.8534 -0.0398291 55.2448 -0.0222995 54.5713 -0.00824269 53.8454 0.00281192 53.076 0.0112371 52.2698 0.0173507 51.4321 0.0214379 50.5678 0.0237629 49.6817 0.0245768 48.7783 0.0241218 47.8626 0.0226333 46.9396 0.0203417 46.0147 0.0174727 45.0936 0.0142467 44.1819 0.0108679 43.2855 0.00751436 42.4099 0.00455943 41.5605 0.00200771 40.742 39.9595 0.240576 55.1996 0.156305 55.2025 0.0730394 55.2062 -0.00920061 55.2106 -0.0903591 55.2155 -0.170387 55.2212 -0.249296 55.2273 -0.327018 55.2341 -0.403522 55.2414 -0.47873 55.2494 -0.552686 55.2578 -0.625384 55.2667 -0.696739 55.2761 -0.766631 55.2862 -0.83518 55.2967 -0.90245 55.3075 -0.968237 55.3188 -1.03238 55.3309 -1.09524 55.3431 -1.15678 55.3554 -1.21649 55.3687 -1.27464 55.3825 -1.33178 55.3956 -1.38692 55.4099 -1.44025 55.4252 -1.49285 55.439 -1.54318 55.4543 -1.5917 55.4711 -1.63975 55.4845 -1.68471 55.5027 -1.72903 55.5183 -1.77171 55.5336 -1.81182 55.5533 -1.85175 55.5665 -1.88847 55.5878 -1.92517 55.6012 -1.95854 55.6227 -1.99197 55.637 -2.02203 55.658 -2.05189 55.6738 -2.079 55.6937 -2.10515 55.7111 -2.12926 55.7302 -2.15189 55.7486 -2.17281 55.7674 -2.19211 55.7862 -2.20976 55.8051 -2.22578 55.824 -2.24017 55.843 -2.25294 55.8621 -2.26411 55.8812 -2.27366 55.9003 -2.28163 55.9194 -2.288 55.9385 -2.29281 55.9576 -2.29604 55.9766 -2.29772 55.9957 -2.29786 56.0147 -2.29646 56.0336 -2.29354 56.0525 -2.28912 56.0713 -2.2832 56.0901 -2.2758 56.1087 -2.26693 56.1273 -2.2566 56.1458 -2.24484 56.1641 -2.23165 56.1823 -2.21704 56.2005 -2.20104 56.2184 -2.18366 56.2363 -2.1649 56.2539 -2.1448 56.2715 -2.12336 56.2888 -2.10059 56.306 -2.07653 56.323 -2.05118 56.3398 -2.02457 56.3564 -1.9967 56.3728 -1.9676 56.389 -1.93728 56.4051 -1.90576 56.4208 -1.87305 56.4364 -1.83919 56.4517 -1.80417 56.4668 -1.76803 56.4816 -1.73076 56.4962 -1.69242 56.5105 -1.65299 56.5246 -1.61251 56.5384 -1.57098 56.5519 -1.52843 56.5651 -1.48488 56.5781 -1.44033 56.5908 -1.39483 56.6032 -1.34836 56.6152 -1.30097 56.627 -1.25267 56.6385 -1.20346 56.6497 -1.15338 56.6605 -1.10244 56.671 -1.05066 56.6812 -0.998057 56.6911 -0.94465 56.7006 -0.890455 56.7098 -0.835493 56.7187 -0.779782 56.7272 -0.723341 56.7353 -0.666188 56.7431 -0.608341 56.7505 -0.54982 56.7576 -0.490641 56.7643 -0.430826 56.7706 -0.370391 56.7765 -0.30936 56.7821 -0.247747 56.7872 -0.185573 56.792 -0.123938 56.794 -0.0771222 56.7092 -0.0469368 56.3462 -0.0226891 55.8291 -0.00350581 55.2257 0.0116243 54.5562 0.023348 53.8337 0.0321272 53.0673 0.0383303 52.2635 0.0422716 51.4281 0.0442324 50.5659 0.0444739 49.6815 0.0432446 48.7796 0.0407854 47.865 0.0373313 46.943 0.0331135 46.0189 0.0283579 45.0983 0.0232829 44.187 0.0180987 43.2907 0.0130184 42.415 0.00824775 41.5653 0.00381596 40.7464 39.9633 0.273439 55.2785 0.195319 55.2807 0.118065 55.2835 0.0416902 55.287 -0.0337386 55.291 -0.10819 55.2956 -0.181651 55.3008 -0.254064 55.3065 -0.325407 55.3128 -0.395614 55.3196 -0.464688 55.3269 -0.532618 55.3347 -0.599363 55.3429 -0.664828 55.3517 -0.729044 55.3609 -0.792056 55.3705 -0.853776 55.3805 -0.914053 55.3912 -0.973058 55.4021 -1.03083 55.4132 -1.08709 55.4249 -1.14184 55.4372 -1.19551 55.4493 -1.2476 55.462 -1.29796 55.4756 -1.34742 55.4885 -1.39513 55.502 -1.44101 55.517 -1.4863 55.5298 -1.52913 55.5455 -1.57096 55.5602 -1.6115 55.5741 -1.64964 55.5914 -1.68753 55.6044 -1.72251 55.6228 -1.75735 55.6361 -1.78928 55.6546 -1.82097 55.6687 -1.84992 55.6869 -1.87829 55.7022 -1.90441 55.7198 -1.92943 55.7361 -1.95265 55.7534 -1.97444 55.7704 -1.99465 55.7876 -2.01333 55.8049 -2.03047 55.8222 -2.04607 55.8396 -2.06015 55.8571 -2.07271 55.8746 -2.08375 55.8922 -2.09328 55.9098 -2.10131 55.9274 -2.10784 55.945 -2.11289 55.9626 -2.11646 55.9802 -2.11857 55.9978 -2.11921 56.0153 -2.11841 56.0328 -2.11616 56.0503 -2.1125 56.0677 -2.10741 56.085 -2.10092 56.1022 -2.09305 56.1194 -2.08379 56.1365 -2.07316 56.1535 -2.06118 56.1704 -2.04786 56.1871 -2.03321 56.2038 -2.01725 56.2203 -1.99998 56.2367 -1.98144 56.2529 -1.96161 56.269 -1.94054 56.2849 -1.91822 56.3007 -1.89468 56.3163 -1.86994 56.3317 -1.84399 56.3469 -1.81687 56.3619 -1.78859 56.3768 -1.75917 56.3914 -1.72861 56.4058 -1.69694 56.42 -1.66418 56.434 -1.63034 56.4477 -1.59543 56.4613 -1.55948 56.4746 -1.5225 56.4876 -1.48451 56.5004 -1.44553 56.5129 -1.40557 56.5252 -1.36465 56.5372 -1.32279 56.5489 -1.28 56.5604 -1.23631 56.5716 -1.19172 56.5824 -1.14627 56.5931 -1.09996 56.6034 -1.05282 56.6134 -1.00485 56.6231 -0.956092 56.6325 -0.906546 56.6416 -0.856237 56.6503 -0.805179 56.6588 -0.753394 56.6669 -0.700899 56.6747 -0.647711 56.6821 -0.593851 56.6892 -0.539335 56.696 -0.484184 56.7024 -0.428415 56.7085 -0.372046 56.7142 -0.315098 56.7196 -0.257588 56.7245 -0.199534 56.7292 -0.140954 56.7334 -0.0826267 56.7357 -0.0373736 56.6639 -0.00954837 56.3184 0.0122451 55.8073 0.0291368 55.2088 0.0420469 54.5433 0.0516223 53.8241 0.0583228 53.0606 0.0625099 52.2594 0.0644912 51.4261 0.0645427 50.5658 0.0629217 49.6831 0.0598735 48.7826 0.0556367 47.8693 0.050445 46.9482 0.0445281 46.0248 0.0381098 45.1047 0.0314058 44.1937 0.0246209 43.2975 0.0179464 42.4217 0.0115451 41.5717 0.00550057 40.7525 39.9688 0.298687 55.3514 0.226424 55.3529 0.154899 55.355 0.0841442 55.3577 0.0141752 55.3609 -0.0549056 55.3647 -0.123118 55.369 -0.190414 55.3738 -0.256764 55.3791 -0.322121 55.3849 -0.386463 55.3912 -0.449774 55.398 -0.512031 55.4051 -0.573166 55.4128 -0.633171 55.4209 -0.692063 55.4294 -0.749808 55.4383 -0.806293 55.4476 -0.861578 55.4573 -0.915712 55.4673 -0.96854 55.4777 -1.02 55.4887 -1.07034 55.4996 -1.11935 55.511 -1.16683 55.523 -1.21326 55.5349 -1.25829 55.547 -1.30162 55.5603 -1.34419 55.5724 -1.38481 55.5861 -1.42426 55.5996 -1.4626 55.6125 -1.49882 55.6276 -1.53458 55.6401 -1.5679 55.6561 -1.60081 55.669 -1.63132 55.6851 -1.66128 55.6987 -1.68903 55.7147 -1.71595 55.7291 -1.74099 55.7449 -1.76486 55.76 -1.78714 55.7757 -1.80804 55.7913 -1.82747 55.807 -1.84547 55.8229 -1.86203 55.8388 -1.87716 55.8548 -1.89085 55.8708 -1.90312 55.8869 -1.91396 55.903 -1.92338 55.9192 -1.9314 55.9354 -1.93801 55.9516 -1.94322 55.9678 -1.94703 55.984 -1.94947 56.0002 -1.95053 56.0164 -1.95022 56.0325 -1.94856 56.0486 -1.94555 56.0646 -1.9412 56.0806 -1.93553 56.0966 -1.92853 56.1124 -1.92024 56.1282 -1.91065 56.1439 -1.89977 56.1595 -1.88763 56.175 -1.87423 56.1904 -1.85958 56.2056 -1.8437 56.2208 -1.8266 56.2358 -1.80829 56.2507 -1.78879 56.2654 -1.76811 56.28 -1.74627 56.2944 -1.72328 56.3087 -1.69915 56.3228 -1.67391 56.3367 -1.64756 56.3504 -1.62012 56.364 -1.5916 56.3773 -1.56202 56.3904 -1.5314 56.4034 -1.49976 56.4161 -1.4671 56.4286 -1.43345 56.4409 -1.39881 56.453 -1.36322 56.4648 -1.32668 56.4764 -1.28921 56.4877 -1.25082 56.4988 -1.21154 56.5096 -1.17138 56.5202 -1.13035 56.5305 -1.08848 56.5406 -1.04578 56.5504 -1.00227 56.5598 -0.957964 56.5691 -0.91288 56.578 -0.867036 56.5866 -0.820451 56.595 -0.773141 56.603 -0.725124 56.6107 -0.676419 56.6182 -0.627043 56.6253 -0.577016 56.6321 -0.526355 56.6386 -0.475079 56.6447 -0.423205 56.6505 -0.370754 56.656 -0.317742 56.6612 -0.26419 56.666 -0.210116 56.6705 -0.155538 56.6746 -0.100477 56.6784 -0.0455068 56.6807 -0.00202934 56.6205 0.0236798 56.2926 0.0433958 55.7876 0.058177 55.194 0.0690677 54.5324 0.0767004 53.8165 0.0815237 53.0557 0.0838939 52.257 0.0841147 51.4259 0.0824576 50.5675 0.0791757 49.6864 0.0745107 48.7873 0.0686976 47.8751 0.0619668 46.9549 0.0545438 46.0323 0.0466481 45.1126 0.0384899 44.2019 0.0302672 43.3057 0.0221623 42.4298 0.0143328 41.5795 0.00689658 40.7599 39.9757 0.3174 55.4186 0.250744 55.4196 0.184699 55.4211 0.119322 55.4231 0.0546136 55.4256 -0.0093585 55.4287 -0.0725747 55.4322 -0.134994 55.4362 -0.196581 55.4407 -0.257299 55.4456 -0.317116 55.451 -0.376009 55.4569 -0.433957 55.4631 -0.49091 55.4698 -0.546848 55.4769 -0.601766 55.4843 -0.655647 55.4922 -0.708419 55.5004 -0.760089 55.509 -0.810687 55.5179 -0.860138 55.5272 -0.908365 55.5369 -0.955506 55.5468 -1.00147 55.557 -1.0461 55.5677 -1.08964 55.5784 -1.13198 55.5894 -1.17281 55.6012 -1.21277 55.6124 -1.25115 55.6245 -1.2883 55.6367 -1.32442 55.6486 -1.35873 55.662 -1.39239 55.6738 -1.42404 55.6877 -1.45505 55.7 -1.4841 55.7141 -1.51238 55.7269 -1.53886 55.7412 -1.56435 55.7546 -1.58826 55.7688 -1.61097 55.7827 -1.63226 55.797 -1.65224 55.8112 -1.67085 55.8257 -1.68813 55.8401 -1.70406 55.8547 -1.71865 55.8694 -1.7319 55.8841 -1.74381 55.8988 -1.75439 55.9136 -1.76365 55.9285 -1.77157 55.9433 -1.77818 55.9582 -1.78348 55.9731 -1.78746 55.988 -1.79015 56.0029 -1.79154 56.0178 -1.79165 56.0326 -1.79048 56.0474 -1.78804 56.0622 -1.78434 56.0769 -1.77938 56.0916 -1.77319 56.1062 -1.76576 56.1208 -1.75711 56.1352 -1.74724 56.1496 -1.73618 56.1639 -1.72392 56.1781 -1.71049 56.1922 -1.69589 56.2062 -1.68013 56.2201 -1.66324 56.2338 -1.64521 56.2474 -1.62606 56.2609 -1.60582 56.2742 -1.58448 56.2873 -1.56206 56.3004 -1.53859 56.3132 -1.51406 56.3259 -1.4885 56.3384 -1.46192 56.3507 -1.43433 56.3629 -1.40575 56.3748 -1.3762 56.3866 -1.34569 56.3981 -1.31423 56.4094 -1.28184 56.4206 -1.24854 56.4315 -1.21433 56.4422 -1.17925 56.4526 -1.14329 56.4628 -1.10649 56.4728 -1.06885 56.4826 -1.03039 56.4921 -0.991124 56.5013 -0.951075 56.5103 -0.910258 56.519 -0.868688 56.5275 -0.826383 56.5357 -0.783361 56.5436 -0.739638 56.5512 -0.695232 56.5586 -0.65016 56.5657 -0.60444 56.5725 -0.558088 56.5789 -0.511124 56.5851 -0.463566 56.591 -0.415431 56.5966 -0.366737 56.6019 -0.317504 56.6068 -0.267751 56.6114 -0.217496 56.6158 -0.16676 56.6197 -0.115562 56.6234 -0.0639246 56.6267 -0.0122291 56.629 0.0295009 56.5787 0.0531563 56.269 0.0709325 55.7698 0.0837967 55.1811 0.0928461 54.5233 0.0987169 53.8106 0.10185 53.0526 0.102595 52.2562 0.101248 51.4273 0.0980784 50.5707 0.0933323 49.6911 0.0872475 48.7934 0.0800545 47.8823 0.0719791 46.963 0.0632422 46.041 0.0540578 45.1218 0.0446309 44.2113 0.0351544 43.3152 0.025806 42.4391 0.0167425 41.5886 0.00809316 40.7685 39.9838 0.330372 55.4804 0.269015 55.4809 0.20816 55.4819 0.147869 55.4834 0.0881565 55.4854 0.0290745 55.4877 -0.0293383 55.4906 -0.0870761 55.494 -0.144087 55.4977 -0.200341 55.5019 -0.255807 55.5065 -0.310459 55.5115 -0.364273 55.5169 -0.417212 55.5227 -0.46925 55.5289 -0.520368 55.5354 -0.570551 55.5423 -0.619749 55.5496 -0.667947 55.5572 -0.715153 55.5651 -0.761332 55.5734 -0.806418 55.582 -0.850472 55.5908 -0.893467 55.6 -0.935283 55.6095 -0.97604 55.6192 -1.01572 55.6291 -1.05409 55.6395 -1.09152 55.6498 -1.12763 55.6606 -1.16256 55.6717 -1.1965 55.6825 -1.2289 55.6944 -1.26051 55.7054 -1.29047 55.7177 -1.31964 55.7291 -1.34719 55.7417 -1.37384 55.7536 -1.39898 55.7663 -1.42308 55.7787 -1.44581 55.7915 -1.46736 55.8043 -1.48762 55.8172 -1.50665 55.8303 -1.52442 55.8434 -1.54093 55.8567 -1.5562 55.87 -1.57021 55.8834 -1.58296 55.8968 -1.59447 55.9103 -1.60474 55.9239 -1.61376 55.9375 -1.62154 55.9511 -1.62808 55.9648 -1.63339 55.9784 -1.63748 55.9921 -1.64035 56.0058 -1.642 56.0194 -1.64244 56.0331 -1.64168 56.0467 -1.63973 56.0603 -1.63659 56.0738 -1.63228 56.0873 -1.62679 56.1007 -1.62014 56.1141 -1.61234 56.1274 -1.6034 56.1407 -1.59332 56.1539 -1.58212 56.1669 -1.56981 56.1799 -1.55639 56.1928 -1.54189 56.2055 -1.5263 56.2182 -1.50965 56.2307 -1.49194 56.2432 -1.47319 56.2554 -1.4534 56.2676 -1.4326 56.2796 -1.41079 56.2914 -1.38799 56.3031 -1.36421 56.3146 -1.33947 56.326 -1.31377 56.3372 -1.28713 56.3482 -1.25957 56.359 -1.2311 56.3696 -1.20173 56.3801 -1.17148 56.3903 -1.14036 56.4004 -1.1084 56.4102 -1.07559 56.4198 -1.04197 56.4292 -1.00754 56.4384 -0.972316 56.4474 -0.936322 56.4561 -0.899569 56.4646 -0.862074 56.4728 -0.823852 56.4808 -0.78492 56.4886 -0.745295 56.4961 -0.704993 56.5033 -0.66403 56.5103 -0.622424 56.517 -0.580192 56.5234 -0.537351 56.5296 -0.493918 56.5355 -0.44991 56.5411 -0.405346 56.5464 -0.360245 56.5515 -0.314624 56.5562 -0.268501 56.5607 -0.221895 56.5648 -0.174826 56.5687 -0.127313 56.5722 -0.0793721 56.5755 -0.0310239 56.5784 0.0174289 56.5805 0.0575197 56.5386 0.07932 56.2472 0.0952035 55.754 0.106268 55.17 0.113624 54.516 0.117891 53.8064 0.119498 53.051 0.118788 52.257 0.11605 51.43 0.111545 50.5752 0.105515 49.6971 0.0981919 48.8007 0.0898005 47.8907 0.0805613 46.9723 0.0706899 46.0509 0.0603949 45.1321 0.0498766 44.2218 0.0393238 43.3257 0.0289109 42.4495 0.0187927 41.5987 0.00909987 40.7782 39.9929 0.338477 55.5371 0.282126 55.5373 0.226175 55.5379 0.170696 55.5389 0.115699 55.5404 0.0612291 55.5422 0.00732418 55.5445 -0.0459681 55.5473 -0.0986289 55.5504 -0.150628 55.5539 -0.201934 55.5578 -0.252519 55.5621 -0.302361 55.5668 -0.351427 55.5718 -0.399696 55.5772 -0.447143 55.5829 -0.493754 55.5889 -0.539491 55.5953 -0.584335 55.6021 -0.628277 55.6091 -0.671296 55.6164 -0.713344 55.624 -0.754437 55.6319 -0.794564 55.6401 -0.83365 55.6486 -0.871735 55.6573 -0.908835 55.6662 -0.944787 55.6755 -0.979794 55.6848 -1.01367 55.6945 -1.04643 55.7044 -1.07824 55.7143 -1.10874 55.7249 -1.13837 55.735 -1.16663 55.746 -1.19401 55.7565 -1.22004 55.7677 -1.24511 55.7787 -1.2689 55.7901 -1.29163 55.8014 -1.31315 55.813 -1.33355 55.8247 -1.35276 55.8365 -1.37083 55.8483 -1.38772 55.8603 -1.40345 55.8724 -1.41801 55.8845 -1.43141 55.8968 -1.44364 55.9091 -1.45471 55.9214 -1.46461 55.9338 -1.47335 55.9462 -1.48093 55.9587 -1.48736 55.9712 -1.49264 55.9837 -1.49677 55.9962 -1.49975 56.0087 -1.5016 56.0213 -1.50231 56.0338 -1.5019 56.0463 -1.50036 56.0587 -1.49771 56.0712 -1.49396 56.0835 -1.4891 56.0959 -1.48315 56.1082 -1.47612 56.1204 -1.46801 56.1326 -1.45884 56.1447 -1.44861 56.1567 -1.43733 56.1686 -1.42502 56.1805 -1.41167 56.1922 -1.39731 56.2038 -1.38194 56.2154 -1.36557 56.2268 -1.34822 56.2381 -1.3299 56.2492 -1.31061 56.2603 -1.29038 56.2712 -1.2692 56.2819 -1.2471 56.2925 -1.22409 56.303 -1.20018 56.3132 -1.17538 56.3234 -1.14971 56.3333 -1.12318 56.3431 -1.0958 56.3527 -1.06759 56.3621 -1.03857 56.3713 -1.00873 56.3804 -0.97811 56.3892 -0.946713 56.3978 -0.914556 56.4062 -0.881654 56.4145 -0.848021 56.4224 -0.813673 56.4302 -0.778625 56.4378 -0.742894 56.4451 -0.706493 56.4522 -0.66944 56.459 -0.63175 56.4656 -0.59344 56.472 -0.554527 56.4781 -0.515027 56.4839 -0.474957 56.4895 -0.434334 56.4949 -0.393175 56.5 -0.351498 56.5048 -0.30932 56.5093 -0.26666 56.5136 -0.223536 56.5176 -0.179965 56.5213 -0.135967 56.5247 -0.0915615 56.5278 -0.0467681 56.5307 -0.00159978 56.5332 0.0438157 56.5351 0.0820911 56.5004 0.102256 56.227 0.116373 55.7398 0.125781 55.1606 0.131591 54.5102 0.134406 53.8036 0.134644 53.0507 0.132638 52.259 0.128671 51.434 0.122997 50.5808 0.115852 49.7043 0.10746 48.8091 0.098042 47.9001 0.0878119 46.9825 0.07698 46.0617 0.06575 45.1433 0.0543175 44.2332 0.0428671 43.3372 0.0315692 42.4608 0.0205764 41.6097 0.0100201 40.7888 40.003 0.342526 55.5891 0.29088 55.5889 0.239558 55.5892 0.188622 55.5898 0.138098 55.5909 0.0880099 55.5923 0.0384075 55.5941 -0.01069 55.5963 -0.059249 55.5989 -0.107236 55.6019 -0.154621 55.6052 -0.201373 55.6089 -0.247469 55.6128 -0.292876 55.6172 -0.337573 55.6219 -0.381534 55.6269 -0.424741 55.6322 -0.467165 55.6378 -0.508788 55.6437 -0.549593 55.6499 -0.589566 55.6564 -0.628671 55.6631 -0.666904 55.6702 -0.704258 55.6774 -0.740688 55.685 -0.776194 55.6928 -0.810795 55.7008 -0.844387 55.7091 -0.877068 55.7175 -0.90875 55.7262 -0.939412 55.7351 -0.969156 55.7441 -0.99777 55.7535 -1.0255 55.7628 -1.05207 55.7725 -1.07772 55.7822 -1.10222 55.7922 -1.12577 55.8022 -1.14818 55.8125 -1.16958 55.8228 -1.18988 55.8333 -1.20913 55.8439 -1.22729 55.8546 -1.24438 55.8654 -1.26039 55.8763 -1.27531 55.8873 -1.28916 55.8984 -1.30191 55.9095 -1.31359 55.9207 -1.32417 55.932 -1.33368 55.9433 -1.3421 55.9546 -1.34944 55.966 -1.3557 55.9774 -1.36089 55.9889 -1.36501 56.0003 -1.36806 56.0118 -1.37004 56.0232 -1.37096 56.0347 -1.37083 56.0461 -1.36965 56.0575 -1.36743 56.0689 -1.36416 56.0803 -1.35987 56.0916 -1.35455 56.1029 -1.34821 56.1141 -1.34087 56.1252 -1.33252 56.1363 -1.32318 56.1474 -1.31286 56.1583 -1.30155 56.1692 -1.28929 56.1799 -1.27606 56.1906 -1.26188 56.2012 -1.24677 56.2117 -1.23073 56.222 -1.21378 56.2323 -1.19592 56.2424 -1.17716 56.2524 -1.15752 56.2623 -1.13701 56.272 -1.11564 56.2816 -1.09342 56.291 -1.07037 56.3003 -1.04649 56.3094 -1.02181 56.3184 -0.996323 56.3272 -0.970055 56.3358 -0.943017 56.3443 -0.915221 56.3526 -0.886681 56.3607 -0.857412 56.3686 -0.827427 56.3763 -0.796741 56.3838 -0.765368 56.3911 -0.733322 56.3982 -0.700619 56.4051 -0.667273 56.4117 -0.6333 56.4182 -0.598714 56.4244 -0.563532 56.4304 -0.52777 56.4362 -0.491443 56.4418 -0.454568 56.4471 -0.41716 56.4521 -0.379237 56.457 -0.340814 56.4615 -0.301909 56.4659 -0.26254 56.4699 -0.222721 56.4738 -0.182472 56.4773 -0.14181 56.4806 -0.100752 56.4836 -0.0593167 56.4864 -0.0175228 56.4889 0.0246083 56.4911 0.0669769 56.4928 0.103391 56.4639 0.122104 56.2083 0.134585 55.7274 0.142481 55.1527 0.146896 54.5058 0.148408 53.8021 0.147429 53.0517 0.144282 52.2621 0.139243 51.439 0.132559 50.5875 0.124459 49.7124 0.11516 48.8184 0.104877 47.9104 0.0938175 46.9935 0.0821866 46.0733 0.0701821 45.1553 0.057994 44.2454 0.0458018 43.3494 0.033771 42.4729 0.0220499 41.6214 0.010766 40.8001 40.0137 0.343107 55.6366 0.295847 55.6362 0.24884 55.6362 0.202144 55.6365 0.155796 55.6372 0.109823 55.6383 0.0642643 55.6397 0.0191434 55.6415 -0.025503 55.6436 -0.0696592 55.646 -0.113295 55.6488 -0.15638 55.6519 -0.198892 55.6554 -0.240805 55.6591 -0.282094 55.6631 -0.322733 55.6675 -0.362703 55.6721 -0.401977 55.677 -0.440535 55.6822 -0.478357 55.6877 -0.515427 55.6934 -0.551719 55.6994 -0.58722 55.7057 -0.621919 55.7121 -0.655789 55.7189 -0.688815 55.7258 -0.721008 55.733 -0.752306 55.7404 -0.782747 55.7479 -0.812292 55.7557 -0.840911 55.7637 -0.868663 55.7718 -0.895424 55.7802 -0.921324 55.7887 -0.946208 55.7974 -0.970207 55.8062 -0.993187 55.8152 -1.01525 55.8243 -1.0363 55.8336 -1.0564 55.8429 -1.07549 55.8524 -1.09361 55.862 -1.11072 55.8717 -1.12684 55.8815 -1.14196 55.8914 -1.15608 55.9014 -1.16919 55.9115 -1.18129 55.9216 -1.19239 55.9318 -1.20248 55.9421 -1.21156 55.9524 -1.21963 55.9627 -1.2267 55.9731 -1.23277 55.9835 -1.23783 55.9939 -1.24189 56.0044 -1.24496 56.0148 -1.24703 56.0253 -1.24811 56.0358 -1.24821 56.0462 -1.24732 56.0567 -1.24546 56.0671 -1.24263 56.0774 -1.23883 56.0878 -1.23408 56.0981 -1.22837 56.1084 -1.22171 56.1186 -1.21412 56.1287 -1.2056 56.1388 -1.19615 56.1488 -1.18578 56.1588 -1.17451 56.1687 -1.16234 56.1784 -1.14928 56.1881 -1.13534 56.1977 -1.12053 56.2072 -1.10485 56.2166 -1.08833 56.2259 -1.07097 56.235 -1.05277 56.2441 -1.03376 56.253 -1.01394 56.2618 -0.993324 56.2704 -0.971921 56.2789 -0.949745 56.2873 -0.926807 56.2955 -0.903119 56.3035 -0.878695 56.3114 -0.853546 56.3192 -0.827685 56.3267 -0.801126 56.3341 -0.773881 56.3413 -0.745964 56.3483 -0.717389 56.3552 -0.688169 56.3619 -0.658319 56.3683 -0.627854 56.3746 -0.596786 56.3807 -0.565132 56.3865 -0.532906 56.3922 -0.500122 56.3976 -0.466796 56.4029 -0.432944 56.4079 -0.398581 56.4127 -0.363722 56.4173 -0.328384 56.4216 -0.292582 56.4257 -0.256332 56.4296 -0.219652 56.4333 -0.182557 56.4367 -0.145065 56.4398 -0.107192 56.4427 -0.0689551 56.4454 -0.030371 56.4478 0.00854342 56.45 0.0477627 56.4519 0.0871839 56.4533 0.121684 56.4294 0.139085 56.1909 0.150041 55.7164 0.15656 55.1462 0.159716 54.5026 0.160067 53.8017 0.158013 53.0538 0.15387 52.2663 0.147906 51.445 0.140359 50.5951 0.13145 49.7213 0.121392 48.8284 0.11039 47.9214 0.0986473 47.0053 0.0863606 46.0856 0.0737223 45.168 0.060917 44.2582 0.048119 43.3622 0.0354897 42.4855 0.0231725 41.6337 0.0112909 40.812 40.025 0.340946 55.68 0.297797 55.6793 0.254851 55.6791 0.212144 55.6792 0.169722 55.6796 0.127594 55.6804 0.0858046 55.6815 0.0443858 55.6829 0.00336505 55.6846 -0.0372179 55.6866 -0.0773462 55.6889 -0.116991 55.6916 -0.156129 55.6945 -0.194737 55.6977 -0.232791 55.7012 -0.270271 55.705 -0.307155 55.709 -0.343422 55.7133 -0.379052 55.7179 -0.414024 55.7227 -0.448323 55.7277 -0.481926 55.733 -0.514817 55.7386 -0.546982 55.7443 -0.578402 55.7503 -0.609059 55.7565 -0.638952 55.7629 -0.668044 55.7695 -0.696345 55.7762 -0.723833 55.7832 -0.750482 55.7904 -0.776321 55.7977 -0.801279 55.8052 -0.825418 55.8128 -0.848655 55.8206 -0.871052 55.8286 -0.892537 55.8367 -0.913156 55.8449 -0.932862 55.8533 -0.951679 55.8617 -0.96958 55.8703 -0.986573 55.879 -1.00265 55.8878 -1.0178 55.8967 -1.03203 55.9057 -1.04533 55.9147 -1.0577 55.9239 -1.06914 55.9331 -1.07965 55.9423 -1.08922 55.9516 -1.09786 55.961 -1.10556 55.9704 -1.11233 55.9799 -1.11816 55.9893 -1.12306 55.9988 -1.12704 56.0084 -1.13008 56.0179 -1.1322 56.0274 -1.13339 56.037 -1.13367 56.0465 -1.13303 56.056 -1.13148 56.0655 -1.12903 56.075 -1.12567 56.0844 -1.12142 56.0939 -1.11628 56.1032 -1.11025 56.1126 -1.10334 56.1218 -1.09557 56.1311 -1.08692 56.1402 -1.07743 56.1493 -1.06708 56.1583 -1.05589 56.1673 -1.04387 56.1761 -1.03102 56.1849 -1.01736 56.1936 -1.00289 56.2021 -0.987623 56.2106 -0.971568 56.219 -0.954735 56.2272 -0.937134 56.2354 -0.918775 56.2434 -0.899668 56.2513 -0.879824 56.2591 -0.859256 56.2667 -0.837973 56.2742 -0.815988 56.2815 -0.793311 56.2887 -0.769957 56.2958 -0.745935 56.3027 -0.721259 56.3094 -0.695942 56.316 -0.669997 56.3224 -0.643436 56.3286 -0.616272 56.3347 -0.58852 56.3406 -0.560192 56.3463 -0.531303 56.3518 -0.501866 56.3571 -0.471895 56.3622 -0.441404 56.3672 -0.410409 56.3719 -0.378923 56.3764 -0.346961 56.3807 -0.31454 56.3849 -0.281673 56.3888 -0.248378 56.3924 -0.214668 56.3959 -0.180561 56.3991 -0.146073 56.4022 -0.111221 56.405 -0.0760191 56.4075 -0.0404864 56.4099 -0.00463908 56.412 0.0315046 56.4138 0.0679309 56.4154 0.104566 56.4167 0.137144 56.3969 0.153366 56.1747 0.162918 55.7069 0.168193 55.141 0.170223 54.5006 0.169547 53.8024 0.166553 53.0568 0.161551 52.2713 0.154799 51.4517 0.146526 50.6033 0.136948 49.7309 0.126269 48.8391 0.114688 47.933 0.1024 47.0176 0.0895977 46.0984 0.0764664 45.1811 0.063186 44.2715 0.0499263 43.3754 0.0368441 42.4986 0.0240805 41.6465 0.011759 40.8243 40.0368 0.336419 55.7195 0.297059 55.7187 0.257867 55.7183 0.218872 55.7182 0.180112 55.7184 0.141608 55.7189 0.103391 55.7197 0.0654832 55.7208 0.0279122 55.7222 -0.009296 55.7238 -0.0461181 55.7258 -0.0825244 55.728 -0.118491 55.7305 -0.153994 55.7332 -0.18901 55.7362 -0.223516 55.7395 -0.257493 55.743 -0.29092 55.7467 -0.323777 55.7507 -0.356046 55.7549 -0.38771 55.7594 -0.41875 55.7641 -0.44915 55.769 -0.478895 55.7741 -0.507968 55.7794 -0.536353 55.7849 -0.564042 55.7905 -0.591013 55.7964 -0.61726 55.8025 -0.642771 55.8087 -0.667523 55.8151 -0.691528 55.8217 -0.714744 55.8284 -0.737197 55.8353 -0.758842 55.8423 -0.779703 55.8494 -0.799741 55.8567 -0.818975 55.8641 -0.837378 55.8717 -0.854957 55.8793 -0.871697 55.8871 -0.8876 55.8949 -0.902655 55.9029 -0.916861 55.9109 -0.930213 55.919 -0.942708 55.9272 -0.954344 55.9355 -0.965119 55.9438 -0.975031 55.9522 -0.984077 55.9607 -0.992257 55.9692 -0.999571 55.9777 -1.00602 55.9863 -1.0116 55.9949 -1.01632 56.0036 -1.02017 56.0122 -1.02316 56.0209 -1.02529 56.0296 -1.02656 56.0382 -1.02698 56.0469 -1.02654 56.0556 -1.02526 56.0642 -1.02313 56.0729 -1.02016 56.0815 -1.01636 56.0901 -1.01173 56.0986 -1.00627 56.1071 -0.99999 56.1156 -0.9929 56.124 -0.985002 56.1323 -0.976303 56.1406 -0.966811 56.1488 -0.956532 56.157 -0.945474 56.1651 -0.933645 56.1731 -0.921053 56.181 -0.907706 56.1888 -0.893613 56.1965 -0.878784 56.2042 -0.863227 56.2117 -0.84695 56.2191 -0.829966 56.2264 -0.812282 56.2336 -0.793909 56.2407 -0.774859 56.2477 -0.755141 56.2545 -0.734767 56.2612 -0.713748 56.2677 -0.692094 56.2741 -0.669817 56.2804 -0.646929 56.2865 -0.623442 56.2925 -0.599367 56.2983 -0.574718 56.304 -0.549506 56.3095 -0.523744 56.3148 -0.497446 56.32 -0.470624 56.325 -0.443291 56.3298 -0.415461 56.3344 -0.387148 56.3388 -0.358366 56.3431 -0.329131 56.3472 -0.299455 56.3511 -0.269353 56.3548 -0.238841 56.3582 -0.207934 56.3615 -0.176646 56.3646 -0.144993 56.3675 -0.11299 56.3702 -0.0806527 56.3726 -0.0479969 56.3749 -0.0150394 56.3769 0.0182005 56.3787 0.0517123 56.3803 0.085477 56.3817 0.119437 56.3827 0.150069 56.3662 0.165202 56.1596 0.173453 55.6986 0.177599 55.1368 0.178621 54.4996 0.177038 53.804 0.173229 53.0606 0.167492 52.277 0.160078 51.4591 0.151208 50.6122 0.141088 49.741 0.129916 48.8503 0.117884 47.945 0.105181 47.0303 0.0919924 46.1116 0.078498 45.1946 0.0648716 44.2851 0.0512772 43.389 0.0378662 42.512 0.0247744 41.6596 0.0121203 40.8369 40.0489 0.330211 55.7554 0.294383 55.7545 0.258679 55.754 0.223112 55.7538 0.187735 55.7538 0.152563 55.7541 0.117628 55.7546 0.082961 55.7555 0.0485836 55.7565 0.014527 55.7579 -0.0191902 55.7595 -0.0525501 55.7613 -0.0855277 55.7634 -0.1181 55.7658 -0.150247 55.7684 -0.181946 55.7712 -0.213178 55.7742 -0.243923 55.7775 -0.274163 55.781 -0.303879 55.7847 -0.333053 55.7886 -0.36167 55.7927 -0.389712 55.797 -0.417164 55.8015 -0.444012 55.8062 -0.470239 55.8111 -0.495835 55.8161 -0.520782 55.8214 -0.54507 55.8268 -0.568688 55.8323 -0.59162 55.838 -0.613865 55.8439 -0.635397 55.8499 -0.656225 55.8561 -0.676323 55.8624 -0.695698 55.8688 -0.714327 55.8754 -0.732215 55.882 -0.749346 55.8888 -0.76572 55.8957 -0.781326 55.9027 -0.796162 55.9097 -0.810219 55.9169 -0.823496 55.9242 -0.835986 55.9315 -0.847687 55.9389 -0.858596 55.9464 -0.868709 55.954 -0.878025 55.9616 -0.886542 55.9692 -0.894258 55.9769 -0.901172 55.9847 -0.907285 55.9924 -0.912595 56.0002 -0.917105 56.0081 -0.920813 56.0159 -0.923721 56.0238 -0.925832 56.0317 -0.927147 56.0396 -0.927667 56.0474 -0.927397 56.0553 -0.926338 56.0632 -0.924494 56.071 -0.92187 56.0788 -0.918467 56.0866 -0.914292 56.0944 -0.909349 56.1022 -0.903643 56.1098 -0.897179 56.1175 -0.889964 56.1251 -0.882002 56.1326 -0.873301 56.1401 -0.863866 56.1475 -0.853706 56.1549 -0.842826 56.1622 -0.831235 56.1694 -0.81894 56.1765 -0.80595 56.1835 -0.792272 56.1905 -0.777916 56.1973 -0.76289 56.2041 -0.747202 56.2107 -0.730863 56.2173 -0.713881 56.2237 -0.696266 56.23 -0.678029 56.2362 -0.659179 56.2423 -0.639727 56.2483 -0.619682 56.2541 -0.599056 56.2598 -0.577861 56.2653 -0.556106 56.2708 -0.533805 56.276 -0.510968 56.2811 -0.487608 56.2861 -0.463736 56.2909 -0.439367 56.2956 -0.414511 56.3001 -0.389183 56.3044 -0.363395 56.3086 -0.337159 56.3126 -0.31049 56.3164 -0.283402 56.3201 -0.255907 56.3236 -0.228019 56.3269 -0.199753 56.33 -0.171122 56.3329 -0.142141 56.3356 -0.112825 56.3382 -0.0831883 56.3405 -0.0532468 56.3427 -0.0230157 56.3446 0.00748941 56.3464 0.0382553 56.3479 0.0692634 56.3493 0.100499 56.3504 0.131919 56.3513 0.160615 56.3375 0.174751 56.1454 0.181811 55.6915 0.184946 55.1337 0.185079 54.4994 0.182706 53.8063 0.178196 53.0651 0.171841 52.2833 0.163881 51.4671 0.15453 50.6216 0.143985 49.7515 0.132438 48.8618 0.120073 47.9574 0.107072 47.0433 0.093613 46.1251 0.0798704 45.2084 0.0660113 44.299 0.0521932 43.4028 0.0385616 42.5256 0.0252471 41.6729 0.0123619 40.8498 40.0613 0.322413 55.788 0.289848 55.7871 0.257385 55.7865 0.225032 55.7861 0.192828 55.786 0.160792 55.7861 0.128946 55.7865 0.0973177 55.7871 0.0659278 55.7879 0.0348017 55.789 0.00396579 55.7903 -0.0265536 55.7919 -0.0567418 55.7936 -0.0865772 55.7956 -0.116039 55.7978 -0.145107 55.8002 -0.173763 55.8029 -0.201988 55.8057 -0.229763 55.8087 -0.257072 55.812 -0.283896 55.8154 -0.310222 55.819 -0.336032 55.8228 -0.361312 55.8268 -0.386049 55.8309 -0.410228 55.8353 -0.433836 55.8397 -0.456861 55.8444 -0.47929 55.8492 -0.501113 55.8541 -0.522315 55.8593 -0.54289 55.8645 -0.562821 55.8699 -0.582107 55.8754 -0.60073 55.881 -0.61869 55.8868 -0.635971 55.8926 -0.652571 55.8986 -0.668479 55.9047 -0.683693 55.9109 -0.698203 55.9172 -0.712006 55.9236 -0.725096 55.93 -0.737468 55.9366 -0.749119 55.9432 -0.760043 55.9499 -0.770238 55.9566 -0.779701 55.9634 -0.78843 55.9703 -0.796422 55.9772 -0.803675 55.9842 -0.810187 55.9912 -0.815959 55.9982 -0.82099 56.0053 -0.825279 56.0124 -0.828827 56.0195 -0.831635 56.0266 -0.833703 56.0337 -0.835034 56.0409 -0.835628 56.048 -0.835489 56.0552 -0.834618 56.0623 -0.833019 56.0694 -0.830695 56.0765 -0.82765 56.0836 -0.823886 56.0907 -0.81941 56.0977 -0.814224 56.1047 -0.808335 56.1116 -0.801746 56.1185 -0.794465 56.1254 -0.786495 56.1322 -0.777844 56.1389 -0.768517 56.1456 -0.758521 56.1522 -0.747863 56.1587 -0.73655 56.1652 -0.724589 56.1716 -0.711988 56.1779 -0.698755 56.1841 -0.684897 56.1902 -0.670424 56.1963 -0.655343 56.2022 -0.639663 56.208 -0.623395 56.2138 -0.606546 56.2194 -0.589127 56.2249 -0.571148 56.2303 -0.552618 56.2356 -0.533548 56.2407 -0.513949 56.2457 -0.493832 56.2506 -0.473207 56.2554 -0.452085 56.26 -0.430479 56.2645 -0.408399 56.2689 -0.385857 56.2731 -0.362865 56.2771 -0.339435 56.281 -0.315579 56.2847 -0.291309 56.2883 -0.266638 56.2918 -0.241579 56.295 -0.216144 56.2981 -0.190348 56.3011 -0.164203 56.3038 -0.137724 56.3064 -0.110925 56.3088 -0.0838192 56.3111 -0.0564223 56.3131 -0.0287483 56.315 -0.000812333 56.3167 0.0273705 56.3182 0.0557891 56.3195 0.0844247 56.3207 0.113263 56.3216 0.14227 56.3223 0.169051 56.3108 0.182252 56.1322 0.188219 55.6856 0.190442 55.1314 0.189774 54.5001 0.186712 53.8094 0.18161 53.0702 0.174745 52.2902 0.166347 51.4755 0.156622 50.6313 0.145761 49.7624 0.133945 48.8736 0.121352 47.9699 0.108158 47.0565 0.0945343 46.1387 0.080647 45.2222 0.0666572 44.313 0.0527164 43.4168 0.0389643 42.5394 0.0255254 41.6863 0.0125061 40.8628 40.0738 0.313654 55.8176 0.284083 55.8167 0.254587 55.816 0.225172 55.8155 0.195877 55.8153 0.166719 55.8153 0.137726 55.8155 0.108917 55.8159 0.0803137 55.8165 0.0519369 55.8174 0.0238066 55.8185 -0.00405389 55.8197 -0.031629 55.8212 -0.0588971 55.8229 -0.0858393 55.8248 -0.112437 55.8268 -0.138672 55.8291 -0.164529 55.8316 -0.189988 55.8342 -0.215035 55.837 -0.239652 55.84 -0.263824 55.8432 -0.287536 55.8465 -0.310772 55.85 -0.333519 55.8537 -0.355763 55.8575 -0.377491 55.8615 -0.398692 55.8656 -0.419354 55.8699 -0.439467 55.8743 -0.459018 55.8788 -0.477999 55.8835 -0.496398 55.8883 -0.514209 55.8932 -0.531419 55.8982 -0.548024 55.9034 -0.564011 55.9086 -0.579377 55.914 -0.594112 55.9194 -0.60821 55.925 -0.621664 55.9306 -0.634471 55.9364 -0.646623 55.9422 -0.658117 55.948 -0.668948 55.954 -0.679112 55.96 -0.688606 55.9661 -0.697427 55.9722 -0.705572 55.9784 -0.713039 55.9847 -0.719827 55.991 -0.725932 55.9973 -0.731356 56.0036 -0.736096 56.01 -0.740152 56.0164 -0.743524 56.0228 -0.746213 56.0293 -0.748219 56.0357 -0.749543 56.0422 -0.750186 56.0487 -0.750151 56.0551 -0.74944 56.0616 -0.748054 56.068 -0.745996 56.0745 -0.743271 56.0809 -0.73988 56.0873 -0.735828 56.0936 -0.731118 56.1 -0.725756 56.1062 -0.719745 56.1125 -0.713091 56.1187 -0.705798 56.1249 -0.697872 56.131 -0.689319 56.137 -0.680145 56.143 -0.670355 56.1489 -0.659957 56.1548 -0.648957 56.1606 -0.637363 56.1663 -0.625182 56.1719 -0.612421 56.1775 -0.599089 56.1829 -0.585193 56.1883 -0.570742 56.1936 -0.555745 56.1988 -0.540209 56.2039 -0.524146 56.2088 -0.507563 56.2137 -0.49047 56.2185 -0.472877 56.2231 -0.454793 56.2277 -0.436227 56.2321 -0.417192 56.2364 -0.397696 56.2405 -0.377751 56.2446 -0.357367 56.2485 -0.336555 56.2522 -0.315326 56.2559 -0.293692 56.2594 -0.271665 56.2627 -0.249256 56.2659 -0.226479 56.269 -0.203345 56.2719 -0.179866 56.2747 -0.156057 56.2773 -0.131929 56.2797 -0.107496 56.282 -0.0827712 56.2841 -0.0577672 56.2861 -0.0324976 56.2879 -0.00697591 56.2895 0.0187828 56.2909 0.0447678 56.2922 0.0709604 56.2933 0.0973488 56.2943 0.123919 56.295 0.150645 56.2956 0.175554 56.2859 0.187877 56.1199 0.192853 55.6806 0.194268 55.13 0.192908 54.5015 0.18925 53.8131 0.183645 53.0758 0.176361 52.2975 0.167619 51.4842 0.157615 50.6413 0.146531 49.7735 0.134541 48.8856 0.121815 47.9827 0.108522 47.0698 0.0948256 46.1524 0.0808859 45.2362 0.0668571 44.327 0.0528844 43.4307 0.0391011 42.5531 0.025626 41.6998 0.0125616 40.8759 40.0863 0.30406 55.8445 0.277252 55.8435 0.250498 55.8428 0.223805 55.8422 0.197197 55.8419 0.1707 55.8418 0.144327 55.8418 0.118105 55.8421 0.0920542 55.8426 0.0661995 55.8432 0.0405571 55.8441 0.0151457 55.8451 -0.0100114 55.8464 -0.0349004 55.8478 -0.0595017 55.8494 -0.0837978 55.8511 -0.107773 55.8531 -0.131411 55.8552 -0.154696 55.8575 -0.177613 55.8599 -0.200149 55.8625 -0.222288 55.8653 -0.244018 55.8682 -0.265324 55.8713 -0.286194 55.8746 -0.306614 55.8779 -0.326572 55.8814 -0.346056 55.8851 -0.365054 55.8889 -0.383556 55.8928 -0.401549 55.8968 -0.419026 55.9009 -0.435976 55.9052 -0.45239 55.9096 -0.46826 55.9141 -0.483579 55.9187 -0.498337 55.9234 -0.512529 55.9282 -0.526147 55.9331 -0.539184 55.938 -0.551634 55.9431 -0.563492 55.9482 -0.574752 55.9534 -0.585409 55.9587 -0.595459 55.9641 -0.604897 55.9695 -0.61372 55.9749 -0.621925 55.9804 -0.629508 55.986 -0.636468 55.9916 -0.642802 55.9973 -0.648509 56.003 -0.653587 56.0087 -0.658035 56.0145 -0.661853 56.0202 -0.665041 56.026 -0.667598 56.0318 -0.669526 56.0377 -0.670824 56.0435 -0.671494 56.0493 -0.671537 56.0552 -0.670956 56.061 -0.669751 56.0668 -0.667926 56.0726 -0.665483 56.0784 -0.662425 56.0842 -0.658754 56.09 -0.654476 56.0957 -0.649592 56.1014 -0.644109 56.107 -0.63803 56.1126 -0.63136 56.1182 -0.624103 56.1237 -0.616266 56.1292 -0.607853 56.1346 -0.598871 56.14 -0.589325 56.1452 -0.579222 56.1505 -0.568569 56.1556 -0.557372 56.1607 -0.545638 56.1657 -0.533375 56.1707 -0.52059 56.1755 -0.507291 56.1803 -0.493484 56.185 -0.47918 56.1895 -0.464385 56.194 -0.449109 56.1984 -0.43336 56.2027 -0.417147 56.2069 -0.400479 56.211 -0.383366 56.215 -0.365818 56.2188 -0.347844 56.2226 -0.329456 56.2262 -0.310662 56.2297 -0.291474 56.2331 -0.271904 56.2363 -0.251961 56.2394 -0.231656 56.2424 -0.211002 56.2453 -0.19001 56.248 -0.168691 56.2506 -0.147057 56.253 -0.125119 56.2553 -0.10289 56.2575 -0.0803821 56.2595 -0.0576076 56.2613 -0.0345786 56.263 -0.0113088 56.2646 0.0121865 56.266 0.0358987 56.2672 0.0598111 56.2683 0.0839108 56.2692 0.108185 56.27 0.13262 56.2706 0.157193 56.271 0.180283 56.2628 0.191765 56.1084 0.195832 55.6765 0.196524 55.1293 0.194578 54.5034 0.190428 53.8172 0.184417 53.0818 0.176807 52.3051 0.167811 51.4932 0.157616 50.6515 0.146397 49.7847 0.13432 48.8977 0.121548 47.9954 0.108241 47.0831 0.0945567 46.1661 0.0806484 45.2501 0.0666633 44.341 0.0527398 43.4447 0.0390054 42.5669 0.0255742 41.7132 0.0125455 40.8889 40.0989 0.293873 55.8687 0.269611 55.8677 0.245385 55.867 0.221201 55.8664 0.197089 55.866 0.173065 55.8658 0.149149 55.8658 0.125361 55.8659 0.101715 55.8662 0.0782264 55.8667 0.054913 55.8674 0.0317943 55.8683 0.00888951 55.8693 -0.0137828 55.8705 -0.0362121 55.8718 -0.0583775 55.8733 -0.0802626 55.875 -0.101851 55.8768 -0.123127 55.8788 -0.144076 55.8809 -0.164682 55.8832 -0.184933 55.8856 -0.204815 55.8881 -0.224315 55.8908 -0.243422 55.8937 -0.262125 55.8966 -0.280411 55.8997 -0.29827 55.9029 -0.315692 55.9063 -0.332666 55.9097 -0.349182 55.9133 -0.365231 55.917 -0.380802 55.9208 -0.395888 55.9247 -0.410479 55.9287 -0.424569 55.9328 -0.438149 55.937 -0.451214 55.9412 -0.463756 55.9456 -0.475768 55.95 -0.487246 55.9546 -0.498184 55.9592 -0.508576 55.9638 -0.518419 55.9685 -0.527708 55.9733 -0.536438 55.9782 -0.544605 55.9831 -0.552208 55.9881 -0.559242 55.993 -0.565704 55.9981 -0.571593 56.0032 -0.576906 56.0083 -0.581643 56.0134 -0.5858 56.0186 -0.589379 56.0238 -0.592378 56.029 -0.594797 56.0343 -0.596636 56.0395 -0.597895 56.0448 -0.598576 56.05 -0.598678 56.0553 -0.598205 56.0605 -0.597158 56.0658 -0.595538 56.071 -0.593348 56.0762 -0.59059 56.0814 -0.587268 56.0866 -0.583384 56.0918 -0.578943 56.0969 -0.573947 56.102 -0.568401 56.1071 -0.562309 56.1121 -0.555676 56.1171 -0.548506 56.122 -0.540805 56.1269 -0.532577 56.1317 -0.523828 56.1365 -0.514564 56.1412 -0.504791 56.1459 -0.494514 56.1504 -0.483742 56.155 -0.472479 56.1594 -0.460734 56.1638 -0.448513 56.1681 -0.435823 56.1723 -0.422673 56.1764 -0.409071 56.1804 -0.395024 56.1844 -0.380541 56.1882 -0.36563 56.192 -0.350302 56.1957 -0.334563 56.1992 -0.318424 56.2027 -0.301894 56.206 -0.284982 56.2093 -0.267699 56.2124 -0.250053 56.2154 -0.232056 56.2183 -0.213716 56.2211 -0.195045 56.2237 -0.176052 56.2263 -0.156749 56.2287 -0.137146 56.231 -0.117254 56.2331 -0.0970858 56.2352 -0.0766516 56.237 -0.0559635 56.2388 -0.0350338 56.2404 -0.013874 56.2419 0.00749934 56.2432 0.0290806 56.2444 0.0508523 56.2455 0.0728057 56.2464 0.0949274 56.2471 0.117202 56.2477 0.139616 56.2482 0.162155 56.2485 0.183479 56.2414 0.194146 56.0977 0.197382 55.6733 0.197442 55.1293 0.194975 54.5059 0.190412 53.8218 0.184078 53.0881 0.176223 52.313 0.167053 51.5024 0.156746 50.6618 0.145469 49.796 0.133381 48.9098 0.120638 48.0082 0.107391 47.0963 0.0937927 46.1797 0.0799876 45.2639 0.0661163 44.3549 0.052311 43.4585 0.0386935 42.5805 0.0253731 41.7265 0.0124444 40.9019 40.1113 0.283307 55.8907 0.261367 55.8897 0.239441 55.8889 0.217541 55.8883 0.195685 55.8879 0.173898 55.8876 0.152196 55.8875 0.130598 55.8875 0.109125 55.8877 0.0877962 55.8881 0.0666281 55.8886 0.0456353 55.8892 0.0248313 55.8901 0.00423013 55.8911 -0.0161514 55.8922 -0.0363043 55.8935 -0.0562129 55.8949 -0.0758639 55.8964 -0.0952433 55.8981 -0.114338 55.9 -0.133134 55.902 -0.151619 55.9041 -0.169778 55.9063 -0.1876 55.9086 -0.205072 55.9111 -0.222182 55.9137 -0.238919 55.9165 -0.255271 55.9193 -0.27123 55.9222 -0.286785 55.9253 -0.301926 55.9285 -0.316646 55.9317 -0.330934 55.9351 -0.344784 55.9385 -0.358186 55.9421 -0.371134 55.9457 -0.383619 55.9494 -0.395636 55.9533 -0.407176 55.9571 -0.418234 55.9611 -0.428805 55.9651 -0.438882 55.9692 -0.44846 55.9734 -0.457536 55.9776 -0.466105 55.9819 -0.474163 55.9862 -0.481706 55.9906 -0.488732 55.9951 -0.495237 55.9996 -0.501219 56.0041 -0.506675 56.0086 -0.511604 56.0132 -0.516003 56.0178 -0.519872 56.0225 -0.52321 56.0272 -0.526015 56.0318 -0.528288 56.0365 -0.530029 56.0413 -0.531237 56.046 -0.531913 56.0507 -0.532057 56.0554 -0.531672 56.0602 -0.530758 56.0649 -0.529317 56.0696 -0.527352 56.0743 -0.524864 56.079 -0.521855 56.0836 -0.518329 56.0883 -0.514289 56.0929 -0.509738 56.0975 -0.50468 56.102 -0.499119 56.1065 -0.493057 56.111 -0.486501 56.1155 -0.479454 56.1198 -0.471921 56.1242 -0.463908 56.1285 -0.455419 56.1327 -0.44646 56.1369 -0.437038 56.141 -0.427158 56.1451 -0.416827 56.1491 -0.40605 56.153 -0.394836 56.1569 -0.383191 56.1606 -0.371121 56.1643 -0.358635 56.168 -0.34574 56.1715 -0.332443 56.1749 -0.318753 56.1783 -0.304678 56.1816 -0.290225 56.1848 -0.275403 56.1879 -0.260222 56.1908 -0.244689 56.1937 -0.228813 56.1965 -0.212605 56.1992 -0.196073 56.2018 -0.179228 56.2042 -0.162078 56.2066 -0.144634 56.2088 -0.126907 56.211 -0.108906 56.213 -0.0906432 56.2149 -0.0721285 56.2166 -0.053373 56.2183 -0.0343882 56.2198 -0.0151851 56.2212 0.00422282 56.2225 0.0238315 56.2236 0.0436247 56.2246 0.0635916 56.2255 0.083719 56.2262 0.103993 56.2268 0.124404 56.2273 0.14494 56.2276 0.165585 56.2278 0.185239 56.2218 0.19515 56.0878 0.197671 55.6708 0.197182 55.1298 0.194259 54.5088 0.189347 53.8267 0.182758 53.0947 0.17473 52.321 0.165455 51.5117 0.155106 50.6721 0.143841 49.8073 0.13181 48.9218 0.119162 48.0208 0.106043 47.1094 0.092596 46.1931 0.0789592 45.2775 0.0652668 44.3686 0.0516449 43.4721 0.0382099 42.5939 0.0250659 41.7397 0.0123029 40.9146 40.1236 0.272634 55.9104 0.252835 55.9095 0.233048 55.9087 0.213281 55.9081 0.193544 55.9076 0.173855 55.9073 0.154228 55.9071 0.134679 55.9071 0.115225 55.9072 0.0958803 55.9074 0.0766627 55.9078 0.057588 55.9083 0.0386749 55.909 0.0199406 55.9098 0.00140155 55.9107 -0.0169282 55.9118 -0.0350376 55.913 -0.0529129 55.9143 -0.0705419 55.9158 -0.0879127 55.9173 -0.105014 55.9191 -0.121835 55.9209 -0.138365 55.9228 -0.154593 55.9249 -0.170508 55.927 -0.186101 55.9293 -0.201361 55.9317 -0.216279 55.9342 -0.230843 55.9368 -0.245046 55.9395 -0.258877 55.9423 -0.272329 55.9452 -0.285391 55.9481 -0.298057 55.9512 -0.310319 55.9544 -0.32217 55.9576 -0.333603 55.9609 -0.344611 55.9643 -0.355189 55.9677 -0.365331 55.9712 -0.37503 55.9748 -0.384282 55.9785 -0.39308 55.9822 -0.401422 55.986 -0.409303 55.9898 -0.416718 55.9937 -0.423664 55.9976 -0.430138 56.0016 -0.436136 56.0056 -0.441656 56.0096 -0.446695 56.0137 -0.451253 56.0178 -0.455326 56.0219 -0.458914 56.0261 -0.462015 56.0303 -0.464629 56.0345 -0.466756 56.0387 -0.468393 56.0429 -0.469543 56.0471 -0.470205 56.0514 -0.470379 56.0556 -0.470067 56.0598 -0.46927 56.0641 -0.467989 56.0683 -0.466225 56.0725 -0.463981 56.0767 -0.461259 56.0809 -0.458061 56.0851 -0.45439 56.0892 -0.45025 56.0933 -0.445642 56.0974 -0.440572 56.1015 -0.435042 56.1055 -0.429057 56.1095 -0.42262 56.1134 -0.415737 56.1173 -0.408412 56.1212 -0.40065 56.125 -0.392456 56.1287 -0.383836 56.1324 -0.374795 56.136 -0.365338 56.1396 -0.355472 56.1431 -0.345204 56.1466 -0.334538 56.15 -0.323483 56.1533 -0.312044 56.1565 -0.300229 56.1597 -0.288044 56.1628 -0.275498 56.1658 -0.262598 56.1687 -0.249352 56.1715 -0.235768 56.1743 -0.221853 56.1769 -0.207617 56.1795 -0.193067 56.182 -0.178214 56.1843 -0.163065 56.1866 -0.14763 56.1888 -0.131919 56.1909 -0.11594 56.1929 -0.0997033 56.1947 -0.0832187 56.1965 -0.066496 56.1981 -0.049545 56.1997 -0.0323756 56.2011 -0.0149986 56.2024 0.00257396 56.2036 0.0203342 56.2047 0.0382713 56.2057 0.0563715 56.2065 0.0746262 56.2072 0.0930218 56.2078 0.11155 56.2083 0.130199 56.2087 0.148954 56.2089 0.167802 56.209 0.185838 56.2037 0.194988 56.0787 0.196837 55.6689 0.195844 55.1308 0.192543 54.5121 0.187355 53.8319 0.18058 53.1015 0.172443 52.3291 0.163129 51.521 0.1528 50.6825 0.141607 49.8184 0.129694 48.9337 0.117202 48.0333 0.104269 47.1224 0.0910305 46.2063 0.0776193 45.2909 0.0641627 44.382 0.0507804 43.4855 0.0375827 42.6071 0.0246673 41.7526 0.012119 40.9272 40.1357 0.261558 55.9282 0.243712 55.9273 0.225859 55.9265 0.208015 55.9259 0.190197 55.9254 0.172423 55.925 0.154703 55.9248 0.137057 55.9247 0.119493 55.9247 0.102025 55.9249 0.0846634 55.9252 0.0674241 55.9256 0.0503177 55.9261 0.0333567 55.9267 0.0165542 55.9275 -7.44784e-005 55.9284 -0.016518 55.9294 -0.0327624 55.9306 -0.0487946 55.9318 -0.0646012 55.9332 -0.08017 55.9346 -0.0954889 55.9362 -0.110547 55.9379 -0.125333 55.9397 -0.139837 55.9416 -0.154051 55.9435 -0.167963 55.9456 -0.181567 55.9478 -0.194852 55.9501 -0.207811 55.9525 -0.220435 55.9549 -0.232718 55.9575 -0.24465 55.9601 -0.256225 55.9628 -0.267434 55.9656 -0.278273 55.9684 -0.288733 55.9713 -0.298809 55.9743 -0.308493 55.9774 -0.317782 55.9805 -0.326668 55.9837 -0.335148 55.987 -0.343217 55.9903 -0.350869 55.9936 -0.358101 55.997 -0.36491 56.0005 -0.371291 56.004 -0.377241 56.0075 -0.382758 56.0111 -0.387838 56.0147 -0.39248 56.0183 -0.396681 56.022 -0.400439 56.0257 -0.403754 56.0294 -0.406623 56.0331 -0.409047 56.0369 -0.411023 56.0406 -0.412553 56.0444 -0.413636 56.0482 -0.414272 56.052 -0.414461 56.0558 -0.414205 56.0596 -0.413504 56.0634 -0.412359 56.0672 -0.410772 56.0709 -0.408745 56.0747 -0.406279 56.0784 -0.403377 56.0822 -0.400041 56.0859 -0.396274 56.0896 -0.392079 56.0932 -0.387459 56.0968 -0.382418 56.1004 -0.376958 56.104 -0.371084 56.1075 -0.364801 56.111 -0.358111 56.1145 -0.35102 56.1179 -0.343532 56.1212 -0.335652 56.1245 -0.327386 56.1278 -0.318738 56.131 -0.309715 56.1341 -0.300322 56.1372 -0.290564 56.1402 -0.280449 56.1432 -0.269983 56.146 -0.259171 56.1489 -0.248022 56.1516 -0.236541 56.1543 -0.224736 56.1569 -0.212615 56.1594 -0.200184 56.1618 -0.187451 56.1642 -0.174425 56.1665 -0.161113 56.1687 -0.147524 56.1708 -0.133665 56.1728 -0.119546 56.1747 -0.105174 56.1765 -0.0905591 56.1782 -0.0757096 56.1799 -0.0606346 56.1814 -0.0453435 56.1829 -0.0298455 56.1842 -0.0141506 56.1854 0.00173046 56.1865 0.0177919 56.1876 0.0340237 56.1885 0.0504122 56.1893 0.0669494 56.19 0.0836233 56.1906 0.100426 56.191 0.117343 56.1914 0.134365 56.1916 0.151481 56.1918 0.168683 56.1918 0.18522 56.1872 0.193676 56.0702 0.194953 55.6676 0.193543 55.1322 0.189937 54.5157 0.18454 53.8373 0.177642 53.1084 0.169458 52.3373 0.160162 51.5303 0.149911 50.6927 0.138845 49.8295 0.127103 48.9455 0.114817 48.0456 0.10212 47.1351 0.089139 46.2193 0.0760009 45.3041 0.0628258 44.3952 0.0497271 43.4986 0.0368085 42.6201 0.0241625 41.7652 0.0118692 40.9395 40.1476 0.250833 55.9443 0.234772 55.9434 0.218697 55.9426 0.202621 55.942 0.186555 55.9415 0.170513 55.9411 0.154511 55.9408 0.138558 55.9407 0.122674 55.9406 0.106874 55.9407 0.0911731 55.9409 0.0755815 55.9412 0.0601117 55.9416 0.044776 55.9421 0.0295852 55.9427 0.0145496 55.9435 -0.000318947 55.9443 -0.0150119 55.9453 -0.0295193 55.9463 -0.0438304 55.9475 -0.0579343 55.9487 -0.071821 55.9501 -0.0854799 55.9515 -0.0989008 55.9531 -0.112073 55.9547 -0.124987 55.9565 -0.137634 55.9583 -0.150004 55.9602 -0.162089 55.9622 -0.17388 55.9642 -0.185369 55.9664 -0.196549 55.9686 -0.207413 55.9709 -0.217954 55.9733 -0.228165 55.9758 -0.23804 55.9783 -0.247573 55.9809 -0.256759 55.9835 -0.265592 55.9862 -0.274067 55.989 -0.282178 55.9918 -0.289922 55.9947 -0.297292 55.9976 -0.304287 56.0006 -0.310901 56.0036 -0.31713 56.0067 -0.322972 56.0098 -0.328422 56.013 -0.333479 56.0161 -0.33814 56.0193 -0.342401 56.0226 -0.346262 56.0258 -0.349719 56.0291 -0.352772 56.0324 -0.35542 56.0358 -0.35766 56.0391 -0.359493 56.0425 -0.360917 56.0458 -0.361934 56.0492 -0.362542 56.0526 -0.362742 56.056 -0.362534 56.0594 -0.361919 56.0628 -0.360899 56.0661 -0.359474 56.0695 -0.357646 56.0729 -0.355417 56.0762 -0.352788 56.0795 -0.349762 56.0828 -0.346341 56.0861 -0.342528 56.0894 -0.338326 56.0926 -0.333738 56.0959 -0.328767 56.099 -0.323416 56.1022 -0.31769 56.1053 -0.311592 56.1084 -0.305126 56.1114 -0.298297 56.1144 -0.291109 56.1173 -0.283568 56.1202 -0.275677 56.1231 -0.267442 56.1259 -0.258869 56.1286 -0.249963 56.1313 -0.240729 56.1339 -0.231174 56.1365 -0.221304 56.139 -0.211124 56.1414 -0.200642 56.1438 -0.189864 56.1461 -0.178798 56.1483 -0.167448 56.1505 -0.155824 56.1526 -0.143932 56.1546 -0.13178 56.1565 -0.119376 56.1584 -0.106726 56.1601 -0.0938394 56.1618 -0.0807235 56.1634 -0.0673868 56.1649 -0.0538371 56.1663 -0.0400835 56.1677 -0.0261343 56.1689 -0.0119985 56.1701 0.0023122 56.1711 0.0167935 56.1721 0.0314345 56.1729 0.0462236 56.1737 0.0611522 56.1744 0.0762107 56.1749 0.0913897 56.1754 0.106677 56.1757 0.122065 56.176 0.137543 56.1762 0.153101 56.1762 0.168725 56.1762 0.183797 56.1721 0.191534 56.0625 0.192272 55.6669 0.190486 55.134 0.186615 54.5196 0.181053 53.8428 0.174078 53.1154 0.165892 52.3455 0.156662 51.5395 0.146533 50.7029 0.13564 49.8404 0.124112 48.957 0.112076 48.0577 0.099656 47.1475 0.0869742 46.232 0.0741492 45.3169 0.061295 44.408 0.0485187 43.5114 0.0359186 42.6327 0.0235829 41.7776 0.0115879 40.9515 40.1592 0.239929 55.9587 0.225471 55.9578 0.211002 55.9571 0.196535 55.9565 0.182079 55.9559 0.167647 55.9555 0.153248 55.9552 0.138894 55.955 0.124593 55.9549 0.110355 55.9549 0.0961909 55.955 0.0821132 55.9552 0.0681336 55.9555 0.0542654 55.956 0.0405203 55.9565 0.0269095 55.9571 0.0134472 55.9578 0.000144014 55.9586 -0.0129914 55.9594 -0.025953 55.9604 -0.0387277 55.9615 -0.0513071 55.9627 -0.0636827 55.9639 -0.0758457 55.9652 -0.0877875 55.9667 -0.0995 55.9682 -0.110976 55.9698 -0.122206 55.9714 -0.133184 55.9731 -0.143901 55.975 -0.154348 55.9768 -0.164519 55.9788 -0.174407 55.9808 -0.184005 55.9829 -0.193306 55.9851 -0.202304 55.9873 -0.210993 55.9896 -0.219367 55.9919 -0.227421 55.9943 -0.235151 55.9967 -0.24255 55.9992 -0.249615 56.0018 -0.256342 56.0044 -0.262726 56.007 -0.268764 56.0097 -0.274453 56.0124 -0.279788 56.0151 -0.284768 56.0179 -0.28939 56.0207 -0.293651 56.0236 -0.297549 56.0265 -0.301082 56.0294 -0.304248 56.0323 -0.307046 56.0352 -0.309475 56.0382 -0.311534 56.0412 -0.313221 56.0442 -0.314537 56.0472 -0.31548 56.0502 -0.316052 56.0532 -0.316251 56.0562 -0.316078 56.0592 -0.315534 56.0622 -0.314621 56.0652 -0.313337 56.0682 -0.311686 56.0712 -0.309668 56.0742 -0.307285 56.0772 -0.304539 56.0801 -0.301433 56.083 -0.297968 56.0859 -0.294147 56.0888 -0.289973 56.0917 -0.285449 56.0945 -0.280579 56.0973 -0.275365 56.1001 -0.269811 56.1028 -0.263921 56.1055 -0.257699 56.1082 -0.251149 56.1108 -0.244276 56.1134 -0.237084 56.1159 -0.229578 56.1184 -0.221763 56.1208 -0.213644 56.1232 -0.205226 56.1255 -0.196515 56.1278 -0.187517 56.13 -0.178237 56.1322 -0.168681 56.1342 -0.158856 56.1363 -0.148768 56.1382 -0.138423 56.1401 -0.127828 56.142 -0.116988 56.1437 -0.105913 56.1454 -0.0946073 56.147 -0.0830794 56.1486 -0.0713362 56.1501 -0.0593853 56.1514 -0.0472349 56.1528 -0.0348926 56.154 -0.0223669 56.1551 -0.00966598 56.1562 0.00320042 56.1572 0.0162297 56.1581 0.0294093 56.1589 0.0427308 56.1596 0.0561858 56.1602 0.0697649 56.1608 0.0834599 56.1612 0.0972623 56.1616 0.111164 56.1618 0.125155 56.162 0.139227 56.1621 0.153371 56.1621 0.167578 56.1619 0.181332 56.1584 0.188441 56.0554 0.188744 55.6666 0.186662 55.136 0.182597 54.5236 0.176935 53.8485 0.16994 53.1224 0.161806 52.3536 0.152689 51.5486 0.142728 50.7128 0.13205 49.8511 0.120777 48.9683 0.10903 48.0694 0.0969247 47.1596 0.0845776 46.2444 0.0721006 45.3294 0.0596012 44.4205 0.0471809 43.5238 0.034933 42.6449 0.0229408 41.7896 0.0112763 40.9631 40.1705 0.229424 55.9716 0.216475 55.9708 0.203495 55.9701 0.190499 55.9695 0.177497 55.9689 0.164505 55.9685 0.151537 55.9682 0.138609 55.9679 0.125729 55.9678 0.11291 55.9677 0.100161 55.9678 0.0874932 55.9679 0.0749136 55.9681 0.0624314 55.9684 0.0500555 55.9688 0.0377943 55.9693 0.0256562 55.9699 0.013653 55.9706 0.00179288 55.9713 -0.00990818 55.9721 -0.02145 55.973 -0.0328198 55.974 -0.0440085 55.9751 -0.0550076 55.9762 -0.0658086 55.9775 -0.0764038 55.9788 -0.0867856 55.9801 -0.0969466 55.9816 -0.10688 55.9831 -0.116579 55.9847 -0.126038 55.9863 -0.135249 55.988 -0.144207 55.9898 -0.152906 55.9916 -0.161339 55.9935 -0.169502 55.9954 -0.177388 55.9974 -0.184992 55.9995 -0.192308 56.0016 -0.199332 56.0038 -0.20606 56.006 -0.212486 56.0082 -0.218608 56.0105 -0.224421 56.0128 -0.22992 56.0152 -0.235104 56.0176 -0.239968 56.02 -0.24451 56.0225 -0.248727 56.025 -0.252618 56.0275 -0.256178 56.03 -0.259407 56.0326 -0.262303 56.0352 -0.264864 56.0378 -0.267089 56.0404 -0.268977 56.0431 -0.270528 56.0457 -0.271739 56.0484 -0.272613 56.051 -0.273147 56.0537 -0.273343 56.0564 -0.2732 56.0591 -0.272718 56.0617 -0.2719 56.0644 -0.270745 56.0671 -0.269254 56.0697 -0.26743 56.0724 -0.265273 56.075 -0.262785 56.0776 -0.259969 56.0802 -0.256826 56.0828 -0.253359 56.0854 -0.24957 56.0879 -0.245462 56.0904 -0.241038 56.0929 -0.236301 56.0953 -0.231254 56.0978 -0.225901 56.1002 -0.220246 56.1025 -0.214292 56.1048 -0.208044 56.1071 -0.201505 56.1094 -0.19468 56.1115 -0.187574 56.1137 -0.180192 56.1158 -0.172537 56.1179 -0.164615 56.1199 -0.156432 56.1218 -0.147992 56.1237 -0.139302 56.1256 -0.130366 56.1273 -0.12119 56.1291 -0.111781 56.1307 -0.102144 56.1323 -0.0922862 56.1339 -0.0822142 56.1354 -0.0719342 56.1368 -0.0614534 56.1381 -0.0507788 56.1394 -0.0399175 56.1406 -0.0288766 56.1417 -0.0176637 56.1428 -0.00628592 56.1438 0.00524823 56.1447 0.0169347 56.1455 0.028762 56.1463 0.0407242 56.1469 0.0528127 56.1475 0.0650212 56.148 0.0773409 56.1485 0.0897624 56.1488 0.102276 56.1491 0.114873 56.1492 0.127545 56.1493 0.140282 56.1494 0.153074 56.1493 0.165912 56.1491 0.178368 56.1459 0.18481 56.0489 0.184687 55.6667 0.182328 55.1384 0.178097 54.5279 0.172365 53.8542 0.165382 53.1294 0.157331 52.3617 0.148359 51.5576 0.138596 50.7226 0.128163 49.8615 0.117176 48.9793 0.105745 48.0808 0.0939833 47.1714 0.0819981 46.2563 0.0698957 45.3415 0.0577776 44.4327 0.0457393 43.5358 0.0338694 42.6568 0.0222461 41.8012 0.0109368 40.9744 40.1814 0.218685 55.9832 0.207083 55.9824 0.195462 55.9817 0.183829 55.9811 0.172194 55.9806 0.16056 55.9801 0.148937 55.9798 0.13733 55.9795 0.125755 55.9794 0.114221 55.9793 0.102742 55.9793 0.0913262 55.9793 0.0799857 55.9795 0.0687319 55.9797 0.0575731 55.98 0.0465191 55.9804 0.0355773 55.9808 0.0247576 55.9814 0.0140676 55.982 0.00351084 55.9827 -0.0068977 55.9835 -0.0171567 55.9843 -0.0272567 55.9852 -0.0371906 55.9862 -0.0469501 55.9872 -0.0565281 55.9883 -0.0659168 55.9895 -0.0751093 55.9908 -0.0840983 55.9921 -0.0928773 55.9934 -0.101439 55.9949 -0.109779 55.9964 -0.117889 55.9979 -0.125766 55.9995 -0.133402 56.0011 -0.140793 56.0028 -0.147936 56.0046 -0.154824 56.0064 -0.161454 56.0082 -0.167821 56.0101 -0.17392 56.0121 -0.179748 56.014 -0.185301 56.016 -0.190575 56.0181 -0.195567 56.0202 -0.200274 56.0223 -0.204692 56.0244 -0.208819 56.0266 -0.212652 56.0288 -0.216189 56.031 -0.219428 56.0333 -0.222366 56.0355 -0.225003 56.0378 -0.227336 56.0401 -0.229365 56.0425 -0.231088 56.0448 -0.232505 56.0471 -0.233615 56.0495 -0.234417 56.0518 -0.234911 56.0542 -0.235098 56.0566 -0.234977 56.0589 -0.234549 56.0613 -0.233814 56.0637 -0.232773 56.066 -0.231428 56.0684 -0.229779 56.0707 -0.227827 56.073 -0.225574 56.0754 -0.223022 56.0777 -0.220173 56.0799 -0.21703 56.0822 -0.213593 56.0845 -0.209866 56.0867 -0.205852 56.0889 -0.201552 56.091 -0.196971 56.0932 -0.192112 56.0953 -0.186978 56.0974 -0.181571 56.0994 -0.175897 56.1014 -0.169958 56.1034 -0.163759 56.1053 -0.157304 56.1072 -0.150597 56.1091 -0.143643 56.1109 -0.136445 56.1127 -0.12901 56.1144 -0.121343 56.116 -0.113447 56.1177 -0.105329 56.1192 -0.096995 56.1207 -0.0884497 56.1222 -0.0796994 56.1236 -0.07075 56.1249 -0.0616072 56.1262 -0.0522777 56.1274 -0.0427668 56.1286 -0.0330815 56.1297 -0.0232276 56.1307 -0.0132116 56.1317 -0.00304144 56.1326 0.00727631 56.1334 0.0177382 56.1342 0.0283334 56.1349 0.0390572 56.1355 0.049901 56.1361 0.0608571 56.1366 0.0719155 56.137 0.0830705 56.1373 0.0943149 56.1376 0.105642 56.1377 0.117043 56.1378 0.12851 56.1379 0.140038 56.1378 0.151618 56.1377 0.163242 56.1375 0.174552 56.1346 0.180424 56.0431 0.179976 55.6672 0.177415 55.141 0.173082 54.5322 0.167334 53.86 0.160411 53.1363 0.152486 52.3696 0.143698 51.5664 0.134169 50.7321 0.124014 49.8717 0.113341 48.99 0.102256 48.0919 0.0908631 47.1828 0.0792651 46.2679 0.0675614 45.3532 0.0558477 44.4444 0.0442145 43.5474 0.0327442 42.6682 0.0215106 41.8124 0.0105777 40.9854 40.192 0.208789 55.9935 0.198407 55.9928 0.187996 55.9921 0.177571 55.9915 0.167138 55.991 0.156715 55.9906 0.146305 55.9902 0.135921 55.9899 0.125563 55.9897 0.115243 55.9896 0.104964 55.9895 0.0947369 55.9895 0.0845688 55.9896 0.0744677 55.9898 0.064444 55.99 0.0545059 55.9903 0.0446643 55.9907 0.0349253 55.9911 0.0252989 55.9916 0.0157952 55.9922 0.00641967 55.9928 -0.002818 55.9935 -0.0119137 55.9943 -0.0208613 55.9951 -0.0296533 55.996 -0.0382829 55.997 -0.0467449 55.998 -0.055033 55.9991 -0.0631412 56.0002 -0.0710634 56.0014 -0.0787936 56.0026 -0.0863263 56.0039 -0.0936561 56.0052 -0.100778 56.0066 -0.107685 56.008 -0.114374 56.0095 -0.120838 56.0111 -0.127073 56.0126 -0.133074 56.0142 -0.138838 56.0159 -0.144361 56.0176 -0.149639 56.0193 -0.154669 56.0211 -0.159447 56.0229 -0.16397 56.0247 -0.168235 56.0265 -0.17224 56.0284 -0.175982 56.0303 -0.179458 56.0323 -0.182668 56.0342 -0.185607 56.0362 -0.188276 56.0382 -0.190671 56.0402 -0.192792 56.0423 -0.194637 56.0443 -0.196206 56.0464 -0.197496 56.0484 -0.198509 56.0505 -0.199243 56.0526 -0.199698 56.0547 -0.199873 56.0567 -0.19977 56.0588 -0.199389 56.0609 -0.198729 56.063 -0.197791 56.0651 -0.196577 56.0672 -0.195088 56.0692 -0.193324 56.0713 -0.191287 56.0733 -0.188979 56.0754 -0.186402 56.0774 -0.183556 56.0794 -0.180445 56.0813 -0.177071 56.0833 -0.173436 56.0852 -0.169542 56.0872 -0.165393 56.089 -0.16099 56.0909 -0.156338 56.0927 -0.151439 56.0945 -0.146298 56.0963 -0.140916 56.098 -0.135299 56.0997 -0.129449 56.1014 -0.123372 56.103 -0.117072 56.1046 -0.110551 56.1061 -0.103817 56.1076 -0.096873 56.1091 -0.0897239 56.1105 -0.0823745 56.1119 -0.0748299 56.1132 -0.0670952 56.1145 -0.0591753 56.1157 -0.0510756 56.1168 -0.0428012 56.1179 -0.0343578 56.119 -0.025751 56.12 -0.0169867 56.1209 -0.00807125 56.1218 0.000988955 56.1226 0.0101883 56.1234 0.019522 56.1241 0.0289795 56.1247 0.0385581 56.1253 0.0482476 56.1258 0.0580418 56.1263 0.0679346 56.1267 0.0779206 56.127 0.0879906 56.1272 0.0981381 56.1274 0.108356 56.1275 0.118639 56.1276 0.128978 56.1275 0.139362 56.1274 0.149785 56.1273 0.160239 56.127 0.170418 56.1244 0.175684 56.0378 0.174913 55.6679 0.172163 55.1437 0.167748 54.5366 0.162009 53.8657 0.15517 53.1431 0.147393 52.3774 0.138811 51.575 0.129538 50.7414 0.119681 49.8815 0.109342 49.0003 0.0986212 48.1026 0.0876155 47.1938 0.0764216 46.2791 0.0651331 45.3645 0.0538403 44.4557 0.0426277 43.5587 0.0315726 42.6793 0.0207446 41.8233 0.0102041 40.9959 40.2022 0.198452 56.0027 0.189176 56.0021 0.179872 56.0014 0.170549 56.0008 0.161217 56.0003 0.151878 55.9999 0.14255 55.9995 0.133236 55.9992 0.123953 55.999 0.1147 55.9988 0.105493 55.9987 0.0963337 55.9987 0.0872309 55.9987 0.07819 55.9988 0.0692163 55.999 0.0603168 55.9992 0.0514972 55.9995 0.0427651 55.9998 0.0341271 56.0003 0.0255909 56.0007 0.0171633 56.0013 0.00885287 56.0018 0.000667876 56.0025 -0.00738454 56.0032 -0.0153 56.0039 -0.023071 56.0047 -0.0306909 56.0056 -0.0381542 56.0065 -0.0454547 56.0075 -0.0525873 56.0085 -0.0595468 56.0096 -0.0663284 56.0107 -0.0729273 56.0118 -0.079339 56.013 -0.0855586 56.0143 -0.0915825 56.0156 -0.0974066 56.0169 -0.103027 56.0182 -0.108439 56.0196 -0.113639 56.0211 -0.118624 56.0226 -0.123389 56.0241 -0.127931 56.0256 -0.132247 56.0272 -0.136334 56.0288 -0.140189 56.0304 -0.14381 56.032 -0.147193 56.0337 -0.150337 56.0354 -0.153239 56.0371 -0.155898 56.0389 -0.158312 56.0406 -0.16048 56.0424 -0.1624 56.0442 -0.164071 56.046 -0.165492 56.0478 -0.166663 56.0496 -0.167582 56.0514 -0.168249 56.0532 -0.168665 56.0551 -0.168828 56.0569 -0.168739 56.0587 -0.168397 56.0606 -0.167804 56.0624 -0.16696 56.0642 -0.165865 56.0661 -0.164521 56.0679 -0.162929 56.0697 -0.161089 56.0715 -0.159002 56.0733 -0.156672 56.075 -0.154099 56.0768 -0.151285 56.0785 -0.148232 56.0803 -0.144942 56.082 -0.141419 56.0836 -0.137663 56.0853 -0.133679 56.0869 -0.129469 56.0885 -0.125037 56.0901 -0.120384 56.0916 -0.115515 56.0932 -0.110433 56.0946 -0.105141 56.0961 -0.0996446 56.0975 -0.0939459 56.0989 -0.0880492 56.1002 -0.0819582 56.1016 -0.0756776 56.1028 -0.069211 56.104 -0.0625631 56.1052 -0.0557379 56.1064 -0.0487404 56.1075 -0.041575 56.1085 -0.0342471 56.1095 -0.0267621 56.1105 -0.0191249 56.1114 -0.0113417 56.1122 -0.00341884 56.113 0.00463769 56.1138 0.0128248 56.1145 0.0211363 56.1151 0.0295649 56.1157 0.0381061 56.1162 0.0467518 56.1167 0.0554979 56.1171 0.0643381 56.1174 0.0732657 56.1177 0.0822746 56.118 0.0913596 56.1181 0.100512 56.1183 0.109725 56.1183 0.118991 56.1183 0.128305 56.1182 0.137661 56.1181 0.147051 56.1179 0.15647 56.1176 0.165664 56.1152 0.170421 56.033 0.169412 55.669 0.166533 55.1466 0.162083 54.5411 0.156392 53.8714 0.149671 53.1498 0.142074 52.385 0.133725 51.5833 0.124731 50.7504 0.115194 49.8911 0.105208 49.0103 0.0948679 48.113 0.084265 47.2044 0.0734896 46.2899 0.06263 45.3753 0.0517704 44.4665 0.0409903 43.5694 0.0303625 42.6899 0.0199522 41.8337 0.00981577 41.006 40.212 0.188999 56.0109 0.180771 56.0103 0.172514 56.0097 0.164238 56.0091 0.155943 56.0086 0.147643 56.0082 0.139334 56.0079 0.131029 56.0075 0.122733 56.0073 0.11446 56.0071 0.106215 56.007 0.0980079 56.0069 0.0898483 56.0069 0.0817438 56.0069 0.0737034 56.007 0.0657325 56.0072 0.0578386 56.0074 0.0500258 56.0077 0.0423 56.008 0.0346667 56.0084 0.0271313 56.0088 0.0196978 56.0093 0.0123718 56.0098 0.00516024 56.0104 -0.00193193 56.011 -0.00890096 56.0117 -0.0157412 56.0124 -0.0224459 56.0132 -0.0290092 56.014 -0.0354255 56.0149 -0.0416897 56.0158 -0.0477963 56.0168 -0.0537404 56.0178 -0.0595171 56.0188 -0.0651223 56.0199 -0.0705514 56.021 -0.0758001 56.0221 -0.0808649 56.0233 -0.0857417 56.0245 -0.0904274 56.0258 -0.0949187 56.0271 -0.0992129 56.0284 -0.103307 56.0297 -0.107197 56.0311 -0.110882 56.0325 -0.114358 56.0339 -0.117624 56.0353 -0.120676 56.0368 -0.123513 56.0383 -0.126133 56.0398 -0.128534 56.0413 -0.130714 56.0428 -0.132672 56.0443 -0.134406 56.0459 -0.135916 56.0475 -0.1372 56.0491 -0.138258 56.0506 -0.139088 56.0522 -0.139691 56.0538 -0.140067 56.0554 -0.140215 56.0571 -0.140134 56.0587 -0.139826 56.0603 -0.139291 56.0619 -0.138529 56.0635 -0.137542 56.0651 -0.136328 56.0667 -0.134891 56.0683 -0.13323 56.0698 -0.131347 56.0714 -0.129244 56.0729 -0.126923 56.0745 -0.124384 56.076 -0.12163 56.0775 -0.118662 56.079 -0.115484 56.0805 -0.112098 56.0819 -0.108505 56.0833 -0.104708 56.0847 -0.100711 56.0861 -0.096515 56.0874 -0.0921236 56.0888 -0.0875402 56.0901 -0.0827673 56.0913 -0.0778086 56.0926 -0.072667 56.0938 -0.0673465 56.0949 -0.0618503 56.0961 -0.056183 56.0972 -0.0503484 56.0982 -0.0443507 56.0992 -0.0381946 56.1002 -0.0318842 56.1011 -0.0254252 56.102 -0.0188218 56.1029 -0.0120791 56.1037 -0.00520256 56.1045 0.00180289 56.1052 0.00893353 56.1059 0.0161859 56.1065 0.0235523 56.1071 0.0310297 56.1076 0.0386113 56.1081 0.0462931 56.1085 0.0540688 56.1089 0.0619322 56.1092 0.0698776 56.1095 0.0779002 56.1097 0.0859918 56.1099 0.0941465 56.11 0.102359 56.11 0.110624 56.11 0.118935 56.11 0.127283 56.1099 0.135663 56.1097 0.144067 56.1095 0.152488 56.1092 0.160709 56.107 0.164922 56.0288 0.163673 55.6702 0.16068 55.1496 0.156216 54.5455 0.150593 53.877 0.144011 53.1564 0.136612 52.3924 0.128512 51.5914 0.119813 50.7591 0.110609 49.9003 0.100989 49.0199 0.0910409 48.1229 0.0808507 47.2146 0.0705031 46.3003 0.0600806 45.3858 0.0496623 44.4769 0.0393226 43.5798 0.0291298 42.7001 0.0191449 41.8437 0.00942032 41.0158 40.2214 0.179325 56.0182 0.171976 56.0176 0.164598 56.017 0.157203 56.0165 0.149799 56.016 0.142392 56.0156 0.134993 56.0153 0.127603 56.0149 0.120229 56.0147 0.112871 56.0145 0.105536 56.0143 0.0982278 56.0142 0.0909515 56.0142 0.0837146 56.0142 0.0765226 56.0142 0.0693846 56.0143 0.0623062 56.0145 0.0552956 56.0147 0.0483605 56.0149 0.0415067 56.0152 0.0347412 56.0156 0.0280707 56.0159 0.021501 56.0164 0.0150354 56.0169 0.00868088 56.0174 0.00244135 56.018 -0.0036782 56.0186 -0.00967618 56.0192 -0.0155486 56.0199 -0.0212903 56.0207 -0.026897 56.0214 -0.0323646 56.0222 -0.0376889 56.0231 -0.0428661 56.024 -0.047892 56.0249 -0.0527622 56.0259 -0.0574729 56.0268 -0.0620204 56.0279 -0.0664011 56.0289 -0.0706115 56.03 -0.0746486 56.0311 -0.0785087 56.0322 -0.0821894 56.0334 -0.0856877 56.0346 -0.0890011 56.0358 -0.0921275 56.037 -0.0950643 56.0383 -0.0978099 56.0395 -0.100362 56.0408 -0.102719 56.0421 -0.10488 56.0434 -0.106842 56.0448 -0.108605 56.0461 -0.110167 56.0475 -0.111527 56.0488 -0.112685 56.0502 -0.113639 56.0516 -0.114388 56.053 -0.114934 56.0544 -0.115274 56.0558 -0.115409 56.0572 -0.115339 56.0586 -0.115063 56.06 -0.114583 56.0614 -0.113898 56.0628 -0.113009 56.0642 -0.111917 56.0656 -0.110623 56.067 -0.109128 56.0683 -0.107432 56.0697 -0.105538 56.071 -0.103445 56.0724 -0.101157 56.0737 -0.0986752 56.075 -0.0960005 56.0763 -0.093135 56.0776 -0.0900809 56.0788 -0.0868403 56.0801 -0.0834154 56.0813 -0.079809 56.0825 -0.0760232 56.0837 -0.0720611 56.0848 -0.0679252 56.0859 -0.0636192 56.087 -0.0591456 56.0881 -0.0545082 56.0891 -0.0497107 56.0901 -0.0447562 56.0911 -0.0396488 56.092 -0.0343929 56.093 -0.0289915 56.0938 -0.0234489 56.0947 -0.0177691 56.0955 -0.0119563 56.0962 -0.00601488 56.097 5.12663e-005 56.0976 0.00623833 56.0983 0.0125438 56.0989 0.0189633 56.0995 0.0254905 56.1 0.032122 56.1005 0.0388504 56.1009 0.0456725 56.1013 0.0525812 56.1016 0.0595729 56.1019 0.0666415 56.1022 0.0737817 56.1024 0.0809871 56.1025 0.0882532 56.1026 0.0955747 56.1027 0.102945 56.1027 0.110359 56.1026 0.117811 56.1025 0.125298 56.1024 0.132812 56.1022 0.14035 56.1019 0.147905 56.1016 0.155297 56.0996 0.159071 56.0251 0.157662 55.6716 0.154603 55.1526 0.150163 54.55 0.144639 53.8825 0.13822 53.1628 0.131039 52.3996 0.123207 51.5993 0.114817 50.7675 0.105958 49.9091 0.0967142 49.0291 0.0871668 48.1325 0.0773969 47.2243 0.0674835 46.3102 0.0575039 45.3957 0.0475319 44.4869 0.0376374 43.5897 0.027884 42.7099 0.0183288 41.8532 0.00902046 41.0251 40.2304 0.170449 56.0247 0.163954 56.0241 0.157426 56.0236 0.150871 56.0231 0.144298 56.0226 0.137712 56.0222 0.131121 56.0218 0.124533 56.0215 0.117957 56.0213 0.111401 56.021 0.104869 56.0208 0.0983689 56.0207 0.0919042 56.0206 0.0854794 56.0206 0.0790984 56.0206 0.0727649 56.0207 0.0664844 56.0208 0.060261 56.0209 0.0540981 56.0211 0.0480008 56.0213 0.0419747 56.0216 0.0360254 56.0219 0.0301572 56.0222 0.0243773 56.0226 0.0186913 56.0231 0.0131047 56.0235 0.0076219 56.024 0.00224862 56.0246 -0.00300956 56.0252 -0.00815093 56.0258 -0.0131715 56.0264 -0.0180663 56.0271 -0.0228317 56.0279 -0.0274646 56.0286 -0.0319612 56.0294 -0.0363186 56.0302 -0.0405338 56.0311 -0.0446035 56.0319 -0.0485249 56.0328 -0.0522948 56.0338 -0.0559106 56.0347 -0.0593691 56.0357 -0.0626679 56.0367 -0.0658045 56.0377 -0.0687759 56.0387 -0.0715801 56.0398 -0.0742149 56.0409 -0.0766784 56.042 -0.0789683 56.0431 -0.0810834 56.0442 -0.0830218 56.0454 -0.084782 56.0465 -0.0863627 56.0477 -0.0877634 56.0489 -0.0889825 56.0501 -0.0900195 56.0513 -0.0908735 56.0525 -0.0915442 56.0537 -0.0920311 56.0549 -0.092334 56.0561 -0.0924528 56.0573 -0.0923874 56.0585 -0.0921378 56.0597 -0.0917042 56.061 -0.0910873 56.0622 -0.0902873 56.0634 -0.0893051 56.0646 -0.088141 56.0658 -0.0867962 56.067 -0.0852714 56.0682 -0.0835679 56.0693 -0.0816869 56.0705 -0.0796297 56.0716 -0.0773979 56.0728 -0.074993 56.0739 -0.0724169 56.075 -0.0696715 56.0761 -0.0667587 56.0772 -0.0636814 56.0782 -0.0604415 56.0793 -0.0570413 56.0803 -0.0534838 56.0813 -0.0497714 56.0822 -0.0459075 56.0832 -0.0418943 56.0841 -0.0377356 56.085 -0.0334337 56.0858 -0.0289919 56.0867 -0.0244133 56.0875 -0.019701 56.0882 -0.0148584 56.089 -0.00988831 56.0897 -0.00479652 56.0904 0.000415005 56.091 0.00574353 56.0916 0.0111854 56.0922 0.0167368 56.0927 0.022392 56.0932 0.0281464 56.0937 0.0339955 56.0941 0.0399335 56.0945 0.045958 56.0949 0.052063 56.0952 0.0582441 56.0954 0.0644956 56.0957 0.0708136 56.0958 0.0771937 56.096 0.0836309 56.0961 0.0901208 56.0961 0.0966579 56.0961 0.103237 56.0961 0.109854 56.096 0.116502 56.0959 0.123176 56.0957 0.12987 56.0955 0.136578 56.0952 0.143293 56.0949 0.149856 56.0931 0.153148 56.0218 0.151562 55.6732 0.148442 55.1558 0.144035 54.5544 0.13862 53.888 0.132375 53.1691 0.125423 52.4065 0.117866 51.6068 0.109792 50.7755 0.101285 49.9176 0.0924216 49.038 0.0832788 48.1416 0.0739318 47.2337 0.0644546 46.3196 0.0549191 45.4053 0.0453944 44.4964 0.0359458 43.5991 0.0266328 42.7192 0.0175083 41.8623 0.00861804 41.034 40.2391 0.161361 56.0304 0.155616 56.0299 0.149849 56.0293 0.144065 56.0289 0.138263 56.0284 0.132452 56.028 0.126629 56.0277 0.120803 56.0274 0.114973 56.0271 0.109149 56.0269 0.103336 56.0267 0.0975411 56.0265 0.0917717 56.0264 0.086034 56.0263 0.0803343 56.0263 0.0746774 56.0263 0.0690693 56.0264 0.063514 56.0265 0.0580179 56.0266 0.0525844 56.0267 0.0472163 56.0269 0.0419185 56.0272 0.0366951 56.0275 0.0315496 56.0278 0.0264846 56.0281 0.0215054 56.0285 0.0166157 56.0289 0.0118206 56.0294 0.00712355 56.0299 0.00252955 56.0304 -0.00195694 56.0309 -0.00633397 56.0315 -0.0105982 56.0321 -0.0147465 56.0328 -0.0187744 56.0334 -0.0226781 56.0341 -0.026454 56.0348 -0.0300989 56.0356 -0.0336105 56.0363 -0.0369858 56.0371 -0.0402227 56.0379 -0.0433186 56.0388 -0.0462711 56.0396 -0.0490781 56.0405 -0.0517376 56.0414 -0.0542477 56.0423 -0.0566064 56.0432 -0.058812 56.0442 -0.0608631 56.0451 -0.0627578 56.0461 -0.064495 56.0471 -0.0660727 56.0481 -0.0674902 56.0491 -0.0687464 56.0501 -0.0698402 56.0512 -0.070771 56.0522 -0.0715375 56.0532 -0.0721396 56.0543 -0.0725766 56.0553 -0.0728484 56.0564 -0.072955 56.0574 -0.0728959 56.0585 -0.0726711 56.0595 -0.0722806 56.0606 -0.0717255 56.0616 -0.0710055 56.0627 -0.0701216 56.0637 -0.0690742 56.0647 -0.0678644 56.0658 -0.0664929 56.0668 -0.0649609 56.0678 -0.0632699 56.0688 -0.0614207 56.0698 -0.0594151 56.0708 -0.0572544 56.0717 -0.054941 56.0727 -0.0524755 56.0736 -0.0498611 56.0746 -0.0470988 56.0755 -0.0441909 56.0763 -0.0411399 56.0772 -0.0379478 56.0781 -0.0346168 56.0789 -0.0311491 56.0797 -0.0275477 56.0805 -0.0238145 56.0812 -0.0199519 56.082 -0.0159635 56.0827 -0.0118517 56.0834 -0.00762018 56.084 -0.00327278 56.0846 0.00118736 56.0852 0.00576071 56.0858 0.0104407 56.0863 0.0152247 56.0868 0.0201073 56.0873 0.0250845 56.0878 0.0301524 56.0882 0.0353062 56.0886 0.040543 56.0889 0.0458595 56.0892 0.05125 56.0895 0.0567117 56.0897 0.0622403 56.0899 0.0678321 56.0901 0.0734814 56.0902 0.0791846 56.0903 0.0849377 56.0903 0.0907356 56.0903 0.096573 56.0903 0.102447 56.0902 0.10835 56.0901 0.114281 56.09 0.120233 56.0898 0.126203 56.0895 0.132186 56.0892 0.138178 56.0889 0.144046 56.0872 0.146963 56.0188 0.145279 55.6749 0.142147 55.1589 0.137808 54.5587 0.132531 53.8932 0.12648 53.1751 0.119773 52.4132 0.112504 51.6141 0.104757 50.7833 0.0966076 49.9258 0.0881297 49.0465 0.0793944 48.1503 0.0704719 47.2426 0.0614312 46.3287 0.0523395 45.4144 0.0432613 44.5055 0.0342574 43.6081 0.0253833 42.7281 0.0166885 41.871 0.0082156 41.0424 40.2473 0.153022 56.0355 0.147935 56.035 0.142818 56.0345 0.137678 56.034 0.132528 56.0336 0.127366 56.0332 0.122208 56.0328 0.117051 56.0325 0.111905 56.0322 0.106768 56.032 0.101645 56.0318 0.0965384 56.0316 0.091452 56.0315 0.0863893 56.0314 0.081354 56.0313 0.0763517 56.0313 0.0713862 56.0313 0.0664628 56.0314 0.0615852 56.0315 0.0567602 56.0316 0.0519927 56.0317 0.0472858 56.0319 0.0426439 56.0321 0.0380702 56.0324 0.0335701 56.0326 0.0291455 56.0329 0.0248014 56.0333 0.0205411 56.0336 0.016368 56.034 0.0122861 56.0345 0.00829739 56.0349 0.00440647 56.0354 0.000617663 56.0359 -0.00306545 56.0364 -0.00664246 56.037 -0.010111 56.0376 -0.0134678 56.0382 -0.0167101 56.0388 -0.019835 56.0395 -0.02284 56.0401 -0.0257221 56.0408 -0.0284795 56.0415 -0.0311096 56.0423 -0.0336105 56.043 -0.0359802 56.0438 -0.0382171 56.0446 -0.0403188 56.0453 -0.0422842 56.0462 -0.0441115 56.047 -0.0457992 56.0478 -0.0473462 56.0487 -0.0487513 56.0495 -0.0500133 56.0504 -0.0511314 56.0512 -0.0521045 56.0521 -0.0529319 56.053 -0.0536131 56.0539 -0.0541474 56.0548 -0.0545348 56.0557 -0.0547748 56.0566 -0.0548669 56.0575 -0.0548113 56.0584 -0.054608 56.0593 -0.0542574 56.0602 -0.0537591 56.0611 -0.0531144 56.062 -0.0523233 56.0629 -0.0513866 56.0638 -0.0503048 56.0647 -0.0490791 56.0656 -0.04771 56.0664 -0.0461986 56.0673 -0.0445466 56.0681 -0.0427546 56.069 -0.0408245 56.0698 -0.0387571 56.0706 -0.0365543 56.0714 -0.0342174 56.0722 -0.0317486 56.073 -0.0291494 56.0737 -0.0264216 56.0745 -0.0235671 56.0752 -0.0205882 56.0759 -0.0174871 56.0766 -0.0142662 56.0772 -0.0109281 56.0779 -0.00747584 56.0785 -0.00391237 56.0791 -0.000240639 56.0797 0.00353708 56.0802 0.00741894 56.0808 0.0114012 56.0813 0.0154791 56.0817 0.01965 56.0822 0.0239097 56.0826 0.0282562 56.083 0.0326867 56.0833 0.0371974 56.0837 0.0417849 56.084 0.0464446 56.0842 0.0511745 56.0845 0.0559705 56.0847 0.0608285 56.0849 0.0657453 56.085 0.0707164 56.0851 0.0757396 56.0852 0.0808096 56.0852 0.0859218 56.0852 0.0910723 56.0852 0.0962581 56.0851 0.101474 56.085 0.106715 56.0849 0.111977 56.0847 0.117255 56.0845 0.122545 56.0842 0.127839 56.084 0.133134 56.0836 0.13831 56.082 0.140813 56.0163 0.139009 55.6767 0.135863 55.162 0.131596 54.563 0.126461 53.8984 0.120609 53.181 0.114151 52.4197 0.107173 51.6211 0.0997537 50.7907 0.0919635 49.9336 0.0838706 49.0546 0.0755414 48.1587 0.067041 47.2511 0.0584337 46.3373 0.0497823 45.423 0.0411467 44.5142 0.0325835 43.6167 0.0241443 42.7365 0.0158755 41.8793 0.00781647 41.0505 40.2551 0.144614 56.0399 0.140178 56.0394 0.135714 56.0389 0.131227 56.0385 0.126712 56.0381 0.122182 56.0377 0.117632 56.0374 0.113076 56.0371 0.108514 56.0368 0.103957 56.0365 0.0994088 56.0363 0.0948753 56.0362 0.0903598 56.036 0.0858663 56.0359 0.0814014 56.0358 0.0769668 56.0358 0.0725663 56.0357 0.0682032 56.0357 0.0638811 56.0358 0.0596033 56.0358 0.0553726 56.0359 0.0511949 56.0361 0.0470727 56.0362 0.0430116 56.0364 0.0390129 56.0366 0.0350824 56.0369 0.0312215 56.0371 0.0274335 56.0374 0.0237221 56.0378 0.0200898 56.0381 0.0165399 56.0385 0.0130765 56.0389 0.00970114 56.0393 0.0064156 56.0397 0.00322456 56.0402 0.000131462 56.0407 -0.00286182 56.0412 -0.00575402 56.0417 -0.00854262 56.0423 -0.011225 56.0428 -0.0137982 56.0434 -0.0162602 56.044 -0.0186086 56.0446 -0.0208413 56.0452 -0.0229569 56.0459 -0.0249533 56.0465 -0.0268295 56.0472 -0.0285833 56.0479 -0.0302139 56.0486 -0.03172 56.0493 -0.0331 56.05 -0.0343534 56.0508 -0.0354788 56.0515 -0.0364753 56.0522 -0.0373424 56.053 -0.0380795 56.0537 -0.038686 56.0545 -0.0391607 56.0553 -0.039504 56.056 -0.0397157 56.0568 -0.0397951 56.0576 -0.0397428 56.0584 -0.0395582 56.0591 -0.0392418 56.0599 -0.0387937 56.0607 -0.0382143 56.0614 -0.0375042 56.0622 -0.0366637 56.063 -0.0356935 56.0637 -0.0345945 56.0645 -0.0333675 56.0652 -0.0320136 56.0659 -0.0305332 56.0667 -0.0289277 56.0674 -0.0271985 56.0681 -0.0253465 56.0688 -0.0233736 56.0695 -0.0212807 56.0701 -0.01907 56.0708 -0.0167429 56.0714 -0.0143012 56.072 -0.0117472 56.0727 -0.009083 56.0732 -0.00631118 56.0738 -0.00343388 56.0744 -0.000454259 56.0749 0.00262633 56.0754 0.00580664 56.0759 0.00908395 56.0764 0.0124546 56.0769 0.0159167 56.0773 0.0194676 56.0777 0.0231038 56.0781 0.0268236 56.0784 0.0306237 56.0788 0.034501 56.0791 0.0384523 56.0794 0.0424745 56.0796 0.0465657 56.0799 0.0507228 56.0801 0.0549417 56.0803 0.0592188 56.0804 0.0635508 56.0805 0.0679335 56.0806 0.0723633 56.0807 0.0768356 56.0807 0.0813476 56.0807 0.0858948 56.0807 0.0904737 56.0806 0.0950793 56.0805 0.0997083 56.0804 0.104358 56.0802 0.109022 56.08 0.113698 56.0798 0.118382 56.0796 0.12307 56.0793 0.12776 56.0789 0.132353 56.0774 0.134533 56.0142 0.132674 55.6786 0.129551 55.1652 0.125384 54.5671 0.120409 53.9033 0.11477 53.1866 0.108569 52.4259 0.101889 51.6278 0.0948003 50.7978 0.08737 49.941 0.079661 49.0623 0.0717351 48.1666 0.0636532 47.2592 0.0554749 46.3455 0.0472585 45.4312 0.0390599 44.5224 0.0309315 43.6248 0.0229216 42.7445 0.0150731 41.8871 0.00742247 41.0582 40.2625 0.136721 56.0438 0.13282 56.0433 0.128897 56.0428 0.124954 56.0424 0.121001 56.042 0.117033 56.0417 0.113058 56.0413 0.109074 56.041 0.105087 56.0408 0.101098 56.0405 0.0971094 56.0403 0.0931278 56.0401 0.0891573 56.04 0.0852038 56.0398 0.0812688 56.0397 0.0773578 56.0397 0.0734745 56.0396 0.0696228 56.0396 0.0658069 56.0396 0.0620296 56.0396 0.0582952 56.0397 0.0546055 56.0398 0.0509644 56.0399 0.0473742 56.04 0.0438397 56.0402 0.0403623 56.0403 0.0369467 56.0406 0.0335958 56.0408 0.0303119 56.041 0.027099 56.0413 0.0239596 56.0416 0.020896 56.0419 0.0179111 56.0423 0.0150076 56.0426 0.0121876 56.043 0.00945344 56.0434 0.00680726 56.0438 0.00425292 56.0443 0.00179247 56.0447 -0.000574346 56.0452 -0.00284532 56.0457 -0.00501913 56.0462 -0.0070939 56.0467 -0.00906821 56.0472 -0.01094 56.0478 -0.0127072 56.0483 -0.0143684 56.0489 -0.015922 56.0495 -0.0173667 56.0501 -0.0187014 56.0506 -0.0199246 56.0513 -0.0210354 56.0519 -0.0220327 56.0525 -0.0229159 56.0531 -0.0236843 56.0538 -0.0243371 56.0544 -0.0248737 56.055 -0.025294 56.0557 -0.0255974 56.0563 -0.0257839 56.057 -0.0258533 56.0577 -0.0258055 56.0583 -0.0256404 56.059 -0.025358 56.0596 -0.0249588 56.0603 -0.0244426 56.0609 -0.0238104 56.0616 -0.0230623 56.0622 -0.0221988 56.0629 -0.0212208 56.0635 -0.0201285 56.0641 -0.0189231 56.0647 -0.0176052 56.0653 -0.0161769 56.066 -0.014638 56.0665 -0.0129908 56.0671 -0.0112359 56.0677 -0.00937514 56.0683 -0.00741028 56.0688 -0.00534342 56.0694 -0.00317578 56.0699 -0.000909527 56.0704 0.00145338 56.0709 0.00391301 56.0714 0.00646568 56.0718 0.00911132 56.0723 0.011848 56.0727 0.0146722 56.0731 0.0175812 56.0735 0.0205735 56.0739 0.0236465 56.0742 0.0267978 56.0745 0.0300258 56.0749 0.033327 56.0751 0.0366989 56.0754 0.0401397 56.0757 0.0436453 56.0759 0.0472135 56.0761 0.0508405 56.0762 0.0545226 56.0764 0.0582563 56.0765 0.0620394 56.0766 0.0658686 56.0767 0.0697409 56.0767 0.0736524 56.0768 0.0775997 56.0767 0.0815794 56.0767 0.0855886 56.0767 0.0896245 56.0766 0.0936834 56.0764 0.0977618 56.0763 0.101855 56.0761 0.105962 56.0759 0.110078 56.0757 0.114199 56.0754 0.118321 56.0751 0.12244 56.0748 0.126468 56.0734 0.128311 56.0123 0.126388 55.6805 0.123293 55.1683 0.11923 54.5712 0.114422 53.9082 0.109 53.1921 0.10306 52.4318 0.0966778 51.6341 0.0899195 50.8045 0.0828468 49.9481 0.0755183 49.0696 0.0679913 48.1741 0.0603222 47.2668 0.0525664 46.3532 0.0447781 45.439 0.0370091 44.5301 0.0293082 43.6325 0.0217201 42.7521 0.0142844 41.8946 0.00703503 41.0654 40.2695 0.129161 56.0472 0.125717 56.0467 0.122245 56.0463 0.118756 56.0459 0.115254 56.0455 0.111745 56.0452 0.108233 56.0449 0.10472 56.0446 0.10121 56.0443 0.0977022 56.044 0.0942012 56.0438 0.0907066 56.0436 0.0872211 56.0435 0.0837462 56.0433 0.0802861 56.0432 0.0768443 56.0431 0.0734242 56.043 0.0700293 56.043 0.0666627 56.043 0.0633285 56.043 0.0600305 56.043 0.0567713 56.043 0.0535543 56.0431 0.0503828 56.0432 0.0472589 56.0433 0.0441858 56.0434 0.0411654 56.0436 0.038201 56.0438 0.0352959 56.0439 0.0324516 56.0442 0.0296704 56.0444 0.0269556 56.0446 0.0243087 56.0449 0.0217328 56.0452 0.0192306 56.0455 0.0168033 56.0458 0.0144541 56.0462 0.0121836 56.0465 0.00999409 56.0469 0.00788905 56.0473 0.00587014 56.0477 0.00393921 56.0481 0.00209752 56.0485 0.000346905 56.049 -0.00131109 56.0494 -0.0028765 56.0499 -0.00434781 56.0504 -0.00572429 56.0508 -0.00700373 56.0513 -0.00818621 56.0518 -0.00927079 56.0523 -0.0102559 56.0529 -0.0111403 56.0534 -0.011923 56.0539 -0.0126038 56.0544 -0.0131816 56.055 -0.0136562 56.0555 -0.014027 56.0561 -0.0142938 56.0566 -0.0144561 56.0572 -0.0145139 56.0577 -0.014467 56.0583 -0.0143155 56.0588 -0.0140595 56.0594 -0.0136991 56.0599 -0.013235 56.0605 -0.0126671 56.061 -0.011996 56.0615 -0.0112221 56.0621 -0.0103463 56.0626 -0.00936984 56.0631 -0.00829288 56.0637 -0.00711755 56.0642 -0.00584448 56.0647 -0.00447464 56.0652 -0.00300841 56.0657 -0.0014479 56.0661 0.000205957 56.0666 0.00195252 56.0671 0.00379044 56.0675 0.00571872 56.0679 0.00773602 56.0684 0.00984095 56.0688 0.01203 56.0692 0.0143038 56.0695 0.0166592 56.0699 0.0190938 56.0703 0.0216058 56.0706 0.0241941 56.0709 0.0268569 56.0712 0.0295903 56.0715 0.0323935 56.0717 0.0352628 56.072 0.0381963 56.0722 0.0411915 56.0724 0.0442444 56.0726 0.0473542 56.0728 0.0505171 56.0729 0.0537304 56.073 0.056992 56.0731 0.0602994 56.0732 0.0636496 56.0733 0.0670391 56.0733 0.0704653 56.0733 0.0739257 56.0733 0.0774181 56.0733 0.0809389 56.0732 0.0844847 56.0731 0.0880521 56.073 0.0916383 56.0729 0.0952398 56.0727 0.098853 56.0725 0.102474 56.0723 0.1061 56.0721 0.109728 56.0718 0.113354 56.0715 0.116976 56.0712 0.120519 56.0699 0.122086 56.0108 0.120138 55.6824 0.117093 55.1713 0.11315 54.5751 0.108518 53.9128 0.10332 53.1973 0.0976436 52.4375 0.0915599 51.6402 0.0851303 50.811 0.0784118 49.9548 0.0714587 49.0766 0.0643242 48.1813 0.0570604 47.2741 0.0497189 46.3606 0.0423498 45.4464 0.0350011 44.5375 0.0277183 43.6398 0.0205427 42.7593 0.0135111 41.9016 0.00665488 41.0723 40.2762 0.122054 56.0501 0.119084 56.0497 0.116091 56.0493 0.11307 56.0489 0.110024 56.0486 0.10696 56.0482 0.10388 56.0479 0.100794 56.0476 0.0977018 56.0474 0.0946143 56.0471 0.0915312 56.0469 0.0884601 56.0467 0.0854002 56.0465 0.0823558 56.0464 0.0793278 56.0462 0.0763182 56.0461 0.0733279 56.046 0.0703593 56.046 0.0674155 56.0459 0.0644975 56.0459 0.0616077 56.0459 0.0587497 56.0459 0.0559262 56.0459 0.0531402 56.046 0.0503944 56.046 0.0476918 56.0461 0.0450351 56.0462 0.0424269 56.0464 0.039869 56.0465 0.037365 56.0467 0.0349173 56.0468 0.0325272 56.047 0.0301981 56.0472 0.0279313 56.0475 0.0257276 56.0477 0.0235904 56.048 0.0215209 56.0482 0.0195228 56.0485 0.0175956 56.0488 0.0157425 56.0491 0.0139635 56.0495 0.0122611 56.0498 0.0106365 56.0502 0.00909149 56.0505 0.00762727 56.0509 0.00624514 56.0513 0.00494697 56.0517 0.003734 56.0521 0.00260621 56.0525 0.00156641 56.0529 0.000615125 56.0533 -0.000248056 56.0537 -0.00102239 56.0542 -0.00170746 56.0546 -0.00230335 56.055 -0.00280908 56.0555 -0.00322439 56.0559 -0.00354832 56.0564 -0.00378084 56.0568 -0.00392164 56.0573 -0.00397072 56.0578 -0.00392843 56.0582 -0.00379394 56.0587 -0.00356767 56.0591 -0.00324985 56.0596 -0.00284084 56.0601 -0.00234058 56.0605 -0.00175008 56.061 -0.00106919 56.0614 -0.000299023 56.0618 0.000559668 56.0623 0.00150701 56.0627 0.00254325 56.0631 0.00366831 56.0636 0.00487888 56.064 0.00617514 56.0644 0.00755559 56.0648 0.0090202 56.0651 0.0105668 56.0655 0.0121934 56.0659 0.0138998 56.0662 0.0156836 56.0666 0.0175447 56.0669 0.0194817 56.0672 0.0214914 56.0675 0.023573 56.0678 0.0257246 56.0681 0.0279443 56.0684 0.0302294 56.0686 0.0325775 56.0689 0.0349883 56.0691 0.0374579 56.0693 0.039985 56.0695 0.042567 56.0696 0.0452019 56.0698 0.0478881 56.0699 0.0506223 56.07 0.0534027 56.0701 0.0562268 56.0702 0.0590922 56.0703 0.0619958 56.0703 0.0649359 56.0703 0.0679102 56.0703 0.0709155 56.0703 0.0739492 56.0703 0.0770082 56.0702 0.0800899 56.0701 0.0831918 56.07 0.0863105 56.0699 0.0894437 56.0697 0.0925891 56.0696 0.095744 56.0694 0.0989063 56.0691 0.102072 56.0689 0.105239 56.0686 0.108405 56.0684 0.111567 56.068 0.114657 56.0668 0.115955 56.0095 0.113984 55.6844 0.110997 55.1743 0.107181 54.579 0.102728 53.9172 0.0977551 53.2022 0.0923419 52.4429 0.0865541 51.646 0.0804487 50.8171 0.0740785 49.9612 0.0674937 49.0831 0.0607434 48.188 0.053876 47.281 0.0469392 46.3675 0.0399793 45.4534 0.0330411 44.5444 0.0261663 43.6467 0.0193933 42.766 0.0127561 41.9083 0.00628367 41.0787 40.2825 0.114647 56.0527 0.112073 56.0523 0.109482 56.0519 0.106878 56.0515 0.104258 56.0512 0.101622 56.0509 0.0989716 56.0506 0.096305 56.0503 0.0936284 56.0501 0.0909396 56.0498 0.0882474 56.0496 0.0855515 56.0494 0.0828614 56.0492 0.0801789 56.049 0.0775086 56.0489 0.0748537 56.0488 0.0722181 56.0487 0.0696043 56.0486 0.0670141 56.0485 0.0644509 56.0484 0.0619168 56.0484 0.0594119 56.0484 0.0569382 56.0484 0.0544972 56.0484 0.0520915 56.0484 0.0497227 56.0485 0.0473932 56.0486 0.0451046 56.0486 0.04286 56.0487 0.0406595 56.0489 0.0385065 56.049 0.0364032 56.0491 0.034351 56.0493 0.0323525 56.0495 0.0304111 56.0497 0.0285271 56.0499 0.0267028 56.0501 0.0249391 56.0503 0.0232389 56.0505 0.0216019 56.0508 0.0200315 56.051 0.0185281 56.0513 0.0170935 56.0516 0.015729 56.0519 0.0144356 56.0522 0.0132154 56.0525 0.012069 56.0528 0.0109966 56.0531 0.0099999 56.0535 0.00907887 56.0538 0.00823496 56.0541 0.00746873 56.0545 0.00678151 56.0548 0.00617299 56.0552 0.00564607 56.0556 0.00519945 56.0559 0.00483433 56.0563 0.00454999 56.0567 0.00434717 56.057 0.00422574 56.0574 0.00418605 56.0578 0.00422911 56.0582 0.00435382 56.0586 0.00456002 56.0589 0.00484693 56.0593 0.00521544 56.0597 0.00566471 56.0601 0.00619452 56.0604 0.00680448 56.0608 0.00749428 56.0612 0.0082647 56.0615 0.00911259 56.0619 0.0100387 56.0622 0.0110407 56.0626 0.0121202 56.0629 0.0132746 56.0632 0.0145039 56.0635 0.015806 56.0638 0.0171809 56.0641 0.0186279 56.0644 0.020144 56.0647 0.0217292 56.065 0.0233805 56.0653 0.0250967 56.0655 0.0268771 56.0658 0.0287192 56.066 0.0306216 56.0662 0.0325827 56.0664 0.0346009 56.0666 0.0366752 56.0668 0.038803 56.0669 0.0409825 56.0671 0.0432118 56.0672 0.0454896 56.0674 0.0478136 56.0675 0.0501816 56.0675 0.0525925 56.0676 0.0550434 56.0677 0.0575337 56.0677 0.0600597 56.0677 0.0626203 56.0677 0.0652119 56.0677 0.067833 56.0677 0.0704814 56.0677 0.0731539 56.0676 0.0758484 56.0675 0.0785621 56.0674 0.0812929 56.0673 0.0840377 56.0671 0.0867942 56.067 0.089559 56.0668 0.0923294 56.0666 0.095103 56.0664 0.0978768 56.0661 0.100647 56.0659 0.103411 56.0656 0.106166 56.0653 0.108853 56.0641 0.109917 56.0084 0.107943 55.6864 0.105025 55.1772 0.10134 54.5827 0.0970705 53.9215 0.0923226 53.207 0.0871709 52.4481 0.0816757 51.6515 0.0758896 50.8229 0.0698613 49.9672 0.0636371 49.0894 0.0572623 48.1944 0.0507817 47.2875 0.0442392 46.3741 0.0376777 45.4599 0.0311384 44.551 0.0246599 43.6532 0.0182779 42.7724 0.0120235 41.9145 0.0059235 41.0848 40.2884 0.107891 56.0548 0.105703 56.0545 0.103485 56.0541 0.101242 56.0538 0.0989821 56.0535 0.0967078 56.0532 0.0944241 56.0529 0.0921322 56.0526 0.0898336 56.0524 0.0875314 56.0521 0.0852244 56.0519 0.0829149 56.0517 0.0806025 56.0515 0.0782895 56.0514 0.0759795 56.0512 0.0736748 56.0511 0.0713792 56.051 0.0690955 56.0509 0.0668277 56.0508 0.064579 56.0507 0.0623522 56.0506 0.0601517 56.0506 0.0579794 56.0506 0.0558384 56.0505 0.0537301 56.0506 0.0516562 56.0506 0.0496189 56.0506 0.0476193 56.0506 0.0456588 56.0507 0.0437399 56.0508 0.0418633 56.0509 0.0400312 56.051 0.0382448 56.0511 0.0365052 56.0512 0.0348133 56.0514 0.0331714 56.0515 0.0315809 56.0517 0.0300426 56.0518 0.0285583 56.052 0.0271306 56.0522 0.0257593 56.0524 0.0244472 56.0526 0.0231945 56.0528 0.0220027 56.0531 0.0208731 56.0533 0.0198067 56.0536 0.0188039 56.0538 0.0178665 56.0541 0.0169953 56.0543 0.0161916 56.0546 0.0154548 56.0549 0.0147869 56.0552 0.0141872 56.0554 0.0136583 56.0557 0.0131982 56.056 0.0128085 56.0563 0.0124895 56.0566 0.0122414 56.0569 0.0120643 56.0572 0.011959 56.0575 0.011925 56.0578 0.0119619 56.0581 0.0120695 56.0585 0.0122496 56.0588 0.012502 56.0591 0.0128261 56.0594 0.0132208 56.0597 0.0136866 56.06 0.0142222 56.0603 0.0148285 56.0605 0.0155034 56.0608 0.0162479 56.0611 0.0170605 56.0614 0.017941 56.0617 0.0188872 56.0619 0.0198997 56.0622 0.0209767 56.0625 0.0221178 56.0627 0.023321 56.0629 0.0245856 56.0632 0.0259106 56.0634 0.0272951 56.0636 0.0287375 56.0638 0.030237 56.064 0.0317916 56.0642 0.0334003 56.0644 0.0350624 56.0645 0.0367763 56.0647 0.0385407 56.0648 0.0403532 56.065 0.0422124 56.0651 0.0441177 56.0652 0.0460675 56.0653 0.0480594 56.0654 0.0500921 56.0654 0.0521636 56.0655 0.0542715 56.0655 0.0564148 56.0655 0.0585893 56.0655 0.0607944 56.0655 0.063027 56.0655 0.0652858 56.0655 0.0675676 56.0654 0.0698701 56.0654 0.0721919 56.0653 0.0745312 56.0652 0.0768848 56.065 0.0792513 56.0649 0.0816283 56.0648 0.0840135 56.0646 0.0864052 56.0644 0.0888011 56.0642 0.0911981 56.064 0.0935946 56.0637 0.0959878 56.0635 0.0983764 56.0632 0.100756 56.0629 0.103077 56.0618 0.10393 56.0075 0.101972 55.6883 0.0991407 55.18 0.0956022 54.5862 0.0915254 53.9256 0.0870083 53.2115 0.0821201 52.4529 0.0769166 51.6567 0.0714465 50.8283 0.0657544 49.9729 0.0598834 49.0952 0.0538752 48.2004 0.0477712 47.2936 0.0416119 46.3802 0.0354371 45.4661 0.0292848 44.5571 0.023191 43.6592 0.0171886 42.7784 0.0113068 41.9204 0.00557039 41.0906 40.294 0.101496 56.0567 0.0996129 56.0564 0.0977001 56.056 0.095762 56.0557 0.0937981 56.0554 0.0918173 56.0551 0.0898178 56.0549 0.0878079 56.0546 0.0857889 56.0544 0.0837652 56.0541 0.0817402 56.0539 0.0797172 56.0537 0.077698 56.0535 0.0756857 56.0534 0.07368 56.0532 0.0716836 56.0531 0.0696968 56.0529 0.0677215 56.0528 0.0657587 56.0527 0.0638095 56.0526 0.0618754 56.0526 0.0599583 56.0525 0.058061 56.0525 0.0561856 56.0524 0.0543343 56.0524 0.0525101 56.0524 0.0507148 56.0524 0.0489514 56.0524 0.0472215 56.0524 0.0455273 56.0525 0.043871 56.0525 0.0422531 56.0526 0.0406761 56.0527 0.0391408 56.0527 0.0376489 56.0528 0.0362019 56.0529 0.0348014 56.0531 0.0334488 56.0532 0.0321451 56.0533 0.0308907 56.0535 0.0296877 56.0536 0.0285361 56.0538 0.0274378 56.0539 0.0263928 56.0541 0.0254021 56.0543 0.0244667 56.0545 0.0235881 56.0547 0.0227662 56.0549 0.022002 56.0551 0.0212959 56.0553 0.0206495 56.0555 0.0200628 56.0557 0.0195376 56.056 0.0190728 56.0562 0.0186697 56.0564 0.0183287 56.0567 0.0180506 56.0569 0.0178358 56.0571 0.0176843 56.0574 0.0175956 56.0576 0.0175707 56.0579 0.0176091 56.0581 0.0177119 56.0583 0.0178773 56.0586 0.0181057 56.0588 0.0183963 56.0591 0.0187501 56.0593 0.0191659 56.0595 0.0196446 56.0598 0.0201835 56.06 0.0207835 56.0602 0.0214441 56.0605 0.0221638 56.0607 0.0229423 56.0609 0.0237793 56.0611 0.0246734 56.0613 0.0256246 56.0615 0.0266319 56.0617 0.0276945 56.0619 0.0288107 56.0621 0.0299803 56.0622 0.0312019 56.0624 0.032475 56.0625 0.0337981 56.0627 0.0351703 56.0628 0.0365912 56.063 0.0380588 56.0631 0.039572 56.0632 0.0411285 56.0633 0.0427278 56.0634 0.0443684 56.0634 0.0460484 56.0635 0.0477659 56.0636 0.0495192 56.0636 0.0513066 56.0636 0.0531262 56.0637 0.0549764 56.0637 0.0568546 56.0637 0.0587605 56.0636 0.0606912 56.0636 0.0626456 56.0636 0.0646214 56.0635 0.0666178 56.0634 0.0686329 56.0633 0.0706644 56.0632 0.0727095 56.0631 0.0747673 56.063 0.0768351 56.0628 0.0789111 56.0627 0.0809928 56.0625 0.0830779 56.0623 0.0851635 56.0621 0.0872475 56.0619 0.0893268 56.0617 0.0913983 56.0614 0.0934594 56.0611 0.0955078 56.0609 0.0974985 56.0598 0.0981558 56.0069 0.0962131 55.6903 0.0934638 55.1828 0.090065 54.5896 0.0861731 53.9295 0.0818785 53.2158 0.0772447 52.4576 0.072323 51.6616 0.0671579 50.8335 0.0617908 49.9783 0.056261 49.1008 0.0506071 48.2061 0.044867 47.2993 0.0390783 46.386 0.0332775 45.4719 0.0274997 44.5629 0.0217781 43.665 0.0161427 42.7841 0.0106202 41.9259 0.00523319 41.096 40.2992 0.0957309 56.0583 0.0940408 56.058 0.0923361 56.0577 0.0906162 56.0574 0.0888902 56.0572 0.0871521 56.0569 0.0854117 56.0566 0.0836637 56.0564 0.0819131 56.0561 0.0801592 56.0559 0.0784039 56.0557 0.0766488 56.0555 0.0748958 56.0553 0.0731462 56.0551 0.0714026 56.055 0.0696664 56.0548 0.0679401 56.0547 0.0662251 56.0545 0.064523 56.0544 0.0628367 56.0543 0.0611675 56.0542 0.0595164 56.0542 0.0578846 56.0541 0.0562727 56.054 0.0546825 56.054 0.053115 56.054 0.0515719 56.0539 0.0500546 56.0539 0.0485647 56.0539 0.0471031 56.0539 0.0456717 56.054 0.0442729 56.054 0.0429073 56.054 0.0415775 56.0541 0.040285 56.0541 0.0390306 56.0542 0.0378153 56.0543 0.0366404 56.0544 0.0355071 56.0545 0.0344166 56.0546 0.0333693 56.0547 0.0323672 56.0548 0.0314112 56.0549 0.0305029 56.055 0.0296429 56.0552 0.0288307 56.0553 0.0280687 56.0554 0.0273576 56.0556 0.0266968 56.0558 0.0260878 56.0559 0.0255305 56.0561 0.0250254 56.0562 0.0245727 56.0564 0.0241737 56.0566 0.0238285 56.0568 0.0235368 56.057 0.0232989 56.0571 0.0231145 56.0573 0.0229845 56.0575 0.0229089 56.0577 0.0228881 56.0579 0.0229222 56.0581 0.0230105 56.0583 0.0231537 56.0584 0.0233509 56.0586 0.0236024 56.0588 0.0239084 56.059 0.0242686 56.0592 0.0246817 56.0594 0.0251487 56.0595 0.0256682 56.0597 0.0262399 56.0599 0.0268639 56.0601 0.0275396 56.0602 0.0282663 56.0604 0.0290433 56.0605 0.0298699 56.0607 0.0307454 56.0608 0.031669 56.061 0.0326411 56.0611 0.0336597 56.0612 0.0347241 56.0613 0.0358332 56.0614 0.0369866 56.0615 0.0381834 56.0616 0.0394203 56.0617 0.0406975 56.0618 0.0420126 56.0619 0.0433656 56.0619 0.0447549 56.062 0.0461788 56.062 0.0476353 56.0621 0.0491234 56.0621 0.0506421 56.0621 0.0521891 56.0621 0.0537639 56.0621 0.0553641 56.0621 0.056989 56.062 0.0586367 56.062 0.0603061 56.0619 0.0619956 56.0619 0.0637034 56.0618 0.0654273 56.0617 0.0671656 56.0616 0.0689165 56.0615 0.0706785 56.0614 0.0724494 56.0612 0.0742265 56.0611 0.0760083 56.0609 0.0777924 56.0607 0.0795771 56.0605 0.0813607 56.0603 0.0831414 56.0601 0.0849176 56.0599 0.0866885 56.0596 0.0884524 56.0594 0.0902079 56.0591 0.091916 56.0581 0.09242 56.0064 0.090523 55.6922 0.087879 55.1854 0.0846362 54.5928 0.0809402 53.9332 0.0768748 53.2199 0.0724984 52.462 0.0678585 51.6663 0.0629962 50.8384 0.0579494 49.9833 0.0527545 49.106 0.0474469 48.2114 0.0420618 47.3047 0.0366334 46.3914 0.0311955 45.4773 0.0257805 44.5683 0.0204185 43.6703 0.0151371 42.7893 0.00996048 41.9311 0.00490917 41.101 40.3041 0.090089 56.0598 0.0886192 56.0595 0.0871386 56.0592 0.0856499 56.0589 0.0841468 56.0587 0.0826357 56.0584 0.0811119 56.0581 0.0795833 56.0579 0.0780481 56.0577 0.076511 56.0574 0.0749729 56.0572 0.0734352 56.057 0.0719004 56.0568 0.0703705 56.0566 0.0688471 56.0565 0.0673313 56.0563 0.0658244 56.0562 0.064328 56.056 0.0628434 56.0559 0.0613717 56.0558 0.0599133 56.0557 0.0584709 56.0556 0.0570453 56.0555 0.0556384 56.0554 0.0542512 56.0554 0.0528854 56.0553 0.0515422 56.0553 0.0502223 56.0552 0.048927 56.0552 0.0476585 56.0552 0.0464168 56.0552 0.0452033 56.0552 0.044019 56.0552 0.0428648 56.0552 0.0417412 56.0553 0.0406499 56.0553 0.039592 56.0553 0.0385686 56.0554 0.037581 56.0554 0.0366304 56.0555 0.0357185 56.0556 0.0348453 56.0556 0.0340115 56.0557 0.0332175 56.0558 0.0324647 56.0559 0.0317545 56.056 0.0310864 56.0561 0.0304615 56.0562 0.0298808 56.0563 0.0293453 56.0564 0.0288547 56.0566 0.0284108 56.0567 0.0280132 56.0568 0.0276624 56.0569 0.0273587 56.0571 0.0271025 56.0572 0.0268945 56.0573 0.0267348 56.0575 0.0266233 56.0576 0.0265608 56.0578 0.0265464 56.0579 0.0265803 56.058 0.0266626 56.0582 0.0267931 56.0583 0.0269719 56.0585 0.0271985 56.0586 0.027473 56.0587 0.0277948 56.0589 0.028164 56.059 0.02858 56.0591 0.029043 56.0593 0.0295522 56.0594 0.0301067 56.0595 0.0307067 56.0596 0.0313513 56.0597 0.0320398 56.0598 0.0327721 56.0599 0.0335471 56.06 0.034364 56.0601 0.0352209 56.0602 0.0361182 56.0603 0.0370547 56.0604 0.0380297 56.0605 0.0390407 56.0605 0.040087 56.0606 0.0411685 56.0606 0.0422838 56.0607 0.0434323 56.0607 0.0446121 56.0608 0.0458224 56.0608 0.0470616 56.0608 0.0483292 56.0608 0.0496233 56.0608 0.0509441 56.0608 0.0522901 56.0607 0.0536595 56.0607 0.0550515 56.0607 0.0564648 56.0606 0.0578974 56.0606 0.0593476 56.0605 0.0608138 56.0604 0.0622943 56.0603 0.063788 56.0602 0.0652932 56.0601 0.0668083 56.06 0.0683313 56.0598 0.0698608 56.0597 0.0713949 56.0595 0.0729323 56.0594 0.0744714 56.0592 0.0760099 56.059 0.0775465 56.0588 0.0790795 56.0586 0.0806067 56.0583 0.0821261 56.0581 0.083635 56.0579 0.0851322 56.0576 0.0865819 56.0566 0.0869357 56.006 0.0850725 55.694 0.0825237 55.188 0.0794276 54.5959 0.075918 53.9367 0.0720714 53.2237 0.0679414 52.4661 0.0635713 51.6706 0.0589989 50.8429 0.054259 49.988 0.0493847 49.1108 0.0444087 48.2163 0.0393631 47.3097 0.0342795 46.3965 0.0291889 45.4824 0.0241209 44.5734 0.0191035 43.6753 0.0141619 42.7943 0.00931856 41.9359 0.00459279 41.1057 40.3087 0.0843131 56.0611 0.0830467 56.0608 0.0817803 56.0605 0.0805095 56.0602 0.0792366 56.0599 0.0779594 56.0597 0.0766774 56.0594 0.07539 56.0592 0.0740968 56.059 0.0727986 56.0587 0.0714951 56.0585 0.0701897 56.0583 0.068882 56.0581 0.0675739 56.058 0.0662664 56.0578 0.0649622 56.0576 0.0636634 56.0575 0.0623717 56.0573 0.0610881 56.0572 0.0598151 56.0571 0.0585549 56.057 0.0573083 56.0568 0.0560767 56.0567 0.0548617 56.0567 0.0536643 56.0566 0.0524847 56.0565 0.0513246 56.0564 0.0501847 56.0564 0.0490663 56.0563 0.0479699 56.0563 0.0468969 56.0563 0.0458485 56.0563 0.044825 56.0562 0.0438284 56.0562 0.0428598 56.0562 0.0419197 56.0562 0.0410096 56.0562 0.0401303 56.0563 0.0392825 56.0563 0.0384669 56.0563 0.0376834 56.0564 0.0369339 56.0564 0.0362185 56.0564 0.0355384 56.0565 0.0348948 56.0566 0.0342878 56.0566 0.0337181 56.0567 0.033186 56.0568 0.0326926 56.0568 0.0322372 56.0569 0.0318214 56.057 0.0314446 56.0571 0.0311073 56.0572 0.0308103 56.0572 0.0305534 56.0573 0.0303372 56.0574 0.0301614 56.0575 0.0300264 56.0576 0.0299324 56.0577 0.029879 56.0578 0.0298671 56.0579 0.0298964 56.058 0.0299673 56.0581 0.0300795 56.0582 0.0302338 56.0583 0.0304299 56.0584 0.0306666 56.0585 0.0309441 56.0586 0.0312629 56.0587 0.0316221 56.0588 0.0320211 56.0589 0.0324602 56.0589 0.0329386 56.059 0.0334553 56.0591 0.0340104 56.0592 0.0346031 56.0593 0.0352329 56.0593 0.0358988 56.0594 0.0366006 56.0594 0.0373375 56.0595 0.0381082 56.0595 0.0389124 56.0596 0.039749 56.0596 0.0406179 56.0597 0.0415185 56.0597 0.0424497 56.0597 0.0434102 56.0597 0.0443997 56.0597 0.0454176 56.0597 0.046462 56.0597 0.0475331 56.0597 0.0486291 56.0597 0.0497501 56.0597 0.0508924 56.0596 0.0520563 56.0596 0.0532401 56.0595 0.0544426 56.0595 0.055662 56.0594 0.0568979 56.0593 0.0581485 56.0592 0.0594121 56.0591 0.0606873 56.059 0.0619724 56.0589 0.0632656 56.0588 0.0645651 56.0587 0.0658694 56.0585 0.0671774 56.0584 0.0684877 56.0582 0.0697985 56.0581 0.0711085 56.0579 0.0724166 56.0577 0.0737211 56.0575 0.0750208 56.0573 0.0763144 56.0571 0.0776016 56.0568 0.0788809 56.0566 0.080152 56.0563 0.0813835 56.0554 0.0816209 56.0058 0.079808 55.6958 0.0773596 55.1904 0.0744097 54.5989 0.0710829 53.94 0.0674495 53.2273 0.0635587 52.47 0.05945 51.6747 0.0551578 50.8472 0.050714 49.9925 0.0461489 49.1154 0.0414922 48.221 0.0367733 47.3144 0.0320211 46.4013 0.0272641 45.4872 0.0225295 44.5781 0.0178428 43.68 0.0132273 42.7989 0.00870376 41.9405 0.00428975 41.1101 40.313 0.0785358 56.0621 0.0774719 56.0618 0.0763921 56.0616 0.0753032 56.0613 0.0742079 56.061 0.0731079 56.0608 0.0720076 56.0605 0.0709045 56.0603 0.069803 56.0601 0.0687002 56.0598 0.0675998 56.0596 0.0664986 56.0594 0.065399 56.0592 0.0643008 56.0591 0.0632044 56.0589 0.0621101 56.0587 0.0610174 56.0586 0.0599284 56.0584 0.0588437 56.0583 0.0577641 56.0581 0.0566904 56.058 0.0556243 56.0579 0.0545676 56.0578 0.0535215 56.0577 0.0524882 56.0576 0.0514691 56.0575 0.0504659 56.0574 0.0494804 56.0574 0.0485133 56.0573 0.0475658 56.0573 0.0466391 56.0572 0.0457342 56.0572 0.0448521 56.0571 0.043993 56.0571 0.0431578 56.0571 0.0423468 56.057 0.0415606 56.057 0.0408002 56.057 0.0400664 56.057 0.0393595 56.057 0.0386807 56.057 0.0380309 56.057 0.0374102 56.0571 0.0368202 56.0571 0.0362598 56.0571 0.0357307 56.0571 0.0352334 56.0572 0.0347687 56.0572 0.0343365 56.0573 0.0339375 56.0573 0.0335728 56.0573 0.0332425 56.0574 0.0329477 56.0574 0.0326878 56.0575 0.0324635 56.0576 0.0322754 56.0576 0.0321238 56.0577 0.0320093 56.0577 0.0319308 56.0578 0.0318901 56.0579 0.0318859 56.0579 0.0319184 56.058 0.0319873 56.058 0.0320926 56.0581 0.0322339 56.0582 0.0324108 56.0582 0.0326237 56.0583 0.0328729 56.0583 0.0331562 56.0584 0.0334753 56.0584 0.0338285 56.0585 0.0342158 56.0586 0.0346369 56.0586 0.0350919 56.0586 0.0355795 56.0587 0.0360991 56.0587 0.0366503 56.0588 0.0372329 56.0588 0.0378461 56.0588 0.03849 56.0588 0.0391635 56.0589 0.0398664 56.0589 0.0405977 56.0589 0.0413567 56.0589 0.0421425 56.0589 0.0429547 56.0589 0.043793 56.0589 0.0446553 56.0589 0.0455406 56.0588 0.0464489 56.0588 0.0473785 56.0588 0.0483287 56.0587 0.0492978 56.0587 0.0502854 56.0586 0.0512893 56.0586 0.0523086 56.0585 0.0533425 56.0584 0.0543894 56.0584 0.0554474 56.0583 0.0565158 56.0582 0.0575937 56.0581 0.05868 56.058 0.0597731 56.0578 0.0608728 56.0577 0.0619778 56.0576 0.0630879 56.0574 0.0642013 56.0573 0.0653171 56.0571 0.0664342 56.0569 0.0675519 56.0568 0.0686687 56.0566 0.0697834 56.0564 0.0708945 56.0562 0.0720005 56.0559 0.0730991 56.0557 0.0741885 56.0555 0.0752654 56.0553 0.0763017 56.0543 0.076431 56.0057 0.0746755 55.6976 0.0723386 55.1928 0.069543 54.6017 0.0664031 53.9432 0.0629836 53.2308 0.0593295 52.4736 0.0554772 51.6786 0.0514582 50.8512 0.0473016 49.9966 0.0430351 49.1197 0.0386859 48.2253 0.0342811 47.3189 0.0298471 46.4057 0.0254102 45.4916 0.0209953 44.5825 0.0166261 43.6844 0.0123241 42.8032 0.00810866 41.9447 0.00399617 41.1143 40.317 0.0729531 56.063 0.0721083 56.0627 0.0712473 56.0624 0.0703678 56.0622 0.0694739 56.0619 0.0685646 56.0617 0.0676441 56.0614 0.0667146 56.0612 0.065777 56.061 0.0648358 56.0608 0.0638903 56.0606 0.0629444 56.0604 0.0619986 56.0602 0.0610547 56.06 0.0601138 56.0598 0.0591778 56.0597 0.0582479 56.0595 0.0573243 56.0593 0.0564079 56.0592 0.0554989 56.0591 0.0545984 56.0589 0.053706 56.0588 0.0528224 56.0587 0.0519478 56.0586 0.0510824 56.0585 0.0502275 56.0584 0.0493833 56.0583 0.0485512 56.0582 0.0477316 56.0581 0.0469264 56.0581 0.0461361 56.058 0.0453624 56.0579 0.0446064 56.0579 0.0438692 56.0578 0.0431521 56.0578 0.0424569 56.0577 0.0417838 56.0577 0.0411337 56.0577 0.0405067 56.0576 0.0399044 56.0576 0.0393273 56.0576 0.0387756 56.0576 0.0382498 56.0576 0.0377501 56.0576 0.0372778 56.0576 0.0368335 56.0576 0.0364164 56.0576 0.0360277 56.0576 0.0356673 56.0576 0.0353365 56.0576 0.0350341 56.0576 0.0347606 56.0577 0.0345167 56.0577 0.0343019 56.0577 0.0341174 56.0577 0.0339627 56.0578 0.0338375 56.0578 0.0337424 56.0578 0.0336783 56.0579 0.0336444 56.0579 0.0336409 56.0579 0.0336683 56.058 0.0337263 56.058 0.0338148 56.058 0.0339336 56.058 0.0340831 56.0581 0.0342628 56.0581 0.0344725 56.0581 0.0347127 56.0582 0.034982 56.0582 0.0352819 56.0582 0.0356116 56.0582 0.0359707 56.0582 0.0363586 56.0583 0.0367757 56.0583 0.0372213 56.0583 0.0376952 56.0583 0.0381971 56.0583 0.0387263 56.0583 0.0392816 56.0583 0.0398631 56.0583 0.0404698 56.0583 0.0411009 56.0583 0.0417561 56.0582 0.0424339 56.0582 0.0431343 56.0582 0.0438552 56.0582 0.0445965 56.0581 0.0453578 56.0581 0.0461368 56.058 0.0469335 56.058 0.0477464 56.0579 0.0485741 56.0579 0.0494167 56.0578 0.0502732 56.0577 0.0511428 56.0576 0.0520242 56.0576 0.0529168 56.0575 0.05382 56.0574 0.0547326 56.0573 0.0556536 56.0571 0.0565818 56.057 0.0575177 56.0569 0.0584592 56.0568 0.0594051 56.0566 0.0603539 56.0565 0.0613043 56.0563 0.062255 56.0562 0.0632047 56.056 0.0641516 56.0558 0.0650943 56.0556 0.066031 56.0554 0.0669602 56.0552 0.067881 56.055 0.0687916 56.0548 0.0696918 56.0546 0.0705806 56.0544 0.0714347 56.0535 0.0714686 56.0056 0.069768 55.6993 0.0675347 55.195 0.0648843 54.6043 0.0619223 53.9461 0.0587072 53.234 0.0552801 52.4771 0.0516736 51.6822 0.0479166 50.855 0.0440354 50.0005 0.0400552 49.1237 0.0360011 48.2294 0.0318975 47.323 0.0277689 46.4098 0.0236391 45.4957 0.0195312 44.5866 0.0154668 43.6885 0.0114654 42.8072 0.00754447 41.9486 0.00371872 41.1181 40.3207 0.0674819 56.0636 0.0667987 56.0634 0.0661026 56.0631 0.0653977 56.0629 0.0646793 56.0626 0.0639532 56.0624 0.0632137 56.0622 0.0624658 56.062 0.0617076 56.0617 0.0609406 56.0615 0.0601663 56.0613 0.0593856 56.0612 0.0585998 56.061 0.0578106 56.0608 0.0570192 56.0606 0.0562267 56.0604 0.0554342 56.0603 0.0546435 56.0601 0.0538563 56.06 0.0530741 56.0598 0.0522983 56.0597 0.0515304 56.0596 0.0507713 56.0594 0.0500222 56.0593 0.0492835 56.0592 0.048556 56.0591 0.0478402 56.059 0.0471362 56.0589 0.0464451 56.0588 0.0457667 56.0587 0.0451021 56.0587 0.0444507 56.0586 0.0438138 56.0585 0.0431916 56.0584 0.0425843 56.0584 0.0419923 56.0583 0.041417 56.0583 0.0408599 56.0582 0.0403215 56.0582 0.0398023 56.0581 0.039303 56.0581 0.0388243 56.0581 0.0383672 56.058 0.0379321 56.058 0.0375199 56.058 0.0371307 56.058 0.0367652 56.058 0.0364241 56.0579 0.0361082 56.0579 0.0358172 56.0579 0.035552 56.0579 0.0353132 56.0579 0.0351009 56.0579 0.0349165 56.0579 0.0347591 56.0579 0.0346287 56.0579 0.0345268 56.0579 0.0344491 56.0579 0.034395 56.0579 0.034368 56.0579 0.034369 56.0579 0.0343983 56.0579 0.0344559 56.0579 0.0345404 56.0579 0.0346484 56.0579 0.0347823 56.0579 0.0349452 56.0579 0.0351357 56.0579 0.0353535 56.0579 0.0355977 56.0579 0.035868 56.0579 0.0361637 56.0579 0.0364843 56.0579 0.0368298 56.0579 0.037199 56.0579 0.0375924 56.0579 0.0380085 56.0579 0.0384475 56.0579 0.0389082 56.0578 0.0393908 56.0578 0.0398943 56.0578 0.0404183 56.0578 0.0409621 56.0577 0.0415247 56.0577 0.0421067 56.0576 0.0427061 56.0576 0.043322 56.0575 0.0439549 56.0575 0.0446038 56.0574 0.0452682 56.0574 0.0459466 56.0573 0.0466396 56.0572 0.0473459 56.0572 0.048065 56.0571 0.0487959 56.057 0.0495379 56.0569 0.0502902 56.0568 0.0510522 56.0567 0.0518227 56.0566 0.0526012 56.0565 0.0533868 56.0564 0.0541779 56.0562 0.054973 56.0561 0.0557712 56.056 0.056572 56.0558 0.0573738 56.0557 0.0581761 56.0555 0.0589776 56.0554 0.0597775 56.0552 0.0605741 56.055 0.061367 56.0548 0.062155 56.0546 0.0629372 56.0545 0.0637121 56.0543 0.0644786 56.054 0.065235 56.0538 0.0659796 56.0536 0.0666888 56.0528 0.0666486 56.0057 0.0650159 55.7009 0.0628961 55.1971 0.0603957 54.6068 0.0576118 53.9489 0.0545984 53.237 0.051393 52.4803 0.0480257 51.6856 0.0445225 50.8585 0.0409075 50.0041 0.0372037 49.1274 0.0334338 48.2332 0.0296202 47.3268 0.0257853 46.4137 0.0219506 45.4996 0.018137 44.5904 0.0143642 43.6922 0.0106499 42.8109 0.00700945 41.9522 0.00345599 41.1216 40.3242 0.0621359 56.0642 0.0615834 56.0639 0.0610164 56.0637 0.0604329 56.0635 0.0598423 56.0632 0.0592388 56.063 0.0586315 56.0628 0.0580155 56.0626 0.0573951 56.0624 0.0567698 56.0622 0.0561402 56.062 0.0555072 56.0618 0.0548713 56.0616 0.054232 56.0614 0.0535905 56.0613 0.0529471 56.0611 0.0523027 56.0609 0.0516578 56.0608 0.0510127 56.0606 0.0503681 56.0605 0.0497247 56.0603 0.0490842 56.0602 0.0484469 56.0601 0.0478149 56.06 0.0471891 56.0598 0.0465713 56.0597 0.0459617 56.0596 0.045362 56.0595 0.0447731 56.0594 0.044196 56.0593 0.0436313 56.0592 0.0430801 56.0591 0.0425425 56.059 0.0420193 56.059 0.0415122 56.0589 0.0410206 56.0588 0.0405449 56.0588 0.0400846 56.0587 0.0396402 56.0586 0.0392126 56.0586 0.0388016 56.0585 0.0384087 56.0585 0.0380333 56.0584 0.0376767 56.0584 0.0373381 56.0583 0.0370188 56.0583 0.0367197 56.0583 0.0364404 56.0582 0.0361806 56.0582 0.0359417 56.0582 0.0357233 56.0581 0.0355258 56.0581 0.0353488 56.0581 0.035192 56.0581 0.0350562 56.058 0.0349435 56.058 0.0348505 56.058 0.0347768 56.058 0.0347272 56.058 0.0347045 56.0579 0.0347085 56.0579 0.0347383 56.0579 0.0347937 56.0579 0.0348739 56.0578 0.0349783 56.0578 0.0351037 56.0578 0.0352479 56.0578 0.0354121 56.0578 0.0355966 56.0578 0.0358027 56.0577 0.036029 56.0577 0.0362769 56.0577 0.0365468 56.0577 0.0368378 56.0576 0.0371496 56.0576 0.0374822 56.0576 0.0378353 56.0575 0.0382078 56.0575 0.0385993 56.0574 0.0390098 56.0574 0.0394383 56.0574 0.0398846 56.0573 0.0403485 56.0573 0.0408296 56.0572 0.041326 56.0571 0.041838 56.0571 0.0423658 56.057 0.0429086 56.057 0.0434644 56.0569 0.0440346 56.0568 0.0446176 56.0567 0.0452129 56.0566 0.0458199 56.0566 0.0464377 56.0565 0.0470657 56.0564 0.0477029 56.0563 0.0483484 56.0562 0.0490012 56.056 0.0496606 56.0559 0.0503256 56.0558 0.0509951 56.0557 0.0516688 56.0556 0.0523454 56.0554 0.0530242 56.0553 0.0537035 56.0551 0.0543826 56.055 0.0550602 56.0548 0.0557353 56.0547 0.0564063 56.0545 0.0570723 56.0543 0.0577321 56.0542 0.0583843 56.054 0.0590277 56.0538 0.0596615 56.0536 0.0602851 56.0534 0.0608974 56.0532 0.0614982 56.053 0.0620704 56.0522 0.0619705 56.0058 0.0604149 55.7025 0.0584139 55.1991 0.0560659 54.6092 0.0534602 53.9515 0.0506464 53.2398 0.0476586 52.4833 0.0445243 51.6887 0.0412672 50.8618 0.0379092 50.0075 0.0344713 49.1308 0.0309742 48.2367 0.0274383 47.3303 0.023884 46.4172 0.0203308 45.5031 0.0167978 44.594 0.0133031 43.6957 0.00986273 42.8144 0.00649103 41.9556 0.00320017 41.1249 40.3274 0.0571471 56.0646 0.0567326 56.0643 0.0563075 56.0641 0.0558725 56.0639 0.0554226 56.0637 0.0549616 56.0635 0.0544851 56.0633 0.0539978 56.0631 0.0534988 56.0629 0.0529907 56.0627 0.0524746 56.0625 0.0519521 56.0623 0.0514245 56.0621 0.0508937 56.062 0.0503609 56.0618 0.0498266 56.0616 0.0492921 56.0615 0.0487582 56.0613 0.0482255 56.0612 0.0476954 56.061 0.0471676 56.0609 0.046643 56.0607 0.0461216 56.0606 0.045604 56.0605 0.0450903 56.0604 0.0445808 56.0602 0.0440771 56.0601 0.0435793 56.06 0.0430877 56.0599 0.0426035 56.0598 0.0421272 56.0597 0.0416606 56.0596 0.0412037 56.0595 0.0407577 56.0594 0.0403222 56.0593 0.0398984 56.0592 0.0394873 56.0592 0.0390899 56.0591 0.0387068 56.059 0.0383384 56.0589 0.0379852 56.0589 0.0376474 56.0588 0.0373249 56.0587 0.0370182 56.0587 0.0367283 56.0586 0.036455 56.0586 0.0361982 56.0585 0.0359582 56.0585 0.0357361 56.0584 0.0355316 56.0584 0.0353455 56.0583 0.0351782 56.0583 0.0350302 56.0582 0.0349022 56.0582 0.0347937 56.0581 0.0347025 56.0581 0.034628 56.0581 0.0345787 56.058 0.0345541 56.058 0.0345475 56.0579 0.0345583 56.0579 0.0345853 56.0579 0.0346259 56.0578 0.0346852 56.0578 0.0347702 56.0577 0.0348802 56.0577 0.035011 56.0577 0.035162 56.0576 0.0353318 56.0576 0.0355196 56.0575 0.0357259 56.0575 0.0359498 56.0575 0.0361908 56.0574 0.036449 56.0574 0.0367243 56.0573 0.0370157 56.0573 0.0373233 56.0572 0.0376475 56.0572 0.0379882 56.0571 0.0383443 56.057 0.0387159 56.057 0.0391027 56.0569 0.0395036 56.0569 0.0399191 56.0568 0.0403485 56.0567 0.0407924 56.0566 0.041249 56.0566 0.0417175 56.0565 0.0421982 56.0564 0.0426894 56.0563 0.0431909 56.0562 0.0437024 56.0561 0.0442226 56.056 0.0447509 56.0559 0.0452863 56.0558 0.0458283 56.0557 0.0463758 56.0556 0.046928 56.0555 0.047484 56.0554 0.0480428 56.0553 0.0486033 56.0551 0.0491644 56.055 0.0497255 56.0549 0.0502855 56.0547 0.0508437 56.0546 0.0513993 56.0544 0.0519516 56.0543 0.0524998 56.0541 0.0530435 56.054 0.0535826 56.0538 0.0541165 56.0536 0.0546451 56.0535 0.0551682 56.0533 0.0556849 56.0531 0.0561951 56.0529 0.0566983 56.0527 0.0571929 56.0525 0.0576599 56.0517 0.0575109 56.0059 0.0560253 55.704 0.0541353 55.201 0.051932 54.6114 0.0494964 53.9539 0.0468733 53.2424 0.0440936 52.486 0.0411822 51.6916 0.0381604 50.8648 0.035048 50.0106 0.031864 49.134 0.0286271 48.2399 0.0253558 47.3336 0.0220686 46.4205 0.0187831 45.5064 0.015517 44.5972 0.012287 43.699 0.00910794 42.8175 0.00599312 41.9587 0.00295398 41.128 40.3303 0.0522555 56.0649 0.0519207 56.0647 0.0515754 56.0645 0.0512172 56.0643 0.050853 56.064 0.0504807 56.0638 0.0501039 56.0636 0.0497205 56.0634 0.0493306 56.0633 0.048934 56.0631 0.04853 56.0629 0.0481193 56.0627 0.0477024 56.0625 0.0472795 56.0624 0.0468513 56.0622 0.0464191 56.0621 0.0459835 56.0619 0.0455457 56.0617 0.0451068 56.0616 0.0446675 56.0615 0.0442287 56.0613 0.0437915 56.0612 0.0433568 56.061 0.0429251 56.0609 0.0424975 56.0608 0.0420749 56.0607 0.0416575 56.0605 0.0412457 56.0604 0.0408405 56.0603 0.0404423 56.0602 0.040051 56.0601 0.0396668 56.06 0.03929 56.0599 0.0389218 56.0598 0.0385627 56.0597 0.0382135 56.0596 0.0378744 56.0595 0.0375459 56.0594 0.0372285 56.0593 0.0369226 56.0592 0.0366291 56.0592 0.036348 56.0591 0.0360809 56.059 0.0358277 56.0589 0.0355888 56.0589 0.0353647 56.0588 0.0351555 56.0587 0.0349619 56.0587 0.0347835 56.0586 0.0346211 56.0585 0.0344736 56.0585 0.0343422 56.0584 0.0342259 56.0583 0.034125 56.0583 0.0340395 56.0582 0.0339685 56.0582 0.0339184 56.0581 0.0338892 56.0581 0.0338759 56.058 0.0338782 56.0579 0.0338946 56.0579 0.0339227 56.0578 0.0339628 56.0578 0.0340162 56.0577 0.0340815 56.0577 0.0341617 56.0576 0.0342592 56.0576 0.0343742 56.0575 0.0345072 56.0574 0.0346584 56.0574 0.0348268 56.0573 0.0350125 56.0573 0.0352142 56.0572 0.0354322 56.0571 0.0356659 56.0571 0.0359154 56.057 0.0361799 56.0569 0.0364593 56.0569 0.0367524 56.0568 0.0370596 56.0567 0.0373802 56.0567 0.0377132 56.0566 0.0380591 56.0565 0.0384161 56.0564 0.038785 56.0563 0.039164 56.0563 0.0395532 56.0562 0.0399516 56.0561 0.0403594 56.056 0.0407752 56.0559 0.0411988 56.0558 0.0416289 56.0557 0.0420654 56.0556 0.0425076 56.0555 0.0429549 56.0554 0.0434068 56.0553 0.0438623 56.0552 0.0443217 56.055 0.0447836 56.0549 0.0452479 56.0548 0.0457144 56.0547 0.0461823 56.0545 0.0466516 56.0544 0.0471216 56.0543 0.0475924 56.0541 0.0480632 56.054 0.0485335 56.0538 0.0490028 56.0537 0.0494705 56.0535 0.0499353 56.0533 0.0503959 56.0532 0.050851 56.053 0.0512996 56.0528 0.0517398 56.0527 0.0521705 56.0525 0.0525896 56.0523 0.0529969 56.0521 0.053377 56.0514 0.0531978 56.0061 0.0517929 55.7054 0.0500195 55.2028 0.0479619 54.6134 0.0456946 53.9562 0.0432584 53.2449 0.040681 52.4886 0.037985 51.6943 0.0351895 50.8676 0.0323126 50.0135 0.0293715 49.1369 0.0263831 48.2429 0.0233642 47.3366 0.0203318 46.4235 0.0173024 45.5094 0.014292 44.6002 0.0113155 43.7019 0.00838672 42.8205 0.00551799 41.9616 0.00271967 41.1308 40.333 0.0476238 56.0651 0.0474062 56.0649 0.0471705 56.0647 0.0469213 56.0645 0.0466545 56.0643 0.0463745 56.0641 0.046082 56.0639 0.0457793 56.0637 0.0454699 56.0636 0.0451538 56.0634 0.0448342 56.0632 0.0445093 56.063 0.0441806 56.0629 0.043848 56.0627 0.0435116 56.0626 0.0431716 56.0624 0.0428282 56.0622 0.0424823 56.0621 0.0421335 56.0619 0.041783 56.0618 0.0414316 56.0617 0.0410795 56.0615 0.0407279 56.0614 0.0403769 56.0613 0.0400277 56.0611 0.0396807 56.061 0.0393363 56.0609 0.0389957 56.0608 0.038659 56.0606 0.0383276 56.0605 0.038002 56.0604 0.0376831 56.0603 0.0373712 56.0602 0.0370668 56.0601 0.0367699 56.06 0.0364812 56.0599 0.0362005 56.0598 0.0359288 56.0597 0.0356665 56.0596 0.0354135 56.0595 0.0351702 56.0594 0.0349368 56.0593 0.0347132 56.0592 0.0344998 56.0592 0.034297 56.0591 0.0341052 56.059 0.0339244 56.0589 0.0337552 56.0588 0.033598 56.0588 0.0334534 56.0587 0.0333214 56.0586 0.0332023 56.0585 0.0330966 56.0585 0.0330047 56.0584 0.0329262 56.0583 0.0328655 56.0582 0.0328212 56.0582 0.0327901 56.0581 0.0327716 56.058 0.0327671 56.0579 0.0327775 56.0579 0.0328073 56.0578 0.0328599 56.0577 0.0329292 56.0577 0.0330121 56.0576 0.0331075 56.0575 0.0332152 56.0575 0.0333361 56.0574 0.03347 56.0573 0.033617 56.0572 0.0337764 56.0572 0.033948 56.0571 0.0341323 56.057 0.0343287 56.0569 0.0345367 56.0569 0.034757 56.0568 0.0349886 56.0567 0.0352316 56.0566 0.0354858 56.0566 0.0357506 56.0565 0.0360258 56.0564 0.0363114 56.0563 0.036607 56.0562 0.0369127 56.0561 0.0372263 56.056 0.0375485 56.0559 0.0378789 56.0558 0.0382178 56.0557 0.0385632 56.0556 0.0389162 56.0555 0.0392757 56.0554 0.0396411 56.0553 0.0400122 56.0552 0.0403883 56.0551 0.0407692 56.055 0.0411544 56.0549 0.0415438 56.0548 0.0419364 56.0546 0.042332 56.0545 0.04273 56.0544 0.0431295 56.0543 0.0435301 56.0541 0.0439306 56.054 0.0443302 56.0539 0.0447276 56.0537 0.045122 56.0536 0.0455128 56.0534 0.0458985 56.0533 0.0462782 56.0531 0.0466513 56.053 0.0470174 56.0528 0.0473762 56.0526 0.0477271 56.0525 0.0480704 56.0523 0.0484061 56.0521 0.0487344 56.052 0.049055 56.0518 0.0493532 56.0511 0.0491429 56.0063 0.0478086 55.7067 0.046139 55.2045 0.0442141 54.6154 0.0421019 53.9583 0.0398392 53.2471 0.0374511 52.491 0.0349577 51.6968 0.0323761 50.8702 0.0297226 50.0161 0.0270124 49.1396 0.0242609 48.2456 0.0214831 47.3394 0.0186943 46.4263 0.0159093 45.5122 0.0131426 44.603 0.0104074 43.7047 0.00771586 42.8232 0.00507865 41.9642 0.00250437 41.1333 40.3356 0.0430227 56.0652 0.0428642 56.0651 0.0426976 56.0649 0.0425202 56.0647 0.042336 56.0645 0.0421404 56.0643 0.0419351 56.0641 0.0417182 56.064 0.0414891 56.0638 0.0412499 56.0636 0.0409998 56.0635 0.0407424 56.0633 0.0404785 56.0631 0.0402093 56.063 0.0399361 56.0628 0.0396601 56.0627 0.0393816 56.0625 0.0391008 56.0624 0.0388187 56.0622 0.0385357 56.0621 0.0382518 56.0619 0.0379676 56.0618 0.0376832 56.0617 0.0373999 56.0615 0.0371171 56.0614 0.0368363 56.0613 0.0365574 56.0612 0.0362815 56.061 0.0360084 56.0609 0.0357386 56.0608 0.0354726 56.0607 0.0352108 56.0606 0.0349539 56.0604 0.034702 56.0603 0.0344557 56.0602 0.0342159 56.0601 0.033983 56.06 0.0337572 56.0599 0.0335385 56.0598 0.0333282 56.0597 0.0331264 56.0596 0.0329341 56.0595 0.0327512 56.0594 0.0325791 56.0593 0.0324172 56.0592 0.0322663 56.0591 0.0321268 56.059 0.0319987 56.059 0.0318823 56.0589 0.0317773 56.0588 0.0316846 56.0587 0.031604 56.0586 0.0315361 56.0585 0.0314815 56.0584 0.0314387 56.0583 0.0314059 56.0583 0.0313775 56.0582 0.0313535 56.0581 0.031339 56.058 0.0313362 56.0579 0.0313446 56.0579 0.0313651 56.0578 0.0313961 56.0577 0.031437 56.0576 0.0314907 56.0575 0.0315571 56.0575 0.0316369 56.0574 0.0317295 56.0573 0.0318341 56.0572 0.0319516 56.0571 0.0320816 56.057 0.0322243 56.057 0.032379 56.0569 0.0325455 56.0568 0.0327232 56.0567 0.0329116 56.0566 0.0331106 56.0565 0.0333196 56.0564 0.0335386 56.0563 0.033768 56.0562 0.0340059 56.0561 0.0342532 56.0561 0.0345081 56.056 0.0347713 56.0559 0.0350425 56.0558 0.0353209 56.0557 0.0356065 56.0556 0.0358987 56.0555 0.0361977 56.0553 0.0365023 56.0552 0.0368123 56.0551 0.0371278 56.055 0.0374478 56.0549 0.0377723 56.0548 0.0381004 56.0547 0.0384314 56.0546 0.0387649 56.0544 0.0390998 56.0543 0.0394362 56.0542 0.0397728 56.0541 0.0401096 56.0539 0.0404456 56.0538 0.0407806 56.0537 0.0411142 56.0535 0.0414461 56.0534 0.041776 56.0532 0.0421035 56.0531 0.0424287 56.0529 0.0427513 56.0528 0.0430705 56.0526 0.0433862 56.0525 0.0436974 56.0523 0.0440033 56.0522 0.0443027 56.052 0.0445939 56.0519 0.0448752 56.0517 0.0451455 56.0515 0.0453915 56.0508 0.0451719 56.0065 0.043924 55.708 0.0423725 55.206 0.0405893 54.6171 0.0386372 53.9603 0.0365498 53.2492 0.0343499 52.4932 0.0320554 51.6991 0.0296822 50.8725 0.0272447 50.0186 0.0247567 49.1421 0.0222321 48.2482 0.0196846 47.3419 0.0171279 46.4289 0.0145753 45.5148 0.0120399 44.6055 0.00953366 43.7072 0.00706768 42.8256 0.00465161 41.9666 0.00229358 41.1357 40.3378 0.038908 56.0653 0.038834 56.0651 0.038738 56.065 0.0386274 56.0648 0.0385007 56.0646 0.0383639 56.0645 0.038216 56.0643 0.0380602 56.0641 0.0378967 56.064 0.0377251 56.0638 0.0375466 56.0636 0.0373598 56.0635 0.0371646 56.0633 0.0369624 56.0632 0.036753 56.063 0.0365375 56.0629 0.036317 56.0627 0.0360927 56.0626 0.0358652 56.0625 0.0356353 56.0623 0.0354037 56.0622 0.0351713 56.062 0.0349386 56.0619 0.034706 56.0618 0.0344738 56.0616 0.0342427 56.0615 0.034013 56.0614 0.0337848 56.0613 0.0335593 56.0611 0.0333366 56.061 0.033117 56.0609 0.0329013 56.0608 0.0326897 56.0607 0.0324827 56.0605 0.0322809 56.0604 0.0320845 56.0603 0.0318937 56.0602 0.031709 56.0601 0.0315305 56.06 0.0313587 56.0599 0.0311933 56.0598 0.0310347 56.0597 0.0308828 56.0596 0.0307381 56.0595 0.0306004 56.0594 0.03047 56.0593 0.0303473 56.0592 0.0302321 56.0591 0.0301249 56.059 0.0300258 56.0589 0.0299353 56.0588 0.0298529 56.0587 0.029779 56.0586 0.0297132 56.0585 0.0296578 56.0584 0.0296158 56.0583 0.0295891 56.0582 0.0295769 56.0581 0.0295759 56.058 0.0295857 56.0579 0.0296077 56.0578 0.0296434 56.0578 0.0296931 56.0577 0.0297567 56.0576 0.02983 56.0575 0.0299128 56.0574 0.0300045 56.0573 0.0301051 56.0572 0.0302141 56.0571 0.030331 56.057 0.0304562 56.0569 0.0305899 56.0568 0.0307316 56.0567 0.0308818 56.0566 0.0310403 56.0565 0.0312073 56.0564 0.0313826 56.0563 0.031567 56.0562 0.0317589 56.0561 0.0319587 56.056 0.0321663 56.0559 0.0323813 56.0558 0.0326039 56.0557 0.032833 56.0556 0.0330689 56.0555 0.0333119 56.0554 0.0335603 56.0553 0.0338144 56.0552 0.0340734 56.0551 0.0343372 56.055 0.0346052 56.0549 0.0348774 56.0547 0.0351527 56.0546 0.0354314 56.0545 0.0357125 56.0544 0.0359958 56.0543 0.0362808 56.0541 0.0365673 56.054 0.0368548 56.0539 0.037143 56.0538 0.0374313 56.0536 0.0377195 56.0535 0.0380067 56.0534 0.0382926 56.0532 0.0385762 56.0531 0.0388568 56.053 0.0391332 56.0528 0.0394043 56.0527 0.0396695 56.0525 0.0399272 56.0524 0.0401769 56.0522 0.0404174 56.0521 0.0406482 56.0519 0.0408689 56.0518 0.04108 56.0516 0.0412814 56.0515 0.0414738 56.0513 0.0416465 56.0506 0.0414018 56.0068 0.0402258 55.7091 0.0387789 55.2075 0.0371266 54.6188 0.0353247 53.9621 0.0334032 53.2511 0.0313823 52.4952 0.029278 51.7012 0.0271041 50.8747 0.0248733 50.0208 0.022598 49.1444 0.0202905 48.2505 0.0179631 47.3442 0.0156281 46.4312 0.0132979 45.5171 0.0109839 44.6079 0.00869691 43.7095 0.00644686 42.8279 0.00424268 41.9688 0.00209181 41.1378 40.3399 0.0346944 56.0653 0.0346505 56.0652 0.0345963 56.065 0.0345272 56.0649 0.034447 56.0647 0.0343529 56.0645 0.0342484 56.0644 0.0341329 56.0642 0.0340077 56.0641 0.033875 56.0639 0.033734 56.0638 0.0335874 56.0636 0.0334354 56.0635 0.0332777 56.0633 0.0331147 56.0632 0.0329471 56.0631 0.0327746 56.0629 0.0325975 56.0628 0.0324163 56.0626 0.0322318 56.0625 0.0320446 56.0624 0.0318551 56.0622 0.0316641 56.0621 0.0314719 56.062 0.0312794 56.0618 0.031087 56.0617 0.0308953 56.0616 0.030705 56.0615 0.0305159 56.0613 0.030329 56.0612 0.0301445 56.0611 0.0299628 56.061 0.0297844 56.0608 0.0296097 56.0607 0.0294387 56.0606 0.0292719 56.0605 0.0291095 56.0604 0.0289526 56.0603 0.028801 56.0601 0.0286556 56.06 0.0285165 56.0599 0.0283838 56.0598 0.0282585 56.0597 0.0281402 56.0596 0.0280297 56.0595 0.0279275 56.0594 0.0278333 56.0593 0.0277478 56.0592 0.0276707 56.0591 0.027603 56.0589 0.0275435 56.0588 0.0274934 56.0587 0.0274519 56.0586 0.0274198 56.0585 0.0273928 56.0584 0.0273698 56.0583 0.027356 56.0582 0.0273535 56.0581 0.0273616 56.058 0.0273793 56.0579 0.027404 56.0578 0.0274315 56.0577 0.0274581 56.0576 0.0274911 56.0575 0.0275348 56.0574 0.0275903 56.0573 0.0276557 56.0572 0.0277315 56.0571 0.0278177 56.057 0.0279142 56.0569 0.0280199 56.0568 0.0281349 56.0567 0.0282592 56.0566 0.0283924 56.0565 0.028534 56.0564 0.0286842 56.0563 0.0288421 56.0562 0.0290075 56.0561 0.02918 56.056 0.0293589 56.0559 0.0295446 56.0558 0.0297368 56.0556 0.0299352 56.0555 0.0301396 56.0554 0.0303497 56.0553 0.0305648 56.0552 0.0307849 56.0551 0.0310097 56.055 0.0312384 56.0549 0.0314715 56.0547 0.0317081 56.0546 0.0319477 56.0545 0.0321902 56.0544 0.0324351 56.0543 0.0326817 56.0541 0.0329301 56.054 0.0331794 56.0539 0.0334295 56.0538 0.0336791 56.0536 0.0339281 56.0535 0.0341754 56.0534 0.0344208 56.0533 0.0346635 56.0531 0.0349029 56.053 0.0351388 56.0529 0.0353709 56.0527 0.035599 56.0526 0.0358231 56.0525 0.036043 56.0523 0.0362592 56.0522 0.036472 56.052 0.0366815 56.0519 0.0368882 56.0517 0.0370917 56.0516 0.0372915 56.0514 0.0374871 56.0513 0.037677 56.0511 0.0378506 56.0505 0.0376424 56.007 0.0365786 55.7102 0.0352649 55.2088 0.0337619 54.6203 0.0321218 53.9637 0.0303724 53.2529 0.0285324 52.4971 0.0266169 51.7031 0.0246385 50.8767 0.0226091 50.0228 0.0205397 49.1465 0.0184417 48.2526 0.0163262 47.3464 0.0142043 46.4333 0.0120868 45.5192 0.00998434 44.61 0.00790645 43.7115 0.00586203 42.8299 0.00385874 41.9708 0.00190294 41.1398 40.3418 0.0311526 56.0653 0.0311302 56.0652 0.0310959 56.065 0.0310564 56.0649 0.0310059 56.0647 0.030948 56.0646 0.0308788 56.0645 0.0308004 56.0643 0.030713 56.0642 0.0306162 56.064 0.0305122 56.0639 0.0303999 56.0637 0.0302803 56.0636 0.0301556 56.0635 0.0300259 56.0633 0.0298918 56.0632 0.0297538 56.0631 0.0296125 56.0629 0.0294684 56.0628 0.0293216 56.0626 0.0291721 56.0625 0.0290204 56.0624 0.0288668 56.0623 0.0287119 56.0621 0.0285562 56.062 0.0284001 56.0619 0.0282438 56.0617 0.0280883 56.0616 0.0279334 56.0615 0.02778 56.0614 0.0276284 56.0612 0.0274788 56.0611 0.0273315 56.061 0.027187 56.0609 0.0270457 56.0607 0.026908 56.0606 0.0267741 56.0605 0.0266438 56.0604 0.0265178 56.0603 0.0263961 56.0602 0.0262793 56.06 0.0261677 56.0599 0.0260613 56.0598 0.0259604 56.0597 0.0258653 56.0596 0.025776 56.0595 0.0256922 56.0593 0.0256148 56.0592 0.0255434 56.0591 0.0254783 56.059 0.0254199 56.0589 0.0253687 56.0588 0.0253249 56.0587 0.0252891 56.0586 0.0252632 56.0585 0.0252466 56.0583 0.0252377 56.0582 0.0252366 56.0581 0.0252423 56.058 0.0252545 56.0579 0.0252724 56.0578 0.0252993 56.0577 0.0253407 56.0576 0.0253963 56.0575 0.0254589 56.0574 0.0255277 56.0573 0.0256032 56.0571 0.0256851 56.057 0.0257735 56.0569 0.0258687 56.0568 0.0259703 56.0567 0.0260789 56.0566 0.0261939 56.0565 0.0263161 56.0564 0.0264451 56.0563 0.0265806 56.0562 0.0267228 56.056 0.0268712 56.0559 0.0270263 56.0558 0.0271879 56.0557 0.0273552 56.0556 0.0275283 56.0555 0.027706 56.0554 0.0278891 56.0552 0.0280763 56.0551 0.028268 56.055 0.0284638 56.0549 0.0286632 56.0548 0.0288661 56.0547 0.0290718 56.0545 0.0292802 56.0544 0.0294905 56.0543 0.0297028 56.0542 0.0299162 56.0541 0.030131 56.0539 0.0303465 56.0538 0.0305621 56.0537 0.0307779 56.0536 0.0309932 56.0534 0.0312083 56.0533 0.0314225 56.0532 0.0316363 56.053 0.0318491 56.0529 0.0320608 56.0528 0.0322715 56.0527 0.0324805 56.0525 0.0326878 56.0524 0.0328928 56.0522 0.0330945 56.0521 0.0332923 56.052 0.0334844 56.0518 0.0336698 56.0517 0.0338469 56.0516 0.0340145 56.0514 0.034171 56.0513 0.0343158 56.0512 0.0344478 56.051 0.0345582 56.0504 0.0343174 56.0072 0.0332983 55.7112 0.032063 55.21 0.0306665 54.6217 0.0291544 53.9652 0.0275502 53.2545 0.0258692 52.4987 0.0241238 51.7049 0.0223243 50.8785 0.0204807 50.0247 0.0186026 49.1483 0.0166997 48.2545 0.0147818 47.3483 0.0128588 46.4353 0.0109404 45.5211 0.00903593 44.6119 0.00715427 43.7134 0.0053034 42.8318 0.00349038 41.9727 0.00172114 41.1416 40.3436 0.0274358 56.0654 0.0274142 56.0652 0.0273855 56.0651 0.0273457 56.0649 0.0273004 56.0648 0.0272452 56.0647 0.0271848 56.0645 0.0271165 56.0644 0.0270402 56.0642 0.0269573 56.0641 0.0268658 56.064 0.0267676 56.0638 0.0266626 56.0637 0.0265507 56.0636 0.0264325 56.0634 0.0263092 56.0633 0.0261821 56.0632 0.0260515 56.063 0.025918 56.0629 0.0257823 56.0628 0.0256446 56.0627 0.0255061 56.0625 0.0253665 56.0624 0.0252264 56.0623 0.0250858 56.0621 0.0249451 56.062 0.0248047 56.0619 0.0246648 56.0617 0.0245259 56.0616 0.0243882 56.0615 0.0242521 56.0614 0.0241181 56.0612 0.0239864 56.0611 0.0238572 56.061 0.0237312 56.0609 0.0236081 56.0607 0.0234889 56.0606 0.0233735 56.0605 0.023262 56.0604 0.0231551 56.0603 0.0230523 56.0601 0.0229545 56.06 0.0228612 56.0599 0.0227733 56.0598 0.0226904 56.0597 0.0226131 56.0595 0.0225417 56.0594 0.0224767 56.0593 0.0224182 56.0592 0.0223665 56.0591 0.0223216 56.0589 0.0222837 56.0588 0.0222522 56.0587 0.0222264 56.0586 0.0222061 56.0585 0.0221913 56.0584 0.0221818 56.0582 0.0221795 56.0581 0.0221855 56.058 0.0222009 56.0579 0.0222268 56.0578 0.0222629 56.0577 0.0223061 56.0575 0.0223527 56.0574 0.0224051 56.0573 0.0224643 56.0572 0.0225317 56.0571 0.0226068 56.057 0.0226892 56.0568 0.022779 56.0567 0.0228761 56.0566 0.0229805 56.0565 0.0230912 56.0564 0.0232081 56.0563 0.023331 56.0561 0.0234599 56.056 0.0235943 56.0559 0.0237343 56.0558 0.0238792 56.0557 0.0240299 56.0556 0.0241851 56.0554 0.0243453 56.0553 0.0245099 56.0552 0.024679 56.0551 0.0248528 56.055 0.0250305 56.0548 0.0252118 56.0547 0.0253969 56.0546 0.0255851 56.0545 0.0257764 56.0543 0.0259701 56.0542 0.0261669 56.0541 0.0263658 56.054 0.0265669 56.0539 0.0267698 56.0537 0.026974 56.0536 0.0271797 56.0535 0.0273863 56.0533 0.0275935 56.0532 0.0278008 56.0531 0.0280081 56.053 0.0282142 56.0528 0.0284188 56.0527 0.0286211 56.0526 0.02882 56.0525 0.0290148 56.0523 0.0292048 56.0522 0.0293891 56.0521 0.0295672 56.0519 0.0297392 56.0518 0.0299046 56.0517 0.030064 56.0515 0.0302175 56.0514 0.0303657 56.0513 0.0305099 56.0511 0.0306505 56.051 0.0307888 56.0509 0.0309172 56.0502 0.0307363 56.0074 0.0298489 55.7121 0.0287591 55.2111 0.0275172 54.6229 0.0261663 53.9666 0.024729 53.2559 0.0232206 52.5002 0.0216532 51.7064 0.0200369 50.8801 0.018381 50.0263 0.0166942 49.15 0.0149854 48.2562 0.0132633 47.35 0.0115365 46.437 0.0098139 45.5229 0.00810388 44.6136 0.00641457 43.7151 0.00475337 42.8334 0.00312679 41.9743 0.00154057 41.1432 40.3451 0.0243866 56.0653 0.0243674 56.0652 0.0243408 56.0651 0.0243005 56.065 0.0242545 56.0648 0.0242003 56.0647 0.024141 56.0646 0.024077 56.0644 0.0240082 56.0643 0.0239361 56.0642 0.0238597 56.0641 0.0237784 56.0639 0.0236924 56.0638 0.0236025 56.0637 0.023509 56.0635 0.0234109 56.0634 0.0233077 56.0633 0.0231998 56.0632 0.0230878 56.063 0.0229727 56.0629 0.0228548 56.0628 0.0227344 56.0626 0.022612 56.0625 0.0224885 56.0624 0.0223643 56.0623 0.02224 56.0621 0.0221157 56.062 0.0219917 56.0619 0.0218686 56.0617 0.0217468 56.0616 0.0216259 56.0615 0.0215069 56.0614 0.0213897 56.0612 0.0212748 56.0611 0.0211623 56.061 0.0210528 56.0609 0.0209463 56.0607 0.0208435 56.0606 0.0207447 56.0605 0.0206502 56.0604 0.02056 56.0602 0.0204747 56.0601 0.0203941 56.06 0.0203192 56.0599 0.0202497 56.0597 0.0201857 56.0596 0.0201276 56.0595 0.0200748 56.0594 0.0200277 56.0592 0.0199862 56.0591 0.01995 56.059 0.0199196 56.0589 0.0198948 56.0587 0.0198775 56.0586 0.0198676 56.0585 0.019865 56.0584 0.0198678 56.0582 0.0198753 56.0581 0.0198871 56.058 0.0199038 56.0579 0.0199263 56.0578 0.0199556 56.0576 0.0199919 56.0575 0.020035 56.0574 0.0200856 56.0573 0.0201427 56.0571 0.0202055 56.057 0.0202745 56.0569 0.0203496 56.0568 0.0204312 56.0566 0.0205193 56.0565 0.0206137 56.0564 0.0207147 56.0563 0.0208222 56.0562 0.0209352 56.056 0.0210547 56.0559 0.0211796 56.0558 0.0213105 56.0557 0.0214469 56.0555 0.0215878 56.0554 0.021734 56.0553 0.0218848 56.0552 0.0220404 56.055 0.0221999 56.0549 0.0223636 56.0548 0.0225309 56.0547 0.0227014 56.0545 0.0228754 56.0544 0.0230522 56.0543 0.0232324 56.0542 0.0234146 56.054 0.0235994 56.0539 0.0237855 56.0538 0.0239736 56.0537 0.0241625 56.0535 0.024352 56.0534 0.0245416 56.0533 0.0247309 56.0532 0.0249196 56.053 0.025107 56.0529 0.025293 56.0528 0.0254768 56.0527 0.0256588 56.0525 0.0258382 56.0524 0.0260154 56.0523 0.0261906 56.0521 0.0263634 56.052 0.0265344 56.0519 0.0267032 56.0518 0.02687 56.0516 0.0270344 56.0515 0.0271961 56.0514 0.0273544 56.0513 0.0275081 56.0511 0.0276561 56.051 0.0277959 56.0509 0.0279257 56.0507 0.0280352 56.0501 0.0278458 56.0076 0.0269977 55.713 0.0259739 55.2121 0.0248228 54.6241 0.0235826 53.9678 0.0222719 53.2572 0.0209026 52.5016 0.0194836 51.7079 0.018023 50.8816 0.0165283 50.0278 0.0150069 49.1516 0.0134664 48.2577 0.0119146 47.3516 0.0103594 46.4385 0.00880857 45.5244 0.00727008 44.6151 0.00575169 43.7166 0.00426021 42.8349 0.00280149 41.9757 0.00138044 41.1446 40.3465 0.0208176 56.0653 0.0208148 56.0652 0.0208027 56.0651 0.0207707 56.065 0.0207266 56.0649 0.0206645 56.0648 0.020595 56.0646 0.0205099 56.0645 0.0204215 56.0644 0.0203243 56.0643 0.0202203 56.0642 0.0201131 56.064 0.020004 56.0639 0.0198914 56.0638 0.0197761 56.0637 0.0196588 56.0635 0.0195403 56.0634 0.0194209 56.0633 0.0193 56.0631 0.0191777 56.063 0.0190536 56.0629 0.0189283 56.0628 0.018802 56.0626 0.018675 56.0625 0.0185476 56.0624 0.0184201 56.0623 0.0182927 56.0621 0.0181661 56.062 0.0180404 56.0619 0.0179163 56.0617 0.0177939 56.0616 0.0176736 56.0615 0.0175554 56.0614 0.0174405 56.0612 0.017328 56.0611 0.0172192 56.061 0.0171134 56.0608 0.0170112 56.0607 0.0169127 56.0606 0.0168177 56.0604 0.0167269 56.0603 0.0166403 56.0602 0.0165582 56.0601 0.0164805 56.0599 0.0164075 56.0598 0.0163395 56.0597 0.0162765 56.0595 0.0162191 56.0594 0.0161672 56.0593 0.0161216 56.0591 0.0160824 56.059 0.0160501 56.0589 0.016025 56.0588 0.016007 56.0586 0.0159948 56.0585 0.0159878 56.0584 0.0159865 56.0582 0.0159921 56.0581 0.0160053 56.058 0.0160264 56.0579 0.0160541 56.0577 0.0160887 56.0576 0.0161289 56.0575 0.0161755 56.0573 0.0162289 56.0572 0.0162907 56.0571 0.0163593 56.0569 0.0164353 56.0568 0.0165174 56.0567 0.0166056 56.0566 0.0166998 56.0564 0.0168 56.0563 0.0169052 56.0562 0.0170163 56.056 0.0171331 56.0559 0.0172553 56.0558 0.0173829 56.0557 0.0175158 56.0555 0.0176543 56.0554 0.0177979 56.0553 0.0179461 56.0551 0.0180994 56.055 0.018257 56.0549 0.0184196 56.0548 0.0185855 56.0546 0.0187558 56.0545 0.0189297 56.0544 0.019107 56.0542 0.0192874 56.0541 0.0194707 56.054 0.0196567 56.0539 0.0198447 56.0537 0.0200345 56.0536 0.0202261 56.0535 0.0204187 56.0533 0.0206129 56.0532 0.0208075 56.0531 0.0210032 56.053 0.0211989 56.0528 0.0213951 56.0527 0.0215909 56.0526 0.0217871 56.0525 0.0219824 56.0523 0.0221772 56.0522 0.0223705 56.0521 0.022562 56.052 0.0227504 56.0518 0.0229356 56.0517 0.0231159 56.0516 0.0232905 56.0515 0.0234579 56.0513 0.0236171 56.0512 0.0237668 56.0511 0.0239066 56.051 0.0240356 56.0509 0.0241545 56.0508 0.0242644 56.0506 0.0243621 56.05 0.0242105 56.0077 0.0234945 55.7137 0.0226241 55.213 0.0216368 54.6251 0.0205662 53.9689 0.0194303 53.2584 0.0182408 52.5028 0.0170068 51.7091 0.0157356 50.8828 0.0144344 50.0291 0.0131096 49.1529 0.0117682 48.2591 0.0104168 47.3529 0.00906242 46.4399 0.00771152 45.5258 0.00637058 44.6165 0.00504576 43.718 0.00374229 42.8362 0.00246438 41.977 0.00121569 41.1458 40.3477 0.0181951 56.0654 0.0181392 56.0653 0.0180896 56.0652 0.0180443 56.0651 0.0179949 56.0649 0.0179439 56.0648 0.0178843 56.0647 0.0178186 56.0646 0.017744 56.0645 0.0176581 56.0644 0.0175674 56.0643 0.0174702 56.0641 0.0173635 56.064 0.0172522 56.0639 0.0171367 56.0638 0.0170183 56.0636 0.0168968 56.0635 0.0167733 56.0634 0.0166477 56.0633 0.0165213 56.0631 0.0163944 56.063 0.0162676 56.0629 0.0161407 56.0628 0.0160144 56.0626 0.0158881 56.0625 0.0157626 56.0624 0.0156379 56.0623 0.0155146 56.0621 0.0153925 56.062 0.0152719 56.0619 0.0151532 56.0617 0.0150366 56.0616 0.0149223 56.0615 0.0148107 56.0613 0.014702 56.0612 0.0145964 56.0611 0.014494 56.0609 0.0143953 56.0608 0.0143001 56.0607 0.0142092 56.0605 0.0141227 56.0604 0.0140405 56.0603 0.0139633 56.0601 0.0138908 56.06 0.0138232 56.0599 0.0137613 56.0597 0.0137043 56.0596 0.0136532 56.0595 0.0136077 56.0593 0.0135677 56.0592 0.0135333 56.0591 0.0135042 56.0589 0.0134802 56.0588 0.0134604 56.0586 0.0134477 56.0585 0.0134434 56.0584 0.0134464 56.0582 0.0134556 56.0581 0.0134703 56.058 0.0134909 56.0578 0.013517 56.0577 0.0135506 56.0576 0.0135924 56.0574 0.0136426 56.0573 0.0136977 56.0572 0.0137577 56.057 0.0138232 56.0569 0.0138949 56.0567 0.0139731 56.0566 0.0140576 56.0565 0.0141481 56.0563 0.0142453 56.0562 0.0143486 56.0561 0.0144579 56.0559 0.0145729 56.0558 0.0146937 56.0557 0.01482 56.0555 0.0149514 56.0554 0.0150872 56.0553 0.0152287 56.0551 0.0153746 56.055 0.0155253 56.0549 0.0156797 56.0547 0.0158387 56.0546 0.0160014 56.0545 0.0161683 56.0543 0.0163387 56.0542 0.0165126 56.0541 0.0166894 56.0539 0.016869 56.0538 0.0170512 56.0537 0.0172357 56.0535 0.0174229 56.0534 0.0176119 56.0533 0.0178026 56.0532 0.0179949 56.053 0.0181884 56.0529 0.0183829 56.0528 0.0185777 56.0526 0.0187728 56.0525 0.0189673 56.0524 0.0191611 56.0523 0.0193531 56.0521 0.0195437 56.052 0.0197315 56.0519 0.0199165 56.0518 0.0200987 56.0516 0.0202776 56.0515 0.0204536 56.0514 0.020627 56.0513 0.0207984 56.0512 0.0209689 56.0511 0.0211392 56.0509 0.0213107 56.0508 0.0214839 56.0507 0.0216603 56.0506 0.0218394 56.0505 0.0220142 56.0499 0.0219423 56.0078 0.0212964 55.7143 0.0204973 55.2138 0.0195926 54.626 0.0186155 53.9699 0.017582 53.2594 0.016502 52.5039 0.0153833 51.7102 0.0142324 50.884 0.0130555 50.0303 0.0118582 49.1541 0.0106463 48.2603 0.00942545 47.3541 0.00820091 46.4411 0.00697793 45.527 0.00576261 44.6177 0.00456148 43.7192 0.00338016 42.8374 0.00222372 41.9782 0.00109663 41.147 40.3488 0.0148242 56.0655 0.0147445 56.0654 0.0146525 56.0653 0.0145522 56.0652 0.0144474 56.065 0.0143372 56.0649 0.0142234 56.0648 0.0141063 56.0647 0.0139839 56.0646 0.0138605 56.0645 0.0137321 56.0644 0.0135982 56.0643 0.0134625 56.0642 0.0133235 56.064 0.0131805 56.0639 0.0130341 56.0638 0.0128844 56.0637 0.0127325 56.0636 0.0125791 56.0634 0.0124246 56.0633 0.0122697 56.0632 0.0121143 56.0631 0.0119591 56.0629 0.0118044 56.0628 0.0116507 56.0627 0.0114985 56.0625 0.0113478 56.0624 0.0111992 56.0623 0.0110525 56.0621 0.0109085 56.062 0.0107672 56.0619 0.010629 56.0617 0.0104939 56.0616 0.0103622 56.0615 0.0102343 56.0613 0.0101105 56.0612 0.00999079 56.0611 0.00987573 56.0609 0.00976538 56.0608 0.00966016 56.0606 0.00955971 56.0605 0.00946479 56.0604 0.00937522 56.0602 0.00929132 56.0601 0.00921326 56.0599 0.0091412 56.0598 0.0090751 56.0597 0.00901516 56.0595 0.00896137 56.0594 0.00891381 56.0592 0.00887271 56.0591 0.00883813 56.059 0.00881021 56.0588 0.00878953 56.0587 0.00877598 56.0585 0.0087697 56.0584 0.00877161 56.0582 0.00878116 56.0581 0.00879737 56.058 0.00882108 56.0578 0.00885209 56.0577 0.00888961 56.0575 0.00893259 56.0574 0.00898159 56.0572 0.00903851 56.0571 0.00910254 56.057 0.00917392 56.0568 0.00925222 56.0567 0.00933698 56.0565 0.00942907 56.0564 0.00952753 56.0562 0.00963252 56.0561 0.00974421 56.056 0.00986266 56.0558 0.00998723 56.0557 0.0101184 56.0555 0.0102554 56.0554 0.010399 56.0553 0.0105481 56.0551 0.0107032 56.055 0.0108634 56.0548 0.0110295 56.0547 0.0112007 56.0546 0.011377 56.0544 0.0115581 56.0543 0.0117437 56.0541 0.0119335 56.054 0.0121277 56.0539 0.0123258 56.0537 0.0125278 56.0536 0.0127329 56.0535 0.0129418 56.0533 0.0131533 56.0532 0.0133678 56.0531 0.0135844 56.0529 0.0138033 56.0528 0.0140238 56.0527 0.0142459 56.0525 0.014469 56.0524 0.0146933 56.0523 0.0149178 56.0522 0.015143 56.052 0.0153679 56.0519 0.0155929 56.0518 0.0158172 56.0517 0.0160414 56.0515 0.0162644 56.0514 0.0164866 56.0513 0.0167068 56.0512 0.0169249 56.0511 0.0171388 56.051 0.0173475 56.0508 0.0175479 56.0507 0.0177375 56.0506 0.0179109 56.0505 0.0180628 56.0504 0.0181844 56.0503 0.0182595 56.0498 0.0180961 56.008 0.0174873 55.7149 0.0167822 55.2145 0.0160121 54.6267 0.0151974 53.9707 0.0143453 53.2602 0.0134606 52.5048 0.0125473 51.7111 0.0116089 50.8849 0.0106491 50.0313 0.00967179 49.155 0.00868141 48.2613 0.00768258 47.3551 0.00668042 46.4421 0.00568056 45.528 0.00468905 44.6187 0.0037115 43.7201 0.00275202 42.8384 0.00181221 41.9791 0.000893545 41.1479 40.3497 0.0127652 56.0656 0.0126519 56.0655 0.0125346 56.0654 0.0124056 56.0653 0.0122766 56.0652 0.0121352 56.0651 0.0119975 56.065 0.0118485 56.0649 0.0117045 56.0647 0.0115513 56.0646 0.0114009 56.0645 0.0112452 56.0644 0.0110894 56.0643 0.0109303 56.0642 0.0107695 56.0641 0.0106069 56.064 0.0104425 56.0638 0.0102769 56.0637 0.01011 56.0636 0.00994247 56.0635 0.00977436 56.0633 0.00960643 56.0632 0.00943887 56.0631 0.00927241 56.063 0.00910705 56.0628 0.00894345 56.0627 0.00878182 56.0626 0.00862263 56.0624 0.00846594 56.0623 0.00831239 56.0622 0.00816171 56.062 0.00801468 56.0619 0.00787128 56.0617 0.007732 56.0616 0.00759659 56.0615 0.00746578 56.0613 0.00733962 56.0612 0.0072182 56.061 0.00710173 56.0609 0.0069905 56.0608 0.00688458 56.0606 0.00678441 56.0605 0.00668972 56.0603 0.00660124 56.0602 0.00651865 56.06 0.00644204 56.0599 0.00637196 56.0597 0.00630835 56.0596 0.00625129 56.0594 0.00620108 56.0593 0.00615769 56.0591 0.00612153 56.059 0.00609241 56.0588 0.00607121 56.0587 0.00605697 56.0585 0.00605089 56.0584 0.00605202 56.0582 0.00606019 56.0581 0.00607578 56.0579 0.0060986 56.0578 0.00612846 56.0576 0.0061644 56.0575 0.00620655 56.0573 0.00625576 56.0572 0.00631277 56.057 0.00637772 56.0569 0.0064499 56.0567 0.00652975 56.0566 0.00661654 56.0564 0.00671071 56.0563 0.00681175 56.0561 0.00691982 56.056 0.00703451 56.0558 0.00715607 56.0557 0.00728408 56.0555 0.00741879 56.0554 0.00755967 56.0553 0.00770714 56.0551 0.0078606 56.055 0.00802011 56.0548 0.00818544 56.0547 0.00835643 56.0545 0.00853305 56.0544 0.00871502 56.0542 0.00890204 56.0541 0.00909418 56.054 0.00929098 56.0538 0.00949249 56.0537 0.0096982 56.0535 0.0099081 56.0534 0.0101218 56.0533 0.0103393 56.0531 0.0105598 56.053 0.0107836 56.0528 0.0110099 56.0527 0.011239 56.0526 0.0114701 56.0524 0.0117035 56.0523 0.0119382 56.0522 0.0121746 56.0521 0.012412 56.0519 0.0126504 56.0518 0.0128893 56.0517 0.0131286 56.0516 0.0133679 56.0514 0.0136068 56.0513 0.0138445 56.0512 0.0140807 56.0511 0.0143147 56.051 0.0145461 56.0508 0.0147744 56.0507 0.0150001 56.0506 0.0152234 56.0505 0.0154469 56.0504 0.0156741 56.0503 0.0159125 56.0502 0.0161737 56.0501 0.0164686 56.0495 0.0165255 56.0079 0.0160516 55.7154 0.0155034 55.215 0.0148642 54.6274 0.0141607 53.9714 0.0134083 53.261 0.0126175 52.5056 0.0117959 51.7119 0.0109496 50.8858 0.0100842 50.0321 0.00920487 49.1559 0.00831645 48.2622 0.0074236 47.356 0.00653054 46.443 0.00563987 45.5289 0.00475047 44.6196 0.00385692 43.721 0.00295089 42.8393 0.00201844 41.9801 0.00103653 41.1489 40.3507 0.0085228 0.00834676 0.0081441 0.00794459 0.00772047 0.00750276 0.00726551 0.00703477 0.00679082 0.00655162 0.00630681 0.00606467 0.0058208 0.00557854 0.0053373 0.00509774 0.0048597 0.00462355 0.00438939 0.00415721 0.00392652 0.00369846 0.00347217 0.00324857 0.00302809 0.00281071 0.00259654 0.0023855 0.002179 0.00197689 0.0017794 0.00158658 0.00139664 0.00121605 0.00104116 0.000872104 0.000706215 0.000549818 0.00039699 0.000253955 0.000114702 -1.42796e-005 -0.000139095 -0.000253335 -0.000362968 -0.000461738 -0.000555597 -0.000635359 -0.000712824 -0.000778785 -0.000839335 -0.000891143 -0.000931209 -0.00096517 -0.000987578 -0.00100412 -0.00100894 -0.001008 -0.000995284 -0.000976851 -0.000947054 -0.000908778 -0.000861995 -0.00080948 -0.000745655 -0.000675648 -0.000593805 -0.000506056 -0.00040672 -0.000301608 -0.000184958 -6.26314e-005 7.08402e-005 0.000209727 0.000356672 0.000517646 0.00068043 0.000854026 0.00103226 0.00122113 0.00141433 0.00161775 0.00182506 0.00204211 0.00226287 0.00249334 0.00272671 0.00296929 0.00321759 0.00347163 0.00372801 0.00399272 0.00425919 0.00453345 0.00480922 0.00509252 0.00537673 0.0056678 0.00595941 0.00625457 0.00655585 0.00685694 0.00716649 0.00747255 0.00778332 0.00809297 0.0084073 0.00872023 0.00903767 0.00935426 0.00967585 0.0099972 0.0103241 0.0106501 0.0109787 0.0112988 0.0116088 0.0118764 0.0118935 0.0114696 0.0110266 0.0105435 0.0100376 0.00950788 0.00895821 0.00839316 0.00780972 0.00721644 0.00661111 0.00600479 0.00538989 0.00477619 0.00415891 0.0035405 0.0029104 0.00226608 0.00159275 0.000874518 ) ; boundaryField { INLET { type calculated; value nonuniform List<scalar> 168 ( -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -39.923 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 -54.1402 ) ; } OUTLET { type calculated; value nonuniform List<scalar> 168 ( 27.9518 28.5044 29.081 29.6785 30.2938 30.9231 31.563 32.2096 32.8592 33.5081 34.1529 34.7903 35.4173 36.0312 36.6296 37.2102 37.7711 38.3103 38.8256 39.3146 39.7746 40.2015 40.5896 40.9294 41.2071 41.3322 41.343 41.343 41.343 56.0657 56.0657 56.0656 56.0655 56.0654 56.0653 56.0652 56.0651 56.065 56.0649 56.0648 56.0647 56.0646 56.0644 56.0643 56.0642 56.0641 56.064 56.0638 56.0637 56.0636 56.0634 56.0633 56.0632 56.0631 56.0629 56.0628 56.0626 56.0625 56.0624 56.0622 56.0621 56.0619 56.0618 56.0616 56.0615 56.0614 56.0612 56.0611 56.0609 56.0607 56.0606 56.0604 56.0603 56.0601 56.06 56.0598 56.0597 56.0595 56.0594 56.0592 56.059 56.0589 56.0587 56.0586 56.0584 56.0582 56.0581 56.0579 56.0578 56.0576 56.0575 56.0573 56.0571 56.057 56.0568 56.0567 56.0565 56.0563 56.0562 56.056 56.0559 56.0557 56.0556 56.0554 56.0552 56.0551 56.0549 56.0548 56.0546 56.0545 56.0543 56.0542 56.054 56.0539 56.0537 56.0536 56.0534 56.0533 56.0531 56.053 56.0529 56.0527 56.0526 56.0524 56.0523 56.0522 56.052 56.0519 56.0518 56.0516 56.0515 56.0514 56.0512 56.0511 56.051 56.0509 56.0508 56.0506 56.0505 56.0504 56.0503 56.0502 56.0501 56.05 56.0499 56.0498 56.0492 56.0079 55.7158 55.2155 54.6279 53.9719 53.2615 52.5061 51.7125 50.8864 50.0327 49.1565 48.2628 47.3566 46.4436 45.5295 44.6202 43.7217 42.8399 41.9807 41.1496 40.3516 ) ; } WALL { type calculated; value uniform 0; } frontAndBackPlanes { type empty; value nonuniform 0(); } } // ************************************************************************* //
[ "marble@tju.edu.cn" ]
marble@tju.edu.cn
0d017d2c573046b7f332ebd5802cbd010fb663a0
40b4f400349ae38efeb8f0ddc9a5f8a6bb765eb9
/cluster-src/sf-kmeans-methods.cc
6a12e62176eec601958168c40bb0cc3d7f65e615
[]
no_license
YaweiZhao/VRKM_sofia-ml
7f7607fb6a870d0c0bcb339164428b2efd9ad81d
02b8b92953a12e3cd78a7cdfadd77ed8460d62d5
refs/heads/master
2021-09-18T23:33:40.323941
2018-07-21T17:40:27
2018-07-21T17:40:27
103,715,555
5
5
null
null
null
null
UTF-8
C++
false
false
59,083
cc
//==========================================================================// // Copyright 2009 Google Inc. // // // // 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. // //==========================================================================// // // Author: D. Sculley // dsculley@google.com or dsculley@cs.tufts.edu #include "sf-kmeans-methods.h" #include <assert.h> #include <cmath> #include <cstdlib> #include <float.h> #include <iostream> #include <map> #include <set> extern int objective_output_times; namespace sofia_cluster { // --------------------------------------------------- // Helper functions (Not exposed in API) // --------------------------------------------------- int RandInt(int num_vals) { return static_cast<int>(rand()) % num_vals; } float RandFloat() { return static_cast<float>(rand() / static_cast<float>(RAND_MAX)); } const SfSparseVector& RandomExample(const SfDataSet& data_set, int *id_x = NULL) { int num_examples = data_set.NumExamples(); int i = static_cast<int>(rand()) % num_examples; if (i < 0) { i += num_examples; } if (id_x != NULL) *id_x = i; return data_set.VectorAt(i); } // --------------------------------------------------- // Kmeans Initialization Functions // --------------------------------------------------- void InitializeWithKRandomCenters(int k, const SfDataSet& data_set, SfClusterCenters* cluster_centers) { assert(k > 0 && k <= data_set.NumExamples()); std::set<int> selected_centers; // Sample k centers uniformly at random, with replacement. for (int i = 0; i < k; ++i) { cluster_centers->AddClusterCenterAt(RandomExample(data_set)); } } void SamplingFarthestFirst(int k, int sample_size, const SfDataSet& data_set, SfClusterCenters* cluster_centers) { assert(k > 0 && k <= data_set.NumExamples()); // Get first point. int id = RandInt(data_set.NumExamples()); cluster_centers->AddClusterCenterAt(data_set.VectorAt(id)); // Get the next k - 1 points. int center_id; for (int i = 1; i < k; ++i) { int best_distance = 0; int best_center = 0; for (int j = 0; j < sample_size; ++j) { int temp_id = RandInt(data_set.NumExamples()); float temp_distance = cluster_centers-> SqDistanceToClosestCenter(data_set.VectorAt(temp_id), &center_id); if (temp_distance > best_distance) { best_distance = temp_distance; best_center = temp_id; } } cluster_centers->AddClusterCenterAt(data_set.VectorAt(best_center)); } } void ClassicKmeansPlusPlus(int k, const SfDataSet& data_set, SfClusterCenters* cluster_centers) { assert(k > 0 && k <= data_set.NumExamples()); // Get first point. int id = RandInt(data_set.NumExamples()); cluster_centers->AddClusterCenterAt(data_set.VectorAt(id)); // Get the next k - 1 points. for (int i = 1; i < k; ++i) { // First, compute the total distance-mass, and distance for each point. float total_distance_mass = 0.0; std::map<float, int> distance_for_points; int center_id; for (int j = 0; j < data_set.NumExamples(); ++j) { float distance = cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(j), &center_id); if (distance > 0) { distance_for_points[distance + total_distance_mass] = j; total_distance_mass += distance; } } // Get an example with D^2 weighting. // Note that we're breaking ties arbitrarily. float sample_distance = RandFloat() * total_distance_mass; std::map<float, int>::iterator distance_iter = distance_for_points.lower_bound(sample_distance); if (distance_iter == distance_for_points.end()) { std::cerr << "No unique points left for cluster centers." << std::endl; exit(1); } cluster_centers->AddClusterCenterAt( data_set.VectorAt(distance_iter->second)); } } void OptimizedKmeansPlusPlus(int k, const SfDataSet& data_set, SfClusterCenters* cluster_centers) { assert(k > 0 && k <= data_set.NumExamples()); // Get first point, and initialize best distances. int cluster_center = RandInt(data_set.NumExamples()); cluster_centers->AddClusterCenterAt(data_set.VectorAt(cluster_center)); vector<float> best_center_ids(data_set.NumExamples(), 0); vector<float> best_distances(data_set.NumExamples(), FLT_MAX); for (int i = 0; i < data_set.NumExamples(); ++i) { best_distances[i] = cluster_centers->SqDistanceToCenterId(0, data_set.VectorAt(i)); } // Get the next (k - 1) points. for (int i = 1; i < k; ++i) { float total_distance_mass = 0.0; std::map<float, int> distance_for_points; int recently_added_center = i - 1; for (int j = 0; j < data_set.NumExamples(); ++j) { float distance = cluster_centers->SqDistanceToCenterId(recently_added_center, data_set.VectorAt(j)); if (distance < best_distances[j]) { best_distances[j] = distance; best_center_ids[j] = recently_added_center; distance_for_points[distance + total_distance_mass] = j; total_distance_mass += distance; } else { distance_for_points[best_distances[j] + total_distance_mass] = j; total_distance_mass += best_distances[j]; } } // Get an example with D^2 weighting. // Note that we're breaking ties arbitrarily. float sample_distance = RandFloat() * total_distance_mass; std::map<float, int>::iterator distance_iter = distance_for_points.lower_bound(sample_distance); if (distance_iter == distance_for_points.end()) { std::cerr << "No unique points left for cluster centers." << std::endl; exit(1); } cluster_centers->AddClusterCenterAt( data_set.VectorAt(distance_iter->second)); } } void OptimizedKmeansPlusPlusTI(int k, const SfDataSet& data_set, SfClusterCenters* cluster_centers) { assert(k > 0 && k <= data_set.NumExamples()); // Get first point, and initialize best distances. int cluster_center = RandInt(data_set.NumExamples()); cluster_centers->AddClusterCenterAt(data_set.VectorAt(cluster_center)); vector<float> best_center_ids(data_set.NumExamples(), 0); vector<float> best_distances(data_set.NumExamples()); for (int i = 0; i < data_set.NumExamples(); ++i) { best_distances[i] = cluster_centers->SqDistanceToCenterId(0, data_set.VectorAt(i)); } vector<float> inter_center_distances; // Get the next (k - 1) points. for (int i = 1; i < k; ++i) { float total_distance_mass = 0.0; int recently_added_center = i - 1; std::map<float, int> distance_for_points; for (int j = 0; j < data_set.NumExamples(); ++j) { float distance; if (i >= 2 && inter_center_distances[best_center_ids[j]] > 2.0 * best_distances[j]) { distance = best_distances[j]; } else { distance = cluster_centers->SqDistanceToCenterId(recently_added_center, data_set.VectorAt(j)); } if (distance < best_distances[j]) { best_distances[j] = distance; best_center_ids[j] = recently_added_center; distance_for_points[distance + total_distance_mass] = j; total_distance_mass += distance; } else { distance_for_points[best_distances[j] + total_distance_mass] = j; total_distance_mass += best_distances[j]; } } // Get an example with D^2 weighting. // Note that we're breaking ties arbitrarily. float sample_distance = RandFloat() * total_distance_mass; std::map<float, int>::iterator distance_iter = distance_for_points.lower_bound(sample_distance); if (distance_iter == distance_for_points.end()) { std::cerr << "No unique points left for cluster centers." << std::endl; exit(1); } // Add the new cluster center and update the inter-cluster distances. cluster_centers->AddClusterCenterAt( data_set.VectorAt(distance_iter->second)); inter_center_distances.clear(); for (int j = 0; j < cluster_centers->Size() - 1; ++j) { inter_center_distances.push_back(cluster_centers-> SqDistanceToCenterId(j, data_set.VectorAt(distance_iter->second))); } } } void SamplingKmeansPlusPlus(int k, int sample_size, const SfDataSet& data_set, SfClusterCenters* cluster_centers) { assert(k > 0 && k <= data_set.NumExamples()); assert(sample_size > 0); // Get first point, and initialize best distances. int cluster_center = RandInt(data_set.NumExamples()); cluster_centers->AddClusterCenterAt(data_set.VectorAt(cluster_center)); int cluster_id; for (int i = 1; i < k; ++i) { int selected_center = 0; float total_distance_mass = 0.0; for (int j = 0; j < sample_size; ++j) { int proposed_cluster_center = RandInt(data_set.NumExamples()); float distance = cluster_centers->SqDistanceToClosestCenter( data_set.VectorAt(proposed_cluster_center), &cluster_id); total_distance_mass += distance; if (RandFloat() < distance / total_distance_mass) { selected_center = proposed_cluster_center; } } cluster_centers->AddClusterCenterAt(data_set.VectorAt(selected_center)); } } // --------------------------------------------------- // Kmeans Optimization Functions // --------------------------------------------------- void ProjectToL1Ball(float L1_lambda, float L1_epsilon, SfClusterCenters* cluster_centers) { if (L1_lambda > 0) { for (int i = 0; i < cluster_centers->Size(); ++i) { if (L1_epsilon == 0.0) { cluster_centers->MutableClusterCenter(i)->ProjectToL1Ball(L1_lambda); } else { cluster_centers->MutableClusterCenter(i)-> ProjectToL1Ball(L1_lambda, L1_epsilon); } } } } void BatchKmeans(int num_iterations, const SfDataSet& data_set, SfClusterCenters* cluster_centers, float L1_lambda, float L1_epsilon) { char filename[200]; sprintf(filename, "batch_t_%d.txt", num_iterations); FILE* t = fopen(filename, "w"); sprintf(filename, "batch_v_%d.txt", num_iterations); FILE* v = fopen(filename, "w"); struct timeval t1,t2; double timeuse = 0; //fprintf(t, "%lf ", timeuse); //fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); for (int i = 0; i < num_iterations; ++i) { //clock_t start = clock(); gettimeofday(&t1,NULL); OneBatchKmeansOptimization(data_set, cluster_centers); //double num_secs = static_cast<double>(clock() - start) / CLOCKS_PER_SEC; gettimeofday(&t2,NULL); timeuse += t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse); fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); //ProjectToL1Ball(L1_lambda, L1_epsilon, cluster_centers); } } void SGDKmeans(int num_iterations, const SfDataSet& data_set, SfClusterCenters* cluster_centers, float L1_lambda, float L1_epsilon) { vector<int> per_center_step_counts; per_center_step_counts.resize(cluster_centers->Size()); char filename[200]; sprintf(filename, "sgd_t_%d.txt", num_iterations); FILE* t = fopen(filename, "w"); sprintf(filename, "sgd_v_%d.txt", num_iterations); FILE* v = fopen(filename, "w"); int q = num_iterations / objective_output_times; int r = num_iterations % objective_output_times; int cnt = 0; int upper = 0; struct timeval t1,t2; double timeuse = 0; //fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); for (int i = 0; i < num_iterations; ++i) { //clock_t start = clock(); gettimeofday(&t1,NULL); OneStochasticKmeansStep(RandomExample(data_set), cluster_centers, &per_center_step_counts); //double num_secs = static_cast<double>(clock() - start) / CLOCKS_PER_SEC; gettimeofday(&t2,NULL); timeuse += t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; if (i == upper) { fprintf(t, "%lf ", timeuse); fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); int interval = cnt < r ? q+1 : q; if (cnt == objective_output_times-1) upper += interval-1; else upper += interval; ++cnt; } //if (i % 100 == 50) //ProjectToL1Ball(L1_lambda, L1_epsilon, cluster_centers); } //ProjectToL1Ball(L1_lambda, L1_epsilon, cluster_centers); } void MiniBatchKmeans(int num_iterations, int mini_batch_size, const SfDataSet& data_set, SfClusterCenters* cluster_centers, float L1_lambda, float L1_epsilon) { vector<int> per_center_step_counts; per_center_step_counts.resize(cluster_centers->Size()); char filename[200]; sprintf(filename, "mb_t_%d_%d.txt", num_iterations, mini_batch_size); FILE* t = fopen(filename, "w"); sprintf(filename, "mb_v_%d_%d.txt", num_iterations, mini_batch_size); FILE* v = fopen(filename, "w"); int q = num_iterations / objective_output_times; int r = num_iterations % objective_output_times; int cnt = 0; int upper = 0; struct timeval t1,t2; double timeuse = 0; //fprintf(t, "%lf ", timeuse); //fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); for (int i = 0; i < num_iterations; ++i) { //clock_t start = clock(); gettimeofday(&t1,NULL); OneMiniBatchKmeansOptimization(data_set, cluster_centers, mini_batch_size, &per_center_step_counts); //double num_secs = static_cast<double>(clock() - start) / CLOCKS_PER_SEC; gettimeofday(&t2,NULL); timeuse += t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; if (i == upper) { fprintf(t, "%lf ", timeuse); fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); int interval = cnt < r ? q+1 : q; if (cnt == objective_output_times-1) upper += interval-1; else upper += interval; ++cnt; } //ProjectToL1Ball(L1_lambda, L1_epsilon, cluster_centers); } //ProjectToL1Ball(L1_lambda, L1_epsilon, cluster_centers); } void OneBatchKmeansOptimization(const SfDataSet& data_set, SfClusterCenters* cluster_centers) { assert(cluster_centers->Size() > 0); SfClusterCenters new_centers(cluster_centers->GetDimensionality(), cluster_centers->Size()); vector<int> examples_per_cluster(cluster_centers->Size(), 0); // Sum the vectors for each center. for (int i = 0; i < data_set.NumExamples(); ++i) { int closest_center; cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(i), &closest_center); new_centers.MutableClusterCenter(closest_center)->AddVector(data_set.VectorAt(i), 1.0); ++examples_per_cluster[closest_center]; } // Scale each center by 1/number of vectors. for (int i = 0; i < cluster_centers->Size(); ++i) { if (examples_per_cluster[i] > 0) { new_centers.MutableClusterCenter(i)->ScaleBy(1.0 / examples_per_cluster[i]); } } // Swap in the new centers. cluster_centers->Clear(); for (int i = 0; i < new_centers.Size(); ++i) { cluster_centers->AddClusterCenter(new_centers.ClusterCenter(i)); } } void OneStochasticKmeansStep(const SfSparseVector& x, SfClusterCenters* cluster_centers, vector<int>* per_center_step_counts) { // Find the closest center. int closest_center; cluster_centers->SqDistanceToClosestCenter(x, &closest_center); // Take the step. float c = 1.0; float eta = c / (++(*per_center_step_counts)[closest_center] + c); cluster_centers->MutableClusterCenter(closest_center)->ScaleBy(1.0 - eta); cluster_centers->MutableClusterCenter(closest_center)->AddVector(x, eta); } void OneMiniBatchKmeansOptimization(const SfDataSet& data_set, SfClusterCenters* cluster_centers, int mini_batch_size, vector<int>* per_center_step_counts) { // Compute closest centers for a mini-batch. vector<vector<int> > mini_batch_centers(cluster_centers->Size()); for (int i = 0; i < mini_batch_size; ++i) { // Find the closest center for a random example. int x_id = RandInt(data_set.NumExamples()); int closest_center; cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(x_id), &closest_center); mini_batch_centers[closest_center].push_back(x_id); } // Apply the mini-batch. for (unsigned int i = 0; i < mini_batch_centers.size(); ++i) { for (unsigned int j = 0; j < mini_batch_centers[i].size(); ++j) { float c = 1.0; float eta = c / (++(*per_center_step_counts)[i] + c); cluster_centers->MutableClusterCenter(i)->ScaleBy(1.0 - eta); cluster_centers->MutableClusterCenter(i)->AddVector(data_set.VectorAt(mini_batch_centers[i][j]), eta); } } } void SVRGKmeans(int num_iterations, int num_m, const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta, float L1_lambda, float L1_epsilon) { //cluster_centers->UpdatesMemAlloc(data_set.NumExamples(), false); int *table = new int[data_set.NumExamples()]; char filename[200]; sprintf(filename, "svrg_t_%d_%d_%f.txt", num_iterations, num_m, eta); FILE* t = fopen(filename, "w"); sprintf(filename, "svrg_v_%d_%d_%f.txt", num_iterations, num_m, eta); FILE* v = fopen(filename, "w"); int q = num_iterations / objective_output_times; int r = num_iterations % objective_output_times; int cnt = 0; int upper = 0; struct timeval t1,t2; double timeuse = 0; //fprintf(t, "%lf ", timeuse); //fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); //num_m = 0.05 * data_set.NumExamples(); for (int ite = 0; ite < num_iterations; ++ite) { gettimeofday(&t1, NULL); // num_m *= 2; //cluster_centers->InitUpdates(); assert(cluster_centers->Size() > 0); SfClusterCenters new_centers(cluster_centers->GetDimensionality(), cluster_centers->Size()); vector<int> examples_per_cluster(cluster_centers->Size(), 0); // Sum the vectors for each center. for (int i = 0; i < data_set.NumExamples(); ++i) { int closest_center; cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(i), &closest_center); new_centers.MutableClusterCenter(closest_center)->AddVector(data_set.VectorAt(i), 1.0); ++examples_per_cluster[closest_center]; table[i] = closest_center; } // Scale each center by 1/number of vectors. for (int i = 0; i < cluster_centers->Size(); ++i) { if (examples_per_cluster[i] > 0) { new_centers.MutableClusterCenter(i)->ScaleBy(1.0 / examples_per_cluster[i]); //new_centers.MutableClusterCenter(i)->ScaleBy(1.0 / data_set.NumExamples()); } } // Swap in the new centers. cluster_centers->Clear(); for (int i = 0; i < new_centers.Size(); ++i) { cluster_centers->AddClusterCenter(new_centers.ClusterCenter(i)); } //cluster_centers->MB2SetAvgUpdates(new_centers, examples_per_cluster, data_set.NumExamples()); //cluster_centers->MB2SetAvgUpdates(new_centers); for (int i = 0; i < cluster_centers->Size(); ++i) cluster_centers->MutableClusterCenter(i)->ScaleToOne(); /* gettimeofday(&t2, NULL); timeuse = t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse);*/ SfClusterCenters pre_centers = *cluster_centers; //float** avg_updates = cluster_centers->GetAvgUpdates(); float* pre_weights; float* weights; int id_x; int closest_center; //gettimeofday(&t1, NULL); for (int inner = 0; inner < num_m; ++inner) { // Find the closest center. const SfSparseVector& x = RandomExample(data_set, &id_x); cluster_centers->SqDistanceToClosestCenter(x, &closest_center); pre_weights = pre_centers.ClusterCenter(table[id_x]).GetWeight(); if (closest_center == table[id_x]) cluster_centers->MutableClusterCenter(closest_center)->AddVectorCompact(/*table[id_x],*/ eta, pre_weights/*, avg_updates*/); else { weights = cluster_centers->ClusterCenter(closest_center).GetWeight(); cluster_centers->MutableClusterCenter(closest_center)->UpdateWeights(/*closest_center, */eta, x, weights, /*avg_updates,*/ 0); cluster_centers->MutableClusterCenter(table[id_x])->UpdateWeights(/*table[id_x], */eta, x, pre_weights, /*avg_updates,*/ 1); } /*for (int i = 0; i < cluster_centers->Size(); ++i) { if (i != table[id_x] && i != closest_center) cluster_centers->MutableClusterCenter(i)->UpdateWeights(i, eta, x, pre_weights, avg_updates, 2); }*/ } gettimeofday(&t2, NULL); timeuse += t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; if (ite == upper) { fprintf(t, "%lf ", timeuse); fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); int interval = cnt < r ? q+1 : q; if (cnt == objective_output_times-1) upper += interval-1; else upper += interval; ++cnt; } } } void SAGAKmeans(int num_iterations, const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta) { char filename[200]; sprintf(filename, "saga_t_%d_%f.txt", num_iterations, eta); FILE* t = fopen(filename, "w"); sprintf(filename, "saga_v_%d_%f.txt", num_iterations, eta); FILE* v = fopen(filename, "w"); int q = num_iterations / objective_output_times; int r = num_iterations % objective_output_times; int cnt = 0; int upper = 0; struct timeval t1,t2; double timeuse = 0; int num_samples = data_set.NumExamples(); int *table = new int[num_samples]; int num_centers = cluster_centers->Size(); int dimensionality = cluster_centers->GetDimensionality(); float **avg_updates; float **base_updates; gettimeofday(&t1,NULL); //cluster_centers->UpdatesMemAlloc(num_samples, true); avg_updates = new float*[num_centers]; for (int i = 0; i < num_centers; ++i) avg_updates[i] = new float[dimensionality]; base_updates = new float*[num_samples]; for (int i = 0; i < num_samples; ++i) base_updates[i] = new float[dimensionality]; assert(num_centers > 0); SfClusterCenters new_centers(cluster_centers->GetDimensionality(), num_centers); vector<int> examples_per_cluster(num_centers, 0); // Sum the vectors for each center. for (int i = 0; i < num_samples; ++i) { int closest_center; const SfSparseVector& x = data_set.VectorAt(i); cluster_centers->SqDistanceToClosestCenter(x, &closest_center); new_centers.MutableClusterCenter(closest_center)->AddVector(x, 1.0); ++examples_per_cluster[closest_center]; table[i] = closest_center; } // Scale each center by 1/number of vectors. for (int i = 0; i < num_centers; ++i) { if (examples_per_cluster[i] > 0) { new_centers.MutableClusterCenter(i)->ScaleBy(1.0 / examples_per_cluster[i]); } } // Swap in the new centers. /* cluster_centers->Clear(); for (int i = 0; i < new_centers.Size(); ++i) { cluster_centers->AddClusterCenter(new_centers.ClusterCenter(i)); }*/ for (int i = 0; i < num_samples; ++i) { float* weights = cluster_centers->ClusterCenter(table[i]).GetWeight(); for(int j =0; j < dimensionality; ++j) base_updates[i][j] = weights[j]; const SfSparseVector& x = data_set.VectorAt(i); int num_features = x.NumFeatures(); for (int j = 0; j < num_features; ++j) { base_updates[i][x.FeatureAt(j)] -= x.ValueAt(j); } } for (int i = 0; i < num_centers; ++i) { cluster_centers->MutableClusterCenter(i)->ScaleToOne(); new_centers.MutableClusterCenter(i)->ScaleToOne(); float* new_weights = new_centers.ClusterCenter(i).GetWeight(); float* weights = cluster_centers->ClusterCenter(i).GetWeight(); for (int j = 0; j < dimensionality; ++j) { //avg_updates_[i][j] = new_weights[j] - n[i]/(float)num_examples * weights[j]; avg_updates[i][j] = weights[j] - new_weights[j]; } } gettimeofday(&t2, NULL); timeuse += t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse); //fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); float* g = new float[dimensionality]; float* val = new float[dimensionality]; for (int ite = 0; ite < num_iterations; ++ite) { gettimeofday(&t1,NULL); int id_x; int closest_center; const SfSparseVector& x = RandomExample(data_set, &id_x); cluster_centers->SqDistanceToClosestCenter(x, &closest_center); float* weights = cluster_centers->ClusterCenter(closest_center).GetWeight(); int vk = examples_per_cluster[closest_center]; if (closest_center == table[id_x]) { for (int i = 0; i < dimensionality; ++i) { g[i] = weights[i]; } int num_features = x.NumFeatures(); for (int i = 0; i < num_features; ++i) { g[x.FeatureAt(i)] -= x.ValueAt(i); } for (int i = 0; i < dimensionality; ++i) val[i] = g[i] - base_updates[id_x][i]; cluster_centers->MutableClusterCenter(closest_center)->SAGAUpdateWeights(eta, val); for (int i = 0; i < num_centers; ++i) { cluster_centers->MutableClusterCenter(i)->SAGAUpdateWeights(eta, avg_updates[i]); cluster_centers->MutableClusterCenter(i)->ComputeSquaredNorm(); } for (int i = 0; i < dimensionality; ++i) { avg_updates[closest_center][i] -= val[i] / vk; base_updates[id_x][i] = g[i]; } } else { for (int i = 0; i < dimensionality; ++i) { g[i] = weights[i]; } int num_features = x.NumFeatures(); for (int i = 0; i < num_features; ++i) { g[x.FeatureAt(i)] -= x.ValueAt(i); } cluster_centers->MutableClusterCenter(closest_center)->SAGAUpdateWeights(eta, g); cluster_centers->MutableClusterCenter(table[id_x])->SAGAUpdateWeights(-eta, base_updates[id_x]); for (int i = 0; i < num_centers; ++i) { cluster_centers->MutableClusterCenter(i)->SAGAUpdateWeights(eta, avg_updates[i]); cluster_centers->MutableClusterCenter(i)->ComputeSquaredNorm(); } for (int i = 0; i < dimensionality; ++i) { avg_updates[closest_center][i] = (float)vk/(vk+1) * avg_updates[closest_center][i] + g[i]/(vk+1); vk = examples_per_cluster[table[id_x]]; avg_updates[table[id_x]][i] = (float)vk/(vk-1) * avg_updates[table[id_x]][i] - base_updates[id_x][i]/(vk-1); base_updates[id_x][i] = g[i]; } ++examples_per_cluster[closest_center]; --examples_per_cluster[table[id_x]]; table[id_x] = closest_center; } gettimeofday(&t2,NULL); timeuse += t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; if (ite == upper) { fprintf(t, "%lf ", timeuse); fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); int interval = cnt < r ? q+1 : q; if (cnt == objective_output_times-1) upper += interval-1; else upper += interval; ++cnt; } } } void SVRGSKmeans(int num_iterations, int num_m, const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta, float L1_lambda, float L1_epsilon) { cluster_centers->SUpdatesMemAlloc(data_set.NumExamples(), false); int *table = new int[data_set.NumExamples()]; char filename[200]; sprintf(filename, "svrg_s_t_%d_%d_%f.txt", num_iterations, num_m, eta); FILE* t = fopen(filename, "w"); sprintf(filename, "svrg_s_v_%d_%d_%f.txt", num_iterations, num_m, eta); FILE* v = fopen(filename, "w"); struct timeval t1,t2; double timeuse; fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); for (int i = 0; i < num_iterations; ++i) { gettimeofday(&t1, NULL); cluster_centers->SInitUpdates(); //GetSAvgGradientFast(data_set, cluster_centers, eta); //OneSVRGSKmeansOptimization(data_set, // cluster_centers, // num_m, // eta); GetSAvgGradientCompact(data_set, cluster_centers, eta, table); SfClusterCenters pre_centers = *cluster_centers; //SfClusterCenters pre_centers; //for (int i = 0; i < cluster_centers->Size(); ++i) //pre_centers.AddClusterCenter(SfWeightVector(cluster_centers->ClusterCenter(i))); gettimeofday(&t2, NULL); timeuse = t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse); gettimeofday(&t1, NULL); OneSVRGSStep(data_set, cluster_centers, pre_centers, num_m, eta, table); gettimeofday(&t2, NULL); timeuse = t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse); fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); } } void SVRGMBKmeans(int num_iterations, int num_m, int mini_batch_size, const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta, float L1_lambda, float L1_epsilon) { long int q = data_set.NumExamples() / mini_batch_size; int r = data_set.NumExamples() % mini_batch_size; long int num_mb = r ? q+1 : q; cluster_centers->MBUpdatesMemAlloc(num_mb, false); int *table = new int[data_set.NumExamples()]; char filename[200]; sprintf(filename, "svrg_mb_t_%d_%d_%d_%f.txt", num_iterations, num_m, mini_batch_size, eta); FILE* t = fopen(filename, "w"); sprintf(filename, "svrg_mb_v_%d_%d_%d_%f.txt", num_iterations, num_m, mini_batch_size, eta); FILE* v = fopen(filename, "w"); struct timeval t1,t2; double timeuse; fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); for (int i = 0; i < num_iterations; ++i) { gettimeofday(&t1, NULL); cluster_centers->MBInitUpdates(num_mb, false); //GetMBAvgGradientFast(data_set, cluster_centers, mini_batch_size, eta, q, r); //OneSVRGMBKmeansOptimization(data_set, // cluster_centers, // num_m, // mini_batch_size, // eta, // num_mb, // q, // r); GetMBAvgGradientCompact(data_set, cluster_centers, mini_batch_size, eta, q, r, table); SfClusterCenters pre_centers = *cluster_centers; //SfClusterCenters pre_centers; //for (int i = 0; i < cluster_centers->Size(); ++i) //pre_centers.AddClusterCenter(SfWeightVector(cluster_centers->ClusterCenter(i))); gettimeofday(&t2, NULL); timeuse = t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse); gettimeofday(&t1, NULL); OneSVRGMBStep(data_set, cluster_centers, pre_centers, num_m, mini_batch_size, eta, num_mb, q, r, table); gettimeofday(&t2, NULL); timeuse = t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse); fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); //ProjectToL1Ball(L1_lambda, L1_epsilon, cluster_centers); } //ProjectToL1Ball(L1_lambda, L1_epsilon, cluster_centers); } void SVRGMB2Kmeans(int num_iterations, int num_m, int mini_batch_size, const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta, float L1_lambda, float L1_epsilon) { unsigned int *table = new unsigned int[data_set.NumExamples()]; cluster_centers->UpdatesMemAlloc(data_set.NumExamples(), false); char filename[200]; sprintf(filename, "svrg_mb2_t_%d_%d_%d_%f.txt", num_iterations, num_m, mini_batch_size, eta); FILE* t = fopen(filename, "w"); sprintf(filename, "svrg_mb2_v_%d_%d_%d_%f.txt", num_iterations, num_m, mini_batch_size, eta); FILE* v = fopen(filename, "w"); struct timeval t1,t2; double timeuse; fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); for (int ite = 0; ite < num_iterations; ++ite) { gettimeofday(&t1, NULL); cluster_centers->InitUpdates(); assert(cluster_centers->Size() > 0); SfClusterCenters new_centers(cluster_centers->GetDimensionality(), cluster_centers->Size()); vector<int> examples_per_cluster(cluster_centers->Size(), 0); // Sum the vectors for each center. for (int i = 0; i < data_set.NumExamples(); ++i) { int closest_center; cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(i), &closest_center); new_centers.MutableClusterCenter(closest_center)->AddVector(data_set.VectorAt(i), 1.0); ++examples_per_cluster[closest_center]; table[i] = closest_center; } // Scale each center by 1/number of vectors. for (int i = 0; i < cluster_centers->Size(); ++i) { if (examples_per_cluster[i] > 0) { new_centers.MutableClusterCenter(i)->ScaleBy(1.0 / examples_per_cluster[i]); } } //cluster_centers->MB2SetAvgUpdates(new_centers); gettimeofday(&t2, NULL); timeuse = t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse); SfClusterCenters pre_centers = *cluster_centers; float** avg_updates = cluster_centers->GetAvgUpdates(); printf("===========initial weights==========\n"); for (int i = 0; i < cluster_centers->Size(); ++i) { float* w = cluster_centers->ClusterCenter(i).GetWeight(); for (int j = 0; j < 47237; ++j) { if (fabsf(w[j] - 0.0) > 0.000001) printf("%d:%f ", j, w[j]); } printf("\n"); } printf("===========initial pre_weights==========\n"); for (int i = 0; i < cluster_centers->Size(); ++i) { float* w = pre_centers.ClusterCenter(i).GetWeight(); for (int j = 0; j < 47237; ++j) { if (fabsf(w[j] - 0.0) > 0.000001) printf("%d:%f ", j, w[j]); } printf("\n"); } printf("===========initial avg_weights==========\n"); for (int i = 0; i < cluster_centers->Size(); ++i) { for (int j = 0; j < 47237; ++j) { if (fabsf(avg_updates[i][j] - 0.0) > 0.000001) printf("%d:%f ", j, avg_updates[i][j]); } printf("\n"); } printf("*******************\n\n"); float* pre_weights; int x_id; for (int inner = 0; inner < num_m; ++inner) { gettimeofday(&t1, NULL); // Compute closest centers for a mini-batch. vector<vector<int> > mini_batch_centers(cluster_centers->Size()); for (int i = 0; i < mini_batch_size; ++i) { // Find the closest center for a random example. x_id = RandInt(data_set.NumExamples()); int closest_center; cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(x_id), &closest_center); mini_batch_centers[closest_center].push_back(x_id); } SfClusterCenters temp_centers = *cluster_centers; // Apply the mini-batch. for (unsigned int i = 0; i < mini_batch_centers.size(); ++i) { printf("centroid %d: total %d\n", i, mini_batch_centers[i].size()); for (unsigned int j = 0; j < mini_batch_centers[i].size(); ++j) { x_id = mini_batch_centers[i][j]; // if (table[x_id] == i) { pre_weights = pre_centers.ClusterCenter(i).GetWeight(); //cluster_centers->MutableClusterCenter(i)->AddVectorCompact(i, eta, pre_weights, avg_updates); // } else { // cluster_centers->MutableClusterCenter(i)->AddMB2VectorCompact(i, data_set.VectorAt(i), eta, avg_updates); // } } printf("\n"); } printf("===========weights==========\n"); for (int i = 0; i < cluster_centers->Size(); ++i) { float* w = cluster_centers->ClusterCenter(i).GetWeight(); float* temp = temp_centers.ClusterCenter(i).GetWeight(); for (int j = 0; j < 47237; ++j) if (fabsf(w[j] - temp[j]) > 0.000001) printf("%d:%f ", j, w[j]); printf("\n"); } printf("===========pre_weights==========\n"); for (int i = 0; i < cluster_centers->Size(); ++i) { float* w = pre_centers.ClusterCenter(i).GetWeight(); for (int j = 0; j < 47237; ++j) { if (fabsf(w[j] - 0.0) > 0.000001) printf("%d:%f ", j, w[j]); } printf("\n"); } gettimeofday(&t2, NULL); timeuse = t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse); fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); } } } void SVRGMB3Kmeans(int num_iterations, int num_m, int mini_batch_size, const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta, float L1_lambda, float L1_epsilon) { unsigned int *table = new unsigned int[data_set.NumExamples()]; cluster_centers->UpdatesMemAlloc(data_set.NumExamples(), false); char filename[200]; sprintf(filename, "svrg_mb3_t_%d_%d_%d_%f.txt", num_iterations, num_m, mini_batch_size, eta); FILE* t = fopen(filename, "w"); sprintf(filename, "svrg_mb3_v_%d_%d_%d_%f.txt", num_iterations, num_m, mini_batch_size, eta); FILE* v = fopen(filename, "w"); struct timeval t1,t2; double timeuse; fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); int x_id; for (int inner = 0; inner < num_m; ++inner) { gettimeofday(&t1, NULL); cluster_centers->InitUpdates(); // Compute closest centers for a mini-batch. vector<vector<int> > mini_batch_centers(cluster_centers->Size()); for (int i = 0; i < mini_batch_size; ++i) { // Find the closest center for a random example. x_id = RandInt(data_set.NumExamples()); int closest_center; cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(x_id), &closest_center); mini_batch_centers[closest_center].push_back(x_id); cluster_centers->SetUpdates(x_id, data_set.VectorAt(x_id), closest_center, false); table[x_id] = closest_center; } for (int i = 0; i < cluster_centers->Size(); ++i) { cluster_centers->SetAvgUpdates(i, mini_batch_centers[i].size()); } SfClusterCenters pre_centers = *cluster_centers; float** avg_updates = cluster_centers->GetAvgUpdates(); float* pre_weights; // Apply the mini-batch. for (unsigned int i = 0; i < mini_batch_centers.size(); ++i) { for (unsigned int j = 0; j < mini_batch_centers[i].size(); ++j) { pre_weights = pre_centers.ClusterCenter(table[mini_batch_centers[i][j]]).GetWeight(); // cluster_centers->MutableClusterCenter(i)->AddVectorCompact(i, eta, pre_weights, avg_updates); } } gettimeofday(&t2, NULL); timeuse = t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse); fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); } } void SVRGMB4Kmeans(int num_iterations, int num_m, int mini_batch_size, const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta, float L1_lambda, float L1_epsilon) { char filename[200]; sprintf(filename, "svrg_mb4_t_%d_%d_%d_%f.txt", num_iterations, num_m, mini_batch_size, eta); FILE* t = fopen(filename, "w"); sprintf(filename, "svrg_mb4_v_%d_%d_%d_%f.txt", num_iterations, num_m, mini_batch_size, eta); FILE* v = fopen(filename, "w"); struct timeval t1,t2; double timeuse; fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); for (int inner = 0; inner < num_m; ++inner) { gettimeofday(&t1, NULL); OneSVRGMB4Step(data_set, cluster_centers, mini_batch_size); gettimeofday(&t2, NULL); timeuse = t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse); fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); } } void OneSVRGMB4Step(const SfDataSet& data_set, SfClusterCenters* cluster_centers, int mini_batch_size) { assert(cluster_centers->Size() > 0); SfClusterCenters new_centers(cluster_centers->GetDimensionality(), cluster_centers->Size()); vector<int> examples_per_cluster(cluster_centers->Size(), 0); int x_id; int closest_center; // Sum the vectors for each center. for (int i = 0; i < mini_batch_size; ++i) { x_id = RandInt(data_set.NumExamples()); cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(x_id), &closest_center); new_centers.MutableClusterCenter(closest_center)->AddVector(data_set.VectorAt(x_id), 1.0); ++examples_per_cluster[closest_center]; } // Scale each center by 1/number of vectors. for (int i = 0; i < cluster_centers->Size(); ++i) { if (examples_per_cluster[i] > 0) { new_centers.MutableClusterCenter(i)->ScaleBy(1.0 / examples_per_cluster[i]); } } // Swap in the new centers. cluster_centers->Clear(); for (int i = 0; i < new_centers.Size(); ++i) { cluster_centers->AddClusterCenter(new_centers.ClusterCenter(i)); } } void SVRGMB5Kmeans(int num_iterations, int num_m, int mini_batch_size, const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta, float L1_lambda, float L1_epsilon) { vector<int> per_center_step_counts; per_center_step_counts.resize(cluster_centers->Size()); char filename[200]; sprintf(filename, "svrg_mb5_t_%d_%d_%d_%f.txt", num_iterations, num_m, mini_batch_size, eta); FILE* t = fopen(filename, "w"); sprintf(filename, "svrg_mb5_v_%d_%d_%d_%f.txt", num_iterations, num_m, mini_batch_size, eta); FILE* v = fopen(filename, "w"); struct timeval t1,t2; double timeuse; fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); for (int inner = 0; inner < num_m; ++inner) { if (inner < 10) { gettimeofday(&t1, NULL); OneSVRGMB4Step(data_set, cluster_centers, mini_batch_size); } else { gettimeofday(&t1, NULL); OneMiniBatchKmeansOptimization(data_set, cluster_centers, mini_batch_size, &per_center_step_counts); } gettimeofday(&t2, NULL); timeuse = t2.tv_sec - t1.tv_sec + (t2.tv_usec - t1.tv_usec)/1000000.0; fprintf(t, "%lf ", timeuse); fprintf(v, "%f ", KmeansObjective(data_set, *cluster_centers)); } } void GetAvgGradientFast(const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta, int* table) { // Compute closest centers for the data set. vector<vector<int> > centers(cluster_centers->Size()); long int num_examples = data_set.NumExamples(); for (int i = 0; i < num_examples; ++i) { // Find the closest center for an example. int closest_center; cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(i), &closest_center); cluster_centers->SetUpdates(i, data_set.VectorAt(i), closest_center, true); centers[closest_center].push_back(i); table[i] = closest_center; } for (int i = 0; i < cluster_centers->Size(); ++i) { //std::cout << "examples in center"<< i << " : " << centers[i].size() << std::endl; cluster_centers->SetAvgUpdates(i, centers[i].size()); } } void OneSVRGKmeansOptimization(const SfDataSet& data_set, SfClusterCenters* cluster_centers, int num_m, float eta, //vector<int>* per_center_step_counts, int* table) { float** avg_updates = cluster_centers->GetAvgUpdates(); float** base_updates = cluster_centers->GetBaseUpdates(); int closest_center; int id_x; for (int i = 0; i < num_m; ++i) { // Find the closest center. const SfSparseVector& x = RandomExample(data_set, &id_x); cluster_centers->SqDistanceToClosestCenter(x, &closest_center); cluster_centers->MutableClusterCenter(closest_center)->AddVectorAlternate(id_x, x, table[id_x], eta, avg_updates, base_updates); } } void GetSAvgGradientFast(const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta) { long int num_examples = data_set.NumExamples(); for (int i = 0; i < num_examples; ++i) { // Find the closest center for an example. int closest_center; cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(i), &closest_center); cluster_centers->SSetUpdates(i, data_set.VectorAt(i), closest_center, true); } cluster_centers->SSetAvgUpdates(num_examples); } void OneSVRGSKmeansOptimization(const SfDataSet& data_set, SfClusterCenters* cluster_centers, int num_m, float eta) { float* s_avg_updates = cluster_centers->GetMBAvgUpdates(); float** s_base_updates = cluster_centers->GetBaseUpdates(); int closest_center; int id_x; for (int i = 0; i < num_m; ++i) { // Find the closest center. const SfSparseVector& x = RandomExample(data_set, &id_x); cluster_centers->SqDistanceToClosestCenter(x, &closest_center); cluster_centers->MutableClusterCenter(closest_center)->AddMBVectorAlternate(id_x, x, eta, s_avg_updates, s_base_updates); } } void GetMBAvgGradientFast(const SfDataSet& data_set, SfClusterCenters* cluster_centers, int mini_batch_size, float eta, long int q, int last_mb) { long int num_examples = data_set.NumExamples(); int closest_center; for (long int i = 0; i < q; ++i) { int upper = (i + 1) * mini_batch_size; for (int j = i * mini_batch_size; j < upper; ++j) { cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(j), &closest_center); cluster_centers->MBSetUpdates(i, data_set.VectorAt(j), closest_center, true); } //cluster_centers->MBSetAvgUpdates(i, mini_batch_size); } if (last_mb) { for (int j = q * mini_batch_size; j < q * mini_batch_size + last_mb; ++j) { cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(j), &closest_center); cluster_centers->MBSetUpdates(q, data_set.VectorAt(j), closest_center, true); } } cluster_centers->MBSetAvgUpdates(q, mini_batch_size, last_mb, num_examples, true); //cluster_centers->SetAvgUpdates(i, centers[i].size()); } void OneSVRGMBKmeansOptimization(const SfDataSet& data_set, SfClusterCenters* cluster_centers, int num_m, int mini_batch_size, float eta, long int num_mb, long int q, int last_mb) { float* mb_avg_updates = cluster_centers->GetMBAvgUpdates(); float** mb_base_updates = cluster_centers->GetMBBaseUpdates(); int closest_center; for (int t = 0; t < num_m; ++t) { int id_mb = RandInt(num_mb); int start = id_mb * mini_batch_size; int end; if (id_mb == q && last_mb) { end = start + last_mb; } else { end = start + mini_batch_size; } vector<vector<int> > mini_batch_centers(cluster_centers->Size()); for (int i = start; i < end; ++i) { cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(i), &closest_center); mini_batch_centers[closest_center].push_back(i); } // Apply the mini-batch. for (unsigned int i = 0; i < mini_batch_centers.size(); ++i) { for (unsigned int j = 0; j < mini_batch_centers[i].size(); ++j) { // Find the closest center. cluster_centers->MutableClusterCenter(i)->AddMBVectorAlternate(id_mb, data_set.VectorAt(mini_batch_centers[i][j]), eta, mb_avg_updates, mb_base_updates); } } } } // void GetAvgGradientCompact(const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta, int* table) { // Compute closest centers for the data set. vector<vector<int> > centers(cluster_centers->Size()); long int num_examples = data_set.NumExamples(); for (int i = 0; i < num_examples; ++i) { // Find the closest center for an example. int closest_center; cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(i), &closest_center); cluster_centers->SetUpdates(i, data_set.VectorAt(i), closest_center, false); centers[closest_center].push_back(i); table[i] = closest_center; } for (int i = 0; i < cluster_centers->Size(); ++i) { //std::cout << "examples in center"<< i << " : " << centers[i].size() << std::endl; cluster_centers->SetAvgUpdates(i, centers[i].size()); } } void OneSVRGStep(const SfDataSet& data_set, SfClusterCenters* cluster_centers, SfClusterCenters &pre_centers, int num_m, float eta, int* table) { float** avg_updates = cluster_centers->GetAvgUpdates(); int closest_center; //int center; int id_x; float* pre_weights; for (int i = 0; i < num_m; ++i) { // Find the closest center. const SfSparseVector& x = RandomExample(data_set, &id_x); cluster_centers->SqDistanceToClosestCenter(x, &closest_center); //pre_centers.SqDistanceToClosestCenter(x, &center); pre_weights = pre_centers.ClusterCenter(table[id_x]).GetWeight(); //cluster_centers->MutableClusterCenter(closest_center)->AddVectorCompact(table[id_x], eta, pre_weights, avg_updates); } } void GetSAvgGradientCompact(const SfDataSet& data_set, SfClusterCenters* cluster_centers, float eta, int* table) { long int num_examples = data_set.NumExamples(); for (int i = 0; i < num_examples; ++i) { // Find the closest center for an example. int closest_center; cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(i), &closest_center); cluster_centers->SSetUpdates(i, data_set.VectorAt(i), closest_center, false); table[i] = closest_center; } cluster_centers->SSetAvgUpdates(num_examples); } void OneSVRGSStep(const SfDataSet& data_set, SfClusterCenters* cluster_centers, SfClusterCenters &pre_centers, int num_m, float eta, int* table) { float* s_avg_updates = cluster_centers->GetMBAvgUpdates(); int closest_center; //int center; int id_x; float* pre_weights; for (int i = 0; i < num_m; ++i) { // Find the closest center. const SfSparseVector& x = RandomExample(data_set, &id_x); cluster_centers->SqDistanceToClosestCenter(x, &closest_center); //pre_centers.SqDistanceToClosestCenter(x, &center); pre_weights = pre_centers.ClusterCenter(table[id_x]).GetWeight(); cluster_centers->MutableClusterCenter(closest_center)->AddSVectorCompact(eta, pre_weights, s_avg_updates); } } void GetMBAvgGradientCompact(const SfDataSet& data_set, SfClusterCenters* cluster_centers, int mini_batch_size, float eta, long int q, int last_mb, int* table) { long int num_examples = data_set.NumExamples(); int closest_center; for (long int i = 0; i < q; ++i) { int upper = (i + 1) * mini_batch_size; for (int j = i * mini_batch_size; j < upper; ++j) { cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(j), &closest_center); cluster_centers->MBSetUpdates(i, data_set.VectorAt(j), closest_center, false); table[j] = closest_center; } } if (last_mb) { for (int j = q * mini_batch_size; j < q * mini_batch_size + last_mb; ++j) { cluster_centers->SqDistanceToClosestCenter(data_set.VectorAt(j), &closest_center); cluster_centers->MBSetUpdates(q, data_set.VectorAt(j), closest_center, false); table[j] = closest_center; } } cluster_centers->MBSetAvgUpdates(q, mini_batch_size, last_mb, num_examples, false); } void OneSVRGMBStep(const SfDataSet& data_set, SfClusterCenters* cluster_centers, SfClusterCenters &pre_centers, int num_m, int mini_batch_size, float eta, long int num_mb, long int q, int last_mb, int* table) { float* mb_avg_updates = cluster_centers->GetMBAvgUpdates(); int closest_center; for (int t = 0; t < num_m; ++t) { int id_mb = RandInt(num_mb); int start = id_mb * mini_batch_size; int end; if (id_mb == q && last_mb) { end = start + last_mb; } else { end = start + mini_batch_size; } vector<vector<int> > mini_batch_centers(cluster_centers->Size()); int dimensionality = cluster_centers->GetDimensionality(); float* mb_base_updates = new float[dimensionality]; float* pre_weights; for (int j = 0; j < dimensionality; ++j) { mb_base_updates[j] = 0.0; } for (int i = start; i < end; ++i) { SfSparseVector x = data_set.VectorAt(i); cluster_centers->SqDistanceToClosestCenter(x, &closest_center); mini_batch_centers[closest_center].push_back(i); pre_weights = pre_centers.ClusterCenter(table[i]).GetWeight(); for (int j = 0; j < dimensionality; ++j) { mb_base_updates[j] -= pre_weights[j]; } int num_features = x.NumFeatures(); for (int k = 0; k < num_features; ++k) { mb_base_updates[x.FeatureAt(k)] += x.ValueAt(k); } } for (int j = 0; j < dimensionality; ++j) { mb_base_updates[j] /= (float)(end - start); } // Apply the mini-batch. for (unsigned int i = 0; i < mini_batch_centers.size(); ++i) { for (unsigned int j = 0; j < mini_batch_centers[i].size(); ++j) { // Find the closest center. cluster_centers->MutableClusterCenter(i)->AddMBVectorCompact(data_set.VectorAt(mini_batch_centers[i][j]), eta, mb_base_updates, mb_avg_updates); } } } } // --------------------------------------------------- // Kmeans Evaluation Functions // --------------------------------------------------- float KmeansObjective(const SfDataSet& data_set, const SfClusterCenters& cluster_centers) { if (cluster_centers.Size() == 0) return FLT_MAX; int center_id; float total_sq_distance = 0.0; for (int i = 0; i < data_set.NumExamples(); ++i) { total_sq_distance += cluster_centers.SqDistanceToClosestCenter(data_set.VectorAt(i), &center_id); } return total_sq_distance; } } // namespace sofia_cluster
[ "zhaoyawei@nudt.edu.cn" ]
zhaoyawei@nudt.edu.cn
38613873d0d9b73ea7ea66607e51e6482f452394
39fe085377f3c7327e82d92dcb38083d039d8447
/core/sql/sqlci/SqlciParser.h
16e33e3b53319e706770ace9d8e015d27196cb5b
[ "Apache-2.0" ]
permissive
naveenmahadevuni/incubator-trafodion
0da8d4c7d13a47d3247f260b4e67618c0fae1539
ed24b19436530b2c214e4bf73280bc8e3f419669
refs/heads/master
2021-01-22T04:40:52.402291
2015-07-16T00:02:50
2015-07-16T00:02:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,809
h
/********************************************************************** // @@@ START COPYRIGHT @@@ // // (C) Copyright 1994-2014 Hewlett-Packard Development Company, L.P. // // 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. // // @@@ END COPYRIGHT @@@ // **********************************************************************/ #ifndef SQLCIPARSER_H #define SQLCIPARSER_H /* -*-C++-*- ***************************************************************************** * * File: SqlciParser.h * RCS: $Id: SqlciParser.h,v 1.5 1998/06/29 06:17:22 Exp $ * * Modified: $ $Date: 1998/06/29 06:17:22 $ (GMT) * Language: C++ * Status: $State: Exp $ * * ***************************************************************************** */ // ----------------------------------------------------------------------- // Change history: // // $Log: SqlciParser.h,v $ // Revision 1.5 1998/06/29 06:17:22 // *** empty log message *** // // Revision 1.4 1997/12/02 16:51:06 // Made changes required to compile sqlci dir on NSK. // // Revision 1.3 1997/06/17 22:28:30 // // Modifications to export functions required from tdm_sqlcli.dll. // // Revision 1.2 1997/04/23 00:31:05 // Merge of MDAM/Costing changes into SDK thread // // Revision 1.1.1.1.2.1 1997/04/11 23:24:55 // Checking in partially resolved conflicts from merge with MDAM/Costing // thread. Final fixes, if needed, will follow later. // // Revision 1.1.4.1 1997/04/10 18:33:17 // *** empty log message *** // // Revision 1.1.1.1 1997/03/28 01:39:44 // These are the source files from SourceSafe. // // // 5 1/22/97 11:04p // Merged UNIX and NT versions. // // 3 1/14/97 4:55a // Merged UNIX and NT versions. // // 1 12/04/96 11:27a // Revision 1.1 1996/11/21 03:18:13 // Initial revision // // // ----------------------------------------------------------------------- #include "SqlCliDllDefines.h" class SqlciNode; class SqlciEnv; Int32 sqlci_parser(char *instr, char *origstr, SqlciNode ** node, SqlciEnv *sqlci_env); Int32 sqlci_parser_syntax_error_cleanup(char *instr, SqlciEnv *sqlci_env); Int32 sqlci_parser_handle_report_writer(SqlciEnv *sqlci_env, Lng32 retval); Int32 sqlci_parser_handle_error(SqlciNode **node, Lng32 retval); #endif /* SQLCIPARSER_H */
[ "steve.varnau@hp.com" ]
steve.varnau@hp.com
8828cefeea8d67a8bc7d98dc71696030e07f4bd6
f92aabdd65222d7f137f75daf23997a5265f3b77
/MacExperiment/ESTK.cmd/ESTK.cmd/ScCore/XML.hpp
bda3f2f7b3c1ac2f43013c62fd6a8e964cc713a0
[ "MIT" ]
permissive
zwettemaan/ESTK.next
1e1c9ade374fad7891e632383085a7f2a7e17bc7
2dced3824deae2daacb8cf9448891708cb449e4e
refs/heads/master
2021-05-05T07:42:40.058854
2018-11-20T20:27:50
2018-11-20T20:27:50
118,879,533
4
1
null
null
null
null
UTF-8
C++
false
false
287
hpp
#ifndef __ScCore_XML__ #define __ScCore_XML__ #include "Root.hpp" namespace ScCore { // // All of these signatures are guesswork! // Many are bound to be incorrect - they're placeholders until // they will be properly analyzed // class XML: Root { public: }; }; #endif
[ "kris@rorohiko.com" ]
kris@rorohiko.com
b3a9d01eb61c45294061de00e5d0e2f3789911c3
6ab8f50ffc2ae11be6b638d4cfe79878ae680d84
/sources/NightModeController.h
d2414f3d105536a6f15f5d1df41b724ea858fd7c
[]
no_license
jeromelebel/bathroomfan
0a212ae329910bb05cf8c405f9beef15f0b1393f
9458ccf0fdc661ba0ace627fc05c6c217878c890
refs/heads/master
2020-07-01T23:46:09.476624
2019-11-10T01:23:30
2019-11-10T01:25:36
201,348,223
5
1
null
null
null
null
UTF-8
C++
false
false
397
h
#ifndef NightModeController_h #define NightModeController_h class PIRController; class NightModeController { public: NightModeController(); ~NightModeController(); void setPIRController(PIRController *pirController) { _pirController = pirController; }; void begin(); void loop(); bool isNight() const; private: PIRController *_pirController; }; #endif // NightModeController_h
[ "jeromelebel@users.noreply.github.com" ]
jeromelebel@users.noreply.github.com
46ce5963d9165d840364dce0de193f8e44ec00f5
fa98aca1c0574c7d273b9e0e65c7ace5b5aade3a
/multi_pthread_pools/src/test/test_threadpool_main.cpp
1da3b06ba32d1384010c92cc1cabf749229d8eba
[]
no_license
achilsh/demo
860622209ea31a2adbd7f1c6f7a0ad2df4baa6a1
dcdcabcb75c329c5ac6cdeb0c7e672c4de4f7fb1
refs/heads/master
2021-07-13T21:58:04.310813
2018-12-07T07:21:15
2018-12-07T07:21:15
133,545,473
0
0
null
2018-05-17T17:16:39
2018-05-15T16:42:45
C++
UTF-8
C++
false
false
3,171
cpp
#include <iostream> #include <atomic> #include <memory> #include <unistd.h> #include <stdio.h> #include "ThreadManager.h" #include <sys/time.h> #include "PosixThreadFactory.h" using namespace std; using namespace THREAD_POOLS; static std::atomic<int> m_atomicIndex(0); static int64_t GetTimeCurMs() { struct timeval now; gettimeofday(&now, NULL); return (now.tv_sec * 1000 + now.tv_usec/1000); } class TestTask: public Runnable { public: TestTask(int iIndex): m_iIndex(iIndex) {} virtual void run(); int GetIndex() const { return m_iIndex; } void SetThreadManager(ThreadManager* threadManager) { m_pthreadManager = threadManager; } private: int m_iIndex; ThreadManager* m_pthreadManager; }; class Test { public: Test(int iThreadums = 10); virtual ~Test() {} void DispatchTask(); int GetTotalTaskCount() { return m_pThreadManager->pendingTaskCount(); } void StopAllTask() { m_pThreadManager->stop(); } private: void StartThreads(); shared_ptr<ThreadManager> m_pThreadManager; int m_iThreadNums; }; Test::Test(int iThreadums): m_iThreadNums(iThreadums) { if (!m_pThreadManager) { StartThreads(); } } void Test::StartThreads() { try { m_pThreadManager = ThreadManager::newSimpleThreadManager(m_iThreadNums); std::shared_ptr<PosixThreadFactory> oneThreadFactory = std::shared_ptr<PosixThreadFactory>( new PosixThreadFactory()); if (!oneThreadFactory) { return ; } m_pThreadManager->threadFactory(oneThreadFactory); m_pThreadManager->start(); } catch (std::exception& ex) { std::cout << "catch err, msg: " << ex.what() << std::endl; exit(1); } std::cout << __FUNCTION__<< "()" << std::endl; std::cout << "thread nums: " << m_iThreadNums << ", all threads started " << std::endl; sleep(1); } void Test::DispatchTask() { std::cout << "call func: " << __FUNCTION__ << std::endl; int iTotalNums = 30; for (int iTaskNums = 0; iTaskNums < iTotalNums; ++iTaskNums) { std::shared_ptr<TestTask> task = std::shared_ptr<TestTask>(new TestTask( iTaskNums )); m_pThreadManager->add(task, 0LL, 0LL); task->SetThreadManager(m_pThreadManager.get()); } std::cout << "task nums: " << iTotalNums << " , add all task, cur time: " << GetTimeCurMs() << std::endl; } // void TestTask::run() { m_atomicIndex ++; std::cout << "index nums: " << m_atomicIndex << ", cur content: " << GetIndex() << ", cur thread id: " << thread()->get_current() << ", has surplus task nums: " << m_pthreadManager->pendingTaskCount() << ", cur time: " << GetTimeCurMs() << std::endl; sleep(1); } /////////////////////////////////////////////////////////////////////// int main() { setbuf(stdout,NULL); Test test; test.DispatchTask(); usleep(100); std::cout << "begin to stop all stop" << std::endl; test.StopAllTask(); sleep(3); std::cout << "at last task nums: " << test.GetTotalTaskCount() << std::endl; return 0; }
[ "hwshtongxin@126.com" ]
hwshtongxin@126.com
3642b749b83ca6391f76cbf964c25a565a2d3790
053258c06c3d406b5e0fc30fad988c6668d6d0a8
/Plugin/Source/UI/PanelModulation.h
0ec1ae19883ca93bcb49cdb312a8583f83b444f8
[]
no_license
HammyHavoc/preenfm2Controller
0776be5b3c1aa28a5720c6d3cd9a6d6a61584e15
b6ff6405ec33983dd3c4d3c557fd159751484fd9
refs/heads/master
2021-04-08T10:07:52.924738
2020-02-22T19:59:01
2020-02-22T19:59:01
248,765,595
0
0
null
2020-03-20T13:44:01
2020-03-20T13:44:01
null
UTF-8
C++
false
false
5,747
h
/* ============================================================================== This is an automatically generated GUI class created by the Projucer! Be careful when adding custom code to these files, as only the code within the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded and re-saved. Created with Projucer version: 5.4.5 ------------------------------------------------------------------------------ The Projucer is part of the JUCE library. Copyright (c) 2017 - ROLI Ltd. ============================================================================== */ #pragma once //[Headers] -- You can add your own extra header files here -- /* * Copyright 2017 Xavier Hosxe * * Author: Xavier Hosxe (xavier <dot> hosxe * (at) g m a i l <dot> com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "JuceHeader.h" #include "StepSequencer.h" #include "EnveloppeFree1.h" #include "EnveloppeFree2.h" #include "PanelOfComponents.h" #define NUMBER_OF_STEP_SEQ 2 #define NUMBER_OF_LFO 3 #define NUMBER_OF_MATRIX_ROW 12 //[/Headers] //============================================================================== /** //[Comments] An auto-generated component, created by the Introjucer. Describe your class and how it works here! //[/Comments] */ class PanelModulation : public Component, public Button::Listener, public Slider::Listener, public ComboBox::Listener, public PanelOfComponents { public: //============================================================================== PanelModulation (); ~PanelModulation(); //============================================================================== //[UserMethods] -- You can add your own custom methods in this section. void buttonClicked(Button* buttonThatWasClicked); void sliderValueChanged(Slider* sliderThatWasMoved); void sliderValueChanged(Slider* sliderThatWasMoved, bool fromPluginUI); void comboBoxChanged(ComboBox* comboBoxThatHasChanged); void comboBoxChanged(ComboBox* comboBoxThatHasChanged, bool fromPluginUI); void buildParameters(); void updateSliderFromParameter_hook(Slider* slider); void updateComboFromParameter_hook(ComboBox* combo); void updateUIEnveloppe(String paramName); void updateUIStepSequencer(String paramName); bool containsThisParameterAsStepSequencer(String name); bool containsThisParameterAsEnveloppe(String name); void sliderDragStarted(Slider* slider) override; void sliderDragEnded(Slider* slider) override; //[/UserMethods] void paint (Graphics& g) override; void resized() override; private: //[UserVariables] -- You can add your own custom variables in this section. // LFO ScopedPointer<TextButton> lfoButton[NUMBER_OF_LFO]; ScopedPointer<Label> lfoPhaseLabel; ScopedPointer<Slider> lfoPhase[NUMBER_OF_LFO]; ScopedPointer<ComboBox> lfoShape[NUMBER_OF_LFO]; ScopedPointer<ComboBox> lfoExtMidiSync[NUMBER_OF_LFO]; ScopedPointer<Slider> lfoFrequency[NUMBER_OF_LFO]; ScopedPointer<Slider> lfoBias[NUMBER_OF_LFO]; ScopedPointer<ComboBox> lfoKsynOnOff[NUMBER_OF_LFO]; ScopedPointer<Slider> lfoKSync[NUMBER_OF_LFO]; ScopedPointer<Label> lfoFrequencyLabel; ScopedPointer<Label> lfoBiasLabel; ScopedPointer<Label> lfoKSynLabel; ScopedPointer<ComboBox> enveloppeFree2Loop; ScopedPointer<Label> enveloppeFree2LoopLabel; // MATRIX ScopedPointer<Label> matrixRowLabel[NUMBER_OF_MATRIX_ROW]; ScopedPointer<ComboBox> matrixSource[NUMBER_OF_MATRIX_ROW]; ScopedPointer<Slider> matrixMultipler[NUMBER_OF_MATRIX_ROW]; ScopedPointer<ComboBox> matrixDestination[NUMBER_OF_MATRIX_ROW]; // ENVELOPPES ScopedPointer<EnveloppeFree1> enveloppeFree1; ScopedPointer<EnveloppeFree2> enveloppeFree2; // STEP SEQUENCER ScopedPointer<TextButton> stepSeqButton[NUMBER_OF_STEP_SEQ]; ScopedPointer<StepSequencer> stepSequencer[NUMBER_OF_STEP_SEQ]; ScopedPointer<Label> stepSeqBPMLabel; ScopedPointer<ComboBox> stepSeqExtMidiSync[NUMBER_OF_STEP_SEQ]; ScopedPointer<Slider> stepSeqBPM[NUMBER_OF_STEP_SEQ]; ScopedPointer<Label> stepSeqGateLabel; ScopedPointer<Slider> stepSeqGate[NUMBER_OF_STEP_SEQ]; MidiBuffer* eventsToAdd; bool initialized; //[/UserVariables] //============================================================================== std::unique_ptr<GroupComponent> matrixGroup; std::unique_ptr<GroupComponent> lfoGroup; std::unique_ptr<GroupComponent> env1Group; std::unique_ptr<GroupComponent> env2Group; std::unique_ptr<GroupComponent> stepSeqGroup; //============================================================================== JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (PanelModulation) }; //[EndFile] You can add extra defines here... //[/EndFile]
[ "xavier.hosxe@gmail.com" ]
xavier.hosxe@gmail.com
705b70e359895404e20ff54e920b161c1e8fb977
b740ebeb9718b70d8035bb837d5571ed21bcf027
/chart/CTableBlockHemodynamic.h
8bf8ea7f4bd8073e78446aba41836527101d0b7e
[]
no_license
vit9000/chart
84130608c4c29219220a0ae62a17e11ff771a6ea
453e95a95beff61d98c8b22dd454c4e5789e69cf
refs/heads/master
2021-05-10T20:13:22.672093
2018-05-01T09:54:13
2018-05-01T09:54:13
118,176,047
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
6,852
h
#pragma once #include "CTableBlock.h" class CTableBlockHemodynamic : public CTableBlock { int type; public: CTableBlockHemodynamic(const wstring& BlockName, const Rect& rectangle, IChartController* Controller, int Type) : CTableBlock(BlockName, rectangle, Controller), type(Type) { } void OnPaint(UGC& ugc) override { ugc.SetDrawColor(Gdiplus::Color::LightGray); ugc.FillRectangle(rect.x, rect.y, rect.width, headerHeight); ugc.SetAlign(UGC::CENTER); ugc.SetDrawColor(0, 0, 0); ugc.SetTextSize(12); ugc.DrawString(header, rect.x + rect.width / 2, rect.y + headerHeight / 2 - ugc.GetTextHeight() / 2); for (Button_Ptr& button : buttons) button->OnDraw(ugc); if (fullView) DrawTable(ugc); ugc.SetDrawColor(Gdiplus::Color::Gray); ugc.DrawLine(rect.x, rect.y + headerHeight, rect.x + rect.width, rect.y + headerHeight, 1); ugc.SetDrawColor(0, 0, 0); ugc.DrawLine(rect.x, rect.y, rect.x + rect.width, rect.y, 1); } void DrawTable (UGC& ugc) { ugc.SetTextSize(10); double minutePX = static_cast<double>((rect.width - rect.reserved) / (60.*25.)); int max = (type== static_cast<int>(BLOCK_TYPE::PLOT_PA)) ? 100 : 200; double bpPX = static_cast<double>((rect.height-headerHeight) / (double)max); ugc.SetDrawColor(Gdiplus::Color::Gray); int y_bottom = rect.y + rect.height; ugc.SetAlign(UGC::RIGHT); int text_height = ugc.GetTextHeight(); // ðàçìåòêà for (int i = 20; i < max; i+=20) { int yi = y_bottom - static_cast<int>(bpPX*i); ugc.DrawLine(rect.reserved+rect.x, yi, rect.x+rect.width, yi); ugc.DrawNumber(i, rect.reserved + rect.x - 2, yi - text_height / 2); } ugc.SetAlign(UGC::LEFT); int bitW = static_cast<int>(ugc.getDPIX()*8); int color = (type == static_cast<int>(BLOCK_TYPE::PLOT_PA)) ? 6 : 0; ugc.SetTextSize(8); int y = rect.y+headerHeight; int textH = ugc.GetTextHeight(); for (const auto& obj : objects) { y += textH; DrawForm(ugc, color, rect.x+textH, y+textH/4, textH/2, textH/2); ugc.SetDrawColor(0, 0, 0); ugc.DrawString(obj->getContainerUnit()->getName(), rect.x+textH*2, y); int lastX = -1; int lastY = -1; for (const auto& unit : obj->getContainerUnit()->getUnits()) { double value = unit.getValue().getDoubleValue(); if (value == Value::EMPTY) continue; int x = rect.x + rect.reserved; x += static_cast<int>(unit.getStart()*minutePX); int duration = static_cast<int>(unit.getDuration()*minutePX); int X = x + duration / 2 - bitW / 2; int Y = rect.y + rect.height - static_cast<int>(value * bpPX) - bitW / 2; // îáðàáîòêà âûõîäà çà ïðåäåëû ãðàôèêà if (Y < rect.y+headerHeight) Y = rect.y+headerHeight; else if (Y > rect.y + rect.height- bitW) Y = rect.y + rect.height - bitW; if (lastX > 0) ugc.DrawLineAntialiased(lastX+bitW/2, lastY+bitW/2, X+bitW/2, Y+bitW/2, 2); DrawForm(ugc, color, X, Y, bitW, bitW); lastX = X; lastY = Y; } color++; } } void DrawForm(UGC& ugc, int index, int x, int y, int w, int h) { setColor(ugc, index); switch (index) { case 0://ÀÄ case 1: ugc.FillRectangle(x, y, w, h); break; case 2://×ÑÑ ugc.FillEllipse(x, y, w); break; case 3://ÖÂÄ ugc.FillDiamondShape(x, y, w, h); break; case 4: // äîï ÑÀÄ case 5: // äîï ÄÀÄ ugc.FillTriangle(x,y+h, x+w/2,y, x+w, y+h); break; case 6: // ËCÀÄ case 7: // ËÄÀÄ ugc.FillDiamondShape(x, y, w, h); break; case 8: //Ë ÑðÀÄ ugc.FillTriangle(x, y + h, x + w / 2, y, x + w, y + h); break; } } void setColor(UGC& ugc, int index) { switch (index) { case 0://ÀÄ case 1: ugc.SetDrawColor(255, 0, 0); break; case 2://×ÑÑ ugc.SetDrawColor(0, 0, 255); break; case 3://ÖÂÄ ugc.SetDrawColor(0, 255, 0); break; case 4: // äîï ÑÀÄ case 5: // äîï ÄÀÄ ugc.SetDrawColor(110, 25, 5); break; case 6: // ËCÀÄ case 7: // ËÄÀÄ ugc.SetDrawColor(220, 145, 5); break; case 8: // ËÑðÀÄ ugc.SetDrawColor(170, 5, 210); break; } } virtual void resize(const Rect& rectangle) { rect.x = rectangle.x; rect.y = rectangle.y; rect.width = rectangle.width; rect.reserved = rectangle.reserved; //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! int h = headerHeight * 4 / 5; double dpix = DPIX(); int border = static_cast<int>(5.*dpix); if (buttons.size() >= 1) buttons[0]->resize(Rect(rect.x + border, rect.y + headerHeight / 2 - h / 2, h, h)); int count = (type == static_cast<int>(BLOCK_TYPE::PLOT_PA)) ? 6 : 8; rect.height = headerHeight * count; } //--------------------------------------------------------------------------- virtual bool OnLButtonUp(int x, int y) { for (Button_Ptr& button : buttons) { if (button->OnLButtonUp(x, y)) return true; } if (fullView) { //for (auto& obj : objects) //if (obj->OnLButtonUp(x, y)) //return true; } return false; } //--------------------------------------------------------------------------- virtual bool OnLButtonDown(int x, int y) { for (Button_Ptr& button : buttons) { if (button->OnLButtonDown(x, y)) return true; } if (fullView) { if (OnLButtonUp2(x, y)) return true; //for (auto& obj : objects) //if (obj->OnLButtonDown(x, y)) //return true; } return false; } //--------------------------------------------------------------------------- virtual bool OnMouseMove(int x, int y, bool& move_aborted) { for (Button_Ptr& button : buttons) { if (button->OnMouseMove(x, y)) return true; } bool status = false; if (fullView) { //for (auto& obj : objects) //if (obj->OnMouseMove(x, y)) //status = true; //else if (obj->OnMouseMoveAbort()) //move_aborted = true; } return status; } private: bool IsThisObject(int x, int y) { if (x >= rect.x + rect.reserved && x <= rect.x + rect.width && y >= rect.y && y <= rect.y + rect.height) return true; return false; } bool OnLButtonUp2(int x, int y) { if (IsThisObject(x, y)) { if (controller && objects.size()>0) { if (x > rect.x + rect.reserved) { x = x - rect.reserved - rect.x; double bitW = (rect.width - rect.reserved) / 25.; int minute = static_cast<int>(x / bitW * 60); const ContainerUnit* unitContainer = objects[0]->getContainerUnit(); int unitN = unitContainer->find(minute); vector<ID> ids; for (const auto& obj : objects) ids.push_back(obj->getID()); if (unitN >= 0) controller->updateUnitValues(ids, unitN); else controller->addParameterUnits(ids, minute / 60 * 60); } return true; } } return false; } };
[ "vit9000@mail.ru" ]
vit9000@mail.ru