blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
fb02c6a4fbad3be41f8a3ebb9df61ca1ff044e19
6581dacb25182f7f5d7afb39975dc622914defc7
/CodeProject/ExcelAddinInEasyIF/GridList.cpp
1c6fa5f7973a0a96f5736f4a81a8e3c2b997f492
[]
no_license
dice2019/alexlabonline
caeccad28bf803afb9f30b9e3cc663bb2909cc4f
4c433839965ed0cff99dad82f0ba1757366be671
refs/heads/master
2021-01-16T19:37:24.002905
2011-09-21T15:20:16
2011-09-21T15:20:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,468
cpp
GridList.cpp
// GridList.cpp : implementation file // #include "stdafx.h" #include "EMX.h" #include "GridList.h" #include "flotgrid.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CGridList CGridList::CGridList() { } CGridList::~CGridList() { } BEGIN_MESSAGE_MAP(CGridList, CListBox) //{{AFX_MSG_MAP(CGridList) ON_CONTROL_REFLECT(LBN_DBLCLK, OnDblclk) ON_WM_CONTEXTMENU() //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CGridList message handlers void CGridList::OnDblclk() { int iCurSel = GetCurSel(); if (iCurSel > -1) { CString cName; GetText(iCurSel,cName); // ((FloatingGridWnd *)GetParent())->EditGrid(cName); ((FloatingGridWnd *)GetParent())->ShowValuesPage(cName); } } void CGridList::OnContextMenu(CWnd* pWnd, CPoint point) { BOOL bOutside; CPoint oOrigPt(point); ScreenToClient(&point); int iNewSel = ItemFromPoint(point,bOutside); int iCurSel = GetCurSel(); if (iNewSel != iCurSel && iNewSel > -1) { SetCurSel(iNewSel); iCurSel = iNewSel; } if (iCurSel > -1) { CString cName; GetText(iCurSel,cName); ((FloatingGridWnd *)GetParent())->DoContextMenu((LPCSTR)cName,&oOrigPt); } }
2a6f68659f673a382e95d0b4c351f2324c1c2a3a
fbdb18d4524e5bb81802cd330f0151b4ff4897d0
/TINY3D/device.h
fbc225ce1a0ae1f9f65ccbb94e70bb1c7b2a51e9
[ "MIT" ]
permissive
RazorBach/TINY3D
f38e5cfb5dead5c504b49e54d422836f7eb93ec8
bd0647198886142c826f2f320633e0bce263096f
refs/heads/master
2022-03-11T22:11:26.189431
2019-11-25T08:34:46
2019-11-25T08:34:46
null
0
0
null
null
null
null
GB18030
C++
false
false
3,677
h
device.h
#ifndef HEADER_H #define HEADER_H #include <assert.h> #include <windows.h> typedef unsigned IUINT32; const int RENDER_STATE_WIREFRAME = 1; // 渲染线框 const int RENDER_STATE_TEXTURE = 2; // 渲染纹理 const int RENDER_STATE_COLOR = 4; // 渲染颜色 //===================================================================== // 渲染设备 //===================================================================== struct Device { Device(int mwidth, int mheight,void *fb) { init(mwidth, mheight, fb); } void init(int width, int height, void *fb) { this->width = width; this->height = height; // 设备初始化,fb为外部帧缓存,非 NULL 将引用外部帧缓存(每行 4字节对齐) int need = sizeof(void*) * (height * 2 + 1024) + width * height * 8; char *ptr = (char*)malloc(need + 64); char *framebuf, *zbuf; int j; assert(ptr); framebuffer = (IUINT32**)ptr; zbuffer = (float**)(ptr + sizeof(void*) * height); ptr += sizeof(void*) * height * 2; texture = (IUINT32**)ptr; ptr += sizeof(void*) * 1024; framebuf = (char*)ptr; zbuf = (char*)ptr + width * height * 4; ptr += width * height * 8; if (fb != NULL) framebuf = (char*)fb; for (j = 0; j < height; j++) { //翻转图像 framebuffer[j] = (IUINT32*)(framebuf + width * 4 * (height - j - 1)); zbuffer[j] = (float*)(zbuf + width * 4 * j); memset(zbuffer[j], 0, width * 4); } texture[0] = (IUINT32*)ptr; texture[1] = (IUINT32*)(ptr + 16); memset(this->texture[0], 0, 64); tex_width = 2; tex_height = 2; max_u = 1.0f; max_v = 1.0f; width = width; height = height; background = 0; foreground = 0; //transform_init(&this->transform, width, height); this->render_state = RENDER_STATE_WIREFRAME; } void clearzbuffer() { memset(zbuffer, 0, width * height * sizeof(float)); } // 画点 void device_pixel(int x, int y, IUINT32 color) { if (((IUINT32)x) < (IUINT32)width && ((IUINT32)y) < (IUINT32)height) { this->framebuffer[y][x] = color; } } // 清空 framebuffer 和 zbuffer void device_clear(int mode) { int y, x; for (y = 0; y <height; y++) { IUINT32 *dst = framebuffer[y]; memset(dst, 0, sizeof(IUINT32) * width); //IUINT32 cc = (height - 1 - y) * 230 / (height - 1); //cc = (cc << 16) | (cc << 8) | cc; /*IUINT32 cc = 0; cc = (cc << 16) | (cc << 8) | cc; if (mode == 0) cc = background; for (x = width; x > 0; dst++, x--) dst[0] = cc;*/ } for (y = 0; y < height; y++) { float *dst = zbuffer[y]; for (x = width; x > 0; dst++, x--) dst[0] = 0.0f; } } ~Device() { if (framebuffer) free(framebuffer); framebuffer = NULL; zbuffer = NULL; texture = NULL; } int getWidth() const { return width; } int getHeight() const { return width; } float getZbuffer(int x, int y) const{ return zbuffer[y][x]; } void setZbuffer(int x, int y, float z){ zbuffer[y][x] = z; } Device(const Device&) = delete; Device& operator=(const Device&) = delete; private: int width; // 窗口宽度 int height; // 窗口高度 IUINT32 **framebuffer; // 像素缓存:framebuffer[y] 代表第 y行 float **zbuffer; // 深度缓存:zbuffer[y] 为第 y行指针 IUINT32 **texture; // 纹理:同样是每行索引 int tex_width; // 纹理宽度 int tex_height; // 纹理高度 float max_u; // 纹理最大宽度:tex_width - 1 float max_v; // 纹理最大高度:tex_height - 1 int render_state; // 渲染状态 IUINT32 background; // 背景颜色 IUINT32 foreground; // 线框颜色 }; #endif // !HEADER_H
96b79608f525f22091a6804dc0ce338ca3bf87b4
96cfaaa771c2d83fc0729d8c65c4d4707235531a
/HiggsAnalysis/HeavyChHiggsToTauNu/test/datacardGenerator/interface/NormalisationInfo.h
b30c0ed5fb2668edd4d45eae9a005e8939b25897
[]
no_license
khotilov/cmssw
a22a160023c7ce0e4d59d15ef1f1532d7227a586
7636f72278ee0796d0203ac113b492b39da33528
refs/heads/master
2021-01-15T18:51:30.061124
2013-04-20T17:18:07
2013-04-20T17:18:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
761
h
NormalisationInfo.h
#ifndef NORMALISATIONINFO_H #define NORMALISATIONINFO_H #include <string> #include "TFile.h" class NormalisationInfo { public: NormalisationInfo(std::string configInfoHisto, std::string counterHisto, double luminosity, double luminosityScaling = 1.0); virtual ~NormalisationInfo(); double getNormalisationFactor(TFile* f); std::string getConfigInfoHisto() { return sConfigInfoHisto; } std::string getCounterHisto() { return sCounterHisto; } double getLuminosity() const { return fLuminosity; } double getLuminosityScaling() const { return fLuminosityScaling; } private: std::string sConfigInfoHisto; std::string sCounterHisto; double fLuminosity; // luminosity in fb-1 double fLuminosityScaling; }; #endif // NORMALISATIONINFO_H
65bb37133a9d4625fa1ba93c17a9ece148fb01d7
b861b9da112ad569c8bdddaec779c793dd5cdfb8
/curse/Electromagnet.h
f81f798dadff018182ffbf70721776860e437d36
[]
no_license
cup2/kurs_work_2kurs_sumdu-c-
31a1ee805d6fa49d5a078419808da23054f25381
4e2170cb5421a11231ec8c08db6ed05aa6bea6a1
refs/heads/master
2022-11-15T02:04:46.325077
2020-07-20T11:41:51
2020-07-20T11:41:51
280,873,695
0
0
null
null
null
null
UTF-8
C++
false
false
880
h
Electromagnet.h
#pragma once #include "Object_find.h" class Electromagnet : public Object_find { public: Electromagnet() {} Electromagnet(float i, float w, float s, float l); Electromagnet(const Electromagnet& right); void input(string S) override; void output(string S) override; friend bool operator <= (const Electromagnet& left, const Electromagnet& right); friend bool operator > (const Electromagnet& left, const Electromagnet& right); friend bool operator < (const Electromagnet& left, const Electromagnet& right); friend bool operator >= (const Electromagnet& left, const Electromagnet& right); friend bool operator == (const Electromagnet& left, const Electromagnet& right); friend bool operator != (const Electromagnet& left, const Electromagnet& right); private: void findParameter() override; const float pi = 3.1415926; float w, s, l, i; };
bee9b919f24d9e177e5dc8569b347dd3109c2e08
42ab733e143d02091d13424fb4df16379d5bba0d
/third_party/libassimp/code/PostProcessing/DeboneProcess.h
8b64c2acc670b0d9a5bc947452952085778818a5
[ "Apache-2.0", "CC0-1.0", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "LGPL-2.0-or-later" ]
permissive
google/filament
11cd37ac68790fcf8b33416b7d8d8870e48181f0
0aa0efe1599798d887fa6e33c412c09e81bea1bf
refs/heads/main
2023-08-29T17:58:22.496956
2023-08-28T17:27:38
2023-08-28T17:27:38
143,455,116
16,631
1,961
Apache-2.0
2023-09-14T16:23:39
2018-08-03T17:26:00
C++
UTF-8
C++
false
false
4,985
h
DeboneProcess.h
/* Open Asset Import Library (assimp) ---------------------------------------------------------------------- Copyright (c) 2006-2019, assimp team All rights reserved. Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the assimp team, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission of the assimp team. 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. ---------------------------------------------------------------------- */ /** Defines a post processing step to limit the number of bones affecting a single vertex. */ #ifndef AI_DEBONEPROCESS_H_INC #define AI_DEBONEPROCESS_H_INC #include "Common/BaseProcess.h" #include <assimp/mesh.h> #include <assimp/scene.h> #include <vector> #include <utility> #// Forward declarations class DeboneTest; namespace Assimp { #if (!defined AI_DEBONE_THRESHOLD) # define AI_DEBONE_THRESHOLD 1.0f #endif // !! AI_DEBONE_THRESHOLD // --------------------------------------------------------------------------- /** This post processing step removes bones nearly losslessly or according to * a configured threshold. In order to remove the bone, the primitives affected by * the bone are split from the mesh. The split off (new) mesh is boneless. At any * point in time, bones without affect upon a given mesh are to be removed. */ class DeboneProcess : public BaseProcess { public: DeboneProcess(); ~DeboneProcess(); // ------------------------------------------------------------------- /** Returns whether the processing step is present in the given flag. * @param pFlags The processing flags the importer was called with. * A bitwise combination of #aiPostProcessSteps. * @return true if the process is present in this flag fields, * false if not. */ bool IsActive( unsigned int pFlags) const; // ------------------------------------------------------------------- /** Called prior to ExecuteOnScene(). * The function is a request to the process to update its configuration * basing on the Importer's configuration property list. */ void SetupProperties(const Importer* pImp); protected: // ------------------------------------------------------------------- /** Executes the post processing step on the given imported data. * At the moment a process is not supposed to fail. * @param pScene The imported data to work at. */ void Execute( aiScene* pScene); // ------------------------------------------------------------------- /** Counts bones total/removable in a given mesh. * @param pMesh The mesh to process. */ bool ConsiderMesh( const aiMesh* pMesh); /// Splits the given mesh by bone count. /// @param pMesh the Mesh to split. Is not changed at all, but might be superfluous in case it was split. /// @param poNewMeshes Array of submeshes created in the process. Empty if splitting was not necessary. void SplitMesh(const aiMesh* pMesh, std::vector< std::pair< aiMesh*,const aiBone* > >& poNewMeshes) const; /// Recursively updates the node's mesh list to account for the changed mesh list void UpdateNode(aiNode* pNode) const; // ------------------------------------------------------------------- // Apply transformation to a mesh void ApplyTransform(aiMesh* mesh, const aiMatrix4x4& mat)const; public: /** Number of bones present in the scene. */ unsigned int mNumBones; unsigned int mNumBonesCanDoWithout; float mThreshold; bool mAllOrNone; /// Per mesh index: Array of indices of the new submeshes. std::vector< std::vector< std::pair< unsigned int,aiNode* > > > mSubMeshIndices; }; } // end of namespace Assimp #endif // AI_DEBONEPROCESS_H_INC
89ca4b42612dedb5c14d2cd72fb8140685e38953
02193ece59037456d298d519b38661b5dfd0ab17
/3rd-year/semester-1/prog-c-cpp/TPs/tp7-full-rpg/src/Damageable.h
b9f3531cdcfca701819e894eb546b8b9afbb3320
[]
no_license
pakpake/licence-informatique
561558d00f012a536ae97f74ee705e6c04dcecda
c9877ad75d3c4ee6e3904fe8b457f8b3242c7c3f
refs/heads/main
2023-05-09T06:33:19.927698
2021-05-26T19:49:03
2021-05-26T19:49:03
368,866,811
3
1
null
null
null
null
UTF-8
C++
false
false
1,220
h
Damageable.h
#ifndef __DAMAGEABLE_H__ #define __DAMAGEABLE_H__ #include <iostream> #include "String.h" using namespace std; namespace rpg { class Damageable { private: // points de vie double hitPoints; // le nom du personnage String name; public: // constructeur Damageable(int hp, const char *n) : hitPoints(hp), name(String(n)) {} // Accesseurs double getHitPoints() const { return hitPoints; } String getName() const { return name; } // mutateurs void setName(String &n) { name = n; } // dommages void damage(int d) { hitPoints -= (double)d; // hitPoints est double, pas int if (hitPoints < 0.0) hitPoints = 0.0; // correction si négatif } // etat du personnage, ne modifie pas l'état du personnage, donc const bool isDead() const { return hitPoints == 0.0; } // soins, modifie l'état du personnage, donc pas const void healRepair(int heal) { // seulement si pas mort, les deux syntaxes OK if (!isDead()) //if (!this->isDead()) hitPoints += (double)heal; } // affichage friend ostream& operator<<(ostream &os, const Damageable &d) { os << "Damageable(hitPoints=" << d.getHitPoints() << ", name=" << d.getName() << ")"; return os; } }; } // fin du namespace "rpg" #endif
554087a8eeb6de984050f175a192daf755a84533
a1cfa6a87722010ed7e77e6e9106095e9bf130dd
/Code/Headers/Components/terrainrenderer.hpp
f454abd383471c246a0338ba1d6ab026d08ef775
[]
no_license
jeffeverett/opengl-driving-scene
092e4575391e21e771bd1bfe269da52ddf50e7e0
6b908b53d811e188228c5cc136817e82dfd62ef5
refs/heads/master
2020-04-08T19:02:20.238906
2019-10-27T06:10:14
2019-10-27T06:10:14
159,636,484
1
1
null
null
null
null
UTF-8
C++
false
false
723
hpp
terrainrenderer.hpp
#pragma once #include "Components/component.hpp" #include "Assets/material.hpp" namespace Components { class TerrainRenderer : public Component { public: TerrainRenderer(Core::GameObject &gameObject); virtual ~TerrainRenderer(); void generateInstanceVBO(); int mHeightScale; int mPatchesX, mPatchesZ; float mScaleX, mScaleZ; float mTextureRepeatX, mTextureRepeatZ; GLuint mInstanceVBO; std::shared_ptr<Assets::Material> mMaterial; private: std::vector<glm::vec2> mStartPositions; TerrainRenderer(TerrainRenderer const &) = delete; TerrainRenderer &operator=(TerrainRenderer const &) = delete; }; }
635e1874ddf1d566a234cb40b0f8e888d2f3ac5d
7b7b9e6e4fed3858fec439bb519d02b9961d3210
/Client/CGraphicDevice.h
2a0afb708c7c093166dc31bfc9fb4cbd1fe4ad39
[]
no_license
zeduck12/RelicHunters
baee3fea59561d6d9bb9a360516ace35d2aa9e9d
e910223ad98769834474d78655aea65fe8930e9f
refs/heads/master
2022-12-22T19:45:08.810567
2020-09-19T09:31:02
2020-09-19T09:31:02
288,934,381
0
0
null
null
null
null
UTF-8
C++
false
false
572
h
CGraphicDevice.h
#pragma once class CGraphicDevice { public: DECLARE_SINGLETON(CGraphicDevice) private: CGraphicDevice() = default; ~CGraphicDevice(); public: HRESULT Ready(void); void Release(void); public: void RenderBegin(void); void RenderEnd(HWND _hWnd = nullptr); public: LPDIRECT3DDEVICE9 GetDevice(void) const { return m_pDevice; } LPD3DXSPRITE GetSprite(void) const { return m_pSprite; } LPD3DXFONT GetFont(void) const { return m_pFont; } public: LPDIRECT3DDEVICE9 m_pDevice; LPDIRECT3D9 m_pSDK; LPD3DXSPRITE m_pSprite; LPD3DXFONT m_pFont; };
ff9e30d82b61f1d6265af3117f0acae0011f58a6
d3b51e6c8f27770d635b89eda07abf8ba0d72a05
/Clase1/Medidor/Medidor.ino
0245509f89134e499ce912515125c90a0eff291e
[]
no_license
MCMC26/EcoLab191
a8f6ebb235b4c517f43b71418d92229ca8feee75
78e29651a883a5eaa69d4c78b5f5fd4152772f88
refs/heads/master
2020-05-14T22:29:26.228652
2019-04-05T21:04:26
2019-04-05T21:04:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
891
ino
Medidor.ino
void setup() { pinMode(A0, INPUT); pinMode(2, OUTPUT); pinMode(3, OUTPUT); pinMode(4, OUTPUT); pinMode(5, OUTPUT); } void loop() { int value = analogRead(A0); if(value>=0 && value<=204){ digitalWrite(2, LOW); digitalWrite(3, LOW); digitalWrite(4, LOW); digitalWrite(5, LOW); }else if(value>=205 && value<=410){ digitalWrite(2, HIGH); digitalWrite(3, LOW); digitalWrite(4, LOW); digitalWrite(5, LOW); }else if(value>=411 && value<=615){ digitalWrite(2, HIGH); digitalWrite(3, HIGH); digitalWrite(4, LOW); digitalWrite(5, LOW); }else if(value>=616 && value<=820){ digitalWrite(2, HIGH); digitalWrite(3, HIGH); digitalWrite(4, HIGH); digitalWrite(5, LOW); }else if(value>=821 && value<=1023){ digitalWrite(2, HIGH); digitalWrite(3, HIGH); digitalWrite(4, HIGH); digitalWrite(5, HIGH); } }
db21b29f49b0f7e9a470d7400fe6d12d1413cdb6
5d2f39db14876c7a25183057c151a36498a6ee08
/source/nDetWorldObject.cc
425a07a5e5f28095444fed0df0778cdee33a8e06
[]
no_license
cthornsb/NEXTSim
3932777bdc4b738a69352dd10a9e06c49f159c9d
dba6e03623ee4f7f346c0faa2430792e1e943df6
refs/heads/master
2020-04-18T03:25:44.550561
2019-10-06T20:48:46
2019-10-06T20:48:50
167,198,254
1
0
null
2019-01-23T14:38:48
2019-01-23T14:38:48
null
UTF-8
C++
false
false
14,210
cc
nDetWorldObject.cc
#include "G4PhysicalConstants.hh" #include "G4SystemOfUnits.hh" #include "G4Material.hh" #include "G4Box.hh" #include "G4Tubs.hh" #include "G4Cons.hh" #include "G4Para.hh" #include "G4Trd.hh" #include "G4Sphere.hh" #include "G4Torus.hh" #include "nDetDetector.hh" #include "nDetWorldObject.hh" #include "nDetMaterials.hh" #include "optionHandler.hh" // split_str #include "termColors.hh" /////////////////////////////////////////////////////////////////////////////// // class nDetWorldObject /////////////////////////////////////////////////////////////////////////////// bool nDetWorldObject::decodeString(){ args.clear(); nUserArgs = split_str(argStr, args); if(nUserArgs < nReqArgs) return false; return this->decodeArgs(); } bool nDetWorldObject::isNumerical(const std::string &str){ for(size_t i = 0; i < str.length(); i++){ if((str[i] < 0x31 || str[i] > 0x39) && str[i] != 0x2E) return false; } return true; } void nDetWorldObject::setRotationMatrix(const G4ThreeVector &vec){ rotVector = vec; rotation = G4RotationMatrix(); rotation.rotateX(vec.getX()*deg); rotation.rotateY(vec.getY()*deg); rotation.rotateZ(vec.getZ()*deg); } void nDetWorldObject::print(){ G4ThreeVector rowX = rotation.rowX(); G4ThreeVector rowY = rotation.rowY(); G4ThreeVector rowZ = rotation.rowZ(); std::cout << " Address = " << this << std::endl; std::cout << " Name = " << name << std::endl; std::cout << " Material = " << material << std::endl; std::cout << " Size = (x=" << size.getX() << ", y=" << size.getY() << ", z=" << size.getZ() << ")\n"; std::cout << " Position = (x=" << position.getX() << ", y=" << position.getY() << ", z=" << position.getZ() << ")\n"; std::cout << " Rotation = (x=" << rotVector.getX() << ", y=" << rotVector.getY() << ", z=" << rotVector.getZ() << ")\n"; std::cout << " Unit X = (" << rowX.getX() << ", " << rowX.getY() << ", " << rowX.getZ() << ")\n"; std::cout << " Unit Y = (" << rowY.getX() << ", " << rowY.getY() << ", " << rowY.getZ() << ")\n"; std::cout << " Unit Z = (" << rowZ.getX() << ", " << rowZ.getY() << ", " << rowZ.getZ() << ")\n"; this->subPrint(); } /////////////////////////////////////////////////////////////////////////////// // class nDetWorldPrimitive /////////////////////////////////////////////////////////////////////////////// nDetWorldPrimitive::nDetWorldPrimitive(const G4String &arg_) : nDetWorldObject(arg_, 8) { shapeNameMap[""] = DEFAULT; shapeNameMap["box"] = BOX; shapeNameMap["cyl"] = CYLINDER; shapeNameMap["cone"] = CONE; shapeNameMap["para"] = PARALLELEPIPED; shapeNameMap["trap"] = TRAPEZOID; shapeNameMap["sphere"] = SPHERE; shapeNameMap["torus"] = TORUS; // Select the default shape flag so we know that the user has not specified a shape shapeSelect = DEFAULT; // Default syntax string syntaxOutputString = "[[p1] [p2] ...]"; } nDetWorldPrimitive::~nDetWorldPrimitive(){ } bool nDetWorldPrimitive::decodeArgs(){ // Expects a space-delimited string of the form: // "addPrimitive shape posX(cm) posY(cm) posZ(cm) rotX(deg) rotY(deg) rotZ(deg) material [p1] [p2] ... [pn]" if(!setShape(args.at(0))) return false; position = G4ThreeVector(strtod(args.at(1).c_str(), NULL)*cm, strtod(args.at(2).c_str(), NULL)*cm, strtod(args.at(3).c_str(), NULL)*cm); setRotationMatrix(G4ThreeVector(strtod(args.at(4).c_str(), NULL), strtod(args.at(5).c_str(), NULL), strtod(args.at(6).c_str(), NULL))); material = args.at(7); for(std::vector<std::string>::iterator iter = args.begin()+8; iter != args.end(); iter++){ size_t index = (*iter).find('='); if(index != std::string::npos){ std::string pName = (*iter).substr(0, index); double pVal = strtod((*iter).substr(index+1).c_str(), NULL); sizeArgs[pName] = pVal; } else{ // Failed to find '=' std::cout << " nDetWorldPrimitive: Error! Failed to find '=' in input argument (" << (*iter) << ")\n"; } } return checkRequiredArgs(); } std::string nDetWorldPrimitive::syntaxStr() const { // This is a mess, but it does what I want it to do :) CRT std::stringstream retval; retval << "addPrimitive "; if(shapeSelect == DEFAULT) retval << "<shape>"; else{ for(auto iter : shapeNameMap){ if(shapeSelect == iter.second){ retval << "<\"" << iter.first << "\">" ; break; } } } retval << " <posX> <posY> <posZ> <rotX> <rotY> <rotZ> <material> " << syntaxOutputString; return retval.str(); } void nDetWorldPrimitive::placeObject(G4LogicalVolume *parent, nDetMaterials *materials){ if(sizeArgs.empty()){ Display::ErrorPrint("No shape has been selected by the user", "nDetWorldPrimitive"); return; } if(buildGeometry()){ G4Material *mat = materials->getMaterial(material); if(mat){ geometry_logV = new G4LogicalVolume(geometry, mat, ""); geometry_logV->SetVisAttributes(materials->getUserVisAttributes(material)); if(geometry) geometry_physV = new G4PVPlacement(&rotation, position, geometry_logV, "", parent, false, 0, true); } else{ Display::ErrorPrint("Failed to find Geant material corresponding to user-specified material name", "nDetWorldPrimitive"); } } } bool nDetWorldPrimitive::setShape(const G4String &shapeName){ if(shapeName.empty()) return false; for(auto iter : shapeNameMap){ if(iter.first == shapeName){ // Found matching shape name // Set the selected shape shapeSelect = iter.second; // Set all initial parameters resetAllArgs(shapeSelect); // Reset the syntax string syntaxOutputString = getShapeArgString(); return true; } } Display::ErrorPrint("Failed to find Geant primitive corresponding to user-specified shape name", "nDetWorldPrimitive"); return false; } void nDetWorldPrimitive::listAllPrimitives(){ std::cout << std::endl; std::cout << "nDetWorldPrimitive: The following shape types are defined in NEXTSim:\n"; std::cout << "-------------------------------------------------------------------------------------------------------------------------\n"; std::cout << "Note: Parameter names are taken from the Geant4 application developer's handbook. See link below for detailed information\n"; std::cout << "https://indico.cern.ch/event/679723/contributions/2792554/attachments/1559217/2453758/BookForApplicationDevelopers.pdf\n"; std::cout << "-------------------------------------------------------------------------------------------------------------------------\n"; std::cout << " Name\tArguments\n"; std::cout << " ----\t---------\n"; for(auto iter : shapeNameMap){ if(iter.second == DEFAULT) continue; resetAllArgs(iter.second); std::cout << " " << iter.first << "\t" << getShapeArgString() << std::endl; } std::cout << std::endl; // Reset the selected shape, just in case sizeArgs.clear(); shapeSelect = DEFAULT; } void nDetWorldPrimitive::subPrint(){ for(auto arg : sizeArgs){ std::cout << " " << arg.first << "=" << arg.second << std::endl; } } std::string nDetWorldPrimitive::getShapeArgString(){ // Get the extra required parameters std::stringstream syntaxStream; // Update the number of required arguments and add them to the syntax string nReqArgs = 8; for(auto arg : sizeArgs){ if(arg.second < 0){ // Required argument syntaxStream << "<" << arg.first << "> "; nReqArgs++; } } // Add optional parameters to the syntax string for(auto arg : sizeArgs){ if(arg.second >= 0) // Optional argument syntaxStream << "[" << arg.first << "=" << arg.second << "] "; } // Return the string return syntaxStream.str(); } void nDetWorldPrimitive::resetAllArgs(const G4SHAPETYPE &shape){ // Clear current arguments (if there are any) sizeArgs.clear(); switch(shape){ case BOX: // G4Box sizeArgs["pX"] = -1; sizeArgs["pY"] = -1; sizeArgs["pZ"] = -1; break; case CYLINDER: // G4Tubs sizeArgs["pRMin"] = 0; sizeArgs["pRMax"] = -1; sizeArgs["pDz"] = -1; sizeArgs["pSPhi"] = 0; sizeArgs["pDPhi"] = 360; break; case CONE: // G4Cons sizeArgs["pRmin1"] = 0; sizeArgs["pRmax1"] = -1; sizeArgs["pRmin2"] = 0; sizeArgs["pRmax2"] = -1; sizeArgs["pDz"] = -1; sizeArgs["pSPhi"] = 0; sizeArgs["pDPhi"] = 360; break; case PARALLELEPIPED: // G4Para sizeArgs["dx"] = -1; sizeArgs["dy"] = -1; sizeArgs["dz"] = -1; sizeArgs["alpha"] = -1; sizeArgs["theta"] = -1; sizeArgs["phi"] = -1; break; case TRAPEZOID: // G4Trd sizeArgs["dx1"] = -1; sizeArgs["dx2"] = -1; sizeArgs["dy1"] = -1; sizeArgs["dy2"] = -1; sizeArgs["dz"] = -1; /*// G4Trap sizeArgs["pZ"] = -1; sizeArgs["pY"] = -1; sizeArgs["pX"] = -1; sizeArgs["pLTX"] = -1; // G4Trap sizeArgs["pDz"] = -1; sizeArgs["pTheta"] = -1; sizeArgs["pPhi"] = -1; sizeArgs["pDy1"] = -1; sizeArgs["pDx1"] = -1; sizeArgs["pDx2"] = -1; sizeArgs["pAlp1"] = -1; sizeArgs["pDy2"] = -1; sizeArgs["pDx3"] = -1; sizeArgs["pDx4"] = -1; sizeArgs["pAlp2"] = -1;*/ break; case SPHERE: // G4Sphere sizeArgs["pRmin"] = 0; sizeArgs["pRmax"] = -1; sizeArgs["pSPhi"] = 0; sizeArgs["pDPhi"] = 360; sizeArgs["pSTheta"] = 0; sizeArgs["pDTheta"] = 360; break; case TORUS: // G4Torus sizeArgs["pRmin"] = 0; sizeArgs["pRmax"] = -1; sizeArgs["pRtor"] = -1; sizeArgs["pSPhi"] = 0; sizeArgs["pDPhi"] = 360; break; default: break; } } bool nDetWorldPrimitive::checkRequiredArgs() const { bool retval = true; std::stringstream stream; stream << " nDetWorldPrimitive: Error! The following required parameters are not defined [ "; for(auto iter : sizeArgs){ if(iter.second < 0){ // Missing required argument stream << iter.first << " "; retval = false; } } if(!retval){ stream << "]"; std::cout << stream.str() << std::endl; } return retval; } G4CSGSolid *nDetWorldPrimitive::buildGeometry(const G4String &extName/*=""*/){ if(!checkRequiredArgs()){ // Check for required arguments return NULL; } G4CSGSolid *newObj = NULL; switch(shapeSelect){ case BOX: newObj = new G4Box(extName, sizeArgs["pX"]/2, sizeArgs["pY"]/2, sizeArgs["pZ"]/2); size = G4ThreeVector(sizeArgs["pX"], sizeArgs["pY"], sizeArgs["pZ"]); break; case CYLINDER: newObj = new G4Tubs(extName, sizeArgs["pRMin"], sizeArgs["pRMax"], sizeArgs["pDz"]/2, sizeArgs["pSPhi"]*deg, sizeArgs["pDPhi"]*deg); size = G4ThreeVector(sizeArgs["pRMax"]*2, sizeArgs["pRMax"]*2, sizeArgs["pDz"]); break; case CONE: newObj = new G4Cons(extName, sizeArgs["pRMin1"], sizeArgs["pRMax1"], sizeArgs["pRMin2"], sizeArgs["pRMax2"], sizeArgs["pDz"]/2, sizeArgs["pSPhi"]*deg, sizeArgs["pDPhi"]*deg); size = G4ThreeVector(std::max(sizeArgs["pRMax1"], sizeArgs["pRMax2"])*2, std::max(sizeArgs["pRMax1"], sizeArgs["pRMax2"])*2, sizeArgs["pDz"]); break; case PARALLELEPIPED: newObj = new G4Para(extName, sizeArgs["dx"]/2, sizeArgs["dy"]/2, sizeArgs["dz"]/2, sizeArgs["alpha"]*deg, sizeArgs["theta"]*deg, sizeArgs["phi"]*deg); size = G4ThreeVector(sizeArgs["dx"], sizeArgs["dy"], sizeArgs["dz"]); // Probably not correct, I have no idea how to get the size of this thing break; case TRAPEZOID: newObj = new G4Trd(extName, sizeArgs["dx1"]/2, sizeArgs["dx2"]/2, sizeArgs["dy1"]/2, sizeArgs["dy2"]/2, sizeArgs["dz"]/2); /*newObj = new G4Trap(extName, sizeArgs["pZ"], sizeArgs["pY"], sizeArgs["pX"], sizeArgs["pLTX"]); newObj = new G4Trap(extName, sizeArgs["pDz"]/2, sizeArgs["pTheta"]*deg, sizeArgs["pPhi"]*deg, sizeArgs["pDy1"]/2, sizeArgs["pDx1"]/2, sizeArgs["pDx2"]/2, sizeArgs["pAlp1"]*deg, sizeArgs["pDy2"]/2, sizeArgs["pDx3"]/2, sizeArgs["pDx4"]/2, sizeArgs["pAlp2"]*deg);*/ size = G4ThreeVector(std::max(sizeArgs["dx1"], sizeArgs["dx2"])*2, std::max(sizeArgs["dy1"], sizeArgs["dy2"])*2, sizeArgs["dz"]); break; case SPHERE: newObj = new G4Sphere(extName, sizeArgs["pRmin"], sizeArgs["pRmax"], sizeArgs["pSPhi"]*deg, sizeArgs["pDPhi"]*deg, sizeArgs["pSTheta"]*deg, sizeArgs["pDTheta"]*deg); size = G4ThreeVector(sizeArgs["pRmax"]*2, sizeArgs["pRmax"]*2, sizeArgs["pRmax"]*2); break; case TORUS: newObj = new G4Torus(extName, sizeArgs["pRmin"], sizeArgs["pRmax"], sizeArgs["pRtor"], sizeArgs["pSPhi"]*deg, sizeArgs["pDPhi"]*deg); size = G4ThreeVector(sizeArgs["pRtor"]*2 + sizeArgs["pRmax"]*2, sizeArgs["pRtor"]*2 + sizeArgs["pRmax"]*2, sizeArgs["pRmax"]*2); break; default: break; } if(newObj){ if(geometry) delete geometry; geometry = newObj; } return newObj; } /////////////////////////////////////////////////////////////////////////////// // class gdmlObject /////////////////////////////////////////////////////////////////////////////// bool gdmlObject::decodeArgs(){ // Expects a space-delimited string of the form: // "filename posX(cm) posY(cm) posZ(cm) rotX(deg) rotY(deg) rotZ(deg) material" filename = args.at(0); position = G4ThreeVector(strtod(args.at(1).c_str(), NULL)*cm, strtod(args.at(2).c_str(), NULL)*cm, strtod(args.at(3).c_str(), NULL)*cm); setRotationMatrix(G4ThreeVector(strtod(args.at(4).c_str(), NULL), strtod(args.at(5).c_str(), NULL), strtod(args.at(6).c_str(), NULL))); material = args.at(7); // Load the model solid.read(filename, material, false); solid.setRotation(rotVector); solid.setPosition(position); // Get attributes of the model size = G4ThreeVector(solid.getWidth(), solid.getThickness(), solid.getLength()); name = solid.getName(); // Print some info about the loaded geometry std::cout << " gdmlObject: Loaded GDML model (name=" << name << ") with size x=" << size.getX() << " mm, y=" << size.getY() << " mm, z=" << size.getZ() << " mm\n"; return true; } void gdmlObject::construct(nDetDetector *obj){ obj->loadGDML(&solid); } std::string gdmlObject::syntaxStr() const { return std::string("loadGDML <filename> <posX> <posY> <posZ> <rotX> <rotY> <rotZ> <material>"); } void gdmlObject::placeObject(G4LogicalVolume *parent, nDetMaterials *){ if(!solid.isLoaded()) return; // Set the visual attributes of the model geometry_logV = solid.getLogicalVolume(); // Place loaded model into the assembly. geometry_physV = solid.placeSolid(parent, true); }
06899ccbfb59fb44855c0de9df15d83c80e3ba79
3a4b45efee41ec28a719c02bd11b27f82ff247c2
/proj.win32/TetrisFigure_I.cpp
53b319d3b753634b6cd524e4cb83c260032fb820
[]
no_license
msklyarov/Cocos2dx-Tetris
320267ad10cf4ee99ad53bd9494e087634980ed0
b66a0f0a33af917595273f4c2940b297c67ab8f8
refs/heads/master
2021-03-27T10:34:03.896288
2017-07-28T08:37:28
2017-07-28T08:37:28
98,628,173
0
1
null
null
null
null
UTF-8
C++
false
false
1,229
cpp
TetrisFigure_I.cpp
#include "TetrisFigure_I.h" #include "Settings.h" CTetrisFigure_I::CTetrisFigure_I(void) { /* * #### * .... */ // COLOR_CYAN static RotationMatrixType matrix_I = { { CGlassPoint(0, 0), CGlassPoint(-1, 0), CGlassPoint(1, 0), CGlassPoint(2, 0) }, { CGlassPoint(0, 0), CGlassPoint(0, 1), CGlassPoint(0, -1), CGlassPoint(0, -2) }, { CGlassPoint(0, 0), CGlassPoint(-1, 0), CGlassPoint(1, 0), CGlassPoint(2, 0) }, { CGlassPoint(0, 0), CGlassPoint(0, 1), CGlassPoint(0, -1), CGlassPoint(0, -2) } }; _pRotationMatrix = &matrix_I; CCSprite* pBlocks[CSettings::FigureBlocksCount]; pBlocks[0] = CCSprite::create( CSettings::FigureSpritesImgFileName, CCRectMake(CSettings::GlassCellSize * CSettings::Color::Cyan, 0, CSettings::FigureSpriteSize, CSettings::FigureSpriteSize) ); for (int i = 1; i < CSettings::FigureBlocksCount; i++) { pBlocks[i] = new CCSprite(*pBlocks[0]); } for (int i = 0; i < CSettings::FigureBlocksCount; i++) { pBlocks[i]->setPosition( ccp( (*_pRotationMatrix)[_iFigureDirection][i].x * CSettings::GlassCellSize, (*_pRotationMatrix)[_iFigureDirection][i].y * CSettings::GlassCellSize ) ); this->addChild(pBlocks[i]); } } CTetrisFigure_I::~CTetrisFigure_I(void) { }
a77cd23b2f29783598549012b616d69ebd2968c7
bd1ba53dc8a5f1c10a7ed30ab18745feb0d62d65
/can.cpp
3f11495321ce4e6d9b3f4b9c7bd21903014a1866
[]
no_license
nishi835/runningGirl
d8da37f0da7aabd037f59c329bf7004cc0721968
f055ecf88c2619a1767a054642ddc5f10cc90e77
refs/heads/master
2020-03-27T12:06:35.105235
2018-08-29T01:39:26
2018-08-29T01:39:26
146,526,265
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
9,887
cpp
can.cpp
/*============================================================================== ポリゴン処理 [Player.cpp] 作成者 : 中西 祐介 作成日 : 2016/5/31 -------------------------------------------------------------------------------- ■Update : ==============================================================================*/ /*------------------------------------------------------------------------------  ヘッダファイル ------------------------------------------------------------------------------*/ #include "main.h" #include "polygon.h" #include "movebg.h" #include "can.h" #include "player.h" #include <stdio.h> #include <time.h> #include <math.h> /*------------------------------------------------------------------------------  マクロ定義 ------------------------------------------------------------------------------*/ #define CAN_TEXTURENAME "data/TEXTURE/tire.png" // テクスチャファイル名 #define CAN_TEX_WIDTH (1.0f) // 缶のテクスチャ幅 #define CAN_TEX_HEIGHT (1.0f) // 缶のテクスチャ高さ #define CAN_MOVE_SPEED (3.2f) // 缶の移動速度 #define CAN_SCROLL_COEFFICIENT (800.0f) // 缶の移動を背景に合わせる係数 /*------------------------------------------------------------------------------  グローバル変数 ------------------------------------------------------------------------------*/ LPDIRECT3DTEXTURE9 g_pTextureCan = NULL; // テクスチャインターフェースのポインタ LPDIRECT3DVERTEXBUFFER9 g_pVtxBufferCan = NULL; // 頂点バッファ管理インターフェースポインタ CAN Can[ CAN_MAX ]; // 缶の構造体配列 // 回転関係 D3DXVECTOR2 g_posCan; // ポリゴンの中心座標 float g_fLengthCan; // ポリゴンの対角線の長さ float g_fAngleCan; // ポリゴンの対角線の角度 /*------------------------------------------------------------------------------  初期化処理 ------------------------------------------------------------------------------*/ void InitCan( void ) { srand( ( unsigned )time ( 0 ) ); // 乱数設定 // 缶の初期化 for( int nCntCan = 0; nCntCan < CAN_MAX; nCntCan++ ) { Can[ nCntCan ].fPos = D3DXVECTOR2( SCREEN_WIDTH, LIMIT_BOTTOM - CAN_HEIGHT ); Can[ nCntCan ].fMove = D3DXVECTOR2( - CAN_MOVE_SPEED, 0.0f ); Can[ nCntCan ].fPosTex.x = 0.0f; Can[ nCntCan ].fPosTex.y = 0.0f; Can[ nCntCan ].fRot = 0.0f; Can[ nCntCan ].bFly = false; Can[ nCntCan ].bUse = false; } // --- 回転準備 --- //////////////////////////////////////////////////////// g_fLengthCan = sqrt( CAN_WIDTH * CAN_WIDTH + CAN_HEIGHT * CAN_HEIGHT ) / 2.0f; // 対角線の長さの算出 g_fAngleCan = atan2( CAN_HEIGHT, CAN_WIDTH ); // 対角線の角度の算出 // 頂点の設定 MakeVertexPolygon( &g_pVtxBufferCan, CAN_MAX ); // デバイスのポインタ取得 LPDIRECT3DDEVICE9 pDevice = GetDevice(); // テクスチャの読み込み if( FAILED ( D3DXCreateTextureFromFile( pDevice, // デバイスのポインタを渡す CAN_TEXTURENAME, // テクスチャのファイル名 &g_pTextureCan ) ) ) // テクスチャインターフェースの格納 { MessageBox( NULL, "テクスチャ読み込み失敗", "エラー", MB_OK ); // エラーチェック } } /*------------------------------------------------------------------------------  終了処理 ------------------------------------------------------------------------------*/ void UninitCan( void ) { // テクスチャインターフェース、頂点バッファインターフェースの開放 UninitPolygon( &g_pTextureCan, &g_pVtxBufferCan ); } /*------------------------------------------------------------------------------  更新処理 ------------------------------------------------------------------------------*/ void UpdateCan( void ) { // スクロール背景の取得 MOVEBG* pMoveBg = NULL; pMoveBg = GetMoveBG(); VERTEX_2D* pVtx = NULL; // VRAMの仮想アドレスを格納 // 頂点バッファをロックして、仮想アドレスを取得する g_pVtxBufferCan->Lock( 0, 0, // すべてをロック ( void** )&pVtx, // 仮想アドレス用ポインタのアドレスを渡す 0 ); for( int nCntCan = 0; nCntCan < CAN_MAX; nCntCan++ ) { if( !Can[ nCntCan ].bUse ) { continue; } // 缶の移動 /////////////////////////////////////////////////////////////// // 移動量の設定 if( Can[ nCntCan ].bFly ) { Can[ nCntCan ].fMove.y += 0.6f; Can[ nCntCan ].fRot += 0.4f; } else if( Can[ nCntCan ].fPos.x < SCREEN_WIDTH ) { Can[ nCntCan ].fMove.x = - ( pMoveBg[ 0 ].fTexScrollSpeed * CAN_SCROLL_COEFFICIENT + CAN_MOVE_SPEED ); } else { Can[ nCntCan ].fMove.x = - ( pMoveBg[ 0 ].fTexScrollSpeed * CAN_SCROLL_COEFFICIENT ); } // 座標の更新 Can[ nCntCan ].fPos += Can[ nCntCan ].fMove; // 頂点座標の設定 ///////////////////////////////////////////////////////// // 中心座標の算出 Can[ nCntCan ].fAxis.y = Can[ nCntCan ].fPos.y + CAN_HEIGHT * 0.5f; Can[ nCntCan ].fAxis.x = Can[ nCntCan ].fPos.x + CAN_WIDTH * 0.5f; // 四隅の座標の算出 Can[ nCntCan ].fLeftUp.x = Can[ nCntCan ].fAxis.x; Can[ nCntCan ].fLeftUp.y = Can[ nCntCan ].fAxis.y; Can[ nCntCan ].fRightUp.x = Can[ nCntCan ].fAxis.x + CAN_WIDTH; Can[ nCntCan ].fRightUp.y = Can[ nCntCan ].fAxis.y; Can[ nCntCan ].fLeftDown.x = Can[ nCntCan ].fAxis.x; Can[ nCntCan ].fLeftDown.y = Can[ nCntCan ].fAxis.y + CAN_HEIGHT; Can[ nCntCan ].fRightDown.x = Can[ nCntCan ].fAxis.x + CAN_WIDTH; Can[ nCntCan ].fRightDown.y = Can[ nCntCan ].fAxis.y + CAN_HEIGHT; // 四隅の座標の更新 Can[ nCntCan ].fLeftUp.x = Can[ nCntCan ].fAxis.x + cos( Can[ nCntCan ].fRot + D3DX_PI + g_fAngleCan ) * g_fLengthCan; // 左上の頂点X Can[ nCntCan ].fLeftUp.y = Can[ nCntCan ].fAxis.y + sin( Can[ nCntCan ].fRot + D3DX_PI + g_fAngleCan ) * g_fLengthCan; // 左上の頂点Y Can[ nCntCan ].fRightUp.x = Can[ nCntCan ].fAxis.x + cos( Can[ nCntCan ].fRot - g_fAngleCan ) * g_fLengthCan; // 右上の頂点X Can[ nCntCan ].fRightUp.y = Can[ nCntCan ].fAxis.y + sin( Can[ nCntCan ].fRot - g_fAngleCan ) * g_fLengthCan; // 右上の頂点Y Can[ nCntCan ].fLeftDown.x = Can[ nCntCan ].fAxis.x + cos( Can[ nCntCan ].fRot + D3DX_PI - g_fAngleCan ) * g_fLengthCan; // 左下の頂点X Can[ nCntCan ].fLeftDown.y = Can[ nCntCan ].fAxis.y + sin( Can[ nCntCan ].fRot + D3DX_PI - g_fAngleCan ) * g_fLengthCan; // 左下の頂点Y Can[ nCntCan ].fRightDown.x = Can[ nCntCan ].fAxis.x + cos( Can[ nCntCan ].fRot + g_fAngleCan ) * g_fLengthCan; // 右下の頂点X Can[ nCntCan ].fRightDown.y = Can[ nCntCan ].fAxis.y + sin( Can[ nCntCan ].fRot + g_fAngleCan ) * g_fLengthCan; // 右下の頂点Y // 頂点座標の設定 pVtx[ 0 ].pos.x = Can[ nCntCan ].fLeftUp.x; // 左上の頂点X pVtx[ 0 ].pos.y = Can[ nCntCan ].fLeftUp.y; // 左上の頂点Y pVtx[ 1 ].pos.x = Can[ nCntCan ].fRightUp.x; // 右上の頂点X pVtx[ 1 ].pos.y = Can[ nCntCan ].fRightUp.y; // 右上の頂点Y pVtx[ 2 ].pos.x = Can[ nCntCan ].fLeftDown.x; // 左下の頂点X pVtx[ 2 ].pos.y = Can[ nCntCan ].fLeftDown.y; // 左下の頂点Y pVtx[ 3 ].pos.x = Can[ nCntCan ].fRightDown.x; // 右下の頂点X pVtx[ 3 ].pos.y = Can[ nCntCan ].fRightDown.y; // 右下の頂点Y // UV座標の設定 pVtx[ 0 ].tex = D3DXVECTOR2( Can[ nCntCan ].fPosTex.x, Can[ nCntCan ].fPosTex.y ); // 左上の頂点 pVtx[ 1 ].tex = D3DXVECTOR2( Can[ nCntCan ].fPosTex.x + CAN_TEX_WIDTH, Can[ nCntCan ].fPosTex.y ); // 右上の頂点 pVtx[ 2 ].tex = D3DXVECTOR2( Can[ nCntCan ].fPosTex.x, Can[ nCntCan ].fPosTex.y + CAN_TEX_HEIGHT ); // 左下の頂点 pVtx[ 3 ].tex = D3DXVECTOR2( Can[ nCntCan ].fPosTex.x + CAN_TEX_WIDTH, Can[ nCntCan ].fPosTex.y + CAN_TEX_HEIGHT ); // 右下の頂点 pVtx += 4; } // 頂点バッファのアンロック g_pVtxBufferCan->Unlock(); } /*------------------------------------------------------------------------------  描画処理 ------------------------------------------------------------------------------*/ void DrawCan( void ) { // デバイスのポインタ取得 LPDIRECT3DDEVICE9 pDevice = GetDevice(); // パイプライン(ストリーム)を設定 pDevice->SetStreamSource( 0, // パイプライン番号 g_pVtxBufferCan, // パイプラインの元になる領域を指定 0, // オフセット(単位はbyte)※ストリームの開始位置を指定できる sizeof( VERTEX_2D ) ); // 流すデータの単位サイズ(ストライド量) // テクスチャの設定 pDevice->SetTexture( 0, g_pTextureCan ); // 頂点フォーマットの設定 pDevice->SetFVF( FVF_VERTEX_2D ); // プリミティブ(Polygon)の描画 for( int nCnt = 0; nCnt < CAN_MAX; nCnt++ ) { if( !Can[ nCnt ].bUse ) { continue; } pDevice->DrawPrimitive( D3DPT_TRIANGLESTRIP, // プリミティブの種類 nCnt * 4, // 描画開始位置のオフセット(頂点数) NUM_POLYGON ); // 描画するプリミティブの数 } } /*------------------------------------------------------------------------------  ゲッター ------------------------------------------------------------------------------*/ CAN* GetCan( void ) { return Can; }
75f40838c547fa58f398fbdfe9e848395ba14ba3
fc6d72faa45ec633787dbd8327a94bf40ef9fcdc
/src/cmd_recoder.h
4faefcc840cc0f82a4dba88fe06414446ae42de0
[]
no_license
ylshan/kvstore
03d0fd355c1047eda5b85e34f00a163cc2a03e71
47c2d20e2713e6b6015be2bb5f5f41dc608c2cdb
refs/heads/master
2020-04-16T06:15:52.763824
2017-07-31T01:32:39
2017-07-31T01:32:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
437
h
cmd_recoder.h
#ifndef CMDRECODER_H #define CMDRECODER_H #include <string> #include <vector> #include <fstream> namespace kvstore { class CmdRecoder { public: CmdRecoder(std::size_t dbnum); CmdRecoder(); int record(const std::string& cmd, int databaseid); private: int init(); private: std::size_t dbnum_; std::vector<std::ofstream> dbfiles_; }; static const char* CMD_SAVE_PATH_FOLDER = "cmd_save/"; } #endif // CMDRECODER_H
01fcc27de51169f54758c43775b57a229cf814d8
6958f617af0c5a76304ceb1006c77bc70ca0e195
/tests/cpp/aot/opengl/device_test.cpp
d11392b8a983053a13d4956ece291e7667930fbb
[ "Apache-2.0" ]
permissive
taichi-dev/taichi
3fae315a494f1c97392d5b931c939abbbfba1bdc
b30b511f55e3d0ebff765ee048d0aaa4ba9e7667
refs/heads/master
2023-09-02T13:28:18.208792
2023-08-23T23:22:43
2023-08-23T23:22:43
74,660,642
17,231
1,841
Apache-2.0
2023-09-14T11:29:32
2016-11-24T10:00:05
C++
UTF-8
C++
false
false
365
cpp
device_test.cpp
#include "gtest/gtest.h" #include "taichi/rhi/opengl/opengl_api.h" #include "tests/cpp/aot/gfx_utils.h" using namespace taichi; using namespace lang; TEST(DeviceTest, GLDevice) { if (!opengl::is_opengl_api_available()) { return; } auto device_ = taichi::lang::opengl::make_opengl_device(); aot_test_utils::view_devalloc_as_ndarray(device_.get()); }
0903f88ffbd991b4dd0aeb4f0110ad23dc6c5196
7974395a6401c217ae573a73a47e98f769d4af96
/common/include/TransitionAnimationFinished.hh
639ea1941e7c02f844848b6cc73698c98c3cc5e7
[ "Apache-2.0" ]
permissive
VincentWei/mg-demos
8932e51bf7e92453a64ad31800e42161debb3d54
3532430aff270f5ae716b494776882e586a7af04
refs/heads/master
2023-05-05T02:51:55.216447
2022-09-15T03:21:27
2022-09-15T03:21:27
188,669,273
14
11
Apache-2.0
2020-08-17T01:35:05
2019-05-26T10:32:07
C
UTF-8
C++
false
false
1,873
hh
TransitionAnimationFinished.hh
/////////////////////////////////////////////////////////////////////////////// // // IMPORTANT NOTICE // // The following open source license statement does not apply to any // entity in the Exception List published by FMSoft. // // For more information, please visit: // // https://www.fmsoft.cn/exception-list // ////////////////////////////////////////////////////////////////////////////// /* ** This file is a part of mg-demos package. ** ** Copyright (C) 2010 ~ 2019 FMSoft (http://www.fmsoft.cn). ** ** 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. */ /** * @file TransitionAnimationFinished.hh * @synopsis * @author WanZhen * @version 0.1 * @date 2010-08-02 * Copyright © 2002-2009 Beijing FMSoft Technology Co., Ltd. */ #ifndef TRANSITIONANIMATIONFINISHED_HH #define TRANSITIONANIMATIONFINISHED_HH #include "StateMachine.hh" #include <mgeff/mgeff.h> using namespace mStateMachine; /** * @synopsis TransitionAnimationFinished */ class TransitionAnimationFinished : public SignalTransition { public: TransitionAnimationFinished(MGEFF_ANIMATION animation, State *source, State *target, const char *name=NULL); ~TransitionAnimationFinished(); void setAnimation(MGEFF_ANIMATION animation); private: static void onAnimationFinished(MGEFF_ANIMATION animation); }; #endif /* TRANSITIONANIMATIONFINISHED_HH */
1b7889287f0e6e389eabff43524ae731d351c12f
8e801c1f446e1a19f7051f0643244a2b7444c344
/src/sigcmp.hpp
83006022ed127a4f151a5687d0d780577ae79e33
[]
no_license
schuay/gpu_architectures_and_computing
5cb798fa994101e75eed44bffbbdbe25cb917279
2dcf6444d835e447d2799b63ae4758e790915309
refs/heads/master
2021-01-23T08:39:01.682291
2013-06-18T10:24:41
2013-06-18T10:24:41
13,169,492
1
0
null
null
null
null
UTF-8
C++
false
false
189
hpp
sigcmp.hpp
#ifndef __SIGCMP_H #define __SIGCMP_H #include "sigpt.h" int sigcmp(const sigpt_t *lhs, const int nlhs, const sigpt_t *rhs, const int nrhs); #endif /* __SIGCMP_H */
9af792da0e5f0e42f7c8cdc0a47f9c738a1b589a
d135825ab27aecd543e4b09c274ee1c560f0e8a4
/EquipmentSource/RPG/Equipment/RPGShield.cpp
8dc8db5aab4b3f510a9a0c739cee42827a05beba
[]
no_license
sgdavis/UnrealProjects
e08caceaa1cba63c8d90caf861f7d5815d725ba2
18f38459caab2e4ca8de6b61e2bc02993fbad9d6
refs/heads/master
2020-05-04T12:58:01.257785
2019-04-02T20:18:50
2019-04-02T20:18:50
179,142,323
0
0
null
null
null
null
UTF-8
C++
false
false
222
cpp
RPGShield.cpp
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved. #include "RPGShield.h" ARPGShield::ARPGShield() : ARPGEquipment() { } void ARPGShield::BlockedSomething(AActor* otherActor) { CLIENTCOMPLAINT("CLANG"); }
c8bf76ef8270819d26579afb51ffdc83b42228f7
e8bc5f4d1a6fe716423081daa3898980f144653f
/PreviewDlg.cpp
d210544cb259c05f1c047e2d2b83e362d5670463
[]
no_license
zorro2000se/Dorgem
c409f2552f9311ea2ac1aa63715b1e5f8efd937d
12b32ef3f6125bd00cf6b915ec690a553cef7624
refs/heads/master
2021-05-27T01:59:08.710774
2014-03-04T11:56:04
2014-03-04T11:56:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,196
cpp
PreviewDlg.cpp
///////////////////////////////////////////////////////////////////////////// // // // Dorgem - Webcam Capture application // // Copyright (C) 2001 Frank Fesevur // // // // 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., 675 Mass Ave, Cambridge, MA 02139, USA. // // // ///////////////////////////////////////////////////////////////////////////// // PreviewDlg.cpp : implementation file #include "StdAfx.h" #include "Dorgem.h" #include "PreviewDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CPreviewDlg dialog CPreviewDlg::CPreviewDlg(CWnd* pParent /*=NULL*/) : CDialog(CPreviewDlg::IDD, pParent) { //{{AFX_DATA_INIT(CPreviewDlg) // NOTE: the ClassWizard will add member initialization here //}}AFX_DATA_INIT } void CPreviewDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CPreviewDlg) // NOTE: the ClassWizard will add DDX and DDV calls here //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CPreviewDlg, CDialog) //{{AFX_MSG_MAP(CPreviewDlg) ON_WM_DESTROY() //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // Move to the default position BOOL CPreviewDlg::OnInitDialog() { CDialog::OnInitDialog(); // Get saved position CString strPos = GetApp()->GetProfileString(szGeneral, szPreviewPos); int iIndex = strPos.Find(','); if (iIndex != -1) // Bail out if the string is odd or if no string { // Get the window size CRect place; GetWindowRect(place); LONG lSizeX = place.right - place.left; LONG lSizeY = place.bottom - place.top; // Determine the new position place.left = atoi(strPos); place.right = place.left + lSizeX; place.top = atoi(strPos.Mid(iIndex + 1)); place.bottom = place.top + lSizeY; // Move the window MoveWindow(place); } return(TRUE); } ///////////////////////////////////////////////////////////////////////////// // Save Window Position void CPreviewDlg::OnDestroy() { WINDOWPLACEMENT wndpl; wndpl.length = sizeof(WINDOWPLACEMENT); // Gets current window position if (GetWindowPlacement(&wndpl)) { CString strText; strText.Format("%d,%d", wndpl.rcNormalPosition.left, wndpl.rcNormalPosition.top); GetApp()->WriteProfileString(szGeneral, szPreviewPos, strText); } CDialog::OnDestroy(); } ///////////////////////////////////////////////////////////////////////////// // Disable the keyboard input to this dialog. Mainly to prevent that ESC // cancels the dialog BOOL CPreviewDlg::PreTranslateMessage(MSG* pMsg) { if (pMsg->message == WM_KEYDOWN || pMsg->message == WM_KEYUP) return(TRUE); return(CDialog::PreTranslateMessage(pMsg)); }
f8fb294919ed433aa9efe2e19c7846e21a438d38
fb8b16f9588b7ea1fb03c077caf777086f3bffaa
/c++/小z的彩灯.cpp
0aaaee0b74e4fefe110859b097b1393b294d09ca
[]
no_license
Hanmengnan/AlgorithmPractice
3d5bc25bfefd103bf3d893a2ab67b18b964e6639
848377d2f760d67a5f256636b41be4a02a363877
refs/heads/master
2021-07-09T17:23:01.386025
2020-11-02T14:38:48
2020-11-02T14:38:48
196,815,543
4
0
null
null
null
null
UTF-8
C++
false
false
1,007
cpp
小z的彩灯.cpp
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <vector> #include <string> using namespace std; int main() { int flag = 0; vector<int> latterns(100000); for (int i = 0; i < 100000; ++i) { cin >> latterns[i]; // = flag; // flag = !flag; } string o; while (cin >> o) { int m, n; if (o == "q") { cin >> m; cout << latterns[m]; } else if (o == "a") { cin >> m >> n; for (int i = m; i <= n; ++i) { latterns[i] = 1; } } else if (o == "b") { cin >> m >> n; for (int i = m; i <= n; ++i) { latterns[i] = 0; } } else if (o == "c") { cin >> m >> n; for (int i = m; i <= n; ++i) { latterns[i] = !latterns[i]; } } } return 0; }
34ae8be59a30548ef653fc1e60c43b8561eced0f
877d022e8c1e4047cd7d23367cbc2c8991b49ee5
/2014-2015/2015 summer/duoxiao/2015 Multi-University Training Contest 9/1003.cpp
7aff488b23ecccbb8bcae7cad6bd8b300c9805e2
[]
no_license
kimnoic/ACM-ICPC
59963e4542ac92d46640699a60ff8bb4b3dc3b96
f52cd20a804f04aced4f3f77278f62a1bf8ff329
refs/heads/master
2020-12-21T16:09:18.585974
2016-11-11T18:15:53
2016-11-11T18:15:53
73,498,395
2
0
null
null
null
null
UTF-8
C++
false
false
1,010
cpp
1003.cpp
#include <iostream> #include <stdio.h> #include <algorithm> #include <stdlib.h> #include <math.h> #include <string.h> #include <vector> #include <queue> #include <stack> #include <set> #include <map> using namespace std; #define N 101000 int res[N]; const int MAXN=350; int prime[MAXN+1]; void getPrime() { memset(prime,0,sizeof(prime)); for (int i=2;i<=MAXN;i++){ if (!prime[i]) prime[++prime[0]]=i; for (int j=1;j<=prime[0]&&prime[j]<=MAXN/i;j++){ prime[prime[j]*i]=1; if (i%prime[j]==0) break; } } } int getFactors(long long x) { long long tmp=x; for (int i=1;prime[i]<=tmp/prime[i];i++){ if (tmp%prime[i]==0){ return x/prime[i]; } } if (tmp!=1){ return 1; } } int main() { getPrime(); for(int i=2;i<=N;i++) { res[i]=res[i-1]; res[i]+=getFactors(i); } int t; while(~scanf("%d",&t)) { printf("%d\n",res[t]); } return 0; }
381862c6f0276669e7c1ec84c9fe31c98a1721b9
653c44e24ca1d0a7793627693083212be41f01a4
/ExampleApp/HelloWorldS3e/HelloWorldS3e.cpp
0aaea982a09063be699b09efce34aeeb49f3df07
[]
no_license
vservmobi/marmaladeHelloWorldSample
ff4d99da05f94aca3899faa363d4217612e41307
c5eac0982823044e8426b7f32ed63e3f920cf549
refs/heads/master
2016-09-06T11:47:09.618157
2013-03-04T08:34:50
2013-03-04T08:34:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,649
cpp
HelloWorldS3e.cpp
/* * This file is part of the Marmalade SDK Code Samples. * * Copyright (C) 2001-2012 Ideaworks3D Ltd. * All Rights Reserved. * * This source code is intended only as a supplement to Ideaworks Labs * Development Tools and/or on-line documentation. * * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A * PARTICULAR PURPOSE. */ /** * @page ExampleS3EHelloWorld S3E Hello World Example * * The following example, in typical Hello World style, displays the phrase * "Hello, World!" on screen. * * The functions required to achieve this are: * Printing the text to screen: * - s3eDebugPrint() * * Handling the text: * - s3eDeviceCheckQuitRequest() * - s3eSurfaceClear() * - s3eSurfaceShow() * * All examples will follow this basic pattern; a brief description of what * the example does will be given followed by a list of all the important * functions and, perhaps, classes. * * Should the example be more complex, a more detailed explanation of what the * example does and how it does it will be added. Note that most examples * use an example framework to remove boilerplate code and allow the projects * to be made up of a single source file for easy viewing. This framework can * be found in the examples/s3e/ExamplesMain directory. * * @include s3eHelloWorld.cpp */ #include "s3e.h" #include "hash_map" extern void vservManagerSkipAd(); extern int vservManagerFetchingAdData(); extern void vservManagerInit(std::hash_map<char*,char*> p_hashMap); int32 keyPressedState = S3E_KEY_INVALID; char* buttonStatus = NULL; std::hash_map<char*, char*> hashMap; void hashInit() { hashMap["ShowAt"] = "both"; hashMap["ViewMandatory"] = "false"; hashMap["ZoneID"] = "YOUR_ZONE_ID"; // given Zoneid by vserv } // Rotate the layout on rotation static int HelloWorldRotationCallBack(void* systemData, void* userData) { s3eSurfaceClear(0, 0, 255); const int width = s3eSurfaceGetInt(S3E_SURFACE_WIDTH); const int height = s3eSurfaceGetInt(S3E_SURFACE_HEIGHT); return 0; } void DrawButtonRect(int x, int y, int width, int height, uint8 r, uint8 g, uint8 b) { int right = x + width; int bottom = y + height; int pitch = s3eSurfaceGetInt(S3E_SURFACE_PITCH); if (x < 0) x = 0; if (y < 0) y = 0; if (right > (int32)s3eSurfaceGetInt(S3E_SURFACE_WIDTH)) right = s3eSurfaceGetInt(S3E_SURFACE_WIDTH); if (bottom > (int32)s3eSurfaceGetInt(S3E_SURFACE_HEIGHT)) bottom = s3eSurfaceGetInt(S3E_SURFACE_HEIGHT); uint16* pSurface = (uint16*)s3eSurfacePtr(); pitch /= 2; uint16 colour = (uint16)s3eSurfaceConvertRGB(r,g,b); if (((right - x) & 0x3) == 0) { for (int _y = y; _y < bottom; _y++) { uint16* p = pSurface + _y*pitch + x; uint16* pEnd = p + right - x; do { *p++ = colour; *p++ = colour; *p++ = colour; *p++ = colour; } while (p != pEnd); } } else { for (int _y = y; _y < bottom; _y++) { uint16* p = pSurface + _y*pitch + x; uint16* pEnd = p + right - x; do { *p++ = colour; } while (p != pEnd); } } } int CheckButtonStatus(char* pName) { if(buttonStatus != NULL && pName != NULL){ if(strcmp(pName,buttonStatus) == 0) { return keyPressedState; } } return 0; } void createButton(char* p_btnName) { // Draw button area int fontWidth = s3eDebugGetInt(S3E_DEBUG_FONT_WIDTH); int x,y,width; if(p_btnName != NULL && strlen(p_btnName) > 1) width = strlen(p_btnName)*fontWidth+10; int height = 40; //x = IwGxGetScreenWidth() - width; x = s3eSurfaceGetInt(S3E_SURFACE_WIDTH) - width; y = 2; if (!(s3ePointerGetState(S3E_POINTER_BUTTON_SELECT) & S3E_POINTER_STATE_UP)) { int pointerx = s3ePointerGetX(); int pointery = s3ePointerGetY(); if (pointerx >=x && pointerx <= x+width && pointery >=y && pointery <= y+height) { if (s3ePointerGetState(S3E_POINTER_BUTTON_SELECT) & S3E_POINTER_STATE_DOWN) { keyPressedState = S3E_KEY_STATE_DOWN; } if (s3ePointerGetState(S3E_POINTER_BUTTON_SELECT) & S3E_POINTER_STATE_PRESSED) { keyPressedState = S3E_KEY_STATE_PRESSED; } if (s3ePointerGetState(S3E_POINTER_BUTTON_SELECT) & S3E_POINTER_STATE_RELEASED) { keyPressedState = S3E_KEY_STATE_RELEASED; s3eDebugTraceLine("-------------Example Update Key Released-------------------"); } } } if (s3ePointerGetState(S3E_POINTER_BUTTON_SELECT) & S3E_POINTER_STATE_RELEASED) { char color[64] = "`xe0ff00"; char* dispText = strcat(color,p_btnName); s3eDebugPrint(x+5, 20, dispText, 0); } if (s3ePointerGetInt(S3E_POINTER_AVAILABLE)) { if (keyPressedState == S3E_KEY_STATE_DOWN) { char color[64] = "`xe0ff00"; char* dispText = strcat(color,p_btnName); s3eDebugPrint(x+5, 20, dispText, 0); } else if(keyPressedState == S3E_KEY_STATE_PRESSED) { DrawButtonRect(x, y, width, height,97,97,249); char color[64] = "`xe0ff00"; char* dispText = strcat(color,p_btnName); s3eDebugPrint(x+5, 20, dispText, 0); } else if(keyPressedState == S3E_KEY_STATE_RELEASED) { s3eSurfaceClear(0,0,0); char color[64] = "`xe0ff00"; char* dispText = strcat(color,p_btnName); s3eDebugPrint(x+5, 20, dispText, 0); } else { char color[64] = "`xD8F809"; char* dispText = strcat(color,p_btnName); s3eDebugPrint(x+5, 20, dispText, 0); } } } void HelloWorldInit() { // Fill background blue s3eSurfaceClear(0, 0, 255); int scale; if (s3eSurfaceGetInt(S3E_SURFACE_WIDTH) < 320 || s3eSurfaceGetInt(S3E_SURFACE_HEIGHT) < 320) scale = 1; else if (s3eSurfaceGetInt(S3E_SURFACE_WIDTH) < 480 || s3eSurfaceGetInt(S3E_SURFACE_HEIGHT) < 480) scale = 2; else scale = 3; s3eDebugSetInt(S3E_DEBUG_FONT_SCALE, scale); s3eSurfaceRegister(S3E_SURFACE_SCREENSIZE, HelloWorldRotationCallBack, NULL); } void HelloWorldRender() { s3eDebugPrint(120, 150, "`x000000Hello, World!", 0); createButton("Exit"); buttonStatus = "Exit"; s3eSurfaceShow(); } void HelloWorldShutDown() { std::hash_map<char*, char*>::iterator ihashMap; if(hashMap.size() > 1) { ihashMap = hashMap.find("ShowAt"); s3eSurfaceUnRegister(S3E_SURFACE_SCREENSIZE, HelloWorldRotationCallBack); if(ihashMap->second == "end" || ihashMap->second == "both"){ vservManagerFetchingAdData(); } else if(ihashMap->second == "start"){ s3eDeviceExit(); } } } bool HelloWorldUpdate() { if(s3eKeyboardGetState(s3eKeyBack) & S3E_KEY_STATE_RELEASED) { s3eDebugTraceLine("back check"); std::hash_map<char*, char*>::iterator ihashMap; if(hashMap.size() > 1) { ihashMap = hashMap.find("ShowAt"); if(ihashMap->second == "both"){ vservManagerFetchingAdData(); }else if(ihashMap->second == "end") { vservManagerFetchingAdData(); } else if(ihashMap->second == "start"){ s3eDeviceExit(); return false; } } } if(CheckButtonStatus("Exit") & S3E_KEY_STATE_RELEASED) /*S3E_KEY_STATE_PRESSED)*/ { s3eDebugTraceLine("Exit check"); HelloWorldShutDown(); return false; } return true; } int HelloWorldMain() { HelloWorldInit(); while (!s3eDeviceCheckQuitRequest()) { s3eDeviceYield(0); s3eKeyboardUpdate(); s3ePointerUpdate(); HelloWorldRender(); if(!HelloWorldUpdate()) break; } HelloWorldShutDown(); return 0; } void vservManagerSkipAd() { HelloWorldMain(); } //-------------------------------------------------------------------------- // Main global function //-------------------------------------------------------------------------- int main() { std::hash_map<char*, char*>::iterator ihashMap; hashInit(); vservManagerInit(hashMap); if(hashMap.size() > 1) { ihashMap = hashMap.find("ShowAt"); if(ihashMap->second == "start" || ihashMap->second == "both"){ vservManagerFetchingAdData(); } else{ HelloWorldMain(); } } return 0; }
789d02307f0a9724f52c7039b9a33fec5d18e6a2
95591d830579f86941b746e72dc461326381a9e4
/include/latino/AST/ASTContext.h
d1b69b1045d8521039b10c2500535fe0cf99e9d2
[ "MIT" ]
permissive
MelvinG24/Latino-LLVM
f52aa2a11b1b516fadf0865f02d9a89bd3828126
04ec8a5009531729f3f88e0c39cb26a8e955185e
refs/heads/master
2022-08-04T11:18:25.537345
2022-07-06T14:44:50
2022-07-06T14:44:50
168,049,403
0
0
MIT
2020-10-04T15:42:27
2019-01-28T22:37:09
C++
UTF-8
C++
false
false
918
h
ASTContext.h
//===- ASTContext.h - Context to hold long-lived AST nodes ------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// // /// \file /// Defines the latino::ASTContext interface. // //===----------------------------------------------------------------------===// #ifndef LLVM_LATINO_AST_ASTCONTEXT_H #define LLVM_LATINO_AST_ASTCONTEXT_H #include "latino/AST/Decl.h" #include "latino/AST/DeclBase.h" namespace latino { /// Holds long-lived AST nodes (such as types and decls) that can be /// referred to throughout the semantic analysis of a file. class ASTContext : public RefCountedBase<ASTContext> {}; } // namespace latino #endif // LLVM_LATINO_AST_ASTCONTEXT_
430d11a6625fec801f092be7286821c24e59f4a0
b088ca2a589bad07e728da15af449ea3e73b0a1a
/barbarian.cpp
c0e8ace0b666a72a8f057c7f140276b2350496db
[]
no_license
ohaluminum/COSC1430_Homework7
e08cecfb4009d76b0a68fe529169890865350289
58634b399b82022808945b3de15abbb510101d0e
refs/heads/master
2021-05-23T15:58:34.198765
2020-04-08T20:14:33
2020-04-08T20:14:33
253,371,041
0
0
null
null
null
null
UTF-8
C++
false
false
2,316
cpp
barbarian.cpp
#include <iostream> #include <string> using namespace std; #include "barbarian.h" //Implement constructors Barbarian::Barbarian(string name, string race, int level, int health, int stamina) : Character(name, race, level, health), stamina(stamina) { } //Implement getter functions void Barbarian::SetStamina(int stamina) { this->stamina = stamina; } //Implement setter functions int Barbarian::getStamina() const { return stamina; } /* *A public function "EquipWeapon()" that takes *a string name, int damage, and int staminacost to create a new weapon *and assign it to the barbarian's "activeweapon". */ void Barbarian::EquipWeapon(string name, int damage, int stamina_cost) { active_weapon.name = name; active_weapon.damage = damage; active_weapon.stamina_cost = stamina_cost; } /* *A public function that overloads "Attack()" taking a pointer to a character *and reduce that character's health based on the active_weapon's damage. *The function then prints: *<CHARACTER NAME> attacked <TARGET NAME> with a <WEAPON NAME>, dealing <WEAPON DAMAGE> damage. * *However, if the Barbarian does not have a weapon, prints out: *Barbarian has no weapon! * *If the Barbarian have less stamina than the weapon's stamina_cost, prints out: *Insufficient stamina points! */ void Barbarian::Attack(Character *target) { if (active_weapon.name == "") { cout << "Barbarian has no weapon!" << endl; } else { if (stamina < active_weapon.stamina_cost) { cout << "Insufficient stamina points!" << endl; } else { target->SetHealth(target->getHealth() - active_weapon.damage); stamina -= active_weapon.stamina_cost; cout << getName() << " attacked " << target->getName() << " with a " << active_weapon.name << ", dealing " << active_weapon.damage << " damage." << endl; } } } /* *A public function that overloads"Print()" that prints out the variables in this format: *Character Status : *Name: Bob *Race: Human *Occupation: Barbarian *Level: 10 *Health: 100 *Weapon: Sword */ void Barbarian::Print() { Character::Print(); cout << "Weapon: " << active_weapon.name << endl; cout << "---" << endl; }
da34e5e8f7a4c37129ea95d0be7609b89885ce7a
b3aa033c3ff29d542bcb6a6d72d8cefe51fb0d98
/API_rpi/robot_robocup/to_delete/robot_params.cpp
c92ec340b4ccb12b24cde7f5d1707dd98d3e7e19
[]
no_license
palori/api_swarm_mobile_robot
807d587cd582f4f5b8d303f267ba5e4502ecb25f
e08f20ce8966002868d688c44936062c05211045
refs/heads/master
2020-03-27T08:36:31.333350
2019-07-26T07:29:35
2019-07-26T07:29:35
146,270,430
0
0
null
null
null
null
UTF-8
C++
false
false
3,579
cpp
robot_params.cpp
#include "robot_params.h" #ifndef ITEM // defined (or not) in 'utils.h' Robot_params::Robot_params(){} Robot_params::~Robot_params(){} Robot_params::Robot_params(string hostname, int port_info, int max_len){ set_hostname(hostname); set_port_info(port_info); set_MAX_LEN(max_len); } Robot_params::Robot_params(string hostname, int port_image, int port_task, int port_info, int port_info_robot_a, int port_info_robot_b, int max_len){ set_hostname(hostname); set_port_image(port_image); set_port_task(port_task); set_port_info(port_info); set_port_info_robot_a(port_info_robot_a); set_port_info_robot_b(port_info_robot_b); set_MAX_LEN(max_len); } // Getters int Robot_params::get_MAX_LEN(){return MAX_LEN;} string Robot_params::get_hostname(){return hostname;} int Robot_params::get_port_image(){return port_image;} int Robot_params::get_port_task(){return port_task;} int Robot_params::get_port_info(){return port_info;} int Robot_params::get_port_info_robot_a(){return port_info_robot_a;} int Robot_params::get_port_info_robot_b(){return port_info_robot_b;} vector<float> Robot_params::get_x(){ mtx_x.lock(); vector<float> xm = x; mtx_x.unlock(); return xm; } vector<float> Robot_params::get_y(){ mtx_y.lock(); vector<float> ym = y; mtx_y.unlock(); return ym; } vector<float> Robot_params::get_z(){ mtx_z.lock(); vector<float> zm = z; mtx_z.unlock(); return zm; } vector<float> Robot_params::get_th(){ mtx_th.lock(); vector<float> thm = th; mtx_th.unlock(); return thm; } vector<int> Robot_params::get_tasks(){ mtx_task.lock(); vector<int>taskm = task; mtx_task.unlock(); return taskm; } // tasks_done() ??? // Setters void Robot_params::set_MAX_LEN(int i){MAX_LEN = i;} void Robot_params::set_hostname(string s){hostname = s;} void Robot_params::set_port_image(int i){port_image = i;} void Robot_params::set_port_task(int i){port_task = i;} void Robot_params::set_port_info(int i){port_info = i;} void Robot_params::set_port_info_robot_a(int i){port_info_robot_a = i;} void Robot_params::set_port_info_robot_b(int i){port_info_robot_b = i;} void Robot_params::set_x(float f){ mtx_x.lock(); x = add2vector(x, f, get_MAX_LEN()); mtx_x.unlock(); } void Robot_params::set_y(float f){ mtx_y.lock(); y = add2vector(y, f, get_MAX_LEN()); mtx_y.unlock(); } void Robot_params::set_z(float f){ mtx_z.lock(); z = add2vector(z, f, get_MAX_LEN()); mtx_z.unlock(); } void Robot_params::set_th(float f){ mtx_th.lock(); th = add2vector(th, f, get_MAX_LEN()); mtx_th.unlock(); } void Robot_params::set_task(int i){ mtx_task.lock(); tasks = add2vector(tasks, i, get_MAX_LEN()); mtx_task.unlock(); } #else // ITEM Robot_params::Robot_params(){} Robot_params::~Robot_params(){} Robot_params::Robot_params(string hostname, int port_info, int max_len){ this->hostname.set_noMutex(hostname); this->port_info.set_noMutex(port_info); set_MAX_LEN(max_len); } Robot_params::Robot_params(string hostname, int port_image, int port_task, int port_info, int port_info_robot_a, int port_info_robot_b, int max_len){ this->hostname.set_noMutex(hostname); this->port_image.set_noMutex(port_image); this->port_task.set_noMutex(port_task); this->port_info.set_noMutex(port_info); this->port_info_robot_a.set_noMutex(port_info_robot_a); this->port_info_robot_b.set_noMutex(port_info_robot_b); set_MAX_LEN(max_len); } int Robot_params::get_MAX_LEN(){return MAX_LEN;} void Robot_params::set_MAX_LEN(int i){ MAX_LEN = i; x.set_MAX_LEN(i); y.set_MAX_LEN(i); z.set_MAX_LEN(i); th.set_MAX_LEN(i); tasks.set_MAX_LEN(i); } #endif // ITEM
b0534f55538347ec8f00eb6251dccc9d1438096a
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/multimedia/directx/dmusic/dmscript/dll.cpp
2b5debf4425e38ee854d373234bb1c31c68f6829
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
13,655
cpp
dll.cpp
// // dll.cpp // // Copyright (c) 1999 Microsoft Corporation. All rights reserved. // // Note: Dll entry points as well as class factory implementations. // // READ THIS!!!!!!!!!!!!!!!!!!!!!!!!!!! // // 4530: C++ exception handler used, but unwind semantics are not enabled. Specify -GX // // We disable this because we use exceptions and do *not* specify -GX (USE_NATIVE_EH in // sources). // // The one place we use exceptions is around construction of objects that call // InitializeCriticalSection. We guarantee that it is safe to use in this case with // the restriction given by not using -GX (automatic objects in the call chain between // throw and handler are not destructed). Turning on -GX buys us nothing but +10% to code // size because of the unwind code. // // Any other use of exceptions must follow these restrictions or -GX must be turned on. // // READ THIS!!!!!!!!!!!!!!!!!!!!!!!!!!! // #pragma warning(disable:4530) #include "stdinc.h" #include "oledll.h" #include "dll.h" #include "dmscript.h" #include "track.h" #include "engine.h" #include "autperformance.h" #include "autsegment.h" #include "autsong.h" #include "autsegmentstate.h" #include "autaudiopathconfig.h" #include "autaudiopath.h" #include "dmscriptautguids.h" #include "sourcetext.h" #include "scriptthread.h" ////////////////////////////////////////////////////////////////////// // Globals // Dll's hModule // HMODULE g_hModule = NULL; // Count of active components and class factory server locks // long g_cLock = 0; // Version information for our class // char g_szDMScriptFriendlyName[] = "DirectMusic Script Object"; char g_szDMScriptVerIndProgID[] = "Microsoft.DirectMusicScript"; char g_szDMScriptProgID[] = "Microsoft.DirectMusicScript.1"; char g_szScriptTrackFriendlyName[] = "DirectMusicScriptTrack"; char g_szScriptTrackVerIndProgID[] = "Microsoft.DirectMusicScriptTrack"; char g_szScriptTrackProgID[] = "Microsoft.DirectMusicScriptTrack.1"; char g_szAudioVBScriptFriendlyName[] = "DirectMusic Audio VB Script Language"; char g_szAudioVBScriptVerIndProgID[] = "AudioVBScript"; char g_szAudioVBScriptVerIndProgID_DMScript[] = "AudioVBScript\\DMScript"; char g_szAudioVBScriptProgID[] = "AudioVBScript.1"; char g_szAudioVBScriptProgID_DMScript[] = "AudioVBScript.1\\DMScript"; char g_szDMScriptSourceTextFriendlyName[] = "DirectMusic Script Source Code Loader"; char g_szDMScriptSourceTextVerIndProgID[] = "Microsoft.DirectMusicScripSourceCodeLoader"; char g_szDMScriptSourceTextProgID[] = "Microsoft.DirectMusicScripSourceCodeLoader.1"; char g_szDMScriptAutPerformanceFriendlyName[] = "DirectMusic Script AutoImp Performance"; char g_szDMScriptAutPerformanceVerIndProgID[] = "Microsoft.DirectMusicScriptAutoImpPerformance"; char g_szDMScriptAutPerformanceProgID[] = "Microsoft.DirectMusicScriptAutoImpPerformance.1"; char g_szDMScriptAutSegmentFriendlyName[] = "DirectMusic Script AutoImp Segment"; char g_szDMScriptAutSegmentVerIndProgID[] = "Microsoft.DirectMusicScriptAutoImpSegment"; char g_szDMScriptAutSegmentProgID[] = "Microsoft.DirectMusicScriptAutoImpSegment.1"; char g_szDMScriptAutSongFriendlyName[] = "DirectMusic Script AutoImp Song"; char g_szDMScriptAutSongVerIndProgID[] = "Microsoft.DirectMusicScriptAutoImpSong"; char g_szDMScriptAutSongProgID[] = "Microsoft.DirectMusicScriptAutoImpSong.1"; char g_szDMScriptAutSegmentStateFriendlyName[] = "DirectMusic Script AutoImp SegmentState"; char g_szDMScriptAutSegmentStateVerIndProgID[] = "Microsoft.DirectMusicScriptAutoImpSegmentState"; char g_szDMScriptAutSegmentStateProgID[] = "Microsoft.DirectMusicScriptAutoImpSegmentState.1"; char g_szDMScriptAutAudioPathConfigFriendlyName[] = "DirectMusic Script AutoImp AudioPathConfig"; char g_szDMScriptAutAudioPathConfigVerIndProgID[] = "Microsoft.DirectMusicScriptAutoImpAudioPathConfig"; char g_szDMScriptAutAudioPathConfigProgID[] = "Microsoft.DirectMusicScriptAutoImpAudioPathConfig.1"; char g_szDMScriptAutAudioPathFriendlyName[] = "DirectMusic Script AutoImp AudioPath"; char g_szDMScriptAutAudioPathVerIndProgID[] = "Microsoft.DirectMusicScriptAutoImpAudioPath"; char g_szDMScriptAutAudioPathProgID[] = "Microsoft.DirectMusicScriptAutoImpAudioPath.1"; ////////////////////////////////////////////////////////////////////// // CDMScriptingFactory IUnknown methods HRESULT __stdcall CDMScriptingFactory::QueryInterface(const IID &iid, void **ppv) { V_INAME(CDMScriptingFactory::QueryInterface); V_PTRPTR_WRITE(ppv); V_REFGUID(iid); if (iid == IID_IUnknown || iid == IID_IClassFactory) *ppv = static_cast<IClassFactory*>(this); else { *ppv = NULL; return E_NOINTERFACE; } reinterpret_cast<IUnknown*>(*ppv)->AddRef(); return S_OK; } ULONG __stdcall CDMScriptingFactory::AddRef() { return InterlockedIncrement(&m_cRef); } ULONG __stdcall CDMScriptingFactory::Release() { if (!InterlockedDecrement(&m_cRef)) { delete this; return 0; } return m_cRef; } ////////////////////////////////////////////////////////////////////// // CDMScriptingFactory IClassFactory methods HRESULT __stdcall CDMScriptingFactory::CreateInstance(IUnknown* pUnknownOuter, const IID& iid, void** ppv) { V_INAME(CDMScriptingFactory::CreateInstance); V_INTERFACE_OPT(pUnknownOuter); V_PTR_WRITE(ppv, void*); try { return m_pfnCreate(pUnknownOuter, iid, ppv); } catch( ... ) { return E_OUTOFMEMORY; } return E_NOINTERFACE; } HRESULT __stdcall CDMScriptingFactory::LockServer(BOOL bLock) { LockModule(!!bLock); return S_OK; } ////////////////////////////////////////////////////////////////////// // Dll entry points STDAPI DllCanUnloadNow() { if (g_cLock) return S_FALSE; return S_OK; } STDAPI DllGetClassObject ( const CLSID& clsid, const IID& iid, void** ppv ) { IUnknown* pIUnknown = NULL; PFN_CreateInstance *pfnCreate = NULL; if (clsid == CLSID_DirectMusicScript) { pfnCreate = CDirectMusicScript::CreateInstance; } else if (clsid == CLSID_DirectMusicScriptTrack) { // I couldn't get it to compile if I just used TrackHelpCreateInstance<CDirectMusicScriptTrack> // for the function pointer so I created this function that calls it. struct LocalNonTemplateDeclaration { static HRESULT CreateInstance(IUnknown* pUnknownOuter, const IID& iid, void** ppv) { return TrackHelpCreateInstance<CDirectMusicScriptTrack>(pUnknownOuter, iid, ppv); } }; pfnCreate = LocalNonTemplateDeclaration::CreateInstance; } else if (clsid == CLSID_DirectMusicAudioVBScript) { pfnCreate = CAudioVBScriptEngine::CreateInstance; } else if (clsid == CLSID_DirectMusicSourceText) { pfnCreate = CSourceText::CreateInstance; } else if (clsid == CLSID_AutDirectMusicPerformance) { pfnCreate = CAutDirectMusicPerformance::CreateInstance; } else if (clsid == CLSID_AutDirectMusicSegment) { pfnCreate = CAutDirectMusicSegment::CreateInstance; } else if (clsid == CLSID_AutDirectMusicSong) { pfnCreate = CAutDirectMusicSong::CreateInstance; } else if (clsid == CLSID_AutDirectMusicSegmentState) { pfnCreate = CAutDirectMusicSegmentState::CreateInstance; } else if (clsid == CLSID_AutDirectMusicAudioPathConfig) { pfnCreate = CAutDirectMusicAudioPathConfig::CreateInstance; } else if (clsid == CLSID_AutDirectMusicAudioPath) { pfnCreate = CAutDirectMusicAudioPath::CreateInstance; } if (pfnCreate) { pIUnknown = static_cast<IUnknown*>(new CDMScriptingFactory(pfnCreate)); if(!pIUnknown) return E_OUTOFMEMORY; } else { return CLASS_E_CLASSNOTAVAILABLE; } return pIUnknown->QueryInterface(iid, ppv); } STDAPI DllUnregisterServer() { UnregisterServer( CLSID_DirectMusicScript, g_szDMScriptFriendlyName, g_szDMScriptVerIndProgID, g_szDMScriptProgID); UnregisterServer(CLSID_DirectMusicScriptTrack, g_szScriptTrackFriendlyName, g_szScriptTrackVerIndProgID, g_szScriptTrackProgID); UnregisterServer(CLSID_DirectMusicAudioVBScript, g_szAudioVBScriptFriendlyName, g_szAudioVBScriptVerIndProgID, g_szAudioVBScriptProgID); UnregisterServer( CLSID_DirectMusicSourceText, g_szDMScriptSourceTextFriendlyName, g_szDMScriptSourceTextVerIndProgID, g_szDMScriptSourceTextProgID); UnregisterServer(CLSID_AutDirectMusicPerformance, g_szDMScriptAutPerformanceFriendlyName, g_szDMScriptAutPerformanceVerIndProgID, g_szDMScriptAutPerformanceProgID); UnregisterServer(CLSID_AutDirectMusicSegment, g_szDMScriptAutSegmentFriendlyName, g_szDMScriptAutSegmentVerIndProgID, g_szDMScriptAutSegmentProgID); UnregisterServer(CLSID_AutDirectMusicSong, g_szDMScriptAutSongFriendlyName, g_szDMScriptAutSongVerIndProgID, g_szDMScriptAutSongProgID); UnregisterServer(CLSID_AutDirectMusicSegmentState, g_szDMScriptAutSegmentStateFriendlyName, g_szDMScriptAutSegmentStateVerIndProgID, g_szDMScriptAutSegmentStateProgID); UnregisterServer(CLSID_AutDirectMusicAudioPathConfig, g_szDMScriptAutAudioPathConfigFriendlyName, g_szDMScriptAutAudioPathConfigVerIndProgID, g_szDMScriptAutAudioPathConfigProgID); UnregisterServer(CLSID_AutDirectMusicAudioPath, g_szDMScriptAutAudioPathFriendlyName, g_szDMScriptAutAudioPathVerIndProgID, g_szDMScriptAutAudioPathProgID); return S_OK; } STDAPI DllRegisterServer() { RegisterServer( g_hModule, CLSID_DirectMusicScript, g_szDMScriptFriendlyName, g_szDMScriptVerIndProgID, g_szDMScriptProgID); RegisterServer( g_hModule, CLSID_DirectMusicScriptTrack, g_szScriptTrackFriendlyName, g_szScriptTrackVerIndProgID, g_szScriptTrackProgID); RegisterServer( g_hModule, CLSID_DirectMusicSourceText, g_szDMScriptSourceTextFriendlyName, g_szDMScriptSourceTextVerIndProgID, g_szDMScriptSourceTextProgID); RegisterServer( g_hModule, CLSID_AutDirectMusicPerformance, g_szDMScriptAutPerformanceFriendlyName, g_szDMScriptAutPerformanceVerIndProgID, g_szDMScriptAutPerformanceProgID); RegisterServer( g_hModule, CLSID_AutDirectMusicSegment, g_szDMScriptAutSegmentFriendlyName, g_szDMScriptAutSegmentVerIndProgID, g_szDMScriptAutSegmentProgID); RegisterServer( g_hModule, CLSID_AutDirectMusicSong, g_szDMScriptAutSongFriendlyName, g_szDMScriptAutSongVerIndProgID, g_szDMScriptAutSongProgID); RegisterServer( g_hModule, CLSID_AutDirectMusicSegmentState, g_szDMScriptAutSegmentStateFriendlyName, g_szDMScriptAutSegmentStateVerIndProgID, g_szDMScriptAutSegmentStateProgID); RegisterServer( g_hModule, CLSID_AutDirectMusicAudioPathConfig, g_szDMScriptAutAudioPathConfigFriendlyName, g_szDMScriptAutAudioPathConfigVerIndProgID, g_szDMScriptAutAudioPathConfigProgID); RegisterServer( g_hModule, CLSID_AutDirectMusicAudioPath, g_szDMScriptAutAudioPathFriendlyName, g_szDMScriptAutAudioPathVerIndProgID, g_szDMScriptAutAudioPathProgID); RegisterServer( g_hModule, CLSID_DirectMusicAudioVBScript, g_szAudioVBScriptFriendlyName, g_szAudioVBScriptVerIndProgID, g_szAudioVBScriptProgID); // AudioVBScript also needs an additional DMScript key set to mark it as a custom scripting engine. HKEY hk; if (ERROR_SUCCESS == RegCreateKeyEx( HKEY_CLASSES_ROOT, g_szAudioVBScriptVerIndProgID_DMScript, 0, NULL, 0, KEY_ALL_ACCESS, NULL, &hk, NULL)) RegCloseKey(hk); if (ERROR_SUCCESS == RegCreateKeyEx( HKEY_CLASSES_ROOT, g_szAudioVBScriptProgID_DMScript, 0, NULL, 0, KEY_ALL_ACCESS, NULL, &hk, NULL)) RegCloseKey(hk); return S_OK; } #ifdef DBG static char* aszReasons[] = { "DLL_PROCESS_DETACH", "DLL_PROCESS_ATTACH", "DLL_THREAD_ATTACH", "DLL_THREAD_DETACH" }; const DWORD nReasons = (sizeof(aszReasons) / sizeof(char*)); #endif BOOL APIENTRY DllMain ( HINSTANCE hModule, DWORD dwReason, void *lpReserved ) { static int nReferenceCount = 0; #ifdef DBG if (dwReason < nReasons) { Trace(1, "DllMain: %s\n", (LPSTR)aszReasons[dwReason]); } else { Trace(1, "DllMain: Unknown dwReason <%u>\n", dwReason); } #endif switch (dwReason) { case DLL_PROCESS_ATTACH: if (++nReferenceCount == 1) { #ifdef DBG DebugInit(); #endif if (!DisableThreadLibraryCalls(hModule)) { Trace(1, "DisableThreadLibraryCalls failed.\n"); } g_hModule = hModule; } break; case DLL_PROCESS_DETACH: if (--nReferenceCount == 0) { Trace(1, "Unloading\n"); // Assert if we still have some objects hanging around assert(g_cLock == 0); } break; } return TRUE; } ////////////////////////////////////////////////////////////////////// // Global Functions void LockModule(bool fLock) { if (fLock) { InterlockedIncrement(&g_cLock); } else { if (!InterlockedDecrement(&g_cLock)) { // Clean up the shared thread used to talk to VBScript. Needs to be done before the .dll could be unloaded, // which otherwise would make for problems because the thread could keep running while the .dll's address // space becomes invalid. CSingleThreadedScriptManager::TerminateThread(); } } } long *GetModuleLockCounter() { return &g_cLock; }
ba5deca3d3312783bb7325452ec3bfcde1cf1804
ad7fe8aa8961d65e2f450267ed211789bc39ad90
/Number Theory/1259 - Goldbach`s Conjecture.cpp
1d8f4bca20e461bc67cb0ac852374a0f43560917
[]
no_license
Md-Johaer-Plabon/LightOj-Solution
f2d0f77722f418a02dcd50e77e6b61f82b4f7c0c
646f3c8ec42fbcc100da666fb335b0b9f49fe558
refs/heads/master
2022-07-17T11:44:03.744664
2022-06-12T06:37:46
2022-06-12T06:37:46
247,993,121
1
0
null
null
null
null
UTF-8
C++
false
false
1,065
cpp
1259 - Goldbach`s Conjecture.cpp
#include <iostream> #include <cstring> #include <cmath> #include <cstdio> #include <vector> using namespace std; bool save [10000000]; vector <int> result; void sievePrime (void) { memset(save, true , sizeof(save)); save[0]= false; save[1]= false; int temp=(int)((sqrt(10000000))+1.0); for(int i=4;i<10000000; i+=2) save[i]= false; for(int i=3;i<temp; i+=2) { if(save[i]==true) { for(int j=i*i; j<10000000; j+=i) save[j]=false; } } for(int i=2; i<10000000; i++) { if(save[i]==true) result.push_back(i); } } int main (void) { sievePrime(); int test; scanf("%d", &test); for(int a=1; a<=test; a++) { int temp; scanf("%d", &temp); int flag=result.size(); int counter=0; int atto = temp/2; for(int i=0; i<flag; i++) { if(result[i]>atto) break; if(save[temp-result[i]]==true) counter++; } printf("Case %d: %d\n", a, counter); } return 0; }
01f4dfe8ff807e39077e64f2b9d7dc451df8ca03
91d840c2fd7088c134f23d2a0b213ce7eb88cdd6
/include/WorldState.h
410ed2e5ad5e07bb3c47c52a860293d1d6e35470
[]
no_license
alanrostin/space-invaders
103fabf410ba82c96a2b1effeb22c3631c313ed1
53f2df77cbf03f94f0ff8717823a1811f0520d53
refs/heads/master
2023-06-21T07:23:56.381612
2021-07-25T14:28:06
2021-07-25T14:28:06
383,352,542
0
0
null
null
null
null
UTF-8
C++
false
false
283
h
WorldState.h
#pragma once class WorldState { public: static const int WORLD_WIDTH = 100; static int WORLD_HEIGHT; static int SCORE; static int LIVES; static int NUM_INVADERS_AT_START; static int NUM_INVADERS; static int WAVE_NUMBER; };
c5b83de74311f283f3761cac8f5fc220652e6d68
b5ad515e746e9ea8aca17a1446d93c197718c331
/structural/nullobject/nullobject.cpp
115aca21426d85709bd2338559a12c196a5757fa
[ "MIT" ]
permissive
stefanpantic/cpp-design-patterns
9d18cf10527752d2c25af2b14bfb19b6bf1063b6
887f9ddebbb99a773ba132c6298fee37eec25609
refs/heads/main
2023-02-21T07:40:25.043141
2021-01-19T20:01:41
2021-01-19T20:01:41
329,735,647
5
1
null
null
null
null
UTF-8
C++
false
false
1,687
cpp
nullobject.cpp
#include <iostream> #include <memory> #include <string> struct ILogger { virtual ~ILogger() = default; virtual void info(const std::string& msg) = 0; virtual void warn(const std::string& msg) = 0; }; struct BankAccount { std::shared_ptr<ILogger> logger; std::string name; float balance; explicit BankAccount(std::shared_ptr<ILogger> logger, std::string name, float balance = 0) : logger{std::move(logger)}, name{std::move(name)}, balance{balance} {} void deposit(const float amount) { balance += amount; logger->info("Deposited " + std::to_string(balance) + ". Balance is now $" + std::to_string(balance)); } void draw(const float amount) { if(balance >= amount) { balance -= amount; logger->info("Withdrew $" + std::to_string(amount) + ". Balance is now $" + std::to_string(balance)); } else { logger->warn("Not enough money to withdraw $" + std::to_string(amount) + ". Balance is $" + std::to_string(balance)); } } }; struct ConsoleLogger : public ILogger { void info(const std::string& msg) override { std::cout << "[INFO]" << msg << std::endl; } void warn(const std::string& msg) override { std::cout << "[WARN]" << msg << std::endl; } }; struct NullLogger : public ILogger { void info(const std::string&) override {} void warn(const std::string&) override {} }; int main() { auto logger{std::make_shared<ConsoleLogger>()}; BankAccount ba{logger, "Mark's Account", 100000}; ba.draw(10000); ba.draw(100000); ba.draw(1000000); auto nulllogger{std::make_shared<NullLogger>()}; BankAccount nlba{nulllogger, "Mark's Account", 12300}; nlba.draw(10000); nlba.draw(100000); nlba.draw(1000000); return 0; }
bf30dec1741d014b09edc0fbe35db435dc27c970
e6559df51c2a14256962c3757073a491ea66de7c
/URI/2627 - Bonde de Autômatos.cpp
136a42834572ec5ddebabafd15a55baa30d17a41
[]
no_license
Maycon708/Maratona
c30eaedc3ee39d69582b0ed1a60f31ad8d666d43
b6d07582544c230e67c23a20e1a1be99d4b47576
refs/heads/master
2020-04-25T23:37:53.992330
2019-02-28T17:10:25
2019-02-28T17:10:25
143,191,679
0
0
null
null
null
null
UTF-8
C++
false
false
1,188
cpp
2627 - Bonde de Autômatos.cpp
#include <bits/stdc++.h> #define INF 1LL << 30 #define rep(i, a, b) for(int i = int(a); i < int(b); i++) #define pb push_back #define debug(x) cout << #x << " = " << x << endl; #define debug2(x,y) cout << #x << " = " << x << " --- " << #y << " = " << y << "\n"; #define debugM( x, l, c ) { rep( i, 0, l ){ rep( j, 0, c ) cout << x[i][j] << " "; printf("\n");}} #define all(S) (S).begin(), (S).end() #define F first #define S second #define mk make_pair #define N 250000 #define FOR(i,a,b) rep(i,a,b+1) #define SET(c,v) memset(c, v, sizeof c); using namespace std; typedef long long int ll; typedef pair <ll, ll> ii; int bit[30]; void update( int x, int v ){ for( int i = x; i < 30; i += (i&-i) ){ bit[i] = max( bit[i], v ); } } int query( int x ){ int ans = 0; for( int i = x; i > 0; i -= (i&-i) ){ ans = max( bit[i], ans ); } return ans; } int main(){ int n, k; char s[N]; while( scanf("%d%d", &n, &k ) != EOF ){ SET(bit, 0); scanf("%s", s ); int ans = 0; rep( i, 0, n ){ int p = s[i]-'a'+1; int a = 'z' - s[i] + 1; int b = query(p); update( p, a + b ); ans = max( ans, a + b ); } printf("%s\n", ans >= k ? "Aceita" : "Rejeita" ); } }
4a06b8f11311cf9991214c1be857c8f5390edafe
f80d19d58816c14cf51b6457d017ccb1b01918ea
/src/renderEngine/masterrenderer.cpp
591a063094b8de90e52847376ae861d34c074677
[]
no_license
piochelepiotr/minecraftClone
378a277d88d35ab36f1ef517598800b99355e6c5
c4389f5f4f7a8164658e7943050119a0508dcd00
refs/heads/master
2021-05-11T02:53:44.298323
2018-11-03T02:24:20
2018-11-03T02:24:20
117,897,006
0
1
null
null
null
null
UTF-8
C++
false
false
2,565
cpp
masterrenderer.cpp
#include "masterrenderer.h" #include <iostream> const float MasterRenderer::m_fov = 50; const float MasterRenderer::m_farPlane = 1000; const float MasterRenderer::m_nearPlane = 0.1; const glm::vec3 MasterRenderer::m_skyColour = glm::vec3(5.0/256.0, 189.0/256.0, 206.0/256.0); MasterRenderer::MasterRenderer(int width, int height, Loader *loader) : m_width(width), m_height(height) { //glEnable(GL_CULL_FACE); //glCullFace(GL_BACK); createProjectionMatrix(); m_entityShader = new StaticShader(); m_terrainShader = new TerrainShader(); m_entityRenderer = new EntityRenderer(m_entityShader, m_projectionMatrix); m_terrainRenderer = new TerrainRenderer(m_terrainShader, m_projectionMatrix); m_guiRenderer = new GuiRenderer(loader); } MasterRenderer::~MasterRenderer() { delete m_entityShader; delete m_terrainShader; delete m_entityRenderer; delete m_terrainRenderer; delete m_guiRenderer; } void MasterRenderer::render(Camera const& camera) { prepare(); m_entityShader->start(); m_entityShader->loadSkyColour(m_skyColour); m_entityShader->loadViewMatrix(camera); m_entityRenderer->render(m_entities); m_entityShader->stop(); m_entities.clear(); m_terrainShader->start(); m_terrainShader->loadSkyColour(m_skyColour); m_terrainShader->loadViewMatrix(camera); m_terrainRenderer->render(m_terrains); m_terrainShader->stop(); m_terrains.clear(); m_guiRenderer->render(m_guis); m_guis.clear(); } void MasterRenderer::processEntity(Entity *entity) { TexturedModel *texturedModel = entity->getmodel(); if(m_entities.find(texturedModel) == m_entities.end()) { std::vector<Entity*> tab; m_entities[texturedModel] = tab; } m_entities[texturedModel].push_back(entity); } void MasterRenderer::processEntities(std::vector<Entity *> const& entities) { for(auto & entity : entities) { processEntity(entity); } } void MasterRenderer::processTerrain(Terrain *terrain) { m_terrains.push_back(terrain); } void MasterRenderer::processGui(GuiTexture* gui) { m_guis.push_back(gui); } void MasterRenderer::prepare() { glClearColor(m_skyColour.r, m_skyColour.g, m_skyColour.b, 1.0); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); } void MasterRenderer::createProjectionMatrix() { m_projectionMatrix = glm::perspective(glm::radians(m_fov), (float) m_width / m_height, m_nearPlane, m_farPlane); } glm::mat4 MasterRenderer::projectionMatrix() const { return m_projectionMatrix; }
2aae3d172304e64e620c8364c03efaaa6f8dc1df
38f33c1488be4cf7318b34506f0a2b4a0e9c3d0e
/Engine/Core/src/Core/Containers/BitField.h
19c5a941a1f014dd067ec4eb3161814706187d12
[]
no_license
kladarak/HighGarden
0976db50bc3c97c53010a665a06913556f1e977d
8ca03c7560f20f83517903a153689c457b7645bc
refs/heads/master
2021-01-10T08:28:30.998762
2015-06-21T04:19:27
2015-06-21T04:19:27
36,961,803
2
0
null
null
null
null
UTF-8
C++
false
false
676
h
BitField.h
#pragma once #include <stdint.h> #include <vector> class BitField { public: BitField() : mBits() { } BitField(const BitField& inRHS) : mBits( inRHS.mBits ) { } BitField(BitField&& inRHS) : mBits( std::move(inRHS.mBits) ) { } void Set(uint32_t inBit); void Clear(uint32_t inBit); bool Get(uint32_t inBit) const; uint32_t NumBits() const; private: enum { BITS_PER_ELEM = sizeof(uint32_t) * 8 }; struct Bit { Bit (uint32_t inBit) : mIndex (inBit / BITS_PER_ELEM) , mBitMask (1u << (inBit % BITS_PER_ELEM)) { } uint32_t mIndex; uint32_t mBitMask; }; void EnsureCapacity(const Bit& inBit); std::vector<uint32_t> mBits; };
6ab7e51614a9d940bc5708ed9b348de6bf6026d2
6f8885e0a5e7f5cc6c04d5f6dcb2221e691ee84d
/T1/P2/Knapsack.cpp
1b1652a4da5dc0e1819f39800b189b0718fda44b
[]
no_license
Busson/puc-rio.paa-2017.1-poggi
d49b2d816a3ba1d291582770dbcdc1b0ba4e8af6
3b4422be6aa49a32cb04d7dbe07d55231a68194a
refs/heads/master
2021-01-23T02:29:21.183010
2017-07-12T17:16:16
2017-07-12T17:16:16
85,997,230
3
1
null
null
null
null
UTF-8
C++
false
false
14,844
cpp
Knapsack.cpp
#include <assert.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include <glib.h> #include "cpu_timer/CPUTimer.h" static CPUTimer totalTimer_; static int numberItems_ = -1; static int knapsackSize_ = -1; static bool fractionItem_ = false; struct item { unsigned int id; int value; int weight; float rate; //rate between value and weight. float fractionItem; }; struct knapsack { int numberItems; int weightItems; float valueItems; struct item *items; }; struct knapsack *fillKnapsack (struct item *items, int length, int max) { float valueItems = 0; int weightItems = 0; int count = 0; struct knapsack *knapsack = (struct knapsack *) malloc (sizeof (struct knapsack)); knapsack->items = (struct item *) malloc(sizeof(struct item)); for(int i = 0; i < length; i++) /// 0(n) { if(items[i].weight > max) { knapsack->items = (struct item *) realloc (knapsack->items, sizeof (struct item) * (count+1)); knapsack->items[count].id = items[i].id; knapsack->items[count].fractionItem = (float) max / items[i].weight; valueItems += (float) items[i].value * max / items[i].weight; weightItems += max; count++; fractionItem_ = true; break; } knapsack->items = (struct item *) realloc ( knapsack->items, sizeof (struct item) * (count+1)); knapsack->items[count].id = items[i].id; knapsack->items[count].fractionItem = items[i].fractionItem; valueItems += (float) items[i].value; weightItems += items[i].weight; count++; max = max - items[i].weight; if (max == 0) { break; } } knapsack->numberItems = count; knapsack->valueItems = valueItems; knapsack->weightItems = weightItems; return knapsack; } void heapifyRateMin (struct item *a, int len, int index) /// O(log n) { int left = 2 * index + 1; int right = 2 * index + 2; struct item aux; if (left > len - 1) { return; } else if (right == len) { if (a[index].rate > a[left].rate) { //swap left with parent aux = a[index]; a[index] = a[left]; a[left] = aux; } return; } else if (a[index].rate > a[left].rate || a[index].rate > a[right].rate) { if (a[left].rate > a[right].rate) { //swap right with parent aux = a[index]; a[index] = a[right]; a[right] = aux; heapifyRateMin (a,len,right); } else { //swap left with parent aux = a[index]; a[index] = a[left]; a[left] = aux; heapifyRateMin (a,len,left); } } } void heapifyRateMax (struct item *a, int len, int index) /// O(log n) { int left = 2 * index + 1; int right = 2 * index + 2; struct item aux; if (left > len-1) { return; } else if (right==len) { if (a[index].rate < a[left].rate) { //swap left with parent aux = a[index]; a[index] = a[left]; a[left] = aux; } return; } else if (a[index].rate < a[left].rate || a[index].rate < a[right].rate) { if (a[left].rate < a[right].rate) { //swap right with parent aux = a[index]; a[index] = a[right]; a[right] = aux; heapifyRateMax (a,len,right); } else { //swap left with parent aux = a[index]; a[index] = a[left]; a[left] = aux; heapifyRateMax (a,len,left); } } } void buildHeapRate (struct item *a, int length, bool asc) /// O(n) { int i; if (asc) { for (i = length - 1; i >= 0; i--) { if ( 2 * i + 1 > length - 1) { continue; } heapifyRateMax (a,length,i); } } else { for (i = length - 1; i>= 0; i--) { if (2 * i + 1 > length - 1) { continue; } heapifyRateMin (a,length,i); } } return; } void heapsortRate (struct item *list, int length, bool asc) /// O(nlog n) { struct item aux; int cunrrentLength = length; buildHeapRate (list,length,asc); if (asc) { //Ordem crescente. while (cunrrentLength > 1) { //swap first with last aux = list[0]; list[0] = list[cunrrentLength - 1]; list[cunrrentLength - 1] = aux; cunrrentLength--; //heapify new heap heapifyRateMax (list,cunrrentLength,0); } } else { //Ordem decrescente. while (cunrrentLength > 1) { //swap first with last aux = list[0]; list[0] = list[cunrrentLength - 1]; list[cunrrentLength-1] = aux; cunrrentLength--; //heapify new heap heapifyRateMin (list,cunrrentLength,0); } } return; } int median (int left, int right, struct item *items) { struct item aux; for (int i = left; i <= right; i++) { for (int j = left; j <= right; j++) { if (items[i].rate > items[j].rate) { aux = items[i]; items[i] = items[j]; items[j] = aux; } } } int middle = left + ((right - left) / 2); return middle; } int medianOfMedians (struct item *items, int start, int end) { if(end - start < 5) { return median (start, end, items); } struct item aux; for (int i = 0; i < (end + 1)/5; i++) { int left = 5 * i; int right = left + 4; if (right > end) { right = end; } int index = median (left, right, items); aux = items[index]; items[index] = items[i]; items[i] = aux; } return medianOfMedians (items, 0, end/5); } int partition (struct item *items, int left, int right) { int n = right + 1 - left; struct item *auxItems = (struct item *) malloc (sizeof (struct item) * n); int auxIndex[n]; for (int i = 0; i < n; i++) { auxItems[i].rate = items[left+i].rate; auxIndex[i] = left + i; } int indexMedian = medianOfMedians (auxItems, 0, n-1); int median = auxIndex[indexMedian]; float pivot = items[median].rate; int posPivot = median; int i = left; int j = right; struct item aux; while (1) { for(; items[i].rate >= pivot && i <= right; i++); for(; items[j].rate < pivot && j >= left; j--); if (i < j) { if (items[j].rate == pivot) { posPivot = i; } aux = items[i]; items[i] = items[j]; items[j] = aux; } else { aux = items[posPivot]; items[posPivot] = items[j]; items[j] = aux; return j; } } } int kesimo (struct item *items, int left, int right, int usedWeight) { int middle = partition (items, left, right); //Finding the middle item. int sum = usedWeight; for (int i = left; i <= middle; i++) { sum += items[i].weight; } if (sum == knapsackSize_ || middle >= numberItems_ -1) { return middle; } else if ( (sum > knapsackSize_) && (sum - items[middle].weight <= knapsackSize_) ) { return middle; } else if (sum > knapsackSize_) { return kesimo (items, left, middle - 1, usedWeight); } else { return kesimo (items, middle+1, right, sum); } } float findPivot (struct item *items, int start, int end) { int k = end + 1 - start; float pivot = 0; for (int i = start; i <= end; i++){ pivot += items[i].rate; } return (pivot/k); } int partitionPivot (struct item *items, int left, int right) { float pivot = findPivot (items, left, right); int posPivot = -1; int i = left; int j = right; struct item aux; while (1) { for (; items[i].rate >= pivot && i <= right; i++); for (; items[j].rate < pivot && j >= left; j--); if (i < j) { if (items[j].rate == pivot) { posPivot = i; } aux = items[i]; items[i] = items[j]; items[j] = aux; } else { if (posPivot == -1){ posPivot = left; for (int z = left; z <= j; z++) { if(items[posPivot].rate > items[z].rate) posPivot = z; } } aux = items[posPivot]; items[posPivot] = items[j]; items[j] = aux; return j; } } } int kesimoPivot (struct item *items, int left, int right, int usedWeight) { int middle = partitionPivot (items, left, right); int sum = usedWeight; for (int i = left; i <= middle; i++) { sum += items[i].weight; } if (sum == knapsackSize_ || middle >= numberItems_-1) { return middle; } else if ( (sum > knapsackSize_) && (sum - items[middle].weight <= knapsackSize_) ) { return middle; } else if (sum > knapsackSize_) { return kesimoPivot (items, left, middle-1, usedWeight); } else { return kesimoPivot (items, middle+1, right, sum); } } void detailItens (struct item *a, int length) { printf ("Total de Objetos: %d; Capacidade da Mochila: %d\n", numberItems_, knapsackSize_); int totalWeight = 0; int totalProfit = 0; for (int i = 0; i < length; i++) { printf ("Line %d: ", i + 2); printf ("Id: %d ; ", a[i].id); printf ("Value: %d ; ", a[i].value); printf ("Weight: %d ; ", a[i].weight); //printf ("Fraction: %f ;", a[i].fractionItem); printf ("Rate: %f ;", a[i].rate); printf ("\n"); totalWeight += a[i].weight; totalProfit += a[i].value; } printf ("\nTotal de objetos: %d; Peso total: %d; Lucro total: %d\n\n",length,totalWeight,totalProfit); } void showItens (struct knapsack *knapsack, FILE *file) /// O(n) { printf ("\nQuantidade de itens (N): %d\n", numberItems_); printf ("Quantidade de itens na mochila: %d\nPeso Total dos Itens na mochila: %d\nValor Total dos Itens na mochila: %f\n\n", knapsack->numberItems, knapsack->weightItems, knapsack->valueItems); /*for (int i = 0; i < knapsack->numberItems; i++) //Print Itens { printf ("Id: %d; Quantidade: %f %%;\n", knapsack->items[i].id, knapsack->items[i].fractionItem*100); }*/ fprintf (file,"Quantidade de itens (N): %d\n", numberItems_); fprintf (file,"Quantidade de itens na mochila: %d\nPeso Total dos Itens na mochila: %d\nValor Total dos Itens na mochila: %f\n\n", knapsack->numberItems, knapsack->weightItems, knapsack->valueItems); for (int i = 0; i < knapsack->numberItems; i++) { fprintf(file,"Id: %d; Quantidade: %f %%;\n", knapsack->items[i].id, knapsack->items[i].fractionItem*100); } /*if(fractionItem_){ printf ("\nHá um item fracionado.\n"); fprintf(file,"\nHá um item fracionado.\n"); return; } printf ("\nTodos os itens estão inteiros.\n"); fprintf(file,"\nTodos os itens estão inteiros.\n");*/ } struct knapsack *sortKnapsackFractional (struct item *items, int length, int max) /// O(nlog n) { heapsortRate (items,length,false); /// O(nlog n) //detailItens (items, numberItens_); return fillKnapsack (items, length, max); } struct knapsack *linearKnapsackFractional (struct item *items, int length, int max) /// O(n) { kesimo (items, 0, numberItems_-1, 0); /// O(n) //detailItens (items, numberItens_); return fillKnapsack (items, length, max); } struct knapsack *pivotKnapsackFractional (struct item *items, int length, int max) /// O(n²) { kesimoPivot (items, 0, numberItems_-1, 0); /// O(n²) //detailItens (items, numberItens_); return fillKnapsack (items, length, max); } struct item *duplicateItems (struct item *items) { struct item *auxItems = (struct item *) malloc (sizeof (struct item) * numberItems_); for (int i = 0; i < numberItems_; i++) { auxItems[i].id = items[i].id; auxItems[i].value = items[i].value; auxItems[i].weight = items[i].weight; auxItems[i].rate = items[i].rate; auxItems[i].fractionItem = items[i].fractionItem; } return auxItems; } struct item *loadItems (FILE *file) ///O(n) { char line[1000]; char *result; char *pch; int i = 0; int j = 0; result = fgets(line, 1000, file); //Get the first line. sscanf(result, "%d", &numberItems_); struct item *items = (struct item *) malloc (sizeof (struct item) * numberItems_); //Instantiate itens struct. while (!feof (file)) ///O(n) { result = fgets(line, 1000, file); //Get the next line. pch = strtok(result," "); j = 0; while (pch != NULL) //Get the next string. { if (strpbrk(pch, "0123456789") == NULL) //Checking whether the string contains some number. { //printf("String: %s\n",pch); } else if ( i >= numberItems_ ) //Get the last line. { knapsackSize_ = atoi (pch); //Assign capacity to Knapsack. } else { switch (j) { case 0: //First string in the line. items[i].id = atoi(pch); //Assign id to item. items[i].fractionItem = 1; break; case 1: //Second string in the line. items[i].value = atoi(pch); //Assign value to item. break; case 2: //Third string in the line. items[i].weight = atoi(pch); //Assign weight to item. items[i].rate = (float)items[i].value/items[i].weight; //Assign rate (value/weight) to item. break; default: break; } j++; } pch = strtok (NULL," "); } i++; } //detailItens (items, numberItems_); return items; } int main (int argc, char **argv) { if (argc == 1) { printf ("Programa sem parametros\n"); return 0; } FILE *fileIn = fopen (argv[1], "r"); // Input file. if (fileIn == NULL) { printf ("Erro, nao foi possivel abrir o arquivo de entrada\n"); return 0; } struct item *baseItems = loadItems (fileIn); // Load instances. // O(n) fclose (fileIn); FILE *fileOut = fopen ("Output.txt", "w"); // Output file. if (fileOut == NULL) { printf ("Erro, nao foi possivel criar o arquivo de saída\n"); abort (); } int select = atoi (argv[2]); struct item *items; struct knapsack *knapsackItens; guint32 k = 1; totalTimer_.reset(); while (totalTimer_.getCPUTotalSecs () < 5) { totalTimer_.start(); items = duplicateItems (baseItems); switch ( select ) // Select question. { case 1: // O(nlog n) knapsackItens = sortKnapsackFractional (items, numberItems_, knapsackSize_); break; case 2: // O(n) knapsackItens = linearKnapsackFractional (items, numberItems_, knapsackSize_); break; case 3: // O(n²) knapsackItens = pivotKnapsackFractional (items, numberItems_, knapsackSize_); break; default: printf ("Questao invalida\n"); break; } totalTimer_.stop(); k++; } showItens (knapsackItens,fileOut); //printf (">>>>> Depois de Ordenado: \n"); //detailItens (items, numberItems_); fclose (fileOut); printf("Time: %f\nk=%d total: %lf\n\n", totalTimer_.getCPUTotalSecs()/k, k, totalTimer_.getCPUTotalSecs() ); return 0; }
93a7669471ea891fe574f4377593d93ec143b591
8e698ee0bf7007b4a3426e830aae690539d9ef24
/Engine/Box.cpp
71873adf7fe08f78379d411cf86104fcb20ae6a9
[]
no_license
bhavyaprashant/bhavya-ets
79000f43d483e25eb9c3d680c1a5da8a6bc73a75
3bd0e0b9ad5e1558c315e65785dbd872fed3dc62
refs/heads/master
2020-07-23T23:47:05.129316
2019-09-11T06:45:28
2019-09-11T06:45:28
207,742,017
0
0
null
null
null
null
UTF-8
C++
false
false
1,170
cpp
Box.cpp
#include "Box.h" Box::Box(int x, int y) { this->x = x; this->y = y; } void Box::Draw(Graphics& gfx) const { gfx.DrawRectDim(x, y, side, side, c); } void Box::BoxCollision(const Dude& dude) { const int dudeRight = dude.GetX() + dude.GetWidth(); //const int dudeRight = dude.GetX() + Dude::GetWidth(); // This can also be used instead of above statement. const int dudeBottom = dude.GetY() + dude.GetHeight(); //const int dudeBottom = dude.GetY() + Dude::GetHeight(); // This can also be used instead of above statement. const int right = x + side; const int bottom = y + side; if (dude.GetX() <= right && dudeRight >= x && dude.GetY() <= bottom && dudeBottom >= y) isCollided = true; } bool Box::IsCollided() const { return isCollided; } void Box::ChangePosition(int x, int y) { this->x = x; this->y = y; isCollided = false; } void Box::UpdateColor() { if (colorIncreasing) { if (c.GetR() >= 253) { colorIncreasing = false; } else { c = Color(c.GetR() + 2, c.GetG() + 4, c.GetB() + 4); } } else { if (c.GetR() <= 127) { colorIncreasing = true; } else { c = Color(c.GetR() - 2, c.GetG() - 4, c.GetB() - 4); } } }
7596f169928264d98c5a11d2997220cadab71288
bde4d419ec0d9bf3e53e8661c2272de34ec72566
/OpenFlow/Messages/OxmTLV.cpp
130657a0b936540049ece9e435de4872ed42ef9e
[ "BSD-3-Clause" ]
permissive
arnolmi/ROX
0794606f13c923eef8e794249426c7a42a31766b
96e585ea8072cc7c00c011eba14959c25948fdb0
refs/heads/master
2020-12-13T23:37:06.925969
2017-06-11T22:20:31
2017-06-11T22:20:31
53,295,720
0
1
null
null
null
null
UTF-8
C++
false
false
1,521
cpp
OxmTLV.cpp
#include "OxmTLV.h" #include <arpa/inet.h> namespace OpenFlow { namespace Messages { OxmTLV::OxmTLV(uint8_t *p_) : p(p_) { } OxmTLV::OxmTLV(OxmTLV const &decoder) { } uint16_t OxmTLV::getOxmClass() { return ntohs(p[0]); } void OxmTLV::setOxmClass(uint16_t v) { *(uint16_t*)p = htons(v); } uint8_t OxmTLV::getOxmField() { return p[2] >> 1; } void OxmTLV::setOxmField(uint8_t v) { uint8_t temp = v << 1; *(p+2) = temp; } uint8_t OxmTLV::getOxmLength() { return p[3]; } void OxmTLV::setOxmLength(uint8_t v) { *(p+3) = v; } void OxmTLV::setOxmValue(uint64_t v, uint32_t len) { switch(len) { case 1: *(uint8_t*)(p+4) = v; break; case 2: *(uint16_t*)(p+4) = htons(v); break; case 4: *(uint32_t*)(p+4) = htonl(v); break; case 6: uint8_t* temp = (uint8_t*)&v; for(uint32_t n = 0; n<6; n++) { *(uint8_t*)(p+ 4 + n) = temp[5 - n]; } break; } } } }
1069bd5e59db2c8a5322206b2f7c828467ce61c6
8219fe200a9819e9c7d1e4845ed30a48886b61e9
/databasemanager.h
3a628078396b516269bb8a6146b6613c3c0a199c
[]
no_license
tonycool7/masters_diploma
37d9814183712a5d0ad6a7f85102b9eae22afe32
d7b8cde73060da87779db49db37a870666e3141c
refs/heads/master
2021-01-19T13:13:00.663627
2017-05-25T22:22:00
2017-05-25T22:22:00
88,074,728
0
0
null
null
null
null
UTF-8
C++
false
false
2,155
h
databasemanager.h
#ifndef DATABASEMANAGER_H #define DATABASEMANAGER_H #include <QDialog> #include <iostream> #include <QTreeView> #include <QMessageBox> #include <QStandardItemModel> #include <QItemSelectionModel> #include <QCheckBox> #include <boost/scoped_ptr.hpp> #include <driver/mysql_public_iface.h> #include <mysql_connection.h> #include <stdlib.h> #include <cppconn/driver.h> #include <cppconn/exception.h> #include <cppconn/resultset.h> #include <cppconn/statement.h> #include "databasecontainer.h" #include <signal.h> #include <pqxx/pqxx> #include <QFile> #include <QProcess> #include <QTextStream> #include <QDir> #include <QDateTime> #include <QDate> #include "sshmanager.h" using namespace std; namespace Ui { class DatabaseManager; } class DatabaseManager : public QDialog { Q_OBJECT public: explicit DatabaseManager(QWidget *parent = 0); void displayDatabases(node<QString> *head); ~DatabaseManager(); void setUsername(QString username_val); void setPassword(QString password_val); void setHost(QString host_val); QString getUsername(); QString getPassword(); QString getHost(); QStringList databaseList; virtual QString folderName() = 0; virtual void executeBackup(int option, databasecontainer<QString> *selected) = 0; QString convertVectorToString(QVector<QString> data); protected: Ui::DatabaseManager *ui; QStandardItemModel *StandardModel; QStandardItem *ContainerRootNode; QStandardItemModel *StandardModel2; QStandardItem *ContainerRootNode2; databasecontainer<QString> *dbContainer; node<QString> *containerHead; QMessageBox *msg; QString host; QString password; QString username; bool remote_backup; sshManager *ssh; protected slots: virtual void connectToServer(QString host_val, QString username_val, QString password_val) = 0; virtual void testConnection(QString host_val, QString username_val, QString password_val) = 0; void displayDatabaseSelections(const QModelIndex &index); virtual void backupDatabases() = 0; virtual void storeInRemoteBackupFolder(bool value) = 0; }; #endif // DATABASEMANAGER_H
364233c34cde81a51dbd8c0568d95d9864c382e5
1be9e3ffb11e9fa71b55a94154d57bd26a1bdde6
/include/caffe/layers/permutation_layer.hpp
55d5f4f59a1bf4e9f00aecb6b59a1522d6a3e7d8
[ "LicenseRef-scancode-generic-cla", "BSD-2-Clause", "BSD-3-Clause", "LicenseRef-scancode-public-domain" ]
permissive
HUJI-Deep/caffe-simnets
0bdded4c15e72793d54daba08f1457a223ea1166
de7fe152e2130df29c059e07081eae61d57055de
refs/heads/master
2021-01-10T22:55:51.348803
2016-11-23T07:20:44
2016-11-23T07:20:44
70,462,744
15
3
null
null
null
null
UTF-8
C++
false
false
2,025
hpp
permutation_layer.hpp
#ifndef CAFFE_PERMUTATION_LAYER_HPP_ #define CAFFE_PERMUTATION_LAYER_HPP_ #include <vector> #include "caffe/blob.hpp" #include "caffe/layer.hpp" #include "caffe/proto/caffe.pb.h" namespace caffe { /** * @brief Permutes the image pixels acording to the scheme specified. * * */ template <typename Dtype> class PermutationLayer : public Layer<Dtype> { public: explicit PermutationLayer(const LayerParameter& param) : Layer<Dtype>(param) {} virtual void LayerSetUp(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top); virtual void Reshape(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top); virtual inline const char* type() const { return "Permutation"; } virtual inline int MinBottomBlobs() const { return 1; } virtual inline int MinTopBlobs() const { return 1; } virtual inline bool EqualNumBottomTopBlobs() const { return true; } protected: virtual void Forward_cpu(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top); // virtual void Forward_gpu(const vector<Blob<Dtype>*>& bottom, // const vector<Blob<Dtype>*>& top); virtual void Backward_cpu(const vector<Blob<Dtype>*>& top, const vector<bool>& propagate_down, const vector<Blob<Dtype>*>& bottom); // virtual void Backward_gpu(const vector<Blob<Dtype>*>& top, // const vector<bool>& propagate_down, const vector<Blob<Dtype>*>& bottom); /// @brief the type of permutation operation performed by the layer PermutationParameter_PermutationType type_; // To hold lookup tables for permutation, for use where permutation is explicitly // listed, such as in GEN case. // src location to dst location (e.g, send location 1 to location 6) vector<int> permute_ltable_; // dst location to src location (this is exactly the permute string input // by the user- "1,3,2,0" means send 1 to location 0, 3 to loc. 1, 2->2 etc) vector<int> inv_permute_ltable_; }; } // namespace caffe #endif // CAFFE_PERMUTATION_LAYER_HPP_
3a7ff0e9b575a319ce5f1ddc1e43523ae6fb575c
3f350caab40be8b3b8eac909a308b8fc8efc0917
/board/board_batch.cpp
339c88d8d516fa2f99dd9ef57d4bd3fab1d59c24
[]
no_license
nikola-erm/Chess
161a9654d3a7be95afdb6c2793f548b7563b9b9b
41c76af1d65933271252fb5146b4e0a2470525c3
refs/heads/master
2020-08-05T12:23:20.932041
2020-01-25T11:53:23
2020-01-25T11:53:23
212,305,241
0
0
null
null
null
null
UTF-8
C++
false
false
947
cpp
board_batch.cpp
#include "board.h" using namespace NBoard; TBoard& TBoardBatch::operator[](int i) { return Boards[i]; } TMove* TBoardBatch::GenerateMovesUnchecked(TMove* moves) { return Boards[0].GenerateMovesUnchecked(moves); } TBoardBatch::TBoardBatch() { for (int i = 0; i < THREAD_COUNT; i++) Boards.emplace_back(); } TBoardBatch::TBoardBatch(const string& fen) { for (int i = 0; i < THREAD_COUNT; i++) Boards.emplace_back(fen); } void TBoardBatch::MakeMove(const TMove& m) { for (int i = 0; i < THREAD_COUNT; i++) Boards[i].MakeMove(m); } void TBoardBatch::MakeMove(const TMove& m, const string& s) { for (int i = 0; i < THREAD_COUNT; i++) Boards[i].MakeMove(m, s); } void TBoardBatch::UndoMove(const TMove& m) { for (int i = 0; i < THREAD_COUNT; i++) Boards[i].UndoMove(m); } void TBoardBatch::PrintStory() const { Boards[0].PrintStory(); } void TBoardBatch::Undo() { for (int i = 0; i < THREAD_COUNT; i++) Boards[i].Undo(); }
1573d0d2cd4394db71b2bd550c267b691a23e4c8
50b3a207e0c5ec2f29b92a1d67d1a2883d352bb6
/personal-financial-management-system/loginui.h
62497767da02824acde544907a2a39557f13a973
[]
no_license
songquanpeng/recoder-example
c13cbca820a52548d9bd19aa5b1c1862173ecd85
c2431cd33f316e1345d96b573858ed1c56ddef23
refs/heads/master
2022-12-25T23:08:44.908365
2019-04-14T04:54:05
2019-04-14T04:54:05
181,256,754
0
0
null
2020-10-02T02:32:08
2019-04-14T03:41:03
C++
UTF-8
C++
false
false
710
h
loginui.h
#ifndef LOGINUI_H #define LOGINUI_H #include <QWidget> #include <QLabel> #include <QLineEdit> #include <QPushButton> #include "user.h" class loginUI : public QWidget { Q_OBJECT public: loginUI(QWidget *parent = 0); ~loginUI(); void setClose(bool); void remainTimesDecrease(); bool getClose(); private: QLabel *userNameLabel; QLabel *passwordLabel; QLineEdit *passwordLineEdit; QLineEdit *usernameLineEdit; QPushButton *loginBtn; QPushButton *registerBtn; void generateUI(); void setStyle(); bool close; int remainTimes; User tempUser; private slots: void on_loginBtn_clicked(); void on_registerBtn_clicked(); }; #endif // LOGINUI_H
30c47aa7f6eff79ea9ae6d26757bb23af17f0988
f30de42e2f98ba74d7193d55629125a59c887fa4
/include/calculating/random_hash_generator.hpp
ed39c0476152bcf4b40ade56765ce2f7c9bc36cd
[ "MIT" ]
permissive
Kam1runetzLabs/lab-06-multithreads
63a89459d034c098885c285ebb190c1c035cc851
aa65f882f11ba323742652b2f8201e788177f553
refs/heads/master
2023-03-12T12:07:48.550841
2021-03-01T13:56:19
2021-03-01T13:56:19
338,942,928
0
0
null
null
null
null
UTF-8
C++
false
false
1,970
hpp
random_hash_generator.hpp
// // Created by w1ckedente on 17.02.2021. // #ifndef MULTI_THREADING_RANDOM_HASH_GENERATOR_HPP #define MULTI_THREADING_RANDOM_HASH_GENERATOR_HPP #include <picosha2.h> #include <calculating/hash_data.hpp> #include <string> #include <type_traits> #include <utility> namespace hasher::calculating { template <typename str_generator_t> class random_hash_generator { public: explicit random_hash_generator(str_generator_t str_generator) : _str_generator(std::move(str_generator)) {} random_hash_generator(const random_hash_generator& other) { static_assert(std::is_copy_constructible_v<str_generator_t>, "string generator is not copy constructible"); _str_generator = other._str_generator; } random_hash_generator(random_hash_generator&& other) noexcept { static_assert(std::is_move_constructible_v<str_generator_t>, "string generator is not move constructible"); _str_generator = std::move(other._str_generator); } random_hash_generator& operator=(const random_hash_generator& other) { static_assert(std::is_copy_assignable_v<str_generator_t>, "string generator is not copy assignable"); if (&other == this) return *this; _str_generator = other._str_generator; return *this; } random_hash_generator& operator=(random_hash_generator&& other) noexcept { static_assert(std::is_move_assignable_v<str_generator_t>, "string generator is not move assignable"); if (&other == this) return *this; _str_generator = std::move(other._str_generator); return *this; } ~random_hash_generator() = default; hash_data operator()() { std::string src = std::move(_str_generator()); std::string sha256; picosha2::hash256_hex_string(src, sha256); return hash_data{src, sha256}; } private: str_generator_t _str_generator; }; } // namespace hasher::calculating #endif // MULTI_THREADING_RANDOM_HASH_GENERATOR_HPP
0c24033e1797182508178a04760e6188bcb6425d
9f520bcbde8a70e14d5870fd9a88c0989a8fcd61
/pitzDaily/612/alphak
669d50498c9d88d2961dc9f1f07f7995305ec3df
[]
no_license
asAmrita/adjoinShapOptimization
6d47c89fb14d090941da706bd7c39004f515cfea
079cbec87529be37f81cca3ea8b28c50b9ceb8c5
refs/heads/master
2020-08-06T21:32:45.429939
2019-10-06T09:58:20
2019-10-06T09:58:20
213,144,901
1
0
null
null
null
null
UTF-8
C++
false
false
68,561
alphak
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1806 | | \\ / A nd | Web: www.OpenFOAM.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "612"; object alphak; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 -1 0 0 0 0]; internalField nonuniform List<scalar> 6400 ( 0.886278000654 1.41270265039 2.23508424402 2.77279645118 3.28717415334 3.80511323741 4.4715261117 5.21953529183 5.63940531489 6.29393980787 7.5351853066 8.38803121841 9.09928603324 9.90244699727 10.9000525567 11.9456684205 12.8738461821 13.7461438008 14.4804742473 14.9045254025 15.1024280416 15.4255161187 16.082755492 17.0596721068 18.1323693308 19.0950401268 19.8839205912 20.6130348849 21.386290549 22.2187001649 23.055143938 23.6981583715 24.0709177394 24.2978338728 24.4183098374 24.4224846022 24.599432527 25.0145559211 25.1036880371 24.9643750701 25.207890582 25.9670845115 26.7329341943 27.1461634287 27.2583711937 27.1626749702 26.9267327634 26.5970910692 26.1868615744 25.7163759574 25.0955349596 24.0931325014 22.7670918531 21.1833340782 19.8064334547 18.6989347034 17.1381662164 14.8112959603 12.3607311512 10.4393505866 8.4709239193 6.41631982291 4.37734780757 4.84862262668 8.57180317092 13.4156955438 16.3639308296 16.0494858655 14.05936727 12.4782220614 11.6633550034 11.9334673242 12.5415492605 12.4673895789 14.576642265 14.0391661706 15.9450199054 9.84600570756 12.8643982916 4.807741778 3.14998127382 2.51981507665 3.13709550477 4.39477451729 4.31900747831 4.23381451148 4.46607697893 4.92445287063 5.5751825314 6.40295018951 7.40105155353 8.39673389207 9.27633498438 10.1184185321 10.9765943474 11.957457685 12.9881811536 13.9735767571 15.0058618109 15.2567654276 15.2606090491 15.5523731419 16.1773719679 17.1383029494 18.345118719 19.2463100756 20.0030312464 20.7727172201 21.5626285849 22.3639687972 23.1689449393 23.9084257863 24.2762963516 24.4988415484 24.6553274263 24.563166027 24.7924826843 25.2315867389 25.2661954277 24.9773500271 25.188470886 26.5499614494 27.6488840908 27.9614023554 28.0094072417 27.8235687707 27.4724510009 27.0625339932 26.4711595365 25.8192168782 25.2754159704 24.8520112 23.7556294437 21.4076001137 20.1624720683 18.8083095183 16.6118083551 14.348990983 12.163516493 10.0071908052 8.03641472491 6.77188675087 4.78816215277 5.31016235229 8.73909519742 14.4774296612 18.1872312814 16.8796373726 14.7098516838 12.808144511 12.1637662567 12.6505453267 13.8215329346 13.2809798385 13.1727151892 12.6820237663 11.5126036251 9.69233569083 8.15860753397 4.24245324664 3.24456944228 2.8555826933 3.37305544718 3.66707104179 4.21598466922 4.6644645081 4.66214679328 4.82767693166 5.47850503125 6.37958036808 7.3855024536 8.40093662779 9.32687379439 10.1729444925 10.8860874175 11.7743339206 14.3912780858 16.395633396 16.8353487339 16.2855695112 15.0675640101 15.2156240964 16.3037090013 17.3172022469 18.2657345141 19.2376992332 20.1054284255 20.8776998268 21.6468728631 22.4458051359 23.2146044665 24.0497687806 24.4170058245 24.3949413981 24.8917158027 24.8152594203 24.7017201036 25.3476118948 25.4252138878 25.1955151935 25.4205149249 26.1664137118 26.9146808843 27.3315321667 27.4687294133 27.4155249522 27.2134608708 26.8831018384 26.4273563656 25.8689586041 25.2092774509 24.3357826116 23.1209979404 21.8359565284 20.5577527779 18.6787834541 16.5192887558 14.3403144291 12.1903317129 10.1310361254 8.2965083747 6.56341011106 5.40608527681 6.70977377772 11.1541041146 15.4982161576 17.6226336659 17.7132482977 16.1357420838 14.4973645837 13.8621270844 13.8233514814 13.2041535457 12.6504338906 12.6675424453 12.3618726155 11.4084491172 9.79967434162 7.36749255373 7.55732541597 3.26539328605 5.51759807637 3.70208531271 3.83141782303 4.53313176243 11.8880745215 10.2834960892 5.38571017645 5.44975358047 6.37765750479 7.40919726072 8.44425365781 9.34566627895 10.2101592599 11.9091093861 14.0033594082 15.6846548814 16.1415974285 15.1737208289 14.4697636312 14.8408241668 15.4632201615 16.2799829017 17.2936180742 18.3523552134 19.3590434965 20.2557866693 21.0057665672 21.7971042656 22.5210848302 23.4270872965 24.0419119881 24.7102586424 24.6888274691 24.4340771928 24.9041810051 24.8854796038 24.8890432042 25.1472106976 25.3856645454 25.741381111 26.3363058322 26.95435557 27.366510231 27.5429101968 27.5263000369 27.3523744906 27.0429579854 26.6075183598 26.0536916718 25.3661705424 24.4861501702 23.3748876731 22.09316855 20.588306425 18.7205472513 16.5949625296 14.42220672 12.3184158964 10.3778707776 8.71486100181 7.46784220033 7.12637044347 8.09799277791 10.6849820525 15.9293699342 19.3474150844 19.4894204696 17.8207410354 15.4727640887 13.8992061072 13.1575417918 13.376393137 14.8284680646 14.7940633547 13.4946767207 13.3731014608 16.6752135011 13.0731966463 11.0873593464 5.69567054954 7.58895559916 4.48009003553 4.79863195976 6.61854260345 11.7817271593 8.27378175162 5.85743972299 5.97407092962 6.59946350931 7.55342841396 8.60244867165 10.0251427154 12.2982267532 13.3403765403 13.7685888802 13.8556573094 13.7498971889 13.918419983 14.5195221858 14.9727152838 15.5125531078 16.3736453521 17.3977520061 18.4731682107 19.5115539842 20.3771054246 21.2557956377 21.9121765835 22.8317882465 23.4693329197 24.6773639486 24.6420092564 24.3260935764 24.5528118152 24.4227963846 24.6096254641 24.9392790607 25.2853588777 25.6162463492 26.0088754285 26.525014933 27.0570403887 27.4527682858 27.6542968148 27.6698192248 27.524059908 27.2385898966 26.8254854778 26.2858377655 25.6011714008 24.7353419998 23.6638815728 22.3759883449 20.8005810447 18.8903799736 16.7759805273 14.6569364711 12.679561495 10.9715650056 9.67542048518 8.96673269132 9.0809724358 9.3979366035 11.0065790716 15.4974159774 19.4493623802 20.8095152482 19.6346628662 16.8696041097 14.4009714558 14.1087300581 16.4092024804 17.3045626653 16.2861175729 15.386848926 18.0601872407 21.0825395286 16.388147204 15.5030278219 9.98739702355 9.15697908428 5.58183033975 6.12797913271 12.0661137025 11.5450832608 6.70087409703 6.45963359599 6.60440235737 6.95209053138 7.79957991404 10.4056054647 13.5946355137 14.0611407404 13.7575703191 12.9302117121 12.6701098818 13.0956988278 14.0599119085 14.4926321543 14.8677781693 15.584637631 16.519630354 17.5762116076 18.582540827 19.6316216512 20.7512897494 21.3620586301 22.4388170293 22.8835633551 24.3310581455 24.4628198687 25.2812103439 24.557538563 23.9823696354 24.153275629 24.6026917316 25.0622957084 25.4737915107 25.8552515418 26.2680824902 26.7442166134 27.2216045281 27.598732365 27.8139017337 27.8554419207 27.7368302745 27.4782735193 27.0932914915 26.5803961332 25.9204189926 25.0823129537 24.0320680158 22.7258198876 21.1088689093 19.2008276334 17.1571367599 15.175431049 13.4142193376 12.0151964135 11.0970861625 10.8239332238 11.343020177 10.534045321 12.8838859522 17.4612567061 20.7954750774 22.1024753343 21.1642502398 17.7825427281 15.5828046887 17.4064263672 19.6360860991 19.1290970376 18.1512479621 18.2439600899 22.8325867754 24.4246396753 19.4132614209 19.2155484763 12.1105234228 9.02955178705 6.78608198045 6.36163800473 12.016323395 8.46726550183 6.938692278 7.05801021163 7.19120140371 7.88850747421 8.39691354875 13.3103939954 14.0225944264 14.0891815449 12.8175133127 11.92560457 12.2763731037 13.6090501363 14.0269140152 14.2041024228 14.8830045095 15.6991319644 16.6367730264 17.6909972576 18.8827263021 20.024398402 20.7788543557 22.1742563635 22.5211606939 24.0857922363 24.0742880332 25.1390416406 24.7435918683 24.3258071552 23.8107657383 24.1032012756 24.6842812616 25.2267493439 25.6824631773 26.0995437819 26.5313652111 26.9910596649 27.4374166858 27.8001330973 28.0234620394 28.0861102483 27.9945882329 27.7680524341 27.4203439455 26.9478661264 26.3285585159 25.5267658173 24.4964806845 23.1871439432 21.5763339986 19.7354381718 17.8386788347 16.0732577064 14.5675000133 13.4019982418 12.6899096808 12.4664102205 12.2528644895 12.2624767343 14.5071478675 20.1439022424 22.258640553 22.4857088682 21.3759622722 19.0770700826 18.7881008314 21.3457880114 21.7880939542 20.9705228864 20.4047038073 22.4048589278 25.1710574053 26.6432583663 22.0533943204 20.9153536623 11.8354014898 8.70287340523 7.93412020351 12.1910675601 12.1292198221 7.52726899697 7.59586570383 7.74581853357 7.84606120039 8.42033438131 13.059337824 14.0075962991 14.1184189176 13.6713070293 11.6812467758 11.52406691 13.088424363 13.7463093265 13.669000554 14.0818613605 14.9250535432 15.8754879852 16.8429404939 17.9521005307 18.9837744758 20.3770557484 20.8741442969 22.1934331327 23.7464116566 24.2258783324 23.7790436295 24.6252895595 24.8172921042 23.7942996637 23.800541224 24.2498399962 24.8351921959 25.4052366199 25.9021247803 26.3544280989 26.8070014987 27.2663910765 27.6991829383 28.0535288638 28.2830299576 28.3646426132 28.3023195417 28.1147780103 27.8151137686 27.3968675214 26.8332399842 26.0811290039 25.0877675023 23.8129942153 22.2736042182 20.5798012249 18.9010722378 17.3644508258 16.0071515054 14.8868548413 14.1723863391 13.8858299942 13.8627490844 14.2049819427 14.2599606943 20.3907435189 24.1377804394 24.0026330336 23.3242427622 22.3036131597 23.0623259809 24.3877580967 23.6990377719 23.039151292 23.2856225356 25.6573707772 26.3525688212 26.9478333433 24.0689203536 21.9305583386 11.1252957532 8.64368363282 8.60380008313 13.1737484771 11.1273186208 8.15956354197 8.30873324885 8.58946762695 9.76411123786 8.53689504409 13.8323109202 14.533481357 14.1620476749 12.4643286306 11.329163952 11.6635687912 13.1668026199 13.469151772 13.5599545635 14.1064778696 14.929092322 15.9570340194 17.0258472733 18.5343161901 19.8079967569 20.3450843906 22.2597280854 22.0984551411 23.9401647546 23.681820551 24.9039943537 23.9843787882 23.7149047927 23.7127629012 23.9741919144 24.451380218 25.0207337294 25.5995475375 26.133268856 26.6249397998 27.1028260247 27.5712982996 28.0031690323 28.356446933 28.5928398501 28.6939363133 28.6654016679 28.5254593181 28.2853652737 27.9358996654 27.4455845664 26.76531489 25.843184508 24.6604942547 23.2719167165 21.8031514185 20.3689890643 18.9662163322 17.5493533859 16.3269356514 15.6817223208 15.6969816203 16.0017861969 16.20251695 16.0441938627 17.4358344283 24.4032482056 25.9354845903 25.7680396418 26.2538063515 27.1825883905 26.7485332751 25.7134216884 25.5453188333 26.5987972349 27.8473050494 27.7259328821 27.1293846243 26.1186020192 24.7510630038 10.6089266602 9.09533107167 9.75752954567 13.2487304989 9.20731603219 9.17878260311 9.02797291392 9.29610659657 12.3486676554 11.0953161339 14.6673682416 14.8083807281 14.2400202269 11.7984104844 11.3700917883 12.9497476124 13.3979857962 13.2302628573 13.5284989916 14.2589759006 15.0603542913 16.033499813 16.9630828667 18.6904209757 20.8234078057 20.2951883883 22.2112519837 23.5086657517 24.180826299 24.8184578488 24.1852772166 24.2318733067 23.4342363587 23.6314982871 24.1429861768 24.6745027425 25.2334988967 25.8124305292 26.3756476155 26.9102453135 27.4224166156 27.9090233736 28.3483577961 28.7071549443 28.954405379 29.0778482476 29.0886178048 29.0059732496 28.8381972427 28.5734833671 28.1782538989 27.6019742578 26.8013934075 25.7848812355 24.6337497749 23.4453626178 22.1961321132 20.7062169559 19.0718055523 17.9075945251 17.6828931233 18.1998148682 18.7228230969 18.8460383991 18.5183309578 17.1586763406 16.8906485716 27.7265009903 30.371650505 31.1146210869 30.7364621983 29.1387396322 28.1632068605 28.495610268 29.7479459157 30.1625302589 29.9660950267 29.6986581608 30.0538478051 30.2463932824 10.6065980084 9.94544551156 13.1515630326 13.4283078974 9.33620536933 9.94250110814 9.74395125073 10.2188374853 11.8774430799 14.5666649371 15.5033439437 15.0852427713 14.4893399929 11.8276312026 11.5315104797 13.4618430037 13.5052640387 13.2112158747 13.5557287095 14.3932323376 15.4181424799 16.3923851051 17.1448733648 18.3255623315 20.9937391139 22.2080602591 21.8527425819 23.6308670859 23.0914622617 24.8447189703 25.2065343702 24.1891939521 23.4100267764 23.7446878729 24.3419279904 24.9084593877 25.4705532736 26.0502456063 26.6323946986 27.2084948391 27.7651318183 28.28069291 28.7353668015 29.1055845088 29.3687658315 29.5204996046 29.5779869297 29.5617928169 29.4784598047 29.3156583638 29.0414856981 28.6105910893 27.9966419966 27.2350128363 26.4034219136 25.4849180005 24.2190683772 22.4549573581 20.8584300825 20.1966817848 20.7069072834 21.7600206225 22.4599795396 22.5166334205 21.8706579559 20.238249982 17.7113094468 18.1307716782 31.7771120243 36.7252396656 35.0421281539 32.2707861598 31.3229631508 31.8930541945 32.8384059773 33.3180189905 33.7206757195 34.2759269773 34.9000425329 35.5788773943 10.9769037812 10.8241921275 14.7985541213 14.1532470601 12.2763438125 11.1708623978 10.686637127 11.6743425642 11.3715201924 15.5330661758 16.1634693064 15.4379094974 14.5914513504 12.4595618787 12.2936375004 13.9232886594 13.5357569328 13.299926099 13.6739936534 14.4368130567 15.5623487866 16.8496187129 18.5553491237 18.4587189196 20.4998642993 22.5811398296 21.7540057069 23.8876725955 24.7478809727 24.0591432856 24.3257845747 23.5801968783 23.7003883916 24.0710240331 24.5979968612 25.1662146335 25.7369853265 26.3219386226 26.911490263 27.5157823549 28.1245215746 28.6876227324 29.1670927101 29.5525888405 29.8376279799 30.0260107474 30.1389050245 30.1974725002 30.2085965298 30.1633464468 30.0369565633 29.8003060931 29.4540282391 29.0438494958 28.5693703624 27.7568286204 26.249223577 24.5445228232 23.5618412817 23.7764439344 25.1747398801 26.6694685329 27.7090572035 27.9198183354 27.2961160553 25.4629862075 22.2710802924 17.6104363404 26.7392878323 37.3041993518 39.8410951825 36.4891726273 35.5758652025 36.1152593568 36.9543388691 37.5653427672 38.6874343347 39.5271063164 39.5098733029 39.7387383774 11.5904650532 11.482023464 14.5555452562 14.654431079 14.6717481228 12.3189925375 11.7608811778 14.5172804423 11.7595284529 16.3948047438 16.6676922332 15.8004851589 14.6928756817 13.0820016276 14.8669490551 14.976294354 13.7346098441 13.5251615386 13.9259697824 14.5791410405 15.5225291748 16.8412714045 19.8215206317 20.7739471425 20.0000488471 22.6450846329 23.6087521519 23.4675345153 24.7142753734 25.12677177 24.6658360368 23.618347166 23.906092571 24.4024962972 24.9095579688 25.4572886888 26.0219275177 26.6252234725 27.2396409635 27.854637777 28.4954537881 29.1154343177 29.6412745203 30.0521544309 30.3641611844 30.5980467915 30.7761019292 30.9160575601 31.0265356793 31.1075191258 31.1519405782 31.1643201807 31.1778504599 31.1990066401 31.0036054801 29.9750184735 28.5380786942 28.304061501 28.4816185551 29.7475160718 31.7503918807 32.9855790658 32.7732368891 32.1742276602 30.2867404056 27.4838544287 24.1804504411 17.8405672214 17.5122984358 31.5611215273 38.4695334413 38.2542415851 36.671301907 38.5362064189 40.3717521546 42.4786310901 44.3411569108 45.0369596086 45.0336014331 45.2368639778 12.2624297663 12.190781405 11.8428673788 14.9890747917 15.2153662028 13.1017788726 12.7276065026 15.51244743 12.4290070684 17.285850004 17.1234080089 16.1774108289 14.9029032916 13.4045464128 16.023440464 15.5589932212 14.1800254752 13.9268139468 14.2791166366 14.8910929222 15.6073145208 16.73272793 20.3280288953 21.8455963193 20.3473208376 22.677534664 24.1270684415 22.981577764 24.3442361873 24.6957989506 23.7259771897 23.9676128137 24.3521323462 24.7854530446 25.2537817907 25.8009348115 26.3616871106 26.9408519983 27.5832490079 28.2436130917 28.9084952608 29.5663514851 30.1448394507 30.5993304308 30.9513763358 31.2415134843 31.493360094 31.7157201288 31.9222605324 32.1279031802 32.3529248034 32.6695303458 33.1371489766 33.6259161225 33.4105685163 31.9193373237 31.8016351723 28.888203323 25.9280301556 24.5431026836 20.7957631642 9.36471544118 0.0378723021112 0.00386402720929 0.000306633439702 8.63724534069e-05 0.00101666876487 0.0103878442958 0.11734167066 0.306485611217 36.5409015017 47.1555677733 49.6080495401 44.9605843467 41.0893391196 43.3436129941 48.3136276431 50.4190070865 51.8455923468 52.3145817391 13.1143285525 13.2063139137 15.632064346 15.6410335213 15.6750195189 13.7697576864 13.7746606741 16.3703883248 13.4516109264 18.0602280087 17.5600934349 16.5784942165 15.1950212736 13.804132224 16.3128151365 15.7695345079 14.6230697787 14.3876465331 14.6695523337 15.2118567024 15.8626263094 16.7529378707 19.7482984232 22.6586756213 22.8202916483 22.0672426494 24.3398891097 25.1546391751 23.2432089539 23.2294865834 23.6686491754 24.2059590347 24.7093657072 25.1738344329 25.6560111274 26.1715628403 26.733252813 27.328982702 27.9537152962 28.6491067181 29.3666690976 30.061891295 30.6813098217 31.1845745951 31.595385273 31.9573495618 32.2911084415 32.5985672252 32.8845623692 33.1797289308 33.5796962926 34.2464962249 35.2361116403 36.103281063 35.5166978168 31.7246795943 21.8408811861 1.2842945139e-05 1.41259078378e-08 2.64810273872e-10 4.48871561288e-12 1.29869679736e-14 3.69061280862e-17 6.3883809181e-22 4.99701050803e-22 1.21315924307e-21 8.17765246004e-21 3.83036675587e-20 1.41493939162e-19 8.99171871379e-19 7.04031503046e-19 6.10785606375e-17 3.47639066011e-14 3.49451441329e-12 2.65174612674e-10 6.10633056102e-08 0.00102788758544 52.6156918847 57.8050876894 59.0931734871 13.9164211327 14.1076933309 17.2530941904 16.3224176191 15.8050497527 14.4433063022 14.7892449587 17.0981869774 17.0712919976 19.0230262719 18.0598347575 17.0732154408 15.5727555741 14.3483442465 16.6204888032 15.9184519444 15.0485139562 14.8568680278 15.0665940602 15.5270820149 16.1447265817 16.9950726205 19.241708132 22.9198653584 24.1866197142 21.8105892038 23.8663106953 25.226196942 25.0106698887 23.6687077928 23.7593254866 24.430947952 25.0713600541 25.6094873465 26.0499200488 26.5722147439 27.1270139565 27.7408447675 28.3844641544 29.0898080475 29.8554941732 30.6063107424 31.260017944 31.7959698582 32.2754029186 32.7591572279 33.2147025885 33.5825854664 33.8564537932 34.1922668647 34.7792654502 35.7782760007 37.2656691802 38.4990257133 30.1287137289 0.816257879984 7.10202886503e-12 2.87597895735e-14 8.31686558649e-16 1.21078317455e-17 9.83735743042e-21 1.64145736018e-23 1.15707082638e-24 0 0 0 0 0 0 0 0 1.60928819831e-28 5.42779593199e-26 8.11882578714e-24 4.7102827235e-21 6.57910898183e-18 3.56275566294e-13 5.41047456894e-09 0.0421821321398 61.950065103 14.573184495 14.7863844164 19.3992148344 16.8524545425 15.6887534423 15.0410720111 15.5199247994 17.1675031709 18.6623662713 20.1304657071 18.7169266745 17.7029777918 16.2009241316 15.1845776597 17.1345930197 16.2201533441 15.5521774469 15.3753262666 15.5035375877 15.8795070132 16.4264762044 17.21419402 19.0375661665 22.7964065485 25.1782824624 24.4216780741 23.3585997215 24.5973100341 24.768629145 23.6740527135 24.2087562138 24.9079085902 25.595301262 26.0983168907 26.5566779397 27.0102379206 27.5769823484 28.1828101518 28.853327741 29.5817447326 30.3720188372 31.1806813743 31.9126955938 32.4826383582 33.0207168176 33.6365562981 34.2283727981 34.6211884575 34.8384632297 35.1841864368 35.9058663563 37.0528824624 38.7155970659 30.6969648303 4.70304226744e-08 1.0282109758e-14 3.37208430894e-18 1.36353162596e-19 1.85913432518e-21 5.09825157871e-24 0 0 0 0 0 0 0 0 0 0 0 0 0 2.07356765971e-27 2.06054042215e-26 4.51715106024e-25 2.19030408581e-23 1.21632611824e-19 1.01242559551e-10 1.95161375415e-15 15.086365954 15.2892094529 21.4539793652 17.2607607581 15.8248244439 15.5967914102 16.3277916602 16.5495398147 19.6137472784 20.9247827027 19.3549187494 18.3482430042 17.0279020651 17.0652477064 17.8528094918 16.7634257716 16.2512368846 16.0896099755 16.0490302142 16.3191777242 16.761531604 17.4715005665 19.0228426301 22.6576546551 25.5926480381 26.065951425 23.1647716649 23.5384720907 23.5409156621 23.7944944394 24.5180134239 25.4035785108 26.0945944821 26.630364913 27.1071102505 27.6323034287 28.0929486455 28.6917115562 29.3650868796 30.0989718831 30.9567221356 31.8359843936 32.6206161762 33.1681257235 33.7133964009 34.9231337945 36.5249023586 37.0746265621 36.3202445617 36.4367683273 37.1653086751 38.3164739364 29.2572579792 5.44110858482e-09 8.20046339455e-14 3.67885681325e-25 3.7175303843e-22 6.06598510018e-24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.20359702481e-26 2.16942299151e-25 4.00059586115e-23 95.0106684406 15.5350667112 15.7038355351 21.2962734064 16.7138963259 16.0423421639 16.0787117293 17.2450291424 16.564625814 20.4198849434 21.6651047573 19.9628941742 18.9483003993 17.671626188 19.280859758 18.8518562194 17.5104403499 17.056260763 17.1622841752 16.8169515162 16.9281497743 17.1962938049 17.7712700029 19.1499741848 22.5067942124 25.4656787843 27.1680009783 25.8505903202 24.8872311715 24.503708055 24.0546270373 24.8214678006 26.0399235843 26.5492232794 27.1670695234 27.8993276261 28.2436663343 28.70376985 29.3055433671 29.9941560327 30.732200093 31.5454504695 32.4794644937 33.4008283706 34.3337079458 35.431047715 36.9893713036 38.2513883113 38.2454383835 38.1671376782 38.7609226019 39.8802680808 33.1449752349 2.47440387684e-08 2.25863661804e-13 2.96857685963e-17 4.03189636812e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.85741640082e-26 7.17475623098e-15 16.0516871697 16.1973683531 20.9422345943 16.4035391667 16.3492790824 16.4731141888 18.0349175348 17.0421405784 21.1231003603 22.3927009641 20.5687627024 19.5518782538 18.2138502778 20.0417506385 19.7788578202 18.3290863531 17.8498760297 18.0625253117 17.7357279817 17.7582265784 17.8317362754 18.1216180097 19.4378500324 22.4878367659 25.192174032 27.4972828113 27.0542677483 25.4239529256 23.9563566368 24.5652480568 25.3449106297 26.525106203 27.4109541614 28.1508520693 28.7433773506 28.9625170096 29.3987131865 30.0132309585 30.7153259103 31.4850435215 32.3064348194 33.3191919338 34.5664558884 36.1101036886 37.17171778 37.6151793863 38.319821048 38.7959672057 40.317948497 42.4095597286 39.3257848406 2.25466311987e-07 2.99376218775e-13 5.16258940317e-17 1.05887367258e-19 2.56373684697e-21 8.60559436268e-24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.65657197949e-26 2.1917960367e-26 16.8125642989 16.9583503364 20.6283754192 16.7046410156 16.9210243336 16.9672342678 18.057547228 17.7788774501 21.6339817878 23.0862580706 21.2101841141 20.2063003685 18.8761444994 20.7363086649 20.6162165255 19.2383110475 18.7037522412 18.9411375869 18.6330136139 18.7345573161 18.7412698018 18.6325067653 19.9198023134 22.6615610647 25.0670066281 27.5913005052 27.6089711788 26.1635464149 24.4604009668 24.8028635483 25.9741389443 26.694424906 27.4524502091 28.4008202218 29.6799527445 30.007292375 30.3561609509 30.828721494 31.4908655623 32.3361536882 33.2687346694 34.415087121 36.357770351 38.108185198 38.3983391122 38.6741214926 39.8400040339 42.6565197787 46.3052955537 43.5984285919 6.44164275228e-08 1.07006996114e-14 4.42819973118e-19 1.45186136394e-22 9.10965144601e-25 1.84645252325e-24 2.8354620686e-25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.22442096738e-27 5.55973583082e-27 17.956624328 18.0626432773 20.9345473683 17.6604099263 18.094316631 17.8349540238 18.3837332331 19.1070003585 21.6961651929 23.6113345996 21.9162610984 20.933252417 19.6465759101 21.5258604012 21.4818112759 20.3101895579 19.7427587857 19.9667124276 19.5389474961 19.8092850953 19.964354539 19.3716529947 20.4742748224 23.0294623575 25.1355278473 27.4593311023 27.8636247136 26.8219369926 26.475262306 25.6804203177 26.3956031445 27.5242914685 28.8655896329 29.0071803784 29.9395063168 31.0555104599 31.4255897981 31.9691401303 32.5249907986 33.2753977428 34.3484287795 36.3027783954 38.950372702 39.8885907321 39.7780494539 40.999157242 45.4087991801 51.8183670814 49.3865140898 2.31706989419e-09 1.62121375335e-16 1.51362409524e-21 1.03567150286e-23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19.5514779808 19.4270667546 21.7681036489 19.5633797669 20.062528967 19.1145950587 19.3408252485 21.0247042987 21.9321167317 24.2441017173 22.7400377978 21.7430427892 20.500849098 22.3534691391 22.343375499 21.491038243 21.2591926876 21.304959245 20.5383182582 20.9808656509 21.4883702464 20.4267183747 20.915561982 23.4861513865 25.4050139857 27.3459719541 28.0501642624 26.9961850337 27.67348805 27.2819411591 27.4791741759 27.2697068625 28.6083057948 30.2593749169 30.915089664 31.7980107555 32.496485098 33.0672949158 33.7704722818 34.5408241645 36.0842926445 39.2215124971 41.4806691053 41.8952380564 42.645181946 46.5117373815 54.9121946443 52.3887970549 13.6035053869 1.44679924043e-18 2.52931044294e-21 1.15813900229e-23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21.2401280443 20.7133461344 22.6718283406 22.0791268794 21.7932767377 20.5983287172 20.3988888681 22.1798138065 21.2104258553 24.7427414028 23.6637599612 22.6279829776 21.4296753861 23.1944712871 23.1457135009 22.4814564106 23.350728363 22.916899539 21.6625311685 22.2745110691 22.8498585889 21.7806490558 21.1044880841 23.504072531 25.6046753445 27.2727235952 28.1332572412 27.1015535199 28.0826968666 28.5863343009 28.857178882 28.0700225745 28.8793052728 30.2119111394 31.8619782021 33.0394824462 33.800174148 34.3369779085 35.0163105673 36.230153483 39.1326742038 42.5066199233 44.2148504582 45.113350523 47.6165463513 53.2822482876 50.247870691 26.6901475337 3.89563228283e-18 5.6397496335e-21 1.9751491219e-23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22.0944360585 21.6241869114 23.2602004935 23.1553835109 22.8869715792 22.0051369732 21.6164861017 23.5788169283 22.2789045618 25.3760123997 24.5989784717 23.5579639 22.4282754678 24.0663214421 23.9599790707 23.3156345246 24.3439997739 24.04970443 22.7604148153 23.5512282136 23.6204898167 22.6275157542 22.1518986244 22.3824044621 25.1324590923 26.806272164 27.9470870464 27.0989257313 28.1808625346 29.1594896555 29.9944351975 29.9091817987 29.2640999543 30.3054419823 32.1324904004 33.9427642368 35.2208100113 36.020298863 36.7038886673 39.1157493445 42.918087113 45.8777566752 47.3330262137 49.0701867098 52.9214175702 47.6340752059 22.1708487542 2.05800588219e-17 1.85385230174e-20 5.27986733104e-23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22.2248782071 22.2069799276 23.6320795638 23.4107448866 23.594501908 23.1046872765 22.6831639371 24.9561528479 23.9841882849 26.1886849138 25.5938129448 24.5198507399 23.4920173723 24.9842817594 24.8443815542 24.2798290389 25.1774489184 25.0427060303 23.9103558031 24.6042981167 23.4933190493 23.4156442549 23.2202100094 23.4897778474 24.3235628127 25.3484374113 27.1447508742 26.9233761801 27.7894810124 29.2267778657 30.4880860868 31.2949223791 30.8244776469 31.1326268325 32.3717062469 34.155981253 36.1493642647 37.779665636 39.2665377739 42.8446464399 46.6585449297 49.058633828 50.126833131 51.7235150732 46.5732001978 27.6010132355 19.4881024046 6.43945925381e-20 1.44249911126e-22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22.5137046219 22.6305462498 23.9600049161 22.5999244701 23.9196938522 23.7296486498 23.4136649508 25.6080796251 24.8741892662 27.0201802186 26.6260913839 25.4843405663 24.6273151355 25.9356218318 25.7723101774 25.37786035 26.1031952554 26.1456036147 25.1835896664 26.0349851065 24.8657077344 25.0627405534 24.5028448291 24.8080850539 26.1326862962 26.7652194689 26.8168877091 26.6822940397 27.3661319947 29.1987725412 30.5229813084 31.5866265745 32.1892405343 32.2665211572 33.7354971272 34.9337367256 36.9215958833 39.4297003239 42.4663456751 46.7505707668 50.1228707132 51.6401051114 50.6960558476 46.3474565452 39.1403677147 27.0883294228 5.40351905391e-19 1.23013755354e-21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23.2503893169 23.3312144221 24.3125736798 23.0464074545 24.210709481 24.094982315 23.9390083228 25.8593373703 25.505284773 27.6481518136 27.6348086648 26.3922080048 25.819917048 26.8748909253 26.6630288014 26.4428939407 26.9982857618 27.3322459781 26.502764932 27.4804987031 26.6557870327 27.128952289 26.9197485076 25.8371938509 26.9260055912 27.8907420584 28.0424376149 26.5546075984 26.8819722396 29.1292201303 30.6959587003 31.3019535869 32.0592145103 32.6498323684 34.142931426 35.6230263548 37.8178553287 41.1197085309 45.856126998 50.7121697329 53.344026908 53.2667677417 49.9849297116 43.6936238279 27.1836998901 15.0500184921 8.57208207441e-21 3.47599833923e-23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.1740292114 25.1674349601 24.8177079325 24.0361106148 24.7781904649 24.5175691459 24.4442346772 26.0790485345 26.0791296902 27.9367601593 28.6076353944 27.2040194333 26.8790340986 27.6532450713 27.5029804175 27.2600428534 27.3605735266 28.4126952285 27.880472212 28.747768758 28.603291822 28.4950774025 28.3662118661 28.0027668306 27.3414016738 28.0966556747 29.0163387309 26.153146289 26.433912016 28.5041336807 30.7719557676 31.8732716205 32.7876980821 32.7235515284 34.0648209346 35.919639569 38.3833544138 42.6967907593 49.2150799132 54.4728555021 55.951820796 51.4877618292 48.5364701107 44.2864921467 31.6878425058 5.81023498894e-20 1.48291172077e-22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.8798933792 25.9099525624 25.5479402264 24.9316109923 25.496957714 25.1083101725 25.0128074723 26.3740290728 26.6321111678 27.9661801716 29.471713807 27.9761401492 27.5368372775 28.2983833684 28.399053913 27.999855664 27.6576083901 29.1923137666 29.280923022 29.8562375806 29.9601385041 30.1335404252 29.0264298985 29.0299218837 28.5937837891 29.7183089973 30.3740683995 27.8929279196 26.0691509011 27.5723345077 30.12964075 32.0715533514 33.0856382202 33.3243943954 33.7938569786 35.7588853927 38.3915337127 43.9205970667 52.3963955532 58.2482428074 56.9382853631 51.019190993 44.6365681469 28.867248496 21.3349518427 1.71317171051e-21 5.75722987262e-24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25.3950055902 26.3124478197 26.176429039 25.5644371152 26.1904582042 25.8175251392 25.6490344937 26.8161347265 27.2214844636 27.6436387301 30.0734645661 28.7866200051 28.0129634703 28.3557585798 29.2985761258 28.8590036908 28.2778175993 29.8440632807 30.0868175351 30.7711013094 30.9782117941 31.4356587103 31.5939151541 31.5914646651 31.2481517083 30.8445975376 31.8209877779 29.7831849038 26.2218100247 26.7865044866 28.4364512132 30.9161381449 32.8577811712 34.4072784392 34.3395080073 35.1031577629 37.5114499625 44.0885434852 55.2737758687 60.913764751 56.4786378969 55.6295691348 49.9432584565 34.4802615857 2.45461678866e-20 6.71139912786e-23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25.8698541216 26.6702762777 26.6784368926 26.0077837173 26.7846655845 26.5970665544 26.281003343 27.3516169173 27.9919425248 27.2295517196 30.4581542661 29.6792709001 28.6639085698 28.0652077298 30.0786858952 29.7760753356 29.1910458911 30.6523239399 30.7020116818 31.250783023 32.0253065971 31.5198904252 33.0023364199 33.506500448 33.5226689503 33.5212897747 33.7836139347 32.8367588598 28.3496464105 26.5822484721 27.5454740332 29.06400754 31.3310275984 33.0709617225 35.1004080921 35.2313998152 36.309133974 41.4748550546 58.776627179 62.7946186754 52.4440718682 48.6584901872 41.9779064245 36.3245127507 8.32807229581e-22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26.3057139242 26.9847664898 26.7402088442 26.3167578827 27.2603549496 27.3002992648 26.8056088821 27.4526133365 28.971180948 28.1850785453 30.7519972321 30.6393914033 29.5599005347 28.8088995833 30.8510370651 30.6932109773 30.3794446574 31.6923898447 31.6185630765 31.3261179862 33.1453854358 32.9031622825 34.0941438346 34.6521015899 35.1349228658 35.7248511307 36.2635044345 36.3294442184 33.8968712606 28.2416238825 27.6844788075 28.6003923842 30.7406808208 31.9519267056 33.7568244771 35.3810597158 36.1295379801 37.0766002967 55.9176441562 63.133231729 57.7826610485 44.2480069306 26.1953380793 4.16642245663e-20 6.85621855342e-23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26.6753999526 27.2297314178 26.691867875 26.7590628807 27.725954715 27.7459716557 27.276863509 27.4136147937 29.4701410485 29.180147351 30.7227994017 31.6043879356 30.4970875947 30.0543694447 31.6455020671 31.5609671371 31.676123238 32.6805047641 32.8524817735 32.5336026309 34.1930318209 34.4429105278 35.3185540242 35.5492557673 36.7544014845 37.3717668795 38.5209787195 39.5859371276 40.0664222262 35.7761928499 30.035409107 30.0259211643 29.9885968578 32.0250685816 33.423152216 34.6461022499 35.5830999999 35.631542005 37.4855057544 56.449083448 63.3794283636 55.7844111981 42.5702579518 1.70511987175e-21 2.08851946911e-24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27.0495301568 27.1916586 27.3830579666 27.8842312109 28.286820983 28.2018469584 27.8342696687 27.8302353207 29.4776537781 29.8273586963 30.5450099032 32.41007693 31.3299232959 31.0572172441 32.1896447488 32.3830605351 32.3045258699 33.2472073302 34.0103303858 34.0454021548 35.2035207501 35.5878656936 36.3197865967 37.2806227847 38.1775265079 38.2334059567 40.0024085027 41.4855451364 43.1033353751 44.1989431046 39.3370097293 33.1930715955 32.1023605321 31.8172790434 32.442203726 33.3135515682 34.0146983965 34.1802090277 32.9283333717 36.5096122168 48.1598311589 45.5660710132 41.6039913463 1.27430263963e-22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27.4274100056 27.5257862272 28.8920645077 28.8456873992 28.7390205635 28.6186708443 28.4601308372 28.4236550034 29.6879196338 30.5195137246 30.0506495248 32.733133401 32.1464309159 31.4733893908 31.9990350228 33.1972481237 32.7961218757 32.7976408347 34.789553322 34.8587998845 35.8600279925 36.7976478327 36.4967615145 38.6834129288 39.4980618687 40.5695118122 41.6581857008 42.9733220328 44.8174595863 46.8466092715 48.0993021679 44.1597464812 39.3104218984 35.9176366174 34.8916749049 34.8736386275 35.808121874 36.6101165273 36.513287651 37.2453945917 33.3412027973 26.0832269359 0.771477079358 1.61100730057e-23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.88705692508e-28 27.6816830427 27.8840118731 28.1048910491 28.88324766 28.8945613757 28.9122548583 29.031811818 28.8846514457 29.9535979772 31.1039724257 30.5381545787 32.5174831029 33.1264668585 32.0492721842 31.5987322068 33.8273476516 33.5916360873 33.4233078309 35.3383565423 35.5802623829 35.6653790529 38.0215700813 38.0274249876 39.5433418785 40.3548870403 42.1792079504 43.1148427279 44.4418520543 46.2588103053 48.2580406773 50.2229921115 52.5148790603 51.1756690563 48.5207936196 46.8528275733 46.5041404469 46.8969874375 47.788787921 49.8637040789 57.5375432227 43.4771558114 29.026759235 5.19045149636e-22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.22442096738e-27 27.8462879375 28.0810063749 27.9631836716 28.823616631 29.1856235744 29.2092324635 29.3757524986 29.1351059475 29.7053676104 31.3060304998 31.1287023598 31.931080211 34.0313701802 32.9478597016 32.5727903273 34.1778934107 34.5277232798 34.4165867559 35.70861708 36.6346848183 36.7709660195 38.6992679423 39.2603527179 40.2917298899 41.7807708567 43.0152790343 44.4422716189 46.0383142013 47.5708081153 49.7375085314 51.3413151145 54.4086485045 56.512349149 58.5546706135 58.1315956075 58.2779594502 58.5200326982 60.5470398017 64.4531300217 69.7590466704 70.6511498788 57.3565484793 7.01387280344e-23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.22442096738e-27 1.22442096738e-27 28.0360624426 28.3040680813 28.7474729569 29.6118271914 29.76427867 29.5406763383 29.5471351778 29.294776412 29.5255691243 31.0796898498 31.7095238744 31.030976591 33.8119049534 33.9864120723 33.1921680179 33.7272755305 35.3853390782 35.0629319519 35.2545675176 37.3461543319 37.6471947991 39.1064352087 40.4051686534 40.3608628798 42.6949745098 43.2662896113 45.805718943 46.9186160517 48.3751018324 50.7620582459 52.7427938873 54.8304010101 56.9592511322 59.3260815744 60.841788958 61.4664180161 62.3207944656 63.8726036557 65.3345226992 65.8011973267 64.2568248579 46.1886825266 9.76215705331e-24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.97593784832e-28 1.22442096738e-27 1.22442096738e-27 28.2008108056 28.4424236224 29.4876790924 30.5132184305 30.000744225 29.7171173599 29.6460747845 29.4654060168 29.556337879 30.8648239688 32.0142279533 31.756688793 32.8410127295 35.0715475071 33.9295891135 33.6278689751 35.8081814739 35.9093085575 35.871116707 37.7471018197 38.4747279303 38.9082302615 41.2454292728 41.6414331086 43.2988598039 44.7128923241 46.2227645981 47.4766692798 49.2967591603 50.9851422877 52.9657546863 54.8064655079 56.6942095544 58.8067471365 60.6101703384 61.7980197099 62.2462326741 61.9430525881 59.8330291298 56.0452997961 44.4645373883 0.346260786439 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.43968222736e-28 1.22442096738e-27 1.9630776295e-26 2.07141116853e-26 28.3129362953 28.4712131476 29.1368344684 29.8358882695 29.8645591017 29.6956650277 29.6446336316 29.6301243053 29.529183696 30.2725655686 31.7360982641 32.3360652555 31.7377202118 34.5187820425 34.9866611476 34.1605562545 35.0492658503 36.7147487696 36.5344969275 37.2182143156 39.2914921413 39.5522618906 41.4793702402 42.7871010851 42.8140172441 45.2485083281 46.6156885249 48.4245365099 49.6867804716 51.1713731421 53.5444292455 55.181615526 57.0436975333 58.9679520076 60.3059199285 61.9905522408 62.6666210613 62.7279903673 62.3596839629 57.6311190404 35.1863358185 7.73854755097e-23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.52378260422e-26 5.14345152879e-26 7.66591943926e-26 28.4216654224 28.5081187861 29.0083898077 28.1595596545 29.3502025768 29.5434639943 29.5326024577 29.6306293541 29.335265143 29.7337966915 31.2110096928 32.5391274361 32.5628313993 33.3125633862 35.7165207571 35.1112033071 34.8757037766 37.1050045544 37.5942860372 37.4269560014 39.6925335403 40.5193284713 40.9143448198 42.9240724697 43.8435111102 45.3646774244 47.2898352494 48.6675303696 50.3932332004 52.1533535633 53.955742277 55.675708038 57.7799180209 59.8232293497 61.6268618061 63.0711533716 64.8746324254 66.4053493861 68.4611694864 60.2926369681 35.1645588312 2.295206276e-23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.93749179976e-27 2.48533011704e-26 3.49413497249e-25 2.36938093672e-21 28.3686675594 28.4610386663 29.3873035269 28.5521703834 29.0025649101 29.2905411599 29.3333297148 29.4111575074 29.1862385284 29.3614399329 30.326293305 31.9725719091 33.2054458157 33.1736533081 34.7031995343 36.3877132724 35.5544505132 35.5478904991 38.1873762927 37.9509644202 38.3331430141 40.8054553752 41.2709563845 42.9482745297 44.3725866598 45.3163194329 47.3272734922 48.9132140233 50.895647167 52.2676428989 54.280459385 56.8483494436 59.2730750992 61.3917147291 63.6190629214 66.066214178 68.17168019 69.5845472215 74.4381151464 62.9109109973 34.8924572676 6.11898533575e-25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.37753172605e-27 1.45514303636e-26 1.39609966501e-24 4.04688198002e-22 1.95413302975e-12 28.0066715393 28.0999861468 28.9760650109 29.1786164009 28.2440976971 28.9387810724 29.114022679 29.2344394238 29.2777212931 29.1234994453 29.5771878206 31.1128107103 32.7004168678 33.6170976466 33.4738430706 36.1102505845 36.8511621531 35.9753293815 37.8898400622 38.8012576658 38.6818394493 40.7234990166 41.9246580386 43.0486739704 44.5829734368 46.1720255295 47.4523462561 49.721092221 50.9445796799 52.3794410955 55.4615192574 57.9787729873 60.5645519322 62.9460422104 66.227627278 69.1504676161 72.216987309 74.4773375585 81.2042609721 62.4086537795 28.4591809931 4.20428548751e-26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.40683366295e-26 1.74213215807e-24 4.0062828502e-22 1.50448974086e-17 3.05045338506e-07 27.6709910882 27.7424534792 27.8082712207 29.2096377175 28.0716497737 28.6724258254 28.9988898314 29.1555909532 29.3738533738 29.0740195526 29.3466334905 29.8698648145 31.801207382 33.4846823735 33.7418014823 34.0778873411 36.623109597 36.8509233252 36.8657523695 38.849101768 39.5732774668 40.2621486373 42.0744904005 43.3657220043 44.7631545001 46.2294815985 47.9763184597 49.6087937039 51.2466249549 53.6152467367 56.1261031794 58.7887557032 61.8312282387 65.3587593616 69.5693244335 74.2123288104 78.1614755785 83.1764334016 93.5478314273 70.2220626955 50.6964024856 1.02269318411e-25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.37753172605e-27 1.03848746154e-24 2.3388232487e-22 3.46217049846e-18 8.66680830372e-09 67.3210191255 27.7487178853 27.8226850505 27.843473612 29.6059994012 29.9478547906 29.1899132877 29.1490088894 29.2012335873 29.3522632081 29.2934169404 29.2235723341 29.748748641 30.7769269605 32.5989810363 34.0923120529 33.970547024 35.366499678 37.101994195 37.3249577023 37.6065369106 39.7258771258 40.7684727027 41.5854355623 43.4123715521 44.8321457421 46.1542692689 47.9215475461 49.6876657319 52.3920354221 54.82615191 57.9583359944 61.4995067849 64.6661335309 68.6562038565 73.4985180226 78.5312790792 86.0185894993 97.645674431 99.9999987594 99.9995811302 80.806661444 1.02269318411e-25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.18167661926e-25 7.14629117057e-23 3.4172440054e-19 8.24195404206e-12 62.089180097 77.5606281562 28.0168732119 28.0692664113 28.5069485324 29.5180456517 30.4226911841 30.0473688655 29.8709721926 29.5461748392 29.4553258548 29.5971565753 29.2346124665 29.643633654 29.9040111343 31.4040893531 33.0718952338 34.4163652428 34.6468817825 36.5093173586 37.6126916466 38.0009277352 38.3612080716 40.6220667521 41.8673400656 43.073218546 44.6060107895 46.5522767071 48.2288170548 51.0706616643 53.4062053761 56.7709574938 59.4541259937 62.6613627995 66.205945685 70.6069097272 75.1602207167 81.4398561927 91.8608603276 99.996656249 100 99.9999998951 77.439831119 2.74561406659e-28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.09666808951e-26 1.01693846512e-23 2.66099568443e-20 7.09305269252e-15 0.351531304831 68.1488177469 70.1331927025 28.0107014946 27.9297005525 28.530071762 28.6381503526 29.8046888775 30.9947579359 31.3817871608 30.2842713775 29.6857333023 29.5759915282 29.5068696933 29.1804082307 29.8329486078 29.9694808223 31.3943151746 33.4443632645 34.7791921757 35.2048445696 37.0123351766 38.1577130817 38.7921485376 39.3083607689 41.5953937765 42.9189487158 44.4591107006 46.6717821249 49.0927615017 51.3793429367 54.1252787681 56.5459732748 59.1711454392 62.9040487782 67.4235535467 71.4658978456 75.6487010499 82.7754516097 89.7348270426 96.863685286 99.9999973579 60.4320111074 65.0332786464 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.11749584726e-25 1.11777475886e-21 5.14932206953e-17 2.71963925395e-07 60.3039172936 59.8340373821 60.1350822107 27.7836672712 27.3561910269 27.480389889 27.7162176222 28.2984432597 30.1397657685 31.7670869742 30.6338338061 29.8333940754 29.4709575186 29.470944352 29.119817713 29.6090911625 29.8821777759 30.5253409883 31.5839141807 34.0967113999 35.3775257936 35.8440574244 37.558871888 38.7431663847 39.6530031688 40.3420658867 42.599308823 44.6053035384 46.5938498832 48.714836179 50.9403428636 53.6908638674 56.3190625899 60.6931631607 64.2895486056 67.7566503571 71.122107288 75.8424872817 80.3688815951 83.0194778631 78.4192044025 75.1717730641 45.2338168614 47.3024157622 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.55739638162e-23 4.3707614992e-19 5.23113700991e-12 49.3911999392 52.9923626271 51.5019333924 50.0876722519 27.6936207255 26.6705258643 26.5813249681 26.7950438166 27.2287401123 28.4283576467 30.1682049751 30.6191250738 29.7691840975 29.3171062707 29.1627031671 29.2677552563 28.8315440137 29.6153935854 29.8158283109 31.4029667788 32.6095772063 34.6865525845 35.9913261283 36.6245570404 38.0758898856 39.5101767676 40.8047040122 42.0477143928 44.4798861066 46.737578143 48.3390581165 51.3578892419 54.1000293079 58.3672738851 61.0165502419 63.8280080043 67.1221964919 71.2580621832 76.3821352699 81.842438622 86.9479950078 94.4457757396 88.889975616 73.4833817773 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.17196991983e-26 1.70807671096e-21 1.69863732921e-15 0.408736849232 51.6263163221 48.7834642498 42.9601945597 41.9245840993 27.7122956538 26.0944949012 25.8597228181 25.8988193856 26.2331193528 26.9805298072 28.5307935846 30.2693099938 29.7404283449 29.1404683363 28.8594963927 28.8424859239 28.932767183 28.6952036633 29.890824927 30.0579988522 31.786737266 32.8526160107 34.9909023009 36.399111373 37.6850718979 38.2695534109 40.7140326172 42.3967203066 44.3636201746 46.61261769 49.1210553415 51.9368626662 55.8918444617 58.0787241561 60.0676844735 64.1811785783 68.3016279648 73.0835707337 78.6471007494 84.6812497427 92.2951979248 99.9998475554 38.0277803685 1.89607200266e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.41770635952e-25 3.80249697155e-19 1.10337172262e-06 52.54590608 49.1684939491 43.0043545171 37.7199194166 35.7312866831 26.9680265405 25.6419146656 25.2355652828 25.2266358999 25.3555017506 25.8558610369 26.4248708375 28.7430518079 29.7383069889 29.054828897 28.5955762291 28.4343784088 28.5510576089 28.6506454762 29.4336141114 29.8954811105 30.0552162234 32.1676144574 33.3951562995 34.5972646684 37.2432454733 38.5792604614 40.0433629273 42.2677261918 44.393528361 46.5861739694 49.5176833231 52.8893444199 55.0712770331 56.749937549 61.146270105 64.9542552037 69.0645647423 73.7136633551 78.7080898359 84.0347401735 89.1573228222 90.8458063899 6.81869066604e-11 3.78597106902e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.67302664047e-22 9.86503642401e-14 54.396802659 55.6051170443 46.1951705605 38.7595759998 34.8725056159 33.890195381 25.8686354999 25.2865613487 24.7586556887 24.7074030354 24.7394368687 24.9058679059 25.7390109128 26.547608713 28.6530939299 28.9587967725 28.3985184157 28.0920695428 28.0595728553 28.3521706139 28.3083281665 29.3153831681 29.8210297996 31.2250178254 32.5342577221 34.1386113119 35.8116400348 38.3298220436 40.0394255553 42.0581031947 44.0025676285 47.0363301245 49.6515015351 52.2862092347 54.0907411167 58.2271413612 61.781962928 65.7562491133 69.8037469803 73.9747924118 77.8690416287 79.7879028559 79.6123752551 72.9514426498 9.56867423065e-10 0.000168389364349 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.17739640812e-27 1.24718062541e-19 44.1691922346 61.8468342209 53.0366043074 44.5901110727 38.0602366719 34.4079507079 33.7830086485 25.1431131422 24.7601034194 24.3763697179 24.1638063217 24.1383525154 24.1402870223 24.4233083494 25.5927065591 26.3171406305 28.3026908278 28.4201983138 27.9116792338 27.6875139669 27.7379062736 27.976775755 28.0932687376 29.5569789279 30.1055694586 31.6705069419 32.677298947 35.4296058143 37.8750066242 39.8011355597 41.5773296555 43.8554174885 46.6625096427 50.0375311615 52.0122265185 55.7687693661 58.9976042327 62.8954854936 66.1787692004 69.5810121869 72.7513774229 74.7264028381 75.4730523366 74.6501418942 54.0952637043 1.26765609806e-09 0.220888989435 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.90977607574e-26 1.50800330832e-07 64.0666735237 58.817838098 50.8020702608 43.9712500544 38.9356704148 36.1764566277 36.0960702336 24.9518694939 24.11395107 23.9071681643 23.5088043721 23.3342465639 23.2154982576 23.1863073868 23.7768718024 25.0470626166 26.0240641625 28.1970407392 28.047552357 27.5692099993 27.422371212 27.5466743674 27.9559754322 28.2277813075 29.7434507804 30.4820439143 32.6696891829 34.5309795683 37.337039792 39.3925673158 41.3002908593 43.8541771993 47.1218236751 49.8911005826 53.5255622865 56.4969797014 60.0497683661 63.1382611249 66.6221559311 69.6177733625 72.0473281993 73.3194536978 74.5173009084 74.3625062132 50.9646316249 4.63274903154e-09 61.1647771907 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.20807183911e-21 56.6732224475 63.2080306554 55.8489449024 49.5151184128 44.3021783086 40.6065433441 38.5379480116 37.1744951777 24.9312867349 23.5044197714 23.0931600582 22.585998446 22.1982224298 22.0036863655 21.9325478313 22.0710404223 23.4628614732 24.2346804907 25.855529801 27.6820281061 27.7924281264 27.4642705332 27.3292731766 27.5818930863 28.1945436166 28.6725163306 30.4975056904 31.7907377906 34.3428105786 36.6526988803 39.018125252 41.6273473538 44.147964421 47.2124328478 50.994251045 54.0534238638 57.5280934511 60.5398690148 64.2753716672 66.9193746773 69.2576477239 71.5682198021 73.8160494816 75.3917945456 73.6976482761 53.3500222305 7.85845489596e-08 91.574921278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.00026155359e-27 48.055662725 66.770104223 61.3792653654 54.6930027397 49.7178823848 45.8955303839 43.0945055106 41.6019135021 40.7151592314 23.7247885679 22.1335081428 21.3393027674 20.9954906141 20.6576459336 20.4870947263 20.4910509833 20.6327263332 21.3581760665 22.9344183291 23.7331450146 25.6719921031 27.0406764726 27.4535042349 27.409093324 27.4528164282 27.9795327295 28.8105595266 29.66400537 31.8386286433 33.753733584 36.596261275 39.2933132359 41.8944128414 44.6310466907 48.0395152543 51.0898151827 55.0221958385 57.9773473924 61.5521280152 64.358495707 67.4659867539 69.8143858526 73.0029473862 75.3523585607 74.8126325479 76.2935752195 67.3996184448 1.1710773605e-06 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.00502916669649 68.2507689784 65.7128576428 60.1867516541 55.0533733213 51.3644067401 49.5907533693 48.0936732476 46.5739544765 46.2791647332 21.4180693466 18.9007980738 18.8621337127 18.9300745005 18.8809369422 18.8852743541 19.0025122385 19.2508916531 19.610500614 21.4946902011 22.7386490008 23.5145433281 23.1898220586 26.5725698999 27.1893864404 27.7351171675 28.0437664498 28.6602347608 29.8413463304 31.1967329638 33.7151498179 36.1120180281 39.291955043 42.2177822925 44.8466016495 48.209830809 52.0988196356 55.3247474688 58.9287776238 61.9218532562 65.6885188148 68.2686444382 71.4166821153 75.8047958451 76.9772879681 78.6985202459 81.5584238561 78.0300742701 2.53611084295e-06 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.78469170753e-26 63.2821338431 65.6674973173 63.7512658574 59.9252484954 56.6345127466 54.5864456665 54.2135307202 55.5057743538 52.9778051126 54.778702858 19.5977977235 17.31933206 17.1422597162 17.2231801966 17.3945628494 17.5398730711 17.7521301118 18.0414308878 18.4306140966 18.9741084343 21.0320428058 22.8955408084 23.1309852817 23.7212390244 25.3181365724 27.334959262 28.4249825553 28.7095845662 30.011821672 31.442470387 33.2183701513 36.3294513759 39.6362403345 42.4725943551 45.3587950724 48.9028363375 52.127911453 56.1715182887 59.1681254647 62.778691161 66.0751887186 70.2175976551 74.6609799974 77.4868263507 79.5251900187 81.803023335 82.0554891785 81.0867681992 6.8686417649e-06 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56.7431335794 64.5503565276 65.0980696091 63.3778953911 60.7955724431 58.7846073992 57.6362669976 57.2201884083 59.4411718826 58.1289864127 57.4212459235 18.587979531 16.8643139558 16.2226174656 16.3114860625 16.5780124142 16.7361461569 16.8913271591 17.1249859543 17.4305106235 17.7991531091 18.5838557379 20.8426029787 23.5939145716 23.9358427797 24.5877156044 25.9605030206 27.8415207486 29.2614023232 30.91051249 31.6149213687 33.679700818 36.4043344076 39.7176811771 42.6802914231 45.3918896602 48.8708272826 52.8656838647 56.0333201224 59.731515343 63.2188349458 68.7565887933 73.0081936536 77.2504523452 80.1987715296 82.5779239686 82.2964619288 83.6836878219 83.7149985622 1.1870081608e-05 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.02079448263e-20 72.7815757053 67.6768891562 65.9289814403 64.2188133322 62.3003086214 60.875064486 59.9442148514 59.3290570275 60.3443265241 59.9891406652 58.4086706412 16.3366316925 16.1600694645 15.5560236136 16.1268959295 16.477965274 16.490479988 16.4493838956 16.4802877537 16.6561225827 16.9452610741 17.4005686819 18.4372740132 20.9261251247 24.5965226227 25.5706709675 25.864371087 27.0680048846 28.6667871707 30.4250030343 32.3730788064 34.7110880463 36.4829075744 39.6727980878 42.7082951881 45.6682300412 49.2444550667 52.6546734199 56.7505412556 60.0446400947 66.1467523113 72.2283714075 76.0988414513 79.8144879894 83.9083922714 85.0967050891 85.8636024098 86.2535748423 84.4223569938 8.39358683744e-06 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64.8243698986 64.3165102306 67.6625576316 66.543308149 65.4595321054 64.0465846138 62.9206201934 62.0679473483 61.429163134 62.1310605615 61.4666091934 60.0765591534 13.3312899037 14.5286263721 15.180861301 16.566914836 16.7261322118 16.5599350511 16.2638126515 16.0774807595 16.0240650795 16.1920034491 16.52616298 17.0867943408 18.5609478239 21.1339464272 24.7056069993 26.0033259218 27.4887108183 28.2780196569 29.9095572911 31.8018761478 34.4143505518 36.9051148262 39.5166424348 42.6238257997 45.6995333424 49.241841649 53.3860559654 56.7434361285 63.0747608364 69.875735881 73.746853837 78.6588864583 83.2680968299 86.5900108612 88.9287261135 91.6079266161 89.7493662635 89.1320953155 0.00993551394164 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.36494689288e-05 83.1333098291 74.1491801695 70.7971173042 68.4989495145 67.1165179953 65.8376384524 64.8384108834 64.0606974916 63.4868595997 63.7995968328 62.9216733831 62.4197328147 12.2509178414 13.0923694008 15.1180580096 16.0444496023 16.0933725377 16.0782004178 16.0881992956 15.8163115793 15.5802032122 15.5273045046 15.7281024756 16.1491126366 16.8601718543 19.0462437972 21.0320312112 25.224399849 27.2994375824 28.3755936905 30.121145624 31.8366496883 34.2402012932 36.594907582 39.4638923977 42.5150553914 45.8092145601 50.0583979521 53.6936344224 59.4306005648 65.7767131694 70.4989373656 75.4913604297 80.5979630593 86.4016465684 91.2822229958 96.3359902695 99.239944966 99.9939219778 99.9997455342 72.3661462384 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83.7616115487 78.0490513312 75.2567190489 71.819493858 69.6846085664 68.1378303638 66.934344429 65.9951846756 65.3164969981 64.8841526819 64.5341319979 63.7216048563 63.7196885638 11.8137186154 12.104685594 13.8642763634 15.1548478176 15.3047632959 15.3453041455 15.3672374733 15.3951585807 15.2925989356 15.0603923434 15.0578848897 15.3501090465 16.0096710638 17.0591710607 20.5621437349 24.3016080082 25.6065818568 28.2225731003 30.4005549016 31.7337910036 33.687509902 36.2844898232 39.5503345789 42.4035714522 46.5453201698 50.5048083913 55.1417992328 60.6542468795 66.2890452881 71.5336028294 76.5528636561 83.9489036582 90.5553815632 98.3449828156 99.9969570131 99.9997506992 99.9999943324 99.9999911901 99.9957908385 65.8869771869 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.53164230991e-12 71.8975697787 75.0088419107 73.4954789325 71.5388954168 69.8199546635 67.9976950375 66.7115754205 65.6342486335 64.8307626385 64.7139986631 64.0366972174 63.0462488279 63.5730630174 11.2030388673 11.096239681 12.0109616983 14.3818000596 14.6337712022 14.6750069468 14.6705450375 14.6695413642 14.6995218286 14.7930091105 14.5938411361 14.7234737652 15.2907655457 16.3831750086 18.0013418464 21.1151301219 25.5804422405 27.7790236444 28.8364056656 31.7640235433 34.3552890658 36.3059584918 38.7861994135 42.9633543145 47.3138075184 50.6158568782 55.6767627682 61.7512944181 67.110350435 71.8953244115 79.4859034256 87.6656152568 95.421105329 99.9911970364 99.9997417052 99.9999983021 99.9999999996 99.9999999983 0.000290587974799 1.49367823384e-05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 87.2367010413 75.444125076 74.8556002566 72.5158262245 71.124032662 69.0187783561 66.9704630638 65.3946446493 64.0240752836 62.8658344278 61.9341051265 61.4998938694 61.1563070888 62.4266713126 10.3796471562 10.1229531994 10.4465128253 13.8042173629 14.1068530055 14.1084578007 14.0435677788 13.973157302 13.9430412123 13.979408723 14.1669666862 14.3196835504 14.6733269784 15.5325498902 16.8988578342 18.9156618013 22.9465235212 26.648167916 28.8289045912 31.7742818844 32.6633586998 35.893868079 40.1966760156 43.9462823116 46.4080642618 51.5876225088 57.2282365108 61.7063771599 67.3537020873 74.5270156204 82.6214465947 89.666772092 98.1677407021 99.9980294146 99.9999977756 99.9999999999 100 99.9999999949 2.42101851191e-09 7.63007759501 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.10066428576e-24 85.6995273831 79.3345185819 75.7813909726 72.9010050893 70.6477441081 68.5736214401 65.74309048 63.8463893536 62.3105563153 61.1006276564 60.2040182036 59.9538852219 59.2914014441 60.1840615035 9.65602531883 9.40154963986 9.37463789728 13.3193763947 13.652244048 13.6073096491 13.4561196833 13.2957671133 13.1771405959 13.1511703443 13.2749120092 13.6321802644 14.3258237495 15.0225174259 16.1099871016 17.872493309 20.104339596 24.107286327 28.2979342552 30.3586997522 32.9116973131 36.794692842 40.6342838229 42.3157150576 47.2180029134 52.579156576 56.7089237389 62.1778495709 68.9943696197 75.3141656436 83.3068175477 91.829317488 99.7461002739 99.9999175783 99.9999999975 100 100 99.9999112538 5.69633993106e-14 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 93.5471531784 73.8807719475 79.3133267959 76.3934870589 73.5067143759 70.6863989851 67.8723108067 64.7565176012 62.5695199966 60.8993620188 59.6377109133 58.8836145716 58.7609021386 57.8180482599 57.0385853224 8.84127864431 9.30251797553 8.62126240161 12.3003556803 13.2303553017 13.1310546 12.8782659811 12.6135510956 12.4018027965 12.3061128681 12.3899951577 12.724000797 13.3348452379 14.3273819562 15.8516846383 17.5874936777 19.1952322201 21.3188186167 25.1962180163 29.3772493552 32.502727595 35.9663051738 38.4560776374 42.1213120972 48.0969934925 52.5478194937 55.9876946387 61.7542528067 68.6540358427 77.0054331144 85.0261248857 92.5355438037 99.9397251519 99.9999966093 100 100 100 99.9993975636 1.51136609476e-13 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99.9999992958 93.2785911621 84.782891316 79.2889576353 75.3171292382 71.1076115024 67.3334877921 64.2173821083 61.8148344009 60.0051336869 58.6286320008 57.9232226582 57.5193501717 56.5402446734 55.8411363504 7.8947027284 9.53069692631 7.66840610756 11.1645441332 12.9399947213 12.6817183419 12.30484236 11.9709775825 11.7386182478 11.6324780592 11.6851431656 11.948174098 12.4980972084 13.476861048 15.0017171812 16.8691609754 18.8391979047 21.0095501156 23.068110854 25.4167403894 29.6492546315 33.7247037932 36.9556048577 41.7094343384 47.1928404782 51.2608019607 55.6468383885 62.3266476243 69.9116141883 76.169494669 84.5089874579 94.285057239 99.9951659856 99.9999996411 100 100 100 99.9999873329 1.95973083539e-07 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22.7000852344 77.613459273 91.7928249831 86.8381359588 81.9039047489 76.3523883474 72.3183579157 67.5064532699 64.2301935873 61.5908179297 59.6409163859 58.3264772156 58.0065007003 56.6353476102 55.6028676227 55.0455985488 6.46518306826 9.11582619536 6.4332983473 10.9904937734 11.7785571356 10.5433056402 9.08933988984 7.98874391051 7.25822810978 6.90732130736 7.0245569883 7.69281952525 8.95425350836 11.0152278888 13.9756522777 16.696158114 18.1759900059 19.7470150857 21.7315112133 24.2596430306 26.8767377845 29.8432402354 34.191904463 40.5278553276 46.2292213917 51.0815560175 54.3573622039 60.4257397518 67.6778776465 76.5596987813 86.5846355673 95.8283441728 99.9894735887 99.9999999997 100 100 100 100 2.48982402905e-06 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 99.9999997303 97.8734755744 90.756422199 84.6485469674 78.4656287546 72.7701702648 68.2517774245 64.464897092 61.4318324431 59.248356561 57.8714064386 57.1224437505 55.5894573967 54.7857789657 55.2043974577 5.42355045487 6.96530077575 5.12119582077 10.0057016076 8.57576986674 7.33670390004 5.64890575098 4.88653049758 4.84486792671 5.19036834761 5.97500552353 7.08952601546 8.49049586005 10.3695397766 12.4351112124 14.1363781743 15.5255823913 17.1714417396 19.765244852 23.3289504038 25.9662556869 28.8977695484 32.6971518603 37.7766731654 42.7966499813 46.6450016774 51.3211619633 59.203852029 67.6702261029 77.8771592777 87.4034750231 94.2046381345 99.9965604301 100 100 100 100 100 3.68912066988e-05 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.22996772185e-25 84.6586868295 99.9998228904 99.9206018981 93.7006592897 85.9114657005 80.1495769365 73.6015632413 68.6074368085 64.3750880519 60.8358210884 58.2371424995 56.6824992969 55.1947442193 53.9028436334 52.946594475 54.1423434905 6.36910516084 4.079276514 4.19043677864 11.1571178285 9.22385048317 6.21824611715 4.07614209161 3.80060778644 4.08337960534 4.3029897497 4.72125876376 5.5493551618 7.23036504236 9.80723010737 12.5534200841 13.8836848465 15.050301938 16.6266353983 18.7128982763 20.8918400112 23.3943483096 26.8598309699 30.994594296 35.7227512148 39.5151718871 43.3263964302 49.0497370817 57.1689357533 67.0889658084 77.0351820927 85.5969469111 93.530707588 99.9993973506 100 100 100 100 100 0.000147621332489 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99.0914236093 96.7175202369 99.999987364 99.9996774144 97.8836099118 88.9587310681 80.6774266622 74.1023195474 68.4407266065 63.7630288741 59.8894694909 56.8079821634 54.5858955738 52.4590135984 51.055712212 49.9798075951 51.5237429783 9.09645646752 4.58651804452 3.98985362901 11.9681114136 10.3793038571 4.37642875241 3.04356983608 3.16906095403 3.38752816737 4.02119426179 6.32252489841 8.34234362001 8.43786298423 9.35338014538 10.7950237761 12.1874904951 13.525954392 14.9979426713 16.6725484134 18.5640481502 20.8108457001 23.8916211586 28.0321627789 32.6959581392 37.5251206634 41.3310825299 47.7892318518 55.5267443723 64.084090913 73.8916032847 83.50580043 93.3081241454 99.9987920139 100 100 100 100 100 0.00630203651795 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 99.9999999423 99.9970853578 93.3668386669 83.3018636473 74.8271023036 68.0401532495 62.8759861917 58.6840025129 54.229366111 51.0949686317 48.8160194406 47.5382233308 46.5731054343 47.9154432547 10.2493756172 5.93053807541 3.95989943681 5.84075423824 4.8065321811 4.38990607428 4.90643310364 6.30620073744 8.8148027308 8.07095354662 6.67003492942 5.65606393468 5.6648624948 7.02880296243 9.05927912269 10.8069873161 12.2573691351 13.4983751827 14.6675195617 15.8957228077 17.8214113919 21.3550599651 25.9620098348 30.0634563374 33.9076138561 38.5029148018 45.0083156393 53.0132159099 62.0722648651 71.3266576879 79.3366056018 89.3168333639 99.9275033114 99.9999643262 100 100 100 100 0.0249531657106 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.11052438933e-24 99.9999995598 100 100 99.9999999999 99.9999927758 97.587304792 86.771025683 76.518481502 67.9594521106 61.4274373936 56.5265743066 52.3731305074 48.9451292209 45.6517043175 43.4173406319 43.1675230412 43.4418074212 8.18205360937 6.25106583049 4.12345838992 4.69171520185 6.6873220609 8.76916602196 10.475297615 9.75282703855 8.79653423504 7.66698418916 6.17078799137 4.43206716843 3.68274482098 4.54655026891 7.59564011127 10.1864638674 12.5194294069 14.0103973789 13.5549680559 13.0871019043 13.6381785388 17.0409426399 21.3897156004 25.7143272675 29.8888011936 34.7795808978 41.5855686675 49.8659138522 58.4355091337 66.1728803048 74.8158968756 86.4237035716 94.8056619447 99.9685148669 99.9999996629 100 100 100 28.6493384824 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 100 100 99.999999998 99.9955722623 90.4604003382 78.7411903977 68.3223912645 60.1014643595 54.0771337891 49.0901831417 45.3876404957 42.4457692676 38.7198636883 39.0990363859 38.4583074843 6.00867200897 6.68400385516 4.43961468782 4.3522287787 9.60857352323 11.1950100481 10.9398327813 10.535215289 9.88450552365 8.8232097373 7.12859206499 4.38407558375 2.99729331752 2.99078850898 7.18442670939 10.6297213416 11.2270949997 11.1170642505 9.70442537727 6.37736018136 6.04177345258 9.82549680324 16.9397067345 21.2554511799 25.066132208 29.6693012362 36.4878538582 45.14966248 53.0074718331 59.8298384701 68.1762966038 79.2841213278 85.4718968333 94.0793190131 99.9976216606 100 100 100 78.9007136843 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 100 100 100 99.9999984976 94.9444386616 81.465340282 69.6588377737 59.6134265983 52.3957038074 46.2446030265 41.3709612499 38.1139722023 34.1481148634 33.7953813305 34.8100725615 5.40438159703 8.19881822249 4.97539416281 4.10510984266 11.7887779363 12.1323165641 12.2306356662 12.0876733373 11.6251463051 10.6955427066 9.0240225061 5.87643576377 2.42231674184 2.00207352735 4.82440085717 8.73853517706 10.599977201 10.746109945 8.69448491835 1.90946975648 0.463032174915 4.72806567416 6.98915084059 12.0285238472 16.8198979912 21.2041132295 28.66339519 38.5109397576 46.2284763653 51.2930459417 58.2298190578 69.5721274458 70.4592656257 79.7048344739 95.4153248726 99.9999829047 100 100 99.9659925442 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.57574610893e-25 100 100 100 100 100 100 99.9999999986 99.7662140057 84.6668396221 71.4496511934 59.7387019322 50.87247664 44.587963592 38.5497112177 33.3834885538 29.0698466691 29.5641631191 34.4110801852 2.59341265851 3.60187520288 4.55693386686 7.10039605301 13.5449147359 14.1566942273 14.55741344 14.6901550803 14.594882344 14.0020088419 12.6377675531 9.88016042666 4.27792317316 1.27844037108 0.826348871152 2.44659006576 8.11168127933 10.0789713526 9.86824307937 7.86701824832 0.154616449972 0.0370121233184 11.401611762 17.6524173822 18.0539655576 17.3158701593 21.5876626259 31.6068452169 41.7399463702 40.0606350029 45.3208114095 52.7892094342 53.5579941411 50.8653395885 74.9064726386 95.1891209161 99.9999997211 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 100 100 100 100 100 99.9986438139 87.4408393601 72.6966593577 60.1691936703 50.1538795174 42.7074443048 36.9660602735 32.173304063 28.513658485 29.1459854581 27.9914108668 2.16243331949 2.77480236714 6.22334087518 4.36755283967 14.7982479395 16.5050696345 17.5222340876 17.7710506629 17.8925965512 16.6326236306 14.6189595157 11.4354497057 6.11607739976 0.973472518197 0.674573767992 6.24750342861 13.0131419697 13.9442363352 10.3061649325 5.16898585073 0.0340129416995 0.00665213600481 0.0015216611108 0.00115761643023 0.00117414912947 0.806491650945 1.78987596077 0.295909918362 9.01714701353 23.8381982862 9.46443978318 42.8747335091 23.1466552827 45.1995784707 33.448317347 64.1024393606 62.8726450756 99.9997216172 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.17017496008e-27 100 100 100 100 100 100 100 100 99.9999755201 88.5543017704 73.378850273 61.3743639272 51.042148923 42.8207897837 36.8157650048 31.8065157517 27.2906137044 24.6479851849 18.1170903053 1.41995818968 6.96052511468 6.22058153788 3.79263834236 0.769926209765 2.13974408579 9.3358013332 8.4000932651 7.79964360202 5.80274356608 3.10566208727 1.55924934685 0.675864135587 0.230039627508 0.0848766227819 0.0238467784945 0.011933615581 0.0111857423523 0.00814596043875 0.00511959443904 0.00336565549418 0.00200427413969 0.000997682895579 0.000539492650271 0.000436279358545 0.000277466099613 0.000134102393901 5.59718132051e-05 3.96456897116e-05 1.43820248372e-05 1.29893850029e-05 6.99200526627e-07 0.000174923680772 1.27622095029e-09 0.000188677958515 9.07041355131e-13 0.00153565256681 1.9732364306e-18 1.24743687139e-17 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.93749179976e-27 100 3.06377909876e-06 100 100 100 100 100 100 99.9999963483 87.965236983 71.9282468357 60.4385126764 50.4253467766 41.6447406758 34.6067392224 29.0197570841 24.6744268259 22.0159713988 12.5751008165 ) ; boundaryField { frontAndBack { type empty; } upperWall { type calculated; value uniform 0; } lowerWall { type calculated; value uniform 0; } inlet { type calculated; value uniform 2.47945245895e-24; } outlet { type calculated; value nonuniform List<scalar> 20 ( 1.42785357229e-26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.22442096738e-27 2.77536104944e-26 ) ; } } // ************************************************************************* //
1be21123e913d4bbad14a67c166af7d397e5c00b
120ae367cec1411111873b731e721a51ccc8723d
/C++/Basico/137-Ejercicio 4 - Jerarquía de clases (Herencia y Polimorfismo).cpp
fd566d979ff132622c80514533f53e9e5b938934
[]
no_license
ricardovergarat/1-programacion
45c5bfdb36103980188b461ba310311bc5d359a2
c13224243a618c086b9792a337ac5ab387e03312
refs/heads/master
2022-06-17T06:32:03.397573
2022-05-31T16:59:45
2022-05-31T16:59:45
204,480,283
0
0
null
null
null
null
UTF-8
C++
false
false
992
cpp
137-Ejercicio 4 - Jerarquía de clases (Herencia y Polimorfismo).cpp
# include <iostream> using namespace std; class animal{ private: int edad; public: animal(int); virtual void comer(); }; animal::animal(int _edad){ edad = _edad; } void animal::comer(){ cout << "comer en el suelo" << endl; } class humano : public animal{ private: string nombre; public: humano(int, string); void comer(); }; humano::humano(int _edad, string _nombre) : animal(_edad){ nombre = _nombre; } void humano::comer(){ cout << "comer en la mesa" << endl; } class perro : public animal{ private: string nombre; string raza; public: perro(int, string, string); void comer(); }; perro::perro(int _edad, string _nombre, string _raza) : animal(_edad){ nombre = _nombre; raza = _raza; } void perro::comer(){ cout << "comer en el plato del suelo" << endl; } int main(){ animal *animales[2]; animales[0] = new perro(5,"atila","pastor aleman"); animales[1] = new humano(20,"ricardo"); animales[0] -> comer(); animales[1] -> comer(); return 0; }
f1521617da7e99a3d8f0fffb84094438f2ca9016
fc1a7787a068a225ad5ce058c5328421ba590daa
/SocialQuantumTest/GeometryUtils.cpp
f70395f72cdf91303d3d26cb69f934702a16b273
[]
no_license
ezerty/MyCircles
64001e35383bcd949b510d52f3c2f5f8d1c7f016
4ee1a38254d6ea5e71899ef44dd13c53cc5547ac
refs/heads/master
2020-04-14T03:07:28.729936
2013-07-29T18:24:55
2013-07-29T18:24:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,594
cpp
GeometryUtils.cpp
#include "GeometryUtils.h" using namespace GeometryUtils; const float GeometryUtils::SHAPE_MIN_SIZE = .05f; const float GeometryUtils::SHAPE_MAX_SIZE = .2f; const float GeometryUtils::BORDER_LEFT = -1.f; const float GeometryUtils::BORDER_RIGHT = 1.f; const float GeometryUtils::BORDER_TOP = 1.f; const float GeometryUtils::BORDER_BOTTOM = -1.f; const float GeometryUtils::BORDER_NEAR = 1.f; const float GeometryUtils::BORDER_FAR = -1.f; const RGBColor GeometryUtils::COLOR_WHITE = {1.f, 1.f, 1.f}; const RGBColor GeometryUtils::COLOR_RED = {1.f, 0.f, 0.f}; const RGBColor GeometryUtils::COLOR_GREEN = {0.f, 1.f, 0.f}; const RGBColor GeometryUtils::COLOR_BLUE = {0.f, 0.f, 1.f}; const RGBColor GeometryUtils::COLOR_CYAN = {0.f, 1.f, 1.f}; const RGBColor GeometryUtils::COLOR_MAGENTA = {1.f, 0.f, 1.f}; const RGBColor GeometryUtils::COLOR_YELLOW = {1.f, 1.f, 0.f}; const RGBColor GeometryUtils::COLOR_BLACK = {0.f, 0.f, 0.f}; RGBColor GeometryUtils::PAINTER_COLORS[] = {COLOR_WHITE, COLOR_RED, COLOR_GREEN, COLOR_BLUE, COLOR_CYAN, COLOR_MAGENTA, COLOR_YELLOW}; const float GeometryUtils::Z_OFFSET = .0001f; float GeometryUtils::getRandom(float min, float max) { return min + (float)rand()/((float)RAND_MAX/(max-min)); } float GeometryUtils::getRandomCenterX(float size) { return getRandom(BORDER_LEFT + size, BORDER_RIGHT - size); } float GeometryUtils::getRandomSize() { return getRandom(SHAPE_MIN_SIZE, SHAPE_MAX_SIZE); } RGBColor* GeometryUtils::getRandomColor() { int randomIndex = rand() % sizeof(PAINTER_COLORS) / sizeof(RGBColor); return &PAINTER_COLORS[randomIndex]; }
31b1c95418b6935b280175a49bbd244994fa82ee
bb5f55f6d0bd8bbb53e95c3a6def7f423e0e2234
/it.unibo.finaltask.basicrobotcontroller/BasicRobotController/PID.h
eec6e1773dde3fdedcc91946e9245355244dacf8
[]
no_license
BMRTP/smartcleaner
5ac314966f01ab1dd658c668136ece74aa9a431c
792291d8f50bb71ad0eb45fd9203025553790335
refs/heads/master
2022-12-25T13:11:30.167444
2020-02-11T11:03:30
2020-02-11T11:03:30
235,150,365
5
0
null
2022-12-11T22:46:57
2020-01-20T16:51:07
Java
UTF-8
C++
false
false
418
h
PID.h
#ifndef __PID__ #define __PID__ class PID { public: PID(float p, float i, float d, float maxOutput); float update(float error); void setParameters(float p, float i, float d); void reset(); private: float p_term(float dt); float i_term(float dt); float d_term(float dt); float p,i,d; float error, lastError, integral; float maxOutput; long errorTime, lastErrorTime; bool first; }; #endif
f56f2c8ed363940865397636fe6a4747ba95f3b4
523e4a8f9acda8a2833ca9189ddc585b688565b3
/src/share/database/SqlDelayThread.h
4cdce5bb57d6c166dde305adb89ec767ba44dd90
[]
no_license
snowleopard331/network_framework
89b0eefa8da03f08753c6b4371779ba2ed9ecddb
dbc248008845bd24eeae3afda7fd65be44bbb742
refs/heads/master
2018-09-27T07:43:47.125657
2017-11-03T10:03:27
2017-11-03T10:03:27
108,491,693
0
0
null
2017-11-03T03:06:07
2017-10-27T02:53:07
C++
UTF-8
C++
false
false
1,207
h
SqlDelayThread.h
/** * author : yunfei * email : snowleopard331@163.com * date : 2015/09/07 */ #ifndef _SQL_DELAY_THREAD_H_ #define _SQL_DELAY_THREAD_H_ #include <boost/thread/mutex.hpp> #include "LockedQueue.h" #include "Threading.h" class Database; class SqlOperation; class SqlConnection; class SqlDelayThread : public Boost_Based::Runnable { typedef Boost_Based::LockedQueue<SqlOperation*, boost::mutex> SqlQueue; private: SqlQueue m_sqlQueue; /**< Queue of SQL statements */ Database* m_pDbEngine; /**< Pointer to used Database engine */ SqlConnection* m_pDbConnection; /**< Pointer to DB connection */ volatile bool m_running; /**< TODO */ // process all enqueued requests void ProcessRequests(); public: SqlDelayThread(Database* pDb, SqlConnection* pConn); ~SqlDelayThread(); // Put sql statement to delay queue bool Delay(SqlOperation* sql) { m_sqlQueue.add(sql); return true; } // Stop event virtual void Stop(); // Main Thread loop virtual void run(); }; #endif//_SQL_DELAY_THREAD_H_
790edc957a1a2a4c5d1287cba957b2a03e3091a3
636bc4350cbc68c209bca5502bf60994660d9dad
/ccf.cpp
f8e0de05873dff0fedd86ceafb27e7cdf4c89f85
[]
no_license
CCFNB/CCFnamearena
17fce76777cb570d48782b1e649694d53556634c
2720e210290758118f9f83b3bb0dd662f1720b8f
refs/heads/main
2023-09-03T20:19:40.240331
2021-10-22T12:22:53
2021-10-22T12:22:53
413,784,575
4
1
null
null
null
null
UTF-8
C++
false
false
825
cpp
ccf.cpp
//# pragma optimize O(2) //# pragma optimize O(3) # include <stdio.h> # include <random> # include <time.h> # define ull unsigned long long FILE *fr,*fw; char s[110],lin[110],pos=-1; std::mt19937 ran(time(0)); ull ba30=(1<<30)-1,ba60=((ull)1<<60)-1; void transf(ull x,int lef) { if(lef) transf(x>>6,lef-1); int now=(x&63); if(now>=0 && now<=9) s[lef]=now+'0'; if(now>=10 && now<=35) s[lef]=now-10+'A'; if(now>=36 && now<=61) s[lef]=now-36+'a'; if(now==62) s[lef]='{'; if(now==63) s[lef]='}'; return; } ull longran() { ull x=(ull)ran()&ba30; ull y=(ull)ran()&ba30; return (x<<30)+y; } int main() { freopen("ccf.out","w",stdout); int i,j,n,m,w; ull cun; printf("!test!\n"); for(i=1;i<=8000;i++) { cun=longran()&ba60; transf(cun,9); printf("\n%s@€€£",s); } fclose(stdout); return 0; }
116797ecfd1ca4df40835e89d633a9eb013b0387
094c26d37e9fceafda572390dd0c156340c3fb86
/Source/Ardoor/Ardoor.hpp
f253473da116b08e043a9b5c1f0b0c6ab577af73
[]
no_license
WaTChi/thesis
c353ecd29599862bf8e1fa3e216cdae0313f705a
fca9b2ef578bca11157d304020ba735ff2748ffc
refs/heads/master
2020-12-26T00:26:52.343832
2014-02-05T16:40:26
2014-02-05T16:40:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
390
hpp
Ardoor.hpp
#ifndef ARDOOR_H #define ARDOOR_H #include <QtCore/qglobal.h> #include <Ardoor/Rendering/GLUtils.hpp> using namespace std; #if defined(ARDOOR_LIBRARY) # define ARD_EXPORT Q_DECL_EXPORT #else # define ARD_EXPORT Q_DECL_IMPORT #endif #if !defined(ARDOOR_DLL) # undef ARD_EXPORT # define ARD_EXPORT #endif #if (defined DEBUG && defined NVWA) #include <debug_new.h> #endif #endif
58863ac150ffc8d8439fef9c25adfca71ece471b
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/git/gumtree/git_repos_function_1175_git-2.0.5.cpp
a83b9c0467abf0712eddbdae453c242e33a606cc
[]
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
184
cpp
git_repos_function_1175_git-2.0.5.cpp
static void parse_mark(void) { if (starts_with(command_buf.buf, "mark :")) { next_mark = strtoumax(command_buf.buf + 6, NULL, 10); read_next_command(); } else next_mark = 0; }
835f1f5eeb46d8dba5cc649e3e3856f436211d76
72f55e9665b4ddef219c1e2e6acf131082f03e33
/src/cyber_entity.cpp
23fa48967bb888d5343e8f994a552b380f41f700
[]
no_license
Cloudxtreme/CyberBot
fd5c4eadfff098fb63f2e097666258ddf57cbac7
8b39faf23d99a34e234792f404acaf116c281c94
refs/heads/master
2021-05-26T19:36:18.998137
2011-04-12T09:30:02
2011-04-12T09:30:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
942
cpp
cyber_entity.cpp
#include "cyber_entity.h" std::vector<CyberEntity*>CyberEntity::entityList; CyberEntity::CyberEntity(CyberSurface* surface){ cyberSurface = surface; entitySurf = NULL; x = y = 0.0f; width = height = 0; animationState = 0; } CyberEntity::~CyberEntity(){ } bool CyberEntity::onLoad(char* file, int width, int height, int maxFrames){ if ((entitySurf = cyberSurface->onLoad(file)) == NULL){ return false; } this->width = width; this->height = height; animationControl.maxFrames = maxFrames; return true; } void CyberEntity::onLoop(){ animationControl.onAnimate(); } void CyberEntity::onRender(SDL_Surface* displaySurf){ if (entitySurf == NULL || displaySurf == NULL) return; cyberSurface->onDraw(displaySurf, entitySurf, x, y, animationState * width, animationControl.getCurrentFrame() * height, width, height); } void CyberEntity::onCleanup(){ if (entitySurf){ SDL_FreeSurface(entitySurf); } entitySurf = NULL; }
131da8bb4c0dadb7995f1326607dd3b48ff3f38e
ca4d70080ced49e6c9d5110a8563eafdbe79eec4
/src/input/parsers/openfoam/parser/points.h
b38c1cb99218d2bf1ce58d3474fc96c05864b70d
[]
no_license
It4innovations/espreso
f6b038dcd77f7f3677694e160a984bc45f4a4850
5acb7651287bd5114af736abc97c84de8a6ede99
refs/heads/master
2023-01-28T13:35:52.731234
2022-05-24T14:24:05
2022-06-26T06:35:31
66,345,061
18
6
null
null
null
null
UTF-8
C++
false
false
491
h
points.h
#ifndef SRC_INPUT_OPENFOAM_PARSER_POINTS_H_ #define SRC_INPUT_OPENFOAM_PARSER_POINTS_H_ #include "parser.h" #include "basis/containers/point.h" #include <vector> namespace espreso { struct OpenFOAMPoints: public OpenFOAMCollectiveParser { OpenFOAMPoints(const char *begin, const char *end): OpenFOAMCollectiveParser(begin, end) {} bool readData(std::vector<esint> &nIDs, std::vector<Point> &coordinates, double scaleFactor); }; } #endif /* SRC_INPUT_OPENFOAM_PARSER_POINTS_H_ */
eb9f0ed39f0bf60da6563f212a98eafb8a44fdac
3e4f3a36bd030b931a676f9989c2786eca838418
/InverseWayLiberation/src/Physics/JointFactory.h
a4f497e2486fe9190c279303b5a65da6b7cc5eda
[]
no_license
amjadtbssm/TGE
0506491b449c98ace581e24692efcb3218820d06
31667d8268bb38a1efa50b617ee53b54dbdafe4b
refs/heads/master
2020-08-12T03:28:46.718097
2018-11-25T16:33:44
2018-11-25T16:33:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,271
h
JointFactory.h
#pragma once struct DistanceJointDef; struct FrictionJointDef; struct GearJointDef; struct PrismaticJointDef; struct PulleyJointDef; struct RevoluteJointDef; struct RopeJointDef; struct WeldJointDef; struct WheelJointDef; namespace JointFactory { /* Crée un DistanceJoint */ // Retourne l'ID du joint int CreateDistanceJoint(const DistanceJointDef &def); /* Crée un FrictionJoint */ // Retourne l'ID du joint int CreateFrictionJoint(const FrictionJointDef &def); /* Crée un GearJoint */ // Retourne l'ID du joint int CreateGearJoint(const GearJointDef &def); /* Crée un PrismaticJoint */ // Retourne l'ID du joint int CreatePrismaticJoint(const PrismaticJointDef &def); /* Crée un PulleyJoint */ // Retourne l'ID du joint int CreatePulleyJoint(const PulleyJointDef &def); /* Crée un RevoluteJoint */ // Retourne l'ID du joint int CreateRevoluteJoint(const RevoluteJointDef &def); /* Crée un RopeJoint */ // Retourne l'ID du joint int CreateRopeJoint(const RopeJointDef &def); /* Crée un WeldJoint */ // Retourne l'ID du joint int CreateWeldJoint(const WeldJointDef &def); /* Crée un WheelJoint */ // Retourne l'ID du joint int CreateWheelJoint(const WheelJointDef &def); };
22c79c04735382da0ba19b9cc3d1c87ccb8c3da6
1cd80a11c264ffee3314e5660dc51076c1076543
/rocketman/Classes/ParachuteRewardScene.cpp
6922d67c0748b8f1f00a78550b9ca925f47c3a1d
[]
no_license
nitaigao/wonderpants
8d5bf50a2dc9d7606e05f7a6697f7b73bdac5d44
f4a8c37bf7ee6e74530a0a93eceba564751b2c9e
refs/heads/master
2018-09-11T20:52:20.817270
2018-06-05T15:47:58
2018-06-05T15:47:58
15,709,668
0
0
null
null
null
null
UTF-8
C++
false
false
693
cpp
ParachuteRewardScene.cpp
#include "ParachuteRewardScene.h" #include "ParachuteRewardSceneView.h" #include "ScreenManager.h" ParachuteRewardScene* ParachuteRewardScene::nodeWithChapter(int chapter, int level) { ParachuteRewardScene* scene = new ParachuteRewardScene(chapter, level); scene->init(); scene->autorelease(); return scene; } ParachuteRewardScene::ParachuteRewardScene(int chapter, int level) : chapter_(chapter), level_(level) { } bool ParachuteRewardScene::init() { ParachuteRewardSceneView* view = ParachuteRewardSceneView::nodeWithController(this); addChild(view); return true; } void ParachuteRewardScene::continueToGame() { ScreenManager::activateGameScreen(chapter_, level_); }
514726fbcf4eb41239fec9e9fa6197ac95baaffd
94fe779db3f4ff6b11fe99657161dc826a71f4e8
/tests/nullopt.cpp
fd0f93ebb1322d0b6edbd9856274b258134aded3
[ "MIT" ]
permissive
groundswellaudio/swl-optional
792afe23df8f514e4238d1dcf473e1291015313d
84a2dfa6a16f6b96e2e2e01f0a37e82bf3ca6c78
refs/heads/main
2023-08-12T07:50:50.382670
2021-09-13T22:19:36
2021-09-13T22:19:36
401,893,547
29
2
null
null
null
null
UTF-8
C++
false
false
262
cpp
nullopt.cpp
#include "test_util.hpp" int main() { swl::optional<int> o1 = swl::nullopt; swl::optional<int> o2{swl::nullopt}; swl::optional<int> o3(swl::nullopt); swl::optional<int> o4 = {swl::nullopt}; assert(!o1); assert(!o2); assert(!o3); assert(!o4); }
bcabee8bf67daf907bfc3043afecc742ae460fe1
dbe1bd44f18d6b07835fe4da8c5bc3f42105e704
/HEADERS/placesHEADERS/hangarHeader.h
65b6dc9d06d0133f4e5868f7121bd8629f43610f
[]
no_license
sneakyLama/TextAdventureSupreme
9850c16fd1b3c969f41c0b6ce75a723e771d990d
02a95a6452fc7e0b5192b9020a4b0d65c5371dfc
refs/heads/master
2016-09-06T09:45:35.342449
2013-10-05T23:37:07
2013-10-05T23:37:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
70
h
hangarHeader.h
#include <iostream> #include <string> #include <cmath> void hangar();
25c2064070a7650e7ee85ba72ef1491506499057
b0af9a48ef88805da0f405f36a33a1cf55e4f3c8
/fade/fade.ino
b23cbb820f7359fc960585728c589b9f24d586a8
[]
no_license
robofunro/7_proiecte
c8b9078ff91fb74f6e7698f87d5792d106611378
2dc6e8d62950b977a9095cdf35526efa78b4c079
refs/heads/master
2022-09-06T02:26:55.740941
2022-08-17T20:04:13
2022-08-17T20:04:13
183,785,691
0
0
null
null
null
null
UTF-8
C++
false
false
755
ino
fade.ino
int led = 10; // Pinul la care se va conecta ledul . Trebuie sa alegeti un pin care suporta PWM. Pe Arduino UNO puteti sa alegeti unul din pinii 9,10,11,3,5,6 int brightness = 0; // luminozitatea int fadeFactor = 5; // factorul de schimbarea luminozitatii void setup() { pinMode(led, OUTPUT); } // the loop routine runs over and over again forever: void loop() { // Seteaza luminozitatea ledului analogWrite(led, brightness); // Schimba gradul de luminozitate pentru urmatoarea aprindere brightness = brightness + fadeFactor; // In cazul in care intervalul (0,255) este depasit se inverseaza directia if (brightness <= 0 || brightness >= 255) { fadeFactor = -1 * fadeFactor; } // Putina pauza delay(30); }
7d6286e303a43a47aca533bdbac48fbbe339996f
26df9d542c858601be054f621e127ee0792238fe
/Plus One.cpp
27156a2f140c9a8f3a3025fe1a219eb9734058f0
[]
no_license
ioleon13/LeetCode
5bca7f61b83045e684c381af520e9f5f5704a037
5be0044bf0a9f22fdf6a0d0e7246b64878680dab
refs/heads/master
2021-01-25T08:55:11.491152
2013-07-31T06:55:03
2013-07-31T06:55:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
589
cpp
Plus One.cpp
class Solution { public: vector<int> plusOne(vector<int> &digits) { // Start typing your C/C++ solution below // DO NOT write int main() function if(digits.empty()) return vector<int>(); int n = digits.size(); vector<int> vec(n,0); int carry = 1; for(int i = n-1; i >= 0; i--) { int total = digits[i] + carry; vec[i] = total % 10; carry = total / 10; } if(carry) vec.insert(vec.begin(),carry); return vec; } };
0013f39ff570f4a1dc56c3dfd2e4527ea0d561ae
e56c11cf49d721155d0e509d2e97c6779518039b
/프로그래머스 코딩테스트연습/Hash (Map)/level2_위장(2).cpp
dfabdb09de109c5c8701e1db62c0d9857a4e66df
[]
no_license
KimYJin/Algorithm
d3385125ba7bbd0939ebb41a16e9122f60b118f6
b2b163e182ca96cdfbdf3b38ac20bb764a167fc4
refs/heads/master
2020-07-13T01:38:21.055922
2020-03-05T23:21:22
2020-03-05T23:21:22
96,300,306
1
0
null
null
null
null
UHC
C++
false
false
867
cpp
level2_위장(2).cpp
#include<iostream> #include <string> #include <vector> #include<unordered_map> using namespace std; //서로 다른 옷의 조합의 수 구하기 int solution(vector<vector<string>> clothes) { unordered_map<string, vector<string>> m; //key: 의상종류, value: 의상 리스트 for (vector<string> c : clothes) { m[c[1]].push_back(c[0]); //의상종류 별로 의상 분류 } int answer = 1; for (unordered_map<string, vector<string>>::iterator it = m.begin(); it != m.end(); ++it) { answer *= it->second.size() + 1; //(입지 않는 경우 포함하기 위해 +1) } return answer -1 ; //아무것도 입지 않는 경우 빼기 } int main(void) { vector<vector<string>> clothes = { { "yellow_hat", "headgear" },{ "blue_sunglasses", "eyewear" },{ "green_turban", "headgear" } }; int answer = solution(clothes); cout << answer; return 0; }
124962984c6150a7e9ec49b216182722a9ec416c
6814e6556e620bbcbcf16f0dce7a15134b7830f1
/Samples/SampleFW/Context/CContext.cpp
fe35078b3985dfe1a05ad6312680b2f30312ac7c
[ "MIT" ]
permissive
blizmax/skylicht-engine
1bfc506635a1e33b59ad0ce7b04183bcf87c7fc1
af99999f0a428ca8f3f144e662c1b23fd03b9ceb
refs/heads/master
2023-08-07T11:50:02.370130
2021-10-09T16:10:20
2021-10-09T16:10:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,715
cpp
CContext.cpp
#include "pch.h" #include "Context/CContext.h" CContext::CContext() : m_scene(NULL), m_beginRP(NULL), m_rendering(NULL), m_shadowMapRendering(NULL), m_forwardRP(NULL), m_postProcessor(NULL), m_zone(NULL), m_directionalLight(NULL), m_camera(NULL), m_guiCamera(NULL) { } CContext::~CContext() { releaseScene(); releaseRenderPipeline(); } CScene* CContext::initScene() { m_scene = new CScene(); return m_scene; } void CContext::releaseScene() { if (m_scene != NULL) { delete m_scene; m_scene = NULL; m_zone = NULL; m_camera = NULL; } } CBaseRP* CContext::initRenderPipeline(int w, int h, bool postEffect) { // 1st m_shadowMapRendering = new CShadowMapRP(); m_shadowMapRendering->initRender(w, h); // 2nd m_rendering = new CDeferredRP(); m_rendering->initRender(w, h); m_rendering->enableUpdateEntity(false); // 3rd m_forwardRP = new CForwardRP(false); m_forwardRP->initRender(w, h); m_forwardRP->enableUpdateEntity(false); // link rp m_shadowMapRendering->setNextPipeLine(m_rendering); m_rendering->setNextPipeLine(m_forwardRP); if (postEffect == true) { // post processor m_postProcessor = new CPostProcessorRP(); m_postProcessor->enableAutoExposure(true); m_postProcessor->enableBloomEffect(true); m_postProcessor->enableFXAA(true); m_postProcessor->enableScreenSpaceReflection(true); m_postProcessor->initRender(w, h); // apply post processor m_rendering->setPostProcessor(m_postProcessor); } m_beginRP = m_shadowMapRendering; return m_beginRP; } void CContext::resize(int w, int h) { if (m_beginRP != NULL) m_beginRP->resize(w, h); if (m_shadowMapRendering != NULL) m_shadowMapRendering->resize(w, h); if (m_rendering != NULL) m_rendering->resize(w, h); if (m_forwardRP != NULL) m_forwardRP->resize(w, h); if (m_postProcessor != NULL) m_postProcessor->resize(w, h); if (m_guiCamera != NULL) m_guiCamera->recalculateProjectionMatrix(); } void CContext::releaseRenderPipeline() { if (m_rendering != NULL) { delete m_rendering; m_rendering = NULL; } if (m_shadowMapRendering != NULL) { delete m_shadowMapRendering; m_shadowMapRendering = NULL; } if (m_forwardRP != NULL) { delete m_forwardRP; m_forwardRP = NULL; } if (m_postProcessor != NULL) { delete m_postProcessor; m_postProcessor = NULL; } } void CContext::setDirectionalLight(CDirectionalLight* light) { m_directionalLight = light; } void CContext::setPointLight(std::vector<CPointLight*> pointLight) { m_pointLights = pointLight; } void CContext::updateDirectionLight() { if (m_shadowMapRendering != NULL && m_directionalLight != NULL) { m_shadowMapRendering->setLightDirection(m_directionalLight->getDirection()); } }
daff7cd50792cb165a2763e7c071274480dab8cc
989d052af44449e354b865e0c0a976f0855cf7a8
/engine/render_engine_d3d11/src/D3D11Texture.cpp
bf8b7ca26cf431badeeb006cc7714e39f422ec2f
[]
no_license
523793658/Air
e86bcc003b5881311561a6270f008ab62879c751
b02894be5507cc45fb95e5f111aa757aeb21467a
refs/heads/master
2021-01-12T17:08:46.339512
2017-12-29T10:42:15
2017-12-29T10:42:15
71,517,168
0
0
null
null
null
null
UTF-8
C++
false
false
11,171
cpp
D3D11Texture.cpp
#include "Context.h" #include "SingletonManager.hpp" #include "ElementFormat.h" #include "Context.h" #include "D3D11RenderFactory.hpp" #include "D3D11RenderEngine.hpp" #include "D3D11Texture.hpp" namespace Air { D3D11Texture::D3D11Texture(TextureType type, uint32_t sample_count, uint32_t sample_quality, uint32_t access_hint) : Texture(type, sample_count, sample_quality, access_hint) { if (access_hint & EAH_GPU_Write) { BOOST_ASSERT(!(access_hint & EAH_CPU_Read)); BOOST_ASSERT(!(access_hint & EAH_CPU_Write)); } D3D11RenderEngine& renderEngine(*checked_cast<D3D11RenderEngine*>(&SingletonManager::getRenderFactoryInstance().getRenderEngineInstance())); mD3DDevice = renderEngine.getD3DDevice(); mD3DImmContext = renderEngine.getD3DDeviceContext(); } D3D11Texture::~D3D11Texture() { } D3D11_UNORDERED_ACCESS_VIEW_DESC D3D11Texture::fillUAVDesc(uint32_t first_array_index, uint32_t num_items, uint32_t level) const { AIR_UNUSED(first_array_index); AIR_UNUSED(num_items); AIR_UNUSED(level); AIR_UNREACHABLE("invalid invoke"); } D3D11_UNORDERED_ACCESS_VIEW_DESC D3D11Texture::fillUAVDesc(uint32_t array_index, uint32_t first_slice, uint32_t num_slices, uint32_t level) const { AIR_UNUSED(array_index); AIR_UNUSED(first_slice); AIR_UNUSED(num_slices); AIR_UNUSED(num_slices); AIR_UNREACHABLE("invalid invoke"); } D3D11_UNORDERED_ACCESS_VIEW_DESC D3D11Texture::fillUAVDesc(uint32_t first_array_index, uint32_t num_items, CubeFaces first_face, uint32_t num_faces, uint32_t level) const { AIR_UNUSED(first_array_index); AIR_UNUSED(num_items); AIR_UNUSED(first_face); AIR_UNUSED(num_faces); AIR_UNUSED(level); AIR_UNREACHABLE("invalid invoke"); } D3D11_RENDER_TARGET_VIEW_DESC D3D11Texture::fillRTVDesc(uint32_t first_array_index, uint32_t num_items, uint32_t first_level) const { AIR_UNUSED(first_level); AIR_UNUSED(first_array_index); AIR_UNUSED(num_items); AIR_UNREACHABLE("Can't be called"); } D3D11_DEPTH_STENCIL_VIEW_DESC D3D11Texture::fillDSVDesc(uint32_t first_array_index, uint32_t array_size, uint32_t level) const { AIR_UNUSED(first_array_index); AIR_UNUSED(array_size); AIR_UNUSED(level); AIR_UNREACHABLE("Can't be called"); } D3D11_SHADER_RESOURCE_VIEW_DESC D3D11Texture::fillSRVDesc(uint32_t first_array_index, uint32_t num_items, uint32_t first_level, uint32_t num_levels) const { AIR_UNUSED(first_array_index); AIR_UNUSED(num_items); AIR_UNUSED(first_level); AIR_UNUSED(num_levels); AIR_UNREACHABLE("invalid invoke"); } void D3D11Texture::deleteHWResource() { mD3DShaderResourceViews.clear(); mD3DUnorderedAccessViews.clear(); mD3DDepthStencilViews.clear(); mD3DRenderTargetViews.clear(); mD3DTexture.reset(); } bool D3D11Texture::isHWResourceReady() const { return mD3DTexture.get() ? true : false; } ID3D11RenderTargetViewPtr const & D3D11Texture::retriveD3DRTV(D3D11_RENDER_TARGET_VIEW_DESC const & desc) { if (this->isHWResourceReady()) { char const *p = reinterpret_cast<char const *>(&desc); size_t hash_val = boost::hash_range(p, p + sizeof(desc)); auto iter = mD3DRenderTargetViews.find(hash_val); if (iter != mD3DRenderTargetViews.end()) { return iter->second; } ID3D11RenderTargetView* rt_view; mD3DDevice->CreateRenderTargetView(this->getD3D11Resource(), &desc, &rt_view); return mD3DRenderTargetViews.emplace(hash_val, MakeComPtr(rt_view)).first->second; } else { static ID3D11RenderTargetViewPtr view; return view; } } ID3D11DepthStencilViewPtr const & D3D11Texture::retriveD3DDSV(D3D11_DEPTH_STENCIL_VIEW_DESC const & desc) { if (this->isHWResourceReady()) { char const* p = reinterpret_cast<char const *>(&desc); size_t hash_val = 0; boost::hash_range(hash_val, p, p + sizeof(desc)); auto iter = mD3DDepthStencilViews.find(hash_val); if (iter != mD3DDepthStencilViews.end()) { return iter->second; } ID3D11DepthStencilView* ds_view; mD3DDevice->CreateDepthStencilView(this->getD3D11Resource(), &desc, &ds_view); return mD3DDepthStencilViews.emplace(hash_val, MakeComPtr(ds_view)).first->second; } else { static ID3D11DepthStencilViewPtr view; return view; } } ID3D11ShaderResourceViewPtr const & D3D11Texture::retriveD3DSRV(D3D11_SHADER_RESOURCE_VIEW_DESC const & desc) { if (this->isHWResourceReady()) { char const *p = reinterpret_cast<char const *>(&desc); size_t hash_val = 0; boost::hash_range(hash_val, p, p + sizeof(desc)); auto iter = mD3DShaderResourceViews.find(hash_val); if (iter != mD3DShaderResourceViews.end()) { return iter->second; } ID3D11ShaderResourceView* d3d_sr_view; mD3DDevice->CreateShaderResourceView(this->getD3D11Resource(), &desc, &d3d_sr_view); return mD3DShaderResourceViews.emplace(hash_val, MakeComPtr(d3d_sr_view)).first->second; } else { static ID3D11ShaderResourceViewPtr view; return view; } } ID3D11UnorderedAccessViewPtr const & D3D11Texture::retriveD3DUnorderedAccessView(uint32_t first_array_index, uint32_t num_items, uint32_t level) { BOOST_ASSERT(this->getAccesshint() & EAH_GPU_Unordered); if (this->isHWResourceReady()) { size_t hash_val = boost::hash_value(first_array_index); boost::hash_combine(hash_val, num_items); boost::hash_combine(hash_val, level); boost::hash_combine(hash_val, 0); boost::hash_combine(hash_val, 0); auto iter = mD3DUnorderedAccessViews.find(hash_val); if (iter != mD3DUnorderedAccessViews.end()) { return iter->second; } else { auto desc = this->fillUAVDesc(first_array_index, num_items, level); ID3D11UnorderedAccessView* d3d_ua_view; mD3DDevice->CreateUnorderedAccessView(this->getD3D11Resource(), &desc, &d3d_ua_view); return mD3DUnorderedAccessViews.emplace(hash_val, MakeComPtr(d3d_ua_view)).first->second; } } else { static ID3D11UnorderedAccessViewPtr const view; return view; } } uint32_t D3D11Texture::getWidth(uint32_t level) const { return 1; } uint32_t D3D11Texture::getHeight(uint32_t level) const { BOOST_ASSERT(level < mNumMipMaps); return 1; } uint32_t D3D11Texture::getDepth(uint32_t level) const { BOOST_ASSERT(level < mNumMipMaps); return 1; } void D3D11Texture::getD3DFlags(D3D11_USAGE& usage, UINT& bind_flags, UINT& cpu_access_flags, UINT& misc_flags) { if (mAccessHint & EAH_Immutable) { usage = D3D11_USAGE_IMMUTABLE; } else { if ((EAH_CPU_Write | EAH_GPU_Read) == mAccessHint) { usage = D3D11_USAGE_DYNAMIC; } else { if (EAH_CPU_Write == mAccessHint) { if ((mNumMipMaps != 1) || (TT_Cube == mType)) { usage = D3D11_USAGE_STAGING; } else { usage = D3D11_USAGE_DYNAMIC; } } else { if (!(mAccessHint & EAH_CPU_Read) && !(mAccessHint & EAH_CPU_Write)) { usage = D3D11_USAGE_DEFAULT; } else { usage = D3D11_USAGE_STAGING; } } } } bind_flags = 0; if ((mAccessHint & EAH_GPU_Read) || (D3D11_USAGE_DYNAMIC == usage)) { bind_flags |= D3D11_BIND_SHADER_RESOURCE; } if (mAccessHint & EAH_GPU_Write) { if (isDepthFormat(mFormat)) { bind_flags |= D3D11_BIND_DEPTH_STENCIL; } else { bind_flags |= D3D11_BIND_RENDER_TARGET; } } D3D11RenderEngine const & engine = *checked_cast<D3D11RenderEngine const*>(&SingletonManager::getRenderFactoryInstance().getRenderEngineInstance()); if (engine.getDeviceFeatureLevel() >= D3D_FEATURE_LEVEL_11_0) { if (mAccessHint & EAH_GPU_Unordered) { bind_flags |= D3D11_BIND_UNORDERED_ACCESS; } } cpu_access_flags = 0; if (mAccessHint & EAH_CPU_Read) { cpu_access_flags |= D3D11_CPU_ACCESS_READ; } if (mAccessHint & EAH_CPU_Write) { cpu_access_flags |= D3D11_CPU_ACCESS_WRITE; } misc_flags = 0; if (mAccessHint & EAH_Generate_Mips) { misc_flags |= D3D11_RESOURCE_MISC_GENERATE_MIPS; } } ID3D11RenderTargetViewPtr const & D3D11Texture::retriveD3DRenderTargetView(uint32_t first_array_index, uint32_t array_size, uint32_t level) { BOOST_ASSERT(this->getAccesshint() & EAH_GPU_Write); BOOST_ASSERT(first_array_index < this->getArraySize()); BOOST_ASSERT(first_array_index + array_size <= this->getArraySize()); if (this->isHWResourceReady()) { size_t hash_val = boost::hash_value(first_array_index); boost::hash_combine(hash_val, array_size); boost::hash_combine(hash_val, level); boost::hash_combine(hash_val, 0); boost::hash_combine(hash_val, 0); auto iter = mD3DRenderTargetViews.find(hash_val); if (iter != mD3DRenderTargetViews.end()) { return iter->second; } else { auto desc = this->fillRTVDesc(first_array_index, array_size, level); ID3D11RenderTargetView* rt_view; mD3DDevice->CreateRenderTargetView(mD3DTexture.get(), &desc, &rt_view); return mD3DRenderTargetViews.emplace(hash_val, MakeComPtr(rt_view)).first->second; } } else { static ID3D11RenderTargetViewPtr const view; return view; } } ID3D11DepthStencilViewPtr const & D3D11Texture::retriveD3DDepthStencilView(uint32_t first_array_index, uint32_t array_size, uint32_t level) { BOOST_ASSERT(this->mAccessHint & EAH_GPU_Write); BOOST_ASSERT(first_array_index < this->mArraySize); BOOST_ASSERT(first_array_index + array_size <= this->mArraySize); if (this->isHWResourceReady()) { size_t hash_val = boost::hash_value(first_array_index); boost::hash_combine(hash_val, array_size); boost::hash_combine(hash_val, level); boost::hash_combine(hash_val, 0); boost::hash_combine(hash_val, 0); auto iter = mD3DDepthStencilViews.find(hash_val); if (iter != mD3DDepthStencilViews.end()) { return iter->second; } else { auto desc = this->fillDSVDesc(first_array_index, array_size, level); ID3D11DepthStencilView* d3d_view; TIFHR(mD3DDevice->CreateDepthStencilView(mD3DTexture.get(), &desc, &d3d_view)); return mD3DDepthStencilViews.emplace(hash_val, MakeComPtr(d3d_view)).first->second; } } else { static ID3D11DepthStencilViewPtr const view; return view; } } ID3D11ShaderResourceViewPtr const & D3D11Texture::retriveD3DShaderResourceView(uint32_t first_array_index, uint32_t num_items, uint32_t first_level, uint32_t num_levels) { BOOST_ASSERT(this->mAccessHint & EAH_GPU_Read); if (this->isHWResourceReady()) { size_t hash_val = boost::hash_value(first_array_index); boost::hash_combine(hash_val, num_items); boost::hash_combine(hash_val, first_level); boost::hash_combine(hash_val, num_levels); auto iter = mD3DShaderResourceViews.find(hash_val); if (iter != mD3DShaderResourceViews.end()) { return iter->second; } else { auto desc = this->fillSRVDesc(first_array_index, num_items, first_level, num_levels); ID3D11ShaderResourceView* d3d_sr_view; mD3DDevice->CreateShaderResourceView(mD3DTexture.get(), &desc, &d3d_sr_view); return mD3DShaderResourceViews.emplace(hash_val, MakeComPtr(d3d_sr_view)).first->second; } } else { static ID3D11ShaderResourceViewPtr const view; return view; } } }
600072e6fcd1335e9eb3281a23d0b8a27a680996
4f56c1775a6f6d7ebffddc3803a56f9bf9850011
/3.15/3.15/Date.h
e5461d4e72095aec8b991d181bf9c22b228f2dda
[]
no_license
KaryuKe/Karyu-House
05acc91713f1c20ce56b3fd577e2f2b01b0bc38c
3f09b3262f490cbda6317a988ecaa84e2be3feca
refs/heads/master
2020-07-11T00:50:38.757200
2019-12-16T12:13:45
2019-12-16T12:13:45
204,412,362
0
0
null
null
null
null
UTF-8
C++
false
false
267
h
Date.h
#pragma once #include<iostream> #include<string> using namespace std; class Date { public: Date(int, int, int); void setMonth(int); void setDay(int); void setYear(int); int getMonth(); int getDay(); int getYear(); void displayDate(); private: int m, d, y; };
95fb70ec226105ec41ec8ece9573b1cfd1433445
debe78f4b03165cb6da68c3b076aa2d1257b967d
/impeller/scene/scene.cc
46801cb4997a8734f4737a0c39b38eb69055dedd
[ "BSD-3-Clause" ]
permissive
anql/engine
dfa95d60d1b2e5ecaed67a8e07ee27e6c023d1f1
c9ee05b68e6e54ec95add31378f8d21299bf9e7e
refs/heads/main
2023-03-17T15:20:48.762580
2022-12-21T04:36:48
2022-12-21T04:36:48
533,702,798
0
0
BSD-3-Clause
2022-09-07T09:48:25
2022-09-07T09:48:25
null
UTF-8
C++
false
false
1,311
cc
scene.cc
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "impeller/scene/scene.h" #include <memory> #include <utility> #include "flutter/fml/logging.h" #include "impeller/renderer/render_target.h" #include "impeller/scene/scene_context.h" #include "impeller/scene/scene_encoder.h" namespace impeller { namespace scene { Scene::Scene(std::shared_ptr<Context> context) : scene_context_(std::make_unique<SceneContext>(std::move(context))) { root_.is_root_ = true; }; Node& Scene::GetRoot() { return root_; } bool Scene::Render(const RenderTarget& render_target, const Camera& camera) const { // Collect the render commands from the scene. SceneEncoder encoder; if (!root_.Render(encoder, Matrix())) { FML_LOG(ERROR) << "Failed to render frame."; return false; } // Encode the commands. std::shared_ptr<CommandBuffer> command_buffer = encoder.BuildSceneCommandBuffer(*scene_context_, camera, render_target); // TODO(bdero): Do post processing. if (!command_buffer->SubmitCommands()) { FML_LOG(ERROR) << "Failed to submit command buffer."; return false; } return true; } } // namespace scene } // namespace impeller
792f3e82c512f5d8e99609c494221938a536d60d
2a0a0cd41d8a3739663b514650c46be0de3054f3
/Panorama Corrector/EXE/Panorama_Four.cpp
72631d0ac78383773e58156aa7fe352024e13fd4
[]
no_license
BobDeng1974/Exercise
368efb35057b96dbb4a316330f0fe80e99b723cf
e761723c6c818f3f53879a42e5a999445e1f5fbd
refs/heads/master
2020-05-02T07:30:20.227714
2019-01-15T07:31:53
2019-01-15T07:31:53
null
0
0
null
null
null
null
GB18030
C++
false
false
3,886
cpp
Panorama_Four.cpp
/*----------------Copyright @Kuo Chen 2016----------------*/ /*----------------Copyright @Wei Wang 2017----------------*/ //1。计算正向矫正过程 鱼眼图像 矫正后 矫正图片的 长宽 //2。计算矫正投影矩阵 (remap逆向投影过程)创建矫正后图片逆向(三维投影、三维旋转、三维恢复、投影二维)求得鱼眼图片 //3。remap 获得矫正图片 #include <stdio.h> #include "parameters.h" #include "subfunction.h" #include <iostream> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> using namespace cv; using namespace std; Mat Panorama_Four(Mat src) { //Read the input image //cv::Mat img = cv::imread("fisheye3.bmp"); Mat img = src; //cv::imshow("show", img); //cvWaitKey(); /*int orix = std::max(int(cx - RR), 0); int oriy = std::max(int(cy - RR), 0); int endx = std::min(int(orix + 2 * RR), img.cols); int endy = std::min(int(oriy + 2 * RR), img.rows); img = img(cv::Rect(orix, oriy, endx - orix, endy - oriy)); cx = cx - orix; cy = cy - oriy;*/ //calculate the projection of the sub_view //pos1 为三维单元球坐标中特征点(共三个特征点确定一个扇形区域范围),与x轴的夹角(cols) //pos2 与z轴的夹角 float pos1[] = { thetamax, thetamax, thetamin }; float pos2[] = { PI / 2 - PI / views, PI / 2, PI / 2 }; float paras[] = { 0, 0 }; cal_subview(pos1, pos2, paras); //calculate the point vectors std::vector<float> tphi, points; for (int i = 0; i <= views; i++) { if (i<views) tphi.push_back(i * 2 * PI / views); else tphi.push_back(tphi.at(0) + 2 * PI); if (i>0) points.push_back((tphi.at(i - 1) + tphi.at(i)) / 2); } //calculate the mapping matrix int row = int(2 * paras[1]); int col = int(2 * paras[0]); cv::Mat mapx1(row, col, CV_32FC1, cv::Scalar(0)); cv::Mat mapy1(row, col, CV_32FC1, cv::Scalar(0)); cal_mapping(row, col, paras, points, mapx1, mapy1); //remap and then save the image mapx1 = mapx1 + cx; mapy1 = mapy1 + cy; //std::string filename = "../Four.xml"; //cv::FileStorage fs(filename, cv::FileStorage::WRITE); //fs << "mapx" << mapx1; //fs << "mapy" << mapy1; //fs.release(); /* cv::Mat mapx1, mapy1; std::string filename = "/home/chenkuo/Desktop/Four/Four.xml"; cv::FileStorage fs(filename, cv::FileStorage::READ); fs["mapx"] >> mapx1; fs["mapy"] >> mapy1; fs.release(); */ cv::Mat nimg1; cv::remap(img, nimg1, mapx1, mapy1, CV_INTER_LINEAR, cv::BORDER_CONSTANT, cv::Scalar(0, 0, 0)); //cv::imshow("Panorama", nimg1); //cv::waitKey(); //cv::imwrite("../result.jpg", nimg1); //cv::imwrite("Panoramares.bmp", nimg1); //cv::waitKey(0); return nimg1; } void Panorama_Four_Video() { VideoCapture capture; //capture.open("rtsp://admin:admin12345@192.168.1.65/Streaming/Channels/1"); //摄像头1 //capture.open("rtsp://root:pass@192.168.1.141:554/axis-media/media.amp"); // 摄像头2 //capture.open("rtsp://service:@10.153.33.11/?line=1$camera"); //邓大伟 左泽 capture.open(0); //open 根据编号打开摄像头 cout << "-------------" << std::endl; if (!capture.isOpened()) { cout << "Read video Failed !" << endl; return; } //cv::VideoCapture capture; Mat frame; //cv::namedWindow("video test"); int frame_num = 800; for (int i = 0; i < frame_num - 1; ++i) { capture >> frame; capture.read(frame); //鱼眼矫正前 //imshow("Video", frame); //鱼眼矫正后 鱼眼摄像头卡顿很严重 前置摄像头不卡顿 frame = Panorama_Four(frame); imshow("FisheyeVideo", frame); if (waitKey(30) == 'q') { break; } } //cv::destroyWindow("video test"); cv::destroyAllWindows(); capture.release(); //system("pause"); }
80ce31b80aecf8c223450efa27bca9986c716580
3af68b32aaa9b7522a1718b0fc50ef0cf4a704a9
/cpp/B/D/C/B/B/ABDCBB.h
a7275cd91dfcd865c4101c317a8ab76809dacb80
[]
no_license
devsisters/2021-NDC-ICECREAM
7cd09fa2794cbab1ab4702362a37f6ab62638d9b
ac6548f443a75b86d9e9151ff9c1b17c792b2afd
refs/heads/master
2023-03-19T06:29:03.216461
2021-03-10T02:53:14
2021-03-10T02:53:14
341,872,233
0
0
null
null
null
null
UTF-8
C++
false
false
67
h
ABDCBB.h
#ifndef ABDCBB_H namespace ABDCBB { std::string run(); } #endif
4029f818a1388082c2d714c35c8489ae03664794
ff78a0b4de684f13280cb3711e418c5b6b063ab7
/mainwindow.cpp
6ca4293d39205cf6ed17b78feed27c47a04f764e
[]
no_license
njaard/meow
8eb2e4126c4ab0a118afe80d368937ce649b2744
031763ef2949c75c13a00e713022546805627218
refs/heads/master
2021-01-10T05:44:00.554059
2014-01-15T03:21:44
2014-01-15T03:21:44
43,370,165
0
0
null
null
null
null
UTF-8
C++
false
false
18,722
cpp
mainwindow.cpp
#include "mainwindow.h" #include "treeview.h" #include "player.h" #include "directoryadder.h" #include "scrobble.h" #include "fileproperties.h" #include "filter.h" #include <db/file.h> #include <db/base.h> #include <db/collection.h> #include <kdeversion.h> #include <klocale.h> #include <kactioncollection.h> #include <kselectaction.h> #include <kfiledialog.h> #include <ksystemtrayicon.h> #include <kstandarddirs.h> #include <kiconeffect.h> #include <kxmlguifactory.h> #include <kconfig.h> #include <ksharedconfig.h> #include <kconfiggroup.h> #include <kwindowsystem.h> #include <ktoolbar.h> #include <kmenubar.h> #include <kmessagebox.h> #include <kservice.h> #include <kmimetypetrader.h> #include <kshortcutsdialog.h> #include <kactionmenu.h> #include <krun.h> #include <kmenu.h> #include <qpixmap.h> #include <qicon.h> #include <qevent.h> #include <qmenu.h> #include <qslider.h> #include <qsignalmapper.h> #include <qtoolbutton.h> #include <qapplication.h> #include <qpainter.h> #include <qboxlayout.h> #include <qlineedit.h> #include <qlabel.h> struct Meow::MainWindow::MainWindowPrivate { TreeView *view; Player *player; KSystemTrayIcon *tray; Base db; Collection *collection; DirectoryAdder *adder; KAction *itemProperties; KAction *playPauseAction; KSelectAction *playbackOrder; KActionMenu *openWith, *collectionsAction; QActionGroup *collectionsActionGroup; QList<KAction*> collectionActions; bool nowFiltering; ConfigDialog *settingsDialog; Scrobble *scrobble; KFileDialog *openFileDialog; Filter *filter; }; #include "mainwindow_common.cpp" Meow::MainWindow::MainWindow(bool dontPlayLastPlayed) { d = new MainWindowPrivate; d->adder = 0; d->settingsDialog = 0; d->nowFiltering = false; d->openFileDialog = 0; d->collection = new Collection(&d->db); QWidget *owner = new QWidget(this); QVBoxLayout *ownerLayout = new QVBoxLayout(owner); ownerLayout->setContentsMargins(0, 0, 0, 0); ownerLayout->setSpacing(0); d->player = new Player; d->view = new TreeView(owner, d->player, d->collection); d->view->installEventFilter(this); ownerLayout->addWidget(d->view); d->filter = new Filter(owner); d->filter->hide(); connect(d->filter, SIGNAL(textChanged(QString)), d->view, SLOT(filter(QString))); connect(d->filter, SIGNAL(done()), d->view, SLOT(stopFilter())); ownerLayout->addWidget(d->filter); d->scrobble = new Scrobble(this, d->player, d->collection); setCentralWidget(owner); d->tray = new KSystemTrayIcon("speaker", this); d->tray->installEventFilter(this); d->tray->show(); connect( d->tray, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), SLOT(systemTrayClicked(QSystemTrayIcon::ActivationReason)) ); QMenu *const trayMenu = d->tray->contextMenu(); KAction *toggleToolbarAction, *toggleMenubarAction; { KAction *ac; ac = actionCollection()->addAction("add_files", this, SLOT(addFiles())); ac->setText(i18n("Add &Files...")); ac->setIcon(KIcon("list-add")); ac = actionCollection()->addAction("find", d->filter, SLOT(show())); ac->setText(i18n("&Find")); { QList<QKeySequence> shortcuts; shortcuts.append(QKeySequence("/")); shortcuts.append(QKeySequence("Ctrl+F")); ac->setShortcuts(shortcuts); } d->playPauseAction = actionCollection()->addAction("playpause", d->player, SLOT(playpause())); d->playPauseAction->setText(i18n("Play")); d->playPauseAction->setGlobalShortcut(KShortcut(Qt::CTRL+Qt::ALT+Qt::Key_P), KAction::ActiveShortcut | KAction::DefaultShortcut, KAction::NoAutoloading); d->playPauseAction->setIcon(KIcon("media-playback-start")); trayMenu->addAction(d->playPauseAction); connect(d->player, SIGNAL(playing(bool)), SLOT(isPlaying(bool))); ac = actionCollection()->addAction("next", d->view, SLOT(nextSong())); ac->setText(i18n("Next Song")); ac->setIcon(KIcon("media-skip-forward")); ac->setGlobalShortcut(KShortcut(Qt::CTRL+Qt::ALT+Qt::Key_Right), KAction::ActiveShortcut | KAction::DefaultShortcut, KAction::NoAutoloading); trayMenu->addAction(ac); ac = actionCollection()->addAction("previous", d->view, SLOT(previousSong())); ac->setText(i18n("Previous Song")); ac->setIcon(KIcon("media-skip-backward")); ac->setGlobalShortcut(KShortcut(Qt::CTRL+Qt::ALT+Qt::Key_Left), KAction::ActiveShortcut | KAction::DefaultShortcut, KAction::NoAutoloading); trayMenu->addAction(ac); ac = actionCollection()->addAction("volumeup", d->player, SLOT(volumeUp())); ac->setText(i18n("Volume Up")); ac->setGlobalShortcut(KShortcut(Qt::CTRL+Qt::ALT+Qt::SHIFT+Qt::Key_Up), KAction::ActiveShortcut | KAction::DefaultShortcut, KAction::NoAutoloading); ac = actionCollection()->addAction("volumedown", d->player, SLOT(volumeDown())); ac->setText(i18n("Volume Down")); ac->setGlobalShortcut(KShortcut(Qt::CTRL+Qt::ALT+Qt::SHIFT+Qt::Key_Down)); ac = actionCollection()->addAction("seekforward", d->player, SLOT(seekForward())); ac->setText(i18n("Seek Forward")); ac->setIcon(KIcon("media-seek-forward")); ac->setGlobalShortcut(KShortcut(Qt::CTRL+Qt::ALT+Qt::SHIFT+Qt::Key_Right), KAction::ActiveShortcut | KAction::DefaultShortcut, KAction::NoAutoloading); ac = actionCollection()->addAction("seekbackward", d->player, SLOT(seekBackward())); ac->setText(i18n("Seek Backward")); ac->setIcon(KIcon("media-seek-forward")); ac->setGlobalShortcut(KShortcut(Qt::CTRL+Qt::ALT+Qt::SHIFT+Qt::Key_Left), KAction::ActiveShortcut | KAction::DefaultShortcut, KAction::NoAutoloading); ac = actionCollection()->addAction("togglegui", this, SLOT(toggleVisible())); ac->setText(i18n("Show/Hide Main Window")); ac->setGlobalShortcut(KShortcut(Qt::CTRL+Qt::ALT+Qt::SHIFT+Qt::Key_L), KAction::ActiveShortcut | KAction::DefaultShortcut, KAction::NoAutoloading); VolumeAction *va = new VolumeAction(KIcon("player-volume"), i18n("Volume"), actionCollection()); ac = actionCollection()->addAction("volume", va); connect(va, SIGNAL(volumeChanged(int)), d->player, SLOT(setVolume(int))); connect(d->player, SIGNAL(volumeChanged(int)), va, SLOT(setVolume(int))); { QStringList playbackOrderItems; // this order is significant playbackOrderItems << i18n("Each File") << i18n("Random Song") << i18n("Random Album") << i18n("Random Artist"); d->playbackOrder = new KSelectAction(i18n("Playback Order"), this); d->playbackOrder->setItems(playbackOrderItems); actionCollection()->addAction("playbackorder", d->playbackOrder); connect(d->playbackOrder, SIGNAL(triggered(int)), SLOT(changePlaybackOrder(int))); } { d->collectionsActionGroup = new QActionGroup(this); d->collectionsAction = new KActionMenu(i18n("&Collection"), this); KAction *newCol = new KAction(i18n("&New Collection"), this); connect(newCol, SIGNAL(activated()), this, SLOT(newCollection())); KAction *copyCol = new KAction(i18n("&Copy Collection"), this); connect(copyCol, SIGNAL(activated()), this, SLOT(copyCollection())); KAction *renameCol = new KAction(i18n("&Rename Collection"), this); connect(renameCol, SIGNAL(activated()), this, SLOT(renameCollection())); KAction *delCol = new KAction(i18n("&Delete Collection"), this); connect(delCol, SIGNAL(activated()), this, SLOT(deleteCollection())); d->collectionsAction->addAction(newCol); d->collectionsAction->addAction(copyCol); d->collectionsAction->addAction(renameCol); d->collectionsAction->addAction(delCol); d->collectionsAction->addSeparator(); actionCollection()->addAction("collections", d->collectionsAction); reloadCollections(); } ac = actionCollection()->addAction( KStandardAction::Close, this, SLOT(deleteLater()) ); ac = actionCollection()->addAction( KStandardAction::Preferences, this, SLOT(showSettings()) ); #ifndef Q_WS_MAC toggleMenubarAction = ac = actionCollection()->addAction( KStandardAction::ShowMenubar, this, SLOT(toggleMenuBar()) ); #endif toggleToolbarAction = ac = actionCollection()->addAction( KStandardAction::ShowToolbar, this, SLOT(toggleToolBar()) ); KStandardAction::keyBindings(guiFactory(), SLOT(configureShortcuts()), actionCollection()); } { // context menu KAction *const remove = actionCollection()->addAction("remove_item", d->view, SLOT(removeSelected())); remove->setText(i18n("&Remove from playlist")); remove->setIcon(KIcon("edit-delete")); remove->setShortcut(Qt::Key_Delete); KAction *const albumGroup = actionCollection()->addAction("group_by_album"); albumGroup->setCheckable(true); connect(albumGroup, SIGNAL(toggled(bool)), this, SLOT(groupByAlbum(bool))); albumGroup->setText(i18n("&Group by album")); d->openWith = new KActionMenu(i18n("Open &with"), this); actionCollection()->addAction("open_with", d->openWith); d->itemProperties = actionCollection()->addAction("item_properties", this, SLOT(itemProperties())); d->itemProperties->setText(i18n("&Properties")); } connect(d->view, SIGNAL(kdeContextMenu(QPoint)), SLOT(showItemContext(QPoint))); connect(d->player, SIGNAL(currentItemChanged(File)), SLOT(changeCaption(File))); setAcceptDrops(true); setAutoSaveSettings(); createGUI(); toggleToolbarAction->setChecked(toolBar("mainToolBar")->isVisibleTo(this)); toggleMenubarAction->setChecked(menuBar()->isVisibleTo(this)); KConfigGroup meow = KGlobal::config()->group("state"); { const int v = meow.readEntry<int>("volume", 50); d->player->setVolume(v); } { const std::string device = meow.readEntry<QString>("device", "").toUtf8().constData(); d->player->setCurrentDevice(device); } { QString order = meow.readEntry<QString>("selector", "linear"); int index; if (order == "randomartist") index = TreeView::RandomArtist; else if (order == "randomalbum") index = TreeView::RandomAlbum; else if (order == "randomsong") index = TreeView::RandomSong; else index = TreeView::Linear; d->playbackOrder->setCurrentItem(index); // why does setCurrentItem above not cause changePlaybackOrder slot to be called? changePlaybackOrder(index); } FileId first = dontPlayLastPlayed ? 0 : meow.readEntry<FileId>("lastPlayed", 0); loadCollection("collection", first); d->scrobble->begin(); connect(qApp, SIGNAL(aboutToQuit()), SLOT(quitting())); } Meow::MainWindow::~MainWindow() { quitting(); delete d->collection; delete d; } void Meow::MainWindow::quitting() { KConfigGroup meow = KGlobal::config()->group("state"); meow.writeEntry<int>("volume", d->player->volume()); meow.writeEntry<FileId>("lastPlayed", d->player->currentFile().fileId()); if (d->playbackOrder->currentItem() == TreeView::RandomArtist) meow.writeEntry("selector", "randomartist"); else if (d->playbackOrder->currentItem() == TreeView::RandomAlbum) meow.writeEntry("selector", "randomalbum"); else if (d->playbackOrder->currentItem() == TreeView::RandomSong) meow.writeEntry("selector", "randomsong"); else meow.writeEntry("selector", "linear"); meow.sync(); } void Meow::MainWindow::addFile(const KUrl &url) { if (url.isLocalFile()) d->collection->add( url.path(), false ); } void Meow::MainWindow::addAndPlayFile(const KUrl &url) { d->collection->add( url.path(), true ); } void Meow::MainWindow::addFiles() { if (d->openFileDialog) { d->openFileDialog->show(); d->openFileDialog->raise(); KWindowSystem::forceActiveWindow( d->openFileDialog->winId() ); return; } d->openFileDialog = new KFileDialog( KUrl("kfiledialog:///mediadir"), d->player->mimeTypes().join(" "), this ); d->openFileDialog->setOperationMode( KFileDialog::Opening ); d->openFileDialog->setCaption(i18n("Add Files and Folders")); d->openFileDialog->setMode(KFile::Files | KFile::Directory | KFile::ExistingOnly | KFile::LocalOnly); connect(d->openFileDialog, SIGNAL(accepted()), SLOT(fileDialogAccepted())); connect(d->openFileDialog, SIGNAL(rejected()), SLOT(fileDialogClosed())); d->openFileDialog->show(); } void Meow::MainWindow::fileDialogAccepted() { if (!d->openFileDialog) return; KUrl::List files = d->openFileDialog->selectedUrls(); fileDialogClosed(); d->collection->startJob(); for(KUrl::List::Iterator it=files.begin(); it!=files.end(); ++it) beginDirectoryAdd(*it); d->collection->scheduleFinishJob(); } void Meow::MainWindow::fileDialogClosed() { d->openFileDialog->deleteLater(); d->openFileDialog = 0; } void Meow::MainWindow::toggleVisible() { d->tray->toggleActive(); } void Meow::MainWindow::closeEvent(QCloseEvent *event) { toggleVisible(); event->ignore(); } void Meow::MainWindow::dropEvent(QDropEvent *event) { d->collection->startJob(); KUrl::List files = KUrl::List::fromMimeData(event->mimeData()); for(KUrl::List::Iterator it=files.begin(); it!=files.end(); ++it) beginDirectoryAdd(*it); d->collection->scheduleFinishJob(); } void Meow::MainWindow::dragEnterEvent(QDragEnterEvent *event) { if (KUrl::List::canDecode(event->mimeData())) event->acceptProposedAction(); } void Meow::MainWindow::adderDone() { d->collection->scheduleFinishJob(); delete d->adder; d->adder = 0; } void Meow::MainWindow::beginDirectoryAdd(const KUrl &url) { if (!d->adder) { d->collection->startJob(); d->adder = new DirectoryAdder(this); connect(d->adder, SIGNAL(done()), SLOT(adderDone())); connect(d->adder, SIGNAL(addFile(KUrl)), SLOT(addFile(KUrl))); } d->adder->add(url); } void Meow::MainWindow::showItemContext(const QPoint &at) { const char *menuName = "album_context"; QList<QString> albums = d->view->selectedAlbums(); bool isGrouping=false; if (!albums.isEmpty()) { for (QList<QString>::const_iterator i = albums.begin(); i != albums.end(); ++i) { if (d->collection->groupByAlbum(*i)) { isGrouping = true; break; } } actionCollection()->action("group_by_album")->setChecked(isGrouping); menuName = "album_context"; } QList<File> f = d->view->selectedFiles(); if (!f.isEmpty()) { menuName = "item_context"; d->openWith->menu()->clear(); QSignalMapper *mapper=0; KMimeType::Ptr p = KMimeType::findByPath(f[0].file()); KService::List apps = KMimeTypeTrader::self()->query(p->name()); for (int i=0; i < apps.size(); i++) { KAction *const a = new KAction(KIcon(apps[i]->icon()), apps[i]->name(), d->openWith); if (!mapper) { mapper = new QSignalMapper(a); connect(mapper, SIGNAL(mapped(QString)), SLOT(openWith(QString))); } d->openWith->addAction(a); mapper->setMapping(a, apps[i]->entryPath()); connect(a, SIGNAL(activated()), mapper, SLOT(map())); } } QMenu *const menu = static_cast<QMenu*>(factory()->container(menuName, this)); menu->popup(at); } void Meow::MainWindow::changeCaption(const File &f) { if (f) setCaption(f.title()); else setCaption(""); } void Meow::MainWindow::toggleToolBar() { bool showing = actionCollection()->action( KStandardAction::name(KStandardAction::ShowToolbar) )->isChecked(); if (toolBar("mainToolBar")->isVisible() == showing) return; toolBar("mainToolBar")->setVisible(showing); saveAutoSaveSettings(); } void Meow::MainWindow::toggleMenuBar() { QAction *const action = actionCollection()->action( KStandardAction::name(KStandardAction::ShowMenubar) ); bool showing = action->isChecked(); if (menuBar()->isVisible() == showing) return; menuBar()->setVisible(showing); if (!showing) KMessageBox::information( this, i18n( "If you want to show the menubar again, press %1", action->shortcut().toString() ), i18n("Hiding Menubar"), "hiding menu bar info" ); saveAutoSaveSettings(); } void Meow::MainWindow::configureShortcuts() { KShortcutsDialog e; e.addCollection(actionCollection()); e.configure(); } void Meow::MainWindow::isPlaying(bool pl) { if (pl) { d->playPauseAction->setIcon(KIcon("media-playback-pause")); d->playPauseAction->setText(i18n("Paws")); d->tray->setIcon(renderIcon("speaker", "media-playback-start")); } else { d->playPauseAction->setIcon(KIcon("media-playback-start")); d->playPauseAction->setText(i18n("Play")); d->tray->setIcon(renderIcon("speaker", "media-playback-pause")); } } void Meow::MainWindow::openWith(const QString &desktopEntryPath) { KService svc(desktopEntryPath); QList<File> f = d->view->selectedFiles(); KUrl::List urls; for (int i=0; i < f.size(); i++) urls += KUrl(f[i].file()); KRun::run(svc, urls, this); } void Meow::MainWindow::systemTrayClicked(QSystemTrayIcon::ActivationReason reason) { if (reason == QSystemTrayIcon::MiddleClick) d->player->playpause(); } void Meow::MainWindow::changePlaybackOrder(int index) { d->view->setSelector( static_cast<TreeView::SelectorType>(index) ); } void Meow::MainWindow::groupByAlbum(bool x) { QList<QString> albums = d->view->selectedAlbums(); for (QList<QString>::const_iterator i = albums.begin(); i != albums.end(); ++i) { d->collection->setGroupByAlbum(*i, x); } } void Meow::MainWindow::itemProperties() { QList<File> files = d->view->selectedFiles(); if (!files.isEmpty()) new FileProperties(files, d->collection, this); } QIcon Meow::MainWindow::renderIcon(const QString& baseIcon, const QString &overlayIcon) const { QPixmap iconPixmap = KIcon(baseIcon).pixmap(KIconLoader::SizeSmallMedium, KIconLoader::SizeSmallMedium); if (!overlayIcon.isNull()) { QPixmap overlayPixmap = KIcon(overlayIcon) .pixmap(KIconLoader::SizeSmallMedium/2, KIconLoader::SizeSmallMedium/2); QPainter p(&iconPixmap); p.drawPixmap( iconPixmap.width()-overlayPixmap.width(), iconPixmap.height()-overlayPixmap.height(), overlayPixmap ); p.end(); } return iconPixmap; } Meow::VolumeAction::VolumeAction(const KIcon& icon, const QString& text, QObject *parent) : KToolBarPopupAction(icon, text, parent) { signalMapper = new QSignalMapper(this); slider = new SpecialSlider(0); connect(slider, SIGNAL(valueChanged(int)), SIGNAL(volumeChanged(int))); connect( signalMapper, SIGNAL(mapped(QWidget*)), this, SLOT(showPopup(QWidget*)) ); setMenu(0); } Meow::VolumeAction::~VolumeAction() { delete slider; } QWidget* Meow::VolumeAction::createWidget(QWidget* parent) { QWidget *w = KToolBarPopupAction::createWidget(parent); if (QToolButton *b = qobject_cast<QToolButton*>(w)) { b->setPopupMode(QToolButton::DelayedPopup); connect(b, SIGNAL(triggered(QAction*)), signalMapper, SLOT(map())); signalMapper->setMapping(b, b); } return w; } void Meow::VolumeAction::setVolume(int percent) { slider->setValue(percent); } void Meow::VolumeAction::showPopup(QWidget *button) { slider->move(button->mapToGlobal(button->rect().bottomLeft())); slider->show(); slider->raise(); slider->grabMouse(); } // kate: space-indent off; replace-tabs off;
61469583ae386826bf68dcdbebde296b0f7201f6
d248bd05aa8c8fc2dacba3c1690073a839ac8945
/AnnihilationCharacter_Siv3D/AnnihilationCharacter_Siv3D/Game/inc/define.hpp
ffd5f0e8150fceaaf7033ca743ff3ea9c2d6c675
[]
no_license
elipmoc/AnnihilationCharacter_Siv3D
bff5e1be6e6082665a1fd4bf7288a1296d434d2e
7662b37945ec0cdd62132a63028df0d0c1edfe9e
refs/heads/master
2021-01-01T05:55:41.518750
2019-03-02T21:40:47
2019-03-02T21:40:47
97,309,105
3
1
null
null
null
null
SHIFT_JIS
C++
false
false
97
hpp
define.hpp
#pragma once namespace game { //地形のレーン数 static constexpr size_t LANE_NUM = 3; }
45cdbf8bcf9d2fb51b9e3096cc14a9bbe6440cdd
275a7fdea8bb8f0fee5ab27a1fe0b727fb52d7d4
/Player.h
34ded79357761a374adff07ce6cb4ce06e5dc31e
[]
no_license
kawzar/galaxian
62897d8e8d17cb98058fb5b5671c9ec990a15e7f
2207f75788e46cc28afffde759f81fec94e3bcbe
refs/heads/master
2020-05-04T07:30:48.313337
2019-06-19T15:02:06
2019-06-19T15:02:06
179,029,764
0
0
null
null
null
null
UTF-8
C++
false
false
533
h
Player.h
#include "Ship.h" #include "Bullet.h" #ifndef PLAYER_H #define PLAYER_H enum PlayerStates { MOVE_RIGHT, MOVE_LEFT, SHOOT }; class Player : public Ship { public: Player(const int windowSizeX, const int windowSizeY); virtual ~Player(); void changeState(PlayerStates state); void shoot(); virtual void move(); Bullet* getBullet(); void updateBulletPosition(); int getLife(); void damage(); void die(); protected: int life = 3; PlayerStates playerState; Bullet* bullet; void moveLeft(); void moveRight(); }; #endif
2899950af5cd4d4808d85b1e72a8bb899b95211b
0d984970abb93badd4c46e0e9379a149dbd19bde
/ConsoleApplication2/ConsoleApplication2/ConsoleApplication2.cpp
87985e073faf9f3fba018a2ddb628319e07c8721
[]
no_license
Uchuujin01/repos
062cafa51ec30c8c9406fc32f17b8c2275add7a3
b8e5a379db1e5578a566affee8de6afe22fe2259
refs/heads/master
2020-09-22T11:02:43.944595
2019-12-14T12:08:19
2019-12-14T12:08:19
225,164,078
0
0
null
null
null
null
UTF-8
C++
false
false
326
cpp
ConsoleApplication2.cpp
// ConsoleApplication2.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include "pch.h" #include <iostream> #include <string> #include <vector> using namespace std; void main() { int c = 5; int a = c++; int b = ++c; cout << "a = " << a << endl; cout << "b = " << b << endl; }
418421b9a23e692c3cb9bbea38aa70eccc8c79bc
f67b47259c734b4355057246ac7111ab59086dd6
/src/plugins/http2serial/ws_console_client.cpp
a1859a25a54ff5170729d5236683cf3d7a83a3b4
[]
no_license
externall-projects/esp8266-kfc-fw
2b28b848f9ab54a7107e6b27319606b5ad17f727
5889f7dce2ced0347ff96db3cbf27d1ea50dc466
refs/heads/master
2022-04-22T07:59:02.233681
2020-04-12T03:46:03
2020-04-12T03:46:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,349
cpp
ws_console_client.cpp
/** * Author: sascha_lammers@gmx.de */ #include <Arduino_compat.h> #include "ws_console_client.h" #include <StreamString.h> #include "http2serial.h" #include "at_mode.h" #include "reset_detector.h" #if DEBUG_HTTP2SERIAL #include <debug_helper_enable.h> #else #include <debug_helper_disable.h> #endif WsClient *WsConsoleClient::getInstance(AsyncWebSocketClient *socket) { return new WsConsoleClient(socket); } void WsConsoleClient::onAuthenticated(uint8_t *data, size_t len) { _debug_printf_P(PSTR("data=%s len=%d\n"), printable_string(data, len, 32).c_str(), len); #if AT_MODE_SUPPORTED StreamString commands; commands.print(F("+ATMODE_CMDS_HTTP2SERIAL=")); at_mode_print_command_string(commands, '\t'); getClient()->text(commands); #endif if (resetDetector.hasCrashDetected()) { PrintString message; message.printf_P(PSTR("+REM System crash detected: %s\n"), resetDetector.getResetInfo().c_str()); getClient()->text(message); } getClient()->text(PrintString(F("+CLIENT_ID=%p\n"), getClient())); } #if DEBUG void WsConsoleClient::onDisconnect(uint8_t *data, size_t len) { _debug_printf_P(PSTR("data=%s len=%d\n"), printable_string(data, len, 32).c_str(), len); } void WsConsoleClient::onError(WsConsoleClient::WsErrorType type, uint8_t *data, size_t len) { _debug_printf_P(PSTR("type=%d data=%s len=%d\n"), type, printable_string(data, len, 32).c_str(), len); } #endif void WsConsoleClient::onText(uint8_t *data, size_t len) { auto http2serial = Http2Serial::getInstance(); if (http2serial) { WsClient::broadcast(nullptr, this, reinterpret_cast<const char *>(data), len); // http2serial->broadcast(this, data, len); // send received text to all other clients // http2serial->broadcast(data, len); // send received text to all clients = echo mode http2serial->getSerialHandler()->receivedFromRemote(nullptr, data, len); // send to serial } } void WsConsoleClient::onStart() { _debug_printf_P(PSTR("first client has been authenticated, Http2Serial instance %p\n"), Http2Serial::getInstance()); Http2Serial::createInstance(); } void WsConsoleClient::onEnd() { _debug_printf_P(PSTR("no authenticated clients connected, Http2Serial instance %p\n"), Http2Serial::getInstance()); Http2Serial::destroyInstance(); }
2eb9bb1261e07a1ae6fb448521c3ecd988f931ef
e3d2e105447283794dd7cf135e391259c2eaaafb
/Projects/Fibonnacci/include/aaFibonacciSeries.h
22ab43ed2ed5ea3fc60aa40c0fd88a0f3085fd7b
[]
no_license
nuup20/Analisis-Algorithms
112a541b1168b9ef8e4ccafa3f158659a03d248e
0a613344771cdbe77f94945ae6a73cbfb0e681ef
refs/heads/master
2020-05-18T20:47:42.732745
2019-08-15T20:12:11
2019-08-15T20:12:11
184,643,183
0
0
null
null
null
null
UTF-8
C++
false
false
299
h
aaFibonacciSeries.h
#pragma once #include <vector> class FibonnacciSeries { public: FibonnacciSeries(); ~FibonnacciSeries(); void run(); private: void exec(const int &); void exec(const std::vector<int> &); int fibonnacciRecursive(const int &); int fibonacciOneFunc(const int &); };
32be0db4248892972542dc588d6807b007c5845c
03e1a82d1e83dd76aa10d926abf819640653411b
/__history/17.5/6039_ly的cr传奇.cpp
cdc3ed96f56aa0881b8f57c23355e4b4ab068a0c
[]
no_license
gbakkk5951/OI
879d95c0b96df543d03d01b864bd47af2ba9c0c8
a3fe8894e604e9aac08c2db6e36c1b77f3882c43
refs/heads/master
2018-09-20T10:09:23.170608
2018-07-09T11:52:21
2018-07-09T11:52:21
115,510,457
2
0
null
null
null
null
UTF-8
C++
false
false
79
cpp
6039_ly的cr传奇.cpp
#include<cstdio> int main(){ char t; scanf("%d",&t); printf("%d",1<<(t)); }
8e4fc955496f9a1be869eaaf5d703104185a4d54
f7c9e2652e20a8c86c01ed06b5cdb66b784fcef1
/E_Manager.h
146c3e25478c458c997c90084db3860206893d11
[]
no_license
EJShim/EJVulkan
053c7d456f8b25826d3d278e9c6ad4aedd1c034d
a3012d6445d4baf55e2a58d70d73a90a582960a8
refs/heads/master
2020-05-23T23:41:57.294015
2017-05-08T05:25:51
2017-05-08T05:25:51
84,802,042
0
0
null
null
null
null
UTF-8
C++
false
false
7,187
h
E_Manager.h
#pragma once #define GLFW_INCLUDE_VULKAN #include <GLFW/glfw3.h> #include "VDeleter.hpp" #include <vector> #include <array> #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <chrono> class E_Manager{ private: static const int WIDTH = 1000; static const int HEIGHT = 800; struct Vertex{ glm::vec3 pos; glm::vec3 color; static VkVertexInputBindingDescription getBindingDescription() { VkVertexInputBindingDescription bindingDescription = {}; bindingDescription.binding = 0; bindingDescription.stride = sizeof(Vertex); bindingDescription.inputRate = VK_VERTEX_INPUT_RATE_VERTEX; return bindingDescription; } static std::array<VkVertexInputAttributeDescription, 2> getAttributeDescriptions() { std::array<VkVertexInputAttributeDescription, 2> attributeDescriptions = {}; attributeDescriptions[0].binding = 0; attributeDescriptions[0].location = 0; attributeDescriptions[0].format = VK_FORMAT_R32G32_SFLOAT; attributeDescriptions[0].offset = offsetof(Vertex, pos); attributeDescriptions[1].binding = 0; attributeDescriptions[1].location = 1; attributeDescriptions[1].format = VK_FORMAT_R32G32B32_SFLOAT; attributeDescriptions[1].offset = offsetof(Vertex, color); return attributeDescriptions; } }; struct QueueFamilyIndices { int graphicsFamily = -1; int presentFamily = -1; bool isComplete() { return graphicsFamily >= 0 && presentFamily >= 0; } }; struct SwapChainSupportDetails { VkSurfaceCapabilitiesKHR capabilities; std::vector<VkSurfaceFormatKHR> formats; std::vector<VkPresentModeKHR> presentModes; }; const std::vector<const char*> validationLayers = { "VK_LAYER_LUNARG_standard_validation" }; const std::vector<const char*> deviceExtensions = { VK_KHR_SWAPCHAIN_EXTENSION_NAME }; #ifdef NDEBUG const bool enableValidationLayers = false; #else const bool enableValidationLayers = true; #endif static VKAPI_ATTR VkBool32 VKAPI_CALL debugCallback(VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT objType, uint64_t obj, size_t location, int32_t code, const char* layerPrefix, const char* msg, void* userData) { std::cerr << "validation layer: " << msg << std::endl; return VK_FALSE; } public: E_Manager(); ~E_Manager(); protected: void Initialize(); ///Init GLFW void InitWindow(); ///Initialize Vulkan void InitVulkan(); void CreateInstance(); void SetUpDebugCallback(); void CreateSurface(); void PickPhysicalDevice(); void CreateLogicalDevice(); void CreateSwapChain(); void CreateImageViews(); void CreateRenderPass(); void CreateDescriptorSetLayout(); void CreateGraphicsPipeLine(); void CreateFrameBuffers(); void CreateCommandPool(); void CreateVertexBuffer(); void CreateBuffer(VkDeviceSize size, VkBufferUsageFlags usage, VkMemoryPropertyFlags properties, VDeleter<VkBuffer>& buffer, VDeleter<VkDeviceMemory>& bufferMemory); void CopyBuffer(VkBuffer srcBuffer, VkBuffer dstBuffer, VkDeviceSize size); void CreateIndexBuffer(); void CreateUniformBuffer(); void CreateDescriptorPool(); void CreateDescriptorSet(); void CreateCommandBuffers(); void CreateSemaphores(); void UpdateUniformBuffer(); void MainLoop(); protected: static void DestroyDebugReportCallbackEXT(VkInstance instance, VkDebugReportCallbackEXT callback, const VkAllocationCallbacks* pAllocator); std::vector<const char*> GetRequiredExtensions(); void DrawFrame(); bool IsDeviceSuitable(VkPhysicalDevice device); QueueFamilyIndices FindQueueFamilies(VkPhysicalDevice device); bool CheckDeviceExtensionSupport(VkPhysicalDevice device); SwapChainSupportDetails QuerySwapChainSupport(VkPhysicalDevice device); VkSurfaceFormatKHR ChooseSwapSurfaceFormat(const std::vector<VkSurfaceFormatKHR>& availableFormats); VkPresentModeKHR ChooseSwapPresentMode(const std::vector<VkPresentModeKHR> availablePresentModes); VkExtent2D ChooseSwapExtent(const VkSurfaceCapabilitiesKHR& capabilities); static std::vector<char> ReadFile(const std::string& filename); void CreateShaderModule(const std::vector<char>& code, VDeleter<VkShaderModule>& shaderModule); protected: GLFWwindow* window; VDeleter<VkInstance> instance{vkDestroyInstance}; VDeleter<VkDebugReportCallbackEXT> callback{instance, DestroyDebugReportCallbackEXT}; VDeleter<VkSurfaceKHR> surface{instance, vkDestroySurfaceKHR}; VkPhysicalDevice physicalDevice = VK_NULL_HANDLE; VDeleter<VkDevice> device{vkDestroyDevice}; VkQueue graphicsQueue; VkQueue presentQueue; VDeleter<VkSwapchainKHR> swapChain{device, vkDestroySwapchainKHR}; std::vector<VkImage> swapChainImages; VkFormat swapChainImageFormat; VkExtent2D swapChainExtent; std::vector<VDeleter<VkImageView>> swapChainImageViews; std::vector<VDeleter<VkFramebuffer>> swapChainFramebuffers; VDeleter<VkRenderPass> renderPass{device, vkDestroyRenderPass}; VDeleter<VkPipelineLayout> pipelineLayout{device, vkDestroyPipelineLayout}; VDeleter<VkPipeline> graphicsPipeline{device, vkDestroyPipeline}; VDeleter<VkCommandPool> commandPool{device, vkDestroyCommandPool}; std::vector<VkCommandBuffer> commandBuffers; VDeleter<VkSemaphore> imageAvailableSemaphore{device, vkDestroySemaphore}; VDeleter<VkSemaphore> renderFinishedSemaphore{device, vkDestroySemaphore}; public: //Vertices and Indices Data const std::vector<Vertex> vertices = { {{-0.5f, -0.5f, 0.0f}, {1.0f, 0.0f, 0.0f}}, {{0.5f, -0.5f, 0.0f}, {0.0f, 1.0f, 0.0f}}, {{0.5f, 0.5f, 0.0f}, {0.0f, 0.0f, 1.0f}}, {{-0.5f, 0.5f, 0.0f}, {0.0f, 0.5f, 1.0f}} }; const std::vector<uint16_t> indices = { 0, 1, 2, 2, 3, 0 }; //Vertex Buffer Data VDeleter<VkBuffer> vertexBuffer{device, vkDestroyBuffer}; VDeleter<VkDeviceMemory> vertexBufferMemory{device, vkFreeMemory}; VDeleter<VkBuffer> indexBuffer{device, vkDestroyBuffer}; VDeleter<VkDeviceMemory> indexBufferMemory{device, vkFreeMemory}; uint32_t findMemoryType(uint32_t typeFilter, VkMemoryPropertyFlags properties); public: //Description Set struct UniformBufferObject { glm::mat4 model; glm::mat4 view; glm::mat4 proj; float time; }; VDeleter<VkDescriptorSetLayout> descriptorSetLayout{device, vkDestroyDescriptorSetLayout}; VDeleter<VkBuffer> uniformStagingBuffer{device, vkDestroyBuffer}; VDeleter<VkDeviceMemory> uniformStagingBufferMemory{device, vkFreeMemory}; VDeleter<VkBuffer> uniformBuffer{device, vkDestroyBuffer}; VDeleter<VkDeviceMemory> uniformBufferMemory{device, vkFreeMemory}; VDeleter<VkDescriptorPool> descriptorPool{device, vkDestroyDescriptorPool}; VkDescriptorSet descriptorSet; };
15e51bc062c332fd0e368ac42b05f7e74f38aeef
519ccfe2cf75d16b9ee6231f8a13f63a3ce91d62
/src/fonts/stb_font_courier_43_latin_ext.inl
e775a02b8eae8fd6bec902434e66b321c6160e48
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
stetre/moonfonts
9dd6fd126524ead9105216e93b22a9b73de82dc2
5c8010c02ea62edcf42902e09478b0cd14af56ea
refs/heads/master
2022-02-07T20:47:37.150667
2022-02-06T12:29:27
2022-02-06T12:29:27
96,556,816
5
0
null
null
null
null
UTF-8
C++
false
false
149,236
inl
stb_font_courier_43_latin_ext.inl
// Font generated by stb_font_inl_generator.c (4/1 bpp) // // Following instructions show how to use the only included font, whatever it is, in // a generic way so you can replace it with any other font by changing the include. // To use multiple fonts, replace STB_SOMEFONT_* below with STB_FONT_courier_43_latin_ext_*, // and separately install each font. Note that the CREATE function call has a // totally different name; it's just 'stb_font_courier_43_latin_ext'. // /* // Example usage: static stb_fontchar fontdata[STB_SOMEFONT_NUM_CHARS]; static void init(void) { // optionally replace both STB_SOMEFONT_BITMAP_HEIGHT with STB_SOMEFONT_BITMAP_HEIGHT_POW2 static unsigned char fontpixels[STB_SOMEFONT_BITMAP_HEIGHT][STB_SOMEFONT_BITMAP_WIDTH]; STB_SOMEFONT_CREATE(fontdata, fontpixels, STB_SOMEFONT_BITMAP_HEIGHT); ... create texture ... // for best results rendering 1:1 pixels texels, use nearest-neighbor sampling // if allowed to scale up, use bilerp } // This function positions characters on integer coordinates, and assumes 1:1 texels to pixels // Appropriate if nearest-neighbor sampling is used static void draw_string_integer(int x, int y, char *str) // draw with top-left point x,y { ... use texture ... ... turn on alpha blending and gamma-correct alpha blending ... glBegin(GL_QUADS); while (*str) { int char_codepoint = *str++; stb_fontchar *cd = &fontdata[char_codepoint - STB_SOMEFONT_FIRST_CHAR]; glTexCoord2f(cd->s0, cd->t0); glVertex2i(x + cd->x0, y + cd->y0); glTexCoord2f(cd->s1, cd->t0); glVertex2i(x + cd->x1, y + cd->y0); glTexCoord2f(cd->s1, cd->t1); glVertex2i(x + cd->x1, y + cd->y1); glTexCoord2f(cd->s0, cd->t1); glVertex2i(x + cd->x0, y + cd->y1); // if bilerping, in D3D9 you'll need a half-pixel offset here for 1:1 to behave correct x += cd->advance_int; } glEnd(); } // This function positions characters on float coordinates, and doesn't require 1:1 texels to pixels // Appropriate if bilinear filtering is used static void draw_string_float(float x, float y, char *str) // draw with top-left point x,y { ... use texture ... ... turn on alpha blending and gamma-correct alpha blending ... glBegin(GL_QUADS); while (*str) { int char_codepoint = *str++; stb_fontchar *cd = &fontdata[char_codepoint - STB_SOMEFONT_FIRST_CHAR]; glTexCoord2f(cd->s0f, cd->t0f); glVertex2f(x + cd->x0f, y + cd->y0f); glTexCoord2f(cd->s1f, cd->t0f); glVertex2f(x + cd->x1f, y + cd->y0f); glTexCoord2f(cd->s1f, cd->t1f); glVertex2f(x + cd->x1f, y + cd->y1f); glTexCoord2f(cd->s0f, cd->t1f); glVertex2f(x + cd->x0f, y + cd->y1f); // if bilerping, in D3D9 you'll need a half-pixel offset here for 1:1 to behave correct x += cd->advance; } glEnd(); } */ #ifndef STB_FONTCHAR__TYPEDEF #define STB_FONTCHAR__TYPEDEF typedef struct { // coordinates if using integer positioning float s0,t0,s1,t1; signed short x0,y0,x1,y1; int advance_int; // coordinates if using floating positioning float s0f,t0f,s1f,t1f; float x0f,y0f,x1f,y1f; float advance; } stb_fontchar; #endif #define STB_FONT_courier_43_latin_ext_BITMAP_WIDTH 512 #define STB_FONT_courier_43_latin_ext_BITMAP_HEIGHT 362 #define STB_FONT_courier_43_latin_ext_BITMAP_HEIGHT_POW2 512 #define STB_FONT_courier_43_latin_ext_FIRST_CHAR 32 #define STB_FONT_courier_43_latin_ext_NUM_CHARS 560 #define STB_FONT_courier_43_latin_ext_LINE_SPACING 20 static unsigned int stb__courier_43_latin_ext_pixels[]={ 0x00000000,0x00000000,0x00007100,0x040000dc,0x00000000,0x01000000, 0x00001000,0x26200020,0x00000099,0x00001300,0x88000001,0x99970003, 0x07999999,0x00000080,0x2e000100,0x0d400000,0x000001a8,0x00b80000, 0x19999988,0x03300000,0x0000005c,0x80001b60,0x3200003d,0x7cc0004f, 0x7fb00007,0x03fc8000,0x5c01f880,0x07fc4005,0xd3005fb8,0xdb10001b, 0x75400003,0x3fe001df,0x000003ff,0x0003fc80,0x000027f4,0x70005f98, 0x99999999,0x1fd40079,0xd1000000,0x07ba000f,0x43fc8000,0x4c0002fc, 0x8800004e,0xffe801fd,0x0000ffff,0xdd02fd40,0x22000000,0x900003fe, 0x6400001d,0x3ea0004f,0x6c40000e,0x3620003f,0x4000dfef,0x017e205f, 0x2e01ff10,0xfefb805f,0x3fa6001f,0x980003fe,0x2001f52e,0x0003faa9, 0x027ec000,0x03ffea00,0x09f70000,0x00000000,0x000009fb,0x0005fd10, 0x00007f62,0x1fd8cfa8,0x7ffd4000,0xd100000e,0x2aa2005f,0x0000fcaa, 0xb8037ee0,0x4000001f,0x00002fe8,0x9000007e,0x3ee0009f,0x7440000d, 0x3e60002f,0x003df72f,0x7ec41fec,0x07fc4003,0x36205fb8,0x007fd15f, 0x37f61df7,0x90f20000,0x007f0007,0x3f620000,0xff980003,0x320c0007, 0x3000623f,0x80009801,0x000005fc,0x20007fe6,0x03117e41,0xbfd304c0, 0x320004c1,0x02ff98df,0x00ffcc00,0x0003ea00,0xf802fe40,0x26000005, 0x200001ff,0x00001dfa,0x320013f2,0xf980004f,0x3ee0001f,0x017f4c0e, 0xdbdffe88,0xf88004ff,0x20bf700f,0x5fc83fe8,0x3ee17f60,0x85b0001e, 0x03f8004b,0xfe880000,0x2e600002,0x93f60000,0x801ff41c,0xff500ff9, 0x03bee000,0x1df50000,0xb89fb000,0x2600ffa3,0xf30e20ff,0x7fd1001f, 0x0004fd88,0x00001df5,0xb00001f5,0x0fdc009f,0x77cc0000,0x7e400000, 0x0000004f,0x0003f880,0x80001d70,0x01b6204f,0x5bfffd70,0x40000000, 0x03ee01ea,0x4e980fe6,0x221b5000,0x03f8001e,0x1fc80000,0x00000000, 0x7ec04fc8,0x01ff1003,0xa8001bea,0x2600005f,0xf90000df,0x803fd809, 0xff9807f9,0x202fc800,0xde8001fc,0x1f500000,0x02fa8000,0x00027c40, 0x00001c40,0x0002ffa8,0x00000000,0x00000200,0x00200000,0x00000000, 0x00000000,0x007fdf90,0x00000fe0,0x00010000,0x20030000,0x20044001, 0x0c400008,0x000a0000,0x000c0060,0x00220011,0x00001000,0x03ea0000, 0x40002000,0x800000fc,0x000001ca,0x00000000,0x75c00000,0x000002ef, 0x00000000,0x00000000,0x40000000,0x1fc00028,0x0000ddcc,0x00fa8010, 0x0006ee62,0x00000000,0x07910000,0xc8800b22,0x00059103,0x00000000, 0x00088000,0x80000400,0x100000fa,0x009f1000,0x75ef4400,0x00000006, 0x00000000,0x263d5000,0x0000000f,0x03773100,0x00000000,0xbb988000, 0x00000001,0x7fe47f00,0x003dffff,0x6fffedc4,0xf702fcc3,0x21bfffff, 0x910ffffa,0x81999999,0x4cccccc9,0x33333322,0x66664c0c,0x3ff204cc, 0x000ffd80,0xffb01ff9,0x33332201,0x664c0ccc,0x3224cccc,0x40cccccc, 0x4cccccc9,0xfffeb980,0x100550ce,0x19dfffb7,0x003ea000,0xeffeca80, 0x7e40aa2c,0x89700000,0x4c40002d,0x7d4001bb,0xffffffff,0xffff11ff, 0x7ffd40df,0x216c04ff,0x7ffc403c,0x3fea06ff,0xff704fff,0x2a1bffff, 0xff10ffff,0x7c4fffff,0x36ffffff,0xffffffff,0x7dc03fff,0x50dfffff, 0x3221ffff,0x40cccccc,0x4cccccc9,0x33fa2fe0,0x07fd5309,0x2b3bfea0, 0xee89efec,0x0acfe880,0xbf53ff73,0x77f74c79,0x77540eee,0xd30deffe, 0x81ddddfd,0xdeffeeea,0x2e0df500,0x1bea006f,0xdd3037dc,0xa81ddddf, 0x0deffeee,0xddddfdd3,0xffeeea81,0xfff500de,0x7fffb77b,0xeff980db, 0x03ffecac,0x8000fa80,0xcbaceffb,0x305d8dfe,0x3a00007f,0x700025c1, 0x1bffffff,0x443fffea,0xcccccccb,0x3fae1fdc,0x32e202cc,0x16c01cfe, 0x3fae00f2,0x32e202cc,0x7f441cfe,0x3ff730ac,0xcb879bf5,0x65c7eccc, 0x2e6ecccc,0xcccccccc,0xcfe881fd,0x53ff730a,0x774c79bf,0x540eeeef, 0x0deffeee,0x803ddbf0,0x6fdc03fb,0x3fdfd300,0xd880bfa0,0x3e200fcf, 0x103e4003,0x07c8007f,0x80008010,0xf8800400,0x103e4003,0x07c8007f, 0x9300f7e4,0x77dc0dff,0x009fd100,0x6c000fa8,0x3fee00df,0x001f605e, 0x00b625c0,0x42b3fa20,0xdfa9ffb9,0x1f98003c,0x3a001fcc,0x261d5005, 0x07f3000f,0x5fd05e80,0x07e7ec40,0x3200f900,0x40fcc006,0x3f6202fe, 0x0fe200fc,0xff00f900,0x0fee001f,0xfe802fdc,0x2005f704,0x3e200ffe, 0x103e4003,0x07c8007f,0x00000000,0x003f8800,0x07f103e4,0x3ee07c80, 0x41bea005,0x7fb005fb,0x0007d400,0x3a2007f7,0x00fe605f,0x32b3e200, 0x05fd0007,0x007e7ec4,0xdb03f300,0x000fd400,0x8005ddf9,0x07ea006d, 0x7f400bee,0x01f2000f,0x3e600364,0xe8017dc1,0x0fe200ff,0xff00f900, 0x885e8005,0xdff5005f,0x4400bf10,0x0fe200ff,0x7c40f900,0x003e4003, 0x00000000,0x2001fc40,0x00fe207c,0x1be20f90,0x3e21ba00,0x007ec005, 0xf3000fa8,0x05f9800d,0x88000374,0xb8000bdb,0x1ffd002f,0x40fcc000, 0x0dd003f9,0x4c000600,0x10dd003f,0x7fc400bf,0x401f2000,0x0fcc006c, 0x7c400bf1,0x00fe200f,0x0df00f90,0x1f90f500,0x7f3df100,0x6c001f98, 0x00fe200f,0x1fc40f90,0x0001f200,0x00000000,0xf9000fe2,0x2001fc40, 0x003f707c,0x03f90970,0x5004f980,0x07f2001f,0xf5017a00,0x00000005, 0x4400bf10,0x260000ff,0x500db01f,0x0000005f,0x5f500db0,0xd8003f30, 0x01f2000f,0x3e600364,0xb0007e61,0x01fc401f,0x17e01f20,0xf98be200, 0x361fd004,0x20007dc7,0x0fe200fc,0x7c40f900,0x443e4003,0xf102ffff, 0xf883ffff,0xff102fff,0x3e203fff,0x103e4003,0x07c8007f,0x440000bb, 0x0fb0004f,0x74003ea0,0x00550004,0x999000dd,0x00799999,0x6c001f98, 0x3e60000f,0xe805f301,0x6654c006,0x2f98001a,0x0fb83740,0x0007e400, 0x01b200f9,0x07dc3f30,0x8803f200,0x03e4003f,0x3f80027c,0x3f6003ee, 0x07c8be61,0x2200fa80,0x03e4003f,0x7c8007f1,0x405fb970,0xb81fdccb, 0x32e02fdc,0x7f101fdc,0x2207c800,0x83e4003f,0x2a00003f,0x1f30000f, 0x1001f500,0x8000003f,0x362001fa,0xfeffeeee,0x003ee000,0x40001f90, 0x81b601f9,0xfda802fa,0x1effffff,0xf5036c00,0x2001f205,0x1f2000fa, 0x26003640,0x2001f21f,0x0fe200fa,0xbf00f900,0x645f1000,0xf83fb806, 0x90003ee3,0x01fc401f,0x3f881f20,0x2203e400,0x03f3002f,0xf98017c4, 0x8007f101,0x00fe207c,0x03f30f90,0x003e4000,0x3ea00be0,0x000fa800, 0x005e8000,0x03f8ed80,0x2a001f20,0x3e60000f,0x740be601,0xacefa806, 0x007faa21,0x0dd02f98,0x320007dc,0x01f2000f,0x3e600364,0x90003ee1, 0x01fc401f,0x1be01f20,0x5d87ea00,0x4e82fcc0,0xfb0007e6,0x001fc401, 0x03f881f2,0x3e203e40,0x403f3002,0x3f3002f8,0x9000fe20,0x001fc40f, 0x001ee1f2,0x8000db00,0x00fa804e,0x000007c8,0x40003f70,0x400db3f8, 0x7e4000fb,0x07e60000,0x05f30db0,0x1fe20020,0x5f30db00,0x2000fcc0, 0x1f2000fd,0x26003640,0x0007e61f,0x1fc401fb,0x3e01f200,0x23ec002f, 0x03be204f,0x009f12ec,0xf1007fc4,0x207c8007,0x3e4003f8,0x4c00be20, 0x00be201f,0x3f880fcc,0xf103e400,0xc87c8007,0x27400007,0x201b6000, 0x06c800fa,0xbf100000,0xa87dc000,0x03f3001f,0x0000fd80,0x5f3007e6, 0x800006d8,0x3e6001fb,0x3e2036c2,0x03fe2004,0xd9007c80,0x221f9800, 0x3fe2004f,0x000fe200,0x1fff00f9,0x7f0bee00,0xdb007ec0,0xfd002fb8, 0x01fc401f,0x3f881f20,0x2203e400,0x03f3002f,0xf98017c4,0x8007f101, 0x00fe207c,0x00f90f90,0x0004f800,0x07d40364,0x00003640,0x0001f900, 0x2009f17a,0x3e2004f8,0x3e60000f,0x3e66d801,0xf8800002,0xf336c003, 0x005f7005,0xc8003ffa,0x800d9007,0x017dc1f9,0x2200ffe8,0x03e4003f, 0x200f7efc,0x904e85fb,0xe85e805f,0x33f6202f,0x00fe200f,0x1fc40f90, 0xf101f200,0x807e6005,0x3f3002f8,0x9000fe20,0x001fc40f,0x201f21f2, 0xcccccccb,0x8000bb0c,0x00fa805d,0x000007c8,0x20013e20,0x003e42f9, 0x3fa005f7,0x3e60000f,0xdb2f9801,0x3e200000,0xd97cc003,0x80bfa006, 0x000fcfd8,0x036401f2,0x3fa07e60,0x3f3f6202,0x000fe200,0xd17f00f9, 0x3aa6139f,0xa85d80df,0x883f804f,0xf7309cfe,0x4401f53f,0x03e4003f, 0x7c8007f1,0x98017c40,0x00be201f,0x3f880fcc,0xf103e400,0xb87c8007, 0x7fff400f,0xd91fffff,0x803f8000,0x0fb800fa,0x32000000,0x43e4000f, 0x3fa002f9,0x3f3f6202,0x07e60000,0x017cf6c0,0x77765c40,0x003fbcde, 0x002f9ed8,0x4c273fa2,0x00fa9ffb,0x36401f20,0x2207e600,0xf7309cfe, 0x4401f53f,0x03e4003f,0xffffb1fc,0x3e405fff,0x3e2017e6,0x3fffee02, 0x01f50dff,0x32001fc4,0x000fe207,0x02f880f9,0x7c403f30,0x203f3002, 0x3e4003f8,0xc8007f10,0x0001f987,0x0007b8db,0x665c47e2,0xccdfdccc, 0x3f50bccc,0x44000000,0x827c004f,0x3fa2005e,0x3ff7309c,0x4c0001f5, 0xdff3001f,0xfffc8800,0xfffeecde,0x6ff98003,0xffff7000,0x03ea1bff, 0x3b333322,0x42cccccf,0x0fcc006c,0xffffff70,0x8803ea1b,0x03e4003f, 0x565cc1fc,0xd12fa801,0x03f7001d,0xa81bb988,0x0027c00f,0x009f01ba, 0x17c406e8,0x2201f980,0x03f3002f,0x1ba0027c,0x6e8009f0,0xb0002f88, 0x0002fa8d,0x7fffd4f7,0xffffffff,0x07f11fff,0xfd800000,0x203f5000, 0x7dc000fb,0x50dfffff,0x7cc0001f,0x00ff6001,0x9803bfd0,0x7fb0003f, 0x5dcc4000,0xfb80fa81,0xffffffff,0x03645fff,0x31007e60,0x01f50377, 0x374004f8,0x00001fc0,0x2007f6dd,0x500005f8,0x005c801f,0x0b9013e2, 0x22027c40,0x03f3002f,0xf98017c4,0x88017201,0x002e404f,0x017e09f1, 0x037436c0,0x00006f80,0x00001f90,0x801fcc00,0x00fe206d,0x206ee620, 0x260000fa,0x01f6001f,0x22005f90,0x0fb0003f,0x1f500000,0x1b200000, 0x0003f300,0x5c801f50,0x2013e200,0x2a00003f,0xf9002fdf,0x3ee00001, 0x8007d400,0x07d403fa,0x4403fa80,0x03f5002f,0xfa8017c4,0x4003ea01, 0x07d403fa,0xf503fa80,0x30db0007,0x2fb8007f,0xbf100000,0x003b1000, 0x7f100db0,0x00006d80,0x40001f50,0x7f3000fb,0x2004f800,0xf98003f8, 0xb8000003,0xd000000f,0x01fb800d,0x400fb800,0x7f5000fa,0x00007f00, 0xf5004fe8,0x36c00009,0x4402fc40,0x2fc400ee,0x40077440,0x1ffb805f, 0x7dc02fc0,0x017e201f,0xf1003ba2,0x01dd100b,0x360007ec,0x2003fb06, 0x3ee005fa,0x07f7000d,0x0007fcc0,0x3ee017cc,0x000fd400,0x0007dc00, 0x3ec00fd0,0x8007e600,0x7d8003f9,0xdb000000,0x3e200000,0x003f4004, 0xf8806d80,0x00ee8805,0x200003f8,0x6402fff8,0x500000ef,0x0fee009f, 0x7002fe88,0x17f4407f,0x3600fd80,0x7ec01fff,0x07fff600,0x74407f70, 0x07f7002f,0x22017f44,0x1b6003ff,0x2a01ff44,0x5c4000ef,0x037ee004, 0x0003df50,0x3bfa0374,0xeeeeeeee,0xd800004f,0x17e60006,0x2001fcc0, 0xff5004f8,0x03f98007,0x4fa80000,0x5f900000,0x0037c400,0xb8027d40, 0x0bfa203f,0x80001fc0,0xadfe9fe8,0x009fb730,0x0077cc00,0x2615df70, 0x5c003feb,0xfd730aef,0x5f7cc007,0x9bfeca88,0xdf300cdf,0x7fd95117, 0x5c019bf3,0xfd730aef,0xaefb8007,0x007fd730,0x826fbf22,0x405ffc98, 0xb710adfd,0x2a2001df,0xfc800b90,0xfb730abf,0xfa80001b,0xddddf301, 0xfddddddd,0x4fa80000,0x03fb1000,0x74001f60,0x7ffe400f,0x003ec003, 0x077cc000,0x37cc0000,0x003fb100,0x000ef980,0x5cc2bbee,0x554c03fe, 0x002aaadf,0x7fdc3fb0,0x002effff,0x65555544,0xb8000efe,0x1efffffe, 0xfffd7000,0x50003dff,0x1dffffff,0xa80bffe6,0x0effffff,0xb805fff3, 0x1efffffe,0xfffd7000,0x50003dff,0xfffffffd,0x3ee0039f,0x03ffffff, 0x0efff440,0x7ffecc00,0x0003efff,0x007b8020,0x40000be6,0x55100ef9, 0x3ff97555,0xf7555530,0x4c00155b,0xd9511bef,0x179bf19f,0x7dd5554c, 0x10000aad,0xfd955555,0x54c0001d,0x0dfdbaaa,0x65d55554,0xaa8803ff, 0x0efecaaa,0xfffeb800,0xff801eff,0x1fffffff,0x981fd400,0x70000acb, 0x7dffffff,0x59510000,0x2a200003,0x440001ac,0x00009bca,0x004de544, 0x1aca8800,0x59510000,0x2a600003,0x00009abc,0x00057951,0x31000010, 0x00001597,0x4004e800,0x5551005e,0x01dfd955,0x7fffffdc,0xffff01de, 0x0bffffff,0xffffea80,0xfff11eff,0x7ffffc5f,0x005fffff,0xffffff70, 0xfb00007d,0x509dffff,0xbfffffff,0x3ffee001,0x0003efff,0x001aca88, 0x26666662,0x03880009,0x33100000,0x00000033,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0xf9800000,0x007dc001, 0x7fffffdc,0x3331003e,0x33310013,0x00333333,0x00de5d40,0x4ccccc40, 0x40001999,0x00019998,0x80199980,0x00099998,0x00333310,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x40000000,0x3f88006c,0x03333100,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0xf8000000,0x00db0003,0x55540000,0xaaaaaaaa,0xaaaaaaaa, 0x00002aaa,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x9bfb9300,0x665c4079,0x0000bcfd,0x3fffea00, 0xffffffff,0xffffffff,0x00000fff,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0xfffffb80,0xfff300ef, 0x0005ffff,0x88888800,0x88888888,0x88888888,0x00000008,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x200006a0,0x03b301d9, 0x20000000,0x51000000,0x30000330,0x00b80005,0x00000000,0x00000000, 0x800cc000,0x40000048,0x99819828,0x64c00019,0xcccccccc,0x4ccccccc, 0x80000000,0x00000008,0x00000000,0x04000000,0x00000000,0x000e2000, 0x26200080,0x00209999,0x200017ec,0x0dfd06fe,0x000ff880,0x0005f700, 0x7d47e880,0x37d40004,0x01df1000,0x1ec80000,0x00ed8000,0x001fcc00, 0x200bf500,0x000000fa,0x44fa8fd1,0x001ffffa,0x3bbbbea0,0xeeeefeee, 0x1000feee,0x200001db,0xb80003fb,0xa800002f,0x5c00002f,0x880000df, 0x000002fd,0x000005f7,0x80003fa2,0x2ceffeca,0xffffe8aa,0x1001f52f, 0x640007fb,0x009f905f,0x0000ff88,0x027f7ec4,0x21fe8800,0x20000ef9, 0x40000dfb,0x00001ff9,0x03fffe88,0x5fffd300,0x3ffee000,0x7dc0000d, 0x01f5000e,0x87fa0000,0xca980ef9,0x3ea0001f,0x2e01f501,0xffe9800f, 0x7e40002f,0x7ec40005,0x200004ff,0x0004fffc,0x3ffdfea8,0x3bfa6000, 0x2200004f,0x0004fffd,0x000ffcc0,0xbaceffb8,0x25d8dfec,0x52fbaaa8, 0x27ec001f,0x00801000,0x000ff880,0x7dcbfa60,0x7ec0000e,0x0003be62, 0x00005fc8,0x0000bfa6,0xfd8aff98,0x4f7d4005,0x22004fd8,0x03df54fd, 0x0017f200,0x000001f5,0x077cc5fb,0x80007ea0,0x01f501fa,0xdf7003ee, 0x0009fb11,0x300013f6,0x037f25fd,0x73fe8800,0xb10001df,0x3bf623df, 0x8f7d4002,0x40000dfc,0x1bf92fe9,0x1df50000,0x037f6000,0x205effb8, 0x001f52f9,0x00005fc8,0x3fe20000,0x3df70000,0x0002ff98,0x077cc5fb, 0x009fb000,0x07fd1000,0x81df7000,0xfc800efb,0x0077e40d,0xfd30bfa6, 0x04fd8007,0x0000fa80,0xdf117ec0,0x003f5001,0xfa80fd40,0x6c01f700, 0x00efb85f,0x0007fd10,0x7d41efa8,0xffa8001f,0x0017fcc1,0x7f4c0ffa, 0x81bf9001,0x50001ffa,0x1ffa83df,0x037ee000,0x801fdc00,0x3e605fe8, 0x70001f52,0x0000003f,0x7c000000,0x001ba205,0x01d90fe6,0x0017cc00, 0x001f6000,0x74c09f10,0x501fcc05,0x01ed809f,0x2a001fb1,0x1f50002f, 0x1fcc0000,0x7d4003b2,0x07ea0001,0x0fb807d4,0x7d407f50,0x005f9003, 0x2201bf00,0x0de8006e,0x8800fd10,0xf1001800,0x00274407,0xdd100df8, 0x0027c000,0x9800df30,0x54be605f,0x0000000f,0x00000000,0x00000000, 0x00000001,0x00000000,0x08000020,0x00080080,0x20008001,0xfffffff8, 0x3fffffff,0x20000200,0x2a0001fa,0x201f501f,0x000000fb,0x40000220, 0x10001000,0x33100200,0x00000003,0x40020000,0x00000000,0x3a0007f2, 0x7d4be605,0x88002000,0x206fffff,0x04fffffa,0x00000000,0x00000000, 0x00000000,0x00000000,0x04000010,0x20008000,0xccdfdccb,0x01bccccc, 0x2a000100,0x3e60001f,0x2a01f500,0x40004007,0x01999998,0x00000000, 0x7fc40000,0x000001ff,0x00000000,0x00000000,0x0aa0009d,0x01f52f98, 0x77ffedc4,0x67f5c00c,0x3b2e202c,0x400001cf,0xccccccc8,0x666664c0, 0x3333224c,0x664c0ccc,0x3224cccc,0x40cccccc,0x4cccccc9,0x33333322, 0x66664c0c,0xccc804cc,0xcccccccc,0xfeca804c,0x80aa2cef,0xcefffed9, 0x76cc0170,0x170cefff,0x00007d40,0xdfffb710,0x07ea0019,0x1bfffffa, 0x200fa806,0x7fedc400,0xfe800cef,0x800fffff,0xccccccc8,0x99999501, 0x99999079,0xcccc8819,0x1fca984c,0x66640000,0x003ccccc,0x04ccccc8, 0x0b333322,0x66666664,0x0fc4003c,0x2f980000,0x3fe601f5,0x3ffecace, 0x2001fcc0,0xffff705e,0xdd3003ff,0xa81ddddf,0x0deffeee,0xddddfdd3, 0xffeeea81,0xdfdd30de,0xeea81ddd,0xd30deffe,0x81ddddfd,0xdeffeeea, 0x3bbb6200,0xeeeefeee,0x9dff700d,0xb1bfd975,0x2f3ff20b,0x3faffdba, 0x7579ff90,0x407f5ffb,0x300000fa,0xfd959dff,0x03f5007f,0x0599ffb5, 0x0000fa80,0xd959dff3,0xaa8807ff,0x8800fcaa,0x2eeeeffd,0xdfdddd70, 0xeefed88b,0x7f774c1e,0x03f300de,0x776c4000,0x00feffee,0x2f7ff6c0, 0x9dffdd30,0xfddddb10,0x54001fdf,0x3000000f,0x2e03ea5f,0x9fd100ef, 0x2a006d80,0x9999101f,0x7c4003fb,0x103e4003,0x07c8007f,0xf9000fe2, 0x2001fc40,0xf880007c,0x01bfb003,0x5c2f7fdc,0xffb100cf,0x2019f707, 0x2a03ffd8,0xfb80000f,0x09fd100e,0xefa81fa8,0x03ea0000,0x403bee00, 0x54004fe8,0x01f2000f,0x2602f980,0x03f5002f,0x00001f98,0x03f8ed80, 0x2001fb00,0xed8003f9,0x1f2003f8,0x2f980000,0x05fb81f5,0x7cc07fb0, 0x800dd003,0x3e2001fa,0x103e4003,0x07c8007f,0xf9000fe2,0x2001fc40, 0xf880007c,0x003fb803,0x4f98bfd1,0xf987fd00,0x407fd004,0x5c0000fa, 0x07fb005f,0x37ee0fd4,0x07d40000,0x4017ee00,0x3ea003fd,0x001ee000, 0x3e601f98,0x803f5002,0x000001f9,0x006d9fc4,0x3a00bf10,0xb3f88006, 0x0036400d,0x265f3000,0x2002fc47,0x01b600fd,0xf5000bea,0x01fc4003, 0x3f881f20,0xf103e400,0x207c8007,0x3e4003f8,0x01fc4000,0xf3001be6, 0x5000fb8b,0x000fb87f,0x07d407f5,0x00bf1000,0x3f500fd8,0x800027e4, 0x3e2000fa,0x007ec005,0x2a000fa8,0x1f50000f,0xa8017cc0,0x00fcc01f, 0x43ee0000,0xf70001fa,0x001fc805,0x03f50fb8,0x00001b20,0x3f202f98, 0x027cc001,0x06e805f3,0x2001fa80,0x3e4003f8,0xc8007f10,0x000fe207, 0x01fc40f9,0x20001f20,0x0fe403f8,0x1b62f400,0x06d87f00,0x1f501fc0, 0x00fe4000,0x7d413e60,0x0003fd89,0xc8003ea0,0x27cc001f,0x2000fa80, 0x07db01f9,0x05f301ee,0xf3007ea0,0x00acb983,0x13e2f400,0x300fd800, 0x17a0009f,0x01f2009f,0x02f98000,0x360009f1,0xf5036c07,0x03f50005, 0x2001fc40,0x00fe207c,0x1fc40f90,0xf881f200,0x003e4003,0x3a01fc40, 0xc8550004,0x3e40c007,0x1f500600,0x013e2000,0xafa83ec0,0x400003fe, 0x9f1000fa,0x401f6000,0x3e2000fa,0x906ff982,0x002f980d,0x1f9803f5, 0xbffffff7,0x85f30001,0x3e20007c,0x2000dd04,0x803e42f9,0x000000fb, 0x03ea05f3,0x3007cc00,0x001ba05f,0xf1000fd4,0x207c8007,0x3e4003f8, 0xc8007f10,0x000fe207,0xf10000f9,0x000fc407,0x0003f700,0x00001fb8, 0x540003ea,0x1f30000f,0x1dddff50,0x07d40000,0x0000fa80,0x1f5001f3, 0xfb83f800,0x405d81fb,0x3f5002f9,0xcfc9f980,0x00df7309,0x05f30f90, 0x2e17dc00,0x0f90001f,0x3f5005f3,0x3e600000,0x8000f902,0x4c36c02f, 0x3f50002f,0x001fc400,0x03f881f2,0x7f103e40,0x2207c800,0x03e4003f, 0x501fc400,0x4400001f,0x220001fe,0x500001fe,0x1f20001f,0xf505f000, 0x001df11d,0x4003ea00,0x17c0007c,0x20007d40,0x3f8ee84f,0x17cc04e8, 0x4c01fa80,0x3ea02fff,0xe827c004,0x87740005,0x3e0004f8,0xf100bd04, 0x26000007,0x000db02f,0x17cc04e8,0xfa8001b6,0x00fe2001,0x1fc40f90, 0xf881f200,0x103e4003,0x07c8007f,0x203f8800,0x8800007c,0x8000adfe, 0x000adfe8,0x40003ea0,0x2740006d,0x1df10fd4,0x01f50000,0xd0001b60, 0x001f5009,0xe9fc45e8,0x7cc04f85,0x803f5002,0x7f801ff9,0x5c07ea00, 0x3e60000f,0x20001db4,0x01f701fa,0x00001f90,0xe8a25f30,0x036c0004, 0x005f336c,0x1000fd40,0x07c8007f,0xf9000fe2,0x2001fc40,0x00fe207c, 0x10000f90,0x0036407f,0xfffd5000,0x7540059b,0x002cdfff,0x74000fe6, 0x436c0004,0x077cc1fa,0x003ea000,0x36000274,0x000fa806,0x5c7ea2ec, 0x7cc03f87,0xffffffff,0x4c01ffff,0x01f7002f,0x3f881b60,0x7efdc000, 0x81b60002,0x5f8803f8,0x301d8800,0x27c3ea5f,0x201b2000,0x000db2f9, 0x22001fa8,0x03e4003f,0x7c8007f1,0x9000fe20,0x001fc40f,0x220001f2, 0x001b203f,0x372a2000,0x22003fff,0x03fffdca,0x92a00df0,0x3640004f, 0x77cc0fd4,0x03ea0000,0x200027c0,0x00fa806c,0x99f23640,0x300be22f, 0x999999bf,0x803fb999,0x3f5001f9,0xd807f100,0x5fe80006,0x00fe2000, 0x0fee00db,0x300ff980,0x2ec3ea5f,0x40176000,0x0002f9ed,0xf1000fd4, 0x207c8007,0x3e4003f8,0xc8007f10,0x000fe207,0x400350f9,0x01f203f8, 0x64c00000,0x3260004f,0xbefb804f,0xbff95311,0x360002ec,0xf301fa85, 0x9971001d,0x79999fb9,0xb0001760,0x001f500b,0x3e2f47b8,0xf3007e64, 0x007ea005,0x3ea003f3,0x400fb801,0x540001fa,0x3ee0001f,0x800fd400, 0x7d400dfb,0x54be601e,0x8000d90f,0xdff3003f,0x03f50000,0x2001fc40, 0x00fe207c,0x1fc40f90,0xf881f200,0x743e4003,0x80fe2005,0x000000fb, 0x0013ee00,0xf7009f70,0xbfffffff,0x40006c85,0x201fa83f,0x7d400ef9, 0xffffffff,0x006c80ef,0x7d401fc0,0x987d4000,0x1f536c3f,0x5002f980, 0x01f9803f,0xfd003f50,0xdddddddd,0xa80009fd,0x3fa0001f,0xeeeeeeee, 0x3f2004fe,0xfb730abf,0x52f9801b,0x8001ee1f,0x3f6001f8,0x1fa80003, 0x000fe200,0x01fc40f9,0x3f881f20,0xf103e400,0xe87c8007,0x80fe2005, 0x000001fa,0x00036c00,0x9750036c,0x03dc0137,0x2e23f100,0xd7101fdc, 0x000399df,0x8001ee00,0x0fa801f8,0xfb8fcc00,0x07b87d40,0xf5002f98, 0x001f9803,0xef9803f5,0xeeeeeeee,0x540007ee,0xdf30001f,0xdddddddd, 0xd9800fdd,0x3effffff,0x3ea5f300,0x20005f50,0x03ec007b,0x333332e0, 0xcccccdfd,0xe8009f02,0x20027c06,0x0027c06e,0x009f01ba,0x005e86e8, 0x3f880fe2,0x00310000,0x00621f50,0x00003ea0,0x80017d40,0x3fffe67b, 0xfffff301,0x2000007f,0xf70002fa,0x0003ea00,0x221b65f1,0xf300f93f, 0x007ea005,0x3ea003f3,0x3003dc01,0x7d40005f,0x00f70001,0x440017cc, 0x4000acf9,0x741f52f9,0x00df0006,0xd1001fcc,0xffffffff,0x01dfffff, 0x27c400b9,0xf8801720,0x1002e404,0x005c809f,0x017a13e2,0x7e401fa8, 0x07b80000,0x0f71f980,0x2003f300,0x1ba004fd,0x00037c00,0x09fb0000, 0xf8003740,0x001f5006,0x7413e7f0,0x5f300db5,0x3007ea00,0x07ea003f, 0x5e8009d0,0x007ea000,0x3a002740,0x003e0005,0x0fa97cc0,0xf7000fe6, 0x003ec005,0x000bf980,0xfa8007d4,0x8007d403,0x07d403fa,0x5403fa80, 0x07f5000f,0x07e400bd,0x20017e20,0x003f91d8,0x03f90fb8,0x9800fb80, 0x3e6007ff,0x017dc003,0xf9800000,0x0fe6007f,0x2005f700,0xbf8000fa, 0x3af702f9,0x002f9805,0x1f9803f5,0x4c03f500,0x07dc001f,0x001fa800, 0x5c001f98,0x5df0000f,0x2a5f3000,0x800fec0f,0x3e6005fa,0x0b900003, 0x2017e200,0x7c400ee8,0x00ee8805,0x74402fc4,0x02fc400e,0x77407744, 0x005f8800,0x7cc007f7,0x400bf90f,0x017f26f8,0x36006f88,0x0fec005f, 0x2005fa80,0x00002ef9,0xfd800bfb,0x00bf5001,0x740007d4,0x2be607cc, 0x02f9804e,0xf9803f50,0x403f5001,0x3f88006c,0x003f5000,0xf1000d90, 0x07cc0007,0x7d4be600,0x201ff440,0x36000efa,0x0f600007,0x203fb800, 0xf7002fe8,0x017f4407,0x3a203fb8,0x07f7002f,0xfa817f44,0x03fa202f, 0x400dfb80,0x3ff21efa,0x21fe8804,0xe8804ffc,0x0174001f,0x500ffa20, 0xd50001df,0x01740000,0x500ffa20,0x7d4001df,0x5edd8000,0x401fe7c0, 0x3f5002f9,0x5001f980,0x001fc03f,0xf50006d8,0x007f0003,0xcb801b60, 0xeb801f31,0x1f52feee,0x442b7f60,0x5300efdb,0x55bf7555,0x0ea80001, 0xefb80073,0x07fd730a,0x30aefb80,0xb8007fd7,0xfd730aef,0xaefb8007, 0x807fd730,0x730adfe8,0xf90005fd,0x36e6157f,0x7d7e40df,0x3ee621bf, 0x7fd7e42f,0x3fee621b,0x007dc002,0x10adfd80,0x4001dfb7,0x0000d50a, 0x6c0003ee,0xfb710adf,0x0fa8001d,0x03ffc800,0x95017fec,0x88179bfb, 0x42cdfdcb,0x01cdfdc9,0x219bfb93,0x3ccdfdc9,0x3f732e20,0x997100bc, 0x7999bfb9,0x337f7260,0x332e203c,0x4400bcfd,0xc802effd,0xb11eeeee, 0xfffffb80,0x7ffc03ff,0x5fffffff,0xfffd8000,0xffeb8004,0x0001efff, 0xdfffffd7,0x3fae0003,0x001effff,0xfffffd70,0x7fdc003d,0x000dffff, 0x3ffff660,0x2b503eff,0xffffffd8,0xb15a80df,0xbfffffff,0x01f88001, 0x7fffdc00,0xd8003fff,0x80002eff,0x5c0001f8,0x3fffffff,0x33332e20, 0xccccdfdc,0x3ff700bc,0x201ffa80,0x1ffffffe,0x7fffffcc,0x7ffffe46, 0xfffffb04,0x3ffffee9,0xfff300ef,0x2605ffff,0xffffffff,0xffb80fff, 0x300effff,0x5fffffff,0x00000400,0x2bca8800,0x33333100,0x00003333, 0x20000544,0x0001aca8,0x00359510,0x06b2a200,0x56544000,0x32e60001, 0x2200001a,0x8000acb9,0x00abcb98,0x55e5cc40,0x00000000,0x00579510, 0x00000100,0x65440000,0xfffa802b,0xffffffff,0x0001ffff,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x40000000,0x136202e8,0x00005300,0x005c807d,0x40002a00, 0x00200000,0x000a2000,0xb8000044,0x00000000,0x200f4400,0x00a6005a, 0x00000800,0x0000002e,0x44000400,0x002d400e,0x00003950,0x06cc0197, 0x2e403e80,0x12e016c0,0x00510000,0x00005000,0x64001440,0x08074403, 0x2613f600,0x7dc002fe,0x6fec0004,0x0017f440,0x8003fd80,0xf700007a, 0x7d400005,0x3fae6006,0x0550ceff,0x0000ff40,0x005fb100,0x0dd017e0, 0x80027dc0,0xcefffed9,0x36200170,0xdb10002f,0x2fb80005,0x102fc400, 0xbd1000bf,0xa8000dd7,0x0efb81ef,0x881bf900,0x4fd803fd,0x0003fd88, 0x0001be60,0x0000fe88,0x000fe880,0x1f9007ec,0x64003f50,0x03df70ef, 0x0017f200,0x3ea3df70,0xd880001f,0x1f50003f,0x77ec4000,0xfb80004f, 0xfffa800e,0xbfffdbbd,0x3fa2006d,0xf9000002,0x3f6000df,0x8007f902, 0x7e4005fc,0xffdbabcf,0xfe8803fa,0x3ff20002,0xdfb10006,0x2fd8009f, 0x70007f90,0x40002d89,0x37f63fe9,0x8ffd4000,0x32002ff9,0x05fd30ef, 0x077d4000,0x1ff98000,0xff980000,0x05fa8001,0x1be20df5,0xbfbff500, 0xefb80001,0x3fa60000,0x80000efd,0x20002fe8,0xd30001fb,0x003bee5f, 0xc802fe40,0x3f2601ef,0x7f44006f,0xfb800003,0xfd10006f,0x0bffb59d, 0x003bee00,0x6c4033ee,0x7fcc03ff,0x7fdc0001,0x2ff98005,0x22001df9, 0xffdbcefe,0xb83d0005,0xfd880004,0x20003fed,0x00efdfe8,0xefcffa80, 0x3ee00001,0xf500000d,0x5000003d,0x640001df,0xffecbdff,0x000ff200, 0x00007fd1,0x000077d4,0x00009fb1,0x20007fe6,0xcffffec8,0x77dc01a8, 0x0017fcc1,0x7dc013f6,0x01bea005,0x00027ec0,0x000065c0,0x0bffffee, 0x01df5000,0xfe8027cc,0x007bea03,0x00065c00,0xff503bee,0x3ff22003, 0x20002eff,0x00016c4b,0x0003df70,0x00013f60,0x0000bfd1,0x00004fc8, 0x00003bee,0x00037ee0,0x3ffffaa0,0x07fc400c,0x00000c00,0x40001f4c, 0x3b200001,0xcff98000,0x5fffecaa,0xdd102fc0,0x801fcc00,0x6e8006f8, 0x003f2000,0x00000000,0x98000031,0x003ee03e,0x1bb01fd4,0x00000000, 0x0374409f,0x80000c40,0x007cacf8,0x00009800,0x500000c0,0x3f980000, 0x02fc0000,0x04f88000,0x00130000,0x04003fd8,0x00000000,0x00000000, 0x100ef880,0x00000bfd,0xfb800200,0x004b8001,0x08000000,0x00000000, 0x00db0000,0x000003f8,0x00000440,0x00220000,0x0bdb8800,0x81e44000, 0x040002c8,0x00010000,0x00000100,0x08000001,0x00200000,0x2a01bea0, 0x22ceffec,0x2000002a,0xccccccc8,0x666664c0,0x4000004c,0x2fc403fc, 0x00000000,0x00002ec0,0x40000000,0x2ceffeca,0xcccc88aa,0x664c0ccc, 0x0004cccc,0x06003e40,0x5cc00000,0x50cefffe,0x20000005,0xcefffeb9, 0x00000550,0x80ffc800,0x22000ffd,0x0cefffdb,0x3ffb6600,0x00170cef, 0x00000000,0x00000000,0x3fff6e20,0x3fd000ce,0x2b3bfee0,0x5d8dfecb, 0x33333322,0xcccccccc,0x3fba64cc,0x7540eeee,0x10deffee,0x99999999, 0x99999999,0x55007e89,0x66666644,0xcccccccc,0x6664c4cc,0xcccccccc, 0x0001fc4c,0x99999900,0xb8000799,0xecbaceff,0x3a65d8df,0x40eeeefe, 0xdeffeeea,0x99999950,0x39999999,0x50000fdc,0x99999999,0x20399999, 0xdbbdfffa,0x546dbfff,0xcccccccc,0x501ccccc,0xfb77bfff,0xc80db7ff, 0x3ccccccc,0x837d4000,0x3e6006fb,0xffecacef,0xbcffc803,0x3faffdba, 0x33333260,0xcccccccc,0x33222ccc,0xcccccccc,0x32e001bc,0x32200ccc, 0x00cccccc,0xd959dff3,0x9f7007ff,0x5c01bfb0,0x3ba25eff,0xeeeeeefe, 0x87eeeeee,0x3e4003f8,0x777f7744,0xeeeeeeee,0x002747ee,0xeefeee88, 0xeeeeeeee,0x777d47ee,0xeeeeeeee,0x003f30fe,0x3bb62000,0x00feffee, 0x401bfb00,0xf885effb,0x5c3e4003,0xefeeeeee,0x222eeeee,0xd70001fe, 0xddfddddd,0xf905dddd,0x7fe4c03d,0x777775c6,0xeeeeeefe,0x201efc82, 0x2206ffc9,0xeffeeeed,0x0040000f,0x0efb8002,0x5c09fd10,0xffb100cf, 0x7f775407,0xeeeeffee,0x3a24feee,0xeeeeefee,0x800dfffe,0x204ffeed, 0xeefeeee9,0x100efb80,0x7f9809fd,0xe8801fdc,0x005f305f,0x01fc43dc, 0x5f301f20,0x1b63dc00,0x00be6000,0x00fd47b8,0x001ee7d8,0x23b60000, 0x3fb8003f,0x10bfd100,0x07c8007f,0x44003ea0,0x0000adfe,0xf7000fa8, 0x037d400b,0xf7000fa8,0x037d400b,0x01fc76c0,0xb8000000,0x07fb005f, 0x3fa009f3,0x323f3003,0xf9827407,0x07fee202,0x001fff80,0x02fdc0f7, 0x3e203fd8,0x800df31f,0x05f305f9,0x1fc43dc0,0xf301f200,0x2a3dc005, 0x260000df,0x51ee002f,0x45f7003f,0x0000007c,0x006d9fc4,0x260037cc, 0x003f885f,0x1f5003e4,0xfffea800,0xfa8002cd,0x006f8800,0x1f5006e8, 0x000df100,0x3f8800dd,0x000000db,0x800bf100,0x007dc0fd,0xf7003fa8, 0x413a03e4,0xee8802f9,0x0dd9f000,0x2fc41ee0,0xf803f600,0x0003f92f, 0x00be60bd,0x03f887b8,0x3e603e40,0x2e1ee002,0x4001bdff,0x1ee002f9, 0x5f9803f5,0x000003e4,0x0fd43ee0,0x0003f900,0x007f10bd,0x3ea007c8, 0xb9510000,0x54007fff,0x01fb800f,0xf5004b80,0x003f7001,0xfb800970, 0x00003f50,0x01fc8000,0x1b627cc0,0x3a007f00,0x09d01f25,0x7cc00be6, 0x7f57f004,0x3f20f700,0x027cc001,0x0013a7fd,0x02f98154,0x0fe21ee0, 0xf980f900,0x441ee002,0x0bdfffeb,0x70017cc0,0x7401fa8f,0x5c03e40e, 0xcccccccc,0x4f8bd000,0x40013a00,0x003f882a,0x1f5003e4,0x7e4c0000, 0x001f5004,0x000000bb,0x0bb001f5,0x2f400000,0x7fc4013e,0xfff102ff, 0x04f883ff,0x07c8fb00,0x3f8800c0,0x209d01f2,0x176002f9,0x00fd9fc0, 0x027c43dc,0x3f607d80,0x00001f8c,0x26002f98,0x4003f883,0x017cc07c, 0x75100730,0x7cc07ffb,0xf30e6002,0x5c0fe401,0x7fff400f,0x801fffff, 0x803e42f9,0x400001f8,0x3e4003f8,0x0001f500,0x5009f700,0x007f001f, 0x01f50000,0x000007f0,0x0f90be60,0x017ee5c0,0xa83fb997,0x1f30000f, 0x00000fdc,0x80f90fd4,0x005f304d,0x13f8036c,0xa87b809f,0x1f30000f, 0x03eb7f20,0x0be60000,0x3f8800ec,0x2603e400,0x0003b02f,0x4c13f620, 0x2003b02f,0x4c13e602,0x0db0001f,0x17cc3e40,0x00007d40,0x9000fe20, 0x007d400f,0x806d8000,0x0fcc00fa,0x7d400000,0x000fcc00,0x987c8000, 0x17c4002f,0x3e41f980,0xe88be000,0x6400001f,0x01023e47,0xf88017cc, 0x7e47f003,0x1f21ee01,0x3205f000,0x00007cdf,0x7f105f30,0x000fe200, 0x82f980f9,0x400003f8,0x105f307c,0xf880007f,0x000be206,0x09f0036c, 0x01f2017a,0x00fe2000,0x7d400f90,0x4000c400,0x07d400fa,0x00001ee0, 0x2e007d40,0x20000007,0x800bd04f,0x3f3002f8,0x740006d8,0x056ff444, 0x32274000,0xf98017c7,0x001f9002,0x5c0bd0fe,0x40006d87,0xd99fb04e, 0x3e600000,0x1003f882,0x07c8007f,0x1fc417cc,0x0be60000,0x0fe20be6, 0x801fb000,0x0db0005f,0x7dc07ea0,0x00036400,0x2001fc40,0x03ea007c, 0xf3000f70,0x400fa803,0x0000007c,0x07c801f5,0x3f500000,0x88003ee0, 0x83f3002f,0x36c0004e,0xcdfffea8,0x217c4002,0x9801fc7c,0x27f4402f, 0x2fa87f00,0x009d0f70,0x7fd06d80,0x200000d9,0xfffffff9,0x07f1003f, 0x7cc07c80,0x3fffffff,0xf10014c0,0xfffff307,0x40007fff,0x3fa803fa, 0xb006d800,0x201fc40d,0x8800006c,0x03e4003f,0xfc801f50,0x007dc001, 0x0f9003ea,0x3ea00000,0x0003e400,0x2206d800,0x0be2003f,0x13e0fcc0, 0x880d9000,0x03fffdca,0xffc81f70,0xf3003fff,0xd9533337,0x3f8007ff, 0x87b80fd8,0x3640004f,0x007caff8,0x99bf3000,0x2007f999,0x3e4003f8, 0x33337e60,0x36c03fcc,0xf303f500,0x7f99999b,0x017e2000,0x6c000fd8, 0x403f8806,0x003e406d,0x001fc400,0x0fa801f2,0x1002fe40,0x01f500df, 0xccb807c8,0x00cccccc,0x1f2007d4,0x333332e0,0x3e200ccc,0x10036c03, 0x07e6005f,0x5d8000bb,0x04fc9800,0xaafc86d8,0xff3003fa,0x7fffffff, 0x307f0001,0xbb0f709f,0x885d8000,0x000fb9ff,0x882f9800,0x07f1003f, 0x7cc07c80,0x6c03f882,0x06e8804f,0x07f105f3,0x8003fa00,0x36003ff8, 0x400fb806,0x03ee01fa,0x07f10000,0x2a007c80,0x27fe400f,0x400ff440, 0x07dc00fa,0x3fffffa0,0x7d401fff,0x2007dc00,0xfffffffe,0x003ee01f, 0x3e2003f5,0xc83f3002,0x01fc0006,0xf809f700,0x01fc7c84,0xaaaacf98, 0xf0001ffb,0xf703f207,0xf8000d90,0x3f56fa83,0x5f300000,0x7c400be0, 0x203e4003,0x805f02f9,0xd500cffd,0x40be603f,0x2fb8002f,0xbefc8800, 0x3ff26209,0xeeefe805,0x4feeeeee,0x00007ea0,0xc8007f10,0x003ea007, 0x437ff5f9,0x002ffb98,0x1f9801f5,0x200db000,0x0fcc00fa,0xe806d800, 0xeeeeeeef,0xf1004fee,0x707e6005,0x0fc4000f,0x981b6000,0x7feeeeef, 0x2f98005c,0x0005fd30,0x717e207f,0x4000f70f,0x13fc81f8,0x3000007f, 0xf000605f,0x406e8009,0xb00302f9,0xd9bdff7b,0x7cc03dfd,0xf3000302, 0x2a05b809,0xfffffffe,0xef9801cf,0xeeeeeeee,0x0fe207ee,0x013e0000, 0x7d400dd0,0xfd8ad400,0x0dffffff,0x1003ea00,0x1b60005f,0x22007d40, 0x0db0002f,0xeeeeef98,0x07eeeeee,0x26005f10,0x0017d41f,0x000627b8, 0x67dc03ea,0x007ecccc,0xd880be60,0x01fc002f,0x543dc5f5,0x0f70002f, 0x07e41ff1,0x0be60000,0x0b90b900,0x26027c40,0x9ae4002f,0x9dfdb711, 0x005f3005,0x06e885c8,0x953007c8,0x5c001357,0x80be6007,0x400000fc, 0x13e2005c,0x8000fa80,0x00abfb98,0xf800fa80,0x00db0005,0x17e003ea, 0x2e036c00,0x00be6007,0x7cc00be2,0xf0006e81,0x4c003dcd,0x320bd01f, 0x5f300807,0x4001fb00,0xf737403f,0x7c001ba0,0x7c44fb86,0x81d88005, 0x36c002f9,0xfa8007d4,0x0017cc03,0x01f501b6,0x20017cc0,0x801fd86d, 0x0000007c,0x0bd0013a,0x44002fc4,0x000fa81d,0x7d4007f5,0x01e20000, 0x5001f500,0x0db0007f,0x2a003ea0,0x06d8003f,0x17a00274,0x5400be20, 0x003f981f,0x03f917dc,0xf880fb80,0x5f00f903,0xf1005f30,0x201fc00d, 0x260f73f9,0x17dc003f,0x1fdc0ff4,0x301ff300,0x86d8005f,0xee8805f8, 0x0017cc00,0x01f501b6,0x20017cc0,0x801fd46d,0x5df3007c,0x003f3000, 0x3ee00fb8,0x03fe6003,0x3a2017e2,0x03ea000e,0x01ef8800,0x2001f500, 0x36c000fd,0xb000fa80,0x06d8001f,0xf70007e6,0x700bf001,0x07f603ff, 0x3f22fd40,0x41be2005,0x80f900fa,0x02f983f8,0x3e007f50,0x7b8fc803, 0x54007f60,0x205fa85f,0x7d400dfb,0x005f301e,0x07f706d8,0x4c017f44, 0x036c002f,0xf98003ea,0xf136c002,0x003e400b,0x1b2001aa,0x700fe200, 0xefa801bf,0x880fee01,0x7d4002fe,0x06a80000,0x2001f500,0x36003ff8, 0x001f5006,0xd800ffe2,0x2001b206,0x0fd803f8,0x407fff60,0x7d403fe8, 0x027fe40e,0x6c80ff44,0x7f101f20,0x6c005f30,0x803f800f,0x2207bdf8, 0x77d403fe,0x6401fe80,0xb730abff,0x17cc01bf,0xfb81b600,0x7fd730ae, 0x000be600,0x00fa80db,0xb000be60,0x90007ecd,0x1aa1500f,0x4000fe00, 0xbffc806d,0x1bfb730a,0x215df700,0x8003feb9,0xbb8000fa,0x2a000d51, 0x3f22000f,0x326209be,0x1f5005ff,0x5f7e4400,0x3ff26209,0x4000fe05, 0xbef9806d,0x9bfeca88,0xbfb00cdf,0x3bf6e215,0xbffafc80,0x0bfee621, 0x01f204e8,0x05f307f1,0x7c02fc40,0x0fdf7003,0x2215bfb0,0xf980efdb, 0xfffb3004,0x2207dfff,0xcccdfdcb,0xcccccccc,0x7ff5c06e,0x4401efff, 0xcccdfdcb,0xcccccccc,0x007d406e,0x337f72e2,0xcccccccc,0x33be6ecc, 0xcccccccc,0xfd807ecc,0xb93002ef,0x440799bf,0x0bcfdccb,0x3ffff660, 0x5c003eff,0x1efffffe,0x666664c0,0xbccccdfd,0x3bff6600,0x66664c02, 0xccccdfdc,0x3ffaa00b,0x1cffffff,0xdccccc98,0x0bccccdf,0x3ffffaa0, 0x981cffff,0x03ccdfdc,0x33f732e2,0x3ffea00b,0xff30efff,0x7ffdc05f, 0x2a03ffff,0xfffffb15,0x99301bff,0x332617bf,0xccccccfe,0xb9713fcc, 0x700799bf,0x65c4179f,0x200bccef,0xff7007fe,0x407fffff,0xb9880059, 0x7fcc00ac,0xffffffff,0x6fffffff,0x03595100,0x3ffffe60,0xffffffff, 0x4406ffff,0xffff9802,0xffffffff,0x3e6fffff,0xffffffff,0x007fffff, 0xfff70002,0x2601dfff,0x2fffffff,0x0acb9880,0x56544000,0xffff7001, 0xffffffff,0x4002005f,0xfffffffb,0x02ffffff,0x13579530,0x7ffffdc0, 0xffffffff,0x57953002,0x7ffdc013,0xf300efff,0x05ffffff,0x009bca88, 0x2bca8800,0x79731000,0x7ffdc015,0xffff71ff,0xffffffff,0x3fffe67f, 0xe800efff,0x3ffe62ff,0x2601ffff,0x6544007f,0x0000002b,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x000c4000,0x000002a0,0x90000013,0x10174403, 0x04c0007b,0x40b22000,0x01f402c8,0x6e4c0172,0xccc88002,0xcccccccc, 0x26c0001b,0xea801ae0,0x2007a601,0x200ccccb,0xccccccc8,0x5c807d00, 0x25c02d80,0x4ccc0000,0x01e80099,0x002202d4,0xccccc982,0x000ccccc, 0x32a03930,0x3a204001,0x0002d401,0x33332200,0xcc984ccc,0x00003ccc, 0xb5007a20,0xffa84400,0x3fc8000f,0x0ff20000,0x05f30000,0x7cc27f44, 0x7e44001f,0x801a83ff,0xffc80ffc,0x1037f600,0xffb005fd,0x07dc3bff, 0xeefeee88,0xdfffeeee,0x1df70000,0x2004fd88,0xefb82ff9,0xffeed800, 0x3bbba604,0xbf900eef,0x803fe881,0x4fd884fd,0xf013f200,0x803fffff, 0x2037405f,0x1f300cfe,0x3ffbbbaa,0x0001eeee,0x17fe0dff,0x2fc2f980, 0x32001ba0,0xeee8804f,0x540deeef,0x804effee,0x5f8003fd,0x64c03740, 0x09fffb5f,0x0004fd80,0x00013f60,0x7e401f60,0x001df70d,0xdfb59fb0, 0x7007fb35,0x01bee0ff,0x7fd47bee,0x2e3fa801,0x004fedff,0x7dc405f3, 0xff50001f,0x000bfa65,0xdfd93f62,0x1fff8000,0x2e00f700,0x03ff51ef, 0xe9877dc0,0x3fe6003f,0x2ab7e01f,0x03fd801a,0xfc8807f9,0x7401f506, 0x3f600005,0x4009fd04,0x817ec0fe,0x7cc003fc,0x3e6001ff,0x009f9002, 0x0003ffea,0x0ff205fb,0x7e42ffe0,0xfd1002ff,0x36200007,0x9800003f, 0x3fea003f,0x320005fd,0x17fff541,0x00080100,0x03bf7fa6,0xeec88080, 0x00be6002,0x40003ba2,0x01efdfe8,0x7f77e400,0x3b3e0003,0x400f7006, 0x00efdfe9,0xefcff980,0x7ffc4001,0x20013e00,0xfdacffe8,0x0fea005f, 0x05e803ea,0x02004000,0xe884fb80,0x5ffdacef,0x0fff8800,0x200be600, 0x3e6003fd,0xfe88007f,0x05ffdace,0x1ca80fa8,0x005fd100,0x00bfa200, 0x007ec000,0x000ffa20,0x000a9800,0x6c400000,0x0000004f,0x3002f980, 0xfc80009f,0xf500000d,0xbf80003d,0x07b803fa,0x0027ec40,0x0037f620, 0x3e00e540,0x3fee0004,0xf8003fff,0x3a00fa84,0x00000005,0xb807fe00, 0x002fffff,0x30007260,0x17ec405f,0x000e5400,0x5fffff70,0x00017600, 0x00000fe4,0x000003fb,0x180013e2,0x00100000,0x00000800,0x00000003, 0xd800be60,0x00180005,0x00008800,0x801fb3f8,0x0030007b,0x00001400, 0x80004f80,0x2f400018,0x0bd007d4,0x00000000,0x0c401bea,0x20000000, 0x3fd102f9,0x00000000,0x09d00031,0x00000000,0x00000044,0x000001f9, 0xffb71000,0x880019df,0x0cefffdb,0x32200000,0x40cccccc,0x4cccccc9, 0x6c005f30,0x00000006,0x7c000000,0x7b809f13,0x00000000,0x3e000000, 0x00000004,0x01f50bd0,0xc88002f4,0x40cccccc,0x4cccccc9,0x00002fd8, 0x26000000,0x01fe882f,0x00000000,0x00027400,0x00000000,0x04f88000, 0xccccccc8,0x7cc0003c,0xffecacef,0x9dff3003,0x207ffd95,0xccccccca, 0x31cccccc,0x1ddddfdd,0xeffeeea8,0x002f980d,0x665c07f1,0x332200cc, 0x910ccccc,0x99999999,0x20003799,0xb807f23f,0xccccc987,0xcccccccc, 0x664c4ccc,0xcccccccc,0x6664c4cc,0xcccccccc,0xc8013e4c,0x3ccccccc, 0x2a17a000,0x0017a00f,0x7777f74c,0x7f77540e,0x1fe20def,0x3333332a, 0x1ccccccc,0x99999991,0x99999999,0x30be6099,0x32a001df,0xcccccccc, 0x9911cccc,0x99999999,0x09999999,0x9930013a,0x99999999,0x33332001, 0x3332204c,0x3ee002cc,0x7776c400,0x000feffe,0x2201df70,0x77dc04fe, 0x709fd100,0xdfdddddd,0x885ddddd,0x03e4003f,0x7e400be6,0x3ffbb600, 0x3bbba604,0xddd10eef,0xfddddddf,0xf8001bff,0x0f702f43,0xddddddf5, 0xddddddfd,0x777d41fd,0xeeeeeeee,0x3bbea0fe,0xeeeeeeee,0x2009f0fe, 0xffeeeed8,0xbd0000fe,0x2f401f50,0x00fe2000,0x0ff20f90,0x3bbbbbae, 0x2eeeeeef,0xdddfddd1,0xdddddddd,0xa8be60fd,0x3ae000ef,0xeefeeeee, 0xdd12eeee,0xddddddfd,0x0fdddddd,0x5434c13a,0xeeffeeee,0xfdb001ee, 0x774c0bdf,0x3e004eff,0x23b60005,0x5fb8003f,0x2e07fb00,0x07fb005f, 0x44003ea0,0x03e4003f,0xfd100be6,0x0fffc009,0x7cc07b80,0x07fee202, 0x17d43f80,0x01fa87b8,0x83ee01f5,0x8fb001fa,0x4fb001fa,0x76c0004f, 0xbd0003f8,0x2f401f50,0x00fe2000,0x0bfe0f90,0x2000fa80,0x1ee002f9, 0x0ffb97cc,0x01f50000,0x70017cc0,0x7d413a0f,0x0005e801,0xf3000fd8, 0x01fb8007,0x1b67f100,0x800bf100,0x02fc40fd,0x2a003f60,0x07f1000f, 0x7cc07c80,0xeca9999b,0x67c003ff,0x80f7006e,0xee8802f9,0xfb07f000, 0x3f50f701,0x7dc03ea0,0x2e007ea0,0x400fd42f,0x0013e2fb,0x00db3f88, 0x03ea17a0,0x440005e8,0x43e4003f,0x2a000ff9,0x0be6000f,0x5f307b80, 0x005ffdf9,0x4001f500,0x1ee002f9,0x01fb8274,0x880005e8,0x00dd005f, 0x5c000bd0,0x4003f50f,0x7cc001fc,0x2000fe44,0x0fa804f9,0x8007f100, 0x7ffcc07c,0x0bffffff,0x3fabf800,0x7cc07b80,0x009f3002,0x213e60fe, 0x501fa87b,0xa83ee01f,0x42fcc01f,0x2fcc01fa,0xfb80013e,0xd0003f50, 0x7401f50b,0x1fc40005,0x3ea1f200,0x007d4007,0x5c005f30,0x29fdf307, 0x0000dfc8,0xf98003ea,0x7c1ee002,0xd005f704,0x3ee0000b,0x000fe402, 0xe8000bea,0xf88027c5,0x44fb0004,0x0fb0004f,0x22001f50,0x03e4003f, 0x2aaab3e6,0xf0001ffb,0xf7003f67,0x2002f980,0x207f005d,0x543dc0fc, 0x201f501f,0x007ea0fb,0x03f501dd,0x027c0ee8,0x04f8bd00,0x7d40fc80, 0x00017a00,0x7c8007f1,0x54006fb8,0x0be6000f,0xff307b80,0x000bf507, 0xf30007d4,0x4c3dc005,0x005f903f,0x6c0000bd,0x009f300f,0x4c000dd0, 0xa803e42f,0x1f30000f,0x4c0003ea,0x007d400f,0x64003f88,0x9817cc07, 0x3f8002fe,0x07b809f1,0xdb0017cc,0x7c40fe00,0x0fd43dc5,0x1f700fa8, 0x3f9007cc,0xfc803e60,0x30004f81,0x8007c85f,0x03ea1dfa,0x072005e8, 0x7c8007f1,0x54005fc8,0x0be6000f,0x7f303980,0x80017d40,0x3e6000fa, 0xd50e6002,0x00bf201f,0x8800017a,0x000dd04f,0x640005f5,0xc802f987, 0xc97c0007,0x017c0007,0x7c4003ea,0x203e4003,0x3f6202f9,0xf91fc002, 0x2603dc03,0x07f1002f,0x2fa80fe0,0x403e61ee,0x50f500fa,0x0a027cc0, 0x09f04f98,0x3e61f200,0x4ffb8002,0x02f401f5,0x03f889f0,0x27ec3e40, 0x8003ea00,0x003b02f9,0x3f6017cc,0x00fa8000,0x0ec0be60,0xd807ffa0, 0x005e803f,0x2e17dc00,0x06d8001f,0x5e827c00,0x40006d80,0x8000db4e, 0x007d404e,0x64003f88,0x4017cc07,0x0fe000fd,0x203dc0bd,0x1f9002f9, 0xdd00fe00,0x2a0183dc,0x8800200f,0x3e20006f,0x40013e06,0x000bd04f, 0x03ea3bfd,0x13e005e8,0x7c8007f1,0x54004fd8,0x0be6000f,0xf9800fe2, 0x002fc402,0xf30007d4,0xa807f105,0x0ff604fe,0x000017a0,0x027c43ba, 0x0001fcc0,0x03ee03f5,0xd80009d0,0xd80009d6,0x8007d406,0x3e4003f8, 0x2200be60,0x50fe006f,0x301ee05f,0x4fe8805f,0xf300fe00,0x2a001ee7, 0xfb00000f,0x07ec0001,0xf50009f0,0x8003ee03,0x007d42fb,0x227c00bd, 0x3e4003f8,0x2a0037e4,0x0be6000f,0xf9800fe2,0x000fb802,0xf30007d4, 0x2007f105,0x09fb02fc,0x00000bd0,0x003b69f3,0xb0001f60,0x201fc40d, 0xb640004f,0x3640004f,0x44003ea0,0x03e4003f,0x7d400be6,0xfb07f003, 0xf980f701,0xeca9999b,0x1fc003ff,0x03dc7e40,0x00007d40,0x50001fd4, 0x004f807f,0x0fe206d8,0x0fa86d80,0x4f8017a0,0x32001fc4,0x4007fb87, 0x3e6000fa,0x3fffffff,0x200be600,0x7d4004f8,0x3ffe6000,0x003fffff, 0x13fa07f1,0x000017a0,0x0017efdc,0x10001fc4,0x406d807f,0xaec0005d, 0x2ec0005d,0x44003ea0,0x03e4003f,0xfd800be6,0xf983f800,0x7cc07b84, 0xffffffff,0x03f8000b,0x007bdf88,0x40000fa8,0x220005f8,0x004f805f, 0x1b601fc4,0x0fa85e80,0x4f8017a0,0x32001fc4,0x000ffa87,0xf98003ea, 0x3fcccccd,0x400be600,0x07d4007d,0x999bf300,0x74007f99,0xd00bfd04, 0x7400000b,0x1f90005f,0x007dc000,0x06c807ea,0x06c9fc00,0x2a01fc00, 0x07f1000f,0x7cc07c80,0x017e2002,0x207e40fe,0x567cc07b,0x01ffbaaa, 0x2e007f00,0xfa8007ef,0x07f40000,0x001fd000,0x0fb8009f,0xe800fd40, 0x3a00fa85,0xf113e005,0x887c8007,0x3ea001ff,0x20be6000,0x3e6003f8, 0x005f3002,0xf30007d4,0x4007f105,0x00bff04e,0x400000bd,0xf88001fa, 0x77f40004,0xeeeeeeee,0x001ee04f,0x00f71f88,0x2a00fc40,0x07f1000f, 0xcb887c80,0x803ccdfd,0x7f00bcfb,0x0f717e20,0xfd302f98,0x3f2e2005, 0x3a00bcce,0x0fa8007f,0x00bee000,0xf002fb80,0xeefe8009,0xfeeeeeee, 0xf50bd004,0x3f333221,0xccccccce,0x7c44fccc,0xe83e4003,0x03ea002f, 0x5f02f980,0xdfdcb880,0x677403cc,0x007d401c,0x0be05f30,0xdff04e80, 0x6400bd00,0x007ea001,0x80003f20,0xeeeeeef9,0x207eeeee,0xf70002fa, 0xb80017d4,0x000fa807,0x0dd0013e,0xfffffff3,0x5ffd001d,0x2fa80fe0, 0x05f301ee,0x4c017ec4,0x1fffffff,0x2001fe60,0xf30000fa,0xf305b809, 0x09f5b809,0x77777cc0,0x7eeeeeee,0x1f50bd00,0x3fffffea,0xffffffff, 0x04f84fff,0x5fa83740,0x8003ea00,0x300302f9,0xffffffff,0x27ffdc01, 0x98003ea0,0xe800302f,0x806ff884,0x013e005e,0x44001fa8,0x3dc0005f, 0x7405f300,0xe8df0006,0x00df0006,0x2e4001f5,0x0009f100,0x03f80000, 0x980f7374,0x00fd802f,0x00000000,0xd10001f5,0xd10f900d,0x13ef900d, 0x26007b80,0xa85e802f,0x8000000f,0x13e2005c,0xf5000ff8,0x017cc001, 0x00001720,0x0007d400,0x5c8005f3,0x07fb04e8,0x27c00bd0,0x8003f500, 0x740001fb,0x302f4004,0x2fb8007f,0x2e001fcc,0x00fa802f,0x54003ea0, 0x0000003f,0x3e601fc0,0x2f980f73,0x0006f880,0xf5000000,0x03fb0001, 0x03fb0f90,0x8013ef90,0x02f4004e,0x007d42f4,0x07d40000,0x3203fa80, 0x01f5004f,0x20017cc0,0x0000006d,0x4c001f50,0x436c002f,0x7400204e, 0x8013e005,0x2fc001fa,0x007e6000,0x7ec01f70,0x20bf5001,0xbf5001fd, 0x8003ea00,0xee8805f8,0x1bf70000,0x401fc000,0x4c07b8fc,0x07f5002f, 0x02ef9800,0x001f5000,0xf9003fa8,0xf9003fa8,0x0fcc013e,0xd003ee00, 0x2001f50b,0x44002ef9,0x0ee8805f,0x5401fe60,0x0be6000f,0x4c00db00, 0x540002ef,0x0be6000f,0x0bd0db00,0x400bd000,0x07ea004f,0x0001fa80, 0x7c400364,0x00ffa203,0x3a201df5,0x077d403f,0x4000fa80,0x3fa203fb, 0x25c40002,0x1007f000,0xf980f7bf,0x003f6002,0x0001aa00,0xf10007d4, 0xf13e400b,0x4fbe400b,0x1000d900,0x417c407f,0x354000fa,0x101fdc00, 0x5fb005fd,0x4001f500,0x36c002f9,0x00035400,0xf98003ea,0x6c36c002, 0x05e80007,0xfa8013e0,0x001ba001,0x6c000fe0,0x0adfd806,0x001dfb71, 0x2e215bfb,0x2a000efd,0xefb8000f,0x07fd730a,0x2e42a200,0x2007f000, 0x7cc07efb,0x017e2002,0x006a8540,0x4001f500,0x9f2000fd,0x5f2000fd, 0x007f004f,0x3e441b60,0x0a800fa8,0x3ee000d5,0x7fd730ae,0x201be600, 0x3e6000fa,0x8036c002,0x8000d50a,0x3e6000fa,0x5c36c002,0x2f40003f, 0x54009f00,0x05f5001f,0x37f72600,0x32e203cc,0x200bcfdc,0xfffffffb, 0x7ffdc003,0x2603ffff,0xdfdccccc,0x400bcccc,0xefffffeb,0x3fa20001, 0x5c4001df,0x00bccefc,0x32e21ffa,0x803ccdfd,0x2000bcfb,0x8002effd, 0xcfdcccb8,0x3be03ccc,0xcccccccc,0x3be7eccc,0xcccccccc,0xddf7eccc, 0x37261bdd,0x2203ccdf,0x0bcfdccb,0x3ea07ff9,0x2effd800,0x3ffae000, 0x4001efff,0x999931fc,0x9999bfb9,0x3f72e217,0xcccccccd,0x006ecccc, 0x2005dffb,0xfdccccc9,0x10bccccd,0x999bfb97,0x99999999,0x0bbfa0dd, 0x3f333220,0xccccccce,0x7104fccc,0x99bfb999,0x00172079,0xffffffb8, 0xffff300e,0x51005fff,0x88000579,0xfb802bca,0xffffffff,0x1002ffff, 0x00003595,0xff300008,0x403fffff,0xfff987f9,0x800effff,0x08002ffe, 0x3ffea000,0xefffffff,0xffffff00,0xffffffff,0x7fffffcf,0xffffffff, 0x1bddddd7,0x3fffffee,0xffff300e,0x03325fff,0x00400588,0x35951000, 0xfb8ec000,0xffffffff,0xff32ffff,0xffffffff,0xdfffffff,0x5c000800, 0xffffffff,0xf32fffff,0xffffffff,0xffffffff,0x401e4c0d,0xfffffffa, 0xffffffff,0xfff304ff,0xffffffff,0x00000001,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x98000000,0xaaaaaaaa,0x0e4c001a,0xcc881ca8,0xcccccccc, 0x00000ccc,0x333332a0,0x000ccccc,0x20000310,0x059102c8,0x80002200, 0xaaaaaaa8,0x0f4002aa,0x2e000076,0x13003ced,0x99970000,0x33320799, 0x64c03ccc,0x00039501,0xaa980008,0x1aaaaaaa,0x80001000,0xaaaaaaa9, 0xaa8801aa,0x2aaaaaaa,0x99988000,0x00099999,0x08000350,0x000ed400, 0x3d3006dc,0x35c04d80,0xca80e4c0,0xfffff800,0x006fffff,0x5ff837fc, 0xeeeeed98,0x0deeeeef,0x337fb260,0xdddd7000,0x01dddddd,0x1effd980, 0xff9001c4,0x001ff901,0x40effe4c,0x7fffec03,0x00ffffff,0x03f87f10, 0x3bbfa600,0xff9103fe,0x1003705f,0x1bdddfdb,0xeffeed88,0xf837fc04, 0x6dc4005f,0x800bdfff,0xffffffff,0x322006ff,0xf0001dff,0xffffffff, 0xfff900df,0x3fffffff,0xffdb8800,0xeefeeeef,0x03fc8003,0x05dfd700, 0x2001bfe0,0x6fb82ff9,0x440efb80,0x5ff804fd,0x3100bff0,0x33333333, 0x209fb000,0x3ea004fe,0x77fd4000,0x0001ffdc,0x3fe60000,0xfa9dffbb, 0x0ff7000f,0xf8801bee,0x99cffbbf,0x4ccc00fe,0x00999999,0x3f88be20, 0x83df1000,0x3ab3fa00,0x02fd9aef,0x9000fe20,0x413f600f,0x3ea004fe, 0xefecacef,0x4cccc401,0x40019999,0x000d70db,0x26666662,0x26200199, 0x09999999,0x8dffdc00,0x40012e0f,0x50003fd8,0x1003e63d,0x22000dff, 0x09fb13fe,0xe997fcc0,0x09fb003f,0x000013fa,0x00801000,0x70007d40, 0x1fd8819f,0x30000000,0xefffc817,0x02004000,0x64419300,0x0001efff, 0x21f98000,0xfb0002f8,0x541c8001,0x4002fffe,0x3e4003f8,0x00080100, 0x744037ee,0x0000002f,0x0007a07c,0x00000000,0xf03bf600,0x440025c1, 0x360002fe,0x7fc01e42,0x6fe40006,0xe88002fe,0x4001efdf,0x00000400, 0x00000000,0xf88007d4,0x2202f404,0x0059103c,0x000d4400,0x40000000, 0x10000ab8,0x21fa8000,0xf88002f9,0x55400003,0x03f88000,0x00003e40, 0x402fdc00,0x00002fd8,0x03d03e00,0x00000000,0x0ffa8000,0x0012e0f8, 0x80003ff3,0x7c01e42d,0xfa80005f,0x7e40001e,0x0000000d,0x99999991, 0xccccc981,0x0000004c,0xf9000fa8,0x6407a801,0x0ffd80ff,0x00000000, 0x00000000,0xfffb7100,0xfa80019d,0x20007e60,0x000002f9,0x00fe2000, 0x00000f90,0x4005f880,0x6666546e,0xcccccccc,0x50cc801c,0x9999100d, 0x99999999,0x64099999,0x3ccccccc,0xf827e400,0xd70012e0,0x1d500001, 0x3fa003e6,0x00100005,0x00000c00,0x3bfba600,0x77540eee,0x910deffe, 0x99999999,0x99999999,0x3001f500,0x03f3007f,0x6fb837d4,0x066665c0, 0x99999910,0x33332019,0x4003cccc,0xccccccca,0x01cccccc,0xd959dff3, 0x7dc007ff,0x20003ea0,0xcc8001fa,0x03cccccc,0x8007f100,0x9999907c, 0x66664409,0x0007e42c,0xeeeb8fe6,0xeeeefeee,0xfc8802ee,0xee8801df, 0xeeeeeefe,0x07eeeeee,0xffddddb1,0x7f4001fd,0x025c1f02,0x32000000, 0xfd002eef,0x00000009,0x99500000,0x99999999,0x3f883999,0x7443e400, 0xeeeeefee,0x7eeeeeee,0xb800fa80,0x03f8800f,0x36002004,0x2604ffee, 0x0eefeeee,0xfeeeed88,0x2e000fef,0xefeeeeee,0xb82eeeee,0x9fd100ef, 0x1f71ee00,0x001f5000,0xfeeeed88,0x88000fef,0x83e4003f,0x205effed, 0x24effee9,0xfb0004f9,0x000fa801,0x30000880,0x03dc005f,0x00fe3b60, 0x41f02fe8,0x3000004b,0x2000c003,0x664404fe,0xcccccccc,0x44cccccc, 0xcccccccb,0xeb801bcc,0xeefeeeee,0x7c42eeee,0x203e4003,0x1ee002f9, 0x32003ea0,0x007f1007,0xfff80000,0x000f7001,0x000fe3b6,0x5c003ea0, 0x07fb005f,0x007b8f90,0x00001f50,0x000fe3b6,0xf9000fe2,0x3000fd80, 0x001f707f,0xf500be60,0x00000001,0x2e002f98,0x6cfe2007,0x413f6006, 0x30012e0f,0xfa813597,0x36000004,0x7774403f,0xeeeeeeef,0x6c7eeeee, 0xeeeeeffe,0x8003fffe,0x7f1000fa,0x4c07c800,0x01ee002f,0x1b6003ea, 0x03ffec98,0x67c00000,0x00f7006e,0x01b67f10,0x2003ea00,0x7ec005f8, 0x7ecccc40,0x999fc999,0xf9555500,0x00035557,0x001b67f1,0xf9000fe2, 0xd005f880,0x8001b20d,0x07d403f8,0x20000000,0x1ee002f9,0x3f50fb80, 0x7c1bee00,0x322012e0,0xbfffffff,0x4c00efa8,0xb001acca,0x17cc007f, 0x1b60f700,0x005fda88,0xf88007d4,0x203e4003,0x1ee002f9,0x3a003ea0, 0xcdffd884,0x0000003f,0x401fd5fc,0x0fb8007b,0xa80003f5,0x01fc800f, 0x3f227cc0,0xffffffff,0xf80fffff,0xffffffff,0x0fb8006f,0xf88003f5, 0x403e4003,0x0fe402fb,0x7c0005e8,0x2007d404,0x102ffff8,0x403fffff, 0x1ee002f9,0x027c5e80,0x41f0bfd0,0x67f5404b,0xfffb310a,0x3ff6a01d, 0x01efffff,0xf3001fe4,0xd83dc005,0x00bf7006,0xf88007d4,0x203e4003, 0x1ee002f9,0x3e003ea0,0x3e23fd83,0x0bfffe23,0x0fffffc4,0x007ecfe0, 0x17a001ee,0xfa80009f,0x0027c400,0x4ccc47d8,0x9ee999de,0x26660199, 0x00199afb,0x004f8bd0,0x32001fc4,0x201fb007,0x013e04f9,0xfa80bb00, 0x2fdcb800,0x07f732e0,0x26002f98,0xc85f3003,0x3bf62007,0x025c1f0a, 0xfb803df3,0x59df502f,0x00ff5443,0x7cc005f9,0x6c1ee002,0x007ee006, 0xf88007d4,0x203e4003,0x0e6002f9,0x3e003ea0,0x3e21fd43,0x017ee5c3, 0x803fb997,0xb809f13f,0x217cc007,0x7d40007c,0x0007d400,0x17a00f98, 0x3ea000bd,0x17cc0000,0x7f1001f2,0x1007c800,0xf01ba09f,0x06d80007, 0xf10007d4,0x807e6005,0x003b02f9,0x17cc3e40,0x37ff6a00,0x7c412e0f, 0x6eef9806,0x1fe20020,0x26002fb8,0x41ee002f,0x0374006d,0xf1000fa8, 0x407c8007,0x003b02f9,0x3e003ea0,0x1fc43e43,0xf3002f88,0x3f23f803, 0x9001ee01,0x0005f30f,0x1f2007d4,0x7c05f000,0xa8002f44,0x3e40000f, 0xf10017cc,0x007c8007,0x03f70bee,0x740005e8,0x0007d405,0x3e6005f1, 0x220be601,0x13e0003f,0x730002f4,0xfd825c1f,0x4c77cc01,0x7dc0003f, 0x4003f701,0x0e6002f9,0x3e60036c,0x000fa803,0x7c8007f1,0x7c417cc0, 0x01f50003,0x885d87f0,0x005f103f,0x87f007e6,0x001ee05e,0x0017a09f, 0x36c00fa8,0xf813a000,0xa80027c3,0x27c0000f,0x3e2005e8,0x003e4003, 0x027c43ba,0x3e00036c,0x0007d404,0x3e6005f1,0x220be601,0x3f50003f, 0x00003ee0,0x4f825c1f,0xfb077cc0,0x03f88000,0x7cc003f5,0x6c003b02, 0x805e8006,0x7f1000fa,0x4c07c800,0x003f882f,0x7f001f50,0x1fc40fc8, 0xf3002f88,0x7d43f803,0x5400f702,0x001f701f,0x9d003ea0,0x106d8000, 0x0004f87f,0x540001f5,0x001f701f,0x1b60027c,0x3b69f300,0x0007c800, 0x1f500be2,0x8017c400,0x3fe601f9,0x03ffffff,0x7c40db00,0x707c0003, 0x4c05f309,0x007dc0ef,0x2607f100,0x417cc006,0x1b6003f8,0x2a01b200, 0x07f1000f,0x7cc07c80,0x3fffffff,0x001f5000,0x444fa87f,0x005f103f, 0x07f007e6,0x00f701fb,0x07f1036c,0xf003ea00,0x36c80009,0xdddfdddb, 0x03bdddfd,0x80003ea0,0x00fe206d,0x27c005e8,0x17efdc00,0x0001fa80, 0x0fa803f9,0x400be200,0x37e601f9,0x03fccccc,0x6c03f880,0x707c0006, 0x2601f509,0x01f980ef,0xbdddd971,0x00007f79,0x1fc417cc,0x7000db00, 0x001f500f,0xf9000fe2,0xcccdf980,0x50003fcc,0xb09f001f,0x07f537df, 0x7cc00be2,0x7cc1fc01,0xf1007b84,0x0006d807,0x05d801f5,0xed9aec00, 0xfeeeefee,0x5001deee,0x3e20001f,0x90036c03,0x0fe6001f,0x002ff400, 0x3e2001ba,0x000fa805,0x7cc00be2,0x220be601,0x0fb8003f,0x0000fd40, 0x7d425c1f,0x300ef980,0xfffc883f,0xfffeecde,0x3e600003,0x3fffffff, 0x2001b600,0x07d400fa,0x4003f880,0x417cc07c,0xf50003f8,0x2e0bd001, 0x80ffffff,0x3f3002f8,0x1f903f80,0x1f7007b8,0x8001fa80,0x036400fa, 0x7cc0fe00,0x4000be61,0xf70000fa,0x001fa801,0x3ba00bf1,0x03f50000, 0x4003fa80,0x0fa801fc,0x400be200,0x0be601f9,0x7f40017c,0xeeeeeeee, 0x3e0004fe,0x0be612e0,0x7dc01ff1,0x200eff40,0x200003f9,0xcccccdf9, 0x01b6003f,0xf5003ea0,0x00fe2001,0x2f980f90,0x2a0005f0,0x406d800f, 0xf102a9a9,0x007e6005,0x717e207f,0x3bbfa00f,0xfeeeeeee,0x00fa8004, 0xf10003dc,0xf983ea03,0x01f50001,0x3bbbfa00,0x4feeeeee,0x8813f200, 0x2a0002fd,0x1fe8001f,0x2009f500,0x3e2000fa,0x403f3002,0x000302f9, 0xddddddf3,0x00fddddd,0x209707c0,0x007fa24f,0x002fc8db,0x400007f1, 0x03f882f9,0x2a001b60,0x007d400f,0x6e8009f0,0x01817cc0,0xdccccc88, 0x43ccccdf,0xf100007c,0x007e6005,0x717d407f,0xdddf300f,0xdddddddd, 0x01f5000f,0x70002fa8,0xf507dc0f,0x03ea0003,0x3bbbe600,0xeeeeeeee, 0x577e4007,0x007fd510,0x8001fa80,0x7dc02fe8,0x01f5000e,0x98017c40, 0x00be601f,0x01ee0b90,0xf0002f98,0x8fc825c1,0x7cc01fe8,0xf10027c4, 0x30006207,0x800be05f,0x06c8006d,0x32000fa8,0x013e2005,0x5c8005f3, 0xfffffff5,0x43dfffff,0x880002fa,0x03f3002f,0x737403f8,0x400f700f, 0x7d4002f9,0x0006e800,0x2a3dc0df,0x1f50000f,0x400f7000,0x75c002f9, 0x01efffff,0x001fa800,0x215bfd10,0x4004fdb9,0x3e2000fa,0x403f5002, 0x36c002f9,0x2f4004e8,0x12e0f800,0x00ff6fc4,0x03f31ba2,0x7d41fcc0, 0x5f3001ff,0x0db00060,0xf5009d00,0x007d4001,0x7cc03fa8,0x3036c002, 0x17a0017f,0x00be2000,0x0fe00fd4,0x01ee7f30,0x0bd0013a,0x9800fa80, 0x17dc003f,0x007b8f90,0x74001ee0,0x002f4004,0x001bef98,0x0007ea00, 0xfffffb88,0xfa8002ef,0x402fc000,0x3e601ffb,0x4c36c002,0x07dc001f, 0x09707c00,0x26017fdc,0x027c41fe,0xfd83ffa8,0x5f3004ff,0x6d85c800, 0x4017c400,0x3e2000fa,0x00ee8805,0x360017cc,0x70017206,0xbf00005f, 0x803ff700,0xb8fc803f,0x000fcc07,0xfa8003ee,0x003fb000,0x8d9017ea, 0x1ba0007c,0x0007e600,0xf10001f7,0xf5000005,0xfd100003,0x5400015b, 0x07ec000f,0x403fffb0,0x36c002f9,0x7c400364,0x2e0f8003,0x9fffd104, 0x3bf2a213,0xc801fd01,0xffb83fff,0x05f3002f,0x06d86d80,0x5400fe40, 0x1fdc000f,0x3005fd10,0x06d8005f,0x3fa000f6,0xfb012602,0x0fffec01, 0x3e200fe0,0x036407bd,0x5001fc40,0x3fa2001f,0x0077d403,0x000d91b6, 0x32000fea,0x03f88006,0x00007980,0x80003f50,0x44013fe9,0x0007d400, 0x2a22fbe6,0xcdf9bfec,0x4002f980,0x0003f86d,0x41f000db,0x89fe884b, 0xfffffffc,0x8df7cc04,0xf8cfeca8,0x072a0bcd,0x4002f980,0x2006d86d, 0x1f5005fa,0x15df7000,0x400ffae6,0x36c002f9,0x00e61d50,0x266f7fa6, 0x7cc05fda,0xfeca88be,0xf00cdf9b,0x1fbee007,0x360007f0,0x003ea006, 0x2215bfb0,0xd800efdb,0x2a6036c5,0x000bfb51,0x36c000fe,0x0aa3e800, 0x007ea000,0xfffffb80,0xfd99bdef,0xb9999935,0x179999bf,0x7ffffd40, 0x5fff30ef,0x337f72e2,0xcccccccc,0xfb936ecc,0x5c40799b,0x80bcfdcc, 0x15feeeea,0x3f65ddfd,0x0d65cc41,0xffffd500,0x3fe23dff,0x4c0002ff, 0x436c002f,0x1ff3006d,0x0003ea00,0x7fffff5c,0x6e5c401e,0xccccccdf, 0x06eccccc,0x8027ffec,0xffffffd8,0xffff5003,0x3fe61dff,0x3bf2e22f, 0x3fa00bcc,0xcdfdc987,0x332e203c,0x9930bcfd,0x99bfb999,0x7dc01799, 0x03ffffff,0x80bb13a0,0x04fffffb,0x66fee4c0,0x332e203c,0x2000bcfd, 0x001fffea,0x7ee665c4,0x3003cccd,0xb779bfff,0x219ffffd,0xfffffffb, 0x02ffffff,0x004de544,0xffffff98,0xffffffff,0xfff76fff,0x2601dfff, 0x2fffffff,0x2aaaaa88,0x0d46aaaa,0x97500000,0x00000037,0xdb000be6, 0xfc980db0,0xcccc980e,0xccccdfdc,0x5951000b,0x3ffe6003,0xffffffff, 0x06ffffff,0x30000a88,0x51000335,0x4c001379,0x1fffffff,0x3ee1fe60, 0x00efffff,0xfffffff3,0x3ffffee5,0xffffffff,0x2bca8802,0x04409800, 0x00565440,0x7ffffdc0,0xfff300ef,0x0005ffff,0x3e600033,0xffffffff, 0x015000ff,0x00009a88,0x00000000,0x00000000,0x00000000,0x00000000, 0xfb971000,0x9999999b,0x54dd9999,0xcccccfec,0x700dffec,0xffffffff, 0x005fffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x40000000,0xfffffff9,0xffffffff,0x3fffa6ff, 0xadffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x26666620,0x66640099,0x003ccccc,0xcccccc88, 0xcccccccc,0x000004cc,0x00000000,0x53006a00,0x00000000,0x0000b800, 0x000000a6,0x02000017,0x00000000,0x53000010,0x00000000,0x20000000, 0x0001c41a,0x5c0000aa,0x00040000,0x00040000,0x00000000,0x40000800, 0xeeeeefeb,0x3b6203fe,0x0feffeee,0x7f774400,0xeeeeeeee,0xa807eeee, 0x80ba601f,0x035c01f8,0x02f40000,0x5c0013ee,0x007ea01e,0x000bf600, 0x00004fb8,0x00005fb0,0x7c0005f9,0x001b6204,0x90000bf2,0x4f80009f, 0x20017620,0x00000ee8,0x07f447f7,0x004fb800,0x0002fd80,0x80000bf2, 0xe807d400,0x4007cc03,0x035c01f8,0x0007f900,0x3c802fb2,0x3f8ed800, 0x00be6000,0xfe8807b8,0x400efb83,0x01be205f,0x09f10000,0x1000bf90, 0x0df907fd,0x03fe8800,0x005fc800,0x00ffa200,0x9fdfd100,0x03bee000, 0x44005fd3,0x0004fefe,0x90002fe4,0x2fe981df,0x7f7fd400,0x2fdc0002, 0x64000bf6,0x7440005f,0xfd10003f,0x220009fd,0x43dfffdb,0x03f605f9, 0x17e007d8,0x88006f88,0x4005fefe,0x03c800fa,0x06d9fc40,0x800be600, 0x37f2007b,0x9004fd88,0x07f9107f,0x0f33332e,0x7f666664,0x1df7000f, 0x11bfb000,0x980009fb,0x200002fe,0x40000efb,0x40002fe9,0x1df72ffa, 0x25ff3000,0x2a001efa,0x01df72ff,0x006fdc00,0xf71ffa80,0xdfc8003d, 0x0004fd88,0x02fd8bf5,0x003fd880,0x0017f4c0,0xdf72ffa8,0x77fd4001, 0x89efecac,0x33ee00ee,0x2005fb80,0x3fc883fc,0xb97fcc00,0x099000ef, 0xf7000f20,0x40007ea1,0x1ee002f9,0x5fddf500,0xbdffe800,0xdb104ffd, 0x881bdddf,0x0bdffeed,0x0077d400,0x17f77dc0,0x07be6000,0x3bea0000, 0x3df30000,0x0efb8000,0x40017fcc,0x00dfefe8,0xf303bee0,0x7d40005f, 0xfd10000e,0x44001bfd,0x0efb84fe,0xfb17ea00,0x5fd10007,0x1ef98000, 0x81df7000,0xfb802ff9,0xfdfd300d,0x7bff9003,0x8001dffb,0xffdbdffe, 0x077dc004,0x3600bfe6,0x80013003,0x80027c5e,0x1ee002f9,0x007ba600, 0x6ffff5c0,0x003f8802,0x260003e4,0xdd30003e,0x1d900001,0x74c00000, 0x01db0003,0x4409f000,0x3f20005d,0x204f8003,0x4c0005d8,0x7e40003e, 0x02fa8003,0xdd800bea,0x4000fe20,0xc80001fa,0x13e0000e,0x7dc05d88, 0x009fd005,0x1f7ffed4,0xfffd7000,0x09f0005b,0x354036c4,0x2f980000, 0xf98003e4,0x000e6002,0x01000008,0x4003f880,0x0000007c,0x00000080, 0x00000000,0x00000000,0x00080000,0x00000000,0x00020000,0x00000000, 0x00000000,0x00000000,0xfa802fc4,0x0010006f,0x00001000,0xfb510000, 0xf9000009,0x30005f30,0x0007605f,0x00000000,0x2001fc40,0x0000007c, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x32000000,0x9ef8800f,0x0000003f,0x00000000, 0xd57bf500,0x7c00001b,0x3000bd04,0x007f105f,0x0abba880,0x57751000, 0x00fe2001,0xa8800f90,0x30000abb,0x00035995,0x00000000,0x59953000, 0x00000003,0x35775300,0x332a6000,0x2a60001a,0x40001acc,0x0001acb9, 0x006aeea6,0x98000000,0x0001abba,0x00157751,0x02aeea20,0x74013e60, 0x2600fb0f,0x0001acca,0x00000000,0x0ff207e0,0x407ea000,0x7cc000fb, 0x0003f882,0xffffffd3,0x3fa6005f,0x02ffffff,0x32001fc4,0xfffd3007, 0x5005ffff,0xfffffffb,0x7ffc403d,0xffff102f,0xffff883f,0xfffff102, 0x7ffed403,0x201effff,0x01fffffd,0x1fffffdc,0xffffffa8,0x2a03d1ef, 0xfffffffd,0xffb5001e,0x03dfffff,0xfffffc80,0x3ea003ff,0x1effffff, 0x7fffc43d,0xfffff102,0xffffa803,0x03d1efff,0x7fffff4c,0xfd3002ff, 0x05ffffff,0x7ec007dc,0x6d40be61,0xefffffff,0x3fffe201,0xfffff102, 0x2ffff883,0x3fffff10,0x5dd3034c,0x1036c000,0xff98007f,0x03ffffff, 0x21befc80,0x200dfea9,0x2a61befc,0x7f100dfe,0xc807c800,0x3aa61bef, 0x9df500df,0x0ff54435,0x405fb970,0xb81fdccb,0x32e02fdc,0xdf501fdc, 0x7f544359,0x79bf9301,0xfecb8801,0x56fec41c,0x3f7faa61,0x1acefa83, 0x5007faa2,0x544359df,0xfe9801fe,0xbfb510ac,0x56fec401,0x3f7faa61, 0x017ee5c3,0x203fb997,0x261adfd8,0x903fdfea,0x754c37df,0x3bf200df, 0x37faa61b,0xfb806c80,0xefa83f83,0x3faa21ac,0x0bf72e01,0x81fdccb8, 0x2e02fdcb,0x1ec1fdcc,0x00037ee0,0x06d807f1,0x6666fcc0,0x64003fcc, 0x05fb804f,0xbf7009f9,0x9000fe20,0x804fc80f,0x200205fb,0x2f8807f8, 0x4403f300,0x03f3002f,0x03fc4004,0x2f40013e,0xfb802fd8,0xf100103f, 0xf100100f,0x01ef880f,0x5fb037d4,0x207ff700,0x3f3002f8,0x2e00bf60, 0x04fc83ff,0x9f905fb8,0xbb0bf700,0x9d05f980,0x1fe20020,0x4c00be20, 0x00be201f,0x0be60fcc,0x4007f910,0x0fd400fb,0xf105f300,0x027cc007, 0x4f985f50,0x220bea00,0x03e4003f,0x7d4009f3,0x0fdc0002,0x4c00be20, 0x00be201f,0x40000fcc,0x01b601fb,0x17d41fc0,0x0007f900,0x00001fb8, 0x07f403f7,0xfa84f980,0x40ff2002,0x3f3002f8,0x64005f50,0x0027cc3f, 0x04f985f5,0x09f0bea0,0x5d8077c4,0x00fdc000,0x7cc00be2,0x400be201, 0x04f981f9,0xe800ee98,0xeeeeeeef,0x26004fee,0x4005f02f,0x0fc8006e, 0x3f2001ba,0x2001fc40,0x001ba07c,0x880003f2,0x017c403f,0x3e201f98, 0x003f3002,0x5c07f100,0xf307fb07,0x4005f883,0x440002f8,0xf100003f, 0x000bee07,0x02fc43f9,0x7c40be20,0x883f3002,0x17c4005f,0x3f2001ba, 0x32001ba0,0xfd80fe0f,0x0001b600,0x2f8807f1,0x4403f300,0x03f3002f, 0x3200bb62,0x3bbe600f,0xeeeeeeee,0x0be6007e,0x05f3000c,0x3e65f300, 0x42f98002,0x3e4003f8,0x98002f98,0x3e20002f,0x8017c403,0x0be201f9, 0x0000fcc0,0x3f301fc4,0x1f70dff0,0xb8001fa8,0x1fc40000,0x03f88000, 0x93e000bd,0x0b8001fa,0x26005f10,0x000fd41f,0x005f305c,0x0be65f30, 0x4e8be600,0x5e805f90,0x01fc4000,0x7cc00be2,0x400be201,0x6fd401f9, 0xf701e400,0x8017cc00,0x2e4002f9,0x266667ea,0x99999999,0x333f53f9, 0x33333333,0xf887f333,0xa83e4003,0x9999999f,0xf9999999,0xddd97103, 0x807f79bd,0x3f3002f8,0x98017c40,0x765c401f,0x3fbcdeee,0x9f50fe20, 0x7b86c81f,0x97100000,0xf79bdddd,0xdd971007,0x07f79bdd,0x2ec000fe, 0x100000f7,0x07e6005f,0x2a0000f7,0x9999999f,0xf9999999,0x33333f53, 0x33333333,0x542ec7f3,0x203f804f,0xdeeeecb8,0x7c403fbc,0x403f3002, 0x3f3002f8,0x8813f200,0xd0013a07,0x00be600b,0xfffc8db0,0xffffffff, 0xf94fffff,0xffffffff,0x9fffffff,0x64003f88,0xfffff907,0xffffffff, 0xfc889fff,0xfeecdeff,0x17c403ff,0x2201f980,0x03f3002f,0x37bfff22, 0x03fffeec,0x3e3b62f4,0x036c2743,0x3ff22000,0xffeecdef,0x3ff2203f, 0xffeecdef,0x002f983f,0x0036cf90,0x8017c400,0x0036c1f9,0xfffffc80, 0xffffffff,0xfff94fff,0xffffffff,0x649fffff,0x4402fcc7,0xfffc882f, 0xfffeecde,0x8017c403,0x0be201f9,0x1000fcc0,0x20b505db,0x7dc001f9, 0x002f9800,0x2afee36c,0xaaaaaaaa,0xf72aaaaa,0x55555557,0x55555555, 0x64003f88,0x5557f707,0x55555555,0xdfe85555,0x201fcc01,0x3f3002f8, 0x98017c40,0x03bfd01f,0x36403f98,0x5f136d3e,0x80000bb0,0x7cc01dfe, 0x0077fa03,0x05f307f3,0x05d9f200,0x02f88000,0x05d83f30,0x557f7000, 0x55555555,0x3ee55555,0xaaaaaaab,0x2aaaaaaa,0x07744bea,0x7f40fdc0, 0x01fcc01d,0x7cc00be2,0x400be201,0xfa8001f9,0x901fcb9c,0x07f1000d, 0xd8005f30,0x0000fcc6,0x00000fcc,0x0dd0013e,0x400007e6,0x7f1002fc, 0x3002f880,0x017c403f,0x2fc81f98,0xa807f100,0x3ea3f50f,0x0f903f30, 0x017e4000,0x5f903f88,0x7c0fe200,0x64db0003,0xf8800007,0xc83f3002, 0x3f300007,0x03f30000,0xfdb74000,0xc85f8801,0x07f1002f,0xf3002f88, 0x8017c403,0xd10001f9,0x1fc017bf,0x9806d800,0x236c002f,0x880004f8, 0x6400004f,0x413e2005,0xf00004f8,0x01fc4009,0x7cc00be2,0x400be201, 0x004f81f9,0x5f300fe2,0xf73f89b6,0x00003ea0,0x7f10027c,0xf88013e0, 0x2000bd03,0x0003ea4f,0x2005f100,0x007d41f9,0x0027c400,0x00027c40, 0x005fbf50,0x013e03f2,0x7c403f88,0x403f3002,0x3f3002f8,0x807c4000, 0x3ccdfdc9,0x3f732e20,0x372e20bc,0xccccccdf,0x86eccccc,0xc80000fc, 0x2a00000f,0x07f5000f,0x200007e4,0x3e6001f9,0x8017c403,0x0be201fa, 0x3e60fd40,0x00fe6001,0x5b61fd3e,0x009f105d,0x4003f300,0x01f983f9, 0x7dc0fe60,0x10fdc001,0x8800009f,0x83f5002f,0x900004f8,0xf900001f, 0x7f400001,0x309f5004,0x1fcc003f,0x5400be20,0x00be201f,0x00440fd4, 0xfff703d8,0x2601dfff,0x2fffffff,0x3fffffe6,0xffffffff,0x6e886fff, 0x3a208800,0x88088006,0x0ee8805f,0x2001ba20,0x2009f108,0x5f803ffa, 0x401ffb80,0x1ffb805f,0xfa8027c4,0xfadd803f,0x027cfd41,0xfb8003f9, 0x2a009f11,0x04f883ff,0x7407ff50,0x09f3000e,0xfb8003f9,0xf700bf01, 0x003f903f,0x1ba21fb8,0x6e882200,0x7c408800,0x77e402ff,0x5004f880, 0x0bf007ff,0xf803ff70,0x81ffb805,0x007b002d,0x02f88000,0x01fc4000, 0x91003bf3,0x01df98bf,0xf505fc88,0x017f4407,0x4400efcc,0x003fa5fc, 0xb007fff9,0x7ffec01f,0xb007ec01,0x1fd03fff,0x03fffc80,0xf886dfb8, 0x17f402fd,0x3a37f4c0,0x7ffe400f,0xc801fd03,0x3e603fff,0x037d401e, 0xfd3005fd,0xb007ec0d,0x3fa03fff,0x86fe9802,0xc8801df9,0x00efcc5f, 0xfd12fe44,0x2615bfd3,0x7f404fdb,0x1fffe400,0xfb007ec0,0x0fd803ff, 0x207fff60,0x00f8802d,0x01e40000,0x401e4000,0x2609cfe9,0x980cffca, 0x2a609cfe,0x2a00cffc,0xfd730aef,0x67f4c007,0x3ff2a609,0x46fbe60c, 0xf8cfeca8,0xdf300bcd,0x7fd95117,0x26019bf3,0xeca88bef,0x20cdf9bf, 0x9511bef9,0x79bf19fd,0x40ffe601,0x74400ffd,0x32a61adf,0xbef984ff, 0x19fd9511,0x7cc179bf,0xfd9511be,0x0179bf19,0x22139fd3,0x2200dfda, 0x2a61adfe,0x7cc04ffc,0xfeca88be,0x440cdf9b,0x2a61adfe,0x3a604ffc, 0x32a609cf,0xfe980cff,0x3f2a609c,0xb87f60cf,0x2effffff,0x11bef980, 0xbf19fd95,0x3be60179,0xbfeca88b,0xf300cdf9,0xfd95117d,0x6c19bf37, 0x0026c402,0x00164000,0x90016c00,0xffffffff,0xfff9003b,0x03bfffff, 0x3ffffaa0,0xf90001ef,0xbfffffff,0x3fffaa03,0xff11efff,0x7fd405ff, 0xf30effff,0x7fd405ff,0xf30effff,0xffea85ff,0xf11effff,0x3e205fff, 0x00df501f,0x7fffffdc,0x3aa00cff,0x1effffff,0xa85ffff1,0xeffffffe, 0x05ffff11,0x7fffffe4,0x3fee003f,0x0cffffff,0xfffff500,0x3ffe61df, 0xfffff702,0x20019fff,0xfffffffc,0xffc801df,0x1dffffff,0xcb981fd4, 0x7f54000a,0x11efffff,0x5405ffff,0x0effffff,0x5405fff3,0x0effffff, 0x76c5fff3,0xfeeeeeee,0x30000004,0x0007b57d,0x05935d50,0x01579530, 0x2af2a600,0x32a20000,0x5300001a,0x54001579,0x00001bcb,0x00137951, 0x09bca880,0x37975000,0x00000000,0x9abca980,0x2f2ea000,0x65d40001, 0x3100001b,0x40003597,0x009abca9,0x09bca880,0x5e54c000,0x5300009a, 0x20001579,0x200abca9,0x80000038,0x0001bcba,0x01379510,0x9bca8800, 0x2aaa6000,0x0001aaaa,0x3dc98000,0x3b6a0000,0x0000000b,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00008000, 0x0000dc00,0x15400350,0x00000000,0x00002e00,0x2e000002,0x220014c0, 0x0001bdca,0x00010000,0x05e76dcc,0x40012200,0x0001bca9,0x95000010, 0x0200017b,0x00530000,0x22000050,0x2002cdca,0x00acecb8,0x06666000, 0x01bb9880,0x33310000,0x04000881,0x807b2000,0x04f801fa,0xfa801762, 0xfb000004,0x3f200005,0x013f2003,0x5c01f880,0x3f620006,0x17e40002, 0x41fb0000,0xff7005f9,0x543ffdff,0x8003d806,0x4c003fe8,0xffeefffe, 0x003ea003,0xffffffa8,0x1bfff24f,0x219dff10,0xfd105eb8,0x005dffdf, 0x00006fcc,0x7c0037d4,0x3e60000e,0x00effeff,0x7ff7ffdc,0xfc80002e, 0xff7007ff,0x2a1bffff,0x2000ffff,0x2a2ffff8,0xbfb003ff,0x17f4c000, 0xfc802fe4,0x017f4c0e,0x00efefc8,0x07fd1000,0x07fb1000,0x000bf900, 0x0df102fc,0x00bfa200,0x4fefe880,0x22fd8000,0x6c400ef9,0x2a0c0adf, 0x00fea03f,0x801fff20,0x6c40aefb,0x01f5004f,0x235dfb10,0xfc8efca8, 0xdb9802cc,0x82dffeff,0x7ec42fe8,0xefefb802,0x37ee0001,0x1ff98000, 0x21efa800,0xf900ffa8,0x03fe981b,0x3ed54400,0x42b3fa20,0xdfa9ffb9, 0xba98003c,0x017ff22f,0x0007ffe6,0xfd14fd88,0x1ffa8007,0xd1003df7, 0x00bfe67f,0x005fd300,0x005fd100,0x00077dc0,0x7e441fe4,0x1ff98003, 0x4bfea000,0xb0000efb,0x0077c45f,0x8800ffe6,0x0fe881ff,0x05ffa800, 0xb801bf10,0x00fa802f,0x74c03fd8,0x5c4007de,0x200ffffd,0x07f601fc, 0xfe9a7ec4,0x04fc8003,0x017f4c00,0x7c403fa0,0x6c03fa85,0xf900000f, 0x2202fe80,0x0000fcfd,0x3f222f98,0x0fff8802,0xfefb8000,0xfd10001f, 0x3e600bfd,0x027f441f,0x001ff980,0x001ff980,0x000efa80,0xfdbdffe8, 0xef98004f,0x3bee0001,0x0017fcc0,0x0fe88ff2,0x000f7c40,0x76677fcc, 0x2a0002ff,0x8006000b,0x00fa806e,0xf8801fd4,0xffd5007f,0x4c17e65b, 0x42fc403f,0x5fd83fe8,0x000ff600,0x801ff440,0x0fe401fa,0x17e201ba, 0x703e4000,0x3ffa005f,0x2f980000,0x373003d4,0x6fcc0000,0x3fc80000, 0xc8037600,0x0ec8000f,0x01d70000,0x0174c000,0xdfffeb80,0x01d90002, 0x2204f800,0x21fc005d,0x1fd801ea,0x3fb22000,0x00000dff,0x3dc00000, 0x3e00fd40,0x03fd4005,0xf980add8,0xf7007b83,0x2e01ec83,0x02f9801f, 0x00fd8000,0x4f8806e8,0x36c00fe2,0x107c8000,0x7fc400bf,0x2f980000, 0x00000fe2,0x00002000,0x00000010,0x00000000,0x00000000,0x00000080, 0x00000000,0x1fdc0000,0x00000000,0x70000000,0x3ff6a01f,0xf3088cef, 0x00ff0005,0x360fcc00,0x007f1006,0x00000000,0x3f980080,0x0fccfb00, 0x00007b80,0x007e60f9,0x00001fb0,0x002545f3,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x06e80000,0x00000000, 0x00357753,0xd10bb000,0xffd759bf,0x0003eebf,0x044001f6,0x00bd07e4, 0x000002ec,0x00000000,0xfb8007d4,0x36400be1,0xc80ac980,0x8001f707, 0x771000fc,0x0002f983,0x00157751,0x98000000,0x000aacba,0x02ab2ea6, 0x201ca880,0x54c001b9,0x8000aacb,0x0001acb9,0x000d65cc,0x006b2e60, 0x03597300,0x1acb9800,0x0002f880,0x7d400000,0x1effffff,0x7d40003d, 0x880f7c43,0x000f95fe,0xfdb801f2,0x9f12deff,0x0fb002ec,0x00000000, 0x0f700000,0x0bb17d40,0x6d407d10,0x23efffff,0x000f907c,0xfe8801f5, 0x5f33ffff,0xfffe9800,0x4402ffff,0xf102ffff,0x4c03ffff,0xfffffffe, 0xffd306ac,0xd59fffff,0x3ffffae0,0x3fffa61f,0x7ff4c00e,0x6acfffff, 0x7ffffe40,0x7e4003ff,0x03ffffff,0x7ffffe40,0x7e4003ff,0x03ffffff, 0x7ffffe40,0x03e603ff,0xffffb000,0x6c4003ff,0x3aa61adf,0x70003fdf, 0x801fb0bf,0x001f75f9,0xfd300fb0,0xbfd9779d,0x803dcfb1,0x7fec0ff9, 0x2001ffff,0x1ffffffd,0x3ffff600,0x07c801ff,0x3fa8be60,0xfa807ec0, 0x9f9511ae,0x007dc1f2,0xe9803f20,0x37f930bf,0x77e4005f,0x37faa61b, 0x0bf72e00,0x01fdccb8,0x4c437ff5,0x7d40fffc,0x3f2621bf,0x577cc0ff, 0xff11fd50,0x201df915,0x2621bffa,0xe980fffc,0xfb510acf,0xcfe9801b, 0x1bfb510a,0x0acfe980,0x801bfb51,0x510acfe9,0xe9801bfb,0xfb510acf, 0xb98f701b,0x64c02dfe,0x001fdccc,0x3ee00bf6,0xdcc8803f,0x02f984fe, 0x00be6790,0xff501fe0,0x7e7f5405,0xfd003f31,0xcccc983f,0x326001fd, 0x001fdccc,0x3f733326,0x4006d801,0x20efdc3f,0x9f502fe9,0x07cdfa80, 0xfd8003f3,0x5c07ba00,0xf9002fdf,0x00bf7009,0x3e6005f1,0x9801ff01, 0x007fc0ff,0x40203fe6,0xf986edf8,0x9801ff04,0x0f7c40ff,0xf881bea0, 0x037d401e,0xfa803df1,0x007be206,0x77c40df5,0x6c37d401,0x3b37bf65, 0x3e6000df,0x005f5001,0x7cc01fe4,0x0f706fff,0x2002fc00,0x3be207fa, 0x3fee8800,0xf5f901ba,0x003f5003,0x0001fa80,0x2ec00fd4,0x3ea0fe00, 0x01effeff,0x3e6009f5,0x009f107f,0xfb807fc4,0x017fe401,0xf50027cc, 0x002f8805,0x05f303f3,0x2f983f60,0x8001fb00,0x1f901ffd,0xfb002f98, 0x3000fe81,0x003fa09f,0x0fe827cc,0x3a09f300,0x09f3000f,0x7cc003fa, 0x83fca744,0x3e6005fb,0x005f8801,0x510017c4,0x06c81df9,0x400fea00, 0x3f607ff8,0x93fe2000,0x9fd80df8,0x1fa802f8,0x00fd4000,0x2007ea00, 0x41fc005d,0xffedeffb,0xc800db01,0x00bee07f,0x7c407ff4,0x02ff8805, 0xfc8006e8,0x400be200,0x05f881f9,0x05f88910,0xf5000910,0x221fc40b, 0xb891005f,0x0fe4002f,0xf9000bee,0x4002fb83,0x017dc1fc,0x5f707f20, 0x3a1fc800,0x3ea01fcd,0x003f3002,0x170003f5,0x87fa6000,0x7ec0006d, 0x3ef74c03,0xb8003f88,0x5effcc5f,0x05f32ffd,0x80003f50,0x540001fa, 0x005d801f,0x20ff21fc,0x02f82fc8,0x7f407f80,0x3f3f6202,0x9001f980, 0x02f9805f,0x2202f980,0x03f3002f,0xd8000ff6,0x2000003f,0x42f403fa, 0xbd0003fd,0xbd13e000,0xbd13e000,0xbd13e000,0xbd13e000,0xfd93e000, 0x007d803f,0x0f7003f3,0x22000000,0x0001ee7d,0x2235dfb1,0x07c8efc9, 0xf30003f3,0x7dfd730b,0x5400fd41,0x7d40001f,0x0fd40001,0x3e0036c0, 0xf7007f23,0x40007cc7,0x67f4407e,0x53ff7309,0x001f501f,0x3f500bee, 0x33333333,0x07f33333,0xf98017c4,0x337ff601,0xffb000ab,0x4001579b, 0xfcceedb9,0x9999999b,0x9bffb06d,0x03f80157,0x03f8bb00,0x03f8bb00, 0x03f8bb00,0x03f8bb00,0x37e4bb00,0x9800fa80,0x006d801f,0x3e600000, 0x00005f32,0xfffffff5,0x07b83e49,0x40017e00,0x1fa800fc,0x00fd4000, 0x2007ea00,0x8be2007c,0x5cdb003f,0x00f90007,0x3fffffee,0xf901f50d, 0x2017d400,0xfffffffc,0xffffffff,0x00be204f,0x32600fcc,0x0cfffffe, 0x7fff64c0,0xff700cff,0xffffd9df,0xffffffff,0x7ff64c0f,0x7cc0cfff, 0x4cf90002,0x4f90002f,0xf90002f9,0xc80017cc,0x4000be67,0x4007ee7c, 0x1f9802f9,0x00005d80,0xfb274000,0x53002001,0x20f90379,0x13e0007b, 0xa8036c00,0x7d40001f,0x0fd40001,0x98007dc0,0x2001f51f,0x000f70f9, 0xb98801f2,0xc80fa81b,0x00bea007,0x555557f7,0x55555555,0x017c4055, 0x98001f98,0x4002efda,0x222efda9,0x9f701dfd,0x55555555,0xfda98005, 0x000be62e,0x005f33e4,0x02f99f20,0x17ccf900,0x3e67c800,0x4cf90002, 0x05f1002f,0xf9003f30,0x80000000,0x807be27c,0xc80005fb,0x0003f507, 0xf30007f1,0x007ea009,0x0003f500,0xfa801fa8,0x321f7001,0x4cbe2006, 0x07e8000f,0x407d4000,0x5f7000fb,0x0001f980,0x2005f100,0x440001f9, 0xb10001fd,0x500fea3f,0x8000005f,0x00fe1fd8,0x00fe36c0,0x00fe36c0, 0x00fe36c0,0x00fe36c0,0x013e36c0,0x7cc00fcc,0x000fa801,0x17600000, 0x9759bfd1,0x00001bff,0x013e20f9,0x20007ee0,0x3f5000fe,0x01fa8000, 0x400fd400,0x4fd004f8,0x8be2007c,0x07f8002f,0x407dc000,0x5f9001f9, 0x0004f880,0x2005f100,0x800081f9,0x3a00024e,0x9f500f94,0xd0001000, 0xf8002f49,0xf8002f44,0xf8002f44,0xf8002f44,0xf8002f44,0xfb803e44, 0x801f9800,0x000004f8,0x2e09f100,0x00adfffe,0xe81f2000,0x006d8006, 0x2a003fb8,0x7d40001f,0x0fd40001,0x4400fe80,0x4007ea4f,0x001b60fa, 0x80000ff9,0x00bf106d,0xf9005ff1,0xf1000001,0x107ea005,0x16d8005f, 0x56d8005f,0x06fa801f,0x20017c40,0x0007ee6d,0x01fb83f7,0x3ee0fdc0, 0x20fdc001,0x7dc001fb,0x2000fdc1,0x027c41fb,0x7cc013e2,0x003f9001, 0x00061fb8,0x0fb801fb,0x0f900000,0xf9002fcc,0x05fb8005,0x0000fd40, 0x500007ea,0x0fea003f,0x2fc41fb0,0x3ea37440,0x0fff3003,0x027d4000, 0xffc803f7,0x006e8802,0x02fc0088,0x3e20ffdc,0xf8af4005,0xf8af4005, 0x0bffe202,0x002fc430,0x001dd17a,0x077413e6,0xdd04f980,0x413e6001, 0x9f3000ee,0x4c003ba0,0x405f904f,0x3f3000fd,0x4017f400,0x3be66fe9, 0x017e4402,0x000007d4,0x77dc07c8,0x002fe400,0x8001bfb1,0x540001fa, 0x7d40001f,0x407fa001,0x04fa83fb,0x3ea07f62,0x3e6fd404,0x0ef98000, 0xfa807740,0xbf3002fc,0x0bf91003,0x3f600fd8,0x1ffc41ff,0xff12fc80, 0xe8bf2007,0xffff880e,0x227e980e,0x5f9003ff,0x5401ef98,0x07be606f, 0x7cc0df50,0x037d401e,0xfa803df3,0x007be606,0xcfd80df5,0x02fea889, 0x88007e60,0x2a61adfe,0xfea84ffc,0xfb9889bd,0x01f5003f,0x2aaaa000, 0xf701aafd,0x36e6159d,0x985540df,0x0003ffcb,0xa80003f5,0x7d40001f, 0x2ffe6001,0x640bf951,0xff730aef,0x8577dc05,0x9f94fca8,0x55544079, 0x00efecaa,0x930aff98,0x079bf37f,0x4139fd30,0x00cffca9,0x5445f7cc, 0xcdf9bfec,0x35dfff10,0x11ff5cc1,0x4135dfff,0x7443feb9,0xcffa88ae, 0xf933feaf,0x77ffc43d,0x3fae609a,0x139fd303,0x0037f6a2,0x22139fd3, 0x4c00dfda,0xb5109cfe,0xfe9801bf,0xbfb5109c,0x9cfe9801,0x01bfb510, 0xfffffb70,0x99997103,0x9999bfb9,0x3fee0179,0x0cffffff,0x7ffff5c0, 0x2a001eff,0xf980000f,0x7fffffff,0x3ffffa60,0xff902fff,0x8039dfff, 0xdcccccb8,0xbcccccdf,0x99999710,0x99999bfb,0x3332e217,0xcccdfdcc, 0xfd880bcc,0x9804ffff,0x0efffffe,0xffffda80,0x3fff23ef,0x3fffee06, 0x44003eff,0x33fffffe,0x2001dfff,0xfffffffc,0x3ea001df,0x30efffff, 0x54f45fff,0xfffffffe,0xfea9e82e,0x2effffff,0xdffffd10,0x3ffe6d31, 0xd53d04ff,0xdfffffff,0xffff9005,0xc8007fff,0x3fffffff,0x7fffe400, 0x64003fff,0x3fffffff,0x7fffe400,0x88003fff,0x3fea01ab,0xffffffff, 0x401fffff,0x009abca9,0x00abb980,0x00006980,0x26666662,0x57731001, 0x03751001,0xfffffa80,0xffffffff,0xffff51ff,0xffffffff,0x3fea3fff, 0xffffffff,0x201fffff,0x4000aba8,0x0000aba9,0x00001595,0x00033331, 0x00037730,0x15795300,0x5e544000,0x2a600009,0x2001abcb,0x01abcba9, 0x98037710,0x5d4c002c,0x44001abc,0x0001acb9,0x006b2e62,0x1acb9880, 0x32e62000,0x2620001a,0x00001acb,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x26620000,0x99999999, 0x00999881,0x33000000,0x4cccc033,0x99999999,0x00000019,0x00000c40, 0x00000b88,0x00000310,0x00355100,0x00d65cc0,0x8000e600,0x73000038, 0x00000037,0x00000000,0x02bba800,0x00000000,0x00310000,0x80002000, 0x039501ca,0x64c07260,0x26666201,0x10000019,0x05440035,0x7ffffdc0, 0x42ffffff,0x0003ffff,0xfffc8000,0xfffff107,0xffffffff,0x3fffe23f, 0x3ffea06f,0x7fdc04ff,0x00000dff,0x00003fd1,0x640bff50,0x003ee00e, 0x40ffffe2,0xff52fff9,0x001bffff,0x2000df50,0xfff806f9,0x3ffff23f, 0x44003dff,0x3ae000ff,0x7007ea01,0x00fd403d,0x1dfbbfb1,0x5ffff300, 0x3ffffe20,0x6c409f01,0x77fecc05,0x2a001c41,0x22ceffec,0x417fe02a, 0xdfd005ff,0xfe81bfe0,0x000fffff,0x987ffffb,0x102efffd,0x7001ffb5, 0x5555557f,0xf5530355,0x00000007,0x220fb551,0xaaaaaadf,0x21fcaaaa, 0x202ccfeb,0x01cfecb8,0x3faf3ffa,0x7cc0001f,0x8028001f,0x3e606ffb, 0x027ec42f,0x05ffffa8,0x37f2bf6e,0x01df730b,0x00077dc0,0x5c0077dc, 0xcfe8bfcc,0x07fd5309,0x0007fc40,0xdf907fd1,0x907fd100,0x20ce80df, 0xb97006c8,0x6e65c05f,0x81df901f,0x3e602fe9,0xa9dfebbf,0xffb800ff, 0xdfecbace,0x13f605d8,0xfc801ff4,0x4409fb04,0x00fcaaaa,0x47f99930, 0xfd99cffc,0xddffb711,0x01f7001f,0x0007f000,0x07c80000,0x7dc007f1, 0x2001fcc0,0x41fe405e,0x50000ee9,0xf50001df,0x03fa8801,0xfe9a7f44, 0x3ffe2003,0x7ffcc03f,0x4013ea03,0xf90005fc,0xdbf0001b,0x03fb803d, 0x0001ff10,0x9fb11bfb,0x46fec400,0x7d404fd8,0x2002f880,0x3f3002f9, 0xfb8ffd40,0x5c1cc01e,0xd800efff,0x3fee00df,0x0200405e,0x00080100, 0xf0000fa8,0x3209fb17,0x2a37df91,0x00fb800f,0x0003f800,0xfffe8800, 0x46ffffff,0x41ba000c,0x07ea006d,0x1fdc0df0,0x0077dc00,0xb800fa80, 0xfdf9000f,0x5510003d,0x05ff3003,0x9fb00fd0,0x013f6000,0x000fff80, 0xff1007f7,0x3bee0001,0xf70002fe,0x99005ffd,0xf3002640,0x007e6005, 0x01bfdfd1,0x001a8800,0x3a2007f7,0x0000005f,0xfa800000,0xfd9f0000, 0x2a022005,0x00fb800f,0x0003f800,0x99999000,0x00799fd9,0xf981fc40, 0x880dd003,0x017e203f,0x500017a0,0x02f9801f,0x0006fd40,0x03f98000, 0x7c403f70,0x07f10003,0x002ff800,0x000002f4,0x0001dd30,0x9000ee98, 0x3002dc07,0x07e6005f,0x0001fe40,0x037cc000,0x00017e60,0x00000000, 0x7c0003ea,0xa80001ff,0x00fb800f,0x0003f800,0x03e40000,0x200fb800, 0x02fa806d,0x176017cc,0x54000000,0x000c400f,0x00000008,0xfa8017cc, 0x00000001,0x8006f800,0x0000007a,0x01000004,0x0fa06b80,0x3002f980, 0x0004003f,0x006b2e60,0x74000fe4,0x35973005,0x5dd44000,0x3ea0000a, 0x01df0000,0x003ea000,0x200003ee,0x0aca883f,0x02b26000,0x6c0001f2, 0x2017cc06,0x02f9806e,0x000013e2,0x0007d400,0x00000000,0x2005f300, 0x000001fa,0x05f80000,0x0002f880,0x00000000,0x505f1000,0x17cc001f, 0x0001f980,0xffffc800,0x27403fff,0x6402a800,0x3fffffff,0x3fffa600, 0x8002ffff,0x7f0000fa,0x07d40000,0x02207dc0,0x7f5c7f00,0x001effff, 0xdfffffb5,0x40003e47,0x06d803f8,0x3e600bea,0x003fb102,0x002aee60, 0x3ffffffa,0x2fffffff,0x0abb9800,0xf9800000,0x003f5002,0x2a200000, 0x0004f801,0x0000007f,0x22000000,0x2b7ea01a,0x4c002fda,0x03f3002f, 0x7f4c0000,0xbfb510ac,0x0003f101,0x159fd300,0x0037f6a2,0x54c37df9, 0x2a000dfe,0x07f0000f,0x007d4000,0x7ff5cfdc,0x3f801dff,0x2e6159fb, 0x77d404fe,0x29f9511a,0xfa80007c,0xd02f9801,0x70be600d,0x7d405ffb, 0xffff52ff,0x65401bff,0xccccdfdc,0xff503ccc,0x3fffea5f,0x5c000dff, 0x005f3005,0x7ffcc7ea,0xffffffff,0x3fff61ff,0x7ffecc3f,0x0017e02e, 0xfffb0be2,0x6c003fff,0x01ffffff,0x87ffffb0,0x02efffd9,0x201bddb1, 0x02f980b9,0xff983f30,0xffffffff,0x77c41fff,0x5437d401,0x4400000f, 0x37d401ef,0xf7009f90,0x007d400b,0x00003f80,0x3ee003ea,0xfcbbdfff, 0x7ee7c03f,0x413f2202,0x6fd404fa,0x6c80007c,0x3e61b600,0x545f3002, 0x2202efff,0xadfcafdb,0x001df710,0x220001f5,0xadfcafdb,0x001df710, 0x2f9803e4,0x3e63f500,0xcccccccd,0x3260efdc,0x3ff23fcc,0xf01fd99c, 0x83f5000d,0x1fdcccc9,0x33332600,0x993001fd,0x67fe47f9,0x8001fd99, 0x980cfeb9,0x83f3002f,0xcccccdf9,0x40efdccc,0x9f3000fe,0x800007c8, 0x9f3000fe,0x54009f30,0x41f5002f,0x007f001a,0x4007d400,0xfb101be9, 0x00fffc05,0x27d41fc8,0x007ff980,0x26004f80,0x30036c2f,0xfeba885f, 0x3ffe600d,0x200fea03,0x4c0000fa,0x3ea03fff,0x00fb1003,0x7d400be6, 0xfd005f31,0xfd8bf803,0x3fe03904,0x803ec002,0x540001fa,0x17f0001f, 0x007209fb,0x00e7f64c,0x7cc00be6,0x74017cc1,0x0017dc1f,0x006c87f2, 0x0017dc00,0x00dd07f2,0xf5001f90,0x200bff21,0x2a00003f,0x6c00000f, 0x009ff00f,0x01b637c4,0x8000ff90,0x36c001f9,0x7cc005f3,0x3037dc02, 0x0dd007ff,0x80001f50,0x6e803ff9,0x02ffe440,0xf5002f98,0xfb007e63, 0x5fd9f003,0x03ffe000,0xa8017dc0,0x7d40001f,0xfd9f0001,0x7e4c0005, 0x3e6001cf,0x983f5002,0x40fec01f,0x49f0005e,0x7400006c,0x4c9f0005, 0x2f98002f,0xffd0fa80,0x0007f00b,0x00007d40,0x3fc0fe20,0x5f07dc00, 0x000ff000,0xf98007c8,0xf9800db2,0x305f9802,0x03ee009f,0x80001f50, 0x1f7004f9,0x0073fee0,0xf5002f98,0x0bf20243,0x000fffc0,0x803dfbf0, 0x3ea005fb,0x0fd40001,0x01fff800,0x1cefc980,0x00bf3000,0x80903ff7, 0x007f02fc,0x007c9760,0x8001fc00,0x2667ea5d,0x99999999,0xa803f999, 0x003ff70f,0x5400007f,0xe800000f,0x3000df05,0x0003e65f,0x9d0001fa, 0x3e7b6000,0x017cc002,0x2f982fb8,0xa803f500,0x7cc0000f,0x903f5002, 0xf30001bf,0x007ea005,0xdf001fdc,0x8bf80001,0xd5309cfe,0x7d4001bf, 0x0fd40001,0x000ef800,0x080e77d4,0x803fe600,0x4001fffd,0x05f303fb, 0x0fb9f200,0x05f30000,0xffc9f200,0xffffffff,0x04ffffff,0x80020fa8, 0x2a00003f,0xd800000f,0x20009f06,0x2000f73f,0x3e60007c,0xdff30002, 0x005f3000,0x017cc27c,0x7d401fa8,0x17cc0000,0x7cc1fa80,0xfdc88004, 0x0fd401cd,0x20027d40,0x3f80003f,0x3ffffff6,0x1fa8002f,0x00fd4000, 0x88003f80,0x3bffee01,0x5f7fcc01,0xabfeca88,0xfa800cdf,0x000be604, 0x003f53e4,0x000be600,0x557f73e4,0x55555555,0x50055555,0x9993001f, 0x99999df9,0x7d400179,0x7c800000,0x3e0009f0,0x32000f73,0x01ee0007, 0x0007fb00,0x36c005f3,0xfa8017cc,0x0007d401,0x5400be60,0x8003e41f, 0x05fffffc,0x3e600fd4,0x003f8005,0xcb983f80,0x3ea0001a,0x0fd40001, 0x0003f800,0x64c5f6c0,0x373e602f,0x30dfffff,0xf9805fff,0x0003f805, 0x001fc4db,0x20007f00,0x0007e66d,0x001f5000,0xfffffff9,0x03ffffff, 0x00007d40,0x06f82ec0,0x1f31f980,0x000fd000,0x360002f4,0x05f30007, 0x17cc3dc0,0x5401fa80,0x7cc0000f,0xe83f5002,0x40000004,0x17e601fa, 0x0001fc00,0x000001fc,0x500007ea,0x0fe0003f,0x707a8000,0x44be601d, 0x200009bb,0x0bd005f9,0x1f913e00,0x017a0000,0x09f127c0,0x0fa80000, 0x00000000,0x000001f5,0x001fe09f,0x002f83ee,0xf10007f8,0x1fcc0005, 0x002f9800,0x00be61f2,0x3ea00fd4,0x17cc0000,0x2f41fa80,0x2a000000, 0x01dd100f,0x0000fe00,0x000000fe,0xa80003f5,0x07f0001f,0x8826c000, 0x005f302f,0x00ee8800,0xb8003f70,0x002fc41f,0x03f70ec4,0x7e41fb80, 0x2a000000,0x0000000f,0x0001f500,0xff02fa80,0x23744007,0x3fe4006d, 0x000fb800,0x98001f60,0x6e80e42f,0xf5002f98,0x000fa803,0xa8017cc0, 0xb003e41f,0x07d80003,0x40001dd1,0x3f80003f,0x7d400000,0x0fd40001, 0x0003f800,0x03d807a0,0x400005f3,0x74000ee8,0x09f3000e,0xf9800fee, 0x8007740f,0x06e884f9,0xfa800880,0x37ee0000,0x07d40001,0x74003d30, 0x007ffe06,0x0fea0fe4,0x003ffcc0,0x260006d8,0x3e60003f,0x2fc42742, 0xfa8017cc,0x0017cc01,0x5400be60,0x8027d41f,0x3e20003f,0xb803fb05, 0x0000fe01,0x000000fe,0xa80003f5,0x07f0001f,0xd01ec000,0x000be605, 0x5c01fd80,0x200f7cc1,0x6fdc06fa,0x40f7d400,0x7d401ef9,0x0077e606, 0x2a017f22,0x5c40000f,0x07d40005,0xb1013fa0,0x7ee7c03f,0xa81fe402, 0x66fd404f,0x03f88007,0x0001f600,0xb87b85f3,0x002f981f,0x0bf003f5, 0x0be60ea0,0x7ec0fd40,0x00fee203,0x6c0ff440,0x204e801f,0x3f80003f, 0x7d400000,0x0fd40001,0x0003f800,0x07d41ae0,0x00002f98,0x09d003fb, 0x22139fd3,0xc800dfda,0xb730abff,0x7f4c01bf,0xbfb5109c,0x9cfe9801, 0x33ff2a60,0x000fa800,0x00b70a88,0xc800fa80,0xb988abef,0xfccb82ff, 0x26139fb3,0x7dc03fea,0x9f9510ae,0x400f33f2,0xaa9800fa,0x0aadfbaa, 0xbfb97100,0x5c467c45,0x005f305f,0x3ee007ea,0xf95310bd,0x005f30bf, 0x3f6207ea,0xffdbaace,0xbaa9801e,0x2fc82ffd,0x1fc09f00,0xdfaa9800, 0x00002aaa,0x20000fd4,0x7f0001fa,0x1ce80000,0x2f980faa,0x02fc8000, 0x7fe409f0,0x003fffff,0x7ffffecc,0x3f2003ef,0x03ffffff,0x7ffffe40, 0x5c41dfff,0xdfdccccc,0x00bccccc,0x003bffd1,0x37333326,0x0bcccccf, 0x7ffffecc,0xfffd00ef,0x7ffffe47,0xfb5001ef,0x647dffff,0xb7006fff, 0x3ffffe00,0x005fffff,0x8bfffff3,0xa84ffffb,0x303cdfdc,0x8019bfb9, 0xfffffffb,0x7ee541de,0xfb9303cd,0xffd7019b,0x20039fff,0x0dfffff8, 0xccccefa8,0x4fcccccc,0x9df99993,0x01799999,0x3ffffffe,0x5c4001ff, 0xdfdccccc,0x10bccccc,0xfb999997,0x1799999b,0x3bf33326,0x0bcccccc, 0x7f7ec400,0x00fc403f,0x333bea00,0xcccccccc,0x65cc404f,0x4c40001a, 0x10000acb,0x00035973,0x00abca98,0x3fffffea,0xffffffff,0x4000801f, 0xfffffffb,0x02ffffff,0x0002aea2,0x002b2a20,0x000aca80,0x33100000, 0x03333333,0x0dd40000,0x6fffffd8,0x5fffff70,0x26f2ea00,0x3ffff600, 0xffff706f,0x0019805f,0x90026620,0xffffffff,0x329fffff,0xffffffff, 0x101fffff,0x13333333,0xffff5000,0xffffffff,0x3fea3fff,0xffffffff, 0xf91fffff,0xffffffff,0x0003ffff,0x00002aa6,0xffffc800,0xffffffff, 0x0000004f,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00440000,0x00000220,0x00006662,0x88000800, 0x18199999,0x9102c880,0x02200005,0x3376e200,0x65d4c002,0x4cc400aa, 0x4c001999,0x00001cdc,0x00000ca8,0x000032a0,0x40000400,0x01c98000, 0x10000393,0x08000333,0x99880000,0x00131000,0x000004c0,0x40000031, 0x4c000998,0x0001abba,0x20055dcc,0xccccccca,0x01cccccc,0x3bfffae6, 0xffd8550c,0x3e200001,0x00001fff,0xdfffb710,0xfffd0019,0x3ffc1fff, 0x3203ff20,0x999300ff,0xdffeca83,0x7ff4400b,0x401effef,0xffffffe9, 0xffe86acf,0x8800ffff,0x0fdbadfd,0x77edc000,0x5c00000f,0x0000fefd, 0x005fd800,0x77fff6cc,0x3fa0170c,0x000dfd07,0x7fffffdc,0x322282ef, 0x02cefffd,0x06ffe800,0xfffffb71,0x3faa001b,0x801cc0df,0x441effd9, 0xffb8000b,0x02dfffff,0xfffffff5,0xffa87a3d,0xfffff52f,0x3bae01bf, 0xeeefeeee,0xffa82eee,0xfffdbbdf,0x17ff46db,0x32a60000,0x9800001f, 0xfecaceff,0x5554403f,0xfff30fca,0xb837d401,0x3fbaa06f,0x77dffb12, 0x3a201ffb,0x17f541cf,0x221bffa8,0x440fffc9,0x00fcaaaa,0x04d80b88, 0x7cc55400,0x55400000,0x00000f98,0x017ffcc0,0xbabcffc8,0x903faffd, 0x017f60bf,0x556fff40,0x7d41dccb,0xbbdfffa8,0x0000dffd,0xf90dd7f5, 0xf97559df,0xaefa805f,0x6fb9cffc,0xebbff980,0x00ffa9df,0x556fff40, 0x6c42eccb,0x3aa61adf,0x36e23fdf,0x10adfcaf,0x54001df7,0x3df9000f, 0x237fe4c0,0x00000fc9,0x00003f30,0xd100efb8,0x0fa8009f,0x0020176e, 0x26be6001,0x6f980bfe,0x7400ff88,0x400ff80f,0xfa800ff9,0x03dc0000, 0x001f3000,0x007cc000,0x7ffc0000,0x00cfb800,0x0407ffb1,0x7e400020, 0xfefa8003,0x07bea01c,0x436d7a00,0x3fa601ef,0xf910aa01,0x2e600bff, 0x077ffdc0,0x000ff200,0x3ee00bf6,0x3fff983f,0xa800fea0,0x05fb800f, 0x1321bea0,0xddd50000,0x9ddddddf,0x00bf7000,0xfa800ff6,0x0000ba20, 0xffdf9800,0x2e27d401,0x44f8802f,0x1fb002f9,0x0001f500,0x00002744, 0x000001f3,0x000007cc,0x4c00dcc0,0x07fd004f,0xdf000000,0x0ffea000, 0x20037c40,0x9f0db1fb,0x000df100,0x400006a2,0xdf0001a8,0x005f5000, 0x7fcc1fe4,0x2006e803,0x37c400fa,0x3ea37400,0x6cc00001,0xeeeeefee, 0x2fc4003e,0x4003f600,0x001b20fa,0xdff30000,0xbd1f2001,0x3e23e400, 0x20091005,0x64c000fa,0x400004fd,0x000000f9,0x000003e6,0x01f70000, 0x0000fea0,0x007f1000,0x50013ea0,0x93e2007f,0x7003e86d,0x0000001f, 0xf8800000,0x02fc4003,0x3e60be20,0x001f7004,0x3f7003ea,0x2c897000, 0x7cc00000,0x3f900001,0x004f9800,0x0006c1f5,0x3be60000,0xb87ea000, 0xb03ee000,0xa800007f,0x75c4000f,0x7e44005f,0x0000f980,0x07cc0dd3, 0x005f7000,0x20036c00,0xcca9803f,0x5f30001a,0x007ea000,0x36003f60, 0x0021b60f,0x00002f98,0xacca9800,0x05f30001,0x8001fa80,0x002f980b, 0x3ea003f5,0x0002ec00,0x55dcc000,0x307e6000,0xf1003597,0x01f60009, 0x7c4007d4,0xff102fff,0x3e603fff,0x017c4002,0xfb01f700,0x001579bf, 0x80003ea0,0xfd5006d8,0x0003e607,0xf9807fee,0x5fe98000,0x03e40000, 0xffda8060,0x01efffff,0x00017cc0,0x0fea0005,0x06d87f30,0xf897c400, 0xff102fff,0x6d403fff,0xefffffff,0x017cc001,0x00001ee0,0x3ea005f3, 0x801f5001,0xa800003f,0xfff52fff,0x3001bfff,0x3fffea3f,0x3ea00dff, 0x01f30000,0x2e001f50,0x32e02fdc,0x5f301fdc,0x002f8800,0xec981b60, 0x00cfffff,0x00003ea0,0x7ec403f3,0x003e601e,0x400dfe98,0x7dc000f9, 0x7fffcc2f,0xffffffff,0x0007ee1f,0x86b3bea0,0x2601fea8,0x002fffff, 0x5f880000,0x036c3740,0xcb83ee00,0x332e02fd,0x9df501fd,0x0ff54435, 0xffffff70,0x7fffffff,0x400006d8,0x3f5002f9,0x9803ea00,0x8800001f, 0xadfcafdb,0x801df710,0x0acfcaf9,0x3e40df73,0x200be000,0x7c4000fa, 0x203f3002,0x3f8002f9,0x005f5000,0x02efda98,0x1ba61f50,0x2a05f100, 0x0f9803ff,0x005df900,0x74c003e6,0xcdf980df,0xdccccccc,0x07fa20ef, 0x22002000,0x6e65c07f,0x0000002f,0x17d40db0,0xd100036c,0x400be20b, 0x200201f9,0x32e207f8,0xccccdfdc,0x02ec1bcc,0x00be6000,0xfa800fd4, 0x0001ee00,0x07fff300,0x3e601fd4,0x13ea02ff,0x3a00036c,0x000fa804, 0xf98017c4,0x0005f301,0xbf30007f,0x1fd88000,0xefdafa80,0x0d900982, 0x2001dfb1,0x7f5400f9,0x007cc004,0xf30177e4,0x103fd005,0x00015bfd, 0x001fb800,0x000005f3,0x7c41ee00,0x2000db05,0x5f101ffb,0x0007e600, 0x4c007ee0,0x03e4002f,0x00be6000,0xfa800fd4,0x0001f200,0x007ff300, 0x2ff980dd,0x09d07e80,0xa806d800,0x17c4000f,0xf301f980,0x007f0005, 0x0080ef88,0xfa804e80,0x37f203ff,0x5c1fdb9b,0x2a0cc3ff,0x1aabfbaa, 0x0987bf22,0x57f75550,0x44fe9835,0x200fcc19,0x7f5401fd,0x0002cdff, 0x9801fc40,0x7fec002f,0xffffffff,0xffffffff,0x3603f907,0x6ff54006, 0x400be200,0x880001f9,0x05f3003f,0x0000fa80,0x5400be60,0x01f5001f, 0x000003e4,0x7dc013e6,0x400fe600,0x004f80fb,0x7d403640,0x017c4000, 0x5f301f98,0x4007f000,0x2f880ee8,0x2a036c00,0xb8800dff,0x3a20bdec, 0x07fe40df,0x99999997,0x6ccffea5,0x65c2dfde,0x12cccccc,0xffb83df9, 0x0bf20240,0xffdca880,0xf100003f,0x00be6007,0x99999db0,0x99999999, 0xf10fd999,0x98036c09,0xf8802eff,0x003f3002,0x2007f100,0x7c4002f9, 0x3e600004,0x003f5002,0x07c803ea,0xccccccb8,0x05f300cc,0xf9807ea0, 0xb03f5001,0x05d8000b,0x44000fa8,0x03f3002f,0x3e000be6,0x01dd1003, 0xbd0017e2,0x03fffa60,0x17fdc000,0x0007dfcc,0x3e23dfb1,0x20007d43, 0xbf984ffa,0x0fee000f,0x13f26000,0xdddd9710,0x2007f79b,0x36c002f9, 0x6c3dc000,0x401b600f,0x3e2002fb,0x803f3002,0xdeeeecb8,0xf3003fbc, 0x03f90005,0x7cc1fb80,0x003f5002,0x0fb803ea,0x7fffff40,0x5f301fff, 0x9807ea00,0x03f5001f,0x3f8000d9,0x4000fa80,0x3f3002f8,0x2000be60, 0x0ef9803f,0x400ffe20,0xaefd82fc,0x4c0000fa,0x39d00dfe,0x3fee001f, 0x05c826c3,0x203dfb10,0x5000f8ce,0xb800009f,0xfffc884f,0xfffeecde, 0x005f3003,0xd80007c8,0x3601fcc6,0x001f7006,0xf98017c4,0xdfff9101, 0x7fffdd9b,0x000be600,0x74c017f4,0x002f986f,0x3ea003f5,0x0007e600, 0x0be6036c,0xf300fd40,0x207ea003,0x3e20007b,0x000fa801,0xf98017c4, 0x0005f301,0x0ef9805f,0x577ffc40,0x0ffae609,0x001f51ec,0x90177e40, 0xb1003e6d,0x6b8001bf,0x203ffb80,0x800f88eb,0x000005f9,0x03bfd0db, 0xf3003f98,0x00fa8005,0x1ba27400,0x3cc01b60,0x400be200,0x3bfd01f9, 0x3003f980,0x3a20005f,0x32a61adf,0x7ee544ff,0xfb9303cd,0x0fa8019b, 0x4000be20,0x017cc06d,0x3e601fa8,0x503f5001,0x1ee0005f,0x20007d40, 0x3f3002f8,0x1000be60,0x077cc05f,0xffea9e80,0x02efffff,0x20003ea0, 0x7cc04fe9,0x7dc01f31,0x3e88003f,0x8037f620,0x801f12f9,0x018805f9, 0x3f20fa80,0x007f1002,0xf3000be6,0x1fc40007,0x3ffffffe,0x0fffffff, 0x17c40000,0xfc81f980,0x007f1002,0x70000be6,0xffffffff,0xffffb019, 0x3ffee0df,0x07d402ff,0x6c0017e0,0x8017cc06,0x07e601fa,0x6e80fd40, 0x200df000,0x7c4000fa,0x203f3002,0x7c4002f9,0x001df501,0x55fdd4c0, 0x00fa8001,0x400f7d40,0x6c03e64e,0xe88000df,0x00ffe204,0x200f893a, 0x7b800ee8,0x3e1f9800,0x00fe2004,0x740017cc,0x1f90000f,0xaaaaaaa8, 0x02afeaaa,0x02f88000,0x09f03f30,0x9801fc40,0x7300002f,0x0001357f, 0x1f500000,0x8003fa80,0x017cc06d,0x3e601fa8,0x203f5001,0x7dc003f9, 0x001f5002,0xf5002f88,0x000be603,0x1df501f5,0x01e20000,0x8001f500, 0x98d90039,0x0005700f,0x171013a6,0x7c41d700,0x001dd100,0xf70007f2, 0x98007e61,0x05f3003f,0x0009f300,0x6c0007f5,0x22000006,0x83f5002f, 0x3e6001f9,0x005f3003,0x0003c400,0x7d400000,0x000fd800,0x0be6036c, 0xf300fd40,0x807ea003,0xbf5001fd,0x0007d400,0x7fdc02fc,0x8005f301, 0x005fb87d,0x00f7c400,0x0000fa80,0x5559f300,0x000015f9,0x00001fd4, 0xf75559f1,0x803fb017,0x400bf91b,0x013e26f8,0x9801ffd4,0x5f70002f, 0x002f4400,0x4cc01b60,0x402fc000,0x27c41ffb,0x003ffa80,0x400005f3, 0x80001ef8,0x20002ef9,0xff8800fa,0x301b6003,0x07ea005f,0xf5001f98, 0x01ff4403,0xa8003bea,0x0fd8000f,0x407fff60,0x3e2002f9,0x1002fdc4, 0x0006a800,0x000001f5,0x37333326,0x700001cf,0x8800003f,0xdfdccccc, 0x7400fec1,0x1009ff94,0x00fe83fd,0x801fffe4,0x360002f9,0x0efb804f, 0x4036c000,0x2003fffe,0x3ff600fd,0x400fe81f,0x3003fffc,0x5000005f, 0x3540000d,0x666664c0,0xbccccdfd,0x4df7e440,0x17ff2620,0x2a005f30, 0x007e601f,0x7ec00fd4,0xdfb710ad,0x00fa8001,0x88bef980,0xdf9bfeca, 0x7bfb710c,0xea856441,0x8013ee0f,0x46ee00f9,0x1f50006a,0x98000000, 0xd880000f,0x0000000e,0x05f903e2,0x7d7e53e0,0x3ee621bf,0x1bef982f, 0xf19fd951,0x7cc0179b,0x77dc0002,0x9fb5309b,0x01b60000,0x00fffff3, 0x5445f7cc,0xcdf9bfec,0x446fbe60,0xdf8cfeca,0x0be600bc,0x546ee000, 0xa8540006,0xffffb806,0xffffffff,0xfffd502f,0x039fffff,0x1e6fee54, 0x0cdfdc98,0x0737f726,0x0e6fee4c,0x3ffffee0,0x32e203ff,0xcdfdcccc, 0x200bcccc,0xeffffffa,0x2a5fff30,0x223fffff,0x41effffe,0xccccccfe, 0x1fdccccc,0x0bbff660,0xcccccb88,0xcccccdfd,0x9800000b,0x7440000f, 0x0000b305,0xefa83e20,0xcccccccc,0x22b54fcc,0xfffffffd,0x3ffaa00d, 0xf11effff,0x664c5fff,0x1cccdfdc,0xfffe8800,0x0002efff,0x33fb3326, 0x9ffff103,0xffffa800,0xfff30eff,0xffffea85,0xfff11eff,0x6e66545f, 0xccccccdf,0xdffb3003,0xffd80005,0x0000002e,0x4d5e54c0,0xffffd800, 0xffff706f,0x7fffe45f,0xffffb04f,0x32a2009f,0xfffa802b,0xffffffff, 0x4401ffff,0x00009bca,0xd02cb980,0xffffffff,0x03ffffff,0x3fea0020, 0xffffffff,0x001fffff,0x3fffee00,0x3fe60001,0x07ffffff,0x7ffd4000, 0xfffff92f,0xffffffff,0x5e5cc409,0x32ea000a,0xffc8001b,0x5fffffff, 0x2ee62000,0xfb80000a,0x00efffff,0x20005971,0x0009bca8,0x00379750, 0xffffffd0,0x1dffffff,0x00000800,0x00000004,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x40000000,0x00001999,0x98000400,0x4c000199,0xcccccccc, 0xcccccccc,0x4ccc43cc,0x40000199,0x04000000,0x00000000,0x333332a0, 0x0001cccc,0x310000b1,0x01100000,0x33332e00,0x501bcccc,0x39999999, 0xccccccb8,0x00a01ccc,0xcccca800,0x002ccccc,0x002aeea2,0x50000188, 0x99999999,0x81e44039,0x122003c8,0x33320000,0xcccccccc,0x3333224c, 0x664c0ccc,0x6644cccc,0x65c003cc,0x2a0004cc,0x0001ffff,0xffd97100, 0xf50059bf,0x40003fff,0x89000029,0x0ffffffe,0x3f6e2000,0x9b00acef, 0xffecb880,0xe8802cdf,0x3f602fff,0xff001fff,0xffffffff,0x03ea000b, 0x77fecc00,0x50005c41,0x0017dffd,0x3fffffe6,0xd704ffff,0x85dddfdd, 0xefeeeeec,0x01f502ee,0x3fffa000,0x06ffffff,0xfffffe98,0x3f2202ff, 0x000b82ef,0xffffffff,0x7fdc0bff,0x001ffc81,0x400001f5,0xeeeeeed8, 0x30deeeef,0x1ddddfdd,0xeffeeea8,0xfffdb10d,0x3ffe2001,0xbfd500de, 0x03f95303,0x9df50000,0xbfb75137,0x1fca9801,0x000a6000,0x2aaa2240, 0x50000fca,0xfd959dff,0x540bd03f,0xba89bcef,0x65400dfd,0x332602fd, 0x000001fd,0x001f5000,0xfd77ff30,0x001ff53b,0x3f2b3fee,0x0000002f, 0x54000fa8,0x00fa801f,0x40000000,0x2a61befc,0x7fc40dfe,0xeaaefeab, 0x0000001f,0x3ea03fe6,0x003ea007,0x1fc40000,0x2001fc40,0x3efe607c, 0x1f7f9004,0x37fffc40,0x00003f30,0xd8803fc8,0x01fa802f,0x0000a600, 0x007d4024,0x8806fe40,0x40fe21fe,0xfd8803fc,0x002f8802,0x000003f3, 0x003ea000,0xff702e60,0x3e6001df,0x007f440d,0x3ea00000,0x00fd4000, 0x000007d4,0x09f90000,0x0b88bf70,0x00f7ffd4,0x00400000,0x01f50002, 0x3e200000,0x003f8803,0x95f303e4,0xf59f100f,0x7fffd401,0x003f300f, 0x00077400,0x3f5013ea,0x0014c000,0x0fa80480,0x402fdc00,0x0ff99fe8, 0x54000ee8,0x017c404f,0x00001f98,0x01f50000,0x01a88000,0x1700fec0, 0xa8000000,0x0fd4000f,0x00007d40,0x4f980000,0x400bea00,0x000002a8, 0x20000000,0x000000fa,0xf1007f10,0x207c8007,0x403f8af9,0x200fa8fb, 0x206ffff8,0x900001f9,0x0fcc000d,0x40003f50,0x09000029,0x44001f50, 0x7ff4005f,0x5106c82f,0x03f30435,0xf98017c4,0x00000001,0x00001f50, 0x017e0000,0x59953000,0x00fa8003,0x5400fd40,0x4400000f,0xe800abba, 0x00fc8006,0x2e600000,0x000001ac,0x0003ea00,0x01fc4000,0x32001fc4, 0x36cbe607,0x007d57a0,0x98077f66,0xf980001f,0x3fffffa1,0x540d902d, 0x0a60001f,0x54024000,0x03f2000f,0x303df300,0xd79d903f,0x206c8d3d, 0x3f3002f8,0x05ffff10,0x07ffffe2,0x0001f500,0x002aee60,0x500007f0, 0xfffffffb,0x03ea003d,0x3a03f500,0xffffffff,0x802fffff,0xffffffe9, 0x005f302f,0x00005f30,0xfffff900,0x000007ff,0xffffff10,0xffffffff, 0x7f100007,0x8007f100,0x54be607c,0x2a3f502f,0x2600000f,0x055dcc1f, 0x21d41f40,0x209d05b8,0x260001fa,0x00900002,0x3e6001f5,0x20db0004, 0xe883c83e,0x5f104e86,0x5c07e600,0x32e02fdc,0x54001fdc,0xfff5000f, 0x3ffffea5,0x09f000df,0xacefa800,0x007faa21,0xf50003ea,0x3f732a03, 0xcccccccd,0x1befc803,0x5037faa6,0x3333333f,0xf3333333,0xfffffd87, 0x7f4c001f,0xbfb510ac,0x7fffec01,0x997001ff,0x99999bfb,0x00003799, 0x7f1007f1,0x2607c800,0x36c17a2f,0x400001f5,0xffff71f9,0x83cc0bff, 0xf303903a,0x3fa07ea0,0x14c6ffff,0xa8048000,0x01f7000f,0xf303e600, 0x434c0b30,0x005f1079,0x5f1007e6,0x0007e600,0x2e2001f5,0x0adfcafd, 0xb001df71,0x0010000d,0x1f500ff1,0x801fa800,0x640000fa,0x45fb804f, 0xfffffffc,0xffffffff,0x66664c4f,0x3e2001fd,0x037d401e,0x3fb99993, 0x001f5000,0x0fe20000,0x9000fe20,0xf717cc0f,0x3ea3f881,0x3e600000, 0x730adfc9,0x5416e0bf,0x1f109503,0xfb503f50,0x0298599f,0xf5009000, 0x001b2001,0x42dc2f88,0x7c40c01d,0x3002f880,0x02f8803f,0xff983f30, 0xffffffff,0x87ffffff,0x2a03fff9,0x00fb803f,0x3f700000,0x4000fa80, 0x0fa801fa,0x013e6000,0x2fee2fa8,0xaaaaaaaa,0x02aaaaaa,0x3a001f98, 0x09f3000f,0x4000fd40,0x000000fa,0xf1007f10,0x207c8007,0x3227c2f9, 0x00007d47,0x405fff30,0x504c83fa,0x17407a07,0x77d40fd4,0x0000a600, 0x007d4024,0x7c0005d8,0x00342643,0x05f105d0,0xf1007e60,0x207e6005, 0xcaaaaaaa,0xaaaaaabf,0x803ff982,0x02f8806e,0x7f100000,0x4000fa80, 0x0fa801fa,0x001ba000,0x00fcc3f2,0x07e60000,0x20017dc0,0x3f5001fc, 0x001f5000,0x0fe20000,0x9000fe20,0x2e17cc0f,0xfa89f10f,0x3e600000, 0xe86f802f,0x6dcc7502,0x3ea0f603,0x2006fdc1,0x09000029,0x3e001f50, 0x22ec0004,0x2000682e,0x002f883d,0x2f8803f3,0x8003f300,0x7cc000fa, 0xb81f7004,0xffffffff,0x800001ff,0x07d403f8,0x2007ea00,0xf30000fa, 0x25f30005,0x000004f8,0x5e800fcc,0x2009f000,0xfa8001fa,0x10000000, 0x07f1007f,0x3e607c80,0x0fb9fc42,0x997007d4,0x02f98099,0x01f81f70, 0x01fdddd5,0x21fa84c8,0x053004fc,0x2a012000,0x007f000f,0x40fc6d80, 0x21320006,0x3f5002f8,0x3002f880,0x0fa8003f,0x8017cc00,0x5554c1fa, 0x02aaafda,0xeeecb880,0x403fbcde,0x7d4000fa,0xfffffa81,0x04ffffff, 0x4ccccfd4,0x99999999,0x003f23f9,0x01f98000,0x360007f0,0x003f5005, 0x20001f50,0x0fe2001a,0x9000fe20,0x6c17cc0f,0x01f50bd6,0x2027fffc, 0x3f5001f9,0x447503d8,0x5417404d,0x003fd89f,0x240000a6,0xe8007d40, 0x22740005,0x0000e83d,0x2017e05d,0x7c401ffb,0x003f3002,0x4c000fa8, 0x03f5002f,0x44000f90,0xecdefffc,0x5403fffe,0x0fd4000f,0xabfcaaa8, 0x6400aaaa,0xffffffff,0xffffffff,0x2001ba24,0x01f98008,0x90002f98, 0x007ea00f,0x40003ea0,0x0fe2005e,0x9000fe20,0x4c17cc0f,0x0fa81fdf, 0x00dfff30,0x3ea003f3,0x83a82641,0x2a07e04b,0x4003feaf,0x09000029, 0x36001f50,0x217c0006,0x0002c84c,0x803f603f,0x4401fffd,0x03f3002f, 0x4000fa80,0x3f5002f9,0x4000f700,0x7cc01dfe,0x2607d403,0x2007ea00, 0xf70000fa,0x55555557,0x55555555,0x8801df98,0x1f9805fc,0x0002f980, 0x07ea00f9,0x0003ea00,0x7f1002f4,0x8007f100,0x40be607c,0x01f506fd, 0x200bfff2,0x3f5001f9,0x207506a8,0xf507981d,0x4001dddf,0x09000029, 0x32001f50,0x07e20007,0xa80d10d5,0xdf303cc0,0x7fd95117,0x7c407bf3, 0x003f3002,0x4c000fa8,0x03f5002f,0x32000f90,0x07f1002f,0x02740fa8, 0x1f5003f5,0x007e6000,0x39fd3000,0x67fe54c1,0x001f9800,0x1b60007f, 0x4000fd40,0xbd0000fa,0x801fc400,0x0374004f,0x06a605f3,0xffe807d4, 0x003f3005,0x03f107ea,0x321a2075,0xf11df505,0x00a6001d,0x7d402400, 0x005f5000,0x07e21ee0,0x21720366,0x7ffd405c,0xff30efff,0x00be203d, 0x2a000fcc,0x17cc000f,0xd801fa80,0x009f0006,0x3ea01fc4,0x1f702f40, 0x0001f500,0x000013e2,0x7fffffe4,0x26001dff,0x00bd001f,0x7d4013e0, 0x00fa8001,0x5400bd00,0x00b9001f,0x5f3027c4,0x203ea000,0x3000fff9, 0x07ea003f,0xcedc83ae,0x1f52db82,0xef887ea0,0x00029800,0x01f50090, 0x44003740,0x301d705f,0x507b979d,0x7951001f,0x402eb813,0x3f5002f8, 0x000fa800,0xfa8017cc,0x8004e801,0x3e6001f9,0x3a07d403,0x5401f205, 0x3f20000f,0x26000000,0x0000abef,0x3ee003f3,0x00fdc001,0xa8001fa8, 0x0bd0000f,0xa8007e40,0x07f5000f,0xa80017cc,0x03ffb80f,0x54007e60, 0x5549d01f,0xf11501aa,0x260fd407,0x014c00ef,0xfa804800,0x00fea000, 0x27405f90,0x3e201510,0x0fa00003,0x7dc02fc0,0x07d4001f,0x400be600, 0x17cc01fa,0x09f11880,0x500ffea0,0x3a05e81f,0x007f3006,0x40037440, 0x00698008,0x4003f300,0x9f3000ee,0x000fd400,0xe8001fcc,0x05f8800e, 0x22017e20,0x0be600ee,0x7407d400,0x0fcc006f,0xf101fa80,0x0bb10007, 0xef981fa8,0x0000a600,0x007d4024,0x54007f60,0x01fc405f,0x0002ec40, 0x36001f10,0x3fff600f,0x80008001,0x3f5002f9,0x36006e80,0xf9003fa5, 0x0fa807ff,0x17d417e4,0x2a00df00,0x801df983,0x3c805fc8,0x03f30000, 0x200f7cc0,0x7d4006fa,0x00df0001,0x02ffa92a,0x70003fa2,0x17f4407f, 0x4000be60,0x17fc40fa,0x4007e600,0x3ba601fa,0x01bf5000,0xdf301fa8, 0x0000a601,0x007d4024,0x700bfa20,0xdd3001df,0x037ea001,0x219b0000, 0x17df302a,0xf37fd951,0x0000019b,0xf5002f98,0x8017d403,0x2fbe62f8, 0x19fd9511,0x326179bf,0xb1ccdfdc,0x0df9117f,0x221dfb80,0x305ffca9, 0x54c139fd,0xa800cffc,0x4c000625,0x7f4c001f,0xbfb5109c,0x01fa8001, 0x237df700,0x45ffca98,0x730adfe8,0x2e0005fd,0xfd730aef,0x6fedc407, 0x665c03cc,0x0fa0bdfd,0x4007e600,0x7ec401fa,0x7ed4409b,0x403f5003, 0x02980ef9,0xf5009000,0xbfb10001,0x37f6e615,0x2ff62000,0x1fed4409, 0xfe980000,0x3fea02ff,0xf30effff,0x666645ff,0xcccccccc,0x32a3cccc, 0x9303cdfd,0x6cc19bfb,0xccccccff,0x40ffcccc,0xffffffea,0x5ffff11e, 0x3ffffff2,0x3ffff63f,0xffb8000d,0x1defffff,0xfffffc80,0x4001dfff, 0x2202fefd,0xfdcccccb,0x0bcccccd,0x3fffff20,0x32e203ff,0xcdfdcccc, 0x400bcccc,0xfffffffb,0x3fee02df,0x000dffff,0x7ffff5c0,0x7fd401ef, 0x100fffff,0x5fffffff,0x7ee54000,0xfb9702cd,0xfda8059b,0x0deffeff, 0x0fee5c40,0xccefeb88,0x20000531,0x99999714,0x99999bfb,0xfffb8017, 0x0003efff,0x3fbfff6a,0x00000def,0x51001980,0x26001379,0xffffffff, 0xffffffff,0x3fffff67,0xfffff706,0x7ffffe45,0xffffffff,0x2f2ea00c, 0x44000001,0xa80001bb,0x00009bcb,0x00157953,0xfa802880,0xffffffff, 0x01ffffff,0x00d65cc4,0x7fffffd4,0xffffffff,0x7975001f,0xcb980013, 0x4400001a,0x00001aca,0x20000000,0x06fffffe,0x0bfffffd,0x004d5440, 0x03ffff30,0x3fffffe6,0x99999b33,0x99999999,0x3ea99999,0xffffffff, 0x01ffffff,0x00379510,0x09aa8800,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x66644000,0xc984cccc,0x6643cccc,0x32204ccc,0x3322cccc,0x32204ccc, 0xca82cccc,0x99703ccc,0x2a200799,0xcccccccb,0x642ccccc,0x2204cccc, 0x642ccccc,0x440ccccc,0x4c4ccccc,0xcccccccc,0x664000cc,0x03cccccc, 0xccccc980,0x800ccccc,0xccccccc8,0x00abcccc,0x33333322,0x01bccccc, 0x99999910,0x99999999,0x6664c999,0x0ccccccc,0xccccc980,0x800ccccc, 0xccccccc9,0x93000ccc,0x99999999,0x99991005,0x15999999,0x99999300, 0x99999999,0x00ccccb8,0x33333322,0x6666440c,0x0acccccc,0x66664c00, 0xcccccccc,0x9802cccc,0x4001acca,0xcccccccb,0x74401bcc,0x0deeefee, 0x277ff754,0x817bffb6,0x24effee9,0x205eefed,0x84effee9,0x40deefec, 0x04efeed8,0x77fffe44,0xeeeeeeff,0x7ff6c5fe,0x3fba605e,0x3fb624ef, 0x774c1eee,0x3aa0defe,0xeeeeefee,0x3b62000e,0x0feffeee,0x77775400, 0x01eeeeff,0xeefeee88,0xfffeeeee,0xdfddd102,0xfffddddd,0xeee8801b, 0xeeeeeeef,0x2a7eeeee,0xeeffeeee,0xeea801ee,0xeeeeffee,0xdd513f61, 0xddddffdd,0x3fff6003,0x0fffffff,0x777f74c0,0xefffeeee,0x3bbbea01, 0xeeeeeeee,0x3ffbb60f,0x3bbba604,0x774c0eef,0xfeeeeeef,0xd5001eff, 0xdffddfdd,0x9fdddddd,0x3ffff6a0,0xb001efff,0xdddddffd,0x3007fffd, 0x13f2005f,0x26001fb0,0x00df103f,0x3e602fc4,0x803f5002,0x320acfe8, 0xfd82f407,0x407f3000,0x3f5002f9,0x00007c80,0x01fc76c0,0x00027400, 0x36600fcc,0x017cc03f,0x2003ff71,0x1ee002f9,0x40000bd0,0x1ffe605e, 0x000017a0,0x80fe0000,0xf503feb9,0xf81f6003,0x0f7001ff,0xeb980fe0, 0x8fcc003f,0x5427407c,0x2a21acef,0x1b6001fe,0x405fda88,0x3fd802f9, 0xd005f880,0x004fa80d,0x2f9801dd,0x4403f500,0x80f902fe,0x00bf105e, 0x05f301ba,0xf9007ea0,0x7c400000,0xd0000db3,0x3f300009,0x9807f600, 0x0ee8802f,0x2002f980,0x002f407b,0x7440bd00,0x005e805f,0xf8000000, 0x82fd8803,0x2fb801fa,0x401bb3e0,0x007f007b,0x5c005fb1,0x09d01f27, 0x01fe2002,0xbf7006d8,0xb1017cc0,0x17dc005f,0x2e007f20,0x00fec02f, 0xfa8017cc,0xc803fa01,0xf702f407,0x401fc805,0x3f5002f9,0x9999fc80, 0xfb800019,0x80003f50,0xf980004e,0x40bf3001,0x9f3002f9,0x4005f300, 0x002f407b,0x5b00bd00,0x0000bd00,0x07f00000,0x0fd436c0,0x7f017e60, 0x0f7007f5,0x6d800fe0,0x07c97a00,0x2e000274,0x00db001f,0x2f980fdc, 0x0003fd10,0x13e601fb,0xf700fd80,0xffffa807,0xffffffff,0x542fffff, 0x203e403f,0x8077405e,0x2f9804f9,0xc803f500,0xffffffff,0x5e8000ce, 0x3a00027c,0x1f980004,0xf981b600,0x20176002,0x1ee002f9,0x40000bd0, 0x007dc05e,0x000002f4,0x001fc000,0x01fa89f3,0x4fe00774,0x03dc00fd, 0x3e6003f8,0x323f8804,0x00027407,0x36c00fe2,0x7cc1ba00,0x001fe882, 0x1ba09f10,0x981dd100,0xfdc8805f,0xcccccccd,0x40cdfdcc,0x407c806e, 0x827cc04d,0x05f3006e,0xf9007ea0,0xb7555555,0x7cc005ff,0x20003e42, 0xf980004e,0x981b6001,0x01b6002f,0x39800be6,0x00002f40,0x00fc40bd, 0x6c0005e8,0x01ffffff,0xc8007f00,0xc803e60f,0xf13f801f,0xf007b809, 0x00fc8007,0x80f90fd4,0x7c40004d,0x800db003,0x42f983f9,0x40000ef9, 0x00fdc2fb,0xdd12fcc0,0x017cc001,0x3f881fa8,0x04407c80,0x3ee0fdc0, 0x005f3001,0x0f9007ea,0x2003fd30,0x002f987c,0x00b713a0,0xf1001f98, 0x8017cc07,0x2f9803f8,0xbd0003b0,0xbd000aa0,0x02f40000,0x33332600, 0x7f0001fd,0x142f8800,0x3e009f30,0x7b807f23,0x88007f00,0x323e402f, 0x71002047,0x79bdddd9,0x01b6007f,0x8be617a0,0x00000efa,0x013e21dd, 0x3fb3fb80,0x002f9800,0x03f503f5,0x002f8f90,0x027ccdd0,0x2a005f30, 0x803e401f,0x09f006e8,0x4e80017a,0x9800bfd3,0x0fe8801f,0x6400be60, 0x82f9800f,0x5e8003f8,0x2004ffb8,0x3a00005e,0xf9800005,0x007f0001, 0x3e2009f0,0xbd0fe006,0x3f803dc0,0x7404f800,0x00be3e44,0x37bfff22, 0x03fffeec,0xd9000db0,0x3fee5f30,0x3e600000,0x80001db4,0x8002fdfd, 0x3f5002f9,0xf9001f70,0xf30003f8,0xf3001ba9,0x007ea005,0x17cc00f9, 0x7dc07ea0,0xfbbd0000,0x3f30005d,0x07bf2a60,0xe8805f30,0x05f3004f, 0xbd0007f1,0x400dffb0,0x3a00005e,0xf9800005,0x007f0001,0x3f600bb0, 0xf50fe000,0x7c01ee05,0x205d8003,0x3e3e42f8,0x01dfe803,0x6d801fcc, 0xf987b800,0x02ffefca,0x3f7ee000,0x9fd00002,0x3ffe6000,0xffffffff, 0x007c81ff,0x07fffff9,0x0fefe400,0x3fffe600,0xffffffff,0x003e401f, 0x40db00fe,0xff0003f8,0x7cc0007f,0xffffffff,0xbf9802ff,0xfeca9999, 0x3fe6003f,0x03ffffff,0xffa85e80,0x0017a002,0x00005e80,0xfd001f98, 0xffffffff,0x4036c0df,0x1fc003fa,0x83dc07ec,0xfffffffe,0x1b606fff, 0x7fe40fb8,0x7e403fff,0x007f1002,0x3ea001b6,0x8a7f7cc0,0x00000dfc, 0x20000bfd,0x30005ff8,0x999999bf,0x903fb999,0x333f200d,0x32e003fc, 0xccfffccc,0x6fcc03cc,0xcccccccc,0x3e401fdc,0xf8813e00,0x20036c03, 0x0000efea,0x66666fcc,0x0dffedcc,0x3ffffe60,0x000bffff,0x66666fcc, 0x5e8003fc,0x0bd00020,0x002f4000,0x800fcc00,0xccefcccb,0x1b603ccc, 0xf000bf10,0xf709f307,0x3bf332e0,0x203ccccc,0x321b606d,0x403faaaf, 0x0fe2004f,0x540036c0,0x41ffcc0f,0x500005fa,0x3600003f,0x98004fbf, 0x03f5002f,0xf1f200f7,0x6665c007,0xccccdfdc,0x8017cc02,0x03e401fa, 0x7dc05f50,0x400fd400,0x004fefd9,0x7001f980,0x33e601df,0x1ffbaaaa, 0x882f9800,0x05e8003f,0x0017a000,0x00005e80,0xf0001f98,0x80bb0007, 0x3f8000fe,0x07b81f90,0xbb0007f0,0x23e427c0,0x007e603f,0xdb003f98, 0x981f5000,0x00bea03f,0x0007ea00,0x17e4bf20,0x400be600,0x01fa81fa, 0x0005c7c8,0x20003ea0,0x3f5002f9,0x36007c80,0x3bbfa00f,0xfeeeeeee, 0xe9ffe404,0x26072004,0x17e6001f,0xfe9817cc,0x817cc002,0x05e8002f, 0x05e80720,0x05e80720,0x3e600720,0x007f0001,0x17dc09f0,0xf103f800, 0x7f007b8b,0x2609f000,0x7feeeeef,0x09f1005c,0x400ffea0,0x86c8006d, 0x07ec02f9,0x007ea000,0xfe89f500,0x00be6000,0x17c40fd4,0x00003e40, 0x4c0007d4,0x03f5002f,0xfe8807c8,0x3bbbe602,0xeeeeeeee,0xe833e607, 0x2613e004,0x07dc001f,0xfb1017cc,0x817cc005,0x00bd0001,0x00bd027c, 0x00bd027c,0x0fcc027c,0x4003f800,0x09f302f8,0x407f05b8,0x401ee2fa, 0x17c4003f,0xcccccfb8,0x0fe8007e,0x01fffe40,0x4e8006d8,0x7c402f98, 0x0fd40005,0x10bf1000,0x17cc00df,0x9f01fa80,0x0100f900,0x7ee6665c, 0x402ccccd,0x3f5002f9,0x95107c80,0x07b807ff,0xd000be60,0x4c27c009, 0x17c4001f,0x7ec017cc,0x005f3000,0x017a05c8,0x017a04f8,0x017a04f8, 0x1f9804f8,0x8007f000,0x06e880fa,0x807f07c8,0x7c01ee6e,0x807d4003, 0x100f905e,0x511bef98,0x9bf19fd9,0x0036c017,0x0be60be2,0x80003ee0, 0x3a0001fa,0x009f300f,0x7d400be6,0xc803f701,0x9702f807,0x99bfb999, 0x2f980799,0xc803f500,0xffffffff,0x04e801df,0x3a002f40,0x2613e004, 0x1fc4001f,0x7c4017cc,0x005f3006,0x017a06d8,0x017a04f8,0x017a04f8, 0x1f9804f8,0x8007f000,0x003fb06e,0x300fe0f9,0x7c01ee7f,0x88374003, 0xf00f903f,0xffffea85,0xfff11eff,0x0036c05f,0x0be607f2,0x80013e20, 0xf90001fa,0x802fb803,0x3f5002f9,0x1f203740,0x54007f10,0x2f98000f, 0xc803f500,0xabcccccf,0x003f3000,0x3a000fb8,0x2613e004,0x0fd4001f, 0xfa8017cc,0x002f9803,0x00bd036c,0x00bd027c,0x00bd027c,0x0fcc027c, 0x2003f800,0x03fa82fd,0x00fe0f90,0x401ee3f2,0x0bf6003f,0x07c807d4, 0xcba81fc4,0x0037201b,0x2fd400db,0xfb002f98,0x00fd4000,0xd801fd40, 0x017cc01f,0x3e601fa8,0x880f900d,0x03ea003f,0x400be600,0x03e401fa, 0x8006c800,0x13a003f8,0x1f984f80,0x4c1fa200,0x03f6002f,0xd8005f30, 0xf8017a06,0xf8017a04,0xf8017a04,0x001f9804,0x3f2007f0,0x2005f885, 0x1007f07c,0x3e00f7bf,0x40bf9003,0x101f206c,0xf880007f,0x3006d800, 0x0be601ff,0x80017cc0,0x7c4001fa,0x03ba2005,0xf5002f98,0x82ffa803, 0x01fc407c,0x30001f50,0x07ea005f,0x20000f90,0x0db0003f,0x9f002740, 0x22003f30,0x05f301fe,0x2602fc40,0x036c002f,0x027c00bd,0x027c00bd, 0x027c00bd,0xf8000fcc,0x82fed403,0x1f2000fd,0xefb801fc,0xa807f007, 0x027405fd,0x03f880f9,0xd803c400,0x077e4c06,0x337f72e2,0x6677403c, 0xb9997101,0x207999bf,0x0bcdfec8,0x7dfb9930,0x66fee4c1,0x9bfb9703, 0x77fec403,0xccccfecc,0x203fcccc,0xcdfdccc9,0x372a00bc,0x5c40bcdf, 0x262cdfdc,0xccccfecc,0x6e4c00bc,0x2203ccdf,0x0bcfdccb,0x3bf33326, 0xcccccccc,0xb9714fcc,0x999999bf,0x883ffd99,0x3ccdfdcb,0x10bcfb80, 0x999bfb97,0x99999999,0x333322dd,0xccccccef,0x914fcccc,0x999df999, 0xf9999999,0x3f333229,0xccccccce,0x9714fccc,0x9bfb9999,0x88179999, 0xccccefcb,0x203fffdc,0xccccccef,0x27eccccc,0xbccefcb8,0x881ffa00, 0xccccefcb,0x303fffdc,0x2617bf99,0xccccfecc,0x003fcccc,0x0fcadd80, 0x3333fb2a,0x0dffeccc,0xffffff98,0x3fee00ff,0xffff304f,0x1fffffff, 0xffffff50,0x3fffee05,0x3fff21ff,0x7f440eff,0xa804ffff,0xfffffedb, 0x3fffffff,0x3ffffee0,0x3a02ffff,0x41ffffff,0x6ffffff9,0x3fffffee, 0x5c01ffff,0x0effffff,0xffffff30,0x7fffdc5f,0xffffffff,0xf34fffff, 0xffffffff,0x015bffff,0xfffffff3,0x5ffd001d,0x3fffffe6,0xffffffff, 0xfff56fff,0xffffffff,0x29ffffff,0xfffffffa,0xffffffff,0xffff54ff, 0xffffffff,0x2a9fffff,0xffffffff,0x1fffffff,0x7fffffcc,0x801cefff, 0xffffffff,0x27ffffff,0xfffffff9,0x981fe601,0xffffffff,0x7dc01cef, 0xff71ffff,0xffffffff,0x00007fff,0xfe839b51,0xffffffff,0x000000ad, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0xccc88000,0x9501cccc,0x4c799999, 0xcccccccc,0xcccccccc,0x33333264,0xcccccccc,0x332a4ccc,0x2204cccc, 0x1ccccccc,0x99999993,0x40157999,0xcccccccb,0xcccccccc,0x3f6600cc, 0x00003ace,0x00026288,0x00030000,0x20198000,0x00aacba9,0x01acb980, 0x9953006a,0x54c00035,0x00001abb,0x26005dc4,0x0000001c,0x06600000, 0x006b2e60,0x0abba880,0x005cc000,0x40000000,0x2e601ca8,0x00000001, 0x36213333,0x02eeeeff,0xbdfdddd7,0x777777d4,0xeeeeefee,0xddf50fee, 0xddfddddd,0x21fddddd,0x5eeefeeb,0x3fbbba60,0xfddd51ee,0xffdddddd, 0x3fbb607f,0xeeeeeeef,0x00feeeee,0xdffbbff7,0xffb80000,0x00019fd0, 0x001f5000,0x13597300,0xfe984fa8,0xacffffff,0x7fffe406,0x84e83fff, 0xffffffda,0x3ea001ef,0x1effffff,0x1dfea83d,0x1bffff70,0x0efffea8, 0x02ffff88,0x83fffff1,0x202fffe8,0xbb1ffffd,0x7ffffe40,0x3a6003ff, 0x2fffffff,0x00bff000,0x07fffff6,0x7fffff70,0xfffffd70,0x77fff4c3, 0xfffffd80,0xffff886f,0x3ffe3fff,0x0003e45f,0x01fa85f3,0x43ee01f5, 0x01f501fa,0x05f303ee,0xf901f200,0x406fd980,0x07dc004e,0x07106fcc, 0x77f54000,0x00fff221,0x01f50000,0x3fff2200,0xfa8bffff,0x0dffd40e, 0x01fff931,0x22159fd3,0x9f10dfda,0x21acefa8,0x4401fea8,0x2a61adfd, 0x3e23fdfe,0xdfb86fff,0x77c4bf50,0xb80efc8a,0x32e02fdc,0xdca81fdc, 0x3732602f,0xfd307f1f,0x3f6a2159,0x5f7e400d,0x037faa61,0x2009fd00, 0x00bcdfc9,0x0e7f65c4,0x7542bbe6,0xc8aff88f,0x7e64c0ef,0x99702cce, 0x7f4379fd,0x003dc4ff,0x1fa83f30,0x3ee01f50,0x3ea03f50,0xbd01f700, 0x9013e000,0x813ea00f,0x07dc004e,0x000007ec,0x202efd98,0x0002efd9, 0x0001f500,0x22159fd5,0x80efffd9,0x7fcc00ff,0x200f7c40,0x81fb8efa, 0x407f8800,0xffb802fd,0x3ffffea3,0x3e613e20,0x09f30db3,0xf98017c4, 0x400be201,0x440ffdf9,0x37d401ef,0xf7009f90,0x0003000b,0x17a0009f, 0xddbf1008,0x37409f30,0x3609f100,0x07d43fff,0x540fa800,0x201f501f, 0x203f50fb,0x01f700fa,0xfa8001f7,0x9003e401,0x0013a01f,0x00bd01f7, 0x7ff91000,0x0eff5400,0x03ea0000,0x803df300,0x2f982ffb,0xfe81fb00, 0xbfdf3000,0x01fb8000,0x7e4005f5,0x1bfffe23,0x7e7dc0fb,0x2201f901, 0x03f3002f,0xf98017c4,0x00fe80ad,0x9f309f30,0x0017d400,0x0036c000, 0xfb0003f8,0x403f203f,0x3f7001fa,0x30bfff20,0x40fb603f,0x501fa87b, 0x543ee01f,0x201f501f,0x03f880fb,0x3e4036c0,0x3a05f100,0x407d4004, 0x5c00006d,0x70000cff,0x000019ff,0xf88003ea,0x6eef9806,0x91005f88, 0x64002fb8,0xf880005f,0x4005f883,0x6fecc2f8,0xff00fe21,0x8827c40b, 0x03f3002f,0xf98017c4,0x8005f701,0x003741fc,0x000007e4,0x1fec1ee0, 0xa8000fcc,0x80fe205f,0x40bd005f,0x7c41fffb,0x906ff982,0x2a03f50d, 0x2a1f700f,0x201f501f,0x00d900fb,0x3e401fc4,0x27413e00,0x7dc12200, 0xffa80001,0xc880000d,0xa80004ff,0x07f6000f,0x7f31df30,0x20007fb0, 0x09f0005e,0x507f1000,0x0170003f,0x3200fd40,0x882f403f,0x03f3002f, 0xf98017c4,0x2000bd01,0x000be64f,0x00000be6,0xdff03f30,0x20001f70, 0x02f403fa,0x2fa801f7,0x203ffea0,0x1fbfb83f,0x00e885d8,0x99a601f5, 0x201f500f,0x00be607a,0x3e4007dc,0x3a07f100,0xd0007704,0x7f4c000b, 0x8800001e,0x20002ffc,0x13e000fa,0x3ec1df30,0xabcdffd8,0x8001fc00, 0x765c405d,0x3fbcdeee,0x000007b8,0xfb801f70,0x9999999a,0x005f106c, 0x2f8807e6,0x3e03f300,0x54bb0003,0x9999999f,0xf9999999,0x44000003, 0x07e7d43f,0x36e601b2,0x99bfccee,0x06d99999,0x0db013e2,0x9f07ff98, 0xd07f1dd0,0x0fa80209,0x7d403020,0x0bd00200,0x3e4017a0,0x3a03f700, 0x3000bb04,0xfd98003f,0x8000002e,0x8002efd9,0x5f3000fa,0x2e077cc0, 0xffd9300f,0xf9819fff,0x20f90002,0xcdefffc8,0xd83fffee,0x90000006, 0xffff500f,0x0fffffff,0x7cc00be2,0x400be201,0x02f981f9,0x7fe4f900, 0xffffffff,0x14ffffff,0x99999999,0x99999999,0x1db17a07,0x2e04e87f, 0xffecefff,0xffffffff,0x03e407ff,0xdff007f1,0x27f117a0,0x8004f85e, 0x500000fa,0x7dc0001f,0x8017cc00,0x0df5007c,0x005d8274,0x88037ec4, 0x00003ffc,0x1dfea800,0x333332e2,0xccccdfdc,0x403ea3cc,0x1f980ef9, 0x3bf6a600,0x4000be62,0x03bfd07c,0x05d83f98,0x0f900000,0x55559f50, 0x22055555,0x03f3002f,0xf98017c4,0x0002f981,0x555fdcf9,0xaaaaaaaa, 0xff12aaaa,0xffffffff,0x0dffffff,0x9b69f1b2,0xdfd882f8,0x5559f701, 0x80555555,0x01f903f9,0x1760bff0,0x3e1ee3f5,0x2aaaa203,0xaaaabfca, 0x07d4000a,0x807f1000,0x01f2007c,0xfe803bee,0x05ffffff,0x0feffea0, 0x6ffdcb2a,0x00000000,0x7f449ff7,0xffffffff,0x26ffffff,0x0ef980fa, 0x20003f30,0x00fe1fd8,0x17e436c0,0x7c83f880,0xf5000000,0x003fb801, 0x4c00be20,0x00be201f,0x03f80fcc,0x0fccdb00,0x00000000,0x8fd43ea0, 0x503f30fa,0x02fa807f,0xf10db000,0x40ff6009,0x5f33e46c,0xff9017c4, 0xffffffff,0xa8005fff,0x36c0000f,0x64009f10,0xecaaaaaf,0x77400dff, 0x05fccccc,0x3f219f30,0xf912ffc0,0x0000007f,0x0006ff54,0x7cc003ea, 0x7007fc42,0x7400041f,0x7c0017a4,0x22004f84,0x000fa83f,0x01f98000, 0x10002fe4,0x07e6005f,0xf3002f88,0x40017a03,0x0013e24f,0x30000000, 0x3f89b65f,0x201f20f7,0x500004fa,0x000fb85f,0xd1ee01b3,0x07e64f8b, 0xf7333310,0x00033335,0x500003ea,0x007ea03f,0xffffffc8,0x9d001def, 0x3e401760,0x02fa97a2,0x0005dfb1,0x0f7f4c00,0x000fa800,0x01fe893e, 0x005f136c,0x007ee6d8,0x1f983f70,0x220fe600,0x2600004f,0x201fc40a, 0x220007ff,0x03f5002f,0xfa8017c4,0x8003f701,0x007e41fb,0x00000000, 0x5b61fd3e,0x801f505d,0x200006fa,0x0002f45e,0x0fe61f50,0x0007d4db, 0x800007d4,0xf80000fa,0xc800dd04,0x0009999f,0x017609d0,0xd97d427c, 0x77f4c00f,0x36200001,0x540002ef,0x23f2000f,0x7cc01fe8,0xd0017e24, 0x3000ee8b,0x009f109f,0x7e40ffea,0xb0fdc001,0x07c87fff,0x300bebee, 0x7dc02fc0,0x402fc01f,0x3ba01ffb,0x109f3000,0x011000dd,0x37600000, 0x7cfd41fa,0x4405f104,0x00c02fff,0x03f51fb8,0xb8fcc000,0x7b87d40f, 0x001f5000,0x0003ea00,0x0fe21f20,0x0000f900,0x80088274,0xf1fb02f9, 0x6ff5400b,0x3f220000,0xf500003f,0x76fc4001,0x2374401f,0xf9003ff8, 0x401ef985,0x03fa06fa,0x407fff90,0xfe9802fe,0x1ffffe66,0x25f309f1, 0x07e980fc,0xffd803f6,0x007ec01f,0x4c03fffb,0x37d401ef,0x1003bf30, 0x00000bf9,0x221b7ee0,0x3ba02fdf,0xeffff880,0x2007e980,0x0000db4f, 0x10db2f88,0x4001f27f,0x500000fa,0xf300001f,0x4000fc85,0x3a00007c, 0x27c40004,0x001fff88,0x000cffb8,0x00067fdc,0x8001f500,0x74c02ffb, 0x77ffc41f,0x3fae609a,0x139fd303,0x8037f6a2,0x9511bef9,0x79bf19fd, 0x1adfe881,0x313ff2a6,0xb81fffff,0x44bf51df,0x3df911ee,0x445f7cc0, 0xdf9bfeca,0x17df300c,0xf37fd951,0x67f4c07b,0x1bfb5109,0x09cfe980, 0x033ff2a6,0x80017e40,0xffb03ff9,0x45774401,0xeafcffa8,0x03df933f, 0x017e7e40,0x4f9fc000,0x001b6bd0,0x800007d4,0xd00000fa,0xc8005f8b, 0x13a00007,0xb81fe000,0x3220005f,0xfea803ff,0xa800000d,0x3fa2000f, 0x95109cff,0x2a7a03df,0xfffffffe,0xfffc802e,0x5003ffff,0xdffffffd, 0x0bfffe23,0x7fffffdc,0xffd00cff,0x3ffea09f,0x7ff4c0df,0xfa800cff, 0x30efffff,0x7d405fff,0x30efffff,0xfc803fff,0x03ffffff,0x7ffffe40, 0x4001dfff,0xf10005ff,0x01bea03f,0x3bffffa2,0xffff3698,0xff10009f, 0x3e00000f,0x2f702f9b,0x1f50005e,0x03ea0000,0xa87d4000,0x07c8001f, 0x0013a000,0x3a20fee0,0xd880006f,0xefe982ef,0x2a000001,0x3fd1000f, 0xffffff91,0xba98009f,0x44001abc,0x0001acb9,0x00037975,0x26af2a60, 0x401ca800,0x5cc00ba8,0xbca88001,0x54400009,0x800009bc,0x001acb98, 0x055e54c0,0x005d7000,0x88000000,0x164c01bb,0x00000000,0x981f33a0, 0x50004eaf,0x2a00001f,0xf100000f,0x64001b69,0x13a00007,0x8eff4000, 0x2cdfbfea,0x2ff4c000,0x00005ff9,0x2001f500,0x65cc41fd,0x0000001a, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x3b760000,0x01fe7c05,0x0000fa80,0x00001f50, 0x001fc7e4,0x200007c8,0x3200004e,0xf71fffff,0x2a0000bf,0x00000f25, 0x2a004880,0x00000001,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0xfc800000,0x17fec03f, 0xfdcccb80,0x8802cccc,0xccfdcccb,0x260003cc,0x26000fef,0xccccfecc, 0xcca800bc,0x2cccccef,0x03773000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x7dc00000,0x0ffd401f,0x7ffff440,0x805fffff, 0xfffffffa,0x0000efff,0xf70017fa,0xffffffff,0xfffd003f,0x0bffffff, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x37510000, 0x00017510,0x00055dcc,0x20000000,0x000001a8,0x00000000,0x2a000ec0, 0x00800804,0x804a8800,0x2e202dc9,0x65c00bdc,0x13100ccc,0x00131000, 0x973000a0,0x3bbb6015,0x8a777744,0xcccccccc,0xcccccccc,0x555544cc, 0xaaaaaaaa,0x81aaaaaa,0x5c002982,0x17301440,0x000ddc40,0x1ca80e54, 0xddddddd7,0xdddddddd,0x44444443,0x88888888,0x08888888,0xfff88000, 0xfff886ff,0xbb1006ff,0xffb9f4c0,0x5ffffb9f,0x413fffee,0xff52fffa, 0x201bffff,0x017a00eb,0x43ffffd8,0x22efffd9,0xfffffff9,0x21ffffff, 0x1ffffffe,0x0dfffff5,0x3ffffff6,0x543fd001,0x13ee1bcb,0x0bd00d90, 0x7edc9d10,0x2f7a207e,0x77cc3fda,0x3e04ecab,0x7ecc5fff,0xb803dfff, 0x002effff,0x7e400bf2,0xfe83ffff,0x7fffc4ff,0xffffff54,0xffffffff, 0x7c1fffff,0xffffffff,0xffffffff,0x7dc3c46f,0x645fb004,0x7fec2fff, 0xffffa83f,0x17fe0c03,0xfffbaffc,0xffffffff,0xff51ffff,0xffffffff, 0xffffffff,0x0001ffff,0x059bfd70,0x00bbfb2e,0x7cc0bfa2,0xfdfb710f, 0xf97f913b,0x103f9139,0x5bf95fb7,0x203bee21,0xdf701ff9,0xf9993001, 0x4ce7fe47,0x99bf31fd,0xfb999999,0x6fe6541d,0x33ff623c,0x9999301c, 0x3a2003fb,0xfffffebf,0x6c805fcd,0x2205fa80,0x3ccaa1fe,0x41f50bb0, 0x980f981a,0x6dc1ffff,0x02fca9ac,0xf937dfd1,0xfff5009f,0xbdffd801, 0x7fec3ffe,0x1fffec3f,0x03ee0000,0x33333333,0x33333333,0x3f20f103, 0x88bfa205,0x3e66ffff,0x6fdc7fff,0xf705fc88,0xfd827ec3,0x55555533, 0x55555555,0x2aaaa215,0xaaaaaaaa,0xaaaaaaaa,0x2200001a,0x2fd401fe, 0x503fe880,0xbff303ff,0xbd09ffb0,0x01fffcc0,0x3fea07f5,0x001df901, 0x04fd8bf8,0x200be639,0x05f101fe,0x20003ff3,0x3a2001fa,0xff710aef, 0x401b200b,0x1fe885fa,0x02441e60,0x20fa007d,0x4005fffc,0x203fb06c, 0x37e602fb,0xff300ef8,0x320ffa81,0x7fe42fff,0x5c00002f,0x8000000f, 0xdfb81ef8,0x260ff4c0,0xf30fffff,0x3e61ffff,0x2e0dfb84,0x0040084f, 0x00000000,0xd1000000,0x017ea03f,0xfa827fcc,0x20df302f,0x01f705fa, 0x3a00ffe6,0x40bfea06,0x3e000efd,0xf3002fec,0x201fd803,0x077d42f8, 0x003f5000,0x9f100ee8,0xa801b200,0x007fa25f,0x5f1000f3,0xfd03f500, 0x999801ff,0x2fcc0fa8,0x77441be0,0x3f20bf30,0x7dc5fd05,0x7ffdc1ff, 0x7dc00000,0x20000000,0x21df506a,0xffd01ef9,0x4fffe8bf,0xcff980e6, 0x000004fe,0x00000000,0xd1000000,0x005fa83f,0x3ee0bff3,0x407e603f, 0x01f501f9,0x7dc013e6,0x40ffee00,0xff001ffd,0x4048003f,0x17c402fc, 0x80001bf7,0x3e6001fa,0x2ee3d401,0x12a23640,0x0ff4efd4,0x6c003cc0, 0x07fb6e05,0x4c13ffe2,0xfffffffd,0x2e00fd40,0x5c1fd80f,0x902fd83f, 0x07ffcc7f,0x0001ffea,0x00003ee0,0x0d51bb80,0x00dc974c,0x5d40b6e2, 0xdec88001,0x00000002,0x00000000,0x7ec40000,0x2a009f71,0x9ff906ff, 0xf301f980,0x4c03ea03,0x03f5002f,0xe883ffc8,0x0ef801ff,0x1fdc0000, 0x4fc97c40,0x03f50000,0x2f803640,0x322fbff6,0x0effda8e,0x003fff50, 0xdd8801e6,0x0bff2600,0x2603ffea,0xc999bdff,0x2007dc0f,0x817dc0fb, 0x827e42fc,0x1ffe22fe,0x0001bfe6,0xeed83ee0,0xeeeeeeee,0x4eeeeeee, 0x005dffb3,0x00000000,0x00000000,0x00000000,0x36000000,0xf5004fcf, 0xbff901df,0x2603f300,0x201f501f,0x3f5002f9,0x109ffb00,0x3f805ffd, 0x27d40000,0x6fdbf880,0x07ea0000,0x9d004e80,0xffffeb88,0x4401cfff, 0x1e6006ff,0x2002f440,0x1ffe43f9,0x1f500fd8,0x3f404f98,0x1fd013ea, 0x3ea07fd4,0x4437fc0f,0x800005ff,0x333320fb,0xcccccccc,0x83cccccc, 0x00000000,0x00000000,0x00000000,0x00000000,0x7005fe80,0xffb01fff, 0x407e600b,0x01f501f9,0x7d400be6,0x0bffd001,0x7c05fff3,0x3e600003, 0x3ffe2005,0x80000dfe,0x17a001fa,0xf91027c0,0x3a2003bf,0xf3005fbf, 0x0009f300,0x01fff1b2,0x07ec413a,0x4fa807f4,0x3e201be2,0x75effec6, 0x04fe83ff,0x000009ff,0x000001f7,0x00000000,0x00000000,0x00000000, 0x00000000,0x0bfbf200,0x207ffea0,0xf3006ffd,0x5407e603,0x005f300f, 0x3a2007ea,0xfff984ff,0x0000fe02,0x22002fcc,0x03ff70ef,0x001fa800, 0x0fe201f6,0x001fdfb0,0x17ea3fd1,0x5f701e60,0xf335c000,0x857dc07f, 0x409fffb9,0xfb51cff8,0x3000fc8d,0xffffc85f,0x205f903f,0x800002fc, 0x000000fb,0x00000000,0x00000000,0x00000000,0x00000000,0x5fb3fc80, 0x01dff500,0xf300bff9,0x5407e603,0x005f300f,0x3f6007ea,0x1fff884f, 0x40001fc0,0x44000ee8,0x017f4c2f,0x4003f500,0x07ec04f9,0x0bf35f70, 0x7d41fe88,0xdb03cc05,0x80621103,0x201bea2f,0xbcfffffd,0xffd887ff, 0x00884fff,0x65cc0440,0x880a200b,0x91000002,0x00000000,0x00000000, 0x00000000,0x00000000,0x90000000,0x803fc87f,0xfb80eff9,0x80fcc04f, 0x01f501f9,0x7d400be6,0x41ffec01,0xf801ffe8,0x77440003,0x82f88000, 0x50000fd8,0x3fe8003f,0x2604fd88,0x440fee5f,0x8bf501fe,0xaabfcaaa, 0x55557f91,0x37fa29d5,0x0385fc9a,0x9884dd40,0x2aea6009,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x3fc81fec,0x705ff980,0x0fcc07ff,0x1f501f98,0x5400be60,0x0bff201f, 0x4003bfa2,0x7ec0003f,0x7c40dc01,0x000df302,0xfb8007ea,0xffdbcefe, 0x0ee881ff,0x0ff40fec,0xccb93ea0,0x952ccccc,0x59999999,0x02cedca8, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x40000000,0x1fe402fd,0xa82ff440,0x03f303ff,0x07d407e6, 0xf5002f98,0x40bfee03,0x3e000efd,0x07f60003,0x0be213a0,0xa8002fd8, 0x2bf7001f,0x88adfeb8,0x40fdc1fe,0x001a85e8,0x00000035,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x400bf600,0xfe8804fb,0x305ff304,0x407e603f,0x05f300fa, 0x3ea07ea0,0x01dfb01f,0x90003f80,0x213e005f,0x1be202f8,0x2007ea00, 0x3a2005f8,0x01100c46,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x9dfd7000, 0x3f32e059,0x7ec402df,0x223ff303,0x4c1cdfdc,0x67d40cdf,0x9bfb950b, 0x37f72607,0x201df30c,0xcc9805fb,0xccccefcc,0xefa80bcc,0xcccccccc, 0x332a4fcc,0xbf903cdf,0x6665c439,0xcccdfdcc,0x00060bcc,0x00000004, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x5fffffe8,0xbfffffd0,0xe8817200, 0x7fffff52,0x542fff98,0xfffb2fff,0x3fee0dff,0x01b72fff,0xffc8026c, 0xffffffff,0xffc81fff,0xffffffff,0x3ff64fff,0xf880efff,0x3ffea4ff, 0xffffffff,0x0001ffff,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000, 0x00000000,0x00000000,0x00000000,0x00000000, }; static signed short stb__courier_43_latin_ext_x[560]={ 0,9,4,3,4,3,4,8,11,5,0,2,5,3, 8,4,4,4,3,3,3,3,5,3,4,5,8,5,0,1,0,0,3,0,1,2,2,1,2,2,1,4,3,1, 2,0,0,0,3,1,1,3,2,1,0,0,1,1,3,0,0,0,4,1,8,2,0,3,2,2,3,2,1,3, 3,3,3,0,2,2,0,2,3,3,2,1,1,1,1,2,4,0,10,0,3,4,4,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,9,4,2,3,1, 10,2,5,0,0,0,0,3,0,-1,6,2,6,6,8,1,3,8,8,6,5,2,0,0,0,0,0,0,0,0, 0,0,0,2,1,1,1,1,4,4,4,4,-1,0,0,0,0,0,0,5,1,1,1,1,1,1,3,1,2,2, 2,2,2,2,0,3,2,2,2,2,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,2,0,2, 0,2,0,2,0,2,2,3,2,3,2,3,2,3,2,2,-1,2,1,2,1,2,1,2,1,2,1,2,2,2, 2,2,2,2,2,2,1,1,1,1,4,3,4,3,4,3,4,3,4,3,0,0,3,3,1,3,2,2,3,2, 3,2,3,2,3,1,3,0,2,0,2,0,2,0,2,2,0,2,0,2,0,2,0,0,1,3,1,3,1,3, 3,3,3,3,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,2, 1,3,4,3,4,3,4,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,4,4,3,4,4,4, 4,4,4,4,4,4,4,4,4,4,1,2,4,4,4,4,4,4,4,4,4,4,4,4,4,1,1,4,4,4, 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,2,4,3,0, 2,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4,4,4,0,2,0,0,1,2,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 4,4,4,4,4,4, }; static signed short stb__courier_43_latin_ext_y[560]={ 31,7,8,6,5,7,11,7,7,7,7,10,25,19, 26,5,7,7,7,7,7,7,7,7,7,7,14,14,10,16,10,8,6,9,9,8,9,9,9,8,9,9,9,9, 9,9,9,8,9,8,9,8,9,9,9,9,9,9,9,7,5,7,7,39,6,14,7,14,7,14,7,14,7,6, 6,7,7,14,14,14,14,14,14,14,9,14,14,14,14,14,14,7,7,7,17,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,31,14,6,8,12,9, 7,7,8,8,6,14,19,19,8,4,3,8,7,7,6,14,7,16,30,7,6,14,7,7,7,14,1,1,1,3, 3,1,9,8,1,1,1,3,1,1,1,3,9,3,1,1,1,3,3,13,7,1,1,1,3,1,9,7,6,6, 6,8,8,5,14,14,6,6,6,8,6,6,6,8,7,8,6,6,6,8,8,11,13,6,6,6,8,6,7,8, 4,9,2,6,9,14,1,6,1,6,2,7,2,6,2,7,9,7,4,9,2,6,2,7,9,14,2,6,1,6, 2,6,2,7,8,5,1,1,9,7,3,8,4,9,2,6,9,6,2,14,9,6,1,6,9,7,14,1,0,9, 7,9,7,9,7,9,7,1,6,9,14,2,6,7,8,14,4,9,2,6,1,6,9,14,1,6,9,14,2,6, 1,6,1,6,8,14,2,6,9,9,2,7,9,9,3,8,4,9,2,6,0,5,1,6,9,14,1,6,1,6, 3,1,6,2,7,2,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,7,7,8,14,7,7,7,7,7,7,7,7,7,7,7,7,7,6,14,7,7,7, 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,2,6,2,6,2, 6,2,6,1,4,1,1,1,2,1,1,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,7,7,-6,-1,1,6,1,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7, }; static unsigned short stb__courier_43_latin_ext_w[560]={ 0,5,14,17,15,17,15,6,7,7,15,19,9,17, 7,15,15,15,16,16,16,16,15,16,15,15,7,10,19,20,19,14,16,23,20,19,20,19,20,20,21,15,20,21, 19,23,22,19,18,20,22,17,19,21,23,23,21,20,16,7,15,7,15,24,7,19,21,18,21,18,18,20,20,17, 13,19,17,23,19,19,21,21,18,16,19,20,21,21,20,20,15,8,3,8,17,20,20,20,20,20,20,20,20,20, 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,5,14,18,16,20, 3,19,12,23,13,19,21,17,23,25,11,19,10,11,7,20,17,7,7,10,13,19,23,24,23,14,23,23,23,23, 23,23,23,19,19,19,19,19,15,15,15,15,21,22,19,19,19,19,19,13,21,21,21,21,21,20,18,19,19,19, 19,19,19,19,23,18,18,18,18,18,17,17,17,17,18,19,19,19,19,19,19,19,19,20,20,20,20,20,21,20, 23,19,23,19,24,21,19,18,19,18,19,18,19,18,20,21,21,21,19,18,19,18,19,18,21,18,19,18,20,20, 20,20,20,20,20,20,21,20,21,21,15,17,15,17,15,17,15,17,15,17,23,19,20,14,21,19,19,19,17,19, 17,19,17,19,17,20,17,22,19,22,19,22,19,21,19,17,19,19,19,19,19,19,23,23,22,18,22,18,22,18, 17,16,17,16,17,16,17,16,19,19,19,19,19,19,21,20,21,20,21,20,21,20,21,20,21,21,23,21,20,20, 20,16,15,16,15,16,15,18,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,20,20,17,20,20,20, 20,20,20,20,20,20,20,20,20,20,22,20,20,20,20,20,20,20,20,20,20,20,20,20,20,22,21,20,20,20, 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,23,19,15,17,19, 19,21,20,21,20,21,20,21,20,21,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, 20,20,20,20,20,20,20,20,20,20,23,19,23,23,21,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20, 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, 20,20,20,20,20,20, }; static unsigned short stb__courier_43_latin_ext_h[560]={ 0,25,11,28,30,25,21,12,29,29,15,20,12,3, 6,30,25,24,24,25,24,25,25,25,25,25,18,21,20,8,20,24,28,22,22,24,22,22,22,24,22,22,23,22, 22,22,22,24,22,28,22,24,22,23,22,22,22,22,22,29,30,29,11,3,7,18,25,18,25,18,24,25,24,25, 33,24,24,17,17,18,25,25,17,18,23,18,17,18,17,25,17,29,29,29,6,24,24,24,24,24,24,24,24,24, 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,25,25,23,16,22, 29,27,4,24,12,17,11,3,24,3,11,23,13,13,7,25,27,6,8,13,12,17,24,24,24,25,30,30,30,28, 28,30,22,30,30,30,30,28,30,30,30,28,22,28,31,31,31,29,29,14,26,31,31,31,29,30,22,25,26,26, 26,24,24,27,18,24,26,26,26,24,25,25,25,23,25,23,26,26,26,24,24,18,20,26,26,26,24,33,32,31, 27,23,29,26,27,22,31,26,31,26,30,25,30,26,29,25,22,25,27,23,29,26,29,25,27,23,29,26,31,33, 30,33,30,32,30,34,30,30,22,24,28,23,27,22,29,25,28,31,29,17,23,33,31,33,29,31,17,30,31,29, 31,22,24,22,24,22,24,30,25,29,24,29,25,24,24,25,28,23,30,26,31,26,22,18,30,25,29,24,29,25, 31,26,31,26,30,24,30,26,31,31,29,25,22,23,29,24,28,23,30,26,32,27,31,26,28,23,30,26,30,33, 28,30,25,29,24,29,25,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,28,24,24,24, 24,24,24,24,24,24,24,24,24,24,24,18,24,24,24,24,24,24,24,24,24,24,24,24,24,26,18,24,24,24, 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,29,26,29,25,30, 26,30,26,31,28,31,31,31,30,31,31,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, 24,24,24,24,24,24,24,24,24,24,37,33,30,26,32,27,24,24,24,24,24,24,24,24,24,24,24,24,24,24, 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, 24,24,24,24,24,24, }; static unsigned short stb__courier_43_latin_ext_s[560]={ 511,500,326,237,83,325,129,504,393,504,196, 185,260,455,416,42,393,496,145,250,365,1,197,62,409,323,302,499,145,363,165, 382,116,174,219,400,491,263,108,1,133,496,432,1,323,475,400,66,89,340,240, 286,45,453,65,1,44,23,383,306,495,499,298,473,392,263,18,283,425,397,438, 447,1,270,46,46,87,42,66,377,248,282,106,225,412,334,482,436,1,79,125, 495,347,338,424,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66, 66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,511,504,267, 235,179,112,507,1,442,128,270,22,341,455,22,46,314,195,237,248,400,343,442, 408,384,226,284,86,246,221,197,180,157,455,410,273,177,331,445,479,21,63,99, 80,223,257,294,42,361,154,1,437,305,82,102,212,428,126,104,60,371,21,155, 100,291,210,271,418,304,480,458,457,129,390,409,440,375,357,339,394,304,215,97, 137,157,380,420,416,205,189,168,491,104,60,221,21,418,254,314,450,21,469,475, 371,169,331,181,231,1,252,21,468,423,40,398,318,475,87,417,490,46,337,1, 68,416,178,310,122,273,265,136,25,367,389,66,44,201,356,361,343,401,213,100, 42,459,161,274,143,148,163,437,265,141,1,325,351,457,303,86,283,459,198,179, 461,120,229,476,183,160,22,125,195,217,374,484,117,245,177,88,310,438,229,160, 477,206,306,207,80,189,39,239,162,396,22,285,225,252,140,25,298,138,397,58, 174,201,470,199,377,82,350,297,152,343,230,434,101,319,119,213,289,270,272,364, 324,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,343,66,66,255, 66,66,66,66,66,66,66,66,66,66,66,66,66,105,242,66,66,66,66,66, 66,66,66,66,66,66,66,66,106,355,66,66,66,66,66,66,66,66,66,66, 66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,58,148, 122,288,376,311,41,1,308,133,286,351,394,355,372,330,66,66,66,66,66,66, 66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66, 66,66,66,1,81,414,56,243,460,66,66,66,66,66,66,66,66,66,66,66, 66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66, 66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66, 66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66, 66,66,66,66,66,66,66,66,66, }; static unsigned short stb__courier_43_latin_ext_t[560]={ 1,132,340,132,71,218,317,317,102,71,340, 317,340,340,340,102,191,218,244,191,244,218,191,218,191,191,317,269,317,340,317, 244,132,294,294,218,294,294,317,244,294,244,269,294,294,269,294,244,317,132,294, 244,317,269,317,317,294,294,294,102,1,39,340,340,340,317,218,317,191,317,244, 191,269,218,1,269,269,340,340,317,218,191,340,317,269,317,317,317,340,218,340, 102,102,102,340,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269, 269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,1,101,191, 269,340,294,39,163,340,269,340,340,340,340,269,35,340,269,340,340,340,218,132, 340,340,340,340,340,244,244,244,218,71,39,39,132,132,71,294,39,71,71,71, 132,71,71,71,133,294,132,39,1,39,102,102,340,163,39,39,39,102,102,294, 218,163,163,163,244,244,132,317,244,163,163,163,218,191,191,191,269,191,269,191, 191,191,218,218,317,317,163,163,163,244,1,1,39,132,269,102,163,163,294,1, 163,39,163,71,191,71,163,133,191,294,218,132,269,102,163,102,191,163,269,133, 163,1,1,71,1,71,1,71,1,39,39,294,244,132,269,132,294,102,191,132, 39,102,340,269,1,39,1,102,39,340,102,39,102,1,294,244,294,218,294,244, 71,218,102,244,102,218,244,244,218,132,269,71,191,39,191,294,317,71,218,102, 218,102,218,39,191,39,191,71,244,71,191,39,39,102,218,317,269,102,244,132, 269,71,163,1,132,39,163,132,269,39,163,39,1,132,71,218,102,244,102,218, 244,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,244,269,269,132, 269,269,269,269,269,269,269,269,269,269,269,269,269,269,317,269,269,269,269,269, 269,269,269,269,269,269,269,269,163,317,269,269,269,269,269,269,269,269,269,269, 269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,102,163, 102,218,71,163,71,191,1,132,1,1,1,71,1,1,269,269,269,269,269,269, 269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269, 269,269,269,1,1,71,191,1,132,269,269,269,269,269,269,269,269,269,269,269, 269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269, 269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269, 269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269,269, 269,269,269,269,269,269,269,269,269, }; static unsigned short stb__courier_43_latin_ext_a[560]={ 364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364, 364,364,364,364,364,364,364,364, }; // Call this function with // font: NULL or array length // data: NULL or specified size // height: STB_FONT_courier_43_latin_ext_BITMAP_HEIGHT or STB_FONT_courier_43_latin_ext_BITMAP_HEIGHT_POW2 // return value: spacing between lines static void stb_font_courier_43_latin_ext(stb_fontchar font[STB_FONT_courier_43_latin_ext_NUM_CHARS], unsigned char data[STB_FONT_courier_43_latin_ext_BITMAP_HEIGHT][STB_FONT_courier_43_latin_ext_BITMAP_WIDTH], int height) { int i,j; if (data != 0) { unsigned int *bits = stb__courier_43_latin_ext_pixels; unsigned int bitpack = *bits++, numbits = 32; for (i=0; i < STB_FONT_courier_43_latin_ext_BITMAP_WIDTH*height; ++i) data[0][i] = 0; // zero entire bitmap for (j=1; j < STB_FONT_courier_43_latin_ext_BITMAP_HEIGHT-1; ++j) { for (i=1; i < STB_FONT_courier_43_latin_ext_BITMAP_WIDTH-1; ++i) { unsigned int value; if (numbits==0) bitpack = *bits++, numbits=32; value = bitpack & 1; bitpack >>= 1, --numbits; if (value) { if (numbits < 3) bitpack = *bits++, numbits = 32; data[j][i] = (bitpack & 7) * 0x20 + 0x1f; bitpack >>= 3, numbits -= 3; } else { data[j][i] = 0; } } } } // build font description if (font != 0) { float recip_width = 1.0f / STB_FONT_courier_43_latin_ext_BITMAP_WIDTH; float recip_height = 1.0f / height; for (i=0; i < STB_FONT_courier_43_latin_ext_NUM_CHARS; ++i) { // pad characters so they bilerp from empty space around each character font[i].s0 = (stb__courier_43_latin_ext_s[i]) * recip_width; font[i].t0 = (stb__courier_43_latin_ext_t[i]) * recip_height; font[i].s1 = (stb__courier_43_latin_ext_s[i] + stb__courier_43_latin_ext_w[i]) * recip_width; font[i].t1 = (stb__courier_43_latin_ext_t[i] + stb__courier_43_latin_ext_h[i]) * recip_height; font[i].x0 = stb__courier_43_latin_ext_x[i]; font[i].y0 = stb__courier_43_latin_ext_y[i]; font[i].x1 = stb__courier_43_latin_ext_x[i] + stb__courier_43_latin_ext_w[i]; font[i].y1 = stb__courier_43_latin_ext_y[i] + stb__courier_43_latin_ext_h[i]; font[i].advance_int = (stb__courier_43_latin_ext_a[i]+8)>>4; font[i].s0f = (stb__courier_43_latin_ext_s[i] - 0.5f) * recip_width; font[i].t0f = (stb__courier_43_latin_ext_t[i] - 0.5f) * recip_height; font[i].s1f = (stb__courier_43_latin_ext_s[i] + stb__courier_43_latin_ext_w[i] + 0.5f) * recip_width; font[i].t1f = (stb__courier_43_latin_ext_t[i] + stb__courier_43_latin_ext_h[i] + 0.5f) * recip_height; font[i].x0f = stb__courier_43_latin_ext_x[i] - 0.5f; font[i].y0f = stb__courier_43_latin_ext_y[i] - 0.5f; font[i].x1f = stb__courier_43_latin_ext_x[i] + stb__courier_43_latin_ext_w[i] + 0.5f; font[i].y1f = stb__courier_43_latin_ext_y[i] + stb__courier_43_latin_ext_h[i] + 0.5f; font[i].advance = stb__courier_43_latin_ext_a[i]/16.0f; } } } #ifndef STB_SOMEFONT_CREATE #define STB_SOMEFONT_CREATE stb_font_courier_43_latin_ext #define STB_SOMEFONT_BITMAP_WIDTH STB_FONT_courier_43_latin_ext_BITMAP_WIDTH #define STB_SOMEFONT_BITMAP_HEIGHT STB_FONT_courier_43_latin_ext_BITMAP_HEIGHT #define STB_SOMEFONT_BITMAP_HEIGHT_POW2 STB_FONT_courier_43_latin_ext_BITMAP_HEIGHT_POW2 #define STB_SOMEFONT_FIRST_CHAR STB_FONT_courier_43_latin_ext_FIRST_CHAR #define STB_SOMEFONT_NUM_CHARS STB_FONT_courier_43_latin_ext_NUM_CHARS #define STB_SOMEFONT_LINE_SPACING STB_FONT_courier_43_latin_ext_LINE_SPACING #endif
b2fa0ca97873a222fd471cb94898de65d87cd3da
82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5
/Airfoil/wingMotion/wingMotion2D_pimpleFoam/1.35/k
3b3597aed1a52d7bca8d19ab3a7b1a45b31e368f
[ "MIT" ]
permissive
ishantja/KUHPC
6355c61bf348974a7b81b4c6bf8ce56ac49ce111
74967d1b7e6c84fdadffafd1f7333bf533e7f387
refs/heads/main
2023-01-21T21:57:02.402186
2020-11-19T13:10:42
2020-11-19T13:10:42
312,429,902
0
0
null
null
null
null
UTF-8
C++
false
false
156,006
k
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "1.35"; object k; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 12556 ( 36.90869691 36.90875009 36.90883108 36.90897904 36.95446399 36.9551344 36.95631692 36.95887414 36.96378629 36.97191096 36.98303721 36.99371417 37.00119387 36.99965442 36.9895964 36.97884678 36.96915511 36.9621662 36.95831635 36.95601553 36.90990288 36.90908721 36.90868337 36.90842496 36.72748318 36.72771078 36.72802961 36.72870209 36.77446119 36.777811 36.784555 36.81674482 36.83928954 36.8768917 36.9291388 36.98629454 37.01336011 37.01071336 36.97628958 36.9227323 36.87447161 36.8395582 36.79655002 36.78329227 36.73195213 36.72926949 36.7279626 36.7272542 36.54746326 36.54801283 36.5488084 36.55034919 36.59750967 36.60577568 36.62163605 36.66893269 36.72279846 36.81057672 36.92133419 37.01334965 37.06098912 37.05774139 37.00472813 36.91162922 36.80467512 36.72482008 36.64950806 36.61932799 36.55929357 36.5529789 36.5499965 36.54877832 36.36883901 36.36949579 36.37092087 36.37441561 36.42403708 36.44093068 36.47510003 36.55065661 36.66184815 36.81919689 36.98123252 37.11863665 37.19310373 37.1873724 37.10650771 36.96785287 36.80800449 36.65800849 36.53023167 36.47116917 36.39330352 36.38128773 36.37543071 36.37313236 36.19205701 36.19306416 36.1956873 36.20239814 36.25677967 36.28676466 36.35123678 36.47340481 36.66703657 36.89450265 37.14318047 37.37233915 37.50582613 37.48856074 37.34465119 37.11986347 36.87959118 36.66233563 36.45367507 36.34425733 36.23691419 36.21418568 36.20367499 36.19956702 36.01670052 36.01822046 36.02265352 36.03409923 36.09700234 36.14745183 36.25865146 36.44944615 36.71668551 37.05105865 37.4676842 37.93895017 38.25928345 38.17745961 37.81923581 37.42043575 37.04066522 36.7205826 36.42828762 36.24393874 36.09236365 36.05166405 36.03403551 36.02710983 35.84370596 35.84626644 35.85378658 35.87179794 35.94609015 36.02380498 36.19820895 36.45938465 36.81976146 37.31078855 38.04149983 39.26087122 40.031627 39.86095779 38.7022459 37.91822113 37.30604143 36.83800288 36.44385254 36.17533164 35.95877386 35.894197 35.86623608 35.8553166 35.6738833 35.67776957 35.68913288 35.71640088 35.80586305 35.91763495 36.16588385 36.49166926 36.96335199 37.65180909 38.84852334 41.56234596 42.60807503 40.14117909 38.6347893 37.67349138 37.01040339 36.48839844 36.13484363 35.83880861 35.7430565 35.70116818 35.68500383 35.5094902 35.51549963 35.53245592 35.57242583 35.67566745 35.82930475 36.15110796 36.54121862 37.12634885 38.00207423 39.58923459 43.56266088 47.14500444 41.91644647 39.49901537 38.11641635 37.22351608 36.55441689 36.11690134 35.73280497 35.60021576 35.54134194 35.51877649 35.35181957 35.36009851 35.38296789 35.43642916 35.55697044 35.75643164 36.14676055 36.60014264 37.28788053 38.30932511 40.12179307 44.45819187 50.3584133 43.53507286 40.36237637 38.57287987 37.4528692 36.63463075 36.11677837 35.64223866 35.46900787 35.39050889 35.36039034 35.20314326 35.21456796 35.24505489 35.31491608 35.45067901 35.69588186 36.14879752 36.66168798 37.43847354 38.57505303 40.54963005 44.62275045 51.95852994 44.73917737 41.0929786 38.98620587 37.67325583 36.71800769 36.12560438 35.5660103 35.35144427 35.25234373 35.21385679 35.06322824 35.07741534 35.11466641 35.19997956 35.35477574 35.64367304 36.15443163 36.72205366 37.5785989 38.81830771 40.95266377 44.23545493 52.6491016 45.52188485 41.64028154 39.32235793 37.86584814 36.79519571 36.13659721 35.50448728 35.24840869 35.12872686 35.08151282 34.93285544 34.95062093 34.99731715 35.09981384 35.26624441 35.59459744 36.15396161 36.77949193 37.70806698 39.05081975 41.38989084 43.67605455 47.06621236 52.46320405 45.96457264 42.00297002 39.56196389 38.01667628 36.85890237 36.14532846 35.45030855 35.15889647 35.01929415 34.9637718 34.80979005 34.83078296 34.88572848 35.00181553 35.19319392 35.56940201 36.18014368 36.85220476 37.85477962 39.3207767 41.88912051 42.29019271 56.10319253 52.43979697 46.14299529 42.17777087 39.7118647 38.1243512 36.90630236 36.14643236 35.39865669 35.07882214 34.9213466 34.85822207 34.69290903 34.71689743 34.77921641 34.90763806 35.11514604 35.52348916 36.17543512 36.90664123 37.98350709 39.55487911 42.20358269 38.52945304 55.80632019 51.88382501 45.99957158 42.1944332 39.77486551 38.18883026 36.93106434 36.13300251 35.34672027 35.00381103 34.83096881 34.76141384 34.57881134 34.60552508 34.67415875 34.81377981 35.03638916 35.46955192 36.15430006 36.95245239 38.11978767 39.81174169 42.36198983 33.3686063 53.86016758 50.73357215 45.58314475 42.07069267 39.76526563 38.20461466 36.92812286 36.10067444 35.28704352 34.9272962 34.74326181 34.66836836 34.46662023 34.49567495 34.56923204 34.71800116 34.95345343 35.40467 36.11283645 36.96040708 38.23776391 40.0626674 42.07190039 26.75622552 52.21914836 49.36900488 44.92958266 41.83491901 39.71144468 38.18198873 36.8910196 36.0487504 35.21919232 34.84829692 34.6547526 34.57543614 34.35262784 34.38364193 34.46105054 34.61750631 34.86403318 35.32719605 36.05014345 36.92047244 38.26907561 40.16416799 41.2994705 24.59513106 50.72551697 48.08875644 44.27506715 41.55345706 39.58523575 38.1001196 36.81440381 35.97196663 35.13681904 34.75945811 34.56124741 34.47857847 34.2378191 34.27036737 34.3503891 34.5122325 34.7668579 35.23698933 35.9673443 36.84876415 38.20230286 40.04822094 40.1238698 24.20101792 49.33731047 47.08678074 43.76696086 41.27792135 39.40801466 37.97397536 36.71006429 35.87545902 35.04238552 34.66246127 34.46143888 34.37681588 34.11844547 34.1521672 34.23412566 34.40035859 34.66169453 35.13499677 35.86710403 36.75203814 38.0946734 39.80480333 39.09741557 23.28358059 48.03559383 46.34199115 43.33102031 40.99001657 39.20509009 37.81980048 36.58493537 35.76231993 34.93584078 34.55575466 34.35332338 34.26738796 33.99800032 34.03252511 34.11549819 34.2839416 34.54893621 35.02270859 35.75261475 36.63599517 37.95817713 39.51192534 38.13391561 22.43066306 46.80842736 45.6480111 42.91908933 40.70352465 38.99088616 37.6491336 36.44451361 35.6358902 34.8198682 34.44187933 34.23912498 34.15239887 33.87171431 33.9067907 33.9905903 34.16113765 34.42955728 34.90188213 35.62697978 36.50543176 37.79998233 39.18205208 37.23416585 21.76543923 45.65080723 44.99268556 42.52905709 40.42514468 38.77363438 37.46970578 36.29336879 35.49939836 34.69464427 34.3192912 34.11658074 34.02936823 33.74611013 33.78147626 33.86542509 34.03603328 34.30463531 34.77428906 35.49288871 36.36414013 37.62537745 38.82592134 36.40322653 21.2102438 44.55029601 44.36943915 42.15639846 40.15728779 38.55810105 37.28652964 36.13537005 35.3556546 34.56413058 34.19266444 33.99042708 33.90294633 33.61370427 33.64924496 33.73356052 33.90523268 34.17549627 34.64161433 35.35263246 36.21507873 37.43819901 38.45618296 35.64381252 20.71646948 43.49344251 43.7723835 41.79766992 39.89963812 38.34684459 37.10281645 35.97353628 35.20705282 34.42702194 34.05862487 33.85661632 33.7689005 33.48516864 33.520714 33.60478354 33.77523318 34.04312493 34.50531983 35.2081544 36.06058279 37.24092813 38.08354725 34.95363441 20.26338883 42.47786813 43.19655499 41.45053552 39.6509041 38.14098452 36.92062191 35.81007416 35.05542997 34.28865583 33.92446401 33.72291849 33.63502558 33.34795935 33.38349656 33.46782902 33.63923369 33.90865804 34.366594 35.06101298 35.90232784 37.03516698 37.71168663 34.32849034 19.83735729 41.49777201 42.63808065 41.11315035 39.4097695 37.94074129 36.74113346 35.64650588 34.9022663 34.14476837 33.78290137 33.581244 33.49305686 33.2193052 33.25471915 33.33863177 33.50790402 33.77263881 34.22638148 34.91238376 35.7414445 36.82245466 37.34405432 33.76364976 19.43642993 40.54557932 42.09395917 40.78401575 39.17517139 37.74593021 36.5649864 35.48387984 34.74856454 34.00370225 33.64593904 33.44449275 33.35602547 33.07806737 33.11340497 33.19761545 33.36829531 33.63602491 34.08540136 34.7630747 35.5786285 36.60445737 36.98288891 33.25142486 19.06831153 39.62080335 41.56233462 40.46179263 38.94618445 37.55615936 36.39243532 35.32286131 34.59520797 33.85592352 33.4991997 33.29717391 33.20823197 32.95231451 32.98749474 33.07122303 33.23893144 33.49887576 33.94421564 34.61365929 35.41436561 36.38297914 36.62988964 32.78487875 18.73528564 38.72491417 41.04110914 40.14531843 38.7220091 37.37098921 36.22353919 35.16388404 34.44260936 33.7162686 33.36365018 33.16157898 33.07220121 32.80666084 32.84175513 32.92583128 33.09571762 33.36220909 33.80328246 34.46453268 35.24904204 36.15958846 36.28596824 32.35940496 18.44152292 37.85600629 40.52955864 39.83354157 38.50191011 37.18995178 36.0582171 35.00721123 34.29139574 33.56523216 33.21208354 33.00900751 32.91894936 32.68728468 32.72224064 32.80588005 32.97204313 33.22554696 33.66296081 34.31599715 35.08301287 35.93554588 35.95165544 31.97092719 18.19210635 37.01278302 40.0271814 39.52559876 38.28524398 37.01259795 35.89633101 34.85301327 34.14156517 33.4312175 33.0823893 32.87904115 32.78841205 32.53523845 32.57012788 32.65409421 32.82311992 33.09030317 33.52359352 34.16831484 34.91663529 35.71196768 35.62716156 31.61435556 17.9849853 36.19470005 39.53400438 39.2208631 38.07148177 36.83851844 35.73768964 34.70139581 33.99379371 33.27482463 32.92392339 32.7192728 32.62776378 32.42681405 32.46160857 32.54532875 32.71051415 32.95527707 33.38549719 34.02177394 34.75023593 35.48964805 35.31241111 31.2848436 17.82259142 35.40184145 39.04815058 38.91889898 37.86016867 36.66732027 35.58205712 34.55247903 33.84768851 33.15261681 32.80597433 32.60080184 32.5086541 32.26423147 32.298992 32.38290699 32.55036651 32.82305311 33.24926977 33.8768205 34.58416565 35.26916814 35.00709263 30.97749572 17.70585029 34.63563493 38.5687253 38.61949461 37.65096231 36.49868412 35.42929197 34.40663596 33.70461206 32.98421184 32.63524323 32.42863752 32.33540746 32.17307316 32.20781023 32.29176935 32.45785514 32.6919534 33.11606047 33.73476202 34.41871894 35.05088042 34.71074209 30.6879031 17.63704036 33.89900497 38.09675699 38.3225631 37.44356166 36.3323081 35.27915291 34.26506862 33.56456151 32.88509271 32.53766805 32.33027796 32.23641584 31.96556776 32.0003315 32.08459004 32.25224032 32.56881886 32.98893211 33.60016814 34.25458524 34.83590816 34.42515878 30.41534702 17.61662311 33.19782624 37.63694863 38.03001752 37.23843151 36.1682634 35.13155304 34.1317039 33.43309584 32.66851169 32.31887816 32.10948005 32.01411031 43.40507916 47.65491535 42.97589592 44.38344037 51.21820088 48.1033692 44.64591768 52.90680622 51.51843454 44.299064 53.59251702 53.02047311 43.71479018 42.62513914 46.06798878 53.89743485 53.63259125 42.7620502 52.85568425 43.02089934 55.72036359 54.38599663 53.92156504 41.21067477 39.98979524 42.50384646 39.78215389 51.12903588 44.54268678 46.63454301 42.33805444 40.69034395 40.00306891 43.45107623 42.66333678 55.52949948 56.97992267 50.06113714 44.36191752 42.88115604 40.44935636 43.97448037 43.5416448 44.61885711 46.34866894 47.29079705 54.61389687 54.05923959 51.828565 45.83158829 44.78420186 40.86451873 44.0019895 44.00010019 44.5091954 42.85362883 44.76216212 55.9693569 55.20582459 41.29035089 43.79372215 43.98874351 44.00878979 38.26802224 40.61014221 39.60641015 56.7285662 56.49739611 41.79754884 43.2844468 43.75233998 43.36052624 32.52182632 35.11170327 41.30890337 54.38513944 53.21343523 47.59276915 49.35202097 43.62917296 47.19458164 56.86539134 51.45716374 45.60825525 50.51024093 55.51638411 47.40867912 48.11371492 44.06506772 48.74111185 47.47730247 49.46058255 48.88685593 54.13206538 55.34241802 49.85014794 56.26585808 55.5216014 55.7314076 56.34692909 49.60825202 44.94603234 46.18898291 44.64841779 45.85397697 44.08982806 47.39520593 45.96326391 55.06070453 54.69691452 52.44210341 56.03650835 56.27401219 55.48581394 55.99166616 52.25516945 40.74016949 42.73478485 44.46225852 41.81292034 39.3788129 43.97122741 41.94728662 56.45838286 56.05211954 35.26204362 38.09856516 43.97546863 40.4327199 36.2304478 33.18607279 39.23874973 36.43146696 41.22836407 56.99947109 56.75691069 39.51481029 40.08940587 32.46311139 43.31317831 49.61505371 32.0243377 76.28382209 33.10192682 32.03381842 48.91003779 39.42631892 42.51469816 40.89817748 42.5258859 46.21570192 43.22520773 61.86594067 47.17595896 43.96433019 48.19293886 48.17188135 46.77779615 52.6093011 46.7597539 46.10720283 53.71461427 49.75063692 48.27137948 52.39275101 57.3038347 57.08804577 48.01710173 46.52326671 42.7880853 54.84975249 45.63842302 52.883396 44.15583328 49.57850916 44.99175172 47.84767606 44.0242082 53.38639752 56.44858349 56.57251492 56.29694789 56.43776296 53.31692008 39.6636089 47.43790166 45.3069428 41.57720556 41.17218997 43.18246289 43.99723278 41.657363 41.61856255 66.32303909 48.20037826 61.46643453 46.29241967 58.07132083 47.36336892 56.84072486 56.9493995 54.26680163 54.23113735 40.93226615 44.46049161 55.68874366 41.33201104 42.69479212 45.95033842 41.46898051 55.59401917 39.54020063 43.5357475 43.19268717 52.53258235 50.55700875 48.64279442 34.1656353 41.3969977 40.90937756 42.0158481 41.57155337 34.30994406 59.02701786 55.3024479 48.48638122 55.60971422 56.59699057 51.35883982 55.28221352 48.72543736 45.2680203 50.56209261 45.03601849 55.84806435 51.31143717 45.8297782 53.56697779 58.84855614 54.85852683 54.46869899 48.14656141 44.28284916 48.06552763 49.36260193 47.62032082 50.82098165 44.67053857 47.20026875 49.26318948 54.82769453 54.9367796 55.89756233 53.79157279 53.18394216 54.39815555 53.9609383 55.840286 56.61288555 51.83881174 50.81202729 52.95229971 52.14225788 56.64864424 45.05151041 44.93745904 46.77376163 46.68332136 55.2077889 46.52972276 55.14480768 40.85150729 40.68556995 43.02119273 42.88379377 43.17017811 47.06353348 56.25661913 43.34370753 40.95257094 37.0061584 42.57500789 42.16152493 43.0743582 42.70442323 37.15072496 39.45387751 35.37098922 35.24232315 38.25849168 38.11936466 54.9805745 40.69081823 54.43276657 53.08133481 40.72232011 40.26162522 32.10460502 33.12555643 41.47942422 41.60009473 32.6884815 68.90045632 41.98904005 60.36772784 32.61254914 46.28610739 44.89319699 40.57504218 60.85903616 39.80259491 40.26720339 42.13757504 42.82461673 43.18928639 41.79050708 34.03696652 41.67262998 56.30593404 53.81472526 54.31952481 53.73142861 40.58969683 43.61870337 55.65449425 54.79593588 41.40872961 57.43596988 57.36116597 52.9053623 43.29308965 42.80048855 45.21564535 46.29920449 43.01735867 43.3163699 56.16625077 59.10293822 58.013676 57.13580631 54.39376816 45.27034776 45.63013448 48.31932216 47.60223472 53.96116204 43.70537079 45.05973672 44.80555151 45.37611205 45.14132651 43.84411514 43.96133214 43.64418653 39.67623576 32.90730288 38.00997592 37.59261513 68.51819348 50.5927176 53.63563936 56.20710403 60.24114668 59.37807873 52.9670042 48.71805346 47.27228113 50.4292785 49.17236635 53.33020552 54.3930824 49.50044969 48.65584872 55.04153407 45.50356265 45.65432391 45.44991094 40.53297625 41.03285907 44.45993901 45.86576941 46.19625762 54.88750216 56.15221694 55.20185516 55.10434875 55.5325476 54.8066188 54.51399496 55.06333268 54.87979898 55.54794355 41.75076303 44.35354514 44.06225384 44.71785641 44.4471146 41.88450026 41.41054825 36.13267822 36.45768419 33.66673599 33.89016201 39.85667813 43.57517778 39.73816043 40.39100463 36.58855991 36.95655694 42.34887779 56.30695246 47.6497278 51.4253028 59.00242908 39.54060832 35.82138369 34.04851983 38.82194078 33.35234008 33.59265652 32.84010233 37.37283517 49.36090544 38.87103661 38.96780331 38.17311189 37.45714464 37.05918647 32.33089691 40.59169961 41.62792806 51.5219 32.00686036 87.50735379 43.18832682 41.58610771 46.38049137 32.93111997 32.12218983 55.50008941 54.65456329 54.41086231 46.95411377 46.91849548 40.19385004 39.80744378 53.99332932 52.88027492 52.77676136 48.43565263 58.03432045 48.55860169 58.50866455 49.32458877 43.29968332 40.64659199 45.79135168 46.33245606 50.36978805 47.06677747 41.05657594 40.53996901 48.73247701 59.25080312 41.09797936 46.25798146 65.70830967 39.60675033 40.3922393 39.67063012 39.57858498 57.96899906 66.80009297 55.09597344 51.50512274 58.89559314 55.88962627 50.81372195 47.81714665 52.96407467 56.00005499 55.31331888 56.41091349 57.12353608 57.660498 56.45137819 46.18170675 45.45183896 54.33210046 46.82910028 47.12787313 45.18724336 46.56972082 47.25155879 54.01010968 47.4840903 46.46085907 41.30378355 41.61996368 41.42492471 51.20070634 50.3417583 43.06141137 48.51825147 47.09939095 49.99763085 48.97848404 42.43999668 41.77763806 41.92513521 40.61361346 38.59747925 38.13460288 33.25987265 34.64980155 39.11291916 38.72825966 57.6659132 57.11412532 56.68316865 51.44064999 52.00586242 50.4274555 51.2136566 56.98406849 53.74876373 52.2322566 52.04834929 52.13290991 52.24951389 54.02592097 54.23364226 49.2139236 50.16213329 57.24287366 57.68219708 59.8711548 59.41548464 55.88626774 61.09215394 61.8861272 62.12961575 60.74719128 59.812029 62.11245621 60.60861261 53.1930778 58.75123809 59.92660186 42.9026786 48.22591772 47.36220522 49.04017376 48.45973041 43.47561162 46.16453464 45.57069547 47.06169689 46.36899791 48.9025584 51.27013912 50.73434556 51.91713788 51.44182965 49.36091546 45.68592267 49.80717576 49.2356993 50.55120601 49.99509189 46.05472306 50.64634446 49.6813497 54.49692508 55.05437437 52.14245634 51.01833091 40.05851411 39.56940891 40.90884641 40.23031516 38.79214039 38.31671099 39.41486347 38.93384269 44.62153082 44.06093975 45.37902447 44.8135371 42.94315417 41.34873276 43.8565152 43.29417314 44.79813268 44.10388544 46.68538604 45.27353186 47.01750159 43.95062761 44.80777828 43.91176696 43.70749349 35.69209065 36.00491245 41.27529199 34.05534509 33.84195353 34.3529929 34.14366718 33.73340221 40.06083577 33.97774701 35.4001634 37.78098995 39.44568253 43.44114316 37.41180339 35.2893817 38.21931309 37.48893087 34.71925681 34.45064699 35.14187882 34.82489838 42.48210051 37.08821818 37.53173086 50.35041916 41.90875715 49.53163768 45.74124589 49.2762061 41.5046312 61.24726662 39.43589597 59.05475456 52.27169943 35.7042815 34.63193137 33.06598221 33.28196928 38.68290148 37.61217372 32.86143433 33.01040485 54.72356878 32.27723105 36.87190149 36.19802743 69.80724432 77.19174024 31.9390489 81.16731422 60.51492851 41.12187046 32.86603141 68.59312352 44.858349 79.0271282 46.83807395 32.23760922 42.18323975 40.18393544 38.93562942 52.85190413 52.45657255 53.08245971 47.28066009 46.92163005 52.78773125 41.02401395 40.41196057 39.52580152 56.58216197 56.5329235 53.77141911 45.18481912 44.62875068 47.58715002 52.86056616 45.11924942 45.25248106 41.12651616 41.46298583 43.80468617 49.77515442 53.29908264 56.00379953 46.78590433 46.03600874 45.92436118 46.12497411 46.06514681 46.91956605 44.3180721 42.54538431 40.66304899 52.05794081 53.55719984 56.63533963 39.60226754 39.23416046 34.76602224 56.78867866 58.47746085 52.79831454 45.87773727 45.71555906 45.68098455 45.51153991 42.54908407 43.1774073 43.48233584 44.4185046 46.29032032 36.07628225 40.10826068 39.72321983 46.27204004 44.2124562 39.97063955 32.40398003 32.43806665 33.31824583 42.76976695 55.92367078 50.35073586 39.5803746 47.04140199 44.86848171 32.0079937 33.04270892 32.3629206 32.38595066 32.05052959 62.40615594 46.65174041 41.52645863 42.79561201 53.03723176 40.16474589 40.74964192 50.00439375 54.11704764 46.77058984 45.21964005 47.16406182 46.35077944 40.40522172 40.11173073 62.62359972 64.94568554 66.60997591 56.1656183 63.64739681 42.75344515 43.01319725 45.68636845 63.47982979 58.90023511 56.44824766 66.4418217 63.74080422 40.97887543 42.88179528 42.11167312 47.94774048 47.33027086 42.81955662 52.25380891 51.4987523 41.5689814 46.14164549 42.07313358 42.29931949 45.01674593 40.07071712 40.56747468 58.72769033 59.49616337 55.94720238 55.98788346 54.88147598 54.72263284 51.92307414 52.9169177 52.53922449 54.54443666 54.32633467 54.85195524 47.76026151 48.90490894 53.7136295 55.04961543 60.4184306 56.81206355 60.59441133 60.95129323 58.23728371 41.28538458 43.4402465 42.9188182 47.06196817 46.82799586 44.04597861 40.83799587 40.60058588 42.48660753 42.14166683 48.04196756 50.19865556 49.87218422 52.18832519 51.85203158 50.31520388 44.96596744 47.66862501 47.39267853 49.54370648 49.22356582 46.80984205 41.86440454 42.37337465 45.40045238 44.57685854 41.19413212 41.69813759 45.34506022 45.84228624 47.04650001 39.21369064 39.06800716 40.39234881 40.20461405 36.95993721 38.84819162 38.72702729 46.38859774 44.64996461 45.17244801 46.56653721 46.4107867 42.65351235 43.00231138 46.42286382 46.4515682 46.92492979 54.94953599 46.3749628 47.73372546 40.58947563 40.23169838 36.40877023 37.54685074 41.01928713 40.69657312 33.47042081 33.5364365 35.4815402 35.10663596 33.30270033 33.39388001 55.1574647 32.20618494 33.06699538 32.42639001 109.5741362 32.38040847 41.1753027 55.44199659 49.64739567 32.13657468 32.16810737 32.73791864 67.52006998 73.07729304 70.66700213 53.95781062 32.56137775 32.09115424 32.11536807 41.49189334 40.62282244 39.80801538 52.7423723 52.1180654 44.04798066 42.8202732 40.0480516 55.11241237 54.83854979 58.9895125 41.29478065 51.14065557 47.03620072 51.39823973 50.50268787 42.25680238 44.20408018 44.92290289 49.08180985 53.98291434 54.34577642 53.42273724 53.70617729 58.78972854 57.93740107 58.19761922 57.3912614 57.66294387 58.37388557 48.05405192 48.16496263 48.39828923 47.79240505 47.93467163 47.95899746 59.9019536 58.76817462 58.76849833 58.44510294 58.65154654 59.64368932 49.07894295 49.19342216 49.46087803 48.66068241 48.91563329 48.84332362 52.71686717 52.8982326 52.02010288 52.21456432 36.22043057 38.46485985 38.33757885 33.75514915 35.20658344 35.11100753 35.51177259 35.32102281 33.82710796 56.34541628 57.62872523 51.17662744 57.2163047 32.78973546 32.74914639 32.89077684 32.84676148 32.5421969 33.57009229 32.48435748 32.61160201 33.43713613 34.86878675 34.77983713 35.03114159 34.94854783 33.51082371 33.01198751 32.94417481 33.69267912 33.16812678 32.94836874 56.95934867 55.15634188 45.07037765 57.52257178 34.41295692 33.59316748 39.54726941 32.37180786 33.92231339 33.78084844 31.98392489 85.73425942 87.3560955 62.78360931 76.8623961 66.39832237 32.29255064 32.33226772 32.99131368 32.08222785 59.52221877 65.08345232 59.82446299 61.72478783 57.78347392 50.04108917 63.74888258 58.54181746 47.26237593 47.30361298 54.07280061 44.46770894 47.92995029 53.75651027 51.01697818 54.9990613 50.25961968 53.35030343 59.91189865 61.46394788 54.25882174 58.76094681 62.43698935 50.15036956 51.36446789 49.56172078 53.55489715 62.18239829 62.2813895 60.23416595 42.25537246 54.75460923 48.92790603 60.88326162 61.91576599 44.17236835 46.84939 50.33129224 64.43012711 52.73310715 42.78331129 44.2926014 62.7509592 59.35514814 63.13165388 57.75191724 60.40214002 62.91666412 64.23658069 63.57974993 55.47209102 55.6367706 55.912667 54.99324115 55.16363657 55.19147363 57.23494366 56.82564723 57.10554325 56.23827431 56.51846719 56.84307637 45.93194777 48.56634705 48.54956416 46.90337227 47.12899291 45.66571397 46.94591542 46.68203385 46.38932703 47.63128242 48.00999236 46.984884 47.91633898 47.74618677 48.47359683 48.24759289 46.68803221 47.36403532 44.75326059 41.08874556 48.65725054 48.55760625 48.32364829 42.14467551 47.53844922 47.10647318 42.01842752 41.98308185 44.27958394 58.24762021 56.47693833 53.6890314 53.31236307 52.46513486 54.54355926 54.14093507 53.87735944 61.63732655 61.30958156 56.34960016 61.91658383 64.08317604 58.09200016 61.43861009 61.61303384 59.73808038 58.49035171 58.39489403 58.61561494 58.61349008 59.58121225 61.47916755 61.62848775 60.55108927 63.50670586 63.45769638 63.32212058 63.46240796 60.38416769 62.24308267 62.9540422 64.81219294 62.25482163 45.69674226 45.53859592 42.85000242 43.63214018 46.4520917 46.28663707 41.32420474 41.07156838 41.85189727 41.57924542 50.85499623 50.52413934 48.45557908 49.8333844 51.51998694 51.18738213 48.28365213 47.98981821 45.35830857 46.40930314 48.90186683 48.59585826 50.40001576 50.32028603 50.6104433 49.74438006 50.02953409 49.99818764 51.70603719 51.39485775 51.59845674 50.90275781 51.16854308 51.42337675 39.88965672 37.11030164 37.26076412 36.83812678 36.97850299 39.73066882 40.62786364 37.75668923 37.98074897 37.40846767 37.57597868 40.41701594 38.62173245 36.04175755 36.18593448 35.80813782 35.94918405 38.49728581 39.25261405 36.5671154 36.70991223 36.29528012 36.44377826 39.10135541 39.59557169 39.42851398 44.43622516 42.39654149 42.58373755 42.00934103 42.17999476 44.24064941 39.99018938 39.8071518 38.07980178 37.95576792 42.67570904 40.68321634 40.75058251 38.31105335 38.77842533 41.98365668 43.68784596 41.63536925 41.77661085 41.25524492 41.35717492 43.45496894 38.49143143 38.39573607 45.93003949 46.012256 46.55320437 43.49248811 44.46319168 44.18797679 46.51322875 46.63839269 46.61458317 46.65759447 44.51935041 43.72825478 44.88636108 44.16211439 46.16928872 46.09956154 43.64949752 35.7645035 37.90060734 37.76834314 38.19090165 38.07155635 35.93161552 33.99952183 33.89881011 34.28669844 34.19580596 33.7085731 33.69030455 34.15224387 36.57330501 35.88471627 37.49671414 37.22812114 35.11731947 35.85942669 34.76887722 35.21869351 35.50577974 37.9994161 35.5784527 35.73107604 35.32609422 35.50827329 37.92107017 34.63173308 34.52910111 35.03120477 34.91996677 48.83983341 41.50351782 42.17990395 40.65045595 40.94560336 49.30048235 48.35839784 48.04643378 43.11413773 45.27588873 49.6088654 57.86245443 44.66936008 46.86091314 41.29786756 42.88014507 58.77650476 32.62626848 32.57500817 32.7068885 32.67268222 32.91283373 33.18247079 34.90571202 32.40252501 32.35480168 32.52385527 32.46158524 33.13842733 34.52007483 34.42497129 34.69642804 34.60311741 33.20188458 32.90969063 34.14046003 33.99759831 34.34112461 34.24248391 32.95488754 54.0800299 33.69648964 33.42026184 32.18716179 68.07560051 93.70126342 99.31136029 93.08223512 94.14428477 73.36436411 32.13873428 71.37814104 52.01292338 55.83355874 32.80170871 32.19254099 32.24732859 68.68785048 76.30325254 74.28849293 60.17783895 66.77092619 81.40158968 76.56472592 50.08590941 72.25417549 63.23408903 32.34590291 32.03078159 32.34846059 36.70366906 36.73477648 36.83207587 36.74774206 36.80022908 36.86542208 36.82021688 36.89385404 36.91439242 36.91738579 36.98361096 36.97101992 37.0008086 37.03743957 37.00893461 37.04352253 37.04540131 37.01430257 37.0406219 37.00832158 36.99088227 36.99272996 36.93066641 36.93691614 36.90860767 36.83633882 36.88594115 36.81633841 36.76286387 36.84732254 36.57687939 36.64176047 36.70672298 36.67020628 36.775322 36.78608792 36.81180595 36.92286005 36.89554793 36.95857961 37.05576598 36.9941937 37.08226385 37.13910971 37.05404404 37.14917947 37.15257211 37.0631816 37.14472253 37.09455991 37.02210118 37.07086489 36.98028638 36.93641659 36.94612023 36.83794952 36.82902516 36.80221057 36.69751947 36.74070019 36.48872862 36.61442712 36.62807824 36.66230516 36.8143208 36.77899776 36.86823857 37.03469527 36.94167856 37.09007262 37.24588156 37.08892361 37.29018947 37.39043691 37.18160848 37.4056877 37.41224772 37.19625329 37.39531249 37.30505441 37.13361401 37.26683869 37.12437188 37.00569264 37.07073341 36.90720666 36.84846981 36.85389031 36.70410556 36.69253095 36.45112388 36.63245849 36.61492422 36.69869564 36.92074731 36.83482118 37.00301209 37.27195336 37.08062981 37.36793172 37.66553847 37.32001121 37.75530437 37.98078683 37.48179199 38.00522157 38.00735951 37.50014121 37.93832625 37.74649613 37.39196552 37.66952766 37.41626734 37.18018963 37.32850635 37.07213663 36.9385893 36.99122504 36.76952988 36.71452488 36.4547712 36.69716034 36.64455729 36.78945661 37.11136671 36.96037456 37.23686647 37.68753025 37.35580654 37.86907197 38.55542577 37.81714183 38.81455278 39.67770475 38.19624833 39.71617615 39.49285599 38.18954962 39.15474944 38.62112585 37.91543369 38.43474799 37.92668161 37.5212103 37.77270219 37.35447193 37.13095318 37.22962647 36.89940854 36.79524212 36.48128566 36.79930661 36.71964996 36.92366957 37.37495166 37.17187647 37.5609206 38.29722389 37.82527465 38.63763973 40.60251505 38.87602998 39.91718047 40.53190622 39.55309382 41.14406104 41.21953341 40.04906614 40.64033226 39.97877988 39.515736 39.73211047 38.70627037 38.09662896 38.43573149 37.76234702 37.44518109 37.57382843 37.09578104 36.94254904 36.52739169 36.92699246 36.83023275 37.08516723 37.6704336 37.44962572 37.91762298 38.93547861 38.46622721 39.05439955 39.58477137 39.3293422 41.90515662 42.54933772 42.1115168 44.32808023 43.02786909 41.76282116 41.47236166 39.70061113 38.94200626 39.27273014 38.26880317 37.88103685 38.00139457 37.34537808 37.1544065 36.58509981 37.06051216 36.96039759 37.24846642 37.94394669 37.74174323 38.23711465 39.43524325 39.07391874 39.73857282 40.41687267 40.24157034 43.70872872 44.78616426 44.62215553 48.57081894 46.00614096 44.92028167 43.16763585 40.72744759 39.96601444 40.14594275 38.80856752 38.40515187 38.45991359 37.6193242 37.41311336 36.64659558 37.18904106 37.09324608 37.40212509 38.18469346 38.00687485 38.51161415 39.82992687 39.54050685 40.23537198 40.98443384 40.85569814 44.52217905 45.66371786 45.66915877 51.11500603 48.13968987 47.46152899 44.4842898 41.61646471 40.97366127 40.91961039 39.30655162 38.94183031 38.88854404 37.88570924 37.68754035 36.70849145 37.31008902 37.21969508 37.5451039 38.40301943 38.2405877 38.75928264 40.18834849 39.91959289 40.65622672 41.46727779 41.34311733 44.59074306 45.06543931 45.23155236 52.30691245 49.3442337 49.01044178 45.36887199 42.28379436 41.80931567 41.51603286 39.71751618 39.42229545 39.24668324 38.11984846 37.94729701 36.7669002 37.42209787 37.33832565 37.67641296 38.60640751 38.4547762 38.99340865 40.55231762 40.27560079 41.07412394 42.12687453 41.77812553 44.16840471 43.95862348 44.19373435 52.80433476 50.4133478 50.29143464 45.89379899 42.7291506 42.41997091 41.92167506 40.01387989 39.80334171 39.51104892 38.30466773 38.17067128 36.83758233 37.54594139 37.44783395 37.82260062 38.83686975 38.65747252 39.2619388 40.99870445 40.64068119 41.5050729 42.60534838 42.44879816 43.54535829 42.42303329 42.75689496 49.74719521 56.44970092 55.90797514 52.50822186 47.47158114 47.35468831 46.11811187 42.9615732 42.81337507 42.14862734 40.19984271 40.06941956 39.68341508 38.4381639 38.3425877 36.89350144 37.65374184 37.57328739 37.95040388 39.03831688 38.88742063 39.4949405 41.34145952 41.09273851 41.97958609 42.81609763 42.91783657 42.18267516 39.05286494 39.83868074 56.36374479 57.09199239 57.39916859 52.08838771 47.35028178 47.48699125 46.05932432 43.00538293 42.99175893 42.20382803 40.27927818 40.22751703 39.76813669 38.52323305 38.46337849 36.94364549 37.76546332 37.68141268 38.08579721 39.25626741 39.09061879 39.74489226 41.63857833 41.41773702 42.36479682 41.20362414 42.54953044 35.07197862 51.46995002 51.53017537 54.3153241 52.5282003 53.54203118 51.05556391 46.88844822 47.26785437 45.71983667 42.87081241 42.98720408 42.1117811 40.26802596 40.28381171 39.77234622 38.54975463 38.53340107 36.96328594 37.86398993 37.79276476 38.21448123 39.48939284 39.31454415 40.01041718 41.79260435 41.70385426 42.19345517 37.59254798 40.54233536 27.96307896 50.86150128 51.34093503 52.61026933 50.98198553 52.15173196 49.71187679 46.11548636 46.71275501 45.10098174 42.59109695 42.81841198 41.90391799 40.19870372 40.25464722 39.73078227 38.53563272 38.54914295 36.9338798 37.89302596 37.87939262 38.27182612 39.63406119 39.53707235 40.16227009 41.54302678 41.77702059 41.54507659 30.48180402 35.91285765 24.91063596 50.01640501 50.66697942 51.08993396 49.48318824 50.59322917 48.38831517 45.30504153 45.90742101 44.42895665 42.23161339 42.50214815 41.62096996 40.06780269 40.1718719 39.62289161 38.4611254 38.52299657 36.8693879 37.8376709 37.88473512 38.22361717 39.59500789 39.64110961 40.09703494 40.9524299 41.41712926 40.42550623 25.68135532 28.79440394 24.30714735 48.92160935 49.76821548 49.6748232 48.24280254 49.14251867 47.30594919 44.64541978 45.12061521 43.87956775 41.91193713 42.14701391 41.34872131 39.88117048 40.02528493 39.45549125 38.33504288 38.43337056 36.77828473 37.74344866 37.81710752 38.12461482 39.43022858 39.55958644 39.87109159 40.25080053 40.77715024 39.34637161 23.69703284 25.06139844 23.53744346 47.53217721 48.59886778 48.35462305 47.32189222 47.98512501 46.52242124 44.14595775 44.51632162 43.43782259 41.59458461 41.83289782 41.0622466 39.66529657 39.8290868 39.257308 38.17741083 38.29794927 36.66655632 37.62206533 37.71532812 37.99457517 39.21530802 39.38049342 39.58880413 39.5257619 40.0708391 38.36918959 22.30083234 23.31372036 22.62227148 46.12171615 47.17156433 47.10821892 46.49877256 47.1110504 45.81760295 43.67887524 44.02644423 43.01984696 41.28105939 41.51546934 40.77456318 39.43751185 39.60900325 39.04497014 38.00133132 38.13473048 36.53920671 37.48041067 37.58831213 37.84124538 38.96475646 39.15557849 39.26746892 38.80812134 39.34459574 37.45289046 21.20930416 22.00211918 21.91856422 44.78854263 45.78159717 45.93429528 45.72465558 46.30099946 45.15326387 43.2374698 43.56637823 42.6247684 40.97841777 41.20423691 40.49378704 39.20731839 39.37993559 38.82792709 37.81547122 37.95553078 36.40029076 37.32352522 37.44243951 37.67033075 38.68910406 38.89779117 38.9166976 38.11636411 38.63235168 36.60426008 20.36107071 20.97680417 21.34209716 43.52197219 44.46602972 44.82115832 44.99127287 45.53781179 44.5225759 42.81618312 43.13044446 42.2481479 40.68863626 40.90478338 40.22325446 38.97996224 39.15007994 38.61165389 37.62568611 37.76823924 36.25292488 37.1550801 37.28236285 37.48601057 38.39454938 38.61707818 38.54909043 37.45897394 37.94861827 35.82704932 19.70112385 20.18005809 20.83505616 42.31154383 43.21452152 43.75359492 44.29081408 44.81337434 43.91948072 42.41130068 42.71354908 41.88618422 40.4106195 40.61811057 39.96315935 38.75805418 38.92392142 38.39917637 37.43566577 37.57811494 36.0996062 36.97772283 37.11148191 37.29109611 38.0845578 38.31823882 38.17677609 36.83968907 37.30054944 35.11996152 19.19986889 19.56215999 20.37382434 41.1486846 42.01660827 42.72817523 43.61708407 44.1200706 43.33875414 42.02016049 42.31232998 41.53634051 40.14248576 40.34273729 39.7123286 38.54252803 38.70356995 38.19192212 37.24766911 37.3884328 35.94216464 36.79313016 36.93219008 37.08731849 37.76596151 38.00541487 37.80436684 36.25924006 36.69096622 34.47891379 18.83179565 19.09659092 19.94174216 40.02496764 40.86410844 41.73995299 42.96550381 43.45228028 42.77625505 41.6405002 41.92425633 41.19666729 39.88260352 40.07680248 39.46940164 38.33334629 38.48965611 37.9902805 37.0629267 37.20116403 35.78186042 36.60245785 36.74597852 36.87619252 37.44502295 37.68575007 37.43544567 35.71742489 36.12024801 33.89962706 18.57521011 18.75756429 19.53401673 38.94179393 39.75025536 40.78110989 42.33194624 42.80545121 42.22875782 41.2704711 41.54716287 40.86560261 39.62974775 39.81877994 39.23326161 38.13010441 38.28200449 37.794144 36.88203438 37.01734563 35.6194808 36.40675562 36.55394859 36.65935422 37.12632005 37.36505037 37.07247034 35.21196273 35.58782418 33.37502484 18.41503524 18.52694787 19.15738358 37.89808979 38.67717225 39.84928414 41.71540588 42.1762799 41.69414725 40.90848219 41.17928161 40.54177411 39.38289273 39.56751377 39.00295634 37.93225584 38.08016356 37.60315801 36.70517706 36.83745401 35.45553794 36.20715799 36.35715731 36.43858289 36.81114503 37.04714344 36.71731742 34.73958256 35.09089922 32.89753903 18.33413302 18.38770217 18.81556933 36.89212607 37.64304885 38.94624674 41.11530603 41.56356299 41.17048596 40.55315619 40.8190711 40.22395956 39.14113037 39.3220071 38.77764497 37.73922875 37.8835691 37.41687724 36.53231542 36.66160001 35.29044531 36.00487286 36.15678237 36.21553751 36.50064104 36.7330334 36.37106179 34.29795368 34.62641257 32.46215311 18.32011995 18.32566571 18.51145246 35.9222672 36.64632966 38.0707392 40.53029028 40.96783875 40.65658078 40.20331674 40.46522892 39.91109639 38.9036625 39.08139632 38.55659007 37.55048301 37.69166701 37.23484927 36.36330359 36.48972139 35.12455959 35.80099539 35.95400323 35.99155923 36.19575512 36.42386928 36.03431518 33.88510475 34.19217147 32.06485625 18.35806619 18.3248472 18.25126902 34.98711032 35.6853499 37.22108728 39.95636886 40.38587304 40.15180229 39.8579696 40.11659522 39.60226134 38.66976574 38.84488468 38.33911871 37.36549473 37.50390829 37.05661357 36.19792193 36.32163788 34.95823882 35.59648501 35.74988294 35.76776678 35.89720964 36.12049799 35.70736455 33.49855095 33.78616693 31.7007682 18.44877988 18.37434928 18.03341348 34.08566509 34.75891695 36.39657025 39.39102131 39.81422028 39.65656349 39.51640325 39.77225011 39.2967746 38.43885768 38.61178445 38.12467737 37.18380557 37.31978565 36.88175446 36.03592366 36.15712495 34.7918116 35.39215648 35.54534992 35.54507285 35.6054361 35.8236243 35.39019375 33.1353792 33.40573836 31.36481607 18.58676013 18.47696642 17.85950181 33.217417 33.86631452 35.59678077 38.83429411 39.25108221 39.16893898 39.178146 39.43154197 38.99414129 38.21044883 38.38154245 37.91278662 37.00498485 37.13885201 36.70986771 35.87702132 35.99592729 34.62563215 35.18866114 35.34117534 35.32408931 35.32054354 35.53357334 35.08255349 32.79258945 33.04803141 31.05205637 18.75941025 18.6233678 17.73116744 32.38272161 33.00773635 34.8220659 38.28637263 38.6965467 38.68778856 38.84300548 39.09408203 38.69410807 37.98418656 38.15369911 37.70308439 36.82868204 36.96069094 36.54062084 35.72100678 35.8377629 34.46000109 34.98647024 35.13796964 35.10520886 35.04232314 35.25039091 34.78380288 32.4664319 32.71004906 30.75678339 18.95439877 18.79969898 17.65137316 31.58181988 32.18490936 34.07248385 37.74754292 38.15129807 38.21286612 38.51076996 38.75971615 38.39642106 37.75974777 37.92792483 37.49523792 36.65456981 36.78496584 36.37370071 35.56764422 35.68243429 34.29508323 34.78575662 34.93618597 34.88842817 34.76979056 34.97395166 34.49229471 32.15240628 32.38897095 30.47364024 19.15988648 18.99475301 17.61704122 30.81219413 31.40113777 33.34499901 37.21548579 37.61698885 37.74179284 38.18000051 38.42852333 38.09992456 37.53649116 37.70394088 37.28869353 36.48224229 36.61136435 36.20873365 35.41663963 35.52969371 34.12117058 34.5744316 34.7368811 34.66042582 34.48499592 34.70583669 34.18852297 31.82929413 32.08547031 30.18348665 19.38614745 19.19830735 17.62887654 30.02518003 30.66139994 32.59298937 36.65423126 37.09934505 37.24262354 37.82783915 38.1030521 37.78425719 37.29962146 37.48242324 37.07003593 36.30123501 36.44001083 36.03591717 35.25951454 35.37951388 44.44245375 44.22849516 43.22389544 46.92128745 48.25570514 49.4088614 43.24556655 44.03524169 43.59776936 45.66199669 45.60261822 44.29610076 50.87891192 52.85295008 53.31755416 49.76651751 50.73879147 48.79638314 45.2821785 45.4211066 44.6568861 52.76210831 54.39254843 54.6207469 53.44200756 53.78743111 51.79362743 44.26848307 44.48384002 44.35774603 53.52287641 54.52300715 54.57125824 54.2146904 54.28701066 53.1335126 42.86437529 43.17009237 43.83231743 42.00750317 40.08936068 40.37739203 50.6125291 49.81645952 44.99376749 53.79831677 56.56293864 56.65304368 54.60368561 54.64945824 53.68955808 40.02485454 40.58417704 42.9276867 51.86663691 42.44134935 43.2529987 39.47158711 39.52560899 43.27721782 57.29719972 57.16992274 54.481565 53.94421154 56.73882901 56.72523166 56.67653439 56.73230162 53.95072127 42.8425432 40.9626179 40.20588102 51.09169007 52.14722705 52.25416525 39.7253334 40.78475092 41.17671983 52.81830051 50.32982402 41.96748978 42.11830675 42.73372301 39.94538106 41.1402448 40.84496979 50.59389282 51.30938577 51.88769687 45.13163237 45.84804021 45.33527478 44.58831816 43.34704312 44.8915803 41.78150842 42.75956124 43.43764953 41.40228113 42.07468991 41.22884336 40.72076166 40.57519169 39.87558946 43.14641528 41.23563593 41.47290204 40.86184432 41.1510562 43.03968028 55.72055675 54.24191187 53.93230839 57.81740578 57.72303014 57.05875265 47.19821456 46.31365698 48.973799 43.89930531 45.29016009 45.81497767 44.09473223 44.71325745 43.40576714 41.22862689 41.10649061 40.34256209 43.8371227 41.82637355 42.0248254 41.54627921 41.75809293 43.77373606 45.59404736 45.65371925 44.57603584 46.50146387 46.4760253 46.3722026 46.9764533 46.9058925 47.1692396 54.52280099 52.67680553 52.85588552 51.59816931 51.47824224 54.00007586 48.84207704 48.35016487 51.31557315 45.51824609 47.08846327 47.41239552 46.2911933 46.71224747 45.1719185 41.71087318 41.57050899 40.75134227 44.02628817 42.33395622 42.50184726 42.08964493 42.27444026 44.02797889 44.8166822 45.00578546 44.55238623 43.21121317 44.36348147 44.20614939 45.25274848 45.10651933 44.54771026 55.87848368 54.24455384 54.52229641 50.87831033 51.65099041 55.34440952 42.39324837 42.20415291 41.1814886 43.90215154 42.71795759 42.85775841 42.55192448 42.67419779 43.93018144 43.62674846 43.87770164 44.10749974 38.89764054 41.5330294 41.4784104 42.66370306 42.4754346 40.21618251 39.7236201 39.61438691 39.75935981 56.6473456 53.97918593 54.98459563 56.03448847 56.1487637 56.54552895 42.88390823 42.64717443 41.58765905 43.55799129 43.05890379 43.25523185 42.90123294 43.02871484 43.61450421 41.94060115 42.30236791 43.50255159 32.59101505 34.36029147 34.22123214 36.9853657 36.84457789 34.98814249 28.47032277 33.15416937 41.54842915 53.83280659 47.56066567 42.4873501 43.79040579 44.38630048 52.78195142 47.92895237 49.94796256 49.13774555 51.29301456 51.33275854 49.1617138 44.11590328 44.61466095 44.0253262 48.5749988 48.0089623 46.79389136 56.70866415 57.88477104 57.87464984 52.45933183 53.03286226 51.95509501 46.54152013 47.84037924 46.37633714 51.06466195 49.72795047 49.08670018 53.05203232 52.57040925 54.68311263 47.73999172 46.14788485 46.13721784 46.12796477 46.14532065 47.84137644 44.19421076 45.55549831 45.14806977 48.59034437 48.74093937 49.19542739 46.65739279 47.15203407 47.73152356 49.46600688 50.94695754 51.22682909 49.3440114 49.78425497 49.02335403 54.21116693 51.8867224 51.7388478 53.61644046 53.33931744 55.19270212 52.05635731 52.67980471 50.27185256 56.06317047 55.61516149 55.50751889 56.34079884 56.29396224 55.63602292 56.23149546 53.88336685 53.46712724 55.4168232 55.19888694 56.56407487 48.97440182 51.02659895 51.829436 45.13741648 45.52589624 45.38905088 46.26391265 46.15103206 46.02403874 44.65980777 45.46190192 45.56552307 45.73801711 45.24250874 45.38490497 43.29736565 43.44077858 44.21686178 47.13878004 46.00741149 46.49479689 45.53038894 45.67675463 46.07731572 54.89749733 49.61902346 50.6115239 52.97788362 53.08147209 54.76572454 54.18550952 54.3532576 52.61776366 56.0761109 56.52026544 56.52148 55.27949677 55.21959721 56.17962991 55.44473912 56.40938958 56.38037407 56.52193252 56.52099375 55.63708287 52.03377603 53.87618112 54.1247097 41.14919118 43.02565297 42.84504474 44.04649507 43.88506377 42.37647696 44.41216414 44.55243392 44.75221438 41.67876239 40.37829284 40.52060955 37.50363349 37.6491922 39.52430202 43.84268249 43.00809798 43.15599755 40.66552068 40.80901758 42.08135753 56.40777976 55.78638892 55.91886235 54.73945259 54.95082468 56.13164514 35.46108941 37.31483956 37.13897824 41.40327106 41.11851903 37.67863797 43.87014545 43.26617744 43.54023363 36.0764876 33.86849104 33.96960197 39.09993552 37.24089652 37.37084562 34.13507449 34.44553093 36.70727764 56.91516783 56.10020741 56.55394575 55.2579613 55.91979385 56.86301118 39.47353798 40.21138964 39.98061788 41.00121196 33.29096366 32.72122945 34.11491838 33.99949767 32.41825082 43.16265116 41.41453891 41.80282492 45.57886674 46.37782639 50.34059169 74.33378165 71.74730877 69.01864467 48.09651158 43.7808558 44.67869132 40.04603238 39.82655954 39.24827901 41.95304234 40.37899076 40.75531454 39.77599629 40.24245366 41.7229177 43.35433625 42.97070668 42.23060165 45.07879483 43.61655809 44.29974664 42.66728546 43.37115968 44.61009513 48.27114219 52.20844345 49.56222344 45.07647159 44.92045165 43.83400645 48.36605727 45.88690915 46.09263809 45.55026671 45.81159007 48.38143097 50.14972633 49.4957706 52.3812317 46.5678017 48.1616245 48.3431804 47.69974078 47.94299909 46.35376946 48.91807213 41.16036211 42.67043263 45.2713725 45.67803579 48.75933922 57.06932485 56.61478085 50.53219502 57.2361126 57.16577302 57.29642774 56.67634002 57.04146439 57.164276 47.49071295 45.11167713 45.45834083 44.48582207 44.98296623 47.28524801 43.02036881 43.98072501 43.69037798 46.5073982 47.32113592 46.1267414 56.48836115 54.46822653 51.542407 46.23453636 44.69369741 43.45107805 48.37842084 47.72794385 48.90374475 44.22265502 44.7173324 46.08017964 47.36064145 44.05114129 44.6017037 40.9775066 41.30811753 44.56110559 54.44161644 54.49031118 53.47148188 56.50264761 55.63913598 55.33345423 55.6458049 55.64034397 56.51390199 56.36695765 55.31695048 55.29336442 55.33710277 55.32605511 56.38609129 53.22068672 54.34048628 54.39709609 39.40166992 39.34626968 39.80373976 41.18933718 41.88866028 49.95712255 44.33015173 39.65275211 40.09610763 41.4255259 42.37314487 42.64571149 41.84565281 42.16295996 41.31222579 44.28030955 42.58827086 42.12552165 43.51705403 43.75178295 44.19665926 41.57645603 42.5486965 42.36786074 42.66778265 42.66468859 41.5712666 49.71806225 52.50101289 49.40470738 51.14223365 47.3160911 45.67639541 55.22425014 53.7184175 57.54967156 46.06951708 47.47936719 49.13589368 56.50501838 56.3457235 56.74760344 57.01492396 56.92891753 56.7837957 52.2382434 52.24839664 54.2841629 54.17365392 52.03408489 52.18702825 53.62301112 53.9578616 55.78571685 41.33342962 43.31352888 42.8369839 46.56122208 46.07698518 42.27056557 42.42982106 42.21703647 41.70995722 55.4695833 51.92015209 52.26994433 41.90774971 41.66198886 39.08475319 43.42129361 42.76697261 42.9293425 42.45826555 42.62844409 43.30981066 51.92148928 47.29113998 48.27988728 43.35189604 44.59820818 51.25092887 35.86238106 35.68481165 34.00621998 41.25764054 39.90120746 40.02547969 38.84444859 39.37324998 41.06802246 41.87196505 40.68572201 40.87518987 40.29158363 40.47134045 41.71586179 34.41892657 36.16107836 36.02269184 50.74660665 50.1654316 48.22338156 53.8656027 54.42799168 57.16261211 48.9469438 51.28085612 50.90875067 46.09704309 45.32171248 44.66262829 47.88777242 46.31254892 47.39049077 44.60674403 45.22261132 47.0340376 55.19554199 52.79215317 53.29737748 49.73918785 50.33835719 52.1529129 46.33229387 47.46758185 46.78958637 56.51562261 56.8160187 55.21275727 54.06427214 55.69900586 56.13360298 48.03835546 48.57842615 48.42079866 47.81084005 47.31965517 47.84744755 50.4720704 50.83663022 49.43630708 49.14954511 49.92695398 50.34120403 52.87071193 52.70612934 54.71595907 55.01805156 53.11136049 53.01798915 56.07876254 55.97923926 56.02047722 53.602229 54.82929732 54.99118609 54.43012167 54.64917295 53.40427827 54.26289201 55.3928333 55.50054307 55.13845473 55.27309784 54.12196876 55.68759022 56.23475746 56.16302851 54.57835253 54.22118382 56.35817627 51.51693427 52.74178514 53.07340426 51.99237217 52.37933256 51.17383488 52.69742529 53.94992063 54.20872986 53.39330581 53.67379703 52.4308562 56.61434489 55.15585216 54.84049399 44.41974397 44.55727323 45.17070663 44.81617559 44.14293845 44.28219016 46.55649928 46.67125142 46.86874565 46.58475604 46.32280109 46.44066095 48.17379354 49.21079675 55.53202512 55.08197396 53.58820135 53.71249304 39.49298217 39.65132394 40.99849169 40.49590517 39.03042843 39.28319032 41.86929031 42.06936171 43.15833698 42.74868382 41.53523815 41.69331752 44.88437914 52.10350005 52.45739613 53.08244295 52.63064529 45.4672371 56.19358086 55.1472947 55.32893028 42.81987904 40.59746132 40.71070096 41.49565714 41.10028838 41.0127951 38.48443886 38.33436419 36.85038326 42.44071108 41.45543266 41.63700432 41.07252575 41.26456141 42.30234071 42.95321696 42.14096007 42.30049163 41.81066613 41.9784148 42.83039538 37.28482515 38.76343576 38.62658264 39.39458914 39.62929815 39.47680717 36.47152777 36.60598728 38.40246911 37.96668393 36.20452033 36.3539649 47.05644005 45.97807579 39.751115 54.03344924 50.81114965 51.52618485 49.20285107 50.02414211 53.58062389 40.59528944 38.31298184 38.70223538 37.57559564 38.14195945 40.32372549 41.36720579 41.94548844 41.96618085 45.31583229 44.11342618 41.30215239 42.63859856 49.11844616 46.83556979 41.96716815 42.85729626 47.21067859 43.27751096 40.35546136 40.68851001 41.20771918 40.88900083 41.03778786 39.90532912 41.88774649 41.02605407 42.93006987 42.88068324 42.06331195 42.78930057 43.38392282 43.34595845 43.27521639 43.31281464 42.89418347 39.2159906 39.64376492 41.98089372 36.13913526 35.39976536 35.23649661 37.86668476 37.32412708 42.95548248 56.7358232 57.10824908 56.29280268 54.03624658 55.80250269 55.50257628 56.64409545 56.01307781 54.18282616 55.40699404 53.33546534 53.80672925 52.18694074 52.77924065 55.11688547 43.92035613 48.94399861 48.01326906 57.42898484 57.55409947 57.61504957 57.39292651 57.48367512 57.40394777 54.0710233 57.02763103 56.82475037 43.10333511 43.91981861 44.45220298 43.32117723 43.95620571 42.9753577 46.63695119 44.32248049 43.78501085 45.27727883 45.69302379 46.94368897 43.17796198 44.15036748 43.82273103 44.4451825 44.33301534 43.268346 55.03208342 54.60428398 55.94052219 57.11697031 57.58923828 57.46137015 52.36099431 52.5112521 54.43486266 45.25341729 48.97006208 48.70141024 49.79873115 49.37429752 45.37349169 53.96165799 51.38541933 51.38044574 44.66921958 44.51802248 43.3307406 44.97649503 44.86659619 44.97908974 44.63570742 44.75204618 44.89175789 45.29939617 45.30380524 45.40776124 45.08956832 45.19821592 45.22117707 44.38163536 44.96615268 44.81714889 43.85796273 43.35857599 43.49810366 43.07026559 43.21855335 43.75288157 40.08338015 42.28939678 42.08600163 34.81096215 34.54507173 32.70821457 37.86918534 36.35925627 36.55906736 36.04362591 36.19129992 37.72897272 56.75941528 43.85524613 43.57861908 46.96159663 45.93572503 56.11455725 53.35615319 47.20154325 47.63511179 57.62662783 57.81256129 56.48652684 50.98093338 50.34259505 51.99130902 48.2489104 49.1403208 49.67848502 48.02428775 48.59898785 47.76820394 50.02901403 51.14055847 51.58167999 50.18722578 50.67987797 49.60892546 54.35494835 52.07961073 51.53806727 52.20167332 52.04506794 54.30167644 55.06618853 53.08736681 52.95956398 45.78750083 45.65799439 45.32111085 45.58938064 45.70139388 45.79431431 45.50782437 45.60607933 45.52113979 40.70861246 42.31525842 42.15402241 42.63007905 42.47020598 40.86168406 44.33516852 43.58092646 43.72286498 46.00007216 50.27103993 50.08881741 50.53304714 50.40210372 46.09702112 54.82906819 53.15388287 53.2424569 56.51541291 56.51763226 56.10948581 55.17293069 56.05858703 56.06690033 56.0260345 56.04618545 55.14439648 56.45544515 56.43664648 55.45670761 54.71707839 55.75369112 55.81830426 55.59593798 55.68030541 54.62503355 55.00806647 55.9658053 56.00047403 55.87512382 55.92504359 54.95208568 55.60338304 56.49250823 56.48005035 43.38276533 43.20509512 41.29975018 44.25823047 43.89788924 44.02692737 43.63334783 43.76676743 44.16115367 44.62900159 44.39807959 44.51763321 44.15318765 44.27666187 44.53880676 42.25667975 43.72134279 43.55455386 40.09376029 40.23349522 41.54431085 38.74670103 38.61038951 36.35183704 39.68027255 37.81632621 38.03316292 42.68748767 42.85759319 43.71696734 40.0450445 41.66087592 41.44185883 42.00030038 41.82918486 40.19123752 36.70431053 39.03425123 38.89269579 39.32602393 39.18109329 36.83498457 42.21530723 40.95351969 41.09710316 55.49378121 55.6497623 56.3630933 48.62778103 53.85650393 53.52744904 54.50427356 54.19099791 50.76505793 39.68427205 42.53129249 41.12853097 33.71760872 33.78614764 35.9423914 36.98455831 37.1142452 38.96183915 37.05292699 35.00509843 35.61101066 33.93055655 34.36975043 38.80882799 38.66601661 35.88996447 36.25961552 35.20840703 35.66905739 38.41616321 37.32473968 35.77771967 35.9137394 35.50690665 35.66390567 37.18414748 40.81098066 42.60409594 42.01606811 44.05485083 43.52441425 41.32880286 50.85717383 47.26190207 47.83973798 42.91945928 49.05242038 47.94093882 50.74580391 55.54615114 42.56628616 91.16923948 105.4459129 50.90504907 53.67826294 59.78434647 40.00552261 39.84439123 39.69869799 40.3514219 40.00598909 39.86298753 50.19572602 48.23799175 47.12522753 46.99634179 48.68632989 49.99934531 50.69964338 53.31589718 51.15491452 42.06254254 40.33768334 40.48506039 40.37655647 40.33444376 41.22658485 45.28142323 41.76842165 42.27653843 44.20051254 39.90815966 40.4270248 39.47392847 39.61691031 42.17828198 40.1642393 39.36352559 39.42115619 39.73432444 41.81079176 40.91089785 45.6794139 43.21316217 39.97060156 39.64062329 39.89047321 39.79348383 40.37132132 40.04135008 39.58220297 53.66744423 56.12660152 57.96766954 53.53062114 55.32751966 52.92362142 58.88664343 60.33509596 57.14693351 49.50260861 51.08179744 52.6628123 48.86292356 50.08829928 48.86509826 54.57410258 51.8676533 50.7390874 56.59488739 55.92642972 55.55296606 57.28708783 57.14688728 57.08960121 48.6036095 48.56449383 45.66111499 54.31390041 52.25748049 52.29093713 51.51186526 51.77263689 54.09259121 44.29206792 43.83511005 41.3770763 50.95066589 47.86523387 48.29887238 46.81333537 47.35590767 50.62211425 48.06073837 43.93181304 44.42359296 43.24031794 43.49272793 47.53797737 49.70346822 45.76050645 46.25321652 44.90787171 45.3157084 49.2995925 42.0896567 42.12836796 42.08024651 39.67721325 39.81921534 43.1661973 41.55719722 39.75299512 39.88393222 39.66442508 39.67895523 40.92026735 38.44382191 37.1864823 37.35239778 36.77757372 36.99245378 38.30533624 33.7155108 35.43354952 35.13805146 36.43825073 36.30287809 34.53818209 38.98105485 37.7838841 37.92131519 37.5024216 37.64385324 38.86003303 55.00022996 54.97053128 56.32518585 51.6540983 53.26050052 53.09746154 53.40111763 53.36556503 51.84140349 50.70188106 52.23825102 51.83242353 52.87632063 52.59007267 50.96275708 57.16847126 54.78319518 54.9701569 52.20337869 52.99414531 53.10144634 52.57779709 52.80431934 52.14552325 52.21432445 53.34204261 53.38848173 53.16900327 53.26432803 52.25307737 51.90582988 52.3642982 54.76133118 49.55228538 50.66175727 50.25004959 51.42879189 51.03300861 49.83442422 55.55700828 57.11449726 57.37023736 54.65458737 55.185618 53.62711056 59.36192537 57.32223437 56.780366 58.16611618 57.82701691 59.8219767 47.99816219 47.10044068 47.3763276 45.78693658 46.41993557 47.69487485 48.85182975 48.22798639 48.45066428 47.74527988 47.95163333 48.64861607 45.96357542 44.04204111 44.2677592 43.60444964 43.82177504 45.76572031 46.80639025 44.99798275 45.3233493 44.49709467 44.73654892 46.58052102 51.09426741 51.15813549 51.40015058 50.66902662 50.914291 50.91546681 51.76794388 52.11320148 52.3463009 51.6405266 51.87826286 51.60850788 49.61826145 49.19379702 49.43565931 48.70612093 48.94313166 49.42599742 50.36675159 50.17401804 50.42116246 49.68211414 49.92624553 50.18122005 54.60203726 52.53726359 52.3694976 53.0184307 53.11124609 55.06071873 45.19107381 43.19743424 43.39587235 42.79376748 42.98971476 45.00099823 44.47383339 43.07146871 42.88165599 43.71107222 43.38835663 44.27499531 46.28799946 43.01250705 43.09321635 42.83595442 42.91601816 45.80981953 41.13984782 39.80840148 39.94832734 38.33087654 38.69990907 40.28330364 38.19919961 40.49250281 40.1947061 41.18174046 40.85000748 38.83451311 43.2837953 42.28616567 42.49923659 41.2412536 41.38621067 42.6151405 37.21776228 39.625971 39.47489475 39.96846182 39.78724246 37.3627885 40.58437918 40.56738888 42.29158596 41.2072304 40.84742197 40.69628927 40.37669267 39.9105203 39.37427804 35.59591775 33.59928167 33.65439483 38.54118614 36.72794779 36.85919173 35.84424757 36.0782967 37.8133926 36.77133407 35.12284836 35.39394724 33.7627622 34.90026017 36.26179642 47.7342805 49.37832108 64.38828855 41.20081421 43.2773512 42.73454306 56.77115825 52.64677507 43.55341938 41.5190264 40.74886642 40.91569071 39.71786872 40.13749593 40.75532198 39.189605 39.6428326 39.30384045 50.58580604 50.50011353 52.83153702 47.18044246 48.75163929 48.84626127 48.50019397 48.63575115 47.06426833 39.55670576 39.74646972 41.51809792 39.96333057 39.36253286 39.39413005 39.43461752 39.38264361 39.69168499 56.67028181 55.66064253 55.64938124 55.69397817 55.67106667 56.50420224 44.84798658 45.80332954 46.20816887 45.21714384 45.73074632 44.62792722 50.48347155 46.76857209 46.78134602 47.76922368 50.47817684 57.43899157 45.20318328 46.21238788 45.90183541 46.51616258 46.47243033 45.23029655 42.10505595 41.89302693 41.38954703 43.14476579 42.38971851 42.56115969 50.21571523 50.75409107 50.29586443 54.2810903 52.31682317 51.57552926 53.77090038 53.00169956 55.07904829 46.6661551 46.57418702 46.64678157 46.00316624 46.32968577 46.3854737 46.20274791 46.26895159 45.96598883 46.1095352 46.52536399 46.56379451 46.4366372 46.48313839 46.08907585 47.04872819 46.83170547 46.75197058 43.72227402 40.98169508 41.43883551 40.17126784 40.50333612 43.09839251 40.06442437 39.57192376 39.57755976 52.57320246 55.04154514 54.78193355 55.48269649 55.26947231 53.08721862 39.47731983 38.32500218 38.46057014 38.05754637 38.19164191 39.35957972 34.87646918 36.70959314 36.57607338 57.53442986 55.14432233 54.44840674 56.26348532 55.69164298 57.93872542 52.31536746 53.57822761 54.11562243 45.82736018 46.05337578 46.1307378 45.8846754 45.97115623 45.77313834 45.85469294 46.0338533 45.91257395 44.9662671 45.10365233 45.62788517 42.73382307 44.21340529 44.05016427 44.56878825 44.3842042 42.93634061 43.83959658 44.9846295 44.77173864 45.36732878 45.18683072 44.17261612 46.18207028 45.81784226 45.95243369 37.74840165 37.52127565 35.74104054 39.9761475 38.90879392 39.07416507 38.60116023 38.74945036 39.85043131 41.00879225 40.72423841 39.5059867 45.91584715 43.36119778 43.28903549 42.06606502 42.48626132 45.50230585 40.26523278 42.40344115 42.01743261 43.52791428 43.08561998 40.47361699 49.08314395 46.4996313 46.4089338 46.25504302 46.85994464 47.44825475 47.90303783 46.96365242 46.3287061 42.85536901 43.42910178 46.86260252 40.22044002 40.70250464 40.51032584 41.42221201 41.09554113 40.11315066 42.79216571 43.1532794 43.0427041 43.44497876 43.39446389 42.90787058 44.78896709 43.89453918 44.3777845 52.01114128 49.61598411 49.88007395 48.76357677 49.14882076 51.73601181 41.83338926 45.41565912 44.87012756 48.17448314 48.89040733 48.3476079 49.84336765 49.36132041 48.5224834 52.97740068 50.89774791 51.44654433 42.03275079 43.57614279 43.41907869 43.8907717 43.7329866 42.20119927 45.28299451 44.69348682 44.83002484 43.86283672 44.00387099 44.70033639 41.36454407 42.94667187 42.78716493 43.26228 43.10424395 41.52967022 45.50989716 46.2580585 46.11816413 46.53463342 46.39729206 45.67788347 46.95557919 46.78393895 46.8960774 46.08017036 46.2029794 46.49099102 44.82325332 45.68434655 45.53429653 45.97552728 45.8330419 45.00787444 53.33502666 53.45662054 55.00926872 46.7010835 50.96143665 50.7130044 51.53788272 51.27101546 47.20674702 40.47191659 39.52938797 39.66308262 39.23543918 39.3881981 40.35792493 36.65249804 38.16441592 37.96988224 39.03066795 38.89793144 37.41739969 40.91170272 40.04306548 40.16820357 39.79161416 39.91846547 40.80869612 42.28013252 42.04784796 41.28602944 53.96096215 45.30228098 46.04827269 44.11490706 44.40154996 51.5747313 40.11715315 40.18853003 42.21375421 40.27529273 39.87524014 39.95743513 39.79911479 39.82110147 40.01632086 44.34418736 45.09663826 44.81024902 45.69222537 45.46810004 44.59440456 47.85979242 46.24576171 46.80189817 33.89496689 33.48010559 33.61556083 32.96998543 33.31664258 33.73320196 38.77463339 34.07108822 33.78806435 88.10110962 87.60602744 56.83666718 80.82453943 98.74400764 98.16168212 96.92286921 98.53698546 79.09155079 36.86606666 36.86760747 36.95560774 36.87003023 36.87392389 36.95720774 36.8779005 36.88422333 36.96098826 36.89283248 36.90399666 36.96741025 36.91781974 36.93403447 36.97721421 36.95190036 36.97071759 36.98870127 36.98829955 37.00126749 36.99883137 37.00642028 37.00678775 37.00130694 37.00264872 36.99059697 36.99465203 36.97496965 36.9567032 36.98437171 36.9394154 36.92354966 36.97366923 36.90975148 36.89848213 36.96535678 36.89017444 36.88208968 36.96006673 36.87636825 36.87230206 36.9570348 36.68685677 36.68820471 36.77582383 36.69106441 36.69553031 36.78066662 36.70164832 36.69719866 36.81287357 36.7775573 36.78345346 36.82099802 36.80613772 36.81665813 36.84672828 36.85365614 36.86960705 36.88818561 36.91924403 36.93861257 36.94262848 36.98789731 36.99782823 36.99236783 37.02039019 37.02292814 37.01512773 37.01789754 37.01093214 37.00575023 36.97915403 36.96432724 36.96415467 36.91322236 36.89572953 36.91023901 36.85191907 36.83837259 36.86491435 36.75061646 36.73484083 36.80549468 36.7204004 36.70915322 36.78906789 36.70118816 36.69711538 36.77927863 36.51220412 36.51577788 36.60092364 36.52248257 36.53242436 36.61262236 36.54573001 36.5618474 36.66028078 36.63626668 36.64907548 36.67976977 36.70117099 36.72402174 36.74194123 36.80705845 36.83951537 36.83876087 36.92922947 36.95809957 36.94780029 37.03053699 37.04894836 37.0299085 37.08384301 37.08828074 37.06500688 37.08024587 37.06988785 37.04849645 37.02112671 36.99823751 36.98366628 36.91841689 36.88860988 36.88428599 36.79853202 36.77013971 36.78077973 36.66960397 36.61740256 36.67207017 36.58512929 36.56154745 36.63246266 36.5446199 36.53474139 36.61007163 36.34206899 36.34936099 36.43085349 36.36220808 36.38169987 36.45527173 36.40969399 36.45737529 36.53187548 36.52765472 36.55354422 36.57263525 36.65866752 36.70095814 36.69985706 36.83097153 36.87605663 36.86021306 37.01012191 37.05285115 37.01956211 37.1646772 37.19352966 37.1446138 37.25084086 37.2568197 37.19989223 37.2447907 37.22571406 37.17482368 37.14950682 37.11537394 37.07561528 36.99562307 36.95214365 36.92860939 36.8183009 36.77503623 36.76834905 36.65687558 36.54668145 36.57614727 36.48513363 36.43929758 36.49665576 36.40653823 36.38584232 36.45290381 36.17908537 36.19249705 36.26893173 36.2151929 36.24939773 36.31291459 36.30110491 36.39811007 36.43652256 36.46260744 36.51050818 36.5157979 36.67350475 36.73359533 36.72122866 36.92602631 36.99398871 36.95567504 37.206414 37.27787367 37.20477981 37.47733761 37.52922484 37.42061289 37.6413977 37.6464646 37.52071204 37.61679406 37.56753843 37.47213395 37.43455662 37.37558764 37.29365898 37.17894842 37.11108631 37.05922033 36.91086772 36.8477351 36.82250358 36.7025355 36.54252199 36.53779558 36.43281781 36.35071406 36.39017824 36.29211149 36.25269624 36.31233143 36.02384492 36.04627714 36.11748324 36.08374267 36.13997543 36.19159803 36.22434534 36.38349839 36.39016975 36.45004331 36.51578272 36.51175539 36.7378584 36.82154996 36.79334045 37.10678514 37.21497421 37.14728504 37.5846082 37.72352089 37.58310429 38.17165727 38.30856013 38.05437026 38.5863949 38.59153453 38.28207415 38.41627219 38.3058238 38.12078932 37.99588593 37.87688818 37.72176576 37.52445402 37.41167118 37.32152887 37.09715235 37.00153406 36.95475565 36.80472908 36.57809719 36.55469775 36.43284066 36.30350951 36.32161871 36.20684591 36.13825361 36.1893959 35.87661136 35.91156505 35.97690392 35.96846984 36.05435334 36.09408242 36.17906927 36.39080389 36.38388143 36.46543961 36.55144881 36.53991001 36.8522613 36.96927854 36.92778604 37.39057566 37.5620873 37.46450277 38.22743884 38.523843 38.28290209 40.34074465 40.3842157 40.13043181 39.00861283 38.74416096 38.48674294 38.07702489 37.88682903 37.75087205 37.38963027 37.24635767 37.17635093 36.96358895 36.65230817 36.61054893 36.46348106 36.2965275 36.29526139 36.15242362 36.04642156 36.08665628 35.73925965 35.79140667 35.84941106 35.87168442 35.99111332 36.02014129 36.15696994 36.41513633 36.39558242 36.50215149 36.61195308 36.59549762 37.00245412 37.15791237 37.1092178 37.7406737 37.99098235 37.88259359 43.1594951 42.85184208 42.38537054 40.57513827 40.03625346 39.68224161 38.83902505 38.53152503 38.3586138 37.77964309 37.57384418 37.48430527 37.1678971 36.76224382 36.70351933 36.51927243 36.31214864 36.30168094 36.12392968 35.97620249 36.00706322 35.61402726 35.68571642 35.73608531 35.79177792 35.94492024 35.9659786 36.14797741 36.45096807 36.42328757 36.55552834 36.68967231 36.66944835 37.16751879 37.35888166 37.30926964 38.08354271 38.39731877 38.30216738 47.6541929 46.77376822 46.32239744 42.35365467 41.51072158 41.1453354 39.7149162 39.27355839 39.08971268 38.23124745 37.95432027 37.85704514 37.39553768 36.89484258 36.82687657 36.59366547 36.34124891 36.32505808 36.11558875 35.92518181 35.94824997 35.50165435 35.59397033 35.63656477 35.72626435 35.91109 35.92627471 36.14733506 36.49254736 36.46087215 36.61560069 36.77204484 36.75131762 37.32661316 37.54775626 37.50216202 38.3789102 38.73551112 38.65656877 50.63571918 49.5663687 49.28886524 43.88168381 42.82597575 42.52464317 40.54995795 39.9910769 39.82816202 38.68179214 38.33770084 38.24402415 37.62078973 37.03291953 36.96420658 36.67679574 36.37923096 36.35903326 36.12085524 35.89075077 35.90756486 35.40203069 35.51459557 35.54962858 35.67228926 35.88580544 35.89663379 36.15139632 36.53657957 36.50307096 36.67777828 36.85417966 36.83340799 37.475154 37.72109641 37.67852399 38.63774351 39.02740624 38.95686386 52.09268559 51.06420889 50.91880067 44.97631094 43.81290909 43.5981953 41.23923882 40.5946066 40.46632173 39.07962271 38.68117613 38.59924343 37.82180295 37.16255342 37.09949027 36.75823072 36.42040554 36.39883039 36.13302802 35.86880911 35.88110204 35.31257703 35.44456707 35.4721546 35.62737135 35.86590387 35.87320891 36.15861934 36.57914556 36.54631256 36.73984761 36.93353157 36.91224726 37.61315553 37.88145948 37.84152803 38.87821237 39.30095468 39.23230133 52.71517891 51.75171618 51.70319345 45.6709174 44.47426097 44.3305111 41.74431797 41.04438104 40.95294242 39.38757598 38.95162117 38.89382305 37.98391248 37.27372545 37.2205788 36.82924537 36.45807828 36.43881862 36.14304079 35.85269655 35.86280794 35.23165353 35.3834645 35.40074762 35.59066569 35.85783857 35.85019982 36.18033239 36.63410761 36.58841426 36.79152346 37.00117572 36.98593713 37.73614954 38.02632826 37.99292118 39.10766762 39.56864117 39.49962412 43.63203971 43.46031962 43.51898691 48.01551103 52.01840608 51.35050956 52.49535284 50.68825414 50.63682607 46.03840255 44.84086285 44.76753543 42.05178278 41.33365581 41.28185768 39.61178829 39.15337308 39.10923275 38.10190044 37.36012571 37.32056422 36.88485395 36.48714354 36.47325386 36.14846053 35.83547085 35.84700083 35.15341568 35.32220937 35.35000277 35.54770497 35.8364875 35.84850579 36.17883553 36.67538903 36.6449695 36.86642197 37.09277687 37.07504859 37.88595441 38.19994306 38.16338741 39.37801508 39.88534655 39.8188314 56.30193507 57.41562445 57.39311169 52.34780441 50.61821629 50.68586517 46.12675339 44.95635042 44.95831308 42.20351466 41.47242718 41.45278405 39.73556317 39.27305441 39.2498791 38.1771945 37.41549654 37.3910708 36.92172078 36.50405574 36.49661138 36.14288622 35.81114194 35.82653372 35.0757311 35.25812819 35.28755558 35.49822425 35.80383174 35.82183896 36.16752549 36.70575976 36.68330829 36.92032618 37.16361449 37.14615367 38.01720179 38.35436945 38.31454399 39.61637207 40.15702136 40.08754614 42.26388343 42.93332035 42.94429217 37.5771656 27.621629 29.19568718 55.29402652 55.84946812 56.30927613 51.63785568 50.07202485 50.2660228 45.92388188 44.81654228 44.87290278 42.17500698 41.47471003 41.48586192 39.77759073 39.32383449 39.31765833 38.20474222 37.43819683 37.43103357 36.93332368 36.5003648 36.50450782 36.1222802 35.77632079 35.7966274 34.99537 35.18784188 35.22092145 35.43904933 35.75637424 35.7820397 36.13617308 36.70560898 36.70845121 36.95897634 37.2257023 37.21305907 38.15388167 38.51890685 38.47796988 39.88068605 40.45288121 40.37568185 42.33978905 42.59173227 42.72732829 31.6245057 24.43894587 24.51628088 53.42647589 53.90345717 54.38912951 50.39884849 49.03554857 49.32078714 45.4316198 44.44660991 44.56472375 42.02547157 41.36759792 41.4000407 39.75516741 39.31825404 39.32265239 38.19412299 37.42755486 37.43631845 36.91646837 36.47310066 36.4897811 36.08271385 35.72737872 35.75475564 34.9094489 35.10888068 35.14684435 35.36792328 35.69281282 35.72662999 36.08413216 36.66753525 36.69821379 36.95416004 37.24213596 37.24374703 38.25546673 38.65544697 38.62936682 40.10604281 40.67015546 40.6338006 41.9272947 41.60929754 41.94356121 25.99622048 27.17672808 26.01803086 51.83637465 52.07150342 52.51041734 49.03165846 47.8559818 48.14815797 44.75858089 43.90164197 44.04197918 41.76341557 41.17257788 41.22752003 39.68666918 39.26460241 39.28591619 38.12615893 37.37302835 37.40724931 36.8567157 36.41096088 36.44498058 36.01619738 35.66032196 35.69735023 34.8161752 35.02005891 35.06340711 35.28395209 35.61315846 35.65492685 36.01110181 36.60029336 36.65263996 36.90535128 37.19894252 37.21345073 38.25811518 38.68171342 38.68819868 40.15418667 40.66851575 40.69147187 41.02493328 39.68515757 40.23292186 24.44769944 32.96559246 31.56502936 50.36850926 50.45686812 50.83810461 47.8073426 46.79811344 47.04056774 44.13113495 43.38239692 43.50201642 41.48674454 40.94755938 41.00583098 39.54448481 39.1380484 39.17475389 38.00905853 37.2760003 37.32876321 36.76525639 36.32248098 36.36919736 35.92854238 35.57485849 35.62044909 34.71494737 34.92130937 34.96996373 35.18763638 35.51874158 35.56766225 35.91920754 36.5085567 36.57898215 36.82674739 37.12135711 37.14342607 38.17857439 38.5967695 38.62283375 39.99344639 40.42031226 40.5017623 39.8519067 37.61724397 38.05559377 24.08729725 36.01721101 35.69235913 49.00750786 49.08655895 49.40559037 46.89282496 46.02156401 46.18666512 43.65589376 42.97410055 43.07302636 41.20640954 40.69649835 40.76115197 39.35898997 38.96856765 39.01368306 37.86045713 37.15036823 37.21612681 36.64974142 36.21241108 36.26944057 35.82271989 35.47360722 35.52688878 34.60578381 34.81329055 34.86682944 35.08023166 35.41159568 35.46662334 35.81143396 36.39741818 36.48209083 36.72465985 37.01820616 37.04602584 38.06292698 38.46826604 38.50368958 39.73549223 40.05199649 40.14949424 38.85131962 36.24725799 36.57732618 23.04688436 35.55147995 35.70688937 47.72161246 47.90011786 48.18735982 46.16447714 45.39445978 45.54737751 43.22577122 42.58756469 42.6825743 40.91791258 40.43265965 40.49899958 39.15219798 38.77641909 38.82582972 37.69295833 37.00534577 37.07980159 36.51635159 36.08565988 36.15053493 35.70204296 35.35868572 35.4185613 34.48956158 34.69713053 34.75489926 34.96340461 35.29378054 35.3538904 35.6910092 36.2715772 36.36696885 36.60454515 36.89576861 36.92790175 37.92041492 38.30837848 38.35082931 39.43263929 39.63788685 39.74416992 37.9028259 35.01588161 35.30963137 22.24990515 34.82785515 35.02297233 46.51293225 46.80353087 47.07045839 45.48082027 44.80465831 44.94905931 42.81970574 42.21973346 42.30986126 40.63301066 40.16848898 40.23415218 38.93662393 38.57354838 38.62482974 37.51510158 36.84774933 36.92777673 36.37002574 35.94670331 36.01724148 35.56981851 35.23275947 35.29784296 34.36714747 34.57419932 34.63545351 34.83894186 35.16729326 35.23149764 35.56083647 36.13493762 36.23817826 36.47097583 36.75899418 36.79431975 37.75768688 38.12492644 38.17265075 39.09494886 39.20395006 39.31373855 37.01979215 33.9313245 34.18919348 21.61868928 33.96661939 34.19257009 45.37076532 45.77738413 46.02801881 44.83411243 44.24516757 44.38249086 42.4344289 41.87048598 41.95622696 40.35717752 39.91025847 39.97406836 38.71946139 38.36713517 38.41879837 37.33247635 36.6824966 36.76583187 36.21502217 35.79925722 35.87369004 35.42908322 35.09824013 35.16736575 34.24001877 34.44593101 34.50989212 34.70858018 35.03405776 35.10139561 35.4233995 35.99051723 36.09938662 36.32748656 36.61157092 36.64926443 37.57963385 37.92375415 37.97545466 38.73426595 38.75925995 38.870952 36.20676657 32.9874134 33.21052537 21.08153347 33.01736101 33.26007743 44.28200989 44.81088921 45.04649982 44.21794188 43.71093645 43.84237256 42.06552123 41.53650749 41.61875455 40.09196825 39.66055707 39.72214163 38.50482563 38.16154299 38.21270333 37.1486473 36.51319737 36.59816793 36.05477946 35.64623865 35.72317558 35.28242263 34.95766737 35.02953723 34.10900179 34.31368066 34.37966195 34.57390806 34.89594401 34.9654999 35.28081129 35.84068744 35.95344737 36.17687266 36.45633367 36.49574908 37.38974952 37.70879575 37.76368646 38.36313334 38.31252277 38.42398561 35.46501203 32.17439923 32.36613254 20.60004952 32.0235321 32.27492897 43.23584953 43.8991222 44.1230356 43.6266112 43.19758239 43.32417986 41.70988281 41.21475026 41.29416998 39.83667748 39.41963928 39.47907884 38.29485672 37.95927785 38.00944791 36.96592432 36.342479 36.42788754 35.89190086 35.48994033 35.56830092 35.13193862 34.81266429 34.88656886 33.97562416 34.17861524 34.24600052 34.4362475 34.75456196 34.82557419 35.13483189 35.68723222 35.80258651 36.02130389 36.29544244 36.33610798 37.19021933 37.48241343 37.539955 37.99035871 37.87116507 37.98067434 34.79146267 31.47734797 31.64151248 20.15449344 31.00686968 31.26180242 42.22972494 43.02541066 43.24080897 43.05544267 42.70129973 42.8239531 41.36534421 40.90310011 40.98015851 39.58995812 39.1867308 39.24426259 38.09040328 37.76157505 37.81054274 36.78567591 36.17212387 36.25717453 35.72822843 35.33206829 35.41105803 34.97926917 34.66520832 34.74009854 33.84008959 34.04167805 34.11001617 34.29666472 34.61117673 34.68305158 34.98682524 35.53144055 35.64846028 35.86230505 36.13036169 36.17196741 36.98256935 37.24689377 37.30649409 37.61927885 37.44013464 37.54675233 34.18196461 30.88260267 31.02236029 19.7346157 29.99435782 30.24570089 41.25720255 42.17972738 42.38900822 42.50079377 42.21899394 42.33839793 41.03015211 40.59996821 40.67502362 39.35054882 38.96083539 39.01670108 37.8915451 37.56883657 37.61655165 36.60865635 36.00328522 36.08746117 35.56502737 35.17387552 35.25290871 34.82563156 34.51590191 34.59162702 33.70400001 33.9036307 33.97249987 34.15597445 34.46672577 34.53903743 34.83777059 35.37414917 35.49223994 35.70088606 35.96203745 36.00438771 36.76837624 37.00472435 37.06576072 37.25307136 37.02190876 37.12520309 33.63105357 30.3753124 30.49487278 19.34119408 29.00591276 29.25019585 40.31173819 41.35720768 41.56069355 41.9599415 41.74829121 41.86498664 40.70286495 40.30408349 40.37744044 39.11743585 38.74106604 38.79548038 37.69803523 37.38104755 37.42754347 36.43519808 35.83666904 35.91967023 35.40313669 35.01623887 35.0949156 34.67195543 34.36649245 34.44203362 33.56668587 33.76505158 33.83421911 34.0148187 34.32189549 34.39432571 34.688346 35.21589432 35.33466946 35.53766801 35.79108814 35.83404232 36.54934177 36.75847178 36.8202707 36.89383073 36.61735931 36.71718313 33.13078399 29.93849104 30.04180803 18.98204271 28.05270482 28.28756779 39.39413527 40.55663061 40.75495602 41.43110648 41.28736786 41.40176482 40.38218241 40.01429407 40.08622551 38.88972297 38.5266082 38.57976406 37.5094567 37.19795299 37.24330348 36.26538828 35.6726741 35.75432883 35.24309487 34.8597806 34.93781688 34.5188649 34.21649942 34.2923582 33.43027463 33.62643866 33.69557709 33.8736834 34.17719726 34.24951564 34.53902789 35.05706492 35.17624788 35.37310516 35.61805113 35.66147923 36.32724889 36.51040045 36.57249485 36.54303204 36.22696319 36.3232182 32.67487454 29.55992711 29.64951404 18.65819297 27.13874932 27.36387833 38.50516533 39.77484785 39.96859409 40.91234024 40.83465704 40.94713796 40.06697337 39.72958489 39.80033905 38.66663159 38.3167467 38.36881931 37.32536269 37.01922061 37.06351655 36.09918498 35.51150729 35.59173363 35.0852392 34.70490836 34.78211513 34.36688182 34.06806151 34.14285164 33.29282744 33.4881286 33.5572017 33.73296397 34.0329979 34.10505216 34.39013439 34.89795234 35.01732673 35.20757001 35.44344342 35.48721785 36.10358818 36.26211891 36.32414779 36.20147103 35.85095631 35.94361206 32.25904983 29.2319988 29.3095847 18.3755514 26.26639012 26.48120764 37.64269424 39.01149902 39.20056952 40.40305147 40.38900133 40.49980789 39.75621979 39.44903123 39.51882959 38.44744208 38.11081603 38.1619673 37.14528294 36.84446439 36.88780533 35.93645818 35.35322011 35.43201381 34.92976392 34.55192043 34.62817847 34.21626953 33.91925572 33.99443008 33.15775851 33.35045669 33.41919438 33.59293068 33.88957004 33.96128626 34.24191998 34.73881739 34.85818742 35.04142596 35.26779912 35.31178023 35.87956209 36.01472016 36.07642446 35.86961288 35.48932074 35.57840255 31.87903832 28.94636631 29.01435673 18.13682451 25.43850902 25.64271544 36.80570531 38.26710937 38.45154584 39.90312524 39.94936922 40.05876333 39.44913733 39.17189946 39.24089715 38.23155344 37.90825201 37.95860685 36.96878983 36.67331832 36.7157881 35.77702817 35.19782157 35.27519502 34.77677569 34.40097769 34.47623656 34.06736809 33.77360635 33.84677869 33.02093691 33.21351153 33.28224171 33.45376163 33.74704705 33.81851608 34.09453151 34.57987727 34.6990857 34.87501305 35.09161816 35.13568769 35.65624171 35.76927369 35.83039935 35.54757212 35.14159354 35.22725767 31.52959997 28.69360221 28.7541905 17.94074379 24.65754939 24.85112781 35.99356024 37.54072547 37.7208082 39.41187978 39.51533919 39.62332617 39.14512626 38.89760695 38.96593864 38.01844257 37.70855253 37.75823335 36.79546582 36.50540549 36.54710088 35.62065591 35.04528734 35.12131601 34.62624858 34.25216144 34.32651355 33.92012703 33.62665453 33.70107337 32.88824285 33.07734929 33.14618631 33.31536212 33.60536402 33.67707145 33.94793155 34.42138834 34.54023544 34.70866508 34.91537033 34.95941224 35.43433303 35.52660797 35.58698075 35.23521689 34.80706734 34.88951594 31.20593454 28.46615862 28.52132009 17.79004654 23.92672944 24.10993647 35.20623766 36.83233437 37.00821262 38.9276164 39.08697581 39.19346477 38.84381484 38.62575114 38.69350026 37.80768493 37.5112974 37.56040019 36.62493591 36.34037899 36.3813804 35.46718991 34.89539377 34.97045822 34.47797487 34.10526551 34.17914546 33.7746697 33.4849449 33.55629215 32.75120053 32.94137148 33.01228147 33.17728749 33.46398038 33.53751116 33.80157991 34.26355604 34.38189855 34.5427276 34.73950052 34.78341256 35.21438148 35.28719926 35.34673464 34.9321265 34.48470988 34.56430206 30.90259937 28.2558505 28.308121 17.68561025 23.2497819 23.42363318 34.44417314 36.14244052 36.31498584 38.44958592 38.66505544 38.7701169 38.54499642 38.35607762 38.42331387 37.5989531 37.31615321 37.36476008 36.45689158 36.17795689 36.21833478 35.31639914 34.74737828 34.82275485 34.33125255 33.95970321 34.03463196 33.63010429 33.33865172 33.41467232 32.61924347 32.80410528 32.88078773 33.03782309 33.32110996 33.40110094 33.65330719 34.10644973 34.22427765 34.37747366 34.56435437 34.60807325 34.99661065 35.05142473 35.11009919 34.63740717 34.17290563 34.25065012 30.61410949 28.05593222 28.10819439 17.62667779 22.62907436 22.79737213 33.70642646 35.4700374 35.64353441 37.97727618 38.24804103 38.3531061 38.24825647 38.08819506 38.15519869 37.39189457 37.12277543 37.1710005 36.29102173 36.0178467 36.05768002 35.16795634 34.59875412 34.6792209 34.18373511 33.81316095 33.89407534 33.48461552 33.19893553 33.27488838 32.46509846 32.65449807 32.75590293 32.88631831 33.1659913 33.27099074 33.49231235 33.94085321 34.06788779 34.21202679 34.38897546 34.43421846 34.77936899 34.81695151 34.87832313 34.34604921 33.86575649 33.95039325 30.33440864 27.86157373 27.9191795 17.61713284 22.06335398 22.23352348 32.98611172 34.80744485 35.00000091 37.50328534 37.82824395 37.94559704 37.94894882 37.81831828 37.89052559 37.18434756 36.9293203 36.97943358 36.12606768 35.85890741 35.89945181 35.01373811 34.43891276 34.54463824 34.02518717 33.65548155 33.7614648 33.32725275 33.03555397 33.14455849 43.5767131 43.63280767 43.75654876 53.85554461 54.79670529 54.83083213 42.05868459 42.22584609 42.75228765 52.40008189 49.1081155 49.57089806 41.01004502 40.92789002 44.11730221 54.83917881 54.86159538 53.93099155 41.60589409 41.18166411 40.85783218 39.98625589 40.25820886 40.35331524 45.85900488 45.37115806 46.06081125 43.35368607 42.58158295 42.67302954 41.93643545 42.06300432 42.79984196 49.00109283 48.68270126 49.73421627 43.93725942 43.2100094 43.27071291 42.75984316 42.8447464 43.62592129 50.7862396 50.61623123 51.66982911 44.01284439 43.53772468 43.55956903 43.32464384 43.373664 44.01667541 42.97291884 43.59528699 43.49081919 43.83273531 43.63844325 43.63758697 43.57770055 43.59330317 43.97099997 38.46524688 39.8364918 39.70007855 41.6116925 41.49385116 40.47970857 56.69687016 56.5495504 56.61771858 43.35110684 43.54340747 43.51966566 43.63412195 43.6270372 43.70883348 43.08004985 43.14584738 43.41018851 54.49514028 54.23666631 55.27091901 47.52197864 47.1101748 47.04422561 47.44527672 47.40156016 48.02719582 47.43358716 47.53917309 47.56394352 56.19022495 56.36122522 56.36326948 56.16350815 56.17392183 55.55255492 55.91851488 54.92175783 54.69477246 56.36600877 56.36563245 56.42408222 47.31109218 47.22210223 47.32799791 56.50055018 56.50368519 56.25053393 55.46475698 56.14848574 56.15360993 40.87195582 41.84132683 41.72433231 43.39113188 43.28574749 42.61522425 39.56307209 39.42886407 37.95034419 43.93871147 43.89249097 43.94139441 56.66915027 56.72989338 56.79278127 43.2611699 42.94379211 43.01029014 42.34714472 41.65267164 41.80144442 40.49760646 40.71098406 41.19097526 45.87772696 45.15487214 45.44239354 43.00418339 43.36897854 43.65227414 48.2628717 47.50530626 47.48422271 47.11842792 47.24256417 48.29286533 51.62918821 51.56932266 52.53171757 54.78352172 54.52185667 51.86052579 47.8509308 46.85017338 46.99001042 45.70207977 45.94362596 46.80386381 44.83222101 44.4003156 43.96154771 56.47043492 56.45312642 56.44750312 56.38275798 56.39445207 56.54922693 56.32189746 56.48950999 56.49336886 56.45489674 56.45857674 56.42044223 41.5474629 41.84810108 41.8729875 43.47580455 43.01861267 42.78786288 41.86647976 41.88064839 41.65136469 47.90468019 46.61338716 45.86232291 40.65630687 40.52832715 39.397551 49.66268034 48.51714529 49.15457138 44.88386756 45.34299005 45.62726476 48.26390176 48.35684497 48.24006112 47.97744437 48.06066284 48.16374923 56.29693371 56.31332839 55.94366791 55.78880929 56.25930175 56.2782826 55.87895461 55.74317999 56.55015344 56.65791554 56.10629639 55.98984067 53.84276792 53.92284938 55.25908643 43.69258508 47.59309306 47.15544464 50.01351885 49.66653235 46.5677029 43.27126649 42.61411728 40.36563158 40.35504828 40.23912251 40.62508073 43.49139792 43.461206 43.10384771 32.82619271 32.95672852 41.68106174 41.29887399 44.86525617 43.70564571 53.34358149 55.40855045 55.15758831 45.56440323 44.75400444 44.56411912 44.18799505 44.09123242 43.57574271 43.99972133 44.34381817 44.27545655 39.81411129 40.90167494 40.77376344 62.54987212 67.75573812 70.83114693 52.442411 52.16222863 52.59898178 53.67688692 52.97442837 52.66547181 56.17823774 56.16577191 55.50504382 55.5672677 56.20291351 56.18844691 42.54763097 42.42978237 41.60669569 42.0119359 42.76702573 42.65582611 48.00895224 50.72730711 50.37354449 40.64492791 40.73054469 40.51102572 41.70068583 42.83187242 41.94968299 41.96704009 41.55096662 41.6960354 56.60255793 56.36106157 56.37121552 53.72443699 54.68314207 54.72200353 41.22826036 41.74576781 41.60777582 43.52205344 43.11682389 43.24724439 56.5744961 56.24008558 56.34149342 45.67591426 46.25528647 45.73662815 45.43150501 44.78497575 44.90891835 36.71261834 36.74721475 36.73967625 36.76525223 36.75504026 36.72242257 36.82640369 36.78975644 36.79779778 36.76377006 36.78885057 36.77555685 36.81864183 36.80196297 36.78022114 36.8560269 36.82732709 36.84059578 36.84392527 36.85458974 36.83461038 36.89533507 36.87303535 36.86675338 36.90158621 36.88477619 36.90288908 36.94196278 36.93932857 36.91590401 36.97666736 36.95776786 36.96251674 36.95765933 36.95588931 36.97277715 37.01563956 37.00523409 36.99221732 37.0248877 37.01583916 37.02747744 37.00345462 37.00773903 37.01568546 37.04710132 37.03330324 37.03016659 37.03172007 37.03375561 37.04764862 37.01544411 37.0233008 37.02163423 37.03202106 37.01970439 37.02756382 36.9986396 37.01030569 37.02156831 36.99588728 37.00207239 36.99314498 36.97326381 36.96702134 36.98452902 36.92824343 36.94970362 36.95372343 36.94961389 36.94810396 36.92897331 36.88278128 36.88601958 36.90806361 36.84831996 36.86809085 36.8596398 36.89713035 36.88084518 36.86502628 36.79602033 36.81527262 36.83227979 36.78772768 36.80165691 36.77913764 36.85533758 36.82730285 36.81622388 36.59519664 36.62073669 36.60526272 36.65972582 36.6386475 36.6166539 36.69193285 36.66388254 36.6815438 36.70242414 36.71068926 36.68345554 36.77406527 36.74042836 36.73809929 36.76229922 36.74883994 36.77695745 36.84894665 36.84244028 36.80824779 36.90914356 36.87538358 36.88587951 36.8670844 36.86956531 36.90009182 36.99327748 36.97301711 36.94146498 37.02936555 37.00209957 37.02559515 36.97137299 36.98433303 37.00921645 37.10510249 37.07362621 37.05308697 37.10337166 37.09026588 37.12397545 37.04318444 37.06387482 37.07593287 37.15454734 37.11735105 37.11225509 37.11509454 37.11809416 37.155523 37.0656326 37.089021 37.08641631 37.1313812 37.09729783 37.10816872 37.06462638 37.08288892 37.11471846 37.03686486 37.05674707 37.04037286 37.04327405 37.01790917 37.04308663 36.96077583 36.99071323 37.0131498 36.96169612 36.97377545 36.94637246 36.91047656 36.89737239 36.92987506 36.83170077 36.86482516 36.87458315 36.85761467 36.8596714 36.82902029 36.76605749 36.76530433 36.79907195 36.70756829 36.7351296 36.72983593 36.76007837 36.74526346 36.72258299 36.52550968 36.53800903 36.50704299 36.61456453 36.57382346 36.56790469 36.59826657 36.58393841 36.61912539 36.7109132 36.70423013 36.65953279 36.79830915 36.75044663 36.76175204 36.73939463 36.74304312 36.78653754 36.92323937 36.89698757 36.84723538 36.99697769 36.94697396 36.97882239 36.90098052 36.92112046 36.96611614 37.14433281 37.09393122 37.04612385 37.18164724 37.13935035 37.19644631 37.05550286 37.09325503 37.13103888 37.32782534 37.25442583 37.22007064 37.30121696 37.28154051 37.3617062 37.16561276 37.21810661 37.2382288 37.4114095 37.32709491 37.31717413 37.31876875 37.32636172 37.41464547 37.20048598 37.25839312 37.25541214 37.36517594 37.29364547 37.30762082 37.23862105 37.26965828 37.33688856 37.15678576 37.20412265 37.17907112 37.22307505 37.16439252 37.20342308 37.07716981 37.12220211 37.1753753 37.0420088 37.0779295 37.03765019 37.01597576 36.98161543 37.03019317 36.8821595 36.93193624 36.96141132 36.8889139 36.90794086 36.86286004 36.80211922 36.78636404 36.83352623 36.69683323 36.7409943 36.75231064 36.73026368 36.73369681 36.69340194 36.50977172 36.50905878 36.45516278 36.6231644 36.56531859 36.56950271 36.56316493 36.56342044 36.61714494 36.76879763 36.7485986 36.68400063 36.88856431 36.81658481 36.84262548 36.77703395 36.79608018 36.86006299 37.08946143 37.04008059 36.96356097 37.19941866 37.11877512 37.17950454 37.0178472 37.06368189 37.13470962 37.46623822 37.3636871 37.28126502 37.52260673 37.44508473 37.56559501 37.26424145 37.34794669 37.41614747 37.83387046 37.67122146 37.59901162 37.75812206 37.72212803 37.91558021 37.45679539 37.57973291 37.62269159 38.00989112 37.81573517 37.79543643 37.77027969 37.80064015 38.02458268 37.51575704 37.65345891 37.64985821 37.8632635 37.73486471 37.76192396 37.60911 37.6744991 37.81203534 37.43623419 37.53057534 37.48702598 37.5873732 37.47258641 37.54264381 37.32506569 37.39975874 37.50278511 37.2387833 37.31203346 37.24612116 37.24152907 37.17175903 37.24846316 37.02066149 37.09581345 37.15609155 36.99885426 37.04355916 36.9763078 36.91366662 36.87803932 36.94793742 36.74703715 36.81119355 36.83976822 36.76761855 36.78721568 36.72923133 36.5300644 36.5220633 36.45164755 36.67682294 36.59692239 36.61075797 36.57630836 36.58543879 36.65942175 36.88865501 36.85351521 36.76213061 37.05607946 36.95121264 36.99554656 36.87448947 36.91059834 37.00556621 37.37380922 37.29054021 37.16870441 37.5634753 37.42203871 37.52372969 37.2488855 37.32966326 37.45257827 38.06999898 37.88321855 37.71688981 38.24614964 38.05891808 38.29911798 37.70098417 37.871003 38.02692615 39.079005 38.66059789 38.45576499 38.94411246 38.81486673 39.47973673 38.13434856 38.45096863 38.55353497 39.75615956 39.05571195 39.04649168 38.85547444 38.94812631 39.6146686 38.23907903 38.61560757 38.56436712 38.97282539 38.68511822 38.81766183 38.34639495 38.49949518 38.81259626 38.01450722 38.21991313 38.1117425 38.25708866 38.05459637 38.19918488 37.77570643 37.91339094 38.08761254 37.62205573 37.75772033 37.64016152 37.62602813 37.51350631 37.64184609 37.27202013 37.39035825 37.48658826 37.2251403 37.30273982 37.19767035 37.11244571 37.05373291 37.15946866 36.8601273 36.95410449 37.00234636 36.87311184 36.91100761 36.8258304 36.57894737 36.56453157 36.47273394 36.771064 36.66376651 36.68473272 36.62652556 36.64426325 36.74432087 37.05950808 37.01375501 36.887261 37.30478517 37.15211543 37.20894738 37.04477297 37.0966938 37.23649049 37.77176272 37.66546156 37.47453507 38.13290738 37.88299127 38.01448709 37.63537908 37.75488009 37.97300326 39.06426506 38.78279298 38.43032259 39.72453467 39.19420614 39.59827072 38.55396838 38.8814051 39.30931082 40.20569871 40.07151835 40.36012179 41.1958951 40.82708442 40.79356977 40.74980905 40.79036217 41.28461163 40.1081147 40.4560938 40.43100987 39.34535934 39.03116602 39.35129594 38.4878904 38.74563391 39.00634085 38.28560317 38.50301505 38.2820521 38.19083481 38.03448084 38.25155254 37.6491473 37.83425026 37.96740908 37.59346225 37.70962162 37.54405239 37.4008999 37.32049673 37.47808596 37.04126523 37.1751635 37.24175686 37.05532969 37.11322109 36.99003045 36.64956256 36.63043387 36.51437204 36.89388492 36.75659957 36.78237645 36.70803796 36.73125712 36.8609423 37.2594315 37.20895824 37.04389218 37.5973657 37.39207737 37.45303933 37.27018657 37.3300899 37.52272114 38.20257071 38.09873777 37.83031132 38.78753021 38.41313047 38.53674961 38.15051628 38.28324117 38.63018518 43.86428461 43.34362443 43.68404515 42.54132752 42.92509943 43.38514712 40.77483278 40.40360042 41.02044124 39.44467258 39.88632412 40.19403301 39.28674631 39.57901427 39.18542868 38.89801675 38.71714843 39.05872563 38.13799426 38.41212866 38.56600972 38.10856355 38.25573988 38.00622677 37.76022071 37.66683844 37.8905657 37.28011471 37.46395657 37.54224012 37.31184099 37.38649193 37.2158756 36.73068732 36.71001701 36.57004534 37.0273166 36.86196049 36.8886587 36.80873659 36.83534864 36.99395414 37.45554264 37.40767329 37.20824358 37.8786503 37.62948039 37.68566528 37.51285532 37.57186996 37.81129924 38.57423304 38.48783032 38.16178876 39.32291253 38.86912931 38.9677195 38.65406993 38.76489797 39.20301851 47.60800978 47.19569431 48.11654163 45.6455735 46.36910634 46.74627185 45.57481704 45.98422633 45.32227164 42.20414341 41.86497735 42.76948236 40.48426696 41.11627595 41.40426956 40.50648383 40.81294197 40.22285723 39.64242109 39.4655051 39.94041911 38.6774262 39.04765815 39.20033537 38.72766768 38.88529868 38.53997402 38.14822889 38.05240583 38.34747145 37.55108433 37.78796361 37.86912422 37.62343463 37.70541784 37.48185073 36.8132944 36.79256589 36.63081754 37.15740817 36.96756048 36.99357737 36.91517179 36.94152429 37.12559391 37.63611907 37.59223963 37.36455522 38.12689797 37.84458405 37.8951874 37.74009437 37.79308543 38.06784357 38.88530067 38.81147265 38.44610854 39.73640533 39.23545477 39.31841941 39.06098698 39.15010275 39.64095524 45.66899311 45.21879655 45.22783829 45.18875282 45.20343654 45.67044785 50.04878857 49.81067264 50.88334411 47.93724905 48.82572559 49.06022575 48.32385608 48.59201935 47.69931871 43.36373135 43.1048949 44.19337174 41.41689166 42.19381227 42.42144499 41.6845144 41.944882 41.19562956 40.31129443 40.16209184 40.74647311 39.19185815 39.64737038 39.77739178 39.35741424 39.50091042 39.06710658 38.51534601 38.42789691 38.78753208 37.82106953 38.10712564 38.18241731 37.9501454 38.03025504 37.75578375 36.89390898 36.87321905 36.69212461 37.27974354 37.06853558 37.09387072 37.0188554 37.04464897 37.25079877 37.80243655 37.76121331 37.50948086 38.3492906 38.03929855 38.08651962 37.94409145 37.99291512 38.29608894 39.16511267 39.09621119 38.69838717 40.09743564 39.55598036 39.63421559 39.39873771 39.47819637 40.01026516 45.12328942 44.94318821 44.90145244 45.01625093 44.97834018 45.17847696 51.29287908 51.16500415 52.19199369 44.18156063 44.00608909 45.17859407 42.14648382 43.00942113 43.16521174 42.63584954 42.82577384 41.97604625 40.84280056 40.72721394 41.39143016 39.62454483 40.14243752 40.24668662 39.91316168 40.02599624 39.52459944 38.82703961 38.75460275 39.16437812 38.06397694 38.38931074 38.45296905 38.25447279 38.32568603 38.00897477 36.96941355 36.94919011 36.75118681 37.39312529 37.16235085 37.1876609 37.11716356 37.14220722 37.36800167 37.9554012 37.91785327 37.64385157 38.5566949 38.22012362 38.26328438 38.13166542 38.17748331 38.50714376 39.43494969 39.36651053 38.93522578 40.45714265 39.86596676 39.94625514 39.71097521 39.78985781 40.36717111 44.03922864 44.16307336 44.10208958 44.27745534 44.22147264 44.11759316 44.6931519 44.58388288 45.78269473 42.64064548 43.54842573 43.64795487 43.31000573 43.44121652 42.53839755 41.20973001 41.13752162 41.84291754 39.95171803 40.5097292 40.57784644 40.34411963 40.4265637 39.87682566 39.06201703 39.01214549 39.4550558 38.26364126 38.61670997 38.66148865 38.5114114 38.56311216 38.2181467 37.0561987 37.01706427 36.80370596 37.49412131 37.2464312 37.2914898 37.20808737 37.22702858 37.47106787 38.12585513 38.05759087 37.7631267 38.74587407 38.38288487 38.46146994 38.30728093 38.34683566 38.70436668 39.7500522 39.62449067 39.15564793 40.81868991 40.16968529 40.31990591 40.02134754 40.10426988 40.74026959 43.33852159 43.39977544 43.59131523 42.53506725 43.06700385 42.98315782 43.23051862 43.15013315 42.64851499 53.16160619 52.62570573 48.92783054 56.29252862 54.99574432 55.33204702 54.26731142 54.64362535 56.07336558 50.72707269 50.69941824 52.49214784 47.45798041 49.01856538 49.03012866 48.92259001 48.97781023 47.41553189 44.92995975 44.8933315 46.08441396 42.92704157 43.84745423 43.88539768 43.72870601 43.79272716 42.86628225 41.42397399 41.38202953 42.10924952 40.15906071 40.73507073 40.77662731 40.63962566 40.6949593 40.12292448 39.22084651 39.18807588 39.64583151 38.40970609 38.77845008 38.80795566 38.70475737 38.74372734 38.37841126 37.12839943 37.11050738 36.87952455 37.62646959 37.35847373 37.38089785 37.31445313 37.33625436 37.59957569 38.27557312 38.23741399 37.91790751 38.98712947 38.59113999 38.63547982 38.50504546 38.54758966 38.93676834 40.01952421 39.95227241 39.43611993 41.26208819 40.55384819 40.62938216 40.40052923 40.4775745 41.17935754 41.12973852 40.99231923 39.63952795 57.32154208 57.39047211 56.3830204 57.63468665 57.62231441 57.35993573 50.40902619 50.52529679 52.22666734 47.41317498 48.90143233 48.80976855 49.01962833 48.9700824 47.45767402 44.91523758 44.94246347 46.10213799 43.0105163 43.91876238 43.90402729 43.91100155 43.92692722 43.01756837 41.48859833 41.49140518 42.20617608 40.2760139 40.8509681 40.85089916 40.80475682 40.82646124 40.2502591 39.3100075 39.29114194 39.75656369 38.50442802 38.87758937 38.89697845 38.83552067 38.85852331 38.48632889 37.19785021 37.1810041 36.93243841 37.73759845 37.44853105 37.47049875 37.40352328 37.42618595 37.70944151 38.43620177 38.39498384 38.05134612 39.19956131 38.77493051 38.82352742 38.68082116 38.72728771 39.14431447 40.30104142 40.22815526 39.67969078 41.56498343 40.85640952 40.93362124 40.7044951 40.78030621 41.49304184 42.83305135 42.90068352 42.31433355 41.74522522 42.99540551 42.7865154 43.26708741 43.15741729 42.19156479 25.23677776 26.14666927 36.42784785 51.58596735 43.30462715 42.93451653 45.40033703 44.19705989 51.66310477 54.88012023 55.3695411 54.79337335 52.89015879 54.35762341 53.93165659 55.1526961 54.76761436 53.23058564 49.59259914 49.84517654 51.35926181 47.04430349 48.38725445 48.18530738 48.70162951 48.56368012 47.17081391 44.66820605 44.7478667 45.83533211 42.91886762 43.78099793 43.71994777 43.87514233 43.83385647 42.95782338 41.43077987 41.45574414 42.14704077 40.27808447 40.83531104 40.81853538 40.85121048 40.84680304 40.2828508 39.32503724 39.32612011 39.77630225 38.54685909 38.91951288 38.92101446 38.90670944 38.91463088 38.54213556 37.24201236 37.23537154 36.96302087 37.84391272 37.52821275 37.54094167 37.49217329 37.51178444 37.81996921 38.59779153 38.56071142 38.18627974 39.4345834 38.9742751 39.02046589 38.87334849 38.92278339 39.37344688 40.5836727 40.52355654 39.94966239 41.78918785 41.14694997 41.1959773 41.01258064 41.08618287 41.74619539 42.21038233 42.42083551 42.29014127 38.79461419 41.74260469 41.23154072 42.5167091 42.1672172 39.70360697 25.14144686 24.59134391 29.67939793 51.0457264 43.83188105 44.46530179 42.94860184 43.28401424 51.19940374 52.96264182 53.42737718 53.01158673 51.37413944 52.61736654 52.17998839 53.49655402 53.05723484 51.76562547 48.4447837 48.74201494 50.05662953 46.32173656 47.48283089 47.23309965 47.96366846 47.72784251 46.52226172 44.18167723 44.31770542 45.26955526 42.67544294 43.45637242 43.34812627 43.64778823 43.55730665 42.75248724 41.27963602 41.32702647 41.96818889 40.221365 40.74703401 40.71321982 40.79742155 40.77328399 40.23795481 39.30185981 39.31182798 39.74507844 38.54297586 38.9126892 38.90442964 38.9202116 38.91778894 38.5473105 37.22578193 37.23564441 36.94496051 37.8944776 37.55189499 37.54490007 37.54981845 37.55314334 37.89041343 38.68784822 38.67316588 38.267841 39.60727366 39.11888991 39.14036804 39.06051133 39.09467829 39.57783232 40.70057528 40.69778361 40.1380062 41.65759489 41.23961891 41.22138701 41.225267 41.24347251 41.73707787 40.74116176 41.21237194 41.75188956 32.18548499 38.93963489 37.94144555 40.59484405 39.8183305 34.07197199 30.07976847 28.55756923 25.34748391 50.24726771 46.05522707 46.35927878 45.08324689 45.62836089 50.46437972 51.23496828 51.64606572 51.45989868 49.84039797 50.91347498 50.51631959 51.74814468 51.32505799 50.21152752 47.29911951 47.57192903 48.70362368 45.49924675 46.49468061 46.26320664 46.98277627 46.73552559 45.70097721 43.62943845 43.76335088 44.59085281 42.32030835 43.0089007 42.89929071 43.23565116 43.12175587 42.41111935 41.06167221 41.11688965 41.69143123 40.10666432 40.59123587 40.54616229 40.67490962 40.63401098 40.14132225 39.20841445 39.23855284 39.65691561 38.48537544 38.84873233 38.82175903 38.89060384 38.87188605 38.50640343 37.1638029 37.18233685 36.88814429 37.85594103 37.5038273 37.48550873 37.53376841 37.51996665 37.87176198 38.64609326 38.66624161 38.24233649 39.62305708 39.12861382 39.1053283 39.14610372 39.14281846 39.63751193 40.57418664 40.62950941 40.13321543 41.11944843 41.01343348 40.90655011 41.17775778 41.1060042 41.27615126 38.57006383 39.12234506 40.72779452 26.45478051 34.71448508 33.60746546 36.98064236 35.85682543 27.48235431 35.07473358 34.1349923 24.33944311 49.21950449 46.53916539 46.40369219 46.53199103 46.59456963 49.50461577 49.74081834 50.09052012 50.0173648 48.52028491 49.43306765 49.11478709 50.13563523 49.77445884 48.82133673 46.36935583 46.57458924 47.54584271 44.78888553 45.64913356 45.47593803 46.04373595 45.83826504 44.94829066 43.17256265 43.27349167 43.99816063 41.99029932 42.60685647 42.51840835 42.79454156 42.69699129 42.06787706 40.82478788 40.8870553 41.41845946 39.93149377 40.3924936 40.33666102 40.49774424 40.44634101 39.9796776 39.05716444 39.09873282 39.50110015 38.37007185 38.72225854 38.6841784 38.79139427 38.75810406 38.40306636 37.07254937 37.09769214 36.80313971 37.76986448 37.41900395 37.39340667 37.46517498 37.44296655 37.79446484 38.53701944 38.56809931 38.15262802 39.47684465 39.01314904 38.9764073 39.07782534 39.0470235 39.52004901 40.24371949 40.33406998 39.93418751 40.4286434 40.54438224 40.41851619 40.78833078 40.66764628 40.60361602 36.91518299 37.26107474 39.59778724 24.10987003 31.3807607 30.89655423 32.67283028 31.89317938 24.55391279 35.85079221 35.97655757 23.811846 47.89838182 45.47961615 45.06606467 46.16726225 45.88261024 48.26569224 48.48051788 48.78002564 48.67881276 47.53636242 48.28341629 48.03003535 48.81612855 48.54217962 47.75500814 45.70274914 45.86074268 46.70591245 44.26743525 45.04105301 44.90344115 45.3240681 45.18109895 44.39087755 42.77873269 42.87595045 43.54613879 41.67398637 42.253228 42.16555705 42.4298634 42.34139272 41.7534934 40.56520406 40.63110456 41.13444123 39.72088825 40.16086052 40.10046197 40.27922263 40.22052784 39.77556457 38.87443465 38.922086 39.3086775 38.21895883 38.5593524 38.51496596 38.64417165 38.6024689 38.25922944 36.95905741 36.98919201 36.69610472 37.65454232 37.30800266 37.27697124 37.36631104 37.3378118 37.685665 38.39170376 38.4308881 38.02952507 39.27282703 38.85104601 38.80478845 38.93702226 38.8951811 39.32796121 39.84902579 39.95170985 39.66342109 39.70758379 40.02610155 39.89121849 40.29005667 40.15915739 39.88950448 35.61280947 35.92567671 38.60840041 22.61874582 29.57089773 29.17314971 30.43312831 29.9905638 22.95563963 35.20892762 35.38523885 22.8275893 46.46656877 43.86813101 43.48301856 44.65942678 44.26023019 46.81650613 47.34198812 47.61844851 47.41255302 46.69961867 47.29684461 47.06079515 47.78127431 47.53693739 46.9036626 45.09541846 45.24385015 45.98971748 43.79298776 44.50383984 44.37460409 44.76812629 44.63496938 43.90880864 42.40119383 42.49376318 43.12205567 41.35859538 41.90683951 41.82236121 42.07852314 41.99224986 41.43676283 40.30012487 40.36632898 40.84605693 39.49496391 39.91676666 39.85521423 40.03953222 39.97824859 39.5521713 38.67579791 38.72637229 39.09878101 38.04656375 38.3761464 38.32842595 38.46955432 38.42320851 38.09105547 36.82891565 36.86276084 36.57225872 37.51741764 37.17748492 37.14241508 37.24483013 37.21164241 37.55340911 38.21919326 38.26446378 37.88141331 39.03020918 38.65485713 38.60156775 38.75658232 38.70656468 39.09384907 39.42269622 39.53075233 39.35102639 38.98554892 39.47874397 39.33956349 39.75490968 39.61732381 39.16441945 34.45589075 34.73143441 37.67577669 21.45720626 28.11090456 27.79702934 28.79785433 28.44402173 21.72095146 34.41208232 34.62403727 22.0800434 45.11522734 42.36624315 42.00565551 43.10454472 42.73242002 45.44617883 46.28264269 46.54097324 46.22165629 45.91405719 46.3749835 46.1532406 46.82859607 46.60003328 46.1061163 44.52146318 44.66216123 45.31594214 43.34575185 43.9970892 43.87437079 44.24713328 44.12131164 43.45535349 42.04297631 42.13079383 42.72162685 41.05287886 41.57482192 41.49430552 41.73885254 41.6563295 41.12815455 40.03840071 40.10322324 40.56308586 39.26475223 39.6711213 39.61022492 39.79369512 39.73229776 39.32231306 38.47046107 38.52207291 38.88228083 37.86250556 38.18264212 38.13345845 38.28022062 38.23157088 37.90919713 36.68641885 36.72301866 36.43592227 37.36395222 37.03244075 36.99434757 37.10652088 37.06984675 37.40360952 38.02625555 38.07609891 37.71445106 38.75993088 38.43350577 38.37507231 38.54683854 38.49078931 38.82951297 38.98240171 39.09345395 39.00643264 38.28631698 38.92182119 38.78335958 39.20015462 39.06081878 38.45834448 33.44209161 33.68233625 36.809771 20.55371308 26.9622066 26.71778121 27.50129786 27.22314663 20.75848978 33.49964276 33.73532466 21.47830107 43.83281366 40.9549413 40.61433968 41.65038576 41.30026132 44.14750277 45.28597041 45.52991789 45.09440293 45.17121962 45.50628979 45.29616147 45.93465882 45.71901191 45.35335868 43.97517828 44.10942171 44.67743563 42.91984927 43.51452737 43.39716424 43.75307711 43.63314581 43.02458413 41.70180254 41.78569745 42.34080901 40.7599086 41.25835953 41.18145481 41.41474576 41.33610842 40.83194878 39.78428693 39.84699499 40.28988141 39.03635828 39.42969088 39.37035592 39.54965803 39.48946669 39.09307566 38.26404403 38.31553889 38.66545385 37.67328678 37.98526083 37.93581797 38.08413918 38.03470458 37.7208001 36.53477353 36.57339729 36.29041114 37.19810879 36.87649738 36.8361392 36.95563788 36.91634461 37.24055344 37.8178276 37.87118991 37.5331635 38.46979691 38.19356794 38.13113991 38.31557483 38.25506409 38.54395508 38.5356885 38.64747818 38.6418567 37.61983731 38.37268071 38.23774399 38.64559967 38.5086709 37.78307454 32.56539827 32.77242309 36.01464926 19.85025714 26.07488663 25.88864688 26.48890806 26.27479934 20.00977044 32.52452518 32.77198294 20.95679734 42.60943315 39.61916936 39.29574074 40.27828138 39.94669383 42.91044557 44.34946945 44.57865149 44.01643986 44.46322365 44.67900606 44.47774233 45.08820719 44.88249549 44.63739422 43.45189612 43.58079025 44.06796816 42.51113676 43.05202875 42.93915294 43.2809945 43.16596779 42.61187929 41.37424697 41.45501255 41.9754535 40.47912434 40.95533954 40.88138618 41.10534342 41.02998537 40.54828252 39.5390346 39.59952136 40.02726017 38.81294718 39.19511184 39.13764887 39.31147409 39.25305815 38.86824377 38.05989069 38.11059679 38.45184047 37.48306379 37.78805213 37.7390862 37.88645549 37.83717814 37.53054063 36.3764865 36.41657449 36.13838535 37.02278962 36.71239834 36.67033358 36.79532247 36.75406872 37.06738458 37.59688856 37.65317909 37.34070933 38.16315916 37.93863261 37.87296883 38.06781197 38.00361224 38.24108319 38.09078214 38.20142413 38.26998806 36.99088584 37.83981942 37.70965366 38.10391581 37.9712506 37.14448739 31.81228195 31.98987881 35.29036864 19.31211298 25.40451648 25.26602294 25.71523914 25.55396062 19.43241729 31.51654512 31.77057775 20.48615425 41.43544647 38.34701714 38.03778704 38.97597249 38.65998036 41.72455762 43.45816023 43.67754014 42.98081471 43.78326952 43.88650907 43.6932941 44.27863055 44.08156309 43.95091001 42.94752029 43.07204744 43.48208456 42.11678914 42.60631545 42.49716062 42.82727085 42.71633769 42.21416649 41.05777087 41.13596075 41.622781 40.2086906 40.66327476 40.59173679 40.80807549 40.73537893 40.27543262 39.30224775 39.36070208 39.7742472 38.59580433 38.96804968 38.91242841 39.08065344 39.02412145 38.64948397 37.85981785 37.90940089 38.24321448 37.29441177 37.59344428 37.54536182 37.69032455 37.64176162 37.34132039 36.21335241 36.25452246 35.98183943 36.83989092 36.54207173 36.49865978 36.62791728 36.58516036 36.88624849 37.36563955 37.42429515 37.13901267 37.84603371 37.67232272 37.60437435 37.80666786 37.73977105 37.92587829 37.65415179 37.76231284 37.89728338 36.40072593 37.32713547 37.20240209 37.58079303 37.45326879 36.54461102 31.16796718 31.31956995 34.63318669 18.91262462 24.91213038 24.81317727 25.13824332 25.02027164 19.0005505 30.4983389 30.75236814 20.04740247 40.30229832 37.13106133 36.83541011 37.73212523 37.4299794 40.58204464 42.59974209 42.81192381 41.98382063 43.12666038 43.12423019 42.93842065 43.50194679 43.31231667 43.28882532 42.45855615 42.57952027 42.91536949 41.73445561 42.17447628 42.06838434 42.3888258 42.28127427 41.82902688 40.75054966 40.82657515 41.28073125 39.94687933 40.38025877 40.31074336 40.52073396 40.45024621 40.01160329 39.07296201 39.12963895 39.52946461 38.38507128 38.74813512 38.6941916 38.85724122 38.80247899 38.43716998 37.66457702 37.71292378 38.04017141 37.10878293 37.40269622 37.35567745 37.4975436 37.44997828 37.15484667 36.04656012 36.08855731 35.8221581 36.65063718 36.36674878 36.32223454 36.45496797 36.41099646 36.69848317 37.12649141 37.18687809 36.92957068 37.5251804 37.39828379 37.32894223 37.53601826 37.46730121 37.60548129 37.22934574 37.33432794 37.52720021 35.84935648 36.83689335 36.71796962 37.07911576 36.95727052 35.98360049 30.61908705 30.74823525 34.0389815 18.62939946 24.56540865 24.49786754 24.72259031 24.64035674 18.69079908 29.49640845 29.74455006 19.63324123 39.20876575 35.96406626 35.67889563 36.54232831 36.25186961 39.47829206 41.76557933 41.97192629 41.01832704 42.48868537 42.39220365 42.21324767 42.75463282 42.57261973 42.64651267 41.98231829 42.10031182 42.36436153 41.3621684 41.75411306 41.65058739 41.96298496 41.85823593 41.45439003 40.45119537 40.52536621 40.94764184 39.69236314 40.10488843 40.03711032 40.24169052 40.17307604 39.75536833 38.85023864 38.90535354 39.29171703 38.18038825 38.53467966 38.48224569 38.64064356 38.58747508 38.23101857 37.47433671 37.52143483 37.84268122 36.92689296 37.21632684 37.17043733 37.30894915 37.26249222 36.97198319 35.87685747 35.9195255 35.66024134 36.45609043 36.1872853 36.14185021 36.27748349 36.23249979 36.50516133 36.88193403 36.94342167 36.71399972 37.20569786 37.11966102 37.04963898 37.25934628 37.18956827 37.28527612 36.81789646 36.91947176 37.1625351 35.33512213 36.36977709 36.25653728 36.60048498 36.48441481 35.4603711 30.1490022 30.26010843 33.5014896 18.44724859 24.33178558 24.28726644 24.43672487 24.38133601 18.4837081 28.52453443 28.76410036 19.24794292 38.15539292 34.84038957 34.56651701 35.39655609 35.11701309 38.41511399 40.95446664 41.15515772 40.07966824 41.86802526 41.68425417 41.51029201 42.0356577 41.85935268 42.02164992 41.51670726 41.63220709 41.82667821 40.99830464 41.34331592 41.24191912 41.54762781 41.44521062 41.08856326 40.15849745 40.23110931 40.62212278 39.4440958 39.83604483 39.76973558 39.96971905 39.90270037 39.50563106 38.63322344 38.68698558 39.0600345 37.98124431 38.32697831 38.27587265 38.43015636 38.37840256 38.0305438 37.28893625 37.33484882 37.65044674 36.74902228 37.03444516 36.98966249 37.12483182 37.07949651 36.79310173 35.7047968 35.74800399 35.4966478 36.25735231 36.00440796 35.95823973 36.09621801 36.05040452 36.30735862 36.63455506 36.69655511 36.49404356 36.8895453 36.83947389 36.76951093 36.97956609 36.90950288 36.96821778 36.42037255 36.51842271 36.80530217 34.85472556 35.92502009 35.81724385 36.14465656 36.03414964 34.97180106 29.74241826 29.83870831 33.01278169 18.34736643 24.18053989 24.15337318 24.24726214 24.21202959 18.36644789 27.59078534 27.82072145 18.89725824 37.14016591 33.76247774 33.49990866 34.29565897 34.02756497 37.39047105 40.16345562 40.3594715 39.16934504 41.26367395 40.9943412 40.82404534 41.33749358 41.16550064 41.41305142 41.06007283 41.17347777 41.30048507 40.64142895 40.94047597 40.84084996 41.14098431 41.04051347 40.73006034 39.87136602 39.9426802 40.30290919 39.20113798 39.57270922 39.50763305 39.70374483 39.63807518 39.26142562 38.42114737 38.47374083 38.83354656 37.78706317 38.12433366 38.07439158 38.22506351 38.17455427 37.8351737 37.10806624 37.15287764 37.46303159 36.57517054 36.85691018 36.81318056 36.94514632 36.90089405 36.61825348 35.53091067 35.57452547 35.33180795 36.05563161 35.81890013 35.77219862 35.91192855 35.86548064 36.10627404 36.3862028 36.44829376 36.27142947 36.57776875 36.56033365 36.49090999 36.6996526 36.62992094 36.6552376 36.03715791 36.13160959 36.45675291 34.40559825 35.50188987 35.39942084 35.71080063 35.60567727 34.51505654 29.39003416 29.47343635 32.56725698 18.31828868 24.09331224 24.08063766 24.12989813 24.10993091 18.318371 26.69722754 26.91713874 18.58287779 36.16149443 32.72963555 32.47798243 33.24046616 32.98344988 36.40277793 39.39080145 39.58229091 38.28719199 40.67538377 40.31846047 40.15170712 40.6546367 40.48612421 40.82122751 40.61100655 40.72261862 40.78417538 40.2903217 40.54424504 40.44608388 40.74161354 40.64274992 40.37762037 39.5888431 39.65909149 39.9889029 38.96266931 39.313987 39.24993211 39.44282754 39.37828137 39.02190999 38.2133308 38.26492162 38.61149475 37.59729834 37.92611703 37.87718689 38.02471251 37.97528917 37.64435697 36.93137174 36.97517597 37.27998486 36.40521512 36.68348737 36.64074009 36.76970483 36.72647138 36.44734354 35.35571765 35.3996085 35.16608597 35.85205596 35.63154822 35.58450784 35.72540337 35.67851516 35.9030614 36.1382318 36.20013765 36.04757675 36.27141073 36.28392567 36.21544605 36.42167335 36.35266317 36.34745134 35.66836301 35.75921443 36.11758821 33.98575397 35.09972411 35.00237065 35.29824669 35.19833427 34.08806897 29.084514 29.15702465 32.16084979 18.34270766 24.06050615 24.05924266 24.07082268 24.06445756 18.33349136 25.84682518 26.05620326 18.31137249 35.21789903 31.74100214 31.4999462 32.22979624 31.98352807 35.45039817 38.63700999 38.82369705 37.43120469 40.09901166 39.65601981 39.49230522 39.98572436 39.82047051 40.24211495 40.16850941 40.27859766 40.2770608 39.94392585 40.15351185 40.05659008 40.34824988 40.25072113 40.03012667 39.3100793 39.37945482 39.67913197 38.72793842 39.05906395 38.99585129 39.18610007 39.12247432 38.78630573 38.00914747 38.05988192 38.39318277 37.41141505 37.73173442 37.68368038 37.82848457 37.77999794 37.45754863 36.75846507 36.80135612 37.10084063 36.23894463 36.51387476 36.47203428 36.59822709 36.55593384 36.28017289 35.17974388 35.22378362 34.99984237 35.64762227 35.44311534 35.39591315 35.53741904 35.49028732 35.69875932 35.89169058 35.95313493 35.82363374 35.9712206 36.01158932 35.94416621 36.14723085 36.07927857 36.04565109 35.3137576 35.40111289 35.78818244 33.59291342 34.71758525 34.62501691 34.90624487 34.81131201 33.68873817 28.81634021 28.8804606 31.78899292 18.41929702 24.06343226 24.06734505 24.05945758 24.06073756 18.39681263 25.04203285 25.24077627 18.08287549 34.30844831 30.79614159 30.56513076 31.26310286 31.02720378 34.53222284 37.90170141 38.08392944 36.60061245 39.53154905 39.00575322 38.84503532 39.32937492 39.16717059 39.67261168 39.73165069 39.84033409 39.77960229 39.60147248 39.76745199 39.67159719 39.95994371 39.86356553 39.68675218 39.0344275 39.10307952 39.37286417 38.49633423 38.80729101 38.74477687 38.93282241 38.86997021 38.55397374 37.80807282 37.8580775 38.17803308 37.22894393 37.54067655 37.49337821 37.63582267 37.58815564 37.27426839 36.58898112 36.63105258 36.92517717 36.07612647 36.34777067 36.30675546 36.43040688 36.3889849 36.11651995 35.00346937 35.04753896 34.83341053 35.44318025 35.25427337 35.20706796 35.34870373 35.30149171 35.49425197 35.64755207 35.70831586 35.60060379 35.67773257 35.74357351 35.67728464 35.87702144 35.81015855 35.75046692 34.97272821 35.05675501 35.46857796 33.2241822 34.35402259 34.26585176 34.53358743 34.44324705 33.31422795 28.57717662 28.63480371 31.4465071 18.54517604 24.08281052 24.08964494 24.07176894 24.07738334 18.51253551 24.28563044 24.47384617 17.89767553 33.43272642 29.89499947 29.67327789 30.34003673 30.11384659 33.64738798 37.18423701 37.36217124 35.79503925 38.97271914 38.36784043 38.21029812 38.68514949 38.52600973 39.11162448 39.30039851 39.40770532 39.29019926 39.26241027 39.38556514 39.29073303 39.57600165 39.48066026 39.34688076 38.76138831 38.82942062 39.06954721 38.26733697 38.55813455 38.49621221 38.68241666 38.62020554 38.32437043 37.60963938 37.65902041 37.96554143 37.04944099 37.35247515 37.30582889 37.44624863 37.39928333 37.09406494 36.4225483 36.46388775 36.75258045 35.91647542 36.18484063 36.14457123 36.26593231 36.2252946 35.95610578 34.82736368 34.87135188 34.66714069 35.23942704 35.06563194 35.0185573 35.15989076 35.11274516 35.2902675 35.40647893 35.46643888 35.37914577 35.39113211 35.48021059 35.41511682 35.61129393 35.54560159 35.46213668 34.64445302 34.72541675 35.15860927 32.87675674 34.00748119 33.92318752 34.1787479 34.0925763 32.96167127 28.35934252 28.41278993 31.12874549 18.70853354 24.10825771 24.11497513 24.09558511 24.10259206 18.66995931 23.58116713 23.75953873 17.75827606 32.59173095 29.03904768 28.82513056 29.4612088 29.24372519 32.79584383 36.48507624 36.65906215 35.01525992 38.42271057 37.74349467 37.58895226 38.05392488 37.89796081 38.5591996 38.87527858 38.98097364 38.80759986 38.9265192 39.0076755 38.91377616 39.19615581 39.10178342 39.01020127 38.49065876 38.55814114 38.76888927 38.04056974 38.31123171 38.24982306 38.4344228 38.3727625 38.0970717 37.41348273 37.46232774 37.75532476 36.87254091 37.16675298 37.12067158 37.25932836 37.2129701 36.91654219 36.25886152 36.29954225 36.58270412 35.75975959 36.02480229 35.98521615 36.10447699 36.06455294 35.79866925 34.65181772 34.69563812 34.5013569 35.03688304 34.87768343 34.8308384 34.97153988 34.92458079 35.08737829 35.16885779 35.22792481 35.15973407 35.11132737 35.22167237 35.15774254 35.35033336 35.28584277 35.18062658 34.32762722 34.40606188 34.85781028 32.54746772 33.67606937 33.5947213 33.84000297 33.75733091 32.62768594 28.15489983 28.20676451 30.8306554 18.89601176 24.12954053 24.13436313 24.11982424 24.12566239 18.85500837 22.9325546 23.10295208 17.66675216 31.78793271 28.23128889 28.02169449 28.62883771 28.41785254 31.9780874 35.80426138 35.97630352 34.26336034 37.88257445 37.13369502 36.98075457 37.43665704 37.28328654 38.01581684 38.4560957 38.56080515 38.33172571 38.59369575 38.63384009 38.54070127 38.82021212 38.72677282 38.67654684 38.2219559 38.28900021 38.47071088 37.81571992 38.06629772 38.00530276 38.18853451 38.12735059 37.87176366 37.21926632 37.26766359 37.54705445 36.69791472 36.98317408 36.93757161 37.07471633 37.0288832 36.7413753 36.09763021 36.13772718 36.41523431 35.60576828 35.86740182 35.82842884 35.94578876 35.90651602 35.64401691 34.47704104 34.52081692 34.33640468 34.83602877 34.69090173 34.6441292 34.78409732 34.73738949 34.88595588 34.93463551 34.99335413 34.94275188 34.83846492 34.96823519 34.90467568 35.09424213 35.03079454 34.90553337 34.0197624 34.09836288 34.56614901 32.23465428 33.35895349 33.27698572 33.51563896 33.43488251 32.30831661 27.95828353 28.01233791 30.54932905 19.09561373 24.14199954 24.14403647 24.1370281 24.14044934 19.05575219 22.33976035 22.5074616 17.61965123 31.02538648 27.47542537 27.26140442 27.84660698 27.63645692 31.19349026 35.13858079 35.31755455 33.543381 37.35532608 36.54150804 36.38263956 36.83500486 36.68096259 37.48117122 38.03983529 38.1475371 37.8645585 38.26454625 38.2650606 38.16984133 38.44865311 38.35533421 38.34550505 37.95434776 38.02208055 38.17529992 37.5926528 37.82328326 37.76188791 37.94451081 37.88359652 37.64808499 37.02649993 37.07480442 37.34054108 36.52530979 36.80149501 36.75608575 36.89209675 36.84668682 36.56823902 35.93851029 35.97819709 36.24991824 35.45428832 35.71240683 35.67389342 35.78960559 35.75091266 35.49189845 34.29271297 34.35100877 34.17606563 34.64195238 34.50982995 34.44731912 34.5985001 34.55008957 34.68473593 34.68883577 34.76888232 34.73388234 34.5807008 34.7271423 34.6396054 34.84444309 34.77758646 34.63297845 33.70015041 33.81115259 34.29270036 31.94360667 33.06359923 32.94852716 33.20715131 33.11882696 31.99705022 27.75601823 27.82922333 30.28722573 19.30043428 24.14515954 24.14461106 24.14466748 24.14517429 19.26495091 21.76812713 21.97467582 17.61900428 30.31078195 26.7750831 26.49694434 27.11803509 26.89559144 30.43641017 34.4446837 34.69408114 32.86465853 36.85371338 35.97936454 35.75500962 36.25494599 36.08306038 36.94745789 37.59734236 37.75278033 37.4190157 37.9498297 37.9136568 37.77635911 38.08485742 37.98140261 38.01135984 37.66958617 37.76515031 37.89187016 37.37692677 37.58874195 37.50317541 37.70331981 37.63839489 37.42346179 36.82293568 36.88785613 37.14053757 36.35790765 36.62530586 36.56494147 36.7116717 36.66478253 36.39572547 35.77223552 35.82356249 36.0896168 35.30759957 35.56223597 35.51277381 35.63593657 35.59669688 35.34136567 48.65191647 47.95170215 47.53584602 48.62418471 48.24871842 49.03913207 53.02298032 52.03771891 51.85679121 52.36349407 52.2042328 53.16873856 50.10665555 49.25770356 48.91502622 49.84313073 49.53803243 50.4319868 45.330928 45.0816301 45.04745269 45.13884045 45.10920085 45.37715213 54.43825329 53.72600511 53.68270055 53.57121117 52.64922018 52.5114888 52.90056529 52.78024886 53.67577675 44.34179296 44.38556379 44.32986861 44.48968837 44.43555689 44.41336824 42.96874399 43.38670368 43.3097146 43.53499967 43.4619313 43.07059602 43.79311469 43.68770377 43.74102738 54.74593481 54.77937609 53.83682849 56.59067748 55.73339729 55.70740462 55.77289061 55.74530235 56.62049419 40.19595845 41.39774325 41.26613351 41.68514038 41.51474916 40.36688676 42.82536369 42.3034475 42.43498932 48.87495355 48.8773095 52.57828058 42.46367289 44.45021154 45.20480119 45.80345858 45.10845471 42.9175922 39.45053445 39.73191484 39.61409195 40.3939158 40.03330582 39.4671904 54.53218839 56.34006176 56.0022861 56.73650172 55.81389894 55.80653097 55.78964431 55.80597686 56.72555098 56.69993245 55.79755543 55.78017693 55.80852116 55.80082798 56.71789601 41.84595403 41.60573761 42.09032191 40.75435027 41.13181318 41.38848702 40.51421384 40.76026657 40.40284433 40.06288616 40.1208996 39.84362567 40.8622874 40.53896478 40.35954245 40.72406227 40.67474725 41.04398022 40.36980587 40.32310884 39.93450534 41.02556816 40.59485807 40.6241247 40.41430459 40.49047196 40.93268665 44.14839346 44.72289319 45.15943049 43.83056588 44.28577311 43.81718879 45.51571003 44.87985009 44.36629159 42.38999588 42.48841061 43.25170753 42.02437995 41.94088293 41.39635158 42.92211483 42.17828495 42.28820683 46.92048639 47.74696338 48.05185993 47.09458199 47.43594176 46.63303698 49.3818131 48.35239993 47.9878894 43.07562078 43.1458073 43.89224371 41.89312167 42.47614723 42.40554771 42.61125666 42.54506838 41.95996475 41.61842944 42.18258463 42.10419848 42.33295151 42.25853751 41.68887235 43.70294636 42.92484039 43.002728 45.61866345 45.23532361 45.22816622 45.23680023 45.2367734 45.63825199 48.7063189 49.62059191 49.79327799 49.25551832 49.45821037 48.51939622 51.50788424 50.45201755 50.24980958 43.48522401 43.51381064 44.02139474 42.38797408 42.94951349 42.90175728 43.03911575 42.99580091 42.44700104 42.15132822 42.73625909 42.67566602 42.84940251 42.79495334 42.21482789 44.02567045 43.41584131 43.45343315 44.88115996 44.77734029 44.72938276 44.86303506 44.8183618 44.94403957 43.79749353 43.69416428 43.09165321 51.13601561 53.30014773 53.16262717 53.60939832 53.47150288 51.41790897 43.62812366 43.63461969 43.86744762 42.76521484 43.24290592 43.21411377 43.29695272 43.2701944 42.81107457 42.60260378 43.11780501 43.07996304 43.18467417 43.15234603 42.6327151 43.95014744 43.60712746 43.61882278 43.71126799 43.92826927 43.86877079 44.04687718 43.98319676 43.79386262 40.12133428 39.95794596 38.68363592 40.85765233 41.04443885 41.51805284 40.34886747 41.37958333 41.25846144 56.4141848 56.49270133 56.67185148 54.35409612 55.85245265 55.67064397 56.14752517 56.00463975 54.68937675 43.58719467 43.57524865 43.51903354 43.10344402 43.4348308 43.40386444 43.48059208 43.4770645 43.22221343 42.94561862 43.34751909 43.32234314 43.39325242 43.36874896 42.98480097 43.66161515 43.61584518 43.60426158 42.06116703 42.71848571 42.62866139 42.89608969 42.80934634 42.18734741 43.45459933 43.21177861 43.27527484 34.74030761 34.16722045 31.25911061 41.3526593 38.38784343 38.86983105 48.1632936 48.33564379 53.81437165 44.99999458 48.32728782 47.62855947 44.10042826 47.19304509 46.52281604 49.69810069 48.96616001 49.13801467 48.66480116 48.81151313 49.43592782 51.33632787 50.5311203 50.53013434 50.41282332 50.48994342 51.34953646 46.98046466 46.4882974 46.00632203 47.23376991 46.78897315 47.42024842 54.99021849 54.01487102 53.72961836 47.23731013 47.17496323 47.63282672 46.14763594 46.6645963 46.69540815 46.59946593 46.63272672 46.1443666 46.146591 46.77623249 46.78429966 46.72575428 46.75562341 46.14261805 47.93269141 47.35153715 47.29651498 48.89332618 48.88018458 48.75576347 49.11449814 48.99191641 49.04551688 46.82099447 47.33487144 47.20280585 47.59939347 47.46704106 46.98587344 47.64418497 47.64381279 47.74900156 51.05127214 50.4270567 50.35722235 50.51672453 50.47792903 51.14550713 49.49229695 49.34226299 49.22334581 49.55997243 49.44725204 49.63822761 52.28049849 51.28098237 51.05863319 51.67131128 51.46596916 52.47832936 56.35178396 56.35028664 56.11485589 55.65948916 56.03569684 56.16248368 55.90452164 55.99131559 55.55777079 55.5977475 56.18771933 56.20304374 55.29454232 55.09709085 56.08283306 55.3502642 55.71399579 55.82278761 55.44341309 55.59379316 55.26646345 56.4976102 56.35700433 56.33811989 51.3113312 50.36782831 50.1074113 50.84942535 50.60585003 51.57541599 45.4996089 45.18534005 45.16170335 45.21873548 45.20189743 45.53415537 47.00688505 47.11506861 47.22674611 46.17042244 46.80520745 46.67079455 47.07082736 46.93861054 46.3331732 50.00834422 52.65746647 52.49335736 52.99038258 52.84787058 50.33621931 54.25009246 53.47133529 53.40129182 53.60972376 53.55252754 54.2998869 55.25082923 56.06272798 56.05915136 56.06859135 56.06716431 55.24178792 56.23460523 56.5081358 56.5103363 56.14473684 56.14377465 55.44492914 55.56711596 56.33046133 56.23755856 53.97129617 53.11986885 53.01769663 53.31000243 53.22360288 54.04523975 42.07424174 41.95511516 41.0071715 42.49640333 43.18559285 43.07931492 44.62030217 44.59016836 44.53719795 44.68606886 44.63514827 44.68632987 41.31342716 40.55574726 40.69857408 40.29363199 40.42237395 41.22059697 37.81151532 39.29556688 39.16319782 43.79330444 43.84307565 43.90512904 43.35966513 43.67447016 43.60592924 43.80644446 43.74131865 43.45078052 56.26875334 56.75915229 56.68681366 56.91291865 56.84302221 56.41275886 55.49749763 56.38866189 56.27398474 56.5924354 56.49936461 55.72434529 56.82136485 56.77807114 56.83062119 33.48479696 31.00672157 48.0108578 33.25233187 32.01816737 32.75314687 42.8006572 42.86813245 43.2164863 41.5221668 42.33136276 42.24256614 42.53113307 42.44376367 41.69444465 95.63999579 97.13926463 61.61733434 79.26755742 91.03834702 88.07105557 41.31750373 41.49286487 42.16124229 41.46867156 40.92637518 41.12971793 44.50835935 44.84677882 45.49773543 43.86249869 44.24708972 43.93352812 44.79465583 44.52539553 44.08043493 43.6074628 43.23337587 43.0798747 44.10486367 43.7611186 44.14616287 47.4927097 47.51251012 48.3239057 45.96389681 46.71712418 46.64626946 46.78405035 46.75990281 46.03312147 45.64387968 46.3758393 46.27172307 46.56513831 46.47075888 45.72597825 48.36394352 47.35175615 47.44231685 52.4814933 51.48173088 51.36698952 41.60910776 44.68815522 44.12531146 45.832109 45.26270327 42.16588498 56.8523654 56.12505257 56.19858019 55.61908043 55.86962933 56.74900241 51.20773273 54.05744307 53.66057103 56.76250953 57.07385046 56.97380824 46.53673795 46.70285222 47.67842234 45.24138317 45.92068695 45.77376729 46.16623745 46.04530299 45.34917028 44.67227567 45.25074754 45.02722134 45.62120399 45.43975832 44.82717975 47.05666762 46.15902622 46.35924848 45.5468435 45.0018827 45.40924448 44.26586093 44.60263632 45.05534413 43.73370032 44.07211454 43.86749585 45.15930014 44.92758657 44.41306899 45.70988252 45.21135237 45.62967321 56.43120842 56.44453146 56.48036624 55.96140965 56.04500203 55.22117909 56.53836243 56.40679737 56.41891189 56.47782706 56.48173783 56.3436089 55.31226901 56.02564277 56.01890595 56.04688939 56.04021002 55.29949201 55.33469056 55.9819306 55.97221315 56.00364168 55.99666973 55.32839495 56.40519221 56.46622668 56.47000494 39.8202984 41.30091673 40.79261761 42.58311964 41.65108058 40.20780626 41.69583055 41.73610821 41.45965228 42.4428269 42.09080821 41.98780185 42.2639104 42.17827148 42.60042466 41.88352964 41.78899601 42.02661946 43.59488222 43.37726306 43.77739409 42.46811351 42.76605641 43.01314237 42.43504866 42.60870138 42.23425584 41.89134513 41.86734628 41.55428157 42.4900932 42.14913925 42.16212925 42.10680151 42.12622561 42.39294825 42.68446179 42.3031195 42.30645923 42.1612445 42.27287136 42.68197152 41.64073337 41.8865451 41.90588178 50.74571795 49.74679226 48.96873937 50.93226573 50.22035698 51.45419763 48.88824887 47.883348 48.94730041 46.33803161 47.03485392 47.80397536 48.59772982 47.91161283 48.18528992 52.07063257 53.89860916 53.76363036 54.39046067 54.0205146 52.37807185 39.25229695 40.40152422 40.2543828 43.78881509 46.93825713 46.33842817 48.37324957 47.31491538 44.68562217 38.99663598 39.79438678 39.70678102 39.89371967 39.861709 39.16885347 50.5632255 49.60020857 49.75750563 49.28991941 49.45471244 50.37618965 51.18941759 50.17510131 50.30479651 49.8960956 50.04388864 51.06091188 47.1410006 47.87869816 48.86325764 47.82702874 47.21948532 46.93434383 46.2565985 45.89771381 46.46392378 48.23033315 48.38458296 48.25820461 48.63707886 48.50627115 48.41094995 47.85297657 47.95770948 47.8982835 47.48993477 47.8639597 47.73158008 48.12796599 47.99607043 47.66485427 50.59931431 50.13873847 50.04704495 50.29447216 50.21437513 50.71994644 50.06817698 49.7658543 49.65947104 49.96031458 49.85972043 50.20571712 55.98652469 56.32902728 56.3436584 56.2198357 56.24010482 55.73289208 56.46887443 55.61378946 55.44685699 56.29537257 56.2021676 56.64378713 48.50309283 51.9413245 51.7897422 52.28767549 52.15881358 48.83802961 55.31788075 54.07238309 53.97396446 48.48642756 48.05796694 44.27976832 50.40101708 50.30195103 53.02786992 46.00110883 49.28705258 48.90704549 39.97258313 42.08060537 41.5476251 38.43051087 39.40444977 39.3044008 39.61187662 39.50576665 38.56878846 37.60207284 38.74557287 38.70485563 39.16534263 39.07394873 38.04925969 40.15384594 40.08270378 41.57911426 40.78618569 40.16314337 40.16489257 43.30619797 43.47806547 43.48020699 43.00741317 43.41802211 43.37548976 37.65098527 34.43864311 34.92114556 33.00066135 34.20019328 37.187766 41.47549745 32.86709238 31.71556445 55.86289375 55.66589323 53.76574277 44.04171691 43.71067864 43.49350572 43.82056135 43.82547214 44.38713217 43.39177639 43.42072973 43.89309399 45.7757866 45.20234965 46.22138046 44.17174327 44.7712562 45.07579189 44.18959402 44.35815076 43.83360006 44.13245996 43.66458917 43.81147506 44.4739965 43.92337681 43.85753347 43.83303907 43.90689671 44.45302975 43.45214733 43.99636273 43.89503028 41.14301427 41.01975469 39.94824744 62.73003778 65.73048823 59.7338431 44.13974744 47.13264879 46.98569611 47.5226621 47.15469924 43.75476548 53.4999436 53.200862 54.02113275 55.48154133 56.15686048 56.14863874 56.22664504 56.21271239 55.58567362 41.45518613 42.31416276 42.19172207 42.97819576 42.87036104 42.13515742 51.74268935 51.00323373 48.70717128 37.60964351 37.26760608 35.04399479 41.23642103 40.88245528 40.74889734 53.63775056 44.85405747 43.67158754 45.30206137 46.78505762 57.66270522 41.35689432 41.20056931 40.81157718 56.28258385 56.35105151 56.61348879 42.97612163 42.81650703 42.40765446 36.86489768 36.8651855 36.95478992 36.86971447 36.86885158 36.95503592 36.80797391 36.80184646 36.83234909 36.70384609 36.68706199 36.7097395 36.65387558 36.61932345 36.62633953 36.67316773 36.61891325 36.61290528 36.74609681 36.67080767 36.65027049 36.87789719 36.77217008 36.73943744 37.06149066 36.918684 36.87574456 37.28060999 37.09745045 37.04954013 37.51045273 37.28732248 37.23989623 37.72601376 37.46776939 37.42524696 37.9087251 37.62375607 37.58945668 38.04843103 37.74661412 37.7213419 38.14497437 37.8300562 37.81528754 38.19672142 37.8760898 37.87082013 38.20326956 37.88215099 37.88408932 38.16760886 37.84869636 37.86496077 38.07249741 37.76004181 37.78844204 37.9378075 37.63325383 37.66944731 37.77845362 37.48207081 37.52300949 37.60491369 37.31647696 37.36006445 37.42412911 37.14301411 37.18789137 37.24054727 36.96584634 37.01116657 37.05704592 36.78780005 36.83298692 36.87543628 36.61078012 36.65546893 36.69673667 36.43594713 36.47992636 36.52147391 36.2639723 36.30713207 36.34983676 36.09517491 36.13746931 36.18184535 35.92968636 35.97110933 36.01739627 35.76748966 35.80806386 35.85634827 35.6085104 35.6482566 35.6984808 35.452642 35.49159543 35.54358681 35.29976959 35.33795316 35.39153281 35.1497744 35.18717001 35.24212188 35.00271084 35.03909359 35.09464849 34.85893805 34.89386267 39.85203097 40.23239553 40.17581916 43.98939339 44.03681623 44.04759722 36.79648409 38.04764731 40.94171696 53.80668984 48.72800318 48.15655112 50.47366679 50.38241148 54.07716801 50.18960211 50.46205013 49.98723203 49.42793098 49.72803673 49.99865984 51.79591072 51.95464617 52.89357044 39.38461307 39.40117084 39.61800942 39.75715838 39.52990044 39.42862878 40.30528087 40.04126001 40.2911374 40.04767093 39.72723679 39.61426203 39.49139543 39.7623068 39.84195483 40.55761323 40.15716097 40.23390634 42.06137515 42.4867608 42.25218501 49.27029926 50.18049135 50.31429968 49.92702868 50.07613617 49.11541575 42.03229517 41.78104809 41.79378725 51.84858743 51.81250011 52.74936799 42.55254943 42.11869756 42.17222484 42.01533834 42.06502025 42.50240918 42.51801649 42.49992901 43.01215703 39.47465143 40.82893227 40.96060084 57.27777722 57.57374028 57.49265633 45.65056496 45.14725606 45.16757523 45.09888517 45.12166426 45.6313433 53.69787827 53.79593811 54.46696338 54.88210122 55.02293625 53.77662269 53.94543398 54.86682317 54.88170726 42.48320407 42.35290077 42.65552447 41.31837074 41.85560834 41.76469155 40.9655649 41.46128045 41.34197967 41.67082881 41.5684557 41.05943992 42.33462191 41.91416125 41.96234926 41.8252813 41.86479882 42.27204027 42.83435227 42.41085864 42.4628229 42.21602604 42.26865927 42.69640255 30.45706399 32.68603884 33.08235723 49.60840834 48.48063768 44.29909048 48.8074595 47.57949067 44.7624722 45.47544467 45.07782242 45.08172061 50.28462163 50.60547759 50.92730496 49.21367826 49.50263207 49.20706797 40.51451451 40.92322864 40.75530579 41.21542768 41.07416873 40.63615919 39.94708511 40.17865796 39.95582122 40.5773703 40.38410078 40.09544402 50.38702638 50.67886767 49.35095625 41.91613246 41.60293286 41.5709764 41.26767241 41.48119706 41.52698942 43.28731879 43.30615088 42.52167195 43.46646611 43.46852535 43.32036999 56.05919916 57.08705494 57.07552168 56.71545457 55.53657447 55.75880802 41.06731793 41.29519472 41.66394624 52.87160422 51.91995261 51.89504738 42.77409288 43.00618915 43.2616798 36.73413419 36.72861113 36.69246962 36.80902659 36.77004635 36.77334551 36.74040763 36.76707193 36.77731275 36.59237552 36.58130524 36.55036126 36.6523473 36.61922708 36.62624622 36.64500167 36.66073995 36.683424 36.47972349 36.45618365 36.43077731 36.51590814 36.48727751 36.50568125 36.61139536 36.61009978 36.65387325 36.40701937 36.36528123 36.35189918 36.40473402 36.3856455 36.42102329 36.63875957 36.6253028 36.68446482 36.38352832 36.31861019 36.31450805 36.33681893 36.3286249 36.38678898 36.71546382 36.688559 36.77161642 36.38725852 36.30443589 36.30479616 36.3086497 36.30728255 36.3851942 36.83995616 36.80220156 36.91828956 36.40761878 36.30796934 36.31094762 36.30522135 36.30646904 36.40102034 37.00523971 36.95935988 37.11356531 36.44122348 36.32193366 36.32696632 36.31376116 36.31783677 36.43206106 37.19228726 37.14426294 37.33828648 36.48161232 36.34373739 36.35006632 36.33206408 36.33775634 36.47125593 37.37952576 37.33445037 37.56579887 36.52469574 36.37012594 36.37733204 36.356606 36.36341692 36.51451977 37.54930262 37.5106406 37.77354936 36.56772339 36.3983491 36.40544631 36.38410316 36.39210547 36.55939506 37.68967346 37.66007115 37.94700416 36.60579904 36.42415 36.44741708 36.41196598 36.41582558 36.59677793 37.79354497 37.7733491 38.07596537 36.66467196 36.46557553 36.46994599 36.45540914 36.45995607 36.65552148 37.85717228 37.8472038 38.16214759 36.69907104 36.48046826 36.4807769 36.47460302 36.4778452 36.69315415 37.88368026 37.88221894 38.20166385 36.70864939 36.47243265 36.46518878 36.48001716 36.47694423 36.70999832 37.87303059 37.87998879 38.20010051 36.67918436 36.43523255 36.42102984 36.45724539 36.44650756 36.69048894 37.81021392 37.83321512 38.147845 36.61905892 36.37140301 36.35083916 36.40650293 36.38900986 36.63729057 37.70047806 37.73319675 38.04144169 36.53312891 36.28394728 36.25812465 36.33035481 36.30701523 36.55715112 37.55999114 37.59888216 37.8995701 36.42651498 36.17723903 36.14731267 36.23272088 36.20471068 36.45510413 37.40060973 37.44307781 37.73597479 36.30403648 36.05568019 36.02273322 36.11804811 36.08649831 36.33606365 37.23042857 37.27478598 37.56014658 36.16984791 35.92318421 35.88806583 35.99058774 35.95647478 36.2043993 37.05469208 37.09987875 37.37835517 36.02716394 35.78276642 35.7461309 35.85380087 35.81786286 36.06353618 36.87679206 36.92210341 37.19458726 35.87852498 35.63680064 35.59914704 35.71034768 35.67316003 35.91615194 36.69907512 36.7440479 37.01144039 35.72585811 35.48712156 35.44882176 35.56232345 35.52432003 35.76432038 36.52303636 36.56739491 36.83049341 35.57056583 35.33511627 35.29644646 35.41133279 35.37283392 35.60956477 36.34957671 36.39315549 36.65262165 35.41359843 35.18176624 35.14289994 35.25855909 35.219784 35.45294054 36.17916708 36.22189728 36.47825814 35.25554957 35.02770934 34.98876453 35.10478824 35.06588144 35.29511044 36.0120158 36.05387388 36.30753548 35.09683813 34.87339227 34.83445064 34.95055808 34.91161764 35.1365289 35.84818139 35.8891756 36.14044099 34.93777394 34.71911969 34.68023901 34.79623241 34.7573238 34.97752282 35.68760164 35.72775881 35.97685501 34.77862673 34.5651411 34.52636637 34.64207814 34.60326605 34.81837203 35.53018166 35.56953853 35.81662154 34.61962363 34.41164594 34.37300767 34.48832316 34.44965641 34.65931291 35.37579133 35.41439725 35.65951125 34.46101262 34.25881351 34.22030797 34.33514489 34.2966929 34.50057458 35.2242523 35.2621912 35.50534326 34.30304719 34.10679157 34.068299 34.18272511 34.14460899 34.34242873 35.07523589 35.11270338 35.35395439 34.14601475 33.95573497 33.91666697 34.03125289 33.99379174 34.18510614 34.92806591 34.96568688 35.20516446 33.99335031 33.80789278 33.75680499 33.88126093 33.84456668 34.02792611 34.77509245 34.82237148 35.06110138 39.51316278 39.2429544 39.18976157 39.4302869 39.51643236 39.78567872 39.58936116 39.82199911 40.01379323 41.77729208 42.03110428 42.14622096 34.55296022 46.85468924 41.28550004 34.63571331 46.94409107 41.24810393 51.51595145 45.79007116 48.40349391 84.4734483 106.0833505 109.6503139 87.90717398 145.1089147 69.70635633 52.05913127 46.38452666 48.5211466 97.36103046 122.6402976 56.60941654 98.83478744 109.5072927 37.16406529 40.50262684 49.02291432 38.6440136 84.27643502 107.1354852 109.8040929 69.02360573 104.9683054 93.93856312 34.25182952 44.42105339 40.74729649 34.22312341 44.18841643 40.82294332 34.25866619 44.49012419 40.72797502 34.24909514 44.6095981 40.74854199 34.34157321 45.13374937 40.65257276 97.51361524 115.9597917 51.09599756 34.50883971 46.70200803 41.23144985 49.48327353 33.2267514 34.77784698 47.28649139 41.21881916 107.2950919 105.4211955 25.03880907 70.09084508 147.4081809 99.73943595 69.57301674 148.6102488 99.69698529 68.81865147 150.2328242 99.33864102 68.90293546 151.986544 90.94294665 68.12542621 152.4571574 92.46949255 68.33372561 152.1413296 90.64575849 70.1858707 151.8104133 88.48419955 48.811332 43.64924917 47.67728275 49.25048372 44.04826324 47.86814217 97.59175729 113.3896253 47.94913213 97.97289418 110.1520782 40.60053272 86.09462194 146.9292686 71.32455155 86.55906541 146.805286 70.8605244 95.7889289 133.2786514 63.19664787 55.33680873 49.59348904 49.33721093 54.56271974 48.79055948 49.18181995 34.59278041 42.77814373 41.65909156 34.38927357 43.12121212 41.45672529 34.45514427 42.96416836 41.5529466 34.55619205 42.80184028 41.63895908 34.48612972 42.92896201 41.58574314 34.22743223 44.13483774 40.85078444 34.2037809 43.89047046 40.93954824 34.37001149 43.18869485 41.39096745 34.35209298 43.52070843 41.1467843 34.23753604 43.85085808 40.95895838 34.32287765 43.62473582 41.06246766 34.25064288 44.73888996 40.81007932 34.24482853 44.64769287 40.76428401 97.37715459 120.4553606 55.28634505 34.26866475 44.78213956 40.80700644 34.34480485 45.03342041 40.69600719 97.64474041 115.368005 50.40709983 97.32947803 114.0317957 48.6773968 34.67304203 47.50549454 41.14599348 72.08181722 144.6902674 100.1725337 74.50968318 139.2970615 101.3529126 73.0199932 142.6764788 100.7145722 75.21447011 137.8766398 102.1660562 67.7229148 152.5263227 98.47433103 68.55152468 150.6357347 98.91706085 67.87721934 152.6729773 98.02382397 67.12256015 153.2118354 94.41239999 67.79177865 152.4394305 93.24701923 66.72638041 153.5560273 94.51965867 70.1807069 152.0376696 87.94669025 69.97069579 152.2937717 86.16188748 73.510417 151.422619 82.74223403 71.22598231 151.3284478 85.77019054 72.79936466 151.5061163 83.3706736 95.30405978 134.052149 63.78469266 97.6067607 118.5077474 53.57365168 34.44633135 45.97219691 41.00036331 34.41771906 45.94052677 40.98500997 34.53915384 46.05724684 40.97094355 34.55287908 46.17338206 40.96714681 34.5879898 46.74351893 41.26754358 34.63810791 47.07048071 41.23880981 50.59281907 45.0437033 48.27096418 97.84090541 110.7401936 41.96352984 84.12247661 104.1459609 109.4830984 87.74266357 145.4601944 70.08365307 59.5340616 54.34431802 50.31446006 60.56924511 55.77605231 50.6415331 58.42803806 52.99316457 50.04053361 57.15396002 51.57256915 49.73396614 52.92726366 47.16273371 48.7547121 97.90525862 121.6001189 56.17285092 34.5580669 46.37843432 41.10788459 34.53472795 46.26686149 41.13158412 99.16675847 108.9378393 37.72376825 34.56074915 46.49066205 41.11312492 34.56267469 46.53544092 41.11928125 100.2482657 108.028825 35.10082667 35.83395009 48.54192992 40.40225213 78.32800473 153.0544828 75.49708879 88.7593404 144.5380431 69.2255323 88.92945877 144.0371682 69.46303447 66.83494531 86.55717095 54.73196682 34.2302648 44.3368663 40.77436248 34.22429687 44.28563477 40.78733851 34.25895231 44.54238638 40.72603421 34.25572476 44.59034028 40.73245436 97.75053529 119.6598112 54.70999128 97.9278083 119.0175556 54.08003041 34.31669487 45.20442982 40.65728606 34.40427258 45.90887955 40.95635819 34.38722945 45.89001618 40.91915534 34.49419888 46.18806043 41.04408023 34.52194012 46.19134872 41.00279669 34.58153002 46.68027543 41.27940764 34.58124608 47.20406265 41.26641149 105.952555 107.7404558 27.42378181 107.1756533 105.8929302 26.04040901 70.5109032 146.8969557 100.0942899 70.90178212 146.1533774 100.132913 69.23405538 149.0492836 99.37923562 68.65701651 150.060064 99.33617373 68.47090017 151.9456611 91.83043045 67.46948923 152.5211654 92.20382384 69.21348041 151.6809482 89.99380923 69.92083674 151.6160427 89.38395831 50.01717556 44.49520543 48.08362159 97.25218641 112.886067 47.35381559 98.23229569 110.1073982 41.07353841 73.32478747 103.528653 99.51354859 78.11144298 102.0783847 105.138412 80.35898488 101.8642674 107.0352652 86.98738747 146.2436315 70.49726711 95.94856917 132.9881866 62.95724188 96.38531209 131.2285494 62.23072494 95.93719145 131.8584754 62.63016041 62.93093515 59.06339305 51.26480668 61.75143072 57.25061108 50.9056637 66.80030488 64.92595374 52.68635781 64.08091669 60.65695406 51.54996536 65.27459588 62.36421778 51.91639428 56.31998502 50.70332245 49.57593553 53.58078499 47.78218813 48.95123459 34.62218492 42.73820555 41.67060373 34.40793144 43.06004654 41.4889799 34.43383 43.01648362 41.53206364 34.5372044 42.84941569 41.62673469 34.50554205 42.87854439 41.60212161 34.20436401 43.96307407 40.9209887 34.35581818 43.27023317 41.34255616 34.36045782 43.37121481 41.24453116 34.25722249 43.77411042 40.97916801 34.30111493 43.72706568 41.013133 34.24618026 44.71572326 40.79457286 34.24508629 44.67493904 40.7820957 97.85888032 120.8451446 55.72356222 34.2885972 44.82717025 40.79161024 34.34791313 44.93056109 40.7355033 97.12652426 114.2008443 49.37054934 97.57035401 115.0477504 49.96820313 34.48009459 46.1874997 41.09601979 34.48452705 46.20637405 41.14405495 99.02379963 108.7951174 38.67429053 34.63174432 46.64982839 41.08603627 100.2112813 108.1958944 34.23445113 35.85677594 47.85386019 40.97485772 73.19861783 141.0816953 101.4915301 73.38854722 141.5664675 101.2535784 75.75479084 136.1979584 102.3225886 68.08062101 151.8493117 98.45013204 68.19568722 151.590947 98.88648902 67.6188908 153.1535484 98.00569784 67.50114824 153.4326897 97.51205284 67.5172471 153.0323292 93.69525583 66.87314541 152.9951676 93.54165353 67.2329852 153.5935076 94.64808893 66.95052437 153.5943159 95.32996331 70.60540161 152.3436719 86.44851787 74.10661598 151.5844822 81.83055531 72.2254229 151.228716 84.97162088 72.3632674 151.4918894 84.23811805 90.40740509 140.7402769 68.52102237 90.18676076 141.6171715 68.97295975 89.10963193 143.051346 69.29403844 37.81608985 97.13195323 127.9549274 60.7373479 97.4497779 127.4378329 60.25312417 60.68504175 85.84222917 66.10208197 62.01341881 87.28364321 72.05916897 60.79012281 93.17037156 77.30928261 46.86629413 42.38002308 47.18258052 46.35910491 42.10009018 46.97846421 43.21635491 40.77660337 45.79730079 97.38336467 122.8247104 57.06351923 97.79759655 111.1525528 43.24321356 97.4855902 110.7965375 42.5782284 82.86831674 150.3553065 72.83093988 83.30688411 149.8323666 72.69451563 40.55578358 40.57657143 44.472398 42.80226134 40.62495494 45.63882735 37.50837836 41.57539403 42.60088425 38.52185561 41.07068397 43.3510614 40.24276467 40.63362541 44.31594772 38.68243306 41.00428943 43.45432935 37.38594307 41.68680551 42.45460952 36.64898363 41.96495989 42.09781996 36.53301699 41.96988984 42.09066422 109.836906 84.59169229 21.74758883 81.51636653 123.7162837 106.3057713 79.87928831 152.5125037 74.6064547 78.93935898 152.9228484 75.14100669 68.47543104 83.97605194 54.82106208 67.22829856 85.91629811 54.79196049 97.24391855 125.0779746 59.06346428 97.92512072 118.1363786 52.88409628 34.29288761 45.28655999 40.67624373 97.92430525 117.8008066 52.27248543 34.29150966 45.32310965 40.68699181 34.38185948 45.48857447 40.6738335 104.333523 107.8177496 28.96032547 97.29704486 19.25393013 104.4802345 107.7113828 28.138558 66.54673873 154.4224278 96.77077451 66.63945529 153.9383487 97.80417762 67.17789375 153.7110345 97.42171464 65.96754875 154.2751251 96.78618337 67.01973193 153.5518651 95.52092836 67.03320412 153.5312718 96.19701334 94.40524837 137.0537015 64.72065756 68.50677411 81.39547202 55.08675823 68.5512692 70.72601071 53.77764444 44.91666243 41.39082943 46.46698094 44.45746899 41.17952395 46.29444732 97.44758033 124.8179569 58.5457158 81.78344794 151.4966164 73.34646136 67.61745591 67.63287132 53.19668638 41.42209761 40.60676191 44.8953165 41.74797199 40.62128887 45.07629898 37.90353333 41.32391377 42.93901533 38.05136197 41.27732014 43.03274062 39.60028811 40.86260693 43.87596838 39.28691467 40.83989731 43.78668352 37.04896079 41.87562928 42.21138196 36.92395245 41.90197632 42.16740428 36.19232232 41.98299987 42.09808944 36.30704966 41.9861765 42.0910116 34.21430807 44.02214722 40.89719595 34.39235612 45.78947321 40.72888214 34.38178478 45.84349855 40.86692607 34.40124436 45.76551426 40.68784392 34.41046735 45.61290094 40.64105141 98.44820245 109.1149496 39.69961465 101.9724644 107.9891735 32.09049315 100.8904731 108.1633661 33.15950701 84.42483203 114.2782497 109.2019343 84.19369592 115.8365941 108.4501723 70.72101807 152.078958 86.99206048 80.51194865 152.4202655 73.75904233 92.2236319 139.523816 66.73008533 94.35944626 136.5202693 64.64816142 92.97649207 138.5498326 66.44851363 63.3456202 85.43329532 57.34452954 96.68226892 129.0136245 61.23314722 97.50919754 126.9156682 59.86508822 47.40335075 42.6432516 47.34428703 48.11549785 43.11004202 47.51327025 45.86962178 41.90515281 46.78841479 43.63195274 40.91999391 45.93619916 97.83995715 123.581721 57.55286626 97.48890554 111.2697109 43.91470014 82.09039009 102.7094904 108.8814726 82.98598969 150.8245951 72.61754904 83.82881097 148.3970924 72.47511312 85.0762154 147.4918797 71.9845826 40.79739074 40.55347192 44.62740293 42.43854594 40.57899836 45.46899692 37.62728346 41.45947409 42.73059337 38.35990262 41.15007816 43.23977036 40.05007231 40.71083649 44.15834999 38.91266721 40.90514631 43.5924493 37.28610221 41.7822685 42.34365678 36.71926253 41.94613267 42.11398559 36.04414945 41.9806422 42.12229517 35.95253099 41.97186411 42.14227546 36.47113573 41.98095425 42.08717123 34.93764973 42.38548909 41.88109508 35.0075345 42.3040438 41.93506795 35.35837361 42.08961918 42.0950408 35.27672603 42.1013049 42.08945398 35.89052659 41.9548592 42.15957989 35.80902012 41.92831382 42.18543369 35.41786717 42.05526401 42.11761742 35.49186043 42.0202214 42.14060558 34.90173275 42.44542803 41.83111455 34.82940765 42.50875325 41.79909475 99.39401521 108.2425609 36.25709517 111.0078686 104.2284166 24.00371576 85.39657387 110.0466329 109.697424 82.88051846 120.2268794 106.9733583 80.51279034 125.3043851 105.6068528 79.85986873 127.3503518 105.2448156 75.01344577 151.8675379 80.22078649 73.74664712 152.209049 81.06820256 80.33276506 152.4024912 74.28824007 75.58206068 151.8724006 79.5906731 76.49620733 152.0611706 78.68471926 66.53826781 104.6387502 88.27357963 96.77799427 130.4204262 61.70758961 96.73510159 130.191118 61.45178284 97.53955746 126.0416032 59.57802272 34.30453359 45.24656421 40.66428555 97.70927555 117.5982731 51.83291436 97.12632705 117.1827673 51.54856099 34.30319092 45.37636242 40.70398575 34.32389638 45.41387128 40.7027532 34.58066213 46.7151559 41.14415478 103.0077031 107.6586448 30.00127431 66.925621 154.0649143 96.84514692 67.05038256 153.8728686 97.33225105 66.77461526 153.8253432 96.58940698 66.34815041 153.8099235 96.3282858 68.92639078 73.64896243 54.51203686 69.25278638 77.79850979 54.50547448 45.39485504 41.61294533 46.61486552 44.00773708 41.05291146 46.11536716 97.87467349 123.9648081 57.91515592 97.56482569 112.5299519 45.12818855 97.14606738 112.0335689 44.71593308 97.7352607 112.4712941 45.70182954 97.54147927 112.5904475 46.50831879 76.17224061 102.4141852 102.7066953 82.31528899 151.0070838 73.04112134 41.13900377 40.56863526 44.75871345 42.06071152 40.59205174 45.27153249 37.76446358 41.40162115 42.83044996 38.20186325 41.20386326 43.13830142 39.74669718 40.81564192 44.00582897 39.17252527 40.84852818 43.71207361 37.14813059 41.83263833 42.26820083 36.84008059 41.93109402 42.13605776 36.15703745 41.98388647 42.10934728 36.35995619 41.98441285 42.08777913 35.10543238 42.17334073 42.03472384 35.04043179 42.23171816 41.99533708 35.15026966 42.13213796 42.06727252 35.22335762 42.11037143 42.08257411 35.67214581 41.90511856 42.21699693 35.74653434 41.90009989 42.21810843 35.61474917 41.92589554 42.2063284 35.54894143 41.96599312 42.18179477 34.73373467 42.60832697 41.7401653 34.79976743 42.54717675 41.76523278 34.71532233 42.64092891 41.71276518 34.66856264 42.7084659 41.69418127 34.38547971 45.80049346 40.7789256 34.38040056 45.82779008 40.82281848 34.40946331 45.74722189 40.65638626 34.41639746 45.69924882 40.64150061 102.1170238 107.6303277 31.22146782 108.4343732 105.8309572 24.41777648 110.8156668 103.0254933 23.5107942 84.98642723 111.1948199 109.4577925 83.74285519 118.5260563 107.9587887 78.63618114 131.0547183 103.9767129 79.30358488 128.6184734 104.632211 77.25044358 132.6380703 103.3385863 76.34130747 134.9598803 103.1585157 80.8498346 152.4061008 73.65050236 77.16780892 152.5588168 77.30690038 76.40756415 152.6331647 77.998703 77.70452782 152.5823536 76.75173514 78.26051277 152.7249644 76.09184926 92.23950543 139.7584682 67.18354763 91.16521431 140.2532574 67.80328363 94.66570921 134.709991 64.17157282 94.60987553 136.0242618 64.49246046 93.06690135 137.8834934 65.89613536 93.60383337 137.3598139 65.48835259 63.18219523 96.16451155 82.64359186 28.47425201 ) ; boundaryField { topAndBottom { type slip; } inlet { type fixedValue; value uniform 37; } outlet { type inletOutlet; inletValue uniform 37; value nonuniform List<scalar> 62 ( 31.96556776 32.0003315 32.08459004 32.25224032 32.66851169 32.31887816 32.10948005 32.01411031 34.12117058 34.5744316 34.66042582 34.48499592 34.18852297 31.82929413 30.18348665 19.38614745 17.62887654 30.02518003 32.59298937 36.65423126 37.24262354 37.82783915 37.78425719 37.29962146 37.07003593 36.30123501 36.03591717 35.25951454 32.46509846 32.65449807 32.88631831 33.1659913 33.49231235 33.94085321 35.01373811 34.43891276 34.02518717 33.65548155 33.32725275 33.03555397 34.29271297 34.44731912 34.68883577 34.6396054 33.70015041 32.94852716 27.75601823 24.14461106 21.76812713 26.49694434 34.4446837 35.75500962 37.59734236 37.77635911 37.66958617 37.50317541 36.82293568 36.56494147 35.77223552 35.51277381 33.75680499 34.77509245 ) ; } wing { type kqRWallFunction; value nonuniform List<scalar> 378 ( 56.83666718 41.28550004 41.24810393 48.40349391 109.6503139 69.70635633 48.5211466 56.60941654 37.16406529 38.6440136 109.8040929 93.93856312 40.74729649 40.82294332 40.72797502 40.74854199 40.65257276 51.09599756 41.23144985 33.2267514 41.21881916 25.03880907 99.73943595 99.69698529 99.33864102 90.94294665 92.46949255 90.64575849 88.48419955 47.67728275 47.86814217 47.94913213 40.60053272 71.32455155 70.8605244 63.19664787 49.33721093 49.18181995 41.65909156 41.45672529 41.5529466 41.63895908 41.58574314 40.85078444 40.93954824 41.39096745 41.1467843 40.95895838 41.06246766 40.81007932 40.76428401 55.28634505 40.80700644 40.69600719 50.40709983 48.6773968 41.14599348 100.1725337 101.3529126 100.7145722 102.1660562 98.47433103 98.91706085 98.02382397 94.41239999 93.24701923 94.51965867 87.94669025 86.16188748 82.74223403 85.77019054 83.3706736 63.78469266 53.57365168 41.00036331 40.98500997 40.97094355 40.96714681 41.26754358 41.23880981 48.27096418 41.96352984 109.4830984 70.08365307 50.31446006 50.6415331 50.04053361 49.73396614 48.7547121 56.17285092 41.10788459 41.13158412 37.72376825 41.11312492 41.11928125 35.10082667 40.40225213 75.49708879 69.2255323 69.46303447 54.73196682 40.77436248 40.78733851 40.72603421 40.73245436 54.70999128 54.08003041 40.65728606 40.95635819 40.91915534 41.04408023 41.00279669 41.27940764 41.26641149 27.42378181 26.04040901 100.0942899 100.132913 99.37923562 99.33617373 91.83043045 92.20382384 89.99380923 89.38395831 48.08362159 47.35381559 41.07353841 99.51354859 105.138412 107.0352652 70.49726711 62.95724188 62.23072494 62.63016041 51.26480668 50.9056637 52.68635781 51.54996536 51.91639428 49.57593553 48.95123459 41.67060373 41.4889799 41.53206364 41.62673469 41.60212161 40.9209887 41.34255616 41.24453116 40.97916801 41.013133 40.79457286 40.7820957 55.72356222 40.79161024 40.7355033 49.37054934 49.96820313 41.09601979 41.14405495 38.67429053 41.08603627 34.23445113 40.97485772 101.4915301 101.2535784 102.3225886 98.45013204 98.88648902 98.00569784 97.51205284 93.69525583 93.54165353 94.64808893 95.32996331 86.44851787 81.83055531 84.97162088 84.23811805 68.52102237 68.97295975 69.29403844 37.81608985 60.7373479 60.25312417 66.10208197 72.05916897 77.30928261 47.18258052 46.97846421 45.79730079 57.06351923 43.24321356 42.5782284 72.83093988 72.69451563 44.472398 45.63882735 42.60088425 43.3510614 44.31594772 43.45432935 42.45460952 42.09781996 42.09066422 21.74758883 106.3057713 74.6064547 75.14100669 54.82106208 54.79196049 59.06346428 52.88409628 40.67624373 52.27248543 40.68699181 40.6738335 28.96032547 19.25393013 28.138558 96.77077451 97.80417762 97.42171464 96.78618337 95.52092836 96.19701334 64.72065756 55.08675823 53.77764444 46.46698094 46.29444732 58.5457158 73.34646136 53.19668638 44.8953165 45.07629898 42.93901533 43.03274062 43.87596838 43.78668352 42.21138196 42.16740428 42.09808944 42.0910116 40.89719595 40.72888214 40.86692607 40.68784392 40.64105141 39.69961465 32.09049315 33.15950701 109.2019343 108.4501723 86.99206048 73.75904233 66.73008533 64.64816142 66.44851363 57.34452954 61.23314722 59.86508822 47.34428703 47.51327025 46.78841479 45.93619916 57.55286626 43.91470014 108.8814726 72.61754904 72.47511312 71.9845826 44.62740293 45.46899692 42.73059337 43.23977036 44.15834999 43.5924493 42.34365678 42.11398559 42.12229517 42.14227546 42.08717123 41.88109508 41.93506795 42.0950408 42.08945398 42.15957989 42.18543369 42.11761742 42.14060558 41.83111455 41.79909475 36.25709517 24.00371576 109.697424 106.9733583 105.6068528 105.2448156 80.22078649 81.06820256 74.28824007 79.5906731 78.68471926 88.27357963 61.70758961 61.45178284 59.57802272 40.66428555 51.83291436 51.54856099 40.70398575 40.7027532 41.14415478 30.00127431 96.84514692 97.33225105 96.58940698 96.3282858 54.51203686 54.50547448 46.61486552 46.11536716 57.91515592 45.12818855 44.71593308 45.70182954 46.50831879 102.7066953 73.04112134 44.75871345 45.27153249 42.83044996 43.13830142 44.00582897 43.71207361 42.26820083 42.13605776 42.10934728 42.08777913 42.03472384 41.99533708 42.06727252 42.08257411 42.21699693 42.21810843 42.2063284 42.18179477 41.7401653 41.76523278 41.71276518 41.69418127 40.7789256 40.82281848 40.65638626 40.64150061 31.22146782 24.41777648 23.5107942 109.4577925 107.9587887 103.9767129 104.632211 103.3385863 103.1585157 73.65050236 77.30690038 77.998703 76.75173514 76.09184926 67.18354763 67.80328363 64.17157282 64.49246046 65.89613536 65.48835259 82.64359186 28.47425201 ) ; } front { type empty; } back { type empty; } } // ************************************************************************* //
eea6f7f9252febe8baf6420b802c12236b46bafd
5bb9ada8897fcd028a0afd57e04bb5c8d3b922ed
/sourceCode/fairport/branch/nikkul/pstsdk/ndb/page.h
ac4b81ab0d42cb2594c08b75e1a5e4691f06f4bf
[ "Apache-2.0" ]
permissive
enrondata/microsoft-pst-sdk
9122e78b3b227f9477cdbd8854e912ea7b386b13
70701d755f52412f0f21ed216968e314433a324e
refs/heads/master
2022-07-27T01:48:15.472987
2018-07-22T15:27:50
2018-07-22T15:27:50
141,904,666
4
0
null
null
null
null
UTF-8
C++
false
false
19,256
h
page.h
//! \file //! \brief Page definitions //! \author Terry Mahaffey //! //! A page is 512 bytes of metadata contained in a PST file. Pages come in //! two general flavors: //! - BTree Pages (immutable) //! - Allocation Related Pages (mutable) //! //! The former are pages which collectively form the BBT and NBT. They are //! immutable. The later exist at predefined locations in the file, and are //! always modified in place. //! \ingroup ndb #ifndef PSTSDK_NDB_PAGE_H #define PSTSDK_NDB_PAGE_H #include <vector> #include "pstsdk/util/btree.h" #include "pstsdk/util/util.h" #include "pstsdk/ndb/database_iface.h" #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable:4250) #endif namespace pstsdk { //! \defgroup ndb_pagerelated Pages //! \ingroup ndb //! \brief Generic base class for all page types //! //! This class provides an abstraction around the page trailer located at the //! end of every page. The actual page content is interpretted by the child //! classes of \ref page. //! //! All pages in the pages hierarchy are also in the category of what is known //! as <i>dependant objects</i>. This means is they only keep a weak //! reference to the database context to which they're a member. Contrast this //! to an independant object such as the \ref heap, which keeps a strong ref //! or a full shared_ptr to the related context. This implies that someone //! must externally make sure the database context outlives it's pages - //! this is usually done by the database context itself. //! \sa [MS-PST] 2.2.2.7 //! \ingroup ndb_pagerelated class page { public: //! \brief Construct a page from disk //! \param[in] db The database context //! \param[in] pi Information about this page page(const shared_db_ptr& db, const page_info& pi) : m_modified(false), m_db(db), m_pid(pi.id), m_address(pi.address) { } page(const page& other) : m_modified(false), m_db(other.m_db), m_pid(0), m_address(0) { } virtual ~page() { } //! \brief Get the page id //! \returns The page id page_id get_page_id() const { return m_pid; } //! \brief Get the physical address of this page //! \returns The address of this page, or 0 for a new page ulonglong get_address() const { return m_address; } void touch(); protected: shared_db_ptr get_db_ptr() const { return shared_db_ptr(m_db); } bool m_modified; //!< Tells if the page is modified or not weak_db_ptr m_db; //!< The database context we're a member of page_id m_pid; //!< Page id ulonglong m_address; //!< Address of this page }; //!< \brief A page which forms a node in the NBT or BBT //! //! The NBT and BBT form the core of the internals of the PST, and need to be //! well understood if working at the \ref ndb. The bt_page class forms the //! nodes of both the NBT and BBT, with child classes for leaf and nonleaf //! pages. //! //! This hierarchy also models the \ref btree_node structure, inheriting the //! actual iteration and lookup logic. //! \tparam K key type //! \tparam V value type //! \sa [MS-PST] 1.3.1.1 //! \sa [MS-PST] 2.2.2.7.7 //! \ingroup ndb_pagerelated template<typename K, typename V> class bt_page : public page, public virtual btree_node<K,V> { public: //! \brief Construct a bt_page from disk //! \param[in] db The database context //! \param[in] pi Information about this page //! \param[in] level 0 for a leaf, or distance from leaf bt_page(const shared_db_ptr& db, const page_info& pi, ushort level, size_t max_entries) : page(db, pi), m_level(level), m_max_entries(max_entries) { } virtual ~bt_page() { } //! \cond write_api //! brief Inserts a new element into the page //! \param[in] key The key of new element to be inserted //! \param[in] val The value of new element to be inserted //! \returns A pair of new pages with the new element inserted virtual std::pair<std::tr1::shared_ptr<bt_page<K,V> >, std::tr1::shared_ptr<bt_page<K,V> > > insert(const K& key, const V& val) = 0; //! brief Modifies an existing element //! \param[in] key The key of element to be modified //! \param[in] val The new value of the element to be modified //! \returns A new page with the specified element modified virtual std::tr1::shared_ptr<bt_page<K,V> > modify(const K& key, const V& val) = 0; //! brief Deletes an existing element //! \param[in] key The key of element to be removed //! \returns A new page with the specified element removed virtual std::tr1::shared_ptr<bt_page<K,V> > remove(const K& key) = 0; //! \endcond //! \brief Returns the level of this bt_page //! \returns The level of this page ushort get_level() const { return m_level; } //! \brief Returns the maximum number of entries this bt_page can hold //! \return The maximum number of entries this page can hold size_t get_max_entries() const { return m_max_entries; } private: ushort m_level; //!< Our level size_t m_max_entries; //!< Maximum number of entries page can hold }; //! \brief Contains references to other bt_pages //! //! A bt_nonleaf_page makes up the body of the NBT and BBT (which differ only //! at the leaf). //! \tparam K key type //! \tparam V value type //! \sa [MS-PST] 2.2.2.7.7.2 //! \ingroup ndb_pagerelated template<typename K, typename V> class bt_nonleaf_page : public bt_page<K,V>, public btree_node_nonleaf<K,V>, public std::tr1::enable_shared_from_this<bt_nonleaf_page<K,V> > { public: //! \brief Construct a bt_nonleaf_page from disk //! \param[in] db The database context //! \param[in] pi Information about this page //! \param[in] level Distance from leaf //! \param[in] subpi Information about the child pages #ifndef BOOST_NO_RVALUE_REFERENCES bt_nonleaf_page(const shared_db_ptr& db, const page_info& pi, ushort level, std::vector<std::pair<K, page_info> > subpi, size_t max_entries) : bt_page<K,V>(db, pi, level, max_entries), m_page_info(std::move(subpi)), m_child_pages(m_page_info.size()) { } bt_nonleaf_page(const shared_db_ptr& db, ushort level, std::vector<std::pair<K, page_info> > subpi, size_t max_entries) : bt_page<K,V>(db, page_info(), level, max_entries), m_page_info(std::move(subpi)), m_child_pages(m_page_info.size()) { touch(); } #else bt_nonleaf_page(const shared_db_ptr& db, const page_info& pi, ushort level, const std::vector<std::pair<K, page_info> >& subpi, size_t max_entries) : bt_page<K,V>(db, pi, level, max_entries), m_page_info(subpi), m_child_pages(m_page_info.size()) { } bt_nonleaf_page(const shared_db_ptr& db, ushort level, const std::vector<std::pair<K, page_info> > subpi, size_t max_entries) : bt_page<K,V>(db, page_info(), level, max_entries), m_page_info(subpi), m_child_pages(m_page_info.size()) { touch(); } #endif bt_nonleaf_page(const bt_nonleaf_page& other) : bt_page<K,V>(other.get_db_ptr(), page_info(), other.get_level(), other.get_max_entries()), m_page_info(other.m_page_info), m_child_pages(other.m_child_pages) { touch(); } //! \cond write_api virtual std::pair<std::tr1::shared_ptr<bt_page>, std::tr1::shared_ptr<bt_page<K,V> > > insert(const K& key, const V& val); virtual std::tr1::shared_ptr<bt_page<K,V> > modify(const K& key, const V& val); virtual std::tr1::shared_ptr<bt_page<K,V> > remove(const K& key); //! \endcond // btree_node_nonleaf implementation const K& get_key(uint pos) const { return m_page_info[pos].first; } bt_page<K,V>* get_child(uint pos); const bt_page<K,V>* get_child(uint pos) const; uint num_values() const { return m_child_pages.size(); } private: std::vector<std::pair<K, page_info> > m_page_info; //!< Information about the child pages mutable std::vector<std::tr1::shared_ptr<bt_page<K,V> > > m_child_pages; //!< Cached child pages }; //! \brief Contains the actual key value pairs of the btree //! \tparam K key type //! \tparam V value type //! \ingroup ndb_pagerelated template<typename K, typename V> class bt_leaf_page : public bt_page<K,V>, public btree_node_leaf<K,V>, public std::tr1::enable_shared_from_this<bt_leaf_page<K,V> > { public: //! \brief Construct a leaf page from disk //! \param[in] db The database context //! \param[in] pi Information about this page //! \param[in] data The key/value pairs on this leaf page #ifndef BOOST_NO_RVALUE_REFERENCES bt_leaf_page(const shared_db_ptr& db, const page_info& pi, std::vector<std::pair<K,V> > data, size_t max_entries) : bt_page<K,V>(db, pi, 0, max_entries), m_page_data(std::move(data)) { } bt_leaf_page(const shared_db_ptr& db, std::vector<std::pair<K,V> > data, size_t max_entries) : bt_page<K,V>(db, page_info(), 0, max_entries), m_page_data(std::move(data)) { touch(); } #else bt_leaf_page(const shared_db_ptr& db, const page_info& pi, const std::vector<std::pair<K,V> >& data, size_t max_entries) : bt_page<K,V>(db, pi, 0, max_entries), m_page_data(data) { } bt_leaf_page(const shared_db_ptr& db, const std::vector<std::pair<K,V> > data, size_t max_entries) : bt_page<K,V>(db, page_info(), 0, max_entries), m_page_data(data) { touch(); } #endif bt_leaf_page(const bt_leaf_page& other) : bt_page<K,V>(other.get_db_ptr(), page_info(), 0, other.get_max_entries()), m_page_data(other.m_page_data) { touch(); } //! \cond write_api virtual std::pair<std::tr1::shared_ptr<bt_page<K,V> >, std::tr1::shared_ptr<bt_page<K,V> > > insert(const K& key, const V& val); virtual std::tr1::shared_ptr<bt_page<K,V> > modify(const K& key, const V& val); virtual std::tr1::shared_ptr<bt_page<K,V> > remove(const K& key); //! \endcond // btree_node_leaf implementation const V& get_value(uint pos) const { return m_page_data[pos].second; } const K& get_key(uint pos) const { return m_page_data[pos].first; } uint num_values() const { return m_page_data.size(); } private: std::vector<std::pair<K,V> > m_page_data; //!< The key/value pairs on this leaf page }; inline void page::touch() { if(!m_modified) { m_modified = true; m_address = 0; m_pid = get_db_ptr()->alloc_pid(); } } //! \cond dont_show_these_member_function_specializations template<> inline bt_page<block_id, block_info>* bt_nonleaf_page<block_id, block_info>::get_child(uint pos) { if(m_child_pages[pos] == NULL) { m_child_pages[pos] = this->get_db_ptr()->read_bbt_page(m_page_info[pos].second); } return m_child_pages[pos].get(); } template<> inline const bt_page<block_id, block_info>* bt_nonleaf_page<block_id, block_info>::get_child(uint pos) const { if(m_child_pages[pos] == NULL) { m_child_pages[pos] = this->get_db_ptr()->read_bbt_page(m_page_info[pos].second); } return m_child_pages[pos].get(); } template<> inline bt_page<node_id, node_info>* bt_nonleaf_page<node_id, node_info>::get_child(uint pos) { if(m_child_pages[pos] == NULL) { m_child_pages[pos] = this->get_db_ptr()->read_nbt_page(m_page_info[pos].second); } return m_child_pages[pos].get(); } template<> inline const bt_page<node_id, node_info>* bt_nonleaf_page<node_id, node_info>::get_child(uint pos) const { if(m_child_pages[pos] == NULL) { m_child_pages[pos] = this->get_db_ptr()->read_nbt_page(m_page_info[pos].second); } return m_child_pages[pos].get(); } //! \endcond template<typename K, typename V> inline std::pair<std::tr1::shared_ptr<bt_page<K,V> >, std::tr1::shared_ptr<bt_page<K,V> > > bt_nonleaf_page<K, V>::insert(const K& key, const V& val) { std::tr1::shared_ptr<bt_nonleaf_page<K, V> > copiedPage1 = shared_from_this(); if(copiedPage1.use_count() > 2) { std::tr1::shared_ptr<bt_nonleaf_page<K, V> > cnewPage = std::tr1::make_shared<bt_nonleaf_page<K, V> >(*this); return cnewPage->insert(key, val); } touch(); // mutate ourselves inplace std::tr1::shared_ptr<bt_nonleaf_page<K, V> > copiedPage2 (0); int pos = this->binary_search(key); if(pos == -1) { pos = 0; } std::pair<std::tr1::shared_ptr<bt_page<K,V> >, std::tr1::shared_ptr<bt_page<K,V> > > result (this->get_child(pos)->insert(key, val)); page_info pi; pi.id = result.first->get_page_id(); pi.address = result.first->get_address(); this->m_page_info[pos].first = result.first->get_key(0); this->m_page_info[pos].second = pi; this->m_child_pages[pos] = result.first; if(result.second.get() != 0) { pi.id = result.second->get_page_id(); pi.address = result.second->get_address(); this->m_page_info.insert(this->m_page_info.begin() + pos + 1, std::make_pair(result.second->get_key(0), pi)); this->m_child_pages.insert(this->m_child_pages.begin() + pos + 1, result.second); if(this->m_page_info.size() > this->get_max_entries()) { copiedPage2 = std::tr1::make_shared<bt_nonleaf_page<K, V> >(this->get_db_ptr(), this->get_level(), std::vector<std::pair<K, page_info> > (), this->get_max_entries()); copiedPage2->m_page_info.push_back(this->m_page_info.back()); copiedPage2->m_child_pages.push_back(this->m_child_pages.back()); this->m_page_info.pop_back(); this->m_child_pages.pop_back(); } } return std::make_pair(copiedPage1, copiedPage2); } template<typename K, typename V> inline std::tr1::shared_ptr<bt_page<K, V> > bt_nonleaf_page<K, V>::modify(const K& key, const V& val) { std::tr1::shared_ptr<bt_nonleaf_page<K, V> > copiedPage = shared_from_this(); if(copiedPage.use_count() > 2) { std::tr1::shared_ptr<bt_nonleaf_page<K, V> > cnewPage = std::tr1::make_shared<bt_nonleaf_page<K, V> >(*this); return cnewPage->modify(key, val); } touch(); // mutate ourselves inplace int pos = this->binary_search(key); if(pos == -1) { throw key_not_found<K>(key); } std::tr1::shared_ptr<bt_page<K, V> > result(this->get_child(pos)->modify(key, val)); page_info pi; pi.id = result->get_page_id(); pi.address = result->get_address(); this->m_page_info[pos].first = result->get_key(0); this->m_page_info[pos].second = pi; this->m_child_pages[pos] = result; return copiedPage; } template<typename K, typename V> inline std::tr1::shared_ptr<bt_page<K, V> > bt_nonleaf_page<K, V>::remove(const K& key) { std::tr1::shared_ptr<bt_nonleaf_page<K, V> > copiedPage = shared_from_this(); if(copiedPage.use_count() > 2) { std::tr1::shared_ptr<bt_nonleaf_page<K, V> > cnewPage = std::tr1::make_shared<bt_nonleaf_page<K, V> >(*this); return cnewPage->remove(key); } touch(); // mutate ourselves inplace int pos = this->binary_search(key); if(pos == -1) { throw key_not_found<K>(key); } std::tr1::shared_ptr<bt_page<K, V> > result(this->get_child(pos)->remove(key)); if(result.get() == 0) { this->m_page_info.erase(this->m_page_info.begin() + pos); this->m_child_pages.erase(this->m_child_pages.begin() + pos); if(this->m_page_info.size() == 0) { return std::tr1::shared_ptr<bt_nonleaf_page<K, V> >(0); } } else { page_info pi; pi.id = result->get_page_id(); pi.address = result->get_address(); this->m_page_info[pos].first = result->get_key(0); this->m_page_info[pos].second = pi; this->m_child_pages[pos] = result; } return copiedPage; } template<typename K, typename V> inline std::pair<std::shared_ptr<bt_page<K,V> >, std::tr1::shared_ptr<bt_page<K,V> > > bt_leaf_page<K, V>::insert(const K& key, const V& val) { std::tr1::shared_ptr<bt_leaf_page<K, V> > copiedPage1 = shared_from_this(); if(copiedPage1.use_count() > 2) { std::tr1::shared_ptr<bt_leaf_page<K, V> > cnewPage = std::tr1::make_shared<bt_leaf_page<K, V> >(*this); return cnewPage->insert(key, val); } touch(); // mutate ourselves inplace std::tr1::shared_ptr<bt_leaf_page<K, V> > copiedPage2 (0); int pos = this->binary_search(key); uint idx = pos + 1; if((pos > -1) && (static_cast<unsigned int>(pos) < this->m_page_data.size()) && (this->get_key(pos) == key)) { // If key already exists, behave like modify this->m_page_data[pos].second = val; } else { this->m_page_data.insert(this->m_page_data.begin() + idx, std::make_pair(key, val)); if(this->m_page_data.size() > this->get_max_entries()) { copiedPage2 = std::tr1::make_shared<bt_leaf_page<K, V> >(this->get_db_ptr(), std::vector<std::pair<K,V> >(), this->get_max_entries()); copiedPage2->m_page_data.push_back(this->m_page_data.back()); this->m_page_data.pop_back(); } } return std::make_pair(copiedPage1, copiedPage2); } template<typename K, typename V> inline std::tr1::shared_ptr<bt_page<K, V> > bt_leaf_page<K, V>::modify(const K& key, const V& val) { std::tr1::shared_ptr<bt_leaf_page<K, V> > copiedPage = shared_from_this(); if(copiedPage.use_count() > 2) { std::tr1::shared_ptr<bt_leaf_page<K, V> > cnewPage = std::tr1::make_shared<bt_leaf_page<K, V> >(*this); return cnewPage->modify(key, val); } touch(); // mutate ourselves inplace int pos = this->binary_search(key); if(pos == -1) { throw key_not_found<K>(key); } if(this->get_key(pos) != key) { throw key_not_found<K>(key); } this->m_page_data[pos].second = val; return copiedPage; } template<typename K, typename V> inline std::tr1::shared_ptr<bt_page<K, V> > bt_leaf_page<K, V>::remove(const K& key) { std::tr1::shared_ptr<bt_leaf_page<K, V> > copiedPage = shared_from_this(); if(copiedPage.use_count() > 2) { std::tr1::shared_ptr<bt_leaf_page<K, V> > cnewPage = std::tr1::make_shared<bt_leaf_page<K, V> >(*this); return cnewPage->remove(key); } touch(); // mutate ourselves inplace int pos = this->binary_search(key); if(pos == -1) { throw key_not_found<K>(key); } if(this->get_key(pos) != key) { throw key_not_found<K>(key); } this->m_page_data.erase(this->m_page_data.begin() + pos); if(this->num_values() == 0) { return std::tr1::shared_ptr<bt_leaf_page<K, V> >(0); } return copiedPage; } } // end namespace #ifdef _MSC_VER #pragma warning(pop) #endif #endif
4affb3c76b651418e74e6d87be4a558cc1999d8a
8f50c262f89d3dc4f15f2f67eb76e686b8f808f5
/LArCalorimeter/LArCnv/LArCondAthenaPool/src/LArMphysOverMcalMCCnv.h
56ed4aea9553f4b92245094eb2f0dee03a531a8a
[ "Apache-2.0" ]
permissive
strigazi/athena
2d099e6aab4a94ab8b636ae681736da4e13ac5c9
354f92551294f7be678aebcd7b9d67d2c4448176
refs/heads/master
2022-12-09T02:05:30.632208
2020-09-03T14:03:18
2020-09-03T14:03:18
292,587,480
0
1
null
null
null
null
UTF-8
C++
false
false
992
h
LArMphysOverMcalMCCnv.h
/* Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- /** * @file LArMphysOverMcalMCCnv.h * @brief AthenaPool converter LArMphysOverMcalMC * @author Walter Lampl <walter.lampl@ cern.ch> * $Id: LArMphysOverMcalMCCnv.h,v 1.2 2008-04-10 14:54:33 wlampl Exp $ */ #ifndef LArMphysOverMcalMCCnv_H #define LArMphysOverMcalMCCnv_H #include "LArMphysOverMcalCompleteCnv.h" #include "LArRawConditions/LArMphysOverMcalMC.h" typedef LArSingleFloatConverter<LArMphysOverMcalMC> LArMphysOverMcalMCCnvBase; class LArMphysOverMcalMCCnv : public LArMphysOverMcalMCCnvBase { friend class CnvFactory<LArMphysOverMcalMCCnv >; protected: public: LArMphysOverMcalMCCnv (ISvcLocator* svcloc) : LArMphysOverMcalMCCnvBase(svcloc) {} protected: virtual LArConditionsSubset<LArSingleFloatP>* createTransient (); LArConditionsSubset<LArSingleFloatP>* createTransient(LArConditionsSubset<LArMphysOverMcalP>* orig); }; #endif
9ca4d2ada1703b613da359edcd1362562c84b110
e173e8fd6d50f0c3191c9395a8c342516f651ebd
/src/Module/Modem/OOK/Modem_OOK_AWGN.cpp
3ca520b122bb2ff617ca76b7991c699b0b72c058
[ "MIT" ]
permissive
aff3ct/aff3ct
e11e0ac440b96849f73348dc6fb4a15611f807ec
8fa65a3ca9b0dcdd3d544363bc692d4f85f6f718
refs/heads/master
2023-07-19T06:59:41.908384
2022-04-21T08:34:08
2022-04-21T08:34:08
60,615,913
417
150
MIT
2022-09-14T11:09:54
2016-06-07T13:37:47
C++
UTF-8
C++
false
false
3,508
cpp
Modem_OOK_AWGN.cpp
#include <string> #include <type_traits> #include "Tools/Noise/Noise.hpp" #include "Tools/Exception/exception.hpp" #include "Module/Modem/OOK/Modem_OOK_AWGN.hpp" using namespace aff3ct; using namespace aff3ct::module; template <typename B, typename R, typename Q> Modem_OOK_AWGN<B,R,Q> ::Modem_OOK_AWGN(const int N, const bool disable_sig2) : Modem_OOK<B,R,Q>(N), disable_sig2(disable_sig2), sigma_factor((R)1.0) { const std::string name = "Modem_OOK_AWGN"; this->set_name(name); } template <typename B, typename R, typename Q> Modem_OOK_AWGN<B,R,Q>* Modem_OOK_AWGN<B,R,Q> ::clone() const { auto m = new Modem_OOK_AWGN(*this); m->deep_copy(*this); return m; } template <typename B, typename R, typename Q> void Modem_OOK_AWGN<B,R,Q> ::_demodulate(const float *CP, const Q *Y_N1, Q *Y_N2, const size_t frame_id) { if (disable_sig2) for (auto i = 0; i < this->N_fil; i++) Y_N2[i] = (Q)0.5 - Y_N1[i]; else { if (!std::is_same<R, Q>::value) throw tools::invalid_argument(__FILE__, __LINE__, __func__, "Type 'R' and 'Q' have to be the same."); if (!std::is_floating_point<Q>::value) throw tools::invalid_argument(__FILE__, __LINE__, __func__, "Type 'Q' has to be float or double."); if (*CP != this->last_channel_param) this->sigma_factor = (R)2.0 * (*CP) * (*CP); for (auto i = 0; i < this->N_fil; i++) Y_N2[i] = -((Q) 2.0 * Y_N1[i] - (Q) 1) * (Q)this->sigma_factor; } } template <typename B, typename R, typename Q> void Modem_OOK_AWGN<B,R,Q> ::_demodulate_wg(const float *CP, const R *H_N, const Q *Y_N1, Q *Y_N2, const size_t frame_id) { if (disable_sig2) for (auto i = 0; i < this->N_fil; i++) Y_N2[i] = ((Q)0.5 - Y_N1[i]) * (Q)H_N[i]; else { if (!std::is_same<R,Q>::value) throw tools::invalid_argument(__FILE__, __LINE__, __func__, "Type 'R' and 'Q' have to be the same."); if (!std::is_floating_point<Q>::value) throw tools::invalid_argument(__FILE__, __LINE__, __func__, "Type 'Q' has to be float or double."); if (*CP != this->last_channel_param) this->sigma_factor = (R)2.0 * (*CP) * (*CP); for (auto i = 0; i < this->N_fil; i++) Y_N2[i] = -((Q)2.0 * Y_N1[i] - (Q)1) * (Q)this->sigma_factor * (Q)H_N[i]; } } template <typename B, typename R, typename Q> void Modem_OOK_AWGN<B,R,Q> ::_tdemodulate(const float *CP, const Q *Y_N1, const Q *Y_N2, Q *Y_N3, const size_t frame_id) { this->_demodulate(CP, Y_N1, Y_N3, frame_id); } template <typename B, typename R, typename Q> void Modem_OOK_AWGN<B,R,Q> ::_tdemodulate_wg(const float *CP, const R *H_N, const Q *Y_N1, const Q *Y_N2, Q *Y_N3, const size_t frame_id) { this->_demodulate_wg(CP, H_N, Y_N1, Y_N3, frame_id); } // ==================================================================================== explicit template instantiation #include "Tools/types.h" #ifdef AFF3CT_MULTI_PREC template class aff3ct::module::Modem_OOK_AWGN<B_8,R_8,R_8>; template class aff3ct::module::Modem_OOK_AWGN<B_8,R_8,Q_8>; template class aff3ct::module::Modem_OOK_AWGN<B_16,R_16,R_16>; template class aff3ct::module::Modem_OOK_AWGN<B_16,R_16,Q_16>; template class aff3ct::module::Modem_OOK_AWGN<B_32,R_32,R_32>; template class aff3ct::module::Modem_OOK_AWGN<B_64,R_64,R_64>; #else template class aff3ct::module::Modem_OOK_AWGN<B,R,Q>; #if !defined(AFF3CT_32BIT_PREC) && !defined(AFF3CT_64BIT_PREC) template class aff3ct::module::Modem_OOK_AWGN<B,R,R>; #endif #endif // ==================================================================================== explicit template instantiation
7186de49d1c5371ea370d3f5df7a8ad95bb5ec3a
8be083e9fbf15606201217d6c4b87c929e418065
/branches/editable-raster-objects/util/paletteparser.hh
9b394a193f6d54a318b25556292338e663515ab3
[ "Apache-2.0" ]
permissive
BGCX067/faint-graphics-editor-svn-to-git
430768d441f3e9b353fbc128e132f7406ee48c0e
dad252f820d29ab336bcfa57138625dae6dfed60
refs/heads/master
2021-01-13T00:56:26.685520
2015-12-28T14:22:44
2015-12-28T14:22:44
48,752,914
1
1
null
null
null
null
UTF-8
C++
false
false
947
hh
paletteparser.hh
// Copyright 2012 Lukas Kemmer // // Licensed under the Apache License, Version 2.0 (the "License"); you // may not use this file except in compliance with the License. You // may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or // implied. See the License for the specific language governing // permissions and limitations under the License. #ifndef FAINT_PALETTEPARSER_HH #define FAINT_PALETTEPARSER_HH #include <istream> #include "util/draw-source-map.hh" namespace faint{ class PaletteFileError{ public: PaletteFileError( int line ); int GetLineNum() const; private: int m_line; }; // Throws PaletteFileError on invalid palette DrawSourceMap parse_palette_stream( std::istream& ); } #endif
085a137ef3b6d9f9870cef414fa7203d233e4c8f
d2249116413e870d8bf6cd133ae135bc52021208
/DISSECT code/TRACEWIN/APP.H
ec54c93f6594aca7cc4584f2c7fe652ad2f50a1f
[]
no_license
Unknow-man/mfc-4
ecbdd79cc1836767ab4b4ca72734bc4fe9f5a0b5
b58abf9eb4c6d90ef01b9f1203b174471293dfba
refs/heads/master
2023-02-17T18:22:09.276673
2021-01-20T07:46:14
2021-01-20T07:46:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
585
h
APP.H
//////////////////////////////////////////////////////////////// // TRACEWIN Copyright 1995 Microsoft Systems Journal. // If this program works, it was written by Paul DiLascia. // If not, I don't know who wrote it. // // TRACEWIN applet sits around waiting for diagnostic messages from // MFC apps that have #included TRACEWIN.H #include "resource.h" ///////////////// // Application class // class CApp : public CWinApp { public: CApp(); virtual BOOL InitInstance(); //{{AFX_MSG(CApp) afx_msg void OnAppAbout(); //}}AFX_MSG DECLARE_MESSAGE_MAP() };
e77b714d3e639b44f644c001c0f632163b39a0ee
610bd76de733558067db2f2fffee3c2566111355
/Drawing/DrawingUI.h
799160ee5578d78ff06c7cecdf3e162d66918d64
[]
no_license
OC-MCS/drawing-01-andhartman
e342567d00af17a431ad2b7cd652e0d0efd400e8
9e5ffc7613ba7de4e806c01ad20c5cc0f3c032f5
refs/heads/master
2020-05-02T09:25:22.673174
2019-04-09T15:34:41
2019-04-09T15:34:41
177,871,293
0
0
null
null
null
null
UTF-8
C++
false
false
488
h
DrawingUI.h
#pragma once #include <SFML/Graphics.hpp> #include <iostream> using namespace std; using namespace sf; #include "ShapeMgr.h" class DrawingUI { private: public: DrawingUI(Vector2f p) {} void draw(RenderWindow& win, ShapeMgr* mgr) { for (int i = 0; i != mgr->getShapes().size(); i++) mgr->getShapes()[i]->draw(win); } bool isMouseInCanvas(Vector2f mousePos) { bool inCanvas = false; if (mousePos.x > 191 && mousePos.y < 464) inCanvas = true; return inCanvas; } };
3282225c274f2aea05a8c7a8f3f696ff279c5a57
069e03bbc958ec9f727d7e8c13e84021c8d9781d
/noroute_mesh/utilities/serialisers.cpp
8112c0ec528202259a67ee24f0521d36249d5986
[]
no_license
lekoook/h_comms
611601aa7108aab61b9fd7104120f6ecd0a2e173
6d37a3fa7b7d403281b4393d814f851c55d6e093
refs/heads/master
2023-06-18T06:05:00.186693
2021-03-31T03:28:05
2021-03-31T03:28:05
268,071,319
0
1
null
2020-07-07T10:53:15
2020-05-30T12:03:31
C++
UTF-8
C++
false
false
1,001
cpp
serialisers.cpp
#include "serialisers.hpp" namespace serialisers { void copyU8(uint8_t* dest, uint8_t src) { dest[0] = src; } void copyU16(uint8_t* dest, uint16_t src) { dest[0] = (uint8_t) ((src >> 8) & 0xff); dest[1] = (uint8_t) (src & 0xff); } void copyU32(uint8_t* dest, uint32_t src) { dest[0] = (uint8_t) ((src >> 24) & 0xff); dest[1] = (uint8_t) ((src >> 16) & 0xff); dest[2] = (uint8_t) ((src >> 8) & 0xff); dest[3] = (uint8_t) (src & 0xff); } uint8_t getU8(uint8_t* src) { return src[0]; } uint16_t getU16(uint8_t* src) { uint16_t val = 0; val |= (src[0] & 0xff) << 8; val |= (src[1] & 0xff); return val; } uint32_t getU32(uint8_t* src) { uint32_t val = 0; val |= (src[0] & 0xff) << 24; val |= (src[1] & 0xff) << 16; val |= (src[2] & 0xff) << 8; val |= (src[3] & 0xff); return val; } }
25b56581e7adebe87302bb61da54e35aa3abb2ac
dd889d58720933c32edee7f4954b7a0e752fbe44
/login.h
98f1b0e1c6453952725f3365160017fde9683649
[]
no_license
Bilkim/Password-verification
eadc31499ba6da835f124a775065433018e66cbb
d49591c99148c932426fbcd0fa87def247cc348a
refs/heads/master
2022-12-17T02:01:43.151035
2020-09-23T09:35:35
2020-09-23T09:35:35
297,920,006
1
0
null
null
null
null
UTF-8
C++
false
false
1,038
h
login.h
#ifndef LOGIN_H #define LOGIN_H #include <QMainWindow> #include <QDialog> #include <QDebug> #include <QtSql> #include <QFileInfo> #include "employeeinfo.h" QT_BEGIN_NAMESPACE namespace Ui { class Login; } QT_END_NAMESPACE class Login : public QMainWindow { Q_OBJECT public: QSqlDatabase mydb; void connClose(){ mydb.close(); mydb.removeDatabase(QSqlDatabase::defaultConnection); } bool connOpen() { mydb=QSqlDatabase::addDatabase("QSQLITE"); mydb.setDatabaseName("/home/bill/Documents/Databases/newdatabase.db"); if(!mydb.open()){ qDebug()<<("Failed to open database"); return false; } else{ qDebug()<<("Connected....."); return true; } } public: Login(QWidget *parent = nullptr); ~Login(); private slots: void on_pushButton_clicked(); void on_pushButton_2_clicked(); private: Ui::Login *ui; }; #endif // LOGIN_H
af4b1d2aa8da5036d9cc47de5fbd0fd36f6bee35
488786211bce33c350ecb36ab437cee1f8557f0d
/PATB_39/main.cpp
d383d69e63ec650fd42a6ace20b5bb9bbe4df50d
[]
no_license
mjyplusone/PAT
353e6bd8737bb759e3e543e055f0b9fcd1005554
1cb0adb0156e76b41565cec5eb37a6bcafc61ca3
refs/heads/master
2020-02-26T17:25:12.541714
2016-11-04T09:02:11
2016-11-04T09:02:11
71,698,541
0
0
null
null
null
null
UTF-8
C++
false
false
491
cpp
main.cpp
#include <iostream> #include <cstring> #include <algorithm> using namespace std; int main() { char a[1001],b[1001]; int flag=1,count=0,i=0,j=0; cin>>a; cin>>b; sort(a,a+strlen(a)); sort(b,b+strlen(b)); while(i<strlen(b)&&j<strlen(a)) { if(a[j]<b[i]) j++; else if(a[j]==b[i]) {count++; i++; j++;} else i++; } if(count==strlen(b)) cout<<"Yes "<<strlen(a)-count<<endl; else cout<<"No "<<strlen(b)-count<<endl; return 0; }
1aa0f8d8e5ea15614bb1fee8e32aa58100e216bc
8a47ec571df826299b0c09a22d289753873415c2
/robotis_device/include/robotis_device/TimeStamp.h
17b749ab91490640450b77dde50c85238bf9e121
[ "BSD-3-Clause" ]
permissive
kysel/ROBOTIS-Framework
a0e4e935ccd90d740952143da04fca3d66c5a8b6
47a7028dd484a99e70d1b1ccf79444684c3bfb86
refs/heads/master
2021-01-17T22:27:12.335680
2016-05-26T10:39:38
2016-05-26T10:39:38
60,247,132
0
0
null
2016-06-02T08:38:56
2016-06-02T08:38:56
null
UTF-8
C++
false
false
407
h
TimeStamp.h
/* * TimeStamp.h * * Created on: 2016. 5. 16. * Author: zerom */ #ifndef ROBOTIS_DEVICE_INCLUDE_ROBOTIS_DEVICE_TIMESTAMP_H_ #define ROBOTIS_DEVICE_INCLUDE_ROBOTIS_DEVICE_TIMESTAMP_H_ namespace ROBOTIS { class TimeStamp { public: long sec; long nsec; TimeStamp(long sec, long nsec) : sec(sec), nsec(nsec) { } }; } #endif /* ROBOTIS_DEVICE_INCLUDE_ROBOTIS_DEVICE_TIMESTAMP_H_ */
825e1c2760e76211c207a521fc0554b41b168d3c
1b716b7df8bb47d0b32ee773632a4e1a4329e0e4
/src/libmysql-connector-cpp/vcprojects/cdk/protocol/mysqlx/protobuf/mysqlx_resultset.pb.h
e5e0c0526d87cf446099fe661661d81770c706af
[]
no_license
xingyun86/ppshuai_libmysql-connector-cpp
aa6470e21fa049f8de126b6f6aa7412e31f8ddc1
796b403fb195358e809fa693b4b0e061475547a0
refs/heads/master
2020-04-02T04:13:30.123701
2019-11-15T02:50:22
2019-11-15T02:50:22
154,006,142
0
1
null
null
null
null
UTF-8
C++
false
true
47,980
h
mysqlx_resultset.pb.h
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: mysqlx_resultset.proto #ifndef PROTOBUF_mysqlx_5fresultset_2eproto__INCLUDED #define PROTOBUF_mysqlx_5fresultset_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_lite.h> #include <google/protobuf/repeated_field.h> #include <google/protobuf/extension_set.h> // @@protoc_insertion_point(includes) namespace Mysqlx { namespace Resultset { // Internal implementation detail -- do not call these. void protobuf_AddDesc_mysqlx_5fresultset_2eproto(); void protobuf_AssignDesc_mysqlx_5fresultset_2eproto(); void protobuf_ShutdownFile_mysqlx_5fresultset_2eproto(); class FetchDoneMoreOutParams; class FetchDoneMoreResultsets; class FetchDone; class ColumnMetaData; class Row; enum ColumnMetaData_FieldType { ColumnMetaData_FieldType_SINT = 1, ColumnMetaData_FieldType_UINT = 2, ColumnMetaData_FieldType_DOUBLE = 5, ColumnMetaData_FieldType_FLOAT = 6, ColumnMetaData_FieldType_BYTES = 7, ColumnMetaData_FieldType_TIME = 10, ColumnMetaData_FieldType_DATETIME = 12, ColumnMetaData_FieldType_SET = 15, ColumnMetaData_FieldType_ENUM = 16, ColumnMetaData_FieldType_BIT = 17, ColumnMetaData_FieldType_DECIMAL = 18 }; bool ColumnMetaData_FieldType_IsValid(int value); const ColumnMetaData_FieldType ColumnMetaData_FieldType_FieldType_MIN = ColumnMetaData_FieldType_SINT; const ColumnMetaData_FieldType ColumnMetaData_FieldType_FieldType_MAX = ColumnMetaData_FieldType_DECIMAL; const int ColumnMetaData_FieldType_FieldType_ARRAYSIZE = ColumnMetaData_FieldType_FieldType_MAX + 1; enum ContentType_BYTES { GEOMETRY = 1, JSON = 2, XML = 3 }; bool ContentType_BYTES_IsValid(int value); const ContentType_BYTES ContentType_BYTES_MIN = GEOMETRY; const ContentType_BYTES ContentType_BYTES_MAX = XML; const int ContentType_BYTES_ARRAYSIZE = ContentType_BYTES_MAX + 1; enum ContentType_DATETIME { DATE = 1, DATETIME = 2 }; bool ContentType_DATETIME_IsValid(int value); const ContentType_DATETIME ContentType_DATETIME_MIN = DATE; const ContentType_DATETIME ContentType_DATETIME_MAX = DATETIME; const int ContentType_DATETIME_ARRAYSIZE = ContentType_DATETIME_MAX + 1; // =================================================================== class FetchDoneMoreOutParams : public ::google::protobuf::MessageLite { public: FetchDoneMoreOutParams(); virtual ~FetchDoneMoreOutParams(); FetchDoneMoreOutParams(const FetchDoneMoreOutParams& from); inline FetchDoneMoreOutParams& operator=(const FetchDoneMoreOutParams& from) { CopyFrom(from); return *this; } inline const ::std::string& unknown_fields() const { return _unknown_fields_; } inline ::std::string* mutable_unknown_fields() { return &_unknown_fields_; } static const FetchDoneMoreOutParams& default_instance(); #ifdef GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER // Returns the internal default instance pointer. This function can // return NULL thus should not be used by the user. This is intended // for Protobuf internal code. Please use default_instance() declared // above instead. static inline const FetchDoneMoreOutParams* internal_default_instance() { return default_instance_; } #endif void Swap(FetchDoneMoreOutParams* other); // implements Message ---------------------------------------------- FetchDoneMoreOutParams* New() const; void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from); void CopyFrom(const FetchDoneMoreOutParams& from); void MergeFrom(const FetchDoneMoreOutParams& from); void Clear(); bool IsInitialized() const; int ByteSize() const; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input); void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const; void DiscardUnknownFields(); int GetCachedSize() const { return _cached_size_; } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const; public: ::std::string GetTypeName() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // @@protoc_insertion_point(class_scope:Mysqlx.Resultset.FetchDoneMoreOutParams) private: ::std::string _unknown_fields_; ::google::protobuf::uint32 _has_bits_[1]; mutable int _cached_size_; #ifdef GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER friend void protobuf_AddDesc_mysqlx_5fresultset_2eproto_impl(); #else friend void protobuf_AddDesc_mysqlx_5fresultset_2eproto(); #endif friend void protobuf_AssignDesc_mysqlx_5fresultset_2eproto(); friend void protobuf_ShutdownFile_mysqlx_5fresultset_2eproto(); void InitAsDefaultInstance(); static FetchDoneMoreOutParams* default_instance_; }; // ------------------------------------------------------------------- class FetchDoneMoreResultsets : public ::google::protobuf::MessageLite { public: FetchDoneMoreResultsets(); virtual ~FetchDoneMoreResultsets(); FetchDoneMoreResultsets(const FetchDoneMoreResultsets& from); inline FetchDoneMoreResultsets& operator=(const FetchDoneMoreResultsets& from) { CopyFrom(from); return *this; } inline const ::std::string& unknown_fields() const { return _unknown_fields_; } inline ::std::string* mutable_unknown_fields() { return &_unknown_fields_; } static const FetchDoneMoreResultsets& default_instance(); #ifdef GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER // Returns the internal default instance pointer. This function can // return NULL thus should not be used by the user. This is intended // for Protobuf internal code. Please use default_instance() declared // above instead. static inline const FetchDoneMoreResultsets* internal_default_instance() { return default_instance_; } #endif void Swap(FetchDoneMoreResultsets* other); // implements Message ---------------------------------------------- FetchDoneMoreResultsets* New() const; void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from); void CopyFrom(const FetchDoneMoreResultsets& from); void MergeFrom(const FetchDoneMoreResultsets& from); void Clear(); bool IsInitialized() const; int ByteSize() const; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input); void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const; void DiscardUnknownFields(); int GetCachedSize() const { return _cached_size_; } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const; public: ::std::string GetTypeName() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // @@protoc_insertion_point(class_scope:Mysqlx.Resultset.FetchDoneMoreResultsets) private: ::std::string _unknown_fields_; ::google::protobuf::uint32 _has_bits_[1]; mutable int _cached_size_; #ifdef GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER friend void protobuf_AddDesc_mysqlx_5fresultset_2eproto_impl(); #else friend void protobuf_AddDesc_mysqlx_5fresultset_2eproto(); #endif friend void protobuf_AssignDesc_mysqlx_5fresultset_2eproto(); friend void protobuf_ShutdownFile_mysqlx_5fresultset_2eproto(); void InitAsDefaultInstance(); static FetchDoneMoreResultsets* default_instance_; }; // ------------------------------------------------------------------- class FetchDone : public ::google::protobuf::MessageLite { public: FetchDone(); virtual ~FetchDone(); FetchDone(const FetchDone& from); inline FetchDone& operator=(const FetchDone& from) { CopyFrom(from); return *this; } inline const ::std::string& unknown_fields() const { return _unknown_fields_; } inline ::std::string* mutable_unknown_fields() { return &_unknown_fields_; } static const FetchDone& default_instance(); #ifdef GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER // Returns the internal default instance pointer. This function can // return NULL thus should not be used by the user. This is intended // for Protobuf internal code. Please use default_instance() declared // above instead. static inline const FetchDone* internal_default_instance() { return default_instance_; } #endif void Swap(FetchDone* other); // implements Message ---------------------------------------------- FetchDone* New() const; void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from); void CopyFrom(const FetchDone& from); void MergeFrom(const FetchDone& from); void Clear(); bool IsInitialized() const; int ByteSize() const; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input); void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const; void DiscardUnknownFields(); int GetCachedSize() const { return _cached_size_; } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const; public: ::std::string GetTypeName() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // @@protoc_insertion_point(class_scope:Mysqlx.Resultset.FetchDone) private: ::std::string _unknown_fields_; ::google::protobuf::uint32 _has_bits_[1]; mutable int _cached_size_; #ifdef GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER friend void protobuf_AddDesc_mysqlx_5fresultset_2eproto_impl(); #else friend void protobuf_AddDesc_mysqlx_5fresultset_2eproto(); #endif friend void protobuf_AssignDesc_mysqlx_5fresultset_2eproto(); friend void protobuf_ShutdownFile_mysqlx_5fresultset_2eproto(); void InitAsDefaultInstance(); static FetchDone* default_instance_; }; // ------------------------------------------------------------------- class ColumnMetaData : public ::google::protobuf::MessageLite { public: ColumnMetaData(); virtual ~ColumnMetaData(); ColumnMetaData(const ColumnMetaData& from); inline ColumnMetaData& operator=(const ColumnMetaData& from) { CopyFrom(from); return *this; } inline const ::std::string& unknown_fields() const { return _unknown_fields_; } inline ::std::string* mutable_unknown_fields() { return &_unknown_fields_; } static const ColumnMetaData& default_instance(); #ifdef GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER // Returns the internal default instance pointer. This function can // return NULL thus should not be used by the user. This is intended // for Protobuf internal code. Please use default_instance() declared // above instead. static inline const ColumnMetaData* internal_default_instance() { return default_instance_; } #endif void Swap(ColumnMetaData* other); // implements Message ---------------------------------------------- ColumnMetaData* New() const; void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from); void CopyFrom(const ColumnMetaData& from); void MergeFrom(const ColumnMetaData& from); void Clear(); bool IsInitialized() const; int ByteSize() const; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input); void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const; void DiscardUnknownFields(); int GetCachedSize() const { return _cached_size_; } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const; public: ::std::string GetTypeName() const; // nested types ---------------------------------------------------- typedef ColumnMetaData_FieldType FieldType; static const FieldType SINT = ColumnMetaData_FieldType_SINT; static const FieldType UINT = ColumnMetaData_FieldType_UINT; static const FieldType DOUBLE = ColumnMetaData_FieldType_DOUBLE; static const FieldType FLOAT = ColumnMetaData_FieldType_FLOAT; static const FieldType BYTES = ColumnMetaData_FieldType_BYTES; static const FieldType TIME = ColumnMetaData_FieldType_TIME; static const FieldType DATETIME = ColumnMetaData_FieldType_DATETIME; static const FieldType SET = ColumnMetaData_FieldType_SET; static const FieldType ENUM = ColumnMetaData_FieldType_ENUM; static const FieldType BIT = ColumnMetaData_FieldType_BIT; static const FieldType DECIMAL = ColumnMetaData_FieldType_DECIMAL; static inline bool FieldType_IsValid(int value) { return ColumnMetaData_FieldType_IsValid(value); } static const FieldType FieldType_MIN = ColumnMetaData_FieldType_FieldType_MIN; static const FieldType FieldType_MAX = ColumnMetaData_FieldType_FieldType_MAX; static const int FieldType_ARRAYSIZE = ColumnMetaData_FieldType_FieldType_ARRAYSIZE; // accessors ------------------------------------------------------- // required .Mysqlx.Resultset.ColumnMetaData.FieldType type = 1; inline bool has_type() const; inline void clear_type(); static const int kTypeFieldNumber = 1; inline ::Mysqlx::Resultset::ColumnMetaData_FieldType type() const; inline void set_type(::Mysqlx::Resultset::ColumnMetaData_FieldType value); // optional bytes 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 void* value, size_t size); inline ::std::string* mutable_name(); inline ::std::string* release_name(); inline void set_allocated_name(::std::string* name); // optional bytes original_name = 3; inline bool has_original_name() const; inline void clear_original_name(); static const int kOriginalNameFieldNumber = 3; inline const ::std::string& original_name() const; inline void set_original_name(const ::std::string& value); inline void set_original_name(const char* value); inline void set_original_name(const void* value, size_t size); inline ::std::string* mutable_original_name(); inline ::std::string* release_original_name(); inline void set_allocated_original_name(::std::string* original_name); // optional bytes table = 4; inline bool has_table() const; inline void clear_table(); static const int kTableFieldNumber = 4; inline const ::std::string& table() const; inline void set_table(const ::std::string& value); inline void set_table(const char* value); inline void set_table(const void* value, size_t size); inline ::std::string* mutable_table(); inline ::std::string* release_table(); inline void set_allocated_table(::std::string* table); // optional bytes original_table = 5; inline bool has_original_table() const; inline void clear_original_table(); static const int kOriginalTableFieldNumber = 5; inline const ::std::string& original_table() const; inline void set_original_table(const ::std::string& value); inline void set_original_table(const char* value); inline void set_original_table(const void* value, size_t size); inline ::std::string* mutable_original_table(); inline ::std::string* release_original_table(); inline void set_allocated_original_table(::std::string* original_table); // optional bytes schema = 6; inline bool has_schema() const; inline void clear_schema(); static const int kSchemaFieldNumber = 6; inline const ::std::string& schema() const; inline void set_schema(const ::std::string& value); inline void set_schema(const char* value); inline void set_schema(const void* value, size_t size); inline ::std::string* mutable_schema(); inline ::std::string* release_schema(); inline void set_allocated_schema(::std::string* schema); // optional bytes catalog = 7; inline bool has_catalog() const; inline void clear_catalog(); static const int kCatalogFieldNumber = 7; inline const ::std::string& catalog() const; inline void set_catalog(const ::std::string& value); inline void set_catalog(const char* value); inline void set_catalog(const void* value, size_t size); inline ::std::string* mutable_catalog(); inline ::std::string* release_catalog(); inline void set_allocated_catalog(::std::string* catalog); // optional uint64 collation = 8; inline bool has_collation() const; inline void clear_collation(); static const int kCollationFieldNumber = 8; inline ::google::protobuf::uint64 collation() const; inline void set_collation(::google::protobuf::uint64 value); // optional uint32 fractional_digits = 9; inline bool has_fractional_digits() const; inline void clear_fractional_digits(); static const int kFractionalDigitsFieldNumber = 9; inline ::google::protobuf::uint32 fractional_digits() const; inline void set_fractional_digits(::google::protobuf::uint32 value); // optional uint32 length = 10; inline bool has_length() const; inline void clear_length(); static const int kLengthFieldNumber = 10; inline ::google::protobuf::uint32 length() const; inline void set_length(::google::protobuf::uint32 value); // optional uint32 flags = 11; inline bool has_flags() const; inline void clear_flags(); static const int kFlagsFieldNumber = 11; inline ::google::protobuf::uint32 flags() const; inline void set_flags(::google::protobuf::uint32 value); // optional uint32 content_type = 12; inline bool has_content_type() const; inline void clear_content_type(); static const int kContentTypeFieldNumber = 12; inline ::google::protobuf::uint32 content_type() const; inline void set_content_type(::google::protobuf::uint32 value); // @@protoc_insertion_point(class_scope:Mysqlx.Resultset.ColumnMetaData) private: inline void set_has_type(); inline void clear_has_type(); inline void set_has_name(); inline void clear_has_name(); inline void set_has_original_name(); inline void clear_has_original_name(); inline void set_has_table(); inline void clear_has_table(); inline void set_has_original_table(); inline void clear_has_original_table(); inline void set_has_schema(); inline void clear_has_schema(); inline void set_has_catalog(); inline void clear_has_catalog(); inline void set_has_collation(); inline void clear_has_collation(); inline void set_has_fractional_digits(); inline void clear_has_fractional_digits(); inline void set_has_length(); inline void clear_has_length(); inline void set_has_flags(); inline void clear_has_flags(); inline void set_has_content_type(); inline void clear_has_content_type(); ::std::string _unknown_fields_; ::google::protobuf::uint32 _has_bits_[1]; mutable int _cached_size_; ::std::string* name_; ::std::string* original_name_; ::std::string* table_; ::std::string* original_table_; int type_; ::google::protobuf::uint32 fractional_digits_; ::std::string* schema_; ::std::string* catalog_; ::google::protobuf::uint64 collation_; ::google::protobuf::uint32 length_; ::google::protobuf::uint32 flags_; ::google::protobuf::uint32 content_type_; #ifdef GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER friend void protobuf_AddDesc_mysqlx_5fresultset_2eproto_impl(); #else friend void protobuf_AddDesc_mysqlx_5fresultset_2eproto(); #endif friend void protobuf_AssignDesc_mysqlx_5fresultset_2eproto(); friend void protobuf_ShutdownFile_mysqlx_5fresultset_2eproto(); void InitAsDefaultInstance(); static ColumnMetaData* default_instance_; }; // ------------------------------------------------------------------- class Row : public ::google::protobuf::MessageLite { public: Row(); virtual ~Row(); Row(const Row& from); inline Row& operator=(const Row& from) { CopyFrom(from); return *this; } inline const ::std::string& unknown_fields() const { return _unknown_fields_; } inline ::std::string* mutable_unknown_fields() { return &_unknown_fields_; } static const Row& default_instance(); #ifdef GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER // Returns the internal default instance pointer. This function can // return NULL thus should not be used by the user. This is intended // for Protobuf internal code. Please use default_instance() declared // above instead. static inline const Row* internal_default_instance() { return default_instance_; } #endif void Swap(Row* other); // implements Message ---------------------------------------------- Row* New() const; void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from); void CopyFrom(const Row& from); void MergeFrom(const Row& from); void Clear(); bool IsInitialized() const; int ByteSize() const; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input); void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const; void DiscardUnknownFields(); int GetCachedSize() const { return _cached_size_; } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const; public: ::std::string GetTypeName() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // repeated bytes field = 1; inline int field_size() const; inline void clear_field(); static const int kFieldFieldNumber = 1; inline const ::std::string& field(int index) const; inline ::std::string* mutable_field(int index); inline void set_field(int index, const ::std::string& value); inline void set_field(int index, const char* value); inline void set_field(int index, const void* value, size_t size); inline ::std::string* add_field(); inline void add_field(const ::std::string& value); inline void add_field(const char* value); inline void add_field(const void* value, size_t size); inline const ::google::protobuf::RepeatedPtrField< ::std::string>& field() const; inline ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_field(); // @@protoc_insertion_point(class_scope:Mysqlx.Resultset.Row) private: ::std::string _unknown_fields_; ::google::protobuf::uint32 _has_bits_[1]; mutable int _cached_size_; ::google::protobuf::RepeatedPtrField< ::std::string> field_; #ifdef GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER friend void protobuf_AddDesc_mysqlx_5fresultset_2eproto_impl(); #else friend void protobuf_AddDesc_mysqlx_5fresultset_2eproto(); #endif friend void protobuf_AssignDesc_mysqlx_5fresultset_2eproto(); friend void protobuf_ShutdownFile_mysqlx_5fresultset_2eproto(); void InitAsDefaultInstance(); static Row* default_instance_; }; // =================================================================== // =================================================================== // FetchDoneMoreOutParams // ------------------------------------------------------------------- // FetchDoneMoreResultsets // ------------------------------------------------------------------- // FetchDone // ------------------------------------------------------------------- // ColumnMetaData // required .Mysqlx.Resultset.ColumnMetaData.FieldType type = 1; inline bool ColumnMetaData::has_type() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void ColumnMetaData::set_has_type() { _has_bits_[0] |= 0x00000001u; } inline void ColumnMetaData::clear_has_type() { _has_bits_[0] &= ~0x00000001u; } inline void ColumnMetaData::clear_type() { type_ = 1; clear_has_type(); } inline ::Mysqlx::Resultset::ColumnMetaData_FieldType ColumnMetaData::type() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.type) return static_cast< ::Mysqlx::Resultset::ColumnMetaData_FieldType >(type_); } inline void ColumnMetaData::set_type(::Mysqlx::Resultset::ColumnMetaData_FieldType value) { assert(::Mysqlx::Resultset::ColumnMetaData_FieldType_IsValid(value)); set_has_type(); type_ = value; // @@protoc_insertion_point(field_set:Mysqlx.Resultset.ColumnMetaData.type) } // optional bytes name = 2; inline bool ColumnMetaData::has_name() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void ColumnMetaData::set_has_name() { _has_bits_[0] |= 0x00000002u; } inline void ColumnMetaData::clear_has_name() { _has_bits_[0] &= ~0x00000002u; } inline void ColumnMetaData::clear_name() { if (name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { name_->clear(); } clear_has_name(); } inline const ::std::string& ColumnMetaData::name() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.name) return *name_; } inline void ColumnMetaData::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:Mysqlx.Resultset.ColumnMetaData.name) } inline void ColumnMetaData::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:Mysqlx.Resultset.ColumnMetaData.name) } inline void ColumnMetaData::set_name(const void* 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:Mysqlx.Resultset.ColumnMetaData.name) } inline ::std::string* ColumnMetaData::mutable_name() { set_has_name(); if (name_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { name_ = new ::std::string; } // @@protoc_insertion_point(field_mutable:Mysqlx.Resultset.ColumnMetaData.name) return name_; } inline ::std::string* ColumnMetaData::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 ColumnMetaData::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:Mysqlx.Resultset.ColumnMetaData.name) } // optional bytes original_name = 3; inline bool ColumnMetaData::has_original_name() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void ColumnMetaData::set_has_original_name() { _has_bits_[0] |= 0x00000004u; } inline void ColumnMetaData::clear_has_original_name() { _has_bits_[0] &= ~0x00000004u; } inline void ColumnMetaData::clear_original_name() { if (original_name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { original_name_->clear(); } clear_has_original_name(); } inline const ::std::string& ColumnMetaData::original_name() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.original_name) return *original_name_; } inline void ColumnMetaData::set_original_name(const ::std::string& value) { set_has_original_name(); if (original_name_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { original_name_ = new ::std::string; } original_name_->assign(value); // @@protoc_insertion_point(field_set:Mysqlx.Resultset.ColumnMetaData.original_name) } inline void ColumnMetaData::set_original_name(const char* value) { set_has_original_name(); if (original_name_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { original_name_ = new ::std::string; } original_name_->assign(value); // @@protoc_insertion_point(field_set_char:Mysqlx.Resultset.ColumnMetaData.original_name) } inline void ColumnMetaData::set_original_name(const void* value, size_t size) { set_has_original_name(); if (original_name_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { original_name_ = new ::std::string; } original_name_->assign(reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_set_pointer:Mysqlx.Resultset.ColumnMetaData.original_name) } inline ::std::string* ColumnMetaData::mutable_original_name() { set_has_original_name(); if (original_name_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { original_name_ = new ::std::string; } // @@protoc_insertion_point(field_mutable:Mysqlx.Resultset.ColumnMetaData.original_name) return original_name_; } inline ::std::string* ColumnMetaData::release_original_name() { clear_has_original_name(); if (original_name_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { return NULL; } else { ::std::string* temp = original_name_; original_name_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); return temp; } } inline void ColumnMetaData::set_allocated_original_name(::std::string* original_name) { if (original_name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete original_name_; } if (original_name) { set_has_original_name(); original_name_ = original_name; } else { clear_has_original_name(); original_name_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } // @@protoc_insertion_point(field_set_allocated:Mysqlx.Resultset.ColumnMetaData.original_name) } // optional bytes table = 4; inline bool ColumnMetaData::has_table() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void ColumnMetaData::set_has_table() { _has_bits_[0] |= 0x00000008u; } inline void ColumnMetaData::clear_has_table() { _has_bits_[0] &= ~0x00000008u; } inline void ColumnMetaData::clear_table() { if (table_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { table_->clear(); } clear_has_table(); } inline const ::std::string& ColumnMetaData::table() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.table) return *table_; } inline void ColumnMetaData::set_table(const ::std::string& value) { set_has_table(); if (table_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { table_ = new ::std::string; } table_->assign(value); // @@protoc_insertion_point(field_set:Mysqlx.Resultset.ColumnMetaData.table) } inline void ColumnMetaData::set_table(const char* value) { set_has_table(); if (table_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { table_ = new ::std::string; } table_->assign(value); // @@protoc_insertion_point(field_set_char:Mysqlx.Resultset.ColumnMetaData.table) } inline void ColumnMetaData::set_table(const void* value, size_t size) { set_has_table(); if (table_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { table_ = new ::std::string; } table_->assign(reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_set_pointer:Mysqlx.Resultset.ColumnMetaData.table) } inline ::std::string* ColumnMetaData::mutable_table() { set_has_table(); if (table_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { table_ = new ::std::string; } // @@protoc_insertion_point(field_mutable:Mysqlx.Resultset.ColumnMetaData.table) return table_; } inline ::std::string* ColumnMetaData::release_table() { clear_has_table(); if (table_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { return NULL; } else { ::std::string* temp = table_; table_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); return temp; } } inline void ColumnMetaData::set_allocated_table(::std::string* table) { if (table_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete table_; } if (table) { set_has_table(); table_ = table; } else { clear_has_table(); table_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } // @@protoc_insertion_point(field_set_allocated:Mysqlx.Resultset.ColumnMetaData.table) } // optional bytes original_table = 5; inline bool ColumnMetaData::has_original_table() const { return (_has_bits_[0] & 0x00000010u) != 0; } inline void ColumnMetaData::set_has_original_table() { _has_bits_[0] |= 0x00000010u; } inline void ColumnMetaData::clear_has_original_table() { _has_bits_[0] &= ~0x00000010u; } inline void ColumnMetaData::clear_original_table() { if (original_table_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { original_table_->clear(); } clear_has_original_table(); } inline const ::std::string& ColumnMetaData::original_table() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.original_table) return *original_table_; } inline void ColumnMetaData::set_original_table(const ::std::string& value) { set_has_original_table(); if (original_table_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { original_table_ = new ::std::string; } original_table_->assign(value); // @@protoc_insertion_point(field_set:Mysqlx.Resultset.ColumnMetaData.original_table) } inline void ColumnMetaData::set_original_table(const char* value) { set_has_original_table(); if (original_table_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { original_table_ = new ::std::string; } original_table_->assign(value); // @@protoc_insertion_point(field_set_char:Mysqlx.Resultset.ColumnMetaData.original_table) } inline void ColumnMetaData::set_original_table(const void* value, size_t size) { set_has_original_table(); if (original_table_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { original_table_ = new ::std::string; } original_table_->assign(reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_set_pointer:Mysqlx.Resultset.ColumnMetaData.original_table) } inline ::std::string* ColumnMetaData::mutable_original_table() { set_has_original_table(); if (original_table_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { original_table_ = new ::std::string; } // @@protoc_insertion_point(field_mutable:Mysqlx.Resultset.ColumnMetaData.original_table) return original_table_; } inline ::std::string* ColumnMetaData::release_original_table() { clear_has_original_table(); if (original_table_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { return NULL; } else { ::std::string* temp = original_table_; original_table_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); return temp; } } inline void ColumnMetaData::set_allocated_original_table(::std::string* original_table) { if (original_table_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete original_table_; } if (original_table) { set_has_original_table(); original_table_ = original_table; } else { clear_has_original_table(); original_table_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } // @@protoc_insertion_point(field_set_allocated:Mysqlx.Resultset.ColumnMetaData.original_table) } // optional bytes schema = 6; inline bool ColumnMetaData::has_schema() const { return (_has_bits_[0] & 0x00000020u) != 0; } inline void ColumnMetaData::set_has_schema() { _has_bits_[0] |= 0x00000020u; } inline void ColumnMetaData::clear_has_schema() { _has_bits_[0] &= ~0x00000020u; } inline void ColumnMetaData::clear_schema() { if (schema_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { schema_->clear(); } clear_has_schema(); } inline const ::std::string& ColumnMetaData::schema() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.schema) return *schema_; } inline void ColumnMetaData::set_schema(const ::std::string& value) { set_has_schema(); if (schema_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { schema_ = new ::std::string; } schema_->assign(value); // @@protoc_insertion_point(field_set:Mysqlx.Resultset.ColumnMetaData.schema) } inline void ColumnMetaData::set_schema(const char* value) { set_has_schema(); if (schema_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { schema_ = new ::std::string; } schema_->assign(value); // @@protoc_insertion_point(field_set_char:Mysqlx.Resultset.ColumnMetaData.schema) } inline void ColumnMetaData::set_schema(const void* value, size_t size) { set_has_schema(); if (schema_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { schema_ = new ::std::string; } schema_->assign(reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_set_pointer:Mysqlx.Resultset.ColumnMetaData.schema) } inline ::std::string* ColumnMetaData::mutable_schema() { set_has_schema(); if (schema_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { schema_ = new ::std::string; } // @@protoc_insertion_point(field_mutable:Mysqlx.Resultset.ColumnMetaData.schema) return schema_; } inline ::std::string* ColumnMetaData::release_schema() { clear_has_schema(); if (schema_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { return NULL; } else { ::std::string* temp = schema_; schema_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); return temp; } } inline void ColumnMetaData::set_allocated_schema(::std::string* schema) { if (schema_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete schema_; } if (schema) { set_has_schema(); schema_ = schema; } else { clear_has_schema(); schema_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } // @@protoc_insertion_point(field_set_allocated:Mysqlx.Resultset.ColumnMetaData.schema) } // optional bytes catalog = 7; inline bool ColumnMetaData::has_catalog() const { return (_has_bits_[0] & 0x00000040u) != 0; } inline void ColumnMetaData::set_has_catalog() { _has_bits_[0] |= 0x00000040u; } inline void ColumnMetaData::clear_has_catalog() { _has_bits_[0] &= ~0x00000040u; } inline void ColumnMetaData::clear_catalog() { if (catalog_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { catalog_->clear(); } clear_has_catalog(); } inline const ::std::string& ColumnMetaData::catalog() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.catalog) return *catalog_; } inline void ColumnMetaData::set_catalog(const ::std::string& value) { set_has_catalog(); if (catalog_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { catalog_ = new ::std::string; } catalog_->assign(value); // @@protoc_insertion_point(field_set:Mysqlx.Resultset.ColumnMetaData.catalog) } inline void ColumnMetaData::set_catalog(const char* value) { set_has_catalog(); if (catalog_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { catalog_ = new ::std::string; } catalog_->assign(value); // @@protoc_insertion_point(field_set_char:Mysqlx.Resultset.ColumnMetaData.catalog) } inline void ColumnMetaData::set_catalog(const void* value, size_t size) { set_has_catalog(); if (catalog_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { catalog_ = new ::std::string; } catalog_->assign(reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_set_pointer:Mysqlx.Resultset.ColumnMetaData.catalog) } inline ::std::string* ColumnMetaData::mutable_catalog() { set_has_catalog(); if (catalog_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { catalog_ = new ::std::string; } // @@protoc_insertion_point(field_mutable:Mysqlx.Resultset.ColumnMetaData.catalog) return catalog_; } inline ::std::string* ColumnMetaData::release_catalog() { clear_has_catalog(); if (catalog_ == &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { return NULL; } else { ::std::string* temp = catalog_; catalog_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); return temp; } } inline void ColumnMetaData::set_allocated_catalog(::std::string* catalog) { if (catalog_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete catalog_; } if (catalog) { set_has_catalog(); catalog_ = catalog; } else { clear_has_catalog(); catalog_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } // @@protoc_insertion_point(field_set_allocated:Mysqlx.Resultset.ColumnMetaData.catalog) } // optional uint64 collation = 8; inline bool ColumnMetaData::has_collation() const { return (_has_bits_[0] & 0x00000080u) != 0; } inline void ColumnMetaData::set_has_collation() { _has_bits_[0] |= 0x00000080u; } inline void ColumnMetaData::clear_has_collation() { _has_bits_[0] &= ~0x00000080u; } inline void ColumnMetaData::clear_collation() { collation_ = GOOGLE_ULONGLONG(0); clear_has_collation(); } inline ::google::protobuf::uint64 ColumnMetaData::collation() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.collation) return collation_; } inline void ColumnMetaData::set_collation(::google::protobuf::uint64 value) { set_has_collation(); collation_ = value; // @@protoc_insertion_point(field_set:Mysqlx.Resultset.ColumnMetaData.collation) } // optional uint32 fractional_digits = 9; inline bool ColumnMetaData::has_fractional_digits() const { return (_has_bits_[0] & 0x00000100u) != 0; } inline void ColumnMetaData::set_has_fractional_digits() { _has_bits_[0] |= 0x00000100u; } inline void ColumnMetaData::clear_has_fractional_digits() { _has_bits_[0] &= ~0x00000100u; } inline void ColumnMetaData::clear_fractional_digits() { fractional_digits_ = 0u; clear_has_fractional_digits(); } inline ::google::protobuf::uint32 ColumnMetaData::fractional_digits() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.fractional_digits) return fractional_digits_; } inline void ColumnMetaData::set_fractional_digits(::google::protobuf::uint32 value) { set_has_fractional_digits(); fractional_digits_ = value; // @@protoc_insertion_point(field_set:Mysqlx.Resultset.ColumnMetaData.fractional_digits) } // optional uint32 length = 10; inline bool ColumnMetaData::has_length() const { return (_has_bits_[0] & 0x00000200u) != 0; } inline void ColumnMetaData::set_has_length() { _has_bits_[0] |= 0x00000200u; } inline void ColumnMetaData::clear_has_length() { _has_bits_[0] &= ~0x00000200u; } inline void ColumnMetaData::clear_length() { length_ = 0u; clear_has_length(); } inline ::google::protobuf::uint32 ColumnMetaData::length() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.length) return length_; } inline void ColumnMetaData::set_length(::google::protobuf::uint32 value) { set_has_length(); length_ = value; // @@protoc_insertion_point(field_set:Mysqlx.Resultset.ColumnMetaData.length) } // optional uint32 flags = 11; inline bool ColumnMetaData::has_flags() const { return (_has_bits_[0] & 0x00000400u) != 0; } inline void ColumnMetaData::set_has_flags() { _has_bits_[0] |= 0x00000400u; } inline void ColumnMetaData::clear_has_flags() { _has_bits_[0] &= ~0x00000400u; } inline void ColumnMetaData::clear_flags() { flags_ = 0u; clear_has_flags(); } inline ::google::protobuf::uint32 ColumnMetaData::flags() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.flags) return flags_; } inline void ColumnMetaData::set_flags(::google::protobuf::uint32 value) { set_has_flags(); flags_ = value; // @@protoc_insertion_point(field_set:Mysqlx.Resultset.ColumnMetaData.flags) } // optional uint32 content_type = 12; inline bool ColumnMetaData::has_content_type() const { return (_has_bits_[0] & 0x00000800u) != 0; } inline void ColumnMetaData::set_has_content_type() { _has_bits_[0] |= 0x00000800u; } inline void ColumnMetaData::clear_has_content_type() { _has_bits_[0] &= ~0x00000800u; } inline void ColumnMetaData::clear_content_type() { content_type_ = 0u; clear_has_content_type(); } inline ::google::protobuf::uint32 ColumnMetaData::content_type() const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.ColumnMetaData.content_type) return content_type_; } inline void ColumnMetaData::set_content_type(::google::protobuf::uint32 value) { set_has_content_type(); content_type_ = value; // @@protoc_insertion_point(field_set:Mysqlx.Resultset.ColumnMetaData.content_type) } // ------------------------------------------------------------------- // Row // repeated bytes field = 1; inline int Row::field_size() const { return field_.size(); } inline void Row::clear_field() { field_.Clear(); } inline const ::std::string& Row::field(int index) const { // @@protoc_insertion_point(field_get:Mysqlx.Resultset.Row.field) return field_.Get(index); } inline ::std::string* Row::mutable_field(int index) { // @@protoc_insertion_point(field_mutable:Mysqlx.Resultset.Row.field) return field_.Mutable(index); } inline void Row::set_field(int index, const ::std::string& value) { // @@protoc_insertion_point(field_set:Mysqlx.Resultset.Row.field) field_.Mutable(index)->assign(value); } inline void Row::set_field(int index, const char* value) { field_.Mutable(index)->assign(value); // @@protoc_insertion_point(field_set_char:Mysqlx.Resultset.Row.field) } inline void Row::set_field(int index, const void* value, size_t size) { field_.Mutable(index)->assign( reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_set_pointer:Mysqlx.Resultset.Row.field) } inline ::std::string* Row::add_field() { return field_.Add(); } inline void Row::add_field(const ::std::string& value) { field_.Add()->assign(value); // @@protoc_insertion_point(field_add:Mysqlx.Resultset.Row.field) } inline void Row::add_field(const char* value) { field_.Add()->assign(value); // @@protoc_insertion_point(field_add_char:Mysqlx.Resultset.Row.field) } inline void Row::add_field(const void* value, size_t size) { field_.Add()->assign(reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_add_pointer:Mysqlx.Resultset.Row.field) } inline const ::google::protobuf::RepeatedPtrField< ::std::string>& Row::field() const { // @@protoc_insertion_point(field_list:Mysqlx.Resultset.Row.field) return field_; } inline ::google::protobuf::RepeatedPtrField< ::std::string>* Row::mutable_field() { // @@protoc_insertion_point(field_mutable_list:Mysqlx.Resultset.Row.field) return &field_; } // @@protoc_insertion_point(namespace_scope) } // namespace Resultset } // namespace Mysqlx // @@protoc_insertion_point(global_scope) #endif // PROTOBUF_mysqlx_5fresultset_2eproto__INCLUDED
712a972a512dd9e2d2af4fe8fb6646755c8f7cde
b915b1940cb3f9a4f8b2db231ea73a75ae283513
/reverse_iterative.cpp
875cd3b02a1dc8f631a1454a9273e65ee7616d84
[]
no_license
hblee12294/algorithm-prc
bc3259106ec7f4fe30289146d0fa126c038502ef
8ceaa7ac00b619f3be23e2c1dd6d90aa848c0e58
refs/heads/master
2021-06-08T21:12:27.516054
2016-12-03T14:00:02
2016-12-03T14:00:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
145
cpp
reverse_iterative.cpp
void reverse(int *A, int lo, int hi) // hi is the last item { extern void swap(int &, int &); while (lo < hi) swap(A[lo++], A[hi--]); }
c573b55c7c1673d51e7aea7d74807ea57493efa1
b9a4538ca2f3536063e1dc47735b8242726ca5df
/ctdl/Stack/Stack.cpp
f9e866bc6774683dc330b9253454c1a4ec2933c7
[]
no_license
kimman1/CTDL
3205d4c1136484e730e98dbf78b8cc64bc002d11
8b4a25653c52e2bc37c9271bf827a4d0b0c14735
refs/heads/master
2020-06-20T12:02:21.286009
2019-08-12T07:58:17
2019-08-12T07:58:17
196,961,744
0
0
null
null
null
null
UTF-8
C++
false
false
1,884
cpp
Stack.cpp
#include <iostream> using namespace std; struct node { int info; node *link; }; node *sp; void init() { sp = NULL; } void push(int x) { node * p = new node; p->info = x; p->link = sp; sp = p; } int pop(int &x) { if(sp!= NULL) { node * p = sp; x = p->info; sp = sp->link; delete p; return 1; } else { return 0; } } int isEmpty() { if(sp == NULL) return 1; return 0; } void decToBin(int &dec) { int k = dec; while(dec!= 0) { push(dec%2); dec = dec/2; } cout << "So nhi phan cua " << k << " la: "; while(!isEmpty()) { int x; pop(x); cout << x; } cout << endl; } void decToK(int dec, int k) { int c = dec; while(dec!= 0) { push(dec%k); dec = dec/k; } } int menu() { int choose = 0; cout << "============================STACK=============" << endl; cout << "0.Thoat" << endl; cout << "1.Init" << endl; cout << "2.Push" << endl; cout << "3.Pop" << endl; cout << "4.Is Empty" << endl; cout << "5.Dec to BIN" << endl; cout << "6.Dec to K" << endl; cout << "==============================================" << endl; cin >> choose; return choose; } void main() { int choose = 0; int x =0; do { choose = menu(); switch(choose) { case 0: break; case 1: init(); cout << "Init thanh cong" << endl; break; case 2: cout << "Nhap x de push" << endl; cin >> x; push(x); break; case 3: if(pop(x)) { cout << "Gia tri tai dinh " << x << endl; } else { cout << "Khong the lay gia tri tai dinh" << endl; } break; case 4: if(isEmpty() == 1) { cout << "Stack rong" << endl; } else { cout << "Stack khong rong" << endl; } break; case 5: cout << "Nhap so chuyen doi: " << endl; cin >> x; decToBin(x); break; case 6: cout << "Nhap so chuyen doi: " << endl; cin >> x; decToK(x,16); } }while(choose!= 0); }
0371f3b1f70cd99843aaa80c6188e61a7bc519a7
d319f2ce296f41ca037259087191a03cd7485d2c
/partition.cpp
a04fbbb94535189091c65e6a77bbc5a0b52856e5
[]
no_license
listenviolet/cpp
2fd34f8ef31c598a51591359ab8a376279ac3aa9
f679658b5d59ea546aaae0d35d245ed7d93128fe
refs/heads/master
2020-05-05T01:30:18.225649
2019-08-13T13:14:39
2019-08-13T13:14:39
179,604,856
0
0
null
null
null
null
UTF-8
C++
false
false
995
cpp
partition.cpp
# include <bits/stdc++.h> using namespace std; int Partition(vector<int> numbers, int start, int end) { int pivot = numbers[0]; int left = 0, right = end; while(left < right) { while(numbers[right] > pivot && left < right) { right--; } if(right > left) { numbers[left] = numbers[right]; left++; } while(numbers[left] <= pivot && left < right) { left++; } if(right < left) { numbers[right] = numbers[left]; right--; } } if(left == right) { numbers[left] = pivot; } return left; } int main() { int n; vector<int> numbers; int number; cin >> n; for(int i = 0; i < n; ++i) { cin >> number; numbers.push_back(number); } int index = Partition(numbers, 0, n - 1); cout << index << endl; return 0; }
7e0b25b9b0ba9e0ab1a9d89c97ddc6dba1c606e9
b83a7556f75904614a245b74607a08ae76717b49
/src/cmdstan/arguments/arg_variational_fullrank.hpp
43700e379ad13a730dcb47367e6f161303cf9398
[ "BSD-3-Clause", "GPL-2.0-only", "Apache-2.0" ]
permissive
stan-dev/cmdstan
35fae63a7d7dce3d81a19e17272f06a677d03f72
fa4a4b8149a200a4f8c70dfede090601dc9b19c5
refs/heads/develop
2023-09-02T17:52:15.909803
2023-09-02T03:01:56
2023-09-02T03:01:56
16,967,338
181
126
BSD-3-Clause
2023-09-13T19:09:52
2014-02-18T23:12:16
C++
UTF-8
C++
false
false
387
hpp
arg_variational_fullrank.hpp
#ifndef CMDSTAN_ARGUMENTS_VARIATIONAL_FULLRANK_HPP #define CMDSTAN_ARGUMENTS_VARIATIONAL_FULLRANK_HPP #include <cmdstan/arguments/categorical_argument.hpp> namespace cmdstan { class arg_variational_fullrank : public categorical_argument { public: arg_variational_fullrank() { _name = "fullrank"; _description = "full-rank covariance"; } }; } // namespace cmdstan #endif
fb65a7bbd18156100efdde04393c2c7c2eb6d3b2
60f4339a0a19315037b7fecec36b28668ac1448b
/Actions/ResizeAction.h
f9ae6151764037f216fd7a961dd65eb9c07dc9e5
[]
no_license
hadyelzayady/paint-for-kids
68a4952cf4b63a0ee5be80d4d95c7853dbf8f8e7
5df409f28c835b82d42770f61ff58f28419a1f74
refs/heads/master
2021-01-19T19:46:09.353233
2017-05-30T11:54:41
2017-05-30T11:54:41
84,465,573
0
0
null
null
null
null
UTF-8
C++
false
false
597
h
ResizeAction.h
#pragma once #include "Action.h" #include "ColorRectangle.h" #include <vector> #include "../Figures/CFigure.h" class ResizeAction : public Action { const double options[4] = { .25,.5,2,4 }; vector<CFigure*>ResizedList;//list of resized figures double resize; public: ResizeAction(ApplicationManager* pApp); //Reads Line parameters virtual void ReadActionParameters(); void changeAllSelected(); //Add Line to the ApplicationManager virtual void Execute(); void recover(double resize,int lastelemindex)const; void CreateResizePallete(); void Undo(); void Redo(); ~ResizeAction(); };
946e3e089e5c555fb9f2e94b632e9af1bb663f5b
d84cdffd0c23ca4e0eec2b2af7712038f8108ea9
/SEARCHING/Binary Search- Array.cpp
84b0d1176a662178b77fe25984f39ec196e10090
[]
no_license
sathya050801/Data-structures-Practise
4473b983c27c55fdc50e8bcee1168248db8f75e8
867ef8cc661baa5111bf453e400104280c32b781
refs/heads/main
2023-06-15T21:36:51.540022
2021-07-15T14:07:00
2021-07-15T14:07:00
370,735,818
0
0
null
null
null
null
UTF-8
C++
false
false
990
cpp
Binary Search- Array.cpp
/****************************************************************************** Online C++ Compiler. Code, Compile, Run and Debug C++ program online. Write your code in this editor and press "Run" button to compile and execute it. *******************************************************************************/ #include <iostream> using namespace std; int linearSearch(int arr[],int n,int key) { int low,high,mid; low=0; high=n-1; while(low<=high) { mid=(low+high)/2; if(arr[mid]==key) { return mid; } else if(arr[mid]<key) { low=mid+1; } else { high=mid-1; } } return -1; } int main() { int arr[]={1,2,3,5,6,7,8,9,10}; int n= sizeof(arr)/sizeof(arr[0]); int result=linearSearch(arr,n,6); if(result==-1) cout<<"The element is not found"; else cout<<"The elemet is found at index "<<result; return 0; }
944df0262ae4946aec87a21b23283bd37cb74319
69149270f64f73968dd7d9719be4bff56486a981
/EECE7205/hw2/q4/shapes/Square.cc
23dd9356c1dcb67a86d388516217606543f803f4
[]
no_license
liuyaqiao/Graduate
20efd810fb3467d5606840025419605c047df722
a23aa360cd262933c6be5633a535b075d7ce3e8b
refs/heads/master
2020-04-07T15:00:49.332026
2019-03-17T01:05:41
2019-03-17T01:05:41
158,415,071
0
0
null
null
null
null
UTF-8
C++
false
false
103
cc
Square.cc
#include "Square.h" Square::Square(std::string name, float width) :Rectangle(name,width,width) { }
e15be108ee09527f2a0fb0afd3d228bf1d5a72f7
23886a9bfee4dff5d7fa7951d791b3b105fd000d
/libbulletc/src/btGeneric6DofConstraint_wrap.cpp
1786b45ff47ae73efeaa599c6b51c47f1fdaa2b6
[ "Zlib" ]
permissive
RainsSoft/BulletSharpPInvoke
a4edf1a52e5dc9c055380a249c579abf062a2048
5c4bf014557c704e13f6133cf791dc120be8789d
refs/heads/master
2021-01-15T23:11:39.635346
2015-08-29T06:13:38
2015-08-29T06:13:38
41,657,848
1
0
null
2015-08-31T05:39:57
2015-08-31T05:39:57
null
UTF-8
C++
false
false
18,623
cpp
btGeneric6DofConstraint_wrap.cpp
#include <BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h> #include "conversion.h" #include "btGeneric6DofConstraint_wrap.h" btRotationalLimitMotor* btRotationalLimitMotor_new() { return new btRotationalLimitMotor(); } btRotationalLimitMotor* btRotationalLimitMotor_new2(const btRotationalLimitMotor* limot) { return new btRotationalLimitMotor(*limot); } btScalar btRotationalLimitMotor_getAccumulatedImpulse(btRotationalLimitMotor* obj) { return obj->m_accumulatedImpulse; } btScalar btRotationalLimitMotor_getBounce(btRotationalLimitMotor* obj) { return obj->m_bounce; } int btRotationalLimitMotor_getCurrentLimit(btRotationalLimitMotor* obj) { return obj->m_currentLimit; } btScalar btRotationalLimitMotor_getCurrentLimitError(btRotationalLimitMotor* obj) { return obj->m_currentLimitError; } btScalar btRotationalLimitMotor_getCurrentPosition(btRotationalLimitMotor* obj) { return obj->m_currentPosition; } btScalar btRotationalLimitMotor_getDamping(btRotationalLimitMotor* obj) { return obj->m_damping; } bool btRotationalLimitMotor_getEnableMotor(btRotationalLimitMotor* obj) { return obj->m_enableMotor; } btScalar btRotationalLimitMotor_getHiLimit(btRotationalLimitMotor* obj) { return obj->m_hiLimit; } btScalar btRotationalLimitMotor_getLimitSoftness(btRotationalLimitMotor* obj) { return obj->m_limitSoftness; } btScalar btRotationalLimitMotor_getLoLimit(btRotationalLimitMotor* obj) { return obj->m_loLimit; } btScalar btRotationalLimitMotor_getMaxLimitForce(btRotationalLimitMotor* obj) { return obj->m_maxLimitForce; } btScalar btRotationalLimitMotor_getMaxMotorForce(btRotationalLimitMotor* obj) { return obj->m_maxMotorForce; } btScalar btRotationalLimitMotor_getNormalCFM(btRotationalLimitMotor* obj) { return obj->m_normalCFM; } btScalar btRotationalLimitMotor_getStopCFM(btRotationalLimitMotor* obj) { return obj->m_stopCFM; } btScalar btRotationalLimitMotor_getStopERP(btRotationalLimitMotor* obj) { return obj->m_stopERP; } btScalar btRotationalLimitMotor_getTargetVelocity(btRotationalLimitMotor* obj) { return obj->m_targetVelocity; } bool btRotationalLimitMotor_isLimited(btRotationalLimitMotor* obj) { return obj->isLimited(); } bool btRotationalLimitMotor_needApplyTorques(btRotationalLimitMotor* obj) { return obj->needApplyTorques(); } void btRotationalLimitMotor_setAccumulatedImpulse(btRotationalLimitMotor* obj, btScalar value) { obj->m_accumulatedImpulse = value; } void btRotationalLimitMotor_setBounce(btRotationalLimitMotor* obj, btScalar value) { obj->m_bounce = value; } void btRotationalLimitMotor_setCurrentLimit(btRotationalLimitMotor* obj, int value) { obj->m_currentLimit = value; } void btRotationalLimitMotor_setCurrentLimitError(btRotationalLimitMotor* obj, btScalar value) { obj->m_currentLimitError = value; } void btRotationalLimitMotor_setCurrentPosition(btRotationalLimitMotor* obj, btScalar value) { obj->m_currentPosition = value; } void btRotationalLimitMotor_setDamping(btRotationalLimitMotor* obj, btScalar value) { obj->m_damping = value; } void btRotationalLimitMotor_setEnableMotor(btRotationalLimitMotor* obj, bool value) { obj->m_enableMotor = value; } void btRotationalLimitMotor_setHiLimit(btRotationalLimitMotor* obj, btScalar value) { obj->m_hiLimit = value; } void btRotationalLimitMotor_setLimitSoftness(btRotationalLimitMotor* obj, btScalar value) { obj->m_limitSoftness = value; } void btRotationalLimitMotor_setLoLimit(btRotationalLimitMotor* obj, btScalar value) { obj->m_loLimit = value; } void btRotationalLimitMotor_setMaxLimitForce(btRotationalLimitMotor* obj, btScalar value) { obj->m_maxLimitForce = value; } void btRotationalLimitMotor_setMaxMotorForce(btRotationalLimitMotor* obj, btScalar value) { obj->m_maxMotorForce = value; } void btRotationalLimitMotor_setNormalCFM(btRotationalLimitMotor* obj, btScalar value) { obj->m_normalCFM = value; } void btRotationalLimitMotor_setStopCFM(btRotationalLimitMotor* obj, btScalar value) { obj->m_stopCFM = value; } void btRotationalLimitMotor_setStopERP(btRotationalLimitMotor* obj, btScalar value) { obj->m_stopERP = value; } void btRotationalLimitMotor_setTargetVelocity(btRotationalLimitMotor* obj, btScalar value) { obj->m_targetVelocity = value; } btScalar btRotationalLimitMotor_solveAngularLimits(btRotationalLimitMotor* obj, btScalar timeStep, btScalar* axis, btScalar jacDiagABInv, btRigidBody* body0, btRigidBody* body1) { VECTOR3_CONV(axis); return obj->solveAngularLimits(timeStep, VECTOR3_USE(axis), jacDiagABInv, body0, body1); } int btRotationalLimitMotor_testLimitValue(btRotationalLimitMotor* obj, btScalar test_value) { return obj->testLimitValue(test_value); } void btRotationalLimitMotor_delete(btRotationalLimitMotor* obj) { delete obj; } btTranslationalLimitMotor* btTranslationalLimitMotor_new() { return new btTranslationalLimitMotor(); } btTranslationalLimitMotor* btTranslationalLimitMotor_new2(const btTranslationalLimitMotor* other) { return new btTranslationalLimitMotor(*other); } void btTranslationalLimitMotor_getAccumulatedImpulse(btTranslationalLimitMotor* obj, btScalar* value) { VECTOR3_OUT(&obj->m_accumulatedImpulse, value); } int* btTranslationalLimitMotor_getCurrentLimit(btTranslationalLimitMotor* obj) { return obj->m_currentLimit; } void btTranslationalLimitMotor_getCurrentLimitError(btTranslationalLimitMotor* obj, btScalar* value) { VECTOR3_OUT(&obj->m_currentLimitError, value); } void btTranslationalLimitMotor_getCurrentLinearDiff(btTranslationalLimitMotor* obj, btScalar* value) { VECTOR3_OUT(&obj->m_currentLinearDiff, value); } btScalar btTranslationalLimitMotor_getDamping(btTranslationalLimitMotor* obj) { return obj->m_damping; } bool* btTranslationalLimitMotor_getEnableMotor(btTranslationalLimitMotor* obj) { return obj->m_enableMotor; } btScalar btTranslationalLimitMotor_getLimitSoftness(btTranslationalLimitMotor* obj) { return obj->m_limitSoftness; } void btTranslationalLimitMotor_getLowerLimit(btTranslationalLimitMotor* obj, btScalar* value) { VECTOR3_OUT(&obj->m_lowerLimit, value); } void btTranslationalLimitMotor_getMaxMotorForce(btTranslationalLimitMotor* obj, btScalar* value) { VECTOR3_OUT(&obj->m_maxMotorForce, value); } void btTranslationalLimitMotor_getNormalCFM(btTranslationalLimitMotor* obj, btScalar* value) { VECTOR3_OUT(&obj->m_normalCFM, value); } btScalar btTranslationalLimitMotor_getRestitution(btTranslationalLimitMotor* obj) { return obj->m_restitution; } void btTranslationalLimitMotor_getStopCFM(btTranslationalLimitMotor* obj, btScalar* value) { VECTOR3_OUT(&obj->m_stopCFM, value); } void btTranslationalLimitMotor_getStopERP(btTranslationalLimitMotor* obj, btScalar* value) { VECTOR3_OUT(&obj->m_stopERP, value); } void btTranslationalLimitMotor_getTargetVelocity(btTranslationalLimitMotor* obj, btScalar* value) { VECTOR3_OUT(&obj->m_targetVelocity, value); } void btTranslationalLimitMotor_getUpperLimit(btTranslationalLimitMotor* obj, btScalar* value) { VECTOR3_OUT(&obj->m_upperLimit, value); } bool btTranslationalLimitMotor_isLimited(btTranslationalLimitMotor* obj, int limitIndex) { return obj->isLimited(limitIndex); } bool btTranslationalLimitMotor_needApplyForce(btTranslationalLimitMotor* obj, int limitIndex) { return obj->needApplyForce(limitIndex); } void btTranslationalLimitMotor_setAccumulatedImpulse(btTranslationalLimitMotor* obj, const btScalar* value) { VECTOR3_IN(value, &obj->m_accumulatedImpulse); } void btTranslationalLimitMotor_setCurrentLimitError(btTranslationalLimitMotor* obj, const btScalar* value) { VECTOR3_IN(value, &obj->m_currentLimitError); } void btTranslationalLimitMotor_setCurrentLinearDiff(btTranslationalLimitMotor* obj, const btScalar* value) { VECTOR3_IN(value, &obj->m_currentLinearDiff); } void btTranslationalLimitMotor_setDamping(btTranslationalLimitMotor* obj, btScalar value) { obj->m_damping = value; } void btTranslationalLimitMotor_setLimitSoftness(btTranslationalLimitMotor* obj, btScalar value) { obj->m_limitSoftness = value; } void btTranslationalLimitMotor_setLowerLimit(btTranslationalLimitMotor* obj, const btScalar* value) { VECTOR3_IN(value, &obj->m_lowerLimit); } void btTranslationalLimitMotor_setMaxMotorForce(btTranslationalLimitMotor* obj, const btScalar* value) { VECTOR3_IN(value, &obj->m_maxMotorForce); } void btTranslationalLimitMotor_setNormalCFM(btTranslationalLimitMotor* obj, const btScalar* value) { VECTOR3_IN(value, &obj->m_normalCFM); } void btTranslationalLimitMotor_setRestitution(btTranslationalLimitMotor* obj, btScalar value) { obj->m_restitution = value; } void btTranslationalLimitMotor_setStopCFM(btTranslationalLimitMotor* obj, const btScalar* value) { VECTOR3_IN(value, &obj->m_stopCFM); } void btTranslationalLimitMotor_setStopERP(btTranslationalLimitMotor* obj, const btScalar* value) { VECTOR3_IN(value, &obj->m_stopERP); } void btTranslationalLimitMotor_setTargetVelocity(btTranslationalLimitMotor* obj, const btScalar* value) { VECTOR3_IN(value, &obj->m_targetVelocity); } void btTranslationalLimitMotor_setUpperLimit(btTranslationalLimitMotor* obj, const btScalar* value) { VECTOR3_IN(value, &obj->m_upperLimit); } btScalar btTranslationalLimitMotor_solveLinearAxis(btTranslationalLimitMotor* obj, btScalar timeStep, btScalar jacDiagABInv, btRigidBody* body1, const btScalar* pointInA, btRigidBody* body2, const btScalar* pointInB, int limit_index, const btScalar* axis_normal_on_a, const btScalar* anchorPos) { VECTOR3_CONV(pointInA); VECTOR3_CONV(pointInB); VECTOR3_CONV(axis_normal_on_a); VECTOR3_CONV(anchorPos); return obj->solveLinearAxis(timeStep, jacDiagABInv, *body1, VECTOR3_USE(pointInA), *body2, VECTOR3_USE(pointInB), limit_index, VECTOR3_USE(axis_normal_on_a), VECTOR3_USE(anchorPos)); } int btTranslationalLimitMotor_testLimitValue(btTranslationalLimitMotor* obj, int limitIndex, btScalar test_value) { return obj->testLimitValue(limitIndex, test_value); } void btTranslationalLimitMotor_delete(btTranslationalLimitMotor* obj) { delete obj; } btGeneric6DofConstraint* btGeneric6DofConstraint_new(btRigidBody* rbA, btRigidBody* rbB, const btScalar* frameInA, const btScalar* frameInB, bool useLinearReferenceFrameA) { TRANSFORM_CONV(frameInA); TRANSFORM_CONV(frameInB); return new btGeneric6DofConstraint(*rbA, *rbB, TRANSFORM_USE(frameInA), TRANSFORM_USE(frameInB), useLinearReferenceFrameA); } btGeneric6DofConstraint* btGeneric6DofConstraint_new2(btRigidBody* rbB, const btScalar* frameInB, bool useLinearReferenceFrameB) { TRANSFORM_CONV(frameInB); return new btGeneric6DofConstraint(*rbB, TRANSFORM_USE(frameInB), useLinearReferenceFrameB); } void btGeneric6DofConstraint_calcAnchorPos(btGeneric6DofConstraint* obj) { obj->calcAnchorPos(); } void btGeneric6DofConstraint_calculateTransforms(btGeneric6DofConstraint* obj, const btScalar* transA, const btScalar* transB) { TRANSFORM_CONV(transA); TRANSFORM_CONV(transB); obj->calculateTransforms(TRANSFORM_USE(transA), TRANSFORM_USE(transB)); } void btGeneric6DofConstraint_calculateTransforms2(btGeneric6DofConstraint* obj) { obj->calculateTransforms(); } int btGeneric6DofConstraint_get_limit_motor_info2(btGeneric6DofConstraint* obj, btRotationalLimitMotor* limot, const btScalar* transA, const btScalar* transB, const btScalar* linVelA, const btScalar* linVelB, const btScalar* angVelA, const btScalar* angVelB, btTypedConstraint::btConstraintInfo2* info, int row, btScalar* ax1, int rotational) { TRANSFORM_CONV(transA); TRANSFORM_CONV(transB); VECTOR3_CONV(linVelA); VECTOR3_CONV(linVelB); VECTOR3_CONV(angVelA); VECTOR3_CONV(angVelB); VECTOR3_CONV(ax1); int ret = obj->get_limit_motor_info2(limot, TRANSFORM_USE(transA), TRANSFORM_USE(transB), VECTOR3_USE(linVelA), VECTOR3_USE(linVelB), VECTOR3_USE(angVelA), VECTOR3_USE(angVelB), info, row, VECTOR3_USE(ax1), rotational); VECTOR3_DEF_OUT(ax1); return ret; } int btGeneric6DofConstraint_get_limit_motor_info22(btGeneric6DofConstraint* obj, btRotationalLimitMotor* limot, const btScalar* transA, const btScalar* transB, const btScalar* linVelA, const btScalar* linVelB, const btScalar* angVelA, const btScalar* angVelB, btTypedConstraint::btConstraintInfo2* info, int row, btScalar* ax1, int rotational, int rotAllowed) { TRANSFORM_CONV(transA); TRANSFORM_CONV(transB); VECTOR3_CONV(linVelA); VECTOR3_CONV(linVelB); VECTOR3_CONV(angVelA); VECTOR3_CONV(angVelB); VECTOR3_CONV(ax1); int ret = obj->get_limit_motor_info2(limot, TRANSFORM_USE(transA), TRANSFORM_USE(transB), VECTOR3_USE(linVelA), VECTOR3_USE(linVelB), VECTOR3_USE(angVelA), VECTOR3_USE(angVelB), info, row, VECTOR3_USE(ax1), rotational, rotAllowed); VECTOR3_DEF_OUT(ax1); return ret; } btScalar btGeneric6DofConstraint_getAngle(btGeneric6DofConstraint* obj, int axis_index) { return obj->getAngle(axis_index); } void btGeneric6DofConstraint_getAngularLowerLimit(btGeneric6DofConstraint* obj, btScalar* angularLower) { VECTOR3_DEF(angularLower); obj->getAngularLowerLimit(VECTOR3_USE(angularLower)); VECTOR3_DEF_OUT(angularLower); } void btGeneric6DofConstraint_getAngularUpperLimit(btGeneric6DofConstraint* obj, btScalar* angularUpper) { VECTOR3_DEF(angularUpper); obj->getAngularUpperLimit(VECTOR3_USE(angularUpper)); VECTOR3_DEF_OUT(angularUpper); } void btGeneric6DofConstraint_getAxis(btGeneric6DofConstraint* obj, int axis_index, btScalar* value) { VECTOR3_OUT_VAL(obj->getAxis(axis_index), value); } void btGeneric6DofConstraint_getCalculatedTransformA(btGeneric6DofConstraint* obj, btScalar* value) { TRANSFORM_OUT(&obj->getCalculatedTransformA(), value); } void btGeneric6DofConstraint_getCalculatedTransformB(btGeneric6DofConstraint* obj, btScalar* value) { TRANSFORM_OUT(&obj->getCalculatedTransformB(), value); } void btGeneric6DofConstraint_getFrameOffsetA(btGeneric6DofConstraint* obj, btScalar* value) { TRANSFORM_OUT(&obj->getFrameOffsetA(), value); } void btGeneric6DofConstraint_getFrameOffsetB(btGeneric6DofConstraint* obj, btScalar* value) { TRANSFORM_OUT(&obj->getFrameOffsetB(), value); } void btGeneric6DofConstraint_getInfo1NonVirtual(btGeneric6DofConstraint* obj, btTypedConstraint::btConstraintInfo1* info) { obj->getInfo1NonVirtual(info); } void btGeneric6DofConstraint_getInfo2NonVirtual(btGeneric6DofConstraint* obj, btTypedConstraint::btConstraintInfo2* info, const btScalar* transA, const btScalar* transB, const btScalar* linVelA, const btScalar* linVelB, const btScalar* angVelA, const btScalar* angVelB) { TRANSFORM_CONV(transA); TRANSFORM_CONV(transB); VECTOR3_CONV(linVelA); VECTOR3_CONV(linVelB); VECTOR3_CONV(angVelA); VECTOR3_CONV(angVelB); obj->getInfo2NonVirtual(info, TRANSFORM_USE(transA), TRANSFORM_USE(transB), VECTOR3_USE(linVelA), VECTOR3_USE(linVelB), VECTOR3_USE(angVelA), VECTOR3_USE(angVelB)); } void btGeneric6DofConstraint_getLinearLowerLimit(btGeneric6DofConstraint* obj, btScalar* linearLower) { VECTOR3_DEF(linearLower); obj->getLinearLowerLimit(VECTOR3_USE(linearLower)); VECTOR3_DEF_OUT(linearLower); } void btGeneric6DofConstraint_getLinearUpperLimit(btGeneric6DofConstraint* obj, btScalar* linearUpper) { VECTOR3_DEF(linearUpper); obj->getLinearUpperLimit(VECTOR3_USE(linearUpper)); VECTOR3_DEF_OUT(linearUpper); } btScalar btGeneric6DofConstraint_getRelativePivotPosition(btGeneric6DofConstraint* obj, int axis_index) { return obj->getRelativePivotPosition(axis_index); } btRotationalLimitMotor* btGeneric6DofConstraint_getRotationalLimitMotor(btGeneric6DofConstraint* obj, int index) { return obj->getRotationalLimitMotor(index); } btTranslationalLimitMotor* btGeneric6DofConstraint_getTranslationalLimitMotor(btGeneric6DofConstraint* obj) { return obj->getTranslationalLimitMotor(); } bool btGeneric6DofConstraint_getUseFrameOffset(btGeneric6DofConstraint* obj) { return obj->getUseFrameOffset(); } bool btGeneric6DofConstraint_getUseSolveConstraintObsolete(btGeneric6DofConstraint* obj) { return obj->m_useSolveConstraintObsolete; } bool btGeneric6DofConstraint_isLimited(btGeneric6DofConstraint* obj, int limitIndex) { return obj->isLimited(limitIndex); } void btGeneric6DofConstraint_setAngularLowerLimit(btGeneric6DofConstraint* obj, const btScalar* angularLower) { VECTOR3_CONV(angularLower); obj->setAngularLowerLimit(VECTOR3_USE(angularLower)); } void btGeneric6DofConstraint_setAngularUpperLimit(btGeneric6DofConstraint* obj, const btScalar* angularUpper) { VECTOR3_CONV(angularUpper); obj->setAngularUpperLimit(VECTOR3_USE(angularUpper)); } void btGeneric6DofConstraint_setAxis(btGeneric6DofConstraint* obj, const btScalar* axis1, const btScalar* axis2) { VECTOR3_CONV(axis1); VECTOR3_CONV(axis2); obj->setAxis(VECTOR3_USE(axis1), VECTOR3_USE(axis2)); } void btGeneric6DofConstraint_setFrames(btGeneric6DofConstraint* obj, const btScalar* frameA, const btScalar* frameB) { TRANSFORM_CONV(frameA); TRANSFORM_CONV(frameB); obj->setFrames(TRANSFORM_USE(frameA), TRANSFORM_USE(frameB)); } void btGeneric6DofConstraint_setLimit(btGeneric6DofConstraint* obj, int axis, btScalar lo, btScalar hi) { obj->setLimit(axis, lo, hi); } void btGeneric6DofConstraint_setLinearLowerLimit(btGeneric6DofConstraint* obj, const btScalar* linearLower) { VECTOR3_CONV(linearLower); obj->setLinearLowerLimit(VECTOR3_USE(linearLower)); } void btGeneric6DofConstraint_setLinearUpperLimit(btGeneric6DofConstraint* obj, const btScalar* linearUpper) { VECTOR3_CONV(linearUpper); obj->setLinearUpperLimit(VECTOR3_USE(linearUpper)); } void btGeneric6DofConstraint_setUseFrameOffset(btGeneric6DofConstraint* obj, bool frameOffsetOnOff) { obj->setUseFrameOffset(frameOffsetOnOff); } void btGeneric6DofConstraint_setUseSolveConstraintObsolete(btGeneric6DofConstraint* obj, bool value) { obj->m_useSolveConstraintObsolete = value; } bool btGeneric6DofConstraint_testAngularLimitMotor(btGeneric6DofConstraint* obj, int axis_index) { return obj->testAngularLimitMotor(axis_index); } void btGeneric6DofConstraint_updateRHS(btGeneric6DofConstraint* obj, btScalar timeStep) { obj->updateRHS(timeStep); }
009912f7a515b6d9607fbb176e944a0dbaba23dc
8eb8bc0f6ba7f4da707bc3e2cac1ab047a432076
/template.cpp
f012bec6f4a722dff3bf58b63fddff796a85eacf
[]
no_license
Binfun/cplusplus
31c46bef0466fd3659d2336ca2785021829eb460
d044980a66d707b2704c668cc0b402b797493e33
refs/heads/master
2020-05-29T13:42:14.811934
2019-06-12T12:20:36
2019-06-12T12:20:36
189,171,008
0
0
null
null
null
null
UTF-8
C++
false
false
452
cpp
template.cpp
#include <iostream> using namespace std; class test { public: template<class T1,class T2> void show(int a) { cout<<"---11-a="<<a<<endl; } template<class T> static void show2(void) { cout << "show11112233"<<endl; } }; template<class T> class test1 { public: void show1(void) { a.template show<T,T>(10); test::show2<T>(); //can pass the compile } private: test a; }; int main(void) { test1<int> a; a.show1(); return 1; }
cf894fcf0af800635d27f9ef7b0611747eb5c928
1b859dc1462c325d5d2acdce863d0f71c7983d3b
/assignment50/assignment50.cpp
10ac20bf3ddf1d417bf71ef37bfff119267c94c5
[]
no_license
Crispin20/LeslieCrispin-CSCI20-Spr2017
96e6579d97c5da0f6265bd6be26d362365e511db
e9a7aa00baacac82281048bda58321886fbd086b
refs/heads/master
2021-01-11T15:56:47.438789
2017-05-24T00:00:17
2017-05-24T00:00:17
79,965,158
0
0
null
null
null
null
UTF-8
C++
false
false
3,239
cpp
assignment50.cpp
//Leslie Crispin //5-23-17 // Program accepts user input for dishes and price, inputs it into arrays //and it sends info int the class and out put the tip, taxes, food total, //and total price and also outputs it into a file #include <iostream> #include <string> #include <iomanip> #include <cstdlib> #include <fstream> using namespace std; class Restaurant { public: void SetCalculatedBill( int sum); // calculates the total food price double GetCalculatedBill() const; void SetCalculatedTaxes(); double GetCalculatedTaxes() const; void SetCalculatedTip(); double GetCalculatedTip() const; Restaurant(); Restaurant(double total_, double taxtotal_, double totalTip_); void Print() const; private: double total_ = 0; double taxtotal_ = 0; double totalTip_ = 0; }; Restaurant::Restaurant(){ //default constructor total_ = 0.00; taxtotal_ = 0.00; totalTip_ = 0.00; } Restaurant::Restaurant(double total_, double taxtotal_, double totalTip_){ total_ = total_; taxtotal_ = taxtotal_; totalTip_ = totalTip_; } void Restaurant::SetCalculatedBill(int sum){ // price of food total_ = sum; } void Restaurant::SetCalculatedTaxes(){ // price of taxes, 7.25% recommened by google taxtotal_ = (total_ * .0725); } void Restaurant::SetCalculatedTip(){// tip to leave recommended by google totalTip_ = total_ * .15; } double Restaurant::GetCalculatedBill() const{ return total_; } double Restaurant::GetCalculatedTaxes() const{ return taxtotal_; } double Restaurant::GetCalculatedTip() const { return totalTip_; } void Restaurant::Print() const{ ofstream inFS; // following out put to food.txt inFS.open("food.txt"); inFS << " Food Total" << endl; inFS << "Food Price Total: " << fixed <<setprecision(2)<< total_ << endl; inFS << "Food Tax: " << fixed << setprecision(2) <<taxtotal_ << endl; inFS << "Tip Total: " << fixed <<setprecision(2) <<totalTip_ << endl; inFS << "Price Total: " << fixed << setprecision(2) << total_ + taxtotal_ + totalTip_ << endl; inFS.close(); cout << " Food Total" << endl; cout << "Food Price Total: " << fixed <<setprecision(2)<< total_ << endl; cout << "Food Tax: " << fixed << setprecision(2) <<taxtotal_ << endl; cout << "Tip Total: " << fixed <<setprecision(2) <<totalTip_ << endl; cout << "Price Total: " << fixed << setprecision(2) << total_ + taxtotal_ + totalTip_ << endl; return; } int main(){ Restaurant price; string dish[10]; double foodPrice[10]; int num = 0; int sum = 0; double cost = 0; cout<<"Enter number of dishes (<=10): "; cin>> num; //istead add the file input and as the disshes for (int i = 0; i <= num - 1; i++){ //-1 bc of the index cout << "Name: "; cin>> dish[i]; cout << "foodPrice: "; cin >> foodPrice[i]; if (foodPrice[i] == 0){ cout << "Invalid"; return 0; } sum = foodPrice[i]+ sum; price.SetCalculatedBill(sum); price.SetCalculatedTaxes(); price.SetCalculatedTip(); } cout<<endl; for (int i=0; i<=num; i++){ cout << dish[i]<<" "<<"price is "<< fixed<< setprecision(2)<<foodPrice[i]<<endl; } cout << endl; price.Print(); return 0; }
21cfec2919752e4e4e02f164a0b9aa6e4f61ed41
44a902f4eb4dfa170ebfc4d2a2fd8951e6090912
/src/Config/Config.cpp
b7e8e088ccfcafa8a15fa9be8d34a7ca5d0d0500
[ "MIT" ]
permissive
ivan-kits/hry-core
8ee68ebc2b6778b36d6ba375fd4a68a2a8a15be1
c6547983115d7a34711ce20607c359f4047ec61e
refs/heads/master
2023-04-23T14:13:42.192109
2021-05-14T23:27:13
2021-05-14T23:27:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,907
cpp
Config.cpp
/** * This file is part of the hry-core project * @ Author: Piotr Krupa <piotrkrupa06@gmail.com> * @ License: MIT License */ #include "Hry/Config/Config.hpp" #include <filesystem> #include <imgui.h> #include <nlohmann/json.hpp> #include "Hry/Config/ConfigFieldBase.hpp" #include "Hry/Utils/Paths.hpp" #include "Renderer/Renderer.hpp" #include "Utils/Icons.hpp" #include "Core.hpp" namespace fs = std::filesystem; HRY_NS_BEGIN Config::Config(std::string name) : _name(std::move(name)) { _configFilePath = fmt::format("{}\\{}.json", Paths::ConfigsPath, _name); } void Config::saveToFile() const { if (!fs::exists(Paths::ConfigsPath)) { fs::create_directories(Paths::ConfigsPath); } std::ofstream f(_configFilePath); if (f.is_open()) { try { nlohmann::json json; toJson(json); f << json.dump(4); Core::Logger->info("Saved config for {}", _name); } catch (nlohmann::json::type_error& ex) { Core::Logger->error( "Cannot encode config for '{}' because '{}'", this->_name, ex.what()); } catch (nlohmann::json::exception& ex) { Core::Logger->error("Cannot save config for '{}' because '{}'", this->_name, ex.what()); } } else { Core::Logger->error("Cannot save config to {}", _configFilePath); } } bool Config::loadFromFile() { std::ifstream f(_configFilePath); if (f.is_open()) { try { nlohmann::json json; f >> json; fromJson(json); Core::Logger->info("Loaded config for {}", _name); invokeCallback(); return true; } catch (nlohmann::json::parse_error& ex) { Core::Logger->error( "Cannot parse config for '{}' because '{}'", this->_name, ex.what()); } catch (nlohmann::json::exception& ex) { Core::Logger->error("Cannot load config for '{}' because '{}'", this->_name, ex.what()); } } // load default configs invokeCallback(); return false; } bool Config::isDirty() const { bool isDirty = false; for (const auto& field : _fields) { isDirty |= field->isDirty(); } return isDirty; } void Config::applyChanges() { if (isDirty()) { for (auto& field : _fields) { field->applyChanges(); } invokeCallback(); } } void Config::cancelChanges() { for (auto& field : _fields) { field->cancelChanges(); } } void Config::resetToDefault() { for (auto& field : _fields) { field->resetToDefault(); } } void Config::imguiRender() { ImGui::Columns(3, nullptr, false); ImGui::SetColumnOffset(1, 10); ImGui::SetColumnOffset(2, ImGui::GetWindowContentRegionWidth() - 32); for (auto& field : _fields) { ImGui::PushID(&field); if (field->isDirty()) { ImGui::PushStyleColor(ImGuiCol_Button, ImColor(50, 200, 50).Value); ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImColor(50, 200, 50).Value); ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImColor(50, 200, 50).Value); ImGui::Button("", { 1, 0 }); ImGui::PopStyleColor(3); } ImGui::NextColumn(); field->imguiRender(); ImGui::NextColumn(); // show `Reset to default` button only when dirty value is different from the default if (field->canResetToDefault()) { if (ImGui::Button(Icons::Undo)) { field->resetToDefault(); } if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); ImGui::TextUnformatted("Set default value"); ImGui::EndTooltip(); } } ImGui::NextColumn(); ImGui::PopID(); } ImGui::Columns(1); } void Config::toJson(nlohmann::json& json) const { for (const auto& field : _fields) { field->toJson(json); } auto extraData = nlohmann::json::object(); onSave(extraData); json["extra"] = extraData; } void Config::fromJson(const nlohmann::json& json) { for (auto& field : _fields) { field->fromJson(json); } if (auto it = json.find("extra"); it != json.end()) { onLoad(it.value()); } } void Config::invokeCallback() { if (_bindingStructSize > 0) { HryPtr<void> data{ _bindingStructCtor(), { _bindingStructDtor, nullptr } }; ConfigCallbackData callbackData{ data.get(), _bindingStructSize }; for (auto& field : _fields) { field->setupCallbackData(callbackData); } onChangesApplied(callbackData); } } HRY_NS_END
6b000eee054131d10c8e244df8819d600eab789d
8aa04db29bae5e0391543349eb2c0f778c56ffae
/tensorflow/compiler/xla/service/gpu/runtime/send_recv.h
90e660f7b077743cd1afb1c5e4cd079885fe6e6f
[ "Apache-2.0", "LicenseRef-scancode-generic-cla", "BSD-2-Clause" ]
permissive
mansnils/tensorflow
ec1a840f8fca6742d6e54dcf7b00eae0180f4023
b0164f014fd4f1b5af2c7b578aa7687198c5d92e
refs/heads/master
2023-01-30T00:13:07.772844
2023-01-09T09:45:45
2023-01-09T09:49:49
226,075,754
1
0
Apache-2.0
2019-12-05T10:27:38
2019-12-05T10:27:37
null
UTF-8
C++
false
false
1,533
h
send_recv.h
/* Copyright 2022 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_COMPILER_XLA_SERVICE_GPU_RUNTIME_SEND_RECV_H_ #define TENSORFLOW_COMPILER_XLA_SERVICE_GPU_RUNTIME_SEND_RECV_H_ #include <utility> #include "tensorflow/compiler/xla/mlir/runtime/transforms/custom_call_encoding.h" #include "tensorflow/compiler/xla/runtime/custom_call_registry.h" namespace xla { namespace gpu { // Registers XLA Gpu runtime Send/Recv custom calls. void RegisterSendRecvCustomCalls(runtime::DirectCustomCallRegistry& registry); // Register type names for communication attributes defined by MHLO dialect. void RegisterSendRecvTypeIdNames(runtime::TypeIDNameRegistry& registry); // Adds attributes encoding for Send/Recv custom calls void PopulateSendRecvAttrEncoding(runtime::CustomCallAttrEncodingSet& encoding); } // namespace gpu } // namespace xla #endif // TENSORFLOW_COMPILER_XLA_SERVICE_GPU_RUNTIME_SEND_RECV_H_
420d4b40561c662235d5a1be7f68161d487e6776
a2932d35c1c0af91abb13665d05f034078f8ff56
/src/SteppingAction.cc
03048c2771be464f4ffeba199d13e950f6d34b01
[]
no_license
wongmmy/PlasticScintillator
cab49d4891206a54999a9dc359d5c7d35618c161
073794901c28cd0d6409f7598197b24627f628a9
refs/heads/master
2021-01-23T10:39:01.998346
2017-06-01T17:37:37
2017-06-01T17:37:37
93,081,485
1
0
null
null
null
null
UTF-8
C++
false
false
1,291
cc
SteppingAction.cc
#include "SteppingAction.hh" #include "EventAction.hh" #include "G4Step.hh" #include "G4LogicalVolume.hh" #include "DetectorConstruction.hh" #include "G4RunManager.hh" SteppingAction::SteppingAction(EventAction* eventAction) : G4UserSteppingAction(), //constructor sensV(0) //in the name space of SteppingAction, the constructor SteppingAction takes an EventAction pointer names eventAction, extends G4UserSteppingAction { scEdep = 0.; //scoring variables scStepLength = 0.; correction = 0.; qEdep = 0.; kb = 1; } SteppingAction::~SteppingAction() {} void SteppingAction::UserSteppingAction(const G4Step* step) { if (!sensV) //just to fill the sensitive volume with the logical volume { const DetectorConstruction* DC = static_cast<const DetectorConstruction* > (G4RunManager::GetRunManager()->GetUserDetectorConstruction()); //to get current run manager, saving DC to access pointer of DetectorConstruction to get to the function that gets LogicalVolume sensV = DC->GetScoringVolume(); } if (step->GetPreStepPoint()->GetTouchableHandle()->GetVolume()->GetLogicalVolume() == sensV) { scEdep = step->GetDeltaEnergy(); scStepLength = step->GetStepLength(); correction = (scEdep / scStepLength) / (1 + kb*(scEdep / scStepLength)); qEdep += scEdep*correction; } }
85ccfb51a52d247d52f1dae7f3119a091210df6e
591449c459c0643650c7befdf442f804205e702f
/3d/2ViewSfm/2ViewSfm/SFM.cpp
35b71fa37b7015dc1013d04a92fddd80c6ceb4c8
[]
no_license
liujiboy/opencv
eda75acd87c92b28e88eb5df61d487e9f6533723
b406a65a22abf9e0147921ee27a448a55758c9e0
refs/heads/master
2020-04-05T23:40:17.885587
2015-04-28T01:30:00
2015-04-28T01:30:00
33,022,182
0
1
null
null
null
null
UTF-8
C++
false
false
23,534
cpp
SFM.cpp
// // SFM.cpp // sfm // // Created by 刘骥 on 15/4/21. // Copyright (c) 2015年 刘骥. All rights reserved. // #include "SFM.h" /* unit quaternion from vector part */ #define _MK_QUAT_FRM_VEC(q, v){ \ (q)[1]=(v)[0]; (q)[2]=(v)[1]; (q)[3]=(v)[2]; \ (q)[0]=sqrt(1.0 - (q)[1]*(q)[1] - (q)[2]*(q)[2]- (q)[3]*(q)[3]); \ } inline static void quatMultFast(double q1[FULLQUATSZ], double q2[FULLQUATSZ], double p[FULLQUATSZ]) { double t1, t2, t3, t4, t5, t6, t7, t8, t9; //double t10, t11, t12; t1=(q1[0]+q1[1])*(q2[0]+q2[1]); t2=(q1[3]-q1[2])*(q2[2]-q2[3]); t3=(q1[1]-q1[0])*(q2[2]+q2[3]); t4=(q1[2]+q1[3])*(q2[1]-q2[0]); t5=(q1[1]+q1[3])*(q2[1]+q2[2]); t6=(q1[1]-q1[3])*(q2[1]-q2[2]); t7=(q1[0]+q1[2])*(q2[0]-q2[3]); t8=(q1[0]-q1[2])*(q2[0]+q2[3]); #if 0 t9 =t5+t6; t10=t7+t8; t11=t5-t6; t12=t7-t8; p[0]= t2 + 0.5*(-t9+t10); p[1]= t1 - 0.5*(t9+t10); p[2]=-t3 + 0.5*(t11+t12); p[3]=-t4 + 0.5*(t11-t12); #endif /* following fragment it equivalent to the one above */ t9=0.5*(t5-t6+t7+t8); p[0]= t2 + t9-t5; p[1]= t1 - t9-t6; p[2]=-t3 + t9-t8; p[3]=-t4 + t9-t7; } struct globs_{ double *rot0params; /* initial rotation parameters, combined with a local rotation parameterization */ double *intrcalib; /* the 5 intrinsic calibration parameters in the order [fu, u0, v0, ar, skew], * where ar is the aspect ratio fv/fu. * Used only when calibration is fixed for all cameras; * otherwise, it is null and the intrinsic parameters are * included in the set of motion parameters for each camera */ int nccalib; /* number of calibration parameters that must be kept constant. * 0: all parameters are free * 1: skew is fixed to its initial value, all other parameters vary (i.e. fu, u0, v0, ar) * 2: skew and aspect ratio are fixed to their initial values, all other parameters vary (i.e. fu, u0, v0) * 3: meaningless * 4: skew, aspect ratio and principal point are fixed to their initial values, only the focal length varies (i.e. fu) * 5: all intrinsics are kept fixed to their initial values * >5: meaningless * Used only when calibration varies among cameras */ int ncdist; /* number of distortion parameters in Bouguet's model that must be kept constant. * 0: all parameters are free * 1: 6th order radial distortion term (kc[4]) is fixed * 2: 6th order radial distortion and one of the tangential distortion terms (kc[3]) are fixed * 3: 6th order radial distortion and both tangential distortion terms (kc[3], kc[2]) are fixed [i.e., only 2nd & 4th order radial dist.] * 4: 4th & 6th order radial distortion terms and both tangential distortion ones are fixed [i.e., only 2nd order radial dist.] * 5: all distortion parameters are kept fixed to their initial values * >5: meaningless * Used only when calibration varies among cameras and distortion is to be estimated */ int cnp, pnp, mnp; /* dimensions */ double *ptparams; /* needed only when bundle adjusting for camera parameters only */ double *camparams; /* needed only when bundle adjusting for structure parameters only */ } ; /*** MEASUREMENT VECTOR AND JACOBIAN COMPUTATION FOR THE EXPERT DRIVERS ***/ /* FULL BUNDLE ADJUSTMENT, I.E. SIMULTANEOUS ESTIMATION OF CAMERA AND STRUCTURE PARAMETERS */ /* Given a parameter vector p made up of the 3D coordinates of n points and the parameters of m cameras, compute in * hx the prediction of the measurements, i.e. the projections of 3D points in the m images. The measurements * are returned in the order (hx_11^T, .. hx_1m^T, ..., hx_n1^T, .. hx_nm^T)^T, where hx_ij is the predicted * projection of the i-th point on the j-th camera. * Notice that depending on idxij, some of the hx_ij might be missing * */ static void img_projsRTS_x(double *p, struct sba_crsm *idxij, int *rcidxs, int *rcsubs, double *hx, void *adata) { int i, j; int cnp, pnp, mnp; double *pa, *pb, *pqr, *pt, *ppt, *pmeas, *Kparms, *pr0, lrot[FULLQUATSZ], trot[FULLQUATSZ]; //int n; int m, nnz; struct globs_ *gl; gl=(struct globs_ *)adata; cnp=gl->cnp; pnp=gl->pnp; mnp=gl->mnp; Kparms=gl->intrcalib; //n=idxij->nr; m=idxij->nc; pa=p; pb=p+m*cnp; for(j=0; j<m; ++j){ /* j-th camera parameters */ pqr=pa+j*cnp; pt=pqr+3; // quaternion vector part has 3 elements pr0=gl->rot0params+j*FULLQUATSZ; // full quat for initial rotation estimate _MK_QUAT_FRM_VEC(lrot, pqr); quatMultFast(lrot, pr0, trot); // trot=lrot*pr0 nnz=sba_crsm_col_elmidxs(idxij, j, rcidxs, rcsubs); /* find nonzero hx_ij, i=0...n-1 */ for(i=0; i<nnz; ++i){ ppt=pb + rcsubs[i]*pnp; pmeas=hx + idxij->val[rcidxs[i]]*mnp; // set pmeas to point to hx_ij calcImgProjFullR(Kparms, trot, pt, ppt, pmeas); // evaluate Q in pmeas //calcImgProj(Kparms, pr0, pqr, pt, ppt, pmeas); // evaluate Q in pmeas } } } /* Given a parameter vector p made up of the 3D coordinates of n points and the parameters of m cameras, compute in * jac the jacobian of the predicted measurements, i.e. the jacobian of the projections of 3D points in the m images. * The jacobian is returned in the order (A_11, ..., A_1m, ..., A_n1, ..., A_nm, B_11, ..., B_1m, ..., B_n1, ..., B_nm), * where A_ij=dx_ij/db_j and B_ij=dx_ij/db_i (see HZ). * Notice that depending on idxij, some of the A_ij, B_ij might be missing * */ static void img_projsRTS_jac_x(double *p, struct sba_crsm *idxij, int *rcidxs, int *rcsubs, double *jac, void *adata) { int i, j; int cnp, pnp, mnp; double *pa, *pb, *pqr, *pt, *ppt, *pA, *pB, *Kparms, *pr0; //int n; int m, nnz, Asz, Bsz, ABsz; struct globs_ *gl; gl=(struct globs_ *)adata; cnp=gl->cnp; pnp=gl->pnp; mnp=gl->mnp; Kparms=gl->intrcalib; //n=idxij->nr; m=idxij->nc; pa=p; pb=p+m*cnp; Asz=mnp*cnp; Bsz=mnp*pnp; ABsz=Asz+Bsz; for(j=0; j<m; ++j){ /* j-th camera parameters */ pqr=pa+j*cnp; pt=pqr+3; // quaternion vector part has 3 elements pr0=gl->rot0params+j*FULLQUATSZ; // full quat for initial rotation estimate nnz=sba_crsm_col_elmidxs(idxij, j, rcidxs, rcsubs); /* find nonzero hx_ij, i=0...n-1 */ for(i=0; i<nnz; ++i){ ppt=pb + rcsubs[i]*pnp; pA=jac + idxij->val[rcidxs[i]]*ABsz; // set pA to point to A_ij pB=pA + Asz; // set pB to point to B_ij calcImgProjJacRTS(Kparms, pr0, pqr, pt, ppt, (double (*)[6])pA, (double (*)[3])pB); // evaluate dQ/da, dQ/db in pA, pB } } } /* convert a vector of camera parameters so that rotation is represented by * the vector part of the input quaternion. The function converts the * input quaternion into a unit one with a non-negative scalar part. Remaining * parameters are left unchanged. * * Input parameter layout: intrinsics (5, optional), distortion (5, optional), rot. quaternion (4), translation (3) * Output parameter layout: intrinsics (5, optional), distortion (5, optional), rot. quaternion vector part (3), translation (3) */ void quat2vec(double *inp, int nin, double *outp, int nout) { double mag, sg; int i; /* intrinsics & distortion */ if(nin>7) // are they present? for(i=0; i<nin-7; ++i) outp[i]=inp[i]; else i=0; /* rotation */ /* normalize and ensure that the quaternion's scalar component is non-negative; * if not, negate the quaternion since two quaternions q and -q represent the * same rotation */ mag=sqrt(inp[i]*inp[i] + inp[i+1]*inp[i+1] + inp[i+2]*inp[i+2] + inp[i+3]*inp[i+3]); sg=(inp[i]>=0.0)? 1.0 : -1.0; mag=sg/mag; outp[i] =inp[i+1]*mag; outp[i+1]=inp[i+2]*mag; outp[i+2]=inp[i+3]*mag; i+=3; /* translation*/ for( ; i<nout; ++i) outp[i]=inp[i+1]; } /* convert a vector of camera parameters so that rotation is represented by * a full unit quaternion instead of its input 3-vector part. Remaining * parameters are left unchanged. * * Input parameter layout: intrinsics (5, optional), distortion (5, optional), rot. quaternion vector part (3), translation (3) * Output parameter layout: intrinsics (5, optional), distortion (5, optional), rot. quaternion (4), translation (3) */ void vec2quat(double *inp, int nin, double *outp, int nout) { double *v, q[FULLQUATSZ]; int i; /* intrinsics & distortion */ if(nin>7-1) // are they present? for(i=0; i<nin-(7-1); ++i) outp[i]=inp[i]; else i=0; /* rotation */ /* recover the quaternion from the vector */ v=inp+i; _MK_QUAT_FRM_VEC(q, v); outp[i] =q[0]; outp[i+1]=q[1]; outp[i+2]=q[2]; outp[i+3]=q[3]; i+=FULLQUATSZ; /* translation */ for( ; i<nout; ++i) outp[i]=inp[i-1]; } //r表示四元数的后三位 void rotmat2quat(double *R,double *r){ double q[4]; q[0]=sqrt(1.0 + R[0] + R[4] + R[8])*0.5; q[1]=(R[7] - R[5])/(4.0*q[0]); q[2]=(R[2] - R[6])/(4.0*q[0]); q[3]=(R[3] - R[1])/(4.0*q[0]); r[0]=q[0]; r[1]=q[1]; r[2]=q[2]; r[3]=q[3]; } //r表示四元数的后三位 void quat2rotmat(double *r,double *R) { double q1=r[0]; double q2=r[1]; double q3=r[2]; double q0=sqrt(1-q1*q1-q2*q2-q3*q3); R[0]=q0*q0+q1*q1-q2*q2-q3*q3; R[1]=2*(q1*q2-q0*q3); R[2]=2*(q1*q3+q0*q2); R[3]=2*(q1*q2+q0*q3); R[4]=q0*q0+q2*q2-q1*q1-q3*q3; R[5]=2*(q2*q3-q0*q1); R[6]=2*(q1*q3-q0*q2); R[7]=2*(q2*q3+q0*q1); R[8]=q0*q0+q3*q3-q1*q1-q2*q2; } void cammat2quat(const Mat_<double>&p,double*r,double*t) { double R[9]={p(0,0),p(0,1),p(0,2),p(1,0),p(1,1),p(1,2),p(2,0),p(2,1),p(2,2)}; rotmat2quat(R, r); t[0]=p(0,3); t[1]=p(1,3); t[2]=p(2,3); } void quat2cammat(double*r,double*t,Mat_<double>&p) { double R[9]; quat2rotmat(r,R); p(0,0)=R[0]; p(0,1)=R[1]; p(0,2)=R[2]; p(1,0)=R[3]; p(1,1)=R[4]; p(1,2)=R[5]; p(2,0)=R[6]; p(2,1)=R[7]; p(2,2)=R[8]; p(0,3)=t[0]; p(1,3)=t[1]; p(2,3)=t[2]; } SFM::SFM(const Mat &cameraMatrix,const vector<vector<Point2d> > &keypoints,const vector<vector<Mat> > &fmatrices,const vector<vector<vector<DMatch>> > &matches,int nframes):cameraMatrix(cameraMatrix),keypoints(keypoints),fmatrices(fmatrices),matches(matches),nframes(nframes),pmatrices(nframes),cloud(cameraMatrix,pmatrices,nframes) { } void SFM::getMatchPoints(const vector<Point2d>& keypoints1,const vector<Point2d>& keypoints2,const vector<DMatch>&matches,Mat_<double>&points1,Mat_<double>&points2) { int col=(int)matches.size(); points1.create(3, col); points2.create(3, col); for(vector<DMatch>::size_type i=0;i<matches.size();i++) { DMatch match=matches[i]; Point2d point1=keypoints1[match.queryIdx]; Point2d point2=keypoints2[match.trainIdx]; points1(0,(int)i)=point1.x; points1(1,(int)i)=point1.y; points1(2,(int)i)=1; points2(0,(int)i)=point2.x; points2(1,(int)i)=point2.y; points2(2,(int)i)=1; } } void SFM::computeP(const Mat&E,vector<Mat>&pVector) { SVD svd(E); Mat u=svd.u; Mat vt=svd.vt; if(determinant(u*vt)<0) { vt=-vt; } Matx33d w(0,-1,0,1,0,0,0,0,1); Mat_<double> R1=u*Mat(w)*vt; Mat_<double> R2=u*Mat(w).t()*vt; Mat_<double> t1=u.col(2); Mat_<double> t2=-t1; Matx34d P1(R1(0,0),R1(0,1),R1(0,2),t1(0), R1(1,0),R1(1,1),R1(1,2),t1(1), R1(2,0),R1(2,1),R1(2,2),t1(2)); Matx34d P2(R2(0,0),R2(0,1),R2(0,2),t1(0), R2(1,0),R2(1,1),R2(1,2),t1(1), R2(2,0),R2(2,1),R2(2,2),t1(2)); Matx34d P3(R1(0,0),R1(0,1),R1(0,2),t2(0), R1(1,0),R1(1,1),R1(1,2),t2(1), R1(2,0),R1(2,1),R1(2,2),t2(2)); Matx34d P4(R2(0,0),R2(0,1),R2(0,2),t2(0), R2(1,0),R2(1,1),R2(1,2),t2(1), R2(2,0),R2(2,1),R2(2,2),t2(2)); pVector.push_back(Mat(P1)); pVector.push_back(Mat(P2)); pVector.push_back(Mat(P3)); pVector.push_back(Mat(P4)); } void SFM::triangulatePoint(const Mat_<double>&point1,const Mat_<double>&point2,const Mat_<double>&P1,const Mat_<double>&P2,Mat_<double>& point) { Mat_<double> M=Mat::zeros(6, 6, CV_64F); P1.copyTo(M(Rect(0,0,4,3)));//Rect(x,y,width,height),矩阵的row对应y和height,col对应x和width P2.copyTo(M(Rect(0,3,4,3))); M(0,4)=-point1(0); M(1,4)=-point1(1); M(2,4)=-point1(2); M(3,5)=-point2(0); M(4,5)=-point2(1); M(5,5)=-point2(2); Mat_<double> X; SVD::solveZ(M, X); X=X/X(3); point(0,0)=X(0); point(1,0)=X(1); point(2,0)=X(2); point(3,0)=1; } void SFM::triangulate(const Mat_<double>&points1,const Mat_<double>&points2,const Mat&P1,const Mat&P2,Mat_<double>&points) { points.create(4, points1.cols); for(int i=0;i<points1.cols;i++) { Mat_<double> point=points.col(i); triangulatePoint(points1.col(i), points2.col(i), P1, P2,point); } } Mat_<double> SFM::trianglulateAndFindCameraMatrix(const Mat_<double>&points1,const Mat_<double>&points2,const Mat&P1,const Mat&F,Mat&P2) { Mat_<double> E=cameraMatrix.t()*F*cameraMatrix; vector<Mat> P2Vector; computeP(E,P2Vector); // vector<vector<Point3d> > pointsVector; int maxCount=0; vector<Mat>::size_type bestIndex=0; vector<Mat_<double> > points3dVector(4); for(vector<Mat>::size_type i=0;i<P2Vector.size();i++) { Mat p2=P2Vector[i]; triangulate(cameraMatrix.inv()*points1, cameraMatrix.inv()*points2, P1,p2, points3dVector[i]); Mat P4x4=Mat::eye(4, 4, CV_64F); Mat P3x4=P4x4(Rect(0,0,4,3)); p2.copyTo(P3x4); Mat_<double> points3d_projected=P3x4*points3dVector[i]; int count=0; for(int colIdx=0;colIdx<points3d_projected.cols;colIdx++) { Mat_<double> point3d_projected=points3d_projected.col(colIdx); if(points3d_projected(2)>0) { count++; } } if(count>maxCount) { maxCount=count; bestIndex=i; } } P2Vector[bestIndex].copyTo(P2); return points3dVector[bestIndex]; } void SFM::initialReconstruct() { Mat_<double>points0,points1; getMatchPoints(keypoints[0],keypoints[1],matches[0][1] , points0, points1); cout<<"对图像0和图像1的匹配点进行三角化"<<endl; Mat P1=Mat(Matx34d(1,0,0,0,0,1,0,0,0,0,1,0)); Mat_<double> P2; Mat_<double> points=trianglulateAndFindCameraMatrix(points0, points1, P1, fmatrices[0][1], P2); for (int i=0; i<points.cols; i++) { double x=points(0,i); double y=points(1,i); double z=points(2,i); CloudPoint cp(x,y,z,nframes,keypoints); cp.setPointIndex(0, matches[0][1][i].queryIdx); cp.setPointIndex(1, matches[0][1][i].trainIdx); cloud.addPoint(cp); } pmatrices[0]=P1; pmatrices[1]=P2; //cloud.reprojectError(2); cout<<"三角化完成,开始bundle adjustment"<<endl; nviewSba(2); cloud.reprojectError(2); } Mat_<double> SFM:: findPmatrixByKnownPoints(const vector<DMatch>&match,const bool* known,const Mat_<double>&points,int frame) { //根据已知的三位点确定投影矩阵 vector<Point3f> objectPoints; vector<Point2f> imagePoints; Mat_<double> rvec; Mat_<double> tvec; for(int i=0;i<match.size();i++) { if(known[i]) { Point3f p3d(points(0,i),points(1,i),points(2,i)); objectPoints.push_back(p3d); int index=match[i].trainIdx; Point2f p2d=keypoints[frame][index]; imagePoints.push_back(p2d); } } solvePnPRansac(objectPoints, imagePoints, cameraMatrix, noArray(), rvec, tvec); Mat_<double> rmat; Rodrigues(rvec, rmat); Mat_<double> p; p.create(3, 4); rmat.copyTo(p(Rect(0,0,3,3))); p(0,3)=tvec(0); p(1,3)=tvec(1); p(2,3)=tvec(2); return p; } void SFM::reconstructByKnownPoints(int frame,int prevFrame,const vector<DMatch>&match,bool *known,Mat_<double> &points) { Mat_<double> invCameraMatrix=cameraMatrix.inv(); for (int i=0; i<match.size(); i++) { if(!known[i]) { int a=match[i].queryIdx; int b=match[i].trainIdx; Mat_<double> point1(3,1); Mat_<double> point2(3,1); point1(0)=keypoints[prevFrame][a].x; point1(1)=keypoints[prevFrame][a].y; point1(2)=1; point2(0)=keypoints[frame][a].x; point2(1)=keypoints[frame][b].y; point2(2)=1; point1=invCameraMatrix*point1; point2=invCameraMatrix*point2; Mat_<double> point(4,1); triangulatePoint(point1,point2,pmatrices[prevFrame],pmatrices[frame],point); CloudPoint cp(point(0),point(1),point(2),nframes,keypoints); cp.setPointIndex(prevFrame, a); cp.setPointIndex(frame, b); cloud.addPoint(cp); } } } void SFM::addView(int frame) { int prevFrame=frame-1; vector<DMatch> match=matches[prevFrame][frame]; bool *known=new bool[(int)match.size()](); Mat_<double> points(4,(int)match.size()); //根据当前视图和前一视图重建的三维点 cloud.findKnownPoints(frame,prevFrame,match,known,points); pmatrices[frame]=findPmatrixByKnownPoints(match,known,points,frame); reconstructByKnownPoints(frame,prevFrame,match,known,points); nviewSba(frame+1); cloud.reprojectError(frame+1); delete known; } Cloud& SFM::getCloud() { return cloud; } void SFM::nviewSba(int frameNum,int nconstframes,int nconstpts3D,int maxiter,int verbose) { int cnp=6; //相机矩阵用3位表示旋转,3位表示位移 int pnp=3; //三维点的坐标数 int mnp=2; //二维点的坐标数 double f=cameraMatrix.at<double>(0,0); double cx=cameraMatrix.at<double>(0,2); double cy=cameraMatrix.at<double>(1,2); double ar=cameraMatrix.at<double>(1,1)/cameraMatrix.at<double>(0,0); double ical[5]={f,cx,cy,ar,0};//f cx cy ar s; double opts[SBA_OPTSSZ], info[SBA_INFOSZ]; struct globs_ globs; //设置globs globs.cnp=cnp; globs.pnp=pnp; globs.mnp=mnp; globs.rot0params=new double[FULLQUATSZ*frameNum](); globs.intrcalib=ical; globs.ptparams=NULL; globs.camparams=NULL; //设置优化选项 opts[0]=SBA_INIT_MU; opts[1]=SBA_STOP_THRESH; opts[2]=SBA_STOP_THRESH; opts[3]=SBA_STOP_THRESH; opts[4]=0.0; int numpts3D=cloud.getPointSize(); //三维点的数量 int numprojs=0; //在所有相机下,三维点共计有多少个二维投影 //vmask[i,j]表示第i个点在第j个镜头下是否可见,此处填充为全1,因为点在两个镜头下均可见 char *vmask=new char[numpts3D*frameNum](); for(int i=0;i<numpts3D;i++) { CloudPoint cp=cloud.getPoint(i); for (int j=0; j<frameNum; j++) { int index=i*frameNum+j; if(cp.getPointIndex(j)!=-1) { vmask[index]=1; numprojs++; } } } //motstruct是待优化的相机矩阵和三维点,其结构为(r1,t1,r2,t2,X[1],X[2]...X[n]) int motstruct_size=frameNum*cnp+numpts3D*pnp; double *motstruct=new double[motstruct_size](); for(int i=0;i<frameNum;i++) { Mat_<double> p=pmatrices[i]; double r[4],t[3]; cammat2quat(p, r, t); copy(r+1, r+4, motstruct+i*cnp); copy(t,t+3,motstruct+i*cnp+3); copy(r,r+4, globs.rot0params+i*FULLQUATSZ); } //拷贝三维点 int pstart=frameNum*cnp; //三维点的开始位置 for(int i=0;i<numpts3D;i++) { CloudPoint cp=cloud.getPoint(i); motstruct[pstart+i*pnp]=cp.x; motstruct[pstart+i*pnp+1]=cp.y; motstruct[pstart+i*pnp+2]=cp.z; } //如果要对相机旋转矩阵和三维点的位置同时优化,必须将相机矩阵的旋转初始化为0,即四元数表示的(1,0,0,0) //并用globs.rot0params保存了相机旋转矩阵 //若只对三维点的位置进行优化,此步不做 for(int i=0; i<frameNum; ++i){ int j=(i+1)*cnp; // 跳过位移向量 motstruct[j-4]=motstruct[j-5]=motstruct[j-6]=0.0; // 设置为(1,0,0,0) } //imgpts保存三维点在每个相机下的投影,即二维点 double *imgpts=new double[numprojs*mnp](); for(int i=0,n=0;i<numpts3D;i++) { CloudPoint cp=cloud.getPoint(i); for (int j=0; j<frameNum; j++) { Point2d point; if(cp.getPointInFrame(j, point)) { imgpts[n*mnp]=point.x; imgpts[n*mnp+1]=point.y; n++; } } } double *covimgpts=NULL; //优化 int n=sba_motstr_levmar_x(numpts3D, nconstpts3D, frameNum, nconstframes, vmask, motstruct, cnp, pnp, imgpts, covimgpts, mnp,img_projsRTS_x,img_projsRTS_jac_x,(void*)(&globs),maxiter, verbose, opts, info); if(n!=SBA_ERROR) { /* combine the local rotation estimates with the initial ones */ for(int i=0; i<frameNum; ++i){ double *v, qs[FULLQUATSZ], *q0, prd[FULLQUATSZ]; /* retrieve the vector part */ v=motstruct + (i+1)*cnp - 6; // note the +1, we access the motion parameters from the right, assuming 3 for translation! _MK_QUAT_FRM_VEC(qs, v); q0=globs.rot0params+i*FULLQUATSZ; quatMultFast(qs, q0, prd); // prd=qs*q0 /* copy back vector part making sure that the scalar part is non-negative */ if(prd[0]>=0.0){ v[0]=prd[1]; v[1]=prd[2]; v[2]=prd[3]; } else{ // negate since two quaternions q and -q represent the same rotation v[0]=-prd[1]; v[1]=-prd[2]; v[2]=-prd[3]; } } // printSBAData(stdout, motstruct, cnp, pnp, mnp, vec2quat, cnp+1, frameNum, numpts3D, imgpts, numprojs, vmask); for(int i=0;i<frameNum;i++) { Mat_<double> p(3,4); double r[3],t[3]; copy(motstruct+i*cnp, motstruct+3+i*cnp, r); copy(motstruct+3+i*cnp, motstruct+6+i*cnp, t); quat2cammat(r,t,p); pmatrices[i]=p; } for (int i=0; i<numpts3D; i++) { CloudPoint& cp=cloud.getPoint(i); cp.x=motstruct[frameNum*cnp+i*pnp]; cp.y=motstruct[frameNum*cnp+i*pnp+1]; cp.z=motstruct[frameNum*cnp+i*pnp+2]; } } }
7767109b226b311a1ad3c68984a0067efd72e1ee
0a04f4d4930039e551d861457cf9b6c2b00f82dc
/game.cpp
1d5c60cb3c3c27593dac13042fd3747c4dc9c0c3
[]
no_license
tanish20j/tic-tac-toe
21207c02710a1582224d31e715976c09086ca97c
79ee5c10789b06c7df8ff68dc775339f3903c718
refs/heads/master
2021-10-24T12:37:43.735895
2021-10-11T09:19:37
2021-10-11T09:19:37
181,138,054
0
0
null
null
null
null
UTF-8
C++
false
false
14,893
cpp
game.cpp
#include<iostream> #include<stdlib.h> #include<time.h> #include <string> #include <stdio.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <netdb.h> #include <sys/uio.h> #include <sys/time.h> #include <sys/wait.h> #include <fcntl.h> #include <fstream> using namespace std; char board[3][3],winner='0'; int r1,r2,c1,c2; void inigame() { for(int i=0;i<3;i++) { for(int j=0;j<3;j++) { board[i][j]='_'; } } } void update() { for(int i=0;i<3;i++) { printf("\t\t\t\t\t\t\t\t"); for(int j=0;j<3;j++) { printf("%c\t",board[i][j]); } printf("\n"); } } int toss() { int i; srand(time(NULL)); i=rand()%2+1; //printf("%d",i); return i; } void p1() { a: printf(" r: "); scanf("%d",&r1); printf(" \t\tc: "); scanf("%d",&c1); if(board[r1-1][c1-1]=='_') { board[r1-1][c1-1]='X'; } else { printf("\n\tTHIS POSITION IS NOT EMPTY, PLEASE ENTER AGAIN : "); goto a; } } void p2() { b: printf(" r: "); scanf("%d",&r2); printf(" \t\tc: "); scanf("%d",&c2); if(board[r2-1][c2-1]=='_') { board[r2-1][c2-1]='O'; } else { printf("\n\tTHIS POSITION IS NOT EMPTY, PLEASE ENTER AGAIN : "); goto b; } } void checkWinner() { for (int i=0; i<=2; i++) { if(board[i][0]==board[i][1] && board[i][1]==board[i][2] && board[i][0]!='_') { winner=board[i][0]; } } for(int i=0; i<=2; i++) { if(board[0][i]==board[1][i] && board[1][i]==board[2][i] && board[0][i]!='_') { winner=board[0][i]; } } if(board[0][0]==board[1][1] && board[1][1]==board[2][2] && board[0][0]!='_') { winner=board[0][0]; } if(board[0][2]==board[1][1] && board[1][1]==board[2][0] && board[0][2]!='_') { winner=board[0][2]; } if(board[0][0]==board[0][1] && board[0][1]==board[0][2]&& board[0][2]==board[0][1]&& board[1][0]==board [1][1]&& board[1][1]==board[1][2]&&board[1][2]==board[2][0]&&board[2][0]==board [2][1]&& board[2][1]==board [2][2] && board [0][0]!='_') { winner='0'; } } int check(char board[3][3]) { for (int i=0; i<=2; i++) { if(board[i][0]==board[i][1] && board[i][1]==board[i][2] && board[i][0]!='_') { return 1; } } for(int i=0; i<=2; i++) { if(board[0][i]==board[1][i] && board[1][i]==board[2][i] && board[0][i]!='_') { return 1; } } if(board[0][0]==board[1][1] && board[1][1]==board[2][2] && board[0][0]!='_') { return 1; } if(board[0][2]==board[1][1] && board[1][1]==board[2][0] && board[0][2]!='_') { return 1; } if(board[0][0]==board[0][1] && board[0][1]==board[0][2]&& board[0][2]==board[0][1]&& board[1][0]==board [1][1]&& board[1][1]==board[1][2]&&board[1][2]==board[2][0]&&board[2][0]==board [2][1]&& board[2][1]==board [2][2] && board [0][0]!='_') { return 0; } else { return 0; } } void bestmov() { char ex[3][3]; int win=0,r,c; for(int i=0;i<3;i++) { for(int j=0;j<3;j++) { ex[i][j]=board[i][j]; } } for(r=0;r<3;r++) { for(c=0;c<3;c++) { if(ex[r][c]=='_') { // Check if AI wins with next move ex[r][c]='O'; win=check(ex); if (win) { goto SETBOARD; } else { ex[r][c]='_'; //reset to original value } } } } for(r=0;r<3;r++) { for(c=0;c<3;c++) { if(ex[r][c]=='_') { // Check if opponent wins with next move ex[r][c]='X'; win=check(ex); if (win) { goto SETBOARD; } else { ex[r][c]='_'; //reset to original value } } } } if(win==0) { int once=1; srand(time(NULL)); int big=rand()%5+1; switch(big) { again: case 1: { if(ex[0][0]=='_') { board[0][0]='O'; break; } } case 2: { if (ex[0][2]=='_') { board[0][2]='O'; break; } } case 3: { if (ex[2][0]=='_') { board[2][0]='O'; break; } } case 4: { if (ex[2][2]=='-') { board[2][2]='O'; break; } } case 5: { if (ex[1][1]=='_') { board[1][1]='O'; break; } else { if(once) { once=0; goto again; } int once1=1; srand(time(NULL)); int big1=rand()%4+1; switch(big1) { again1: case 1: { if(ex[0][1]=='_') { board[0][1]='O'; break; } } case 2: { if (ex[1][2]=='_') { board[1][2]='O'; break; } } case 3: { if (ex[2][1]=='_') { board[2][1]='O'; break; } } case 4: { if (ex[1][0]=='_') { board[1][0]='O'; break; } else { if(once1) { once1=0; goto again1; } break; } } } } } } } SETBOARD: if (win=1) { board[r][c]='O'; } } #define TRUE 1 #define FALSE 0 int main() { int trn,r1,r2,c1,c2,max=0,choice[3]; //bool first_mov=TRUE; inigame(); printf("**************************************************************************************************************************************************************\n\n"); printf("\t\t\t\t\t\t\tWELCOME TO THE TIC TAC TOE GAME !!!\n\n"); printf("\t Select game mode:\n\t 1.P Vs P\n\t 2.P Vs AI\n\t 3.Multiplayer[LAN]\n"); c: scanf("%d",&choice[0]); printf("\n\n"); switch(choice[0]) { case 1: { update(); trn=toss(); while(winner=='0' && max!=9) { if(trn%2==1) { printf("\nPlayer 1[X] turn : "); p1(); update(); trn++; max++; checkWinner(); } else if(trn%2==0) { printf("\nPlayer 2[O] turn : "); p2(); update(); trn++; max++; checkWinner(); } } if(winner=='X') { printf("\n\n\t\t\t\t\t\t\t PLAYER 1[X] WINS !!!\n\n"); } else if (winner=='O') { printf("\n\n\t\t\t\t\t\t\t PLAYER 2[O] WINS !!!\n\n"); } else { printf("\n\n\t\t\t\t\t\t\t ITS A TIE !!!\n\n"); } break; } case 2: { update(); cout<<"\n\n"; trn=toss(); int first_mov; if (trn==2) // AI 1st move { first_mov=0; } else { first_mov=1; // Opp 1st move } while(winner=='0' && max!=9) { if(trn%2==1) // Player turn { printf("\nPlayer 1[X] turn : "); p1(); update(); trn++; max++; first_mov++; checkWinner(); } else if(trn%2==0) // AI turn { if (first_mov<=3) { srand(time(NULL)); int big=rand()%5+1; switch(big) { again: case 1: { if(board[0][0]=='_') { board[0][0]='O'; break; } } case 2: { if (board[0][2]=='_') { board[0][2]='O'; break; } else { continue; } } case 3: { if (board[2][0]=='_') { board[2][0]='O'; break; } else { continue; } } case 4: { if (board[2][2]=='-') { board[2][2]='O'; break; } else { continue; } } case 5: { if (board[1][1]=='_') { board[1][1]='O'; break; } else { goto again; } } } first_mov++; printf("\nAI[O] turn : \n"); update(); trn++; max++; } else { bestmov(); printf("\nAI[O] turn : \n"); update(); trn++; max++; checkWinner(); } } } if(winner=='X') { printf("\n\n\t\t\t\t\t\t\t PLAYER 1[X] WINS !!!\n\n"); } else if (winner=='O') { printf("\n\n\t\t\t\t\t\t\t AI[O] WINS !!!\n\n"); } else { printf("\n\n\t\t\t\t\t\t\t ITS A TIE !!!\n\n"); } break; } case 3: { int pin,r3,c3,r4,c4; char ipad[20]; printf("Select following options:\n"); printf("\t 1.Create a Server\n\t 2.Join a server\n\n"); cin>>choice[1]; if(choice[1]==1) { cout<<"Enter a 5 digit pin : "; cin>>pin; int port = pin; //buffer to send and receive messages with //setup a socket and connection tools sockaddr_in servAddr; bzero((char*)&servAddr, sizeof(servAddr)); servAddr.sin_family = AF_INET; servAddr.sin_addr.s_addr = htonl(INADDR_ANY); servAddr.sin_port = htons(port); //open stream oriented socket with internet address //also keep track of the socket descriptor int serverSd = socket(AF_INET, SOCK_STREAM, 0); if(serverSd < 0) { cerr << "Error establishing the server socket" << endl; exit(0); } //bind the socket to its local address int bindStatus = bind(serverSd, (struct sockaddr*) &servAddr,sizeof(servAddr)); if(bindStatus < 0) { cerr << "Error binding socket to local address" << endl; exit(0); } cout << "Waiting for a client to connect..." << endl; //listen for up to 5 requests at a time listen(serverSd, 5); //receive a request from client using accept //we need a new address to connect with the client sockaddr_in newSockAddr; socklen_t newSockAddrSize = sizeof(newSockAddr); //accept, create a new socket descriptor to //handle the new connection with client int newSd = accept(serverSd, (sockaddr *)&newSockAddr, &newSockAddrSize); if(newSd < 0) { cerr << "Error accepting request from client!" << endl; exit(1); } cout << "Connected with client!" << endl; int bytesRead, bytesWritten = 0; while(winner=='0' && max!=9) { //receive a message from the client (listen) cout << "Awaiting client response..." << endl; memset(&r4, 0, sizeof(r4)); memset(&c4, 0, sizeof(c4)); //clear the buffer bytesRead += recv(newSd,(char*)&board,sizeof(board),0); bytesRead += recv(newSd,(char*)&board,sizeof(board),0); cout<<"\n"; update(); max++; checkWinner(); while(1) { printf("Player X:\n"); printf(" r: "); scanf("%d",&r3); printf(" \t\tc: "); scanf("%d",&c3); if(board[r3-1][c3-1]=='_') { board[r3-1][c3-1]='X'; memset(&r3, 0, sizeof(r3)); memset(&c3, 0, sizeof(c3)); bytesRead += send(newSd,(char*)&board,sizeof(board),0); bytesRead += send(newSd,(char*)&board,sizeof(board),0); break; } else { printf("\n\tTHIS POSITION IS NOT EMPTY, PLEASE ENTER AGAIN : "); } } update(); checkWinner(); } if(winner=='X') { printf("\n\n\t\t\t\t\t\t\t PLAYER 1[X] WINS !!!\n\n"); } else if (winner=='O') { printf("\n\n\t\t\t\t\t\t\t PLAYER 2[O] WINS !!!\n\n"); } else { printf("\n\n\t\t\t\t\t\t\t ITS A TIE !!!\n\n"); } //we need to close the socket descriptors after we're all done //gettimeofday(&end1, NULL); close(newSd); close(serverSd); /*cout << "********Session********" << endl; cout << "Bytes written: " << bytesWritten << " Bytes read: " << bytesRead << endl; // cout << "Elapsed time: " << (end1.tv_sec - start1.tv_sec) // << " secs" << endl; cout << "Connection closed..." << endl; return 0;*/ } else if (choice[1]==2) { //we need 2 things: ip address and port number, in that order //grab the IP address and port number cout<<"\nEnter the ipaddress of host: "; cin>>ipad; cout<<"\nEnter the password : "; cin>>pin; char *serverIp = ipad; //create a message buffer //char msg[1500]; //setup a socket and connection tools struct hostent* host = gethostbyname(serverIp); sockaddr_in sendSockAddr; bzero((char*)&sendSockAddr, sizeof(sendSockAddr)); sendSockAddr.sin_family = AF_INET; sendSockAddr.sin_addr.s_addr = inet_addr(inet_ntoa(*(struct in_addr*)*host->h_addr_list)); sendSockAddr.sin_port = htons(pin); int clientSd = socket(AF_INET, SOCK_STREAM, 0); //try to connect... int status = connect(clientSd,(sockaddr*) &sendSockAddr, sizeof(sendSockAddr)); if(status < 0) { cout<<"Error connecting to socket!"<<endl; exit(0); } cout << "Connected to the server!" << endl; int bytesRead, bytesWritten = 0; //struct timeval start1, end1; //gettimeofday(&start1, NULL); while(winner=='0' && max!=9) { //cout << ">"; //string data; //getline(cin, data); memset(&r3, 0, sizeof(r3)); memset(&c3, 0, sizeof(c3));//clear the buffer while(1) { update(); printf("Player O:\n"); printf(" r: "); scanf("%d",&r3); printf(" \t\tc: "); scanf("%d",&c3); if(board[r3-1][c3-1]=='_') { board[r3-1][c3-1]='O'; memset(&r3, 0, sizeof(r3)); memset(&c3, 0, sizeof(c3)); bytesRead += send(clientSd, (int*)&r3, sizeof(r3), 0); bytesRead += send(clientSd, (int*)&c3, sizeof(c3), 0); break; } else { printf("\n\tTHIS POSITION IS NOT EMPTY, PLEASE ENTER AGAIN : "); } } update(); checkWinner(); memset(&r4, 0, sizeof(r4)); memset(&c4, 0, sizeof(c4)); bytesRead += recv(clientSd, (int*)&r4, sizeof(r4), 0); bytesRead += recv(clientSd, (int*)&c4, sizeof(c4), 0); board[r4-1][c4-1]='X'; update(); checkWinner(); } if(winner=='X') { printf("\n\n\t\t\t\t\t\t\t PLAYER 1[X] WINS !!!\n\n"); } else if (winner=='O') { printf("\n\n\t\t\t\t\t\t\t PLAYER 2[O] WINS !!!\n\n"); } else { printf("\n\n\t\t\t\t\t\t\t ITS A TIE !!!\n\n"); } //gettimeofday(&end1, NULL); close(clientSd); /*cout << "********Session********" << endl; cout << "Bytes written: " << bytesWritten << " Bytes read: " << bytesRead << endl; cout << "Elapsed time: " << (end1.tv_sec- start1.tv_sec) << " secs" << endl; cout << "Connection closed" << endl; return 0;*/ } break; } default: { printf("Wrong choice please try again\n"); goto c; } } }
e48e74d51eda195f5667eb590147dc8953cbf510
addcc77472f60e6ff27e2499f84a0b7eaab696e7
/Sept-10-20/assignment46.cpp
1b4cf27ab9ac4e10d459d2f25ee26cb634199ca6
[]
no_license
rohitbhatghare/c-c-
865d37f4ba0c223983fec0c04ef9ed1f9e51fe5e
006e59e327af355cf6e3d527de24aa4571c4fd6d
refs/heads/master
2023-01-03T05:08:43.042580
2020-10-09T09:48:55
2020-10-09T09:48:55
292,771,478
0
0
null
null
null
null
UTF-8
C++
false
false
676
cpp
assignment46.cpp
#include<iostream> #include<conio.h> using namespace std; int main() { int n,min,max,avg,sum=0,ctr=0; cout<<" Enter the values"<<endl; cin>>n; if(n<=0) { return 0; } min=n; max=n; while(n>0) { sum=sum+n; ctr++; if(n>max) { max=n; } if(n<min) { min= n; } cout<<"\n Enter positve numbers"<<endl; cin>>n; } avg=sum/(double)ctr; cout<<"Number of +ve numbers are"<<ctr<<endl; cout<<"Maximum number"<<max<<endl; cout<<"Minimum number"<<min<<endl; cout<<"Average is"<<avg; return 0; }
56815a196b906f2b546129f88119411a237cf0fc
53ffff4bf1b977e52da7b925cfa428f9c291e937
/Builder/ThinPerson2/PersonDirector.h
da0caaedfca00cf04c73d433e0c8bfed13f9c84f
[]
no_license
willtuna/DesignPatternExercise
4260c1b2b7096e353b4b0eea67ee028a9c9992ca
8d1b43c5a739f2fa8705ce5a96fa8c50f1c47b36
refs/heads/master
2020-04-14T17:13:07.968621
2014-09-03T10:25:21
2014-09-03T10:25:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
429
h
PersonDirector.h
#ifndef PERSONDIRECTOR_H #define PERSONDIRECTOR_H #include "PersonBuilder.h" class PersonDirector { PersonBuilder* m_pPb; public: PersonDirector(PersonBuilder* Pb):m_pPb(Pb){}; void createPerson() //用一個類別將暫時內聚力包起來。 { m_pPb->BuildHead(); m_pPb->BuildBody(); m_pPb->BuildArmLeft(); m_pPb->BuildArmRight(); m_pPb->BuildLegLeft(); m_pPb->BuildLegRight(); } }; #endif