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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f6958ab954c6cb2495de1e24d3e94b6b665117f2 | 0c21160a750e11f44cc1638e2da9595fa55b7d45 | /Trappingrainwater.cpp | e2847782270fa8cab3c101889316515c19114b24 | [] | no_license | Aakarshhhh/MyDSArepo | 246ef8110634d9eeb4029b547d9b9c40cbc14086 | 709c13a0c43924161838fab5bf53e22d2a8c9385 | refs/heads/main | 2023-09-03T18:54:53.365011 | 2021-10-28T05:33:18 | 2021-10-28T05:33:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 619 | cpp | Trappingrainwater.cpp | class Solution {
public:
int trap(vector<int>& h) {
if(h.size()<=2) return 0;
int i,j,s=0,fs=0,n=h.size();
int lmax=h[0],rmax=h[n-1],l=1,r=n-2;
while(l<=r)
{
if(lmax<=rmax)
{
if(h[l]<=lmax)
s+=lmax-h[l];
else
lmax=h[l];
l++;
}
else{
if(h[r]<=rmax)
s+=rmax-h[r];
else
rmax=h[r];
r--;
}
}
return s;
}
};
|
224642b3a379842441cd5dc04ee34fe31acc1706 | aac8c5cadb249aecedc7b0ccd51010ff5e7bf3b2 | /Codeforces/488D.cpp | 0675b181e5616c0c194b76fe4036e92dc7598c03 | [] | no_license | furkanusta/Competitive-Programming | 1b74f1cfc2e6049565d9b31950b325b2b21d2bca | 06582650a77ba003cdef31995763100721b399c8 | refs/heads/master | 2022-05-28T07:18:44.670839 | 2022-05-19T20:28:11 | 2022-05-19T20:28:11 | 37,484,205 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,247 | cpp | 488D.cpp | /****
URL: http://codeforces.com/contest/488/problem/D
Tag: dp
Difficulty: Medium
Complexity: O(Nlog(N))
Decription: Let f[i] denote the minimal number of pieces that the
first i numbers can be split into. g[i] denote the maximal length of substrip
whose right border is i(included) and it satisfy the condition.
Then f[i] = min(f[k]) + 1, where i - g[i] ≤ k ≤ i - l.
****/
#include <cstdio>
#include <utility>
#include <set>
#include <algorithm>
using namespace std;
set<pair<int,int> > a,b;
int f[100005], g[100005];
int n, s, l, i, x=0;
int main ( )
{
scanf("%d %d %d",&n, &s, &l);
for (i = 1; i <= n; i++)
scanf("%d", &g[i]);
a.clear();
b.clear();
f[0] = 0;
for (i = 1; i <= n; i++)
{
a.insert (make_pair (g[i], i));
while (a.rbegin()->first - a.begin()->first > s)
{
b.erase (make_pair (f[x], x));
x++;
a.erase (make_pair (g[x], x));
}
if (i >= l && (int)a.size() >= l)
{
if (f[i - l] >= 0)
b.insert (make_pair (f[i - l], i - l));
}
if (b.size() == 0)
f[i] = -1;
else
f[i] = b.begin()->first + 1;
}
printf("%d\n", f[n]);
return 0;
}
|
69d866bcf8210647172322ce844827b47c5f2361 | 2d287a6f47f42ca1b18840fcf683d8053226587c | /C++ Test 2/Players.cpp | 657f40995066bb2a23c5cdf5adfbbced3777b12a | [] | no_license | SuperiorJacob/Player-database | db708173e274fcf796beade1689a2faca676d384 | 60086dbd8e13c701324bddf81846e5614ab66330 | refs/heads/master | 2022-11-25T19:43:23.161165 | 2020-07-25T14:26:32 | 2020-07-25T14:26:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 124 | cpp | Players.cpp | #include <string.h>
#include "Players.h"
Players::Players()
{
score = 0;
strcpy_s(name, "");
}
Players::~Players()
{
}
|
5e213fe5d5278379eaaccf6d8ef3c43a59ebbd57 | dd9413648b76e18f687e382d85069469ee4c9249 | /src/spatial/Octree.cpp | 9f0921dc30c30b2ba47b4ab3bea394d23c6a45f6 | [] | no_license | kyle-piddington/PovTracer | 707593e5b471a0457be30db34e4044caddec6249 | c56dc3cd5111161bb563087eff423ca82b896a84 | refs/heads/master | 2021-01-21T19:36:42.159415 | 2016-06-09T02:19:43 | 2016-06-09T02:19:43 | 55,537,373 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,651 | cpp | Octree.cpp | #include "spatial/Octree.hpp"
#define Z_MASK 0x1
#define Y_MASK 0x2
#define X_MASK 0x4
Octree::Octree(int maxDepth):
maxDepth(maxDepth)
{
}
Amount calculateMaxBounds(const std::vector<SceneObject> & objects)
{
Amount maxBound = -INT_MAX;
//Largest power of 2 that contains all objects
//
for (auto i = objects.begin(); i != objects.end(); ++i)
{
for(int dim = 0; dim < 3; dim++)
{
maxBound = fmax(maxBound,fmax(fabs(i->bounds.maxCoords(dim)),fabs(i->bounds.minCoords(dim))));
}
}
//Octree bounds with largest power of two.
Amount maxLog2Bounds = pow(2, ceil(log2(maxBound)));
return maxLog2Bounds/2;
}
void Octree::splitTree(std::vector<Node> & children, const std::vector<SceneObject *> & objects, Vector3 minBounds, Vector3 maxBounds, int depth)
{
children.resize(8);
//Create the new children
for(int i = 0; i < 8; i++)
{
bool zBox = i & Z_MASK;
bool yBox = i & Y_MASK;
bool xBox = i & X_MASK;
Vector3 offset = Vector3(xBox, yBox, zBox).cwiseProduct((maxBounds-minBounds))/2;
BoundingBox containingBox(minBounds + offset, minBounds + offset + (maxBounds-minBounds)/2);
std::vector<SceneObject *> childObjects;
for (auto obj = objects.begin(); obj != objects.end(); ++obj)
{
if(containingBox.intersects((*obj)->bounds))
{
childObjects.push_back(*obj);
}
}
build(children[i],childObjects,minBounds + offset, minBounds + offset + (maxBounds - minBounds)/2, depth+1);
}
}
void Octree::build(Node & node, const std::vector<SceneObject *> & objects, Vector3 minBounds, Vector3 maxBounds, int depth)
{
if(depth >= maxDepth || objects.size() <= 1)
{
node.terminal = true;
for (int i = 0; i < objects.size(); ++i)
{
node.objects.push_back(objects[i]);
}
}
else //split
{
splitTree(node.children,objects,minBounds,maxBounds, depth);
}
}
Hit Octree::trace(const Ray & ray) const
{
return Hit(ray);
}
Hit Octree::Node::trace(const Ray & ray) const
{
return Hit(ray);
}
void Octree::init(const std::vector<SceneObject> & objects)
{
//Copy the objects into the spatial structure
this->objects = std::vector<SceneObject>(objects);
std::vector<SceneObject *> objectPointers;
for(int i = 0; i < this->objects.size(); i++)
{
objectPointers.push_back(&this->objects[i]);
}
Amount mBound = calculateMaxBounds(objects);
bounds = BoundingBox(Vector3(-mBound,-mBound,-mBound), Vector3(mBound,mBound,mBound));
//Create octree
build(root, objectPointers,bounds.minCoords, bounds.maxCoords,0);
} |
30265aa96db48d5f7c040dfe30ca354419998d70 | 3154292526baeeb66f8d72ddcb1fab6794c83fc1 | /Программирование/Готовые лабы/lab8, Оганезов - 15/lab8/Source.cpp | 3ac7fad50c7a7f70ca5f0e6d5d9aaa9dfd5057c5 | [] | no_license | Koladu/2_Sem | cbd36bc6dcaa50cbb89be77731399611118abdf7 | d0ece263d734b645b2220aebe621839d6aba02a5 | refs/heads/main | 2023-03-28T19:33:22.389069 | 2021-04-01T06:37:07 | 2021-04-01T06:37:07 | 353,597,299 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 5,211 | cpp | Source.cpp | #include <iostream>
#include <ctype.h>
#include <string.h>
using namespace std;
void menu(char massiv1[][100], int* x);
void predl(char massiv[][100], int* y);
void slova(char massiv1[][100], char massiv[][100], int x, int y);
void simvoli(char massiv1[][100], char massiv[][100], int x, int y);
void glas(char massiv1[][100], char massiv[][100], int x, int y);
int main()
{
int x = 0, y = 0;
setlocale(0, "");
char massiv[][100] = {
{"Я очень люблю мороженное."},
{"Вы мне очень нравитесь."},
{"Сколько стоит футболка?"},
{"Можно вас попросить помочь?"},
{"Ты идешь в школу и точка!"},
{"Как же быстро летит время."}
};
char massiv1[][100] = {
{"Отказ от действия"},
{"Количество слов"},
{"Количество видимых символов"},
{"Количество гласных букв"},
};
menu(massiv1, &x);
predl(massiv, &y);
void((*arr[3]))(char massiv1[][100], char massiv[][100], int x, int y);
arr[0] = slova;
arr[1] = simvoli;
arr[2] = glas;
if (x == 1) {
arr[0](massiv1, massiv, x, y);
}
else if (x == 2) {
arr[1](massiv1, massiv, x, y);
}
else if (x == 3) {
arr[2](massiv1, massiv, x, y);
}
system("pause");
}
void menu(char massiv1[][100], int* x) {
int a;
std::cout << "Меню действия. Определить:\n\n";
//1================================== //вывод действий
for (int i = 1; i < 4; i++) {
std::cout << i << ".";
for (int j = 0; j < strlen(massiv1[i]); j++) {
std::cout << massiv1[i][j];
}
std::cout << "\n";
}
std::cout << "0.";
for (int j = 0; j < strlen(massiv1[0]); j++) {
std::cout << massiv1[0][j];
}
std::cout << "\n";
std::cout << "Выберите вариант -> "; cin >> a; std::cout << "\n"; //выбор варианта
//=================================== //Проверка 'x' на правильность ввода
if ((a < 0) || (a > 3)) {
std::cout << "Ошибка ввода, такого варианта нет. Повторите попытку...";
cin >> a;
}
else if (a == 0) {
exit(0);
}
(*x) = a;
}
void predl(char massiv[][100], int* y) {
int a;
//2================================== //вывод действий
for (int i = 0; i < 6; i++) {
cout << i + 1 << " ";
for (int j = 0; j < strlen(massiv[i]); j++) {
std::cout << massiv[i][j];
}
std::cout << "\n";
}
std::cout << "Выберите вариант -> "; cin >> a; std::cout << "\n"; //выбор варианта
//=================================== //Проверка 'y' на правильность ввода
if ((a < 1) || (a > 6)) {
std::cout << "Ошибка ввода, такого варианта нет. Повторите попытку...";
cin >> a;
}
(*y) = a;
}
void slova(char massiv1[][100], char massiv[][100], int x, int y) {
int k = 0;
std::cout << "Вариант: " << x << " ";
for (int j = 0; j < strlen(massiv1[x]); j++) { //
std::cout << massiv1[x][j];
}
std::cout << "\nПредложение: " << y << " ";
for (int i = 0; i < strlen(massiv[y - 1]); i++) {
std::cout << massiv[y - 1][i];
}
for (int i = 0; i < strlen(massiv[y - 1]); i++) {
if (isspace((unsigned char)massiv[y - 1][i])) {
k++;
}
}
cout << "\nКолличество слов в предложении = " << k + 1 << endl;
}
void simvoli(char massiv1[][100], char massiv[][100], int x, int y) {
//Количество видимых символов
int k = 0;
std::cout << "Вариант: " << x << " ";
for (int j = 0; j < strlen(massiv1[x]); j++) {
std::cout << massiv1[x][j];
}
std::cout << "\nПредложение: " << y << " ";
for (int i = 0; i < strlen(massiv[y - 1]); i++) {
std::cout << massiv[y - 1][i];
}
for (int i = 0; i < strlen(massiv[y - 1]); i++) {
if (isgraph((unsigned char)massiv[y - 1][i])) {
k++;
}
} cout << "\nКоличество видимых символов = " << k << endl;
}
void glas(char massiv1[][100], char massiv[][100], int x, int y) {
int k = 0;
std::cout << "Вариант: " << x << " ";
for (int j = 0; j < strlen(massiv1[x]); j++) { //
std::cout << massiv1[x][j];
}
std::cout << "\nПредложение: " << y << " ";
for (int i = 0; i < strlen(massiv[y - 1]); i++) {
std::cout << massiv[y - 1][i];
}
for (int i = 0; i < strlen(massiv[y - 1]); i++) {
if ((massiv[y - 1][i] == 'А') || (massiv[y - 1][i] == 'а') || (massiv[y - 1][i] == 'Е') || (massiv[y - 1][i] == 'е') || (massiv[y - 1][i] == 'Ё') || (massiv[y - 1][i] == 'ё') || (massiv[y - 1][i] == 'И') || (massiv[y - 1][i] == 'и') ||
(massiv[y - 1][i] == 'О') || (massiv[y - 1][i] == 'о') || (massiv[y - 1][i] == 'У') || (massiv[y - 1][i] == 'у') || (massiv[y - 1][i] == 'Ы') || (massiv[y - 1][i] == 'ы') || (massiv[y - 1][i] == 'Э') || (massiv[y - 1][i] == 'э') ||
(massiv[y - 1][i] == 'Ю') || (massiv[y - 1][i] == 'ю') || (massiv[y - 1][i] == 'Я') || (massiv[y - 1][i] == 'я'))
{
k = k + 1;
}
}
cout << "\nКоличество гласных букв = " << k << endl;
}
|
8c04869ce8d717ce51ebdfa44540dc8aab7768d9 | 5b88b3b06b55a647b75bfb8e800bd59b58e801d7 | /evolve/src/server/MommaServer.cc | 5971a37e0d2cc5eb72bcd6b5f370d264a5979ff1 | [] | no_license | StuAtGit/evolve-the-balls | 575caa3252401caeb72cea9d456319f928e57da4 | 3e8d13ec62284fcd19b3ee65546185b58d18c881 | refs/heads/master | 2021-01-17T09:42:05.070470 | 2016-05-30T23:48:19 | 2016-05-30T23:48:19 | 33,900,338 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 822 | cc | MommaServer.cc | #include <string>
#include <vector>
#include <map>
#include <iostream>
#include <boost/lexical_cast.hpp>
#include "Server.h"
#include "CommandHandler.h"
using namespace std;
using namespace boost;
using namespace evolve;
int main()
{
int systemServerPort = 5012;
int interpreterServerPort = 5013;
string ip = "127.0.0.1";
if( fork() == 0 )
{
Server server;
server.setDefaultHandlerLibLocation( "./interpreterCommandHandler/.libs/libInterpreterCommandHandler.so" );
server.serverMain( interpreterServerPort, false, false, true );
}
else
{
Server server;
server.setDefaultHandlerLibLocation( "./systemCommandHandler/.libs/libSystemCommandHandler.so" );
server.serverMain( systemServerPort, false, false, true );
}
return 0;
}
|
ac18395277df60ad6c6288f0d04b26d1ebc1cc6d | 377d69a058a0b5a1c66352fe7d5f27c9ef99a987 | /14_dynamic_programming/exercises/14.4-5_6.cpp | fcba0a3062fc28991e0a319d7578227a4911c7e3 | [
"Apache-2.0"
] | permissive | frozenca/CLRS | 45782d67343eb285f2d95d8c25184b9973079e65 | 408a86c4c0ec7d106bdaa6f5526b186df9f65c2e | refs/heads/main | 2022-09-24T14:55:38.542993 | 2022-09-12T02:59:10 | 2022-09-12T02:59:10 | 337,278,655 | 55 | 15 | null | null | null | null | UTF-8 | C++ | false | false | 334 | cpp | 14.4-5_6.cpp | #include <14_dynamic_programming/inc/easy.h>
#include <iostream>
#include <vector>
int main() {
namespace fc = frozenca;
using namespace std;
vector<int> v{0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15};
auto LIS = fc::longest_increasing_subsequence(v);
for (auto n : LIS) {
cout << n << ' ';
}
} |
74915c030cf53cda8fac69b063e553ce96ba0dfc | 6b7d20295a69755efb50d5b72bf66d3e2a5f4276 | /hw1/cpp/main.cc | e040bed4128b2cabc285b94671f71c9e35e7b8a6 | [] | no_license | Rdui/Tietorakenteet-ja-algoritmit | 629677abb12d952f6087e2f8c167d28802705bc4 | 9b1a21e77bec376cead20eafcf395aeec04b4e83 | refs/heads/master | 2021-05-02T04:58:19.599623 | 2018-02-09T15:30:05 | 2018-02-09T15:30:05 | 120,911,112 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,587 | cc | main.cc | // Main program for first
#include <iostream>
#include <cstdlib>
#include <string>
#include <fstream>
#include <sstream>
#include <chrono>
#include <ctime>
#include <iomanip>
#include "datastructure.hh"
// Command symbols
const char READ = 'R';
const char PRINT = 'P';
const char ALPHA = 'A';
const char EMPTY = 'E';
const char QUIT = 'Q';
const char MINMAX = 'X';
const char ADD = 'D';
//const char BEST = 'B';
//const char WORST = 'W';
const char NAME = 'S';
const char GEN = 'G';
const char EFF = 'F';
// Other constants
const std::string PROMPT = "> ";
//const std::string LOWSCORE = "Lowest score";
const char FSEP = ';';
// Error constants
const std::string E_FNF = "Error: file not found\n";
const std::string E_INT = "Error: bus count and passenger count must be integers";
//const std::string E_PNF = "Person not found";
void readFile(std::string const& filename, Datastructure& ds);
void generate(Datastructure& ds, unsigned int amount);
void efficiencyTest(Datastructure& ds, unsigned int amount);
int main()
{
Datastructure ds;
std::string name = "";
char command = QUIT;
// Reads command and possible parameters.
// Executes commands.
do
{
std::cout << PROMPT;
std::cin >> command;
if(command == READ)
{
std::string filename;
std::cin >> filename;
std::cout << READ << " " << filename << std::endl;
readFile(filename, ds);
}
else if (command == PRINT)
{
std::cout << PRINT << std::endl;
ds.printLeaderBoard();
}
else if (command == ALPHA)
{
std::cout << ALPHA << std::endl;
ds.printAlphabetically();
}
else if (command == EMPTY)
{
std::cout << EMPTY << std::endl;
ds.empty();
}
else if (command == MINMAX)
{
std::string param = "";
std::cin >> param;
std::cout << MINMAX << " " << param << std::endl;
if (param == "best")
{
ds.bestPlayer();
}
else if (param == "worst")
{
ds.worstPlayer();
}
}
else if (command == NAME)
{
std::string searchTerm = "";
char space;
std::cin.get(space);
std::getline(std::cin, searchTerm);
std::cout << NAME << " " << searchTerm << std::endl;
// std::cerr << "Etsitaan " << searchTerm << std::endl;
ds.findPerson(searchTerm);
}
else if (command == GEN)
{
unsigned int amount = 0;
std::cin >> amount;
std::cout << GEN << " " << amount << std::endl;
generate(ds, amount);
}
else if (command == EFF)
{
unsigned int amount = 0;
std::cin >> amount;
std::cout << EFF << " " << amount << std::endl;
efficiencyTest(ds, amount);
}
else if (command == ADD)
{
std::string input = "";
char space;
std::cin.get(space);
std::getline(std::cin, input );
std::string name = "";
std::string temp = "";
unsigned int brokenNysse = 0;
unsigned int sufferingPeople = 0;
std::istringstream linestream(input);
std::getline(linestream, name, FSEP);
std::getline(linestream, temp, FSEP);
std::istringstream nyssestream(temp);
if (!(nyssestream >> brokenNysse))
{
std::cout << E_INT << std::endl;
}
if (!(linestream >> sufferingPeople))
{
std::cout << E_INT << std::endl;
}
std::cout << ADD << " " << input << std::endl;
//linestream >> name >> brokenNysse >> sufferingPeople;
ds.add(name, brokenNysse, sufferingPeople);
}
}
while(command != QUIT);
std::cout << QUIT << std::endl;
return EXIT_SUCCESS;
}
void readFile(std::string const& filename, Datastructure& ds)
{
std::ifstream file(filename.c_str());
if(!file)
{
file.close();
std::cout << E_FNF;
return;
}
std::string line = "";
std::string name = "";
unsigned int brokenNysse = 0;
unsigned int sufferingPeople = 0;
std::string temp = "";
while(std::getline(file, line))
{
std::istringstream linestream(line);
std::getline(linestream, name, FSEP);
std::getline(linestream, temp, FSEP);
//std::getline(line, sufferingPeople);
std::istringstream nyssestream(temp);
if (!(nyssestream >> brokenNysse))
{
std::cout << E_INT << std::endl;
}
if (!(linestream >> sufferingPeople))
{
std::cout << E_INT << std::endl;
}
//linestream >> name >> brokenNysse >> sufferingPeople;
ds.add(name, brokenNysse, sufferingPeople);
}
file.close();
}
void generate(Datastructure& ds, unsigned int amount)
{
static const char alphas[] = "abcdefghijklmnopqrstuvwxyz";
for ( unsigned int j = 0; j < amount; j++)
{
std::string name(10, ' ');
for ( size_t i = 0; i < 10; ++i)
{
name[i] = alphas[(unsigned int)std::rand() % (sizeof(alphas) - 1)];
}
unsigned int bNysse= (unsigned int)std::rand() % 200000;
unsigned int sPeople = (unsigned int)std::rand() % 200000;
ds.add(name, bNysse, sPeople);
}
}
void efficiencyTest(Datastructure& ds, unsigned int amount)
{
std::chrono::time_point<std::chrono::high_resolution_clock> start, end;
start = std::chrono::system_clock::now();
generate(ds, amount);
ds.add("Testi", 234508, 3452612);
ds.printLeaderBoard();
ds.printAlphabetically();
ds.worstPlayer();
ds.bestPlayer();
ds.findPerson("Testi");
ds.printLeaderBoard();
ds.printLeaderBoard();
ds.printAlphabetically();
ds.printLeaderBoard();
ds.printAlphabetically();
ds.printLeaderBoard();
ds.printAlphabetically();
end = std::chrono::system_clock::now();
std::chrono::duration<double> elapsed = end-start;
std::cerr << elapsed.count() << std::endl;
}
|
65c25e84ac6414b5a3d0e5a50e114068e73b5144 | 573a66e4f4753cc0f145de8d60340b4dd6206607 | /JS-CS-Detection-byExample/Dataset (ALERT 5 GB)/358137/3.10/pwsafe-3.10-src/OptionsMisc.h | 97a0faffd0eed6b4b3e62a82129abd1c1ffc0b2b | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"Artistic-1.0-Perl",
"Artistic-2.0",
"Zlib"
] | permissive | mkaouer/Code-Smells-Detection-in-JavaScript | 3919ec0d445637a7f7c5f570c724082d42248e1b | 7130351703e19347884f95ce6d6ab1fb4f5cfbff | refs/heads/master | 2023-03-09T18:04:26.971934 | 2022-03-23T22:04:28 | 2022-03-23T22:04:28 | 73,915,037 | 8 | 3 | null | 2023-02-28T23:00:07 | 2016-11-16T11:47:44 | null | UTF-8 | C++ | false | false | 1,806 | h | OptionsMisc.h | /*
* Copyright (c) 2003-2007 Rony Shapiro <ronys@users.sourceforge.net>.
* All rights reserved. Use of the code is allowed under the
* Artistic License terms, as specified in the LICENSE file
* distributed with this code, or available from
* http://www.opensource.org/licenses/artistic-license.php
*/
#pragma once
// OptionsMisc.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// COptionsMisc dialog
class COptionsMisc : public CPropertyPage
{
DECLARE_DYNCREATE(COptionsMisc)
// Construction
public:
COptionsMisc();
~COptionsMisc();
// Dialog Data
//{{AFX_DATA(COptionsMisc)
enum { IDD = IDD_PS_MISC };
BOOL m_confirmdelete;
BOOL m_maintaindatetimestamps;
BOOL m_escexits;
BOOL m_hotkey_enabled;
// JHF : class CHotKeyCtrl not supported by WinCE
#if !defined(POCKET_PC)
CHotKeyCtrl m_hotkey;
#endif
CComboBox m_dblclk_cbox;
BOOL m_usedefuser;
BOOL m_querysetdef;
CString m_defusername;
CString m_otherbrowserlocation;
//}}AFX_DATA
DWORD m_hotkey_value;
int m_doubleclickaction;
int m_DCA_to_Index[PWSprefs::maxDCA + 1];
CString m_csBrowser;
CString m_csBrowserCmdLineParms;
CString m_csAutotype;
BOOL m_minauto;
// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(COptionsMisc)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
virtual BOOL OnInitDialog();
virtual void OnOK();
// Generated message map functions
//{{AFX_MSG(COptionsMisc)
afx_msg void OnEnableHotKey();
afx_msg void OnUsedefuser();
afx_msg void OnBrowseForLocation();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnComboChanged();
BOOL PreTranslateMessage(MSG* pMsg);
private:
CToolTipCtrl* m_ToolTipCtrl;
};
|
eb2d4dfefd89bcc706b5ad0b0ad46fdb1ad9b87c | f95bddc697ce639e189854f045aa92a9d1a42cd4 | /examples/yeast_radially_symmetric_nutrient_eating_rate_adjustable_timestep/system/fvSolution | 18d30a9ab1f2a8b7b3d51f9405c38f9e7f7e48cd | [] | no_license | beishanmuyu/stokesBuoyantSoluteFoam | 869915adfddcba958cf7186aa6c552e22f700e31 | 1b75af324d8edb1f8d814244beac9573b1fc24fe | refs/heads/master | 2021-09-07T03:53:23.131809 | 2018-02-16T23:09:58 | 2018-02-16T23:12:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,739 | fvSolution | /*--------------------------------*- C++ -*----------------------------------*\
| o | |
| o o | HELYX-OS |
| o O o | Version: v2.4.0 |
| o o | Web: http://www.engys.com |
| o | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location system;
object fvSolution;
}
SIMPLE
{
nNonOrthogonalCorrectors 0; // Our mesh is orthogonal.
pRefCell 0;
pRefValue 0;
momentumPredictor on;
residualControl
{
U 1.0E-4;
p_rgh 1.0E-5;
max_iter 1500; // Maximum number of iterations attempted to calculate flow field
ignore_direction 1; // Ignore the Uy residual, as Uy = 0 in the radial simulation
}
}
solvers
{
p_rgh
{
solver GAMG;
agglomerator faceAreaPair;
mergeLevels 1;
cacheAgglomeration true;
tolerance 1e-8;
relTol 0.01;
smoother GaussSeidel;
}
U
{
solver GAMG;
agglomerator faceAreaPair;
mergeLevels 1;
cacheAgglomeration true;
tolerance 1e-8;
relTol 0.1;
smoother GaussSeidel;
}
c
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-8;
relTol 0;
}
}
relaxationFactors // Same used in other examples
{
fields
{
p_rgh 0.3;
}
equations
{
U 0.7;
}
}
| |
5d5ae9c4a51a80d45fddc910171f79caf60b575d | 83c0662a207bbc8fc985beec1ba83bcdc599172f | /src/private/abstractstringserialiser_p.h | 3fdf69e3891e85c2a57d095faaad9d1925e951c2 | [
"Apache-2.0"
] | permissive | VSRonin/QtModelUtilities | 9150d2c63da5dcab2c99dd6df3a365b59be36308 | 6b06d6592f4810d6256829b4b336e9d73fcd7877 | refs/heads/master | 2023-02-01T03:36:58.961121 | 2022-11-02T17:19:55 | 2022-11-02T17:19:55 | 126,153,437 | 20 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,828 | h | abstractstringserialiser_p.h | /****************************************************************************\
Copyright 2018 Luca Beldi
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 ABSTRACTMODELSERIALISER_P_H
#define ABSTRACTMODELSERIALISER_P_H
#include "abstractstringserialiser.h"
#include "abstractmodelserialiser_p.h"
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
class QTextCodec;
#endif
class AbstractStringSerialiserPrivate : public AbstractModelSerialiserPrivate
{
Q_DISABLE_COPY(AbstractStringSerialiserPrivate)
Q_DECLARE_PUBLIC(AbstractStringSerialiser)
protected:
AbstractStringSerialiserPrivate(AbstractStringSerialiser *q);
QString variantToString(const QVariant &val) const;
QVariant stringToVariant(const QString &val) const;
#ifdef QT_GUI_LIB
static QImage loadImageVariant(int type, const QString &val);
static QString saveImageVariant(const QImage &val);
#endif
QVariant loadVariant(int type, const QString &val) const;
QString saveVariant(const QVariant &val) const;
static int guessDecimals(double val);
static QString guessDecimalsString(double val, QLocale *loca = nullptr);
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
QTextCodec *m_textCodec;
#endif
};
#endif // ABSTRACTMODELSERIALISER_P_H
|
8a4d2c73c741dd9036c942baca07209e473e6bff | ceb8d5b1004e126b6bd9effc30cfbf4b2f2eb3c9 | /cpp_utils/SPI.h | 65569bcdf3b71c21876b59af5a78c3080409b70e | [] | no_license | andreaquilina/esp32-snippets | 8358d9f078cfb342db4df3866ce6177aef4b9df8 | 82e57107715937d2537b72ee6e521b9ce1133d80 | refs/heads/master | 2021-01-24T18:26:16.493952 | 2017-03-08T14:26:29 | 2017-03-08T14:26:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 551 | h | SPI.h | /*
* SPI.h
*
* Created on: Mar 3, 2017
* Author: kolban
*/
#ifndef COMPONENTS_CPP_UTILS_SPI_H_
#define COMPONENTS_CPP_UTILS_SPI_H_
#include <driver/spi_master.h>
#include <driver/gpio.h>
/**
* @brief Handle SPI protocol.
*/
class SPI {
public:
SPI();
virtual ~SPI();
void init(gpio_num_t mosiPin=GPIO_NUM_13, gpio_num_t misoPin=GPIO_NUM_12, gpio_num_t clkPin=GPIO_NUM_14, gpio_num_t csPin=GPIO_NUM_15);
void transfer(uint8_t *data, size_t dataLen);
private:
spi_device_handle_t handle;
};
#endif /* COMPONENTS_CPP_UTILS_SPI_H_ */
|
9467c809e3a3707ac020dfebf81072c82bca0152 | f7dc806f341ef5dbb0e11252a4693003a66853d5 | /thirdparty/harfbuzz/src/OT/Layout/GSUB/ChainContextSubst.hh | 08fd779f73096c9c73ca5806a339553457e70d64 | [
"MIT",
"OFL-1.1",
"JSON",
"LicenseRef-scancode-nvidia-2002",
"BSD-3-Clause",
"Zlib",
"MPL-2.0",
"CC0-1.0",
"BSL-1.0",
"Libpng",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"Unlicense",
"LicenseRef-scancode-free-unknown",
"CC-BY-4.0",
"Bison-exception-2.2",
"LicenseRef-scancode-other-permissive",
"GPL-3.0-only",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-unicode",
"BSD-2-Clause",
"FTL",
"GPL-3.0-or-later",
"Bitstream-Vera",
"MIT-Modern-Variant"
] | permissive | godotengine/godot | 8a2419750f4851d1426a8f3bcb52cac5c86f23c2 | 970be7afdc111ccc7459d7ef3560de70e6d08c80 | refs/heads/master | 2023-08-21T14:37:00.262883 | 2023-08-21T06:26:15 | 2023-08-21T06:26:15 | 15,634,981 | 68,852 | 18,388 | MIT | 2023-09-14T21:42:16 | 2014-01-04T16:05:36 | C++ | UTF-8 | C++ | false | false | 358 | hh | ChainContextSubst.hh | #ifndef OT_LAYOUT_GSUB_CHAINCONTEXTSUBST_HH
#define OT_LAYOUT_GSUB_CHAINCONTEXTSUBST_HH
// TODO(garretrieger): move to new layout.
#include "../../../hb-ot-layout-gsubgpos.hh"
#include "Common.hh"
namespace OT {
namespace Layout {
namespace GSUB_impl {
struct ChainContextSubst : ChainContext {};
}
}
}
#endif /* OT_LAYOUT_GSUB_CHAINCONTEXTSUBST_HH */
|
cc1da0e20dc7e9a3ef1fa8b4f87ef2c8cf6952c4 | 8571d7bd6f5989c0e41e8afb1540fbcefe128bf2 | /Funciones/FuncionA.cpp | 648fb08d53ff2efd033ccae1d731ea861381cdc0 | [] | no_license | sebasluna/taller-N4 | 97a617c8f1ddfdfb145d34a49912ca92f4770041 | 604a0198c4c5766e311470f7ca9a652d96f6c6f2 | refs/heads/master | 2021-01-20T04:12:14.188315 | 2017-04-28T02:25:30 | 2017-04-28T02:25:30 | 89,658,975 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 563 | cpp | FuncionA.cpp | /*
*NOMBRE:mult()
*AUTOR:Luis Sebastian Urbano Luna
*FECHA:abril/2017
*DESCRIPCION:se ingresan dos numeros los cuales se multiplican y despliega el resultado
*/
#include<stdio.h>
void llamarDatos();
void mult(float A,float B);
float num1,num2;
int main(){
llamarDatos();
mult(num1,num2);
return 0;
}
void llamarDatos(){
printf("Ingrese dos Numeros:");
scanf("%f",&num1);
scanf("%f",&num2);
}
void mult(float A,float B){
float multiplicacion= A*B;
printf("\nEl resultado de la multiplicacion es:%f\n",multiplicacion);
}
|
fd95320da974fd7cad0c61c027db49c762848c78 | 2ee74a3661f0baf8e8a18225349f92484b028b9b | /DataStructures/Linear/Stack.cpp | 732ab0495b65d3eb95e7bfe606f3c8c3aa347fdc | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | anantdhok/ComputerScience | fde83ff28ec1d725ae991ddb8fee753ec8bf6539 | 03939dc2cd56d0ef32d929f7f19f50dcf7573cd9 | refs/heads/main | 2023-04-24T10:30:28.661992 | 2021-05-13T14:51:21 | 2021-05-13T14:51:21 | 325,354,115 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,553 | cpp | Stack.cpp | #include<bits/stdc++.h>
#include<conio.h>
using namespace std;
struct Stack {
int top, capacity;
int *arr;
Stack(int size) {
top = -1;
capacity = size;
arr = new int[size];
}
~Stack() {
delete[] arr;
}
int isEmpty() {
if (top < 0)
return 1;
return 0;
}
int isFull() {
if (top >= capacity - 1)
return 1;
return 0;
}
void push() {
int d = 0;
while (d == 0) {
if (isFull()) {
cout << "\n Stack is Full.";
getch();
break;
}
else {
cout << "\n Enter the data : ";
cin >> d;
top++;
arr[top] = d;
}
cout << " Push Data Again? (0/1) : ";
cin >> d;
}
}
void pop() {
int d = 0;
while (d == 0) {
if (isEmpty()) {
cout << "\n Stack is Empty.";
getch();
break;
}
else {
cout << "\n Popped Data : " << arr[top] << endl;
top--;
}
cout << " Pop Data Again? (0/1) : ";
cin >> d;
}
}
void display() {
if (isEmpty())
cout << "\n Stack is Empty.";
else {
int d = top;
cout << "\n Stack - ";
while (d >= 0)
cout << arr[d--] << " ";
}
getch();
}
};
int main() {
int c = 0;
Stack s(5);
while (true) {
lb: system("cls");
cout << "\n Stack \n 1.Push Data \n 2.Pop Data \n 3.Display \n 4.Exit \n Enter the Choice : ";
cin >> c;
switch (c) {
case 1: s.push();
break;
case 2: s.pop();
break;
case 3: s.display();
break;
case 4: exit(0);
default: goto lb;
}
}
return 0;
}
|
ae003bc7cd29cb606eba7f2898dd2e17ee990d3a | 616fb6b4d0943d445b9567770aced789f8b2ab2a | /src/util/chi_square.cpp | 1784ee6088abc69fc8a26560fc7038eb5e272677 | [] | no_license | pjsdream/pcpred | dadd6a45428bc80256e94fd76c8986929f5bf250 | 39f1c1c1c992b11ea3e278633e9af7a5826df3d0 | refs/heads/master | 2021-01-21T13:33:44.966548 | 2016-02-29T04:49:31 | 2016-02-29T04:49:31 | 49,094,260 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,428 | cpp | chi_square.cpp | #include <pcpred/util/chi_square.h>
#include <map>
#include <cmath>
static bool chi_square_3d_initialized_ = false;
static std::map<double, double> chi_square_3d_table_;
static std::map<double, double> gaussian_distribution_3d_radius_table_;
static void initializeChiSquareTable();
double pcpred::chiSquare3D(double probability)
{
if (chi_square_3d_initialized_ == false)
initializeChiSquareTable();
return chi_square_3d_table_[probability];
}
double pcpred::gaussianDistributionRadius3D(double probability)
{
if (chi_square_3d_initialized_ == false)
initializeChiSquareTable();
return gaussian_distribution_3d_radius_table_[probability];
}
static void initializeChiSquareTable()
{
chi_square_3d_initialized_ = true;
chi_square_3d_table_[0.95 ] = 0.35;
chi_square_3d_table_[0.90 ] = 0.58;
chi_square_3d_table_[0.80 ] = 1.01;
chi_square_3d_table_[0.70 ] = 1.42;
chi_square_3d_table_[0.50 ] = 2.37;
chi_square_3d_table_[0.30 ] = 3.66;
chi_square_3d_table_[0.20 ] = 4.64;
chi_square_3d_table_[0.10 ] = 6.25;
chi_square_3d_table_[0.05 ] = 7.82;
chi_square_3d_table_[0.01 ] = 11.34;
chi_square_3d_table_[0.001] = 16.27;
for (std::map<double, double>::iterator it = chi_square_3d_table_.begin(); it != chi_square_3d_table_.end(); it++)
gaussian_distribution_3d_radius_table_[1.0 - it->first] = std::sqrt(it->second);
}
|
6106d0729c2452563ff1dd94d4d8225f9942d915 | ce6e9913bfe7b51f88cd8b56ba8e85136f496f37 | /include/Geometry/hittable_list.h | 1f9bc31c50a52770b396ac92adbdeb81bb020207 | [
"Apache-2.0"
] | permissive | Jerry-Shen0527/SimpleRayTracer | 5464ef32c476071ecbc2c1e8e0f889d10491d0a6 | a016c33ad456dcbd2dde633e616874bf9e5ee19a | refs/heads/master | 2023-03-25T22:43:45.223255 | 2021-03-18T15:28:39 | 2021-03-18T15:28:39 | 284,208,037 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 925 | h | hittable_list.h | //#ifndef HITTABLE_LIST_H
//#define HITTABLE_LIST_H
//#include <memory>
//#include <vector>
//
//#include <Geometry/hittable.h>
//
//using std::shared_ptr;
//using std::make_shared;
//
//aabb surrounding_box(aabb box0, aabb box1);
//
//class hittable_list : public hittable {
//public:
// hittable_list() {}
// hittable_list(shared_ptr<hittable> object) { add(object); }
//
// void clear() { objects.clear(); }
// void add(shared_ptr<hittable> object);
//
// virtual bool hit(const Ray& r, SurfaceInteraction& rec) const override;
// bool hit(const Ray& r) const;
//
// virtual bool bounding_box(float t0, float t1, aabb& output_box) const override;
// float pdf_value(const Point3f& o, const Vector3f& v) const override;
// Vector3f random(const Point3f& o) const override;
//
// std::vector<shared_ptr<hittable>> objects;
// std::vector<shared_ptr<hittable>> pdf_objects;
//};
//
//using Scene = hittable_list;
//
//#endif
|
ecd32c87c51e4e2936898ae003b0161ffc2fe7f8 | fb182cf9eb189f744c99e28fb953babc06126405 | /cs352/proj4-testing/HashTable.cc | a9219aae5218e1e05b9439fdc5c5ce3dae60042e | [] | no_license | mihirjham/PurdueCS | cbcbdc383e6240a3a08c7dce36b5e0f7688cf6d4 | 87f263e2fa2906cd4ec9b1fb3c90b323f8a9d1b3 | refs/heads/master | 2021-01-10T06:31:07.476413 | 2015-05-29T23:20:02 | 2015-05-29T23:20:02 | 36,533,880 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,129 | cc | HashTable.cc |
//
// CS251
// Implementation of a HashTable that stores void *
//
#include "HashTable.h"
#include <stdio.h>
// Obtain the hash code of a key
int HashTable::hash(const char * key)
{
// Add implementation here
int n = 0;
int length = strlen(key);
int i;
for(i = 0; i < length; i++)
{
n += (i+1) * key[i];
}
return n % TableSize;
}
// Constructor for hash table. Initializes hash table
HashTable::HashTable()
{
// Add implementation here
_buckets = (HashTableVoidEntry**)malloc(sizeof(HashTableVoidEntry *)*TableSize);
//_buckets = new HashTableVoidEntry*[TableSize];
int i;
for(i = 0; i < TableSize; i++)
{
_buckets[i] = NULL;
}
}
// Add a record to the hash table. Returns true if key already exists.
// Substitute content if key already exists.
int HashTable::insertItem( const char * key, void * data)
{
// Add implementation here
int hashKey = hash(key);
HashTableVoidEntry *current = _buckets[hashKey];
while(current != NULL)
{
if(!strcmp(current->_key,key))
{
current->_data = data;
return 1;
}
current = current->_next;
}
current = _buckets[hashKey];
if(current == NULL)
{
//HashTableVoidEntry *newEntry = new HashTableVoidEntry;
HashTableVoidEntry *newEntry = (HashTableVoidEntry *)malloc(sizeof(HashTableVoidEntry));
newEntry->_key = strdup(key);
newEntry->_data = data;
newEntry->_next = NULL;
_buckets[hashKey] = newEntry;
return 0;
}
while(current->_next != NULL)
current = current->_next;
//HashTableVoidEntry *newEntry = new HashTableVoidEntry;
HashTableVoidEntry *newEntry = (HashTableVoidEntry *)malloc(sizeof(HashTableVoidEntry));
newEntry->_key = strdup(key);
newEntry->_data = data;
newEntry->_next = NULL;
current->_next = newEntry;
return 0;
}
// Find a key in the dictionary and place in "data" the corresponding record
// Returns false if key is does not exist
int HashTable::find( const char * key, void ** data)
{
// Add implementation here
int hashKey = hash(key);
HashTableVoidEntry *current = _buckets[hashKey];
while(current != NULL)
{
if(!strcmp(current->_key, key))
{
*data = current->_data;
return 1;
}
current = current->_next;
}
return 0;
}
int HashTable::isDefined(const char *key)
{
int hashKey = hash(key);
HashTableVoidEntry *current = _buckets[hashKey];
while(current != NULL)
{
if(!strcmp(current->_key,key))
{
return current->isDefined;
}
current = current->_next;
}
return 0;
}
void HashTable::setDefined(const char *key)
{
int hashKey = hash(key);
HashTableVoidEntry *current = _buckets[hashKey];
while(current != NULL)
{
if(!strcmp(current->_key,key))
{
current->isDefined = 1;
return;
}
current = current->_next;
}
}
void HashTable::unsetDefined(const char *key)
{
int hashKey = hash(key);
HashTableVoidEntry *current = _buckets[hashKey];
while(current != NULL)
{
if(!strcmp(current->_key,key))
{
current->isDefined = 0;
return;
}
current = current->_next;
}
}
// Removes an element in the hash table. Return false if key does not exist.
int HashTable::removeElement(const char * key)
{
// Add implementation here
int hashKey = hash(key);
HashTableVoidEntry *current = _buckets[hashKey];
if(current == NULL)
return 0;
if(!strcmp(current->_key, key))
{
HashTableVoidEntry *temp = current;
current = current->_next;
free(temp);
_buckets[hashKey] = current;
return 1;
}
else
{
HashTableVoidEntry *prev = current;
HashTableVoidEntry *curr = current->_next;
while(curr && strcmp(curr->_key, key))
{
prev = prev->_next;
curr = curr->_next;
}
if(curr)
{
HashTableVoidEntry *next = curr->_next;
prev->_next = next;
free(curr);
return 1;
}
}
return 0;
}
void HashTable::removeSubKey(const char *key)
{
int i;
for(i = 0; i < TableSize; i++)
{
HashTableVoidEntry *current = _buckets[i];
while(current != NULL)
{
if(strstr(current->_key, key))
{
if(strcmp(current->_key, key))
removeElement(strstr(current->_key,key));
//printf("Found %s\n", strstr(current->_key,key));
}
current = current->_next;
}
}
}
|
41aa546c1b39b7067f8fa42c62ce12e535763491 | 309647935d0f8f507207ecf48d124102c1d7197f | /Utility/desktop_app/desktop/SerialCommand.cpp | ee89bcacd9872064f2c707b0123781ba8b98ecd2 | [
"MIT"
] | permissive | ThomasChevalier/passwordWallet | 6b59d8afd48c1bbdc89348798beebfa6ced87e7e | 115dbde3e32f2be65071e6f298c4f03ddfe19b09 | refs/heads/master | 2021-03-27T20:00:34.594894 | 2020-04-19T17:03:49 | 2020-04-19T17:03:49 | 71,448,410 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,367 | cpp | SerialCommand.cpp | #include "SerialCommand.h"
#include <limits>
#include <stdexcept>
SerialCommand::SerialCommand(Type type, const QByteArray& data):
m_type(type), m_data(data), m_state(WaitId),
m_valid(false)
{
if(m_type != None && data.size() <= std::numeric_limits<quint16>::max())
{
m_valid = true;
}
}
bool SerialCommand::readFrom(QByteArray &deviceData)
{
static quint16 tempSize = 0;
if(!deviceData.isEmpty() && m_state == WaitId){
const quint8 rawId = deviceData.at(0);
deviceData.remove(0, 1);
if(rawId >= None){
throw std::out_of_range("Command id out of range.");
}
m_type = static_cast<Type>(rawId);
m_state = WaitSize1;
}
if(!deviceData.isEmpty() && m_state == WaitSize1)
{
tempSize = deviceData.at(0);
deviceData.remove(0, 1);
m_state = WaitSize2;
}
if(!deviceData.isEmpty() && m_state == WaitSize2)
{
tempSize |= deviceData.at(0) << 8;
deviceData.remove(0, 1);
m_data.clear();
m_state = WaitData;
}
if(!deviceData.isEmpty() && m_state == WaitData){
if(deviceData.size() >= tempSize){
m_data.append(deviceData.left(tempSize));
deviceData.remove(0, tempSize);
tempSize = 0;
}
else
{
m_data.append(deviceData);
deviceData.clear();
tempSize -= deviceData.size();
}
if(tempSize == 0){
m_state = WaitId;
m_valid = true;
return true;
}
}
m_valid = false;
return false;
}
bool SerialCommand::isValid() const
{
return m_valid;
}
QByteArray SerialCommand::toByteArray() const
{
if(m_data.size() > std::numeric_limits<quint16>::max())
{
throw std::length_error("Too much data in the command.");
}
QByteArray converted;
converted.resize(1 + 2 + m_data.size());
converted[0] = static_cast<quint8>(m_type);
converted[1] = static_cast<quint8>(m_data.size() & 0xFF);
converted[2] = static_cast<quint8>(m_data.size() >> 8);
for(int i(0); i < m_data.size(); ++i){
converted[2+i] = m_data[i];
}
return converted;
}
SerialCommand::Type SerialCommand::type() const
{
return m_type;
}
QByteArray SerialCommand::data() const
{
return m_data;
}
|
eb41d8cbd11ef5fd4c8f5c1210c29f8fbf1bb8b4 | 2b20d1506af897147b571d196bcf6dee33262e03 | /sources/Researcher.hpp | 703e61ebe43ed96a18986d8d5b6c8c30809746b9 | [] | no_license | shaniLevin1/pandemic-b | d587311fc407adfe820507eaf6c8371c296bbb2a | ce3622991d2b85f0279101f1aa00623ef0b3d5ee | refs/heads/main | 2023-05-13T16:07:55.947327 | 2021-05-23T00:59:15 | 2021-05-23T00:59:15 | 367,177,061 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 287 | hpp | Researcher.hpp | #pragma once
#include "Player.hpp"
#include "Board.hpp"
using namespace std;
using namespace pandemic;
class Researcher:public Player{
public:
Player& discover_cure(Color color) override;
inline Researcher(Board& board, City city):Player(board,city,"Researcher"){}
}; |
0ff91e1611632cf84a0172e974fa7259b5e06bb7 | ded14c5002fd8fb5e426e002f7959d195bce5bc5 | /splitline150.cpp | e93da4b245025ccfc8a32ae4eafeb0f5e7c2c38e | [] | no_license | lrank/Classifier-demo | 3c97293f7eb34583d2ee2c5e52267201fe09d652 | 60a5ffc1dc65d95b5e26d4a6effdb284b6bd3cb1 | refs/heads/master | 2020-05-03T02:50:23.776574 | 2014-04-04T08:35:51 | 2014-04-04T08:35:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 161 | cpp | splitline150.cpp | #include <stdio.h>
#include <cstring>
int n = 150;
char a[1000];
int main () {
for (int i = 1; i <= n; ++i) {
gets(a);
printf("%s\n", a);
}
return 0;
}
|
114a721d7462d138e8725bc561878ba814cb042e | d842a7840a569098e40f272058520c46d66de7aa | /11857_driving_range/11857_pre_allocated_array.cpp | 9212385783b4b4f4af70d0cd40cfcaf4265622bd | [] | no_license | mhayter/Cpp | 8f53cec464ec5ec2eb0fe79870793163e3041438 | f7da0ec37c497d2e32c87cfd9861332cb33ba15c | refs/heads/master | 2020-04-06T07:01:02.599520 | 2016-08-11T23:26:46 | 2016-08-11T23:26:46 | 38,790,386 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,268 | cpp | 11857_pre_allocated_array.cpp | #include <bits/stdc++.h>
using namespace std;
//0.040s msb lsb radix sort
//0.050s vanilla radix sort
//0.080s fast run preallocate array 10,000,000
//0.100s fastio
//0.280s stdio(false)
//Begining 0.880s
class FastInput {
public:
FastInput() {
m_dataOffset = 0;
m_dataSize = 0;
m_v = 0x80000000;
}
uint32_t readNextUnsigned() {
if (m_dataOffset == m_dataSize) {
int r = fread(m_buffer,1,sizeof(m_buffer),stdin);
if (r <= 0) return m_v;
m_dataOffset = 0;
m_dataSize = 0;
int i = 0;
if (m_buffer[0] < '0') {
if (m_v != 0x80000000) {
m_data[m_dataSize++] = m_v;
m_v = 0x80000000;
}
for (; (i < r) && (m_buffer[i] < '0'); ++i);
}
for (; i < r;) {
if (m_buffer[i] >= '0') {
m_v = m_v * 10 + m_buffer[i] - 48;
++i;
} else {
m_data[m_dataSize++] = m_v;
m_v = 0x80000000;
for (i = i + 1; (i < r) && (m_buffer[i] < '0'); ++i);
}
}
}
return m_data[m_dataOffset++];
}
public:
uint8_t m_buffer[32768*2];
uint32_t m_data[16384*2];
size_t m_dataOffset, m_dataSize;
uint32_t m_v;
};
struct Edge {
int u,v,w;
Edge(){}
Edge(int a,int b,int co) :
u(a),v(b), w(co)
{}
friend bool operator<(const Edge &a, const Edge &b);
};
bool operator<(const Edge &a, const Edge &b) {
return a.w < b.w;
}
const int SIZE = 100000;
int par[SIZE];
int Rank[SIZE];
int set_find(int a) {
if(a==par[a])
return a;
return(par[a]=set_find(par[a]));
}
void link(int x,int y) {
if (Rank[x] < Rank[y]) {
par[x] = y;
} else if (Rank[y] < Rank[x]) {
par[y] = x;
} else {
par[y] = x;
Rank[x]++;
}
}
void ini(int n) {
for(int i=0; i<=n; i++) {
par[i]=i;
Rank[i] = 0;
}
}
const int INF = 1000000000;
const int MAX_EDGES = 7000000;
Edge edges[MAX_EDGES];
void radix_sort1(Edge *begin, Edge *end, Edge *begin1) {
//Edge *begin1 = new Edge[end - begin];
Edge *end1 = begin1 + (end - begin);
for (unsigned shift = 0; shift < 32; shift += 8) {
size_t count[0x100] = {};
for (Edge *p = begin; p != end; p++)
count[((p->w) >> shift) & 0xFF]++;
Edge *bucket[0x100], *q = begin1;
for (int i = 0; i < 0x100; q += count[i++])
bucket[i] = q;
for (Edge *p = begin; p != end; p++)
*bucket[((p->w) >> shift) & 0xFF]++ = *p;
Edge *temp = begin1;
begin1 = begin;
begin = temp;
//std::swap<Edge*>(begin, begin1);
std::swap(end, end1);
}
//delete[] begin1;
}
void _radix_sort_lsb(Edge *begin, Edge *end, Edge *begin1, unsigned maxshift){
Edge *end1 = begin1 + (end - begin);
for (unsigned shift = 0; shift <= maxshift; shift += 8)
{
size_t count[0x100] = {};
for (Edge *p = begin; p != end; p++)
count[((p->w) >> shift) & 0xFF]++;
Edge *bucket[0x100], *q = begin1;
for (int i = 0; i < 0x100; q += count[i++])
bucket[i] = q;
for (Edge *p = begin; p != end; p++)
*bucket[((p->w) >> shift) & 0xFF]++ = *p;
Edge *temp = begin1;
begin1 = begin;
begin = temp;
swap(end, end1);
}
}
void _radix_sort_msb(Edge *begin, Edge *end, Edge *begin1, unsigned shift) {
Edge *end1 = begin1 + (end - begin);
size_t count[0x100] = {};
for (Edge *p = begin; p != end; p++)
count[((p->w) >> shift) & 0xFF]++;
Edge *bucket[0x100], *obucket[0x100], *q = begin1;
for (int i = 0; i < 0x100; q += count[i++])
obucket[i] = bucket[i] = q;
for (Edge *p = begin; p != end; p++)
*bucket[((p->w) >> shift) & 0xFF]++ = *p;
for (int i = 0; i < 0x100; ++i)
_radix_sort_lsb(obucket[i], bucket[i], begin + (obucket[i] - begin1), shift - 8);
}
void radix_sort2(Edge *begin, Edge *end, Edge *begin1) {
_radix_sort_msb(begin, end, begin1, 24);
}
Edge begin1[MAX_EDGES];
int main() {
int nCities, nRoads;
ios_base::sync_with_stdio(false);
FastInput input;
while (true) {
nCities = input.readNextUnsigned();
nRoads = input.readNextUnsigned();
if (nCities == 0 && nRoads == 0) break;
//assert(nRoads < 7000000);
//vector<Edge> edges;
for(int i=0;i<nRoads;i++) {
int u = input.readNextUnsigned();
int v = input.readNextUnsigned();
int w = input.readNextUnsigned();
edges[i] = Edge(u,v,w);
//assert(w < 100000);
}
ini(nCities);
radix_sort2(edges, edges+nRoads, begin1);
int maxW = 0;
int nConnected = 0;
for(int i=0;i<nRoads;i++) {
int xroot = set_find(edges[i].u);
int yroot = set_find(edges[i].v);
if (xroot != yroot) {
link(xroot,yroot);
int w = edges[i].w;
nConnected++;
if (w > maxW) maxW = w;
}
}
if (nConnected + 1 == nCities)
cout << maxW << "\n";
else cout << "IMPOSSIBLE\n";
}
return 0;
} |
d82824209a8da7c33f484636b1164f954015f4c6 | 855fad2d62b9b3a5ffc92520dfd94b7e5697a30d | /crate.h | 7d8e2bece4bf931aea103fbe08bcfaf701472941 | [] | no_license | Peter-black/FraggerVita | c117b7a1f8926cdc12f827cdd0e9076a76f38cef | a82d04d283417d25a1cb754986bb2d1129b4ce67 | refs/heads/master | 2021-01-23T08:03:49.533291 | 2017-01-31T13:24:09 | 2017-01-31T13:24:09 | 80,522,500 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 196 | h | crate.h | #ifndef _CRATE_H
#define _CRATE_H
#include "entity.h"
class Crate : public Entity{
public:
Crate();
Crate(b2Vec2 position, b2World* world);
~Crate();
protected:
private:
};
#endif |
3ada3883afac7615ca567ae8ad6c323593c2437a | 176c793689a660f81f59856b38344f61d2aa0a8c | /Hephaestus/Coloring.h | a37173d776691c7e87cccf7e1cab3c2b954cbd3e | [] | no_license | alexpardes/hephaestus | 5ca35f730761521f172d7c7c9dfa94c174d8b639 | 44ee2e9c778320ce01f135c2487704dc255e99e6 | refs/heads/master | 2020-04-28T19:43:19.579939 | 2015-01-05T17:19:19 | 2015-01-05T17:19:19 | 15,566,697 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 755 | h | Coloring.h | #pragma once
#include <SFML/Graphics.hpp>
struct HslColor {
double hue, saturation, lightness, alpha;
};
class Coloring {
public:
static sf::Image ColorImage(sf::Image image, const sf::Image& mask,
const sf::Color& color);
static double Hue(const sf::Color& color);
static double Saturation(const sf::Color& color);
static double Lightness(const sf::Color& color);
static sf::Color AdjustLightness(HslColor color,
double baseLightness);
static HslColor ConvertToHsl(const sf::Color& color);
static sf::Color ConvertToRgb(HslColor color);
static double HueToRgb(double p, double q, double t);
static double Max(double a, double b, double c);
static double Min(double a, double b, double c);
}; |
45ea8ad8aa8754066aa0043f07815fbe0e31fcac | 8e4e273978f402f5d3e4f7136066a4969c5d80e3 | /src/Share/SystemHelper.cpp | 539b9475fdd92eef7d15997ac0bdd8db00a14fe3 | [
"Apache-2.0"
] | permissive | Liggin2019/Ligg.SeqExec | 653c3e1269d48680976cc8aab835adef2d8a9c5c | f4d770a6ed50aa0874b6aa410d54074cd1251fa5 | refs/heads/master | 2021-07-06T00:28:08.664134 | 2020-12-10T17:24:03 | 2020-12-10T17:24:03 | 209,623,179 | 2 | 1 | null | null | null | null | GB18030 | C++ | false | false | 3,594 | cpp | SystemHelper.cpp | #include <windows.h>
#include <tchar.h>
#include <stdio.h>
#include <wtypes.h>
#include <Lm.h>
#include <crtdbg.h>
#include <assert.h>
#pragma comment(lib, "netapi32.lib")
#include "SystemHelper.h"
bool SystemHelper::IsProcessRunByAdmin()
{
SID_IDENTIFIER_AUTHORITY NtAuthority = SECURITY_NT_AUTHORITY;
PSID AdministratorsGroup;
BOOL b = AllocateAndInitializeSid(&NtAuthority,2,SECURITY_BUILTIN_DOMAIN_RID,DOMAIN_ALIAS_RID_ADMINS,0, 0, 0, 0, 0, 0,&AdministratorsGroup);
if(b)
{
CheckTokenMembership(NULL, AdministratorsGroup, &b);
FreeSid(AdministratorsGroup);
}
return b == TRUE;
}
//no use
bool SystemHelper::IsCurrentUserAdmin() //判断是否管理员模式
{
BOOL bIsElevated = FALSE;
HANDLE hToken = NULL;
UINT16 uWinVer = LOWORD(GetVersion());
uWinVer = MAKEWORD(HIBYTE(uWinVer),LOBYTE(uWinVer));
if (uWinVer < 0x0600)//不是VISTA、Windows7
return(FALSE);
if (OpenProcessToken(GetCurrentProcess(),TOKEN_QUERY,&hToken)) {
struct {
DWORD TokenIsElevated;
} /*TOKEN_ELEVATION*/te;
DWORD dwReturnLength = 0;
if (GetTokenInformation(hToken,/*TokenElevation*/(_TOKEN_INFORMATION_CLASS)20,&te,sizeof(te),&dwReturnLength)) {
if (dwReturnLength == sizeof(te))
bIsElevated = te.TokenIsElevated;
}
CloseHandle( hToken );
}
return bIsElevated;
}
bool SystemHelper::IsUserInAdminGroup(WCHAR const *szUserName)
{
_ASSERT(szUserName);
bool bAdmin = FALSE;
LOCALGROUP_USERS_INFO_0* localGroups;
DWORD entriesread, totalentries;
NET_API_STATUS nts = NetUserGetLocalGroups(NULL, szUserName, 0, 0, (unsigned char**)&localGroups, MAX_PREFERRED_LENGTH, &entriesread, &totalentries);
if( nts != NERR_Success ) {
NetApiBufferFree(localGroups);
return FALSE;
}
// Retrieve the Administrators group well-known SID
// For some reason CreateWellKnownSid generates error C3861 on Developer Studio .NET:
// error C3861: 'CreateWellKnownSid': identifier not found, even with argument-dependent lookup
BYTE SidAuth[] = SECURITY_NT_AUTHORITY;
PSID pAdminSid;
AllocateAndInitializeSid( (PSID_IDENTIFIER_AUTHORITY)SidAuth,
2, SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_ADMINS,
NULL, NULL, NULL, NULL, NULL, NULL, &pAdminSid );
// Will use this to retrieve the SID of the group
BYTE buffSid[SECURITY_MAX_SID_SIZE];
wchar_t buffDomain[DNLEN+1];
DWORD dwSidSize;
DWORD dwDomainSize;
SID_NAME_USE m_sidnameuse;
for( DWORD i = 0; i < entriesread; ++i ) {
dwSidSize = sizeof(buffSid);
dwDomainSize = DNLEN;
// Although in general is a bad idea to call directly the W or A versions of API
// we do it here to avoid converting the localGroups[i].lgrui0_name back to ANSI
// This kind of security API is only present on NT/2000/XP family only, so
// the W version is present and safe to use
if( LookupAccountNameW( NULL, localGroups[i].lgrui0_name, buffSid, &dwSidSize, (LPWSTR)buffDomain, &dwDomainSize, &m_sidnameuse) ) // no sid for the actual group
if( EqualSid( buffSid, pAdminSid ) ) {
bAdmin = TRUE;
break;
}
}
FreeSid( pAdminSid );
NetApiBufferFree(localGroups);
return bAdmin;
}
BOOL SystemHelper::IsElevated( ) {
BOOL fRet = FALSE;
HANDLE hToken = NULL;
if( OpenProcessToken( GetCurrentProcess( ),TOKEN_QUERY,&hToken ) ) {
TOKEN_ELEVATION Elevation;
DWORD cbSize = sizeof( TOKEN_ELEVATION );
if( GetTokenInformation( hToken, TokenElevation, &Elevation, sizeof( Elevation ), &cbSize ) ) {
fRet = Elevation.TokenIsElevated;
}
}
if( hToken ) {
CloseHandle( hToken );
}
return fRet;
}
|
250933b7552594ecc781d227371d3d715e2fa8a6 | d5f76910be52cb576fd0d56255338d6a47da0bb4 | /produccion_declaracion_variable_8.cpp | bf75143549ec3edbec1f1ab0dac8b6bf10761a3b | [] | no_license | Doki1992/final | 490bf2196e71d7dbd9c8e3e0052eea78763e24bf | 0e87038dfa0e846572b0e37dbe55c29348b7b5cc | refs/heads/master | 2021-01-12T05:55:31.430921 | 2016-12-23T19:52:46 | 2016-12-23T19:52:46 | 77,246,564 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 585 | cpp | produccion_declaracion_variable_8.cpp | #include "produccion_declaracion_variable_8.h"
#include "visitor.h"
produccion_declaracion_variable_8::produccion_declaracion_variable_8(QString conservar,
produccion_tipo*tipo,
produccion_lista_nombre*lnombre, QString fila)
{
this->fila=fila;
this->conservar=conservar;
this->lnombre=lnombre;
this->tipo=tipo;
}
QString produccion_declaracion_variable_8::accept(visitor *v){
return v->visit_declaracion_variable_8(this);
}
|
2b26310e5c03b9a97feb53ead0aa73b275c0d4ff | 0c427f8a5aee6c1fb4d1db73ad3d8954b513ca58 | /Programming (1st, 2nd semesters)/Notes and PPs/Examples/list demo.hpp | 47614f11299f8b71a196fcb8da0ed47c582f764b | [] | no_license | ZarkianMouse/Initial-programming | 993c803759cd31daaf6d0eb4c96ac7a25e9c91f4 | 24fc2769e09d5e8444e5f4bcd5ea45f925070503 | refs/heads/master | 2021-04-29T16:39:07.324018 | 2018-02-15T16:43:35 | 2018-02-15T16:43:35 | 121,653,454 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,154 | hpp | list demo.hpp |
#ifndef LIST_HPP
#define LIST_HPP
// COPYRIGHT (C) Will Crissey, Jr. 2015 All rights reserved.
// List class-template definition.
#include <iostream>
#include "ListNode.hpp" // ListNode class definition
// let's look at listnode - this is encapsulated in each list obj
// now List class template
template<typename NODETYPE>
class List
{
// we declare private data members
// firstPtr (a pointer to the first ListNode in a List)
// and lastPtr (a pointer to the last ListNode in a List)
private:
ListNode<NODETYPE> *firstPtr{nullptr}; // pointer to first node
ListNode<NODETYPE> *lastPtr{nullptr}; // pointer to last node
// utility function to allocate new node - used by insert methods
// we return a dynamically allocated ListNode object
ListNode<NODETYPE> *getNewNode(const NODETYPE& value)
{
return new ListNode<NODETYPE>{value};
}
// now the public members
public:
// default constructor - initializes both pointers to null
List()
{
firstPtr = lastPtr = nullptr;
}
// copy constructor - initialize to null again
List(const List<NODETYPE> ©)
{
firstPtr = lastPtr = nullptr; // initialize pointers
ListNode<NODETYPE> *currentPtr{copy.firstPtr};
// the object's first pointer is the current pointer
// insert into the list
while (currentPtr != 0)
{
insertAtBack(currentPtr->data);
currentPtr = currentPtr->nextPtr;
}
}
// destructor - ensures that all ListNode objects in a
// List object are destroyed when that List object is destroyed
~List()
{
if (!isEmpty())
{ // List is not empty
std::cout << "Destroying nodes ...\n";
ListNode<NODETYPE>* currentPtr{firstPtr};
ListNode<NODETYPE>* tempPtr{nullptr};
while (currentPtr != nullptr)
{ // delete remaining nodes
tempPtr = currentPtr;
std::cout << tempPtr->data << '\n';
currentPtr = currentPtr->nextPtr;
delete tempPtr;
}
}
std::cout << "All nodes destroyed\n\n";
}
// insert node at front of list
void insertAtFront(const NODETYPE &value)
{
// Call function getNewNode - passing node value to be inserted
ListNode<NODETYPE>* newPtr{getNewNode(value)}; // new node
if (isEmpty()) // predicate function determines whether the
{ // List is empty
firstPtr = lastPtr = newPtr; // new list has only one node
}
else
{ // List is not empty
newPtr->nextPtr = firstPtr; // point new node to old 1st node
// if the list is empty, firstPtr and lastPtr are set to newPtr
firstPtr = newPtr; // aim firstPtr at new node
// if not, newPtr is threaded into the list by copying firstPtr to newPtr->nextPtr
// so new node points to what used to be the first node of the list
}
}
// after this call, newPtr has the address of the new piece of memory
// insert node at back of list
void insertAtBack(const NODETYPE &value)
{
ListNode<NODETYPE> *newPtr{getNewNode(value)}; // new node
if (isEmpty())
{ // List is empty - just set first and last to newPtr
firstPtr = lastPtr = newPtr; // new list has only one node
}
else
{ // List is not empty - thread newPtr to next (set next to new)
lastPtr->nextPtr = newPtr; // update previous last node
lastPtr = newPtr; // new last node - copy newPtr to last (now new is last)
}
}
// delete node from front of list
bool removeFromFront(NODETYPE& value)
{
if (isEmpty())
{ // List is empty - we cannot delete anything
return false; // delete unsuccessful
}
else
{
ListNode<NODETYPE>* tempPtr{firstPtr}; // hold item to delete
if (firstPtr == lastPtr) // list has only one element
{
firstPtr = lastPtr = nullptr; // no nodes remain after removal (dethread)
}
else
{
firstPtr = firstPtr->nextPtr; // point to what was the 2nd node prior to removal
}
value = tempPtr->data; // set value to data being removed
delete tempPtr; // reclaim previous front node
return true; // delete successful
}
}
// delete node from back of list
bool removeFromBack(NODETYPE& value)
{
if (isEmpty())
{ // List is empty - nothing to remove
return false; // delete unsuccessful
}
else
{
ListNode<NODETYPE>* tempPtr{lastPtr}; // hold item to delete
if (firstPtr == lastPtr) // last node so make the list empty
{ // List has one element
firstPtr = lastPtr = nullptr; // no nodes remain after removal
}
else
{
ListNode<NODETYPE> *currentPtr{firstPtr}; // assign current pointer
// the address if firstPtr
// locate second-to-last element by traversing until the last node
while (currentPtr->nextPtr != lastPtr)
{
currentPtr = currentPtr->nextPtr; // move to next node
}
lastPtr = currentPtr; // remove last node (dethread it)
currentPtr->nextPtr = nullptr; // this is now the last node, so null
}
value = tempPtr->data; // set value to old last node
delete tempPtr; // reclaim former last node
return true; // delete successful
}
}
// is List empty?
bool isEmpty() const
{
return firstPtr == nullptr;
}
// display contents of List
void print() const
{
if (isEmpty())
{ // List is empty
std::cout << "The list is empty\n\n";
return;
}
// initialize currentPtr as a copy of firstPtr
ListNode<NODETYPE> *currentPtr{firstPtr};
std::cout << "The list is: ";
while (currentPtr != nullptr)
{ // get element data
std::cout << currentPtr->data << ' '; // print the data
currentPtr = currentPtr->nextPtr;
}
std::cout << "\n\n";
}
};
#endif
|
1cee80dd6ce6c8d80ae4db87172e1bbdabce938f | b0b894f13b7ba52392ff6ce3e24acb7647bceecc | /mesh.h | d79e3f76619f0333aafa39e26e39d681b51a43b2 | [
"MIT"
] | permissive | ionaic/rendering-architecture | f2b460b9477e7fec255399ac3c700f2340ddd958 | 924fc02a3bdc07f668918b062cd7c67f61793846 | refs/heads/master | 2021-01-24T09:46:40.785971 | 2016-10-09T02:44:25 | 2016-10-09T02:44:25 | 70,121,715 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,278 | h | mesh.h | #pragma once
#include "glinc.h"
#include "shader.h"
#include <vector>
#include <iostream>
class Camera;
struct Vertex {
glm::vec4 position;
glm::vec4 color;
glm::vec3 normal;
glm::vec2 uv;
};
struct Face {
unsigned int a = 0;
unsigned int b = 0;
unsigned int c = 0;
};
// base mesh type
// provides handling for the buffers, subtypes handle populating the data
class Mesh {
friend class Camera;
public:
Mesh();
~Mesh();
void Initialize();
// setup the buffers for a shader
void SetupBuffers(Shader &shader);
void UseMesh() const;
static void UseNone();
protected:
struct BufferInfo {
GLuint vbo = 0; // vbo for vertices
GLuint vao = 0; // vao (vertex attribute specifications)
GLuint ibo = 0; // index buffer for indexed draw
};
// for separate buffers for each
std::vector<glm::vec4> positions;
std::vector<glm::vec4> colors;
std::vector<glm::vec3> normals;
std::vector<glm::vec2> uvs;
// for combined buffers
std::vector<Vertex> vertices;
// index information
std::vector<Face> indices;
// buffer ids
BufferInfo buffers;
};
|
9aff2711a26036c447dd342d10dab47a4cb4a6be | 5ed6a17f8a5b5d3fd915061c3b0b0bc833e8b80d | /计算日期到天数的转换.cpp | 83822394b41722a4a0841b9c2b78bd06bc467e19 | [] | no_license | young1928/Cpp | 9b084b498a56586804f2f5bda055df2e43ff5e6f | 4a80a11976392f3cb936353a784d916966432f99 | refs/heads/master | 2023-04-12T18:23:22.115514 | 2021-04-19T14:34:41 | 2021-04-19T14:34:41 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,495 | cpp | 计算日期到天数的转换.cpp | //题目描述
//根据输入的日期,计算是这一年的第几天。。
//详细描述:
//输入某年某月某日,判断这一天是这一年的第几天?。
//
//输入描述:
//输入三行,分别是年,月,日
//输出描述:
//成功:返回outDay输出计算后的第几天;
// 失败:返回-1
//示例1
//输入
//复制
//2012
//12
//31
//输出
//复制
//366
#include <iostream>
using namespace std;
class Date
{
public:
Date(int year,int month,int day)
{
_year = year;
_month = month;
_day = day;
}
int GetMonthDay(int year,int month)
{
static int days[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
int day = days[month];//拿到当前月除了2.29的最大日期
//如果出现2月29日
if (month == 2
&& ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)))
{
day += 1;
}
return day;
}
int slove()
{
//判断当前日期是否合法
if(GetMonthDay(_year,_month) < _day)
return -1;
int ans = _day;
int i = 1;
while(i < _month)
{
ans += GetMonthDay(_year,i);
i++;
}
return ans;
}
private:
int _year;
int _month;
int _day;
};
int main()
{
int year,month,day;
while(cin>>year>>month>>day)
{
Date d(year,month,day);
cout<<d.slove()<<endl;
}
return 0;
}
|
9afb2ae4f31cc6b0a93f737f14200b9c4d6bf4e1 | 45e356a7b5ff4f9c23cfae5dc7e278acbe55282a | /GameFramework2D/include/loading.h | f52491df4671a33c1bb48c6160bdae1baaac2053 | [] | no_license | fvfvfv80/Ricochet-Robots | 9a69aa9495c1570d926d62a1b307b256d15a8011 | 8fc30ffc263d3c40beba2d01191574d725c32a0d | refs/heads/master | 2020-12-12T06:07:29.928743 | 2020-01-15T13:48:20 | 2020-01-15T13:48:20 | 234,059,533 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 4,149 | h | loading.h | #pragma once
#include "gameNode.h"
#include "progressBar.h"
//==================================================================
// ## loadItem ## (로드아이템 클래스)
//==================================================================
//로딩아이템 종류
enum LOADING_KIND
{
LOADING_KIND_IMAGE_00,
LOADING_KIND_IMAGE_01,
LOADING_KIND_IMAGE_02,
LOADING_KIND_FRAMEIMAGE_00,
LOADING_KIND_FRAMEIMAGE_01,
LOADING_KIND_SOUND_00,
LOADING_KIND_END
};
//이미지 리소스 구조체
struct tagImageResource
{
string keyName; //키이름
const char* fileName; //파일이름
int x, y; //위치좌표
int width, height; //가로세로크기
int frameX, frameY; //프레임
bool trans; //투명화 할꺼냐?
COLORREF transColor; //투명컬러키
};
//클래스 로드아이템
class loadItem
{
private:
LOADING_KIND _kind; //로딩아이템 종류
tagImageResource _imageResource; //이미지 리소스 구조체
public:
//이미지 로드 아이템
HRESULT initForImage(string keyName, int width, int height);
HRESULT initForImage(string keyName, const char* fileName, int x, int y, int width, int height, bool trans, COLORREF transColor);
HRESULT initForImage(string keyName, const char* fileName, int width, int height, bool trans, COLORREF transColor);
HRESULT initForFrameImage(string keyName, const char* fileName, int x, int y, int width, int height, int frameX, int frameY, bool trans, COLORREF transColor);
HRESULT initForFrameImage(string keyName, const char* fileName, int width, int height, int frameX, int frameY, bool trans, COLORREF transColor);
void release(void);
//로딩아이템 종류 가져오기
LOADING_KIND getLoadingKind(void) { return _kind; }
//이미지 리소스 가져오기
tagImageResource getImageResource(void) { return _imageResource; }
loadItem(void);
~loadItem(void);
};
//==================================================================
// ## loading ## (로딩 클래스)
//==================================================================
class loading : public gameNode
{
private:
//로드아이템 클래스를 담을 벡터 선언
typedef vector<loadItem*> arrLoadItem;
//로드아이템 클래스를 담을 반복자 선언
typedef vector<loadItem*>::iterator arrLoadItemIter;
private:
arrLoadItem _vLoadItem; //로드아이템 벡터
image* _background; //로딩화면에서 사용할 백그라운드 이미지
progressBar* _loadingBar; //로딩화면에서 사용할 로딩바
int _currentGauge; //로딩바 게이지증가용 변수
public:
HRESULT init(void);
void release(void);
void update(void);
void render(void);
/*이놈이 젤 중요함*/
//이미지 추가할때 처럼 로딩할때 전부 추가해주면 된다
//이미지 사용은 키값만 알고 있으면 이미지를 화면에 뿌릴 수 있다
//로드이미지(키값, 가로크기, 세로크기)
void loadImage(string keyName, int width, int height);
//로드이미지(키값, 파일이름, 가로크기, 세로크기, true, RGB(255, 0, 255))
void loadImage(string keyName, const char* fileName, int width, int height, bool trans, COLORREF transColor);
//로드이미지(키값, 파일이름, 위치좌표x, 위치좌표y, 가로크기, 세로크기, true, RGB(255, 0, 255))
void loadImage(string keyName, const char* fileName, int x, int y, int width, int height, bool trans, COLORREF transColor);
//로드프레임이미지(키값, 파일이름, 가로크기, 세로크기, 프레임x, 프레임y, true, RGB(255, 0, 255))
void loadFrameImage(string keyName, const char* fileName, int width, int height, int frameX, int frameY, bool trans, COLORREF transColor);
//로드프레임이미지(키값, 파일이름, 위치좌표x, 위치좌표y, 가로크기, 세로크기, 프레임x, 프레임y, true, RGB(255, 0, 255))
void loadFrameImage(string keyName, const char* fileName, int x, int y, int width, int height, int frameX, int frameY, bool trans, COLORREF transColor);
BOOL loadNext(void);
//로드아이템 벡터 가져오기
vector<loadItem*> getLoadItem(void) { return _vLoadItem; }
loading(void);
~loading(void);
};
|
2be181961f01234c3743d79fe015f6baf04d9da6 | 68eaae414550280390c0162b3959365226700d6b | /TradeMTGap.h | 300225a35aaf122a25fbae81310923fc9210448f | [] | no_license | dsudheerdantuluri/quantlab | 0ab6c4275ef4894763277051c1c019aebd674e6b | d56394e2fd293ae41896c12dad5a37cd67d93279 | refs/heads/master | 2021-05-07T19:36:27.172618 | 2017-10-31T19:43:28 | 2017-10-31T19:43:28 | 108,924,483 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 466 | h | TradeMTGap.h | #include <unordered_map>
#include "TradeOperation.h"
//------------------------------------------------------------------------------
class TradeMTGap : public TradeOperation {
public:
void process(const Trade &t);
unsigned long getVal(const std::string &sym);
private:
std::unordered_map<std::string, std::pair<unsigned long, unsigned long>>
m_mtg;
};
//------------------------------------------------------------------------------
|
117a6bda56aacb8dd610441eb278c3ed24275f75 | d31337e820e38aef6952787e066f318d38b6ce71 | /nixycore/delegate/signal.h | 556edd755e97da1f523a7ea12322552c1d508289 | [
"MIT"
] | permissive | tc1989tc/nixy | a0201a6844883300bbd2a111c298e8b8794e1181 | 3cc7d2b340a69f606bbf74c52f1cdd505e58d809 | refs/heads/master | 2021-01-17T06:57:29.280149 | 2014-04-08T14:05:23 | 2014-04-08T14:05:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,220 | h | signal.h | /*
The Nixy Library
Code covered by the MIT License
Author: mutouyun (http://darkc.at)
*/
#pragma once
#include "nixycore/delegate/functor.h"
#include "nixycore/container/deque.h"
#include "nixycore/general/general.h"
#include "nixycore/preprocessor/preprocessor.h"
#include "nixycore/typemanip/typemanip.h"
#include "nixycore/utility/utility.h"
//////////////////////////////////////////////////////////////////////////
NX_BEG
//////////////////////////////////////////////////////////////////////////
template <typename F>
class signal;
template <typename R>
class signal<R()>
{
public:
typedef functor<R()> functor_t;
private:
deque<functor_t> queue_;
public:
template <typename FrT>
void connect(const FrT& f)
{
queue_.push_back(f);
}
template <typename FrT, typename ObT>
void connect(ObT* o, FrT f) // object pointer is the first parameter
{
queue_.push_back(nx::move(functor_t(f, o)));
}
void operator()(void) const
{
typename deque<functor_t>::const_iterator ite = queue_.begin();
for(; ite != queue_.end(); ++ite) (*ite)();
}
void clear(void)
{
queue_.clear();
}
};
#define NX_SIGNAL_(n) \
template <typename R, NX_PP_TYPE_1(n, typename P)> \
class signal<R(NX_PP_TYPE_1(n, P))> \
{ \
public: \
typedef functor<R(NX_PP_TYPE_1(n, P))> functor_t; \
private: \
deque<functor_t> queue_; \
public: \
template <typename FrT> \
void connect(const FrT& f) \
{ \
queue_.push_back(f); \
} \
template <typename FrT, typename ObT> \
void connect(ObT* o, FrT f) \
{ \
queue_.push_back(nx::move(functor_t(f, o))); \
} \
void operator()(NX_PP_TYPE_2(n, typename nx::traits<P, >::param_t par)) const \
{ \
typename deque<functor_t>::const_iterator ite = queue_.begin(); \
for(; ite != queue_.end(); ++ite) (*ite)(NX_PP_TYPE_1(n, par)); \
} \
void clear(void) \
{ \
queue_.clear(); \
} \
};
NX_PP_MULT_MAX(NX_SIGNAL_)
#undef NX_SIGNAL_
//////////////////////////////////////////////////////////////////////////
NX_END
//////////////////////////////////////////////////////////////////////////
|
1fc3f1485b58f889e2ff58ee30ef769b24bbb947 | 9609a922f08e2a76e56cf6d54bb462dd4c47616e | /second c++.cpp | f8e28f5bb6352c7c69081cbcf70b93e1058a68f5 | [] | no_license | Mariam181114/coding-assignment | 269529db4db24e03b85c7b6782b17f1ed2a875ea | ab103d9863e7755e8078b4e5ae5c0bb0de6c4f7d | refs/heads/master | 2022-12-29T01:56:45.406836 | 2020-10-16T05:00:18 | 2020-10-16T05:00:18 | 298,844,520 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 191 | cpp | second c++.cpp | #include <stdio.h>
main()
{
int i, j, k=1;
for(j=1; j<=5; j++){
for(i=1; i<=j; i++)
printf("%d ", k++);
printf("\n");
}
return 0;
}
|
dc8fcca2588ab897f602329e3e45b1f0204b955f | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_2749486_0/C++/LSC/b.cpp | 8070195606187579bf45b429475645e259afa215 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 2,063 | cpp | b.cpp | #include <cstdio>
#include <cstring>
#include <queue>
#include <stack>
using namespace std;
const int SSIZE = 100;
vector<char*> pool;
stack<char*> ss;
struct St
{ int x, y, step; char * p; };
char * getstr()
{
if(ss.empty())
{
for(int i=0; i<2000; i++)
{
char * s = new char[SSIZE];
pool.push_back(s);
ss.push(s);
}
}
char * ret = ss.top();
ss.pop();
ret[0] = 0;
return ret;
}
int abs(int n){ return n<0 ? -n : n; }
int dist(int x1, int y1, int x2, int y2)
{ return abs(x1-x2) + abs(y1-y2); }
bool visit[1000][1000];
int main()
{
for(int i=0; i<2000; i++)
{
char * s = new char[SSIZE];
pool.push_back(s);
}
int T;
scanf("%d", &T);
for(int t=1; t<=T; t++)
{
int x, y;
scanf("%d%d", &x, &y);
for(int i=0; i<pool.size(); i++)
ss.push(pool[i]);
memset(visit, 0, sizeof(visit));
queue<St> q;
q.push((St){0, 0, 1, getstr()});
while(!q.empty())
{
St cur = q.front(); q.pop();
if(visit[cur.x+500][cur.y+500]){ ss.push(cur.p); continue; }
visit[cur.x+500][cur.y+500] = true;
int d = dist(cur.x, cur.y, x, y);
if(d>400){ ss.push(cur.p); continue; }
if(cur.x==x && cur.y==y)
{
printf("Case #%d: %s\n", t, cur.p);
ss.push(cur.p);
break;
}
char * s; int len = strlen(cur.p);
s = getstr(); strcpy(s, cur.p);
s[len+1] = 0; s[len] = 'E';
q.push((St){cur.x+cur.step, cur.y, cur.step+1, s});
s = getstr(); strcpy(s, cur.p);
s[len+1] = 0; s[len] = 'W';
q.push((St){cur.x-cur.step, cur.y, cur.step+1, s});
s = getstr(); strcpy(s, cur.p);
s[len+1] = 0; s[len] = 'N';
q.push((St){cur.x, cur.y+cur.step, cur.step+1, s});
s = getstr(); strcpy(s, cur.p);
s[len+1] = 0; s[len] = 'S';
q.push((St){cur.x, cur.y-cur.step, cur.step+1, s});
ss.push(cur.p);
}
while(!q.empty())
{
St cur = q.front(); q.pop();
ss.push(cur.p);
}
while(!ss.empty()) ss.pop();
}
for(int i=0; i<(int)pool.size(); i++)
delete[] pool[i];
return 0;
}
|
0946a1e5582c44823bab2707a1a0575da7ef6e42 | 2bc0c02b00423e143a084461aac52113d25830d3 | /project3/RGB.h | a7881e68cd0fac897f643a1a80aa263e45e8fcd1 | [] | no_license | sphilip/CSCI598-Scientific_Visualization | c522df5bfb7209d82a9f090c5ecde7772553f41e | 8d64f122b70bb577823406808decac6cd8a7fe39 | refs/heads/master | 2021-01-25T08:43:05.147191 | 2014-05-03T03:04:24 | 2014-05-03T03:11:12 | 1,767,322 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 298 | h | RGB.h | #ifndef RGB_H
#define RGB_H
class RGB
{
public:
int r,g,b;
RGB(){r = 0; g=0; b=0;}
RGB(int rr, int gg, int bb) {r = rr; g = gg; b = bb;}
float max() {
return (r<g ? (g<b ? b : g) : (r<b ? b : r));
}
void scale ( float s ) {
r*=s;
g*=s;
b*=s;
}
};
#endif
|
9f2ef11db2cf3aa573eee75d558d4b90f10f9085 | 600a87206570ac4f81ba0971abbb11491789c5ad | /puntero.cpp | c8bbd0e4ff50e7ac7a7dec8f9d05d63b9026c4dd | [] | no_license | mario8f/Evaluaci-n-2 | 6e9811357b8df9a79c56a40e3845bb6d3c49112b | 2bfc0cf6cd30ae46b34150b0642dca354e66088d | refs/heads/master | 2020-09-23T21:25:20.639311 | 2020-02-20T08:48:57 | 2020-02-20T08:48:57 | 225,591,184 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 705 | cpp | puntero.cpp | #include<iostream>
#include<stdio.h>
#include<stdlib.h>
int main(){
int a;
int *pa;//"pa" va a guardar un numero hexadecimal que es la localizacion donde vive esa variable
char salir;
int numeros[5];
a=2;
numeros[0]=9;
numeros[1]=8;
numeros[2]=7;
//pa=&a;//Definicion de localizacion de la variable a
printf("El numero a= %d y almacenado en %X",a,&a);
printf("\nEl contenido del puntero pa=%X",pa);
printf("\nnumeros[0]=%d",numeros[0]);
printf("\nnumeros[1]=%d",numeros[1]);
printf("\nnumeros[2]=%d",numeros[2]);
printf("\nnumeros[3]=%d",numeros[3]);
printf("\nnumeros=%d",*(numeros+1));
std::cin>>salir;
}
|
b00799e92223c82805e66e4cedace3f75ba1681d | b87983323d5106f94e4c06660b392450e995ed51 | /displayNumber.ino | 53872bac64df268c4575814c0bf2f5db574441ae | [
"MIT"
] | permissive | nathabonfim59/displayNumber | 46fba23b97724af1beb9e8162d5b7d19dc762250 | 2b80296e52ad4bff2d02d5632f000fcbc7ae7d81 | refs/heads/master | 2020-03-22T14:44:09.870332 | 2018-07-08T20:47:43 | 2018-07-08T20:47:43 | 140,201,449 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,160 | ino | displayNumber.ino | /*
_ ========================\
|_| = DiplayNumbers | 0.1
|_| = @nathabonfim59 | 2018
========================/
DESCRIPTION
This is a simple function to translate a number passed to the function
displayNumber() into a 7 segments display.
HOW TO USE
All you need to do is assign the correct pint number into the variables
bellow. It's simple. You test all segments and atribute a pin to it's position.
*/
int middle = 2; // The middle segment
int t_top = 3; // The top segment
int t_left = 4; // The segment on top and left
int t_right = 5; // The top right segment
int d_down = 6; // The bottom bottom segment
int d_left = 7; // The bottom left segment
int d_right = 8; /// The bottom right segment
// The setup function runs once when you press reset or power the board
void setup() {
initSegment(middle);
initSegment(t_top);
initSegment(t_left);
initSegment(t_right);
initSegment(d_left);
initSegment(d_right);
initSegment(d_down);
}
// Init a pin with setting to OUTPUT and the voltage to HIGH
void initSegment(int segment) {
pinMode(segment, OUTPUT);
digitalWrite(segment, HIGH);
}
// Erease the number shown in the display
void resetSegments() {
initSegment(middle);
initSegment(t_top);
initSegment(t_left);
initSegment(t_right);
initSegment(d_left);
initSegment(d_right);
initSegment(d_down);
}
// Turn the specific segment based on it's pin
void segmentOn(int segment) {
digitalWrite(segment, LOW);
}
// Recives a number and display it in the 7 segment display
void displayNumber(int number) {
if (number < 0 || number > 9) {
return false;
}
resetSegments();
switch (number) {
case 0:
segmentOn(t_top);
segmentOn(d_down);
segmentOn(t_left);
segmentOn(t_right);
segmentOn(d_left);
segmentOn(d_right);
break;
case 1:
segmentOn(t_right);
segmentOn(d_right);
break;
case 2:
segmentOn(t_top);
segmentOn(t_right);
segmentOn(middle);
segmentOn(d_left);
segmentOn(d_down);
break;
case 3:
segmentOn(t_top);
segmentOn(t_right);
segmentOn(d_right);
segmentOn(middle);
segmentOn(d_down);
break;
case 4:
segmentOn(t_left);
segmentOn(t_right);
segmentOn(middle);
segmentOn(d_right);
break;
case 5:
segmentOn(t_top);
segmentOn(t_left);
segmentOn(middle);
segmentOn(d_right);
segmentOn(d_down);
break;
case 6:
segmentOn(t_top);
segmentOn(t_left);
segmentOn(middle);
segmentOn(d_left);
segmentOn(d_right);
segmentOn(d_down);
break;
case 7:
segmentOn(t_top);
segmentOn(t_right);
segmentOn(d_right);
break;
case 8:
displayNumber(0);
segmentOn(middle);
break;
case 9:
displayNumber(4); // Invokes the function itself to create a four
segmentOn(t_top);
segmentOn(d_down);
break;
}
}
// Displays the numbers 1 to 9 in the panel
void loop() {
for (int i = 0; i <= 9; i++) {
displayNumber(i);
delay(1000);
}
}
|
b6cd142aa2fd89ccb0399926fb8e6447a11629fd | 0d72f34ed81ec61d46765e4d361915fc3cc6b5c9 | /1.1-ride/test.cpp | 2378666a54c7a2445c1a0c2424437348a655452f | [] | no_license | BestSean2016/learn-usaco | cd626e715cd8bf4bc85960c1a97ef590e72ce6cd | 468a2079b6b4a707fe88e268abd4ae012b3fef67 | refs/heads/master | 2016-09-12T21:00:50.306981 | 2016-05-27T12:43:43 | 2016-05-27T12:43:43 | 58,776,523 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 439 | cpp | test.cpp | /*
ID: your_id_here
PROG: test
LANG: C++
*/
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int
mod(int n, int m)
{
while(n < 0)
n += m;
return n%m;
}
int main() {
/* ofstream fout ("test.out");
ifstream fin ("test.in");
int a, b;
fin >> a >> b;
fout << a+b << endl;
*/
int p = -15;
int q = 4;
cout << p % q << endl;
cout << mod(p, q) << endl;
return 0;
}
|
d9f4bc6a62114ce5a13dea0fb5c6c34c62c5b1e5 | 4bd5dbe77b0a372f322d5b4e258f0ec76e52b0e1 | /archive_files/WIFI-AP-TEST/WIFI-AP-TEST.ino | e84067281a8cd6d77577856cd0948beb09dac0a5 | [
"MIT"
] | permissive | marctheshark3/Basking-Shark | b451edfca9f0cec7006b800db1ee015aa31d904d | f3aa39d51219c521fd538afd99a96f8341d45309 | refs/heads/main | 2023-02-18T05:49:14.881305 | 2021-01-22T23:32:50 | 2021-01-22T23:32:50 | 311,472,580 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 700 | ino | WIFI-AP-TEST.ino | #include <WiFi.h>
#define WLAN_SSID "The Morty - est Morty"
#define WLAN_PASS "Margaritarick"
const char *ssid = "ESPecially not your network";
const char *password = "ilovemycactus";
void setup() {
Serial.begin(115200);
WiFi.softAP(ssid, password);
Serial.println();
Serial.print("IP address: ");
Serial.println(WiFi.softAPIP());
Serial.print("Connecting to ");
Serial.println(WLAN_SSID);
WiFi.begin(WLAN_SSID, WLAN_PASS);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println();
Serial.println("WiFi connected");
Serial.println("IP address: "); Serial.println(WiFi.localIP());
}
void loop() {}
|
68aba00c74fdee23a3b4cd5f70ea7a0ba879c29e | 3b6ee571c9bfd8d18266c9ba37a9140bcb2a6ed3 | /lib/Engine/src/ecs/Entity.cpp | e54f1a5963bee08a82beecd7a047c89d4b4b2a04 | [] | no_license | EdFil/MidasMinerClone | 8b2885443d9b0d5e041a88938972f5be9e234abc | 70509f6b05f40905c2c57dd22d82e941458a9fc5 | refs/heads/master | 2022-09-27T15:29:09.015848 | 2018-10-13T16:02:44 | 2018-10-13T16:02:44 | 149,189,175 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 748 | cpp | Entity.cpp | #include "Entity.hpp"
#include <algorithm>
#include "Component.hpp"
#include "EntitySystem.hpp"
void Entity::release() {
_system->releaseEntity(this);
}
Component* Entity::getComponentWithType(ComponentType type) {
for (Component* component : _components) {
if (component->type == type) {
return component;
}
}
return nullptr;
}
void Entity::addComponent(Component* component) {
_components.push_back(component);
component->setEntity(this);
}
void Entity::removeComponent(Component* component) {
_components.erase(std::remove(_components.begin(), _components.end(), component), _components.end());
component->setEntity(this);
}
void Entity::cleanup() {
for(Component* component : _components) {
component->release();
}
}
|
4bf6059be527911399f6803a1f9ee00978fc4ab5 | 2771207efa66f640662497b1158ec7d22b87aa14 | /1394camera/1394CameraControlStrobe.cpp | 56059359a686edf7bde463da8ae8f328db4223ac | [] | no_license | Aviatore/camera | dc936269868f9c19dc08c2625ab1534e7545cc31 | 83edb364e2e1bf177e4297fab603e0936594b496 | refs/heads/main | 2023-05-30T16:40:52.279761 | 2021-06-05T20:55:12 | 2021-06-05T20:55:12 | 374,200,877 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,345 | cpp | 1394CameraControlStrobe.cpp | /**\file 1394CameraControlStrobe.cpp
* \brief Implementation of the C1394CameraControlStrobe class.
* \ingroup strobe
*
* The strobe class is very close to the Trigger class, but different enough to
* require a separate subclass.
*/
//////////////////////////////////////////////////////////////////////
//
// Version 6.4
//
// Copyright 8/2006
//
// Christopher Baker
// Robotics Institute
// Carnegie Mellon University
// Pittsburgh, PA
//
// Copyright 5/2000
//
// Iwan Ulrich
// Robotics Institute
// Carnegie Mellon University
// Pittsburgh, PA
//
// This file is part of the CMU 1394 Digital Camera Driver
//
// The CMU 1394 Digital Camera Driver is free software; you can redistribute
// it and/or modify it under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation; either version 2.1 of the License,
// or (at your option) any later version.
//
// The CMU 1394 Digital Camera Driver is distributed in the hope that it will
// be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the CMU 1394 Digital Camera Driver; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
//////////////////////////////////////////////////////////////////////
#include "pch.h"
/**\defgroup strobe Strobe I/O Functionality
* \ingroup camoptional
*
* The strobe outputs seem to be a set of controls to output a square pulse
* with configurable delay and duration from the core frame clock
*/
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
// These aren't very interesting
//////////////////////////////////////////////////////////////////////
/**\brief Init a strobe control
* \param pCamera The parent camera
* \param strobeID The strobe number (0-3) to control
*/
C1394CameraControlStrobe::C1394CameraControlStrobe(C1394Camera *pCamera, unsigned long strobeID):
C1394CameraControl(pCamera,FEATURE_INVALID_FEATURE),m_strobeID(strobeID)
{}
C1394CameraControlStrobe::~C1394CameraControlStrobe()
{}
/**\brief Check whether the Strobe control supports polarity inversion
*
* The polarity bit for the Strobe control is the same as the automode bit
* in the others, so this basically wraps C1394Camera::HasAutoMode()
*/
bool C1394CameraControlStrobe::HasPolarity()
{
return C1394CameraControl::HasAutoMode();
}
/**\brief Check whether the Strobe control is using polarity inversion
*
* The polarity bit for the Strobe control is the same as the automode bit
* in the others, so this basically wraps C1394Camera::StatusAutoMode()
*/
bool C1394CameraControlStrobe::StatusPolarity()
{
return C1394CameraControl::StatusAutoMode();
}
/**\brief Set the Polarity Inversion Bit
*
* The polarity bit for the Strobe control is the same as the automode bit
* in the others, so this basically wraps C1394Camera::SetAutoMode()
*/
int C1394CameraControlStrobe::SetPolarity(BOOL polarity)
{
return C1394CameraControl::SetAutoMode(polarity);
}
/**\brief The auto mode bit means something else for the Strobe, so always return false */
bool C1394CameraControlStrobe::HasAutoMode()
{
return false;
}
/**\brief The manual mode bit means something else for the Strobe, so always return false */
bool C1394CameraControlStrobe::HasManualMode()
{
return false;
}
/**\brief The auto mode bit means something else for the Strobe, so always return CAM_ERROR_UNSUPPORTED */
int C1394CameraControlStrobe::SetAutoMode(BOOL on)
{
return CAM_ERROR_UNSUPPORTED;
}
/**\brief The auto mode bit means something else for the Strobe, so always return false */
bool C1394CameraControlStrobe::StatusAutoMode()
{
return false;
}
/** \brief Override Inquire to get offsets and such from the parent camera
* \param pRawData If non-NULL, this receives the raw 32-bits of the inquiry register
* \return
* - CAM_ERROR_NOT_INITIALIZED if the container camera pointer is invalid
* - CAM_ERROR_UNSUPPORTED if the container camera does not seem to support this control
* - Otherwise, same as C1394CameraControl::Inquire()
*/
int C1394CameraControlStrobe::Inquire(unsigned long *pRawData)
{
unsigned long rootoffset;
if(!m_pCamera)
return CAM_ERROR_NOT_INITIALIZED;
if(m_strobeID >= 4 || !m_pCamera->HasStrobe() || (rootoffset = m_pCamera->GetStrobeControlOffset()) == 0)
return CAM_ERROR_UNSUPPORTED;
m_inquiryoffset = rootoffset + 0x0100 + (m_strobeID<<2);
m_statusoffset = rootoffset + 0x0200 + (m_strobeID<<2);
return C1394CameraControl::Inquire(pRawData);
}
// Identification Stuff
static const char *names[] = {
"Strobe 0",
"Strobe 1",
"Strobe 2",
"Strobe 3"};
/**\brief The name of a strobe is simply "Strobe [Number]" */
const char *C1394CameraControlStrobe::GetName()
{
return this->m_strobeID < 4 ? names[this->m_strobeID] : "Invalid Strobe";
}
/**\brief Strobe Units are seconds */
const char *C1394CameraControlStrobe::GetUnits()
{
return "sec";
}
/**\brief Strobes are not your typical feature */
CAMERA_FEATURE C1394CameraControlStrobe::GetFeatureID()
{
return FEATURE_INVALID_FEATURE;
}
|
92b3978e218fe25c907b7af753aa356313cac110 | 3fc53018df7e83016cdcc95a44ef6235f071164c | /4/terrarium/Terrarium.h | e154b828298d7198d5027fc06c5dcaf1308cad13 | [] | no_license | dskrypa/cg_2014 | 488e588b9feb8c48a63117deed070df307fbe363 | 29312e0b2aaae694aa0184ec1ddf8dad173c1232 | refs/heads/master | 2022-11-30T12:56:14.252605 | 2020-08-17T21:25:41 | 2020-08-17T21:25:41 | 288,286,878 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 596 | h | Terrarium.h | /**
A terrarium in which animals can exist
@author Douglas Skrypa
@version 2014.04.09
*/
#ifndef TERRARIUM_H
#define TERRARIUM_H
#include "Env3D.h"
#include "Animal.h"
#define WALL_THICKNESS 1
class Terrarium {
private:
Env3D* env;
std::vector<TerrEntity> entities; //Store occupying entities
std::vector<Animal> animals; //Store occupying animals
public:
Terrarium();
Terrarium(Env3D*);
void populate();
void display();
void addEntity(TerrEntity te);
void addAnimal(Animal a);
std::vector<TerrEntity>* getEntities();
std::vector<Animal>* getAnimals();
};
#endif
|
7d54e95983a3fabc9062f009cddcf16616e274c0 | a7ecaf608f58249e66c7686ba4e71d7cf6920a25 | /SRP_InstanceOutput.cpp | 20093d0c1d82843cb9599b4d1bbf2e5723321526 | [] | no_license | cquijadafuentes/TOC-proyecto | c6a576ee34a0146eed93c3c2e624ca2c95ff13a4 | 7d95b182ff0fabc43ce2f844fa071b2793287ec6 | refs/heads/main | 2023-02-22T14:40:28.693992 | 2021-01-28T07:10:19 | 2021-01-28T07:10:19 | 325,594,122 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,606 | cpp | SRP_InstanceOutput.cpp | #include "SRP_InstanceOutput.hpp"
// ***********************************************************
// ****************** CLASE INSTANCE OUTPUT ******************
// ***********************************************************
InstanceOutput::InstanceOutput(string filename, int nn, int mm, int kk, int ll){
n = nn;
m = mm;
k = kk;
l = ll;
ifstream salida(filename);
string linea;
getline(salida, linea);
istringstream iss;
iss = istringstream(linea);
iss >> t;
string traslado_ts;
time_t viaje_hora;
string viaje_idvehi;
string viaje_idubica_orig;
string viaje_idubica_dest;
MiniBitmap* viaje_pers;
string viaje_idvisita;
tr = vector<Traslado*>(t);
for(int i=0; i<t; i++){
getline(salida, linea);
iss = istringstream(linea);
iss >> traslado_ts >> viaje_idvehi >> viaje_idubica_orig >> viaje_idubica_dest;
viaje_hora = obtenerTime(traslado_ts);
// cout << stringTime(viaje_hora) << " " << viaje_idvehi << " " << viaje_idubica_orig << " " << viaje_idubica_dest << " ";
int aux;
// Procesando personas que pueden realizar la visita
viaje_pers = new MiniBitmap(n);
for(int j=0; j<n; j++){
iss >> aux;
if(aux == 1){
viaje_pers->setBit(j);
}
}
// viaje_pers->printBitmap();
// cout << " ";
iss >> viaje_idvisita;
// cout << viaje_idvisita << endl;
tr[i] = new Traslado(viaje_hora, viaje_idvehi, viaje_idubica_orig, viaje_idubica_dest, viaje_pers, viaje_idvisita);
cout << stringTime(tr[i]->horainicio) << " " << tr[i]->idvehi << " " << tr[i]->iduborigen << " " << tr[i]->idubdestino << " ";
tr[i]->bm_personas->printBitmap();
cout << " " << tr[i]->idvisita << endl;
}
}
InstanceOutput::InstanceOutput(){
// ToDo: generar formato InstanceSolution (vector de traslados) desde la solución.
}
InstanceOutput::~InstanceOutput(){
cout << "Eliminando InstanceOutput..." << endl;
for(int i=0; i < tr.size(); i++){
delete tr[i];
}
}
void InstanceOutput::generarFichero(string filename){
// ToDo: sacar a fichero el formato de salida
cout << "Imprimiendo fichero de salida" << endl;
}
void InstanceOutput::sortByIdVehiculoFecha(){
sort(tr.begin(), tr.end(), InstanceOutput::comparadorIdVehiculoFecha);
}
bool InstanceOutput::comparadorIdVehiculoFecha(Traslado* i1, Traslado* i2){
if(i1->idvehi.compare(i2->idvehi) == 0){
return i1->horainicio < i2->horainicio;
}
return i1->idvehi.compare(i2->idvehi) < 0;
}
int InstanceOutput::validaViajesPorVehiculos(){
cout << "Traslados por idVehículo:" << endl;
int solapes_trayectos_vehiculos = 0;
for(int i=0; i<t; i++){
cout << tr[i]->toString();
if(i>1 && tr[i]->idvehi.compare(tr[i-1]->idvehi) == 0 && tr[i]->horainicio < tr[i-1]->horainicio){
solapes_trayectos_vehiculos++;
cout << " <- !!!!!";
}
cout << endl;
}
cout << "Solapes en trayectos de vehículos: " << solapes_trayectos_vehiculos << endl;
return solapes_trayectos_vehiculos;
}
string Traslado::toString(){
string salida = "";
salida += stringTime(horainicio);
salida += " " + stringTime(horafin);
salida += " " + idvehi;
salida += " " + iduborigen;
salida += " " + idubdestino;
salida += " " + idvisita;
return salida;
}
// ***********************************************************
// ********************** CLASE TRASLADO *********************
// ***********************************************************
Traslado::Traslado(time_t tt, string idve, string idor, string iddes, MiniBitmap* mb, string idvis){
horainicio = tt;
idvehi = idve;
iduborigen = idor;
idubdestino = iddes;
bm_personas = mb;
idvisita = idvis;
mb = NULL;
}
Traslado::~Traslado(){
delete bm_personas;
} |
95f5d8bef58a5ac9ced9e117b4d098c48c5f0780 | 896908db0eeb3d58712ed07abcf7a0075d19392f | /sensors/C/src/joystick_test.cpp | eb392ef9bf1ccef15cbe5b5fe874059bf46de954 | [] | no_license | ROVER-UTFSM/libraries | 8849d6e94fc8942c61b9c212068483458ce4f002 | 0d37eb4bce6bf4262e98f9dc4ea191a268e62a51 | refs/heads/master | 2021-01-10T16:10:50.306249 | 2015-12-10T13:32:41 | 2015-12-10T13:32:41 | 36,619,255 | 1 | 0 | null | 2015-11-10T16:35:23 | 2015-05-31T19:49:50 | C++ | UTF-8 | C++ | false | false | 796 | cpp | joystick_test.cpp | #include <stdio.h>
#include "typedef.h"
#include "rovermisc.h"
#include "../headers/joystick.h"
int main(int argc, char *argv[]){
rover::command *Joystick = new rover::joystick();
rover::command_t command;
//Rover State
int tvel = 0, avel = 0;
if( ((rover::joystick*)Joystick)->failed() ){
printf("No se encontro joystick\n");
return -1;
}
while(1){
if(Joystick->get_command(command)){
if(command.type == rover::VEL_A_COMMAND){
avel = (int)(command.value*100.0);
}
if(command.type == rover::VEL_R_COMMAND){
tvel = (int)(command.value*100.0);
}
if(command.type == rover::EXIT_COMMAND){
break;
}
printf("Estado: \n\tvelocida tangencial: %d\n\tvelocidad angular: %d\n", tvel, avel);
}
rover::wait(10000);
}
delete Joystick;
return 0;
} |
2b9f3a7328932becb3f8aeb5f7afd3d6f0610194 | 14095aa14d2e983459f680888e9ff4d9d72b532e | /Codeforces/Div 2 - A/A_Anton_and_Letters.cpp | a91f9a5a4b850f300ef2d4af006bcf02f0029b37 | [] | no_license | PrakalpTiwari137/Competitive-Coding | 5c3fdb78d196d3e5e94f8cd7ca81006b8758f562 | 3c2bd3449fd66e2142efd542a0428f9fa6484388 | refs/heads/master | 2020-12-06T03:51:33.605615 | 2020-08-24T16:06:04 | 2020-08-24T16:06:04 | 232,332,408 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 462 | cpp | A_Anton_and_Letters.cpp | #include <bits/stdc++.h>
#include <iostream>
using namespace std;
int main() {
vector<int> vec(26,0);
char ch;
int cnt = 0;
while(true) {
cin >> ch;
if(ch == '}') {
break;
}
if((ch == '{') || (ch == ',') || (ch == ' ')) {
continue;
}
if(vec[ch-'a'] == 0) {
vec[ch-'a'] = 1;
cnt++;
}
}
cout << cnt;
} |
27a1c7e7f55db2559f5d9c2d1824102c7b903aa1 | 6b62c34659e9b385ed504b2082dce85e308dc316 | /leetcode/1137 - N-th Tribonacci Number/1137 - N-th Tribonacci Number/main.cpp | d0ebc5ba69b64398095ca32ffeb3177ec150d7c6 | [] | no_license | mew177/cpp-practice | 62846c324be24e6359e8742b29c5648c736fd6b5 | 7b6faa7d5a9bf9d5bf505af2b07cf93539bb8f3c | refs/heads/master | 2021-05-15T02:42:05.875459 | 2020-05-11T13:42:45 | 2020-05-11T13:42:45 | 250,368,441 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 662 | cpp | main.cpp | //
// main.cpp
// 1137 - N-th Tribonacci Number
//
// Created by Wu, Meng Ju on 2020/4/10.
// Copyright © 2020 Pitt. All rights reserved.
//
#include <iostream>
class Solution {
public:
int tribonacci(int n) {
int numbers[n+1];
if (n >= 0) { numbers[0] = 0; }
if (n >= 1) { numbers[1] = 1; }
if (n >= 2) { numbers[2] = 1; }
for (int i = 3; i < n+1; i++) {
numbers[i] = numbers[i-1] + numbers[i-2] + numbers[i-3];
}
return numbers[n];
}
};
int main(int argc, const char * argv[]) {
// insert code here...
std::cout << "Hello, World!\n";
return 0;
}
|
c3d96f5e9d8b9d2061b2b4b2a87267097a371ae4 | 8e0377a18d72bd04937c9a0361dc859af9252b65 | /BIT/5. semestr/ISA/sniffer/sniffer.cpp | db1327cd8d3231d132016f70b8ed877ffcd44776 | [] | no_license | Adsjnfik/VUT-FIT-1 | f6317e55adf76aa2af9efdcdd758f430cf37e9e5 | 01e96f43974021c8029384978d028b6556418576 | refs/heads/master | 2023-02-02T14:30:26.687176 | 2020-12-16T15:42:07 | 2020-12-16T15:42:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,231 | cpp | sniffer.cpp | #include "sniffer.h"
Sniffer::Sniffer(const string &interface)
{
setUp(interface);
if(!error_)
sniffPackets();
}
bool Sniffer::error() const
{
return error_;
}
void Sniffer::setUp(const string &interface)
{
// Checking opening of device
if((handle_ = pcap_open_live(interface.c_str(), BUFSIZ, 1, 1000, errorBuffer_)) == nullptr)
error("Can't open device " + interface + ".\n"
+ "Error message: " + errorBuffer_ + "\n");
if(pcap_datalink(handle_) != DLT_EN10MB)
error(interface + " doesn't provide Ethernet headers.");
// Filter for RIP and RIPng
filterSettings_ = "portrange 520-521"; //Set port range we want to sniff (520 RIP, 521 RIPng)
// Compiling filter
if(pcap_compile(handle_, &filter_, filterSettings_.c_str(), 0, net_) == -1)
error("Can't parse filter " + filterSettings_);
// Setting up filter
if(pcap_setfilter(handle_, &filter_) == -1)
error("Can't set up filter " + filterSettings_);
}
void Sniffer::sniffPackets()
{
// Sniffing untill error or break via SIGTERM
pcap_loop(handle_, -1, gotPacket, nullptr);
}
void Sniffer::gotPacket(u_char *args, const pcap_pkthdr *header, const u_char *packet)
{
UNUSED(args);
//Parsing packet
cout << "Destination: ";
for(int i = 0; i < 6; i++)
{
printf("%02x", packet[i]);
cout << (i < 5 ? ":" : "\n");
}
cout << "Source: ";
for(int i = 6; i < 12; i++)
{
printf("%02x", packet[i]);
cout << (i < 11 ? ":" : "\n");
}
if(packet[12] == 0x08 && packet[13] == 0x00)
{
//IPv4
cout << "IPv4 packet" << endl;
cout << "IPv4 source: ";
for(int i = 26; i < 30; i++)
{
printf("%d", packet[i]);
cout << (i < 29 ? "." : "\n");
}
cout << "IPv4 destination: ";
for(int i = 30; i < 34; i++)
{
printf("%d", packet[i]);
cout << (i < 33 ? "." : "\n");
}
cout << "Source port: ";
cout << (packet[34] << 8 | packet[35]) << endl;
cout << "Destination port: ";
cout << (packet[36] << 8 | packet[37]) << endl;
//RIP
cout << "----RIP----" << endl;
cout << "Command: ";
if(packet[RIPv1_OFFSET] == 0x02)
cout << "Response" << endl;
else if(packet[RIPv1_OFFSET == 0x01])
cout << "Request" << endl;
else
{
cout << "Invalid command" << endl;
}
cout << "Version: ";
if(packet[RIPv1_OFFSET+1] == 0x01)
{
//RIPv1
cout << "RIPv1" << endl;
int recordCount = (static_cast<int>(header->len) - RIPv1_OFFSET - 4)/20; // count of entries
for(int no = 0; no < recordCount; no++)
{
int recordOffset = no*20;
cout << "----Entry no." << no << "----\n";
cout << "Address family: " << ((packet[RIPv1_OFFSET + 4+recordOffset] == 0x00 && packet[RIPv1_OFFSET + 5+recordOffset] == 0x02) ? "IP" : "Unknown") << "\n";
cout << "IP address: ";
for(int i = RIPv1_OFFSET + 8 + recordOffset; i < (RIPv1_OFFSET + 12 + recordOffset); i++)
{
printf("%d", packet[i]);
cout << (i < (RIPv1_OFFSET + 11 + recordOffset) ? "." : "\n");
}
cout << "Metric: ";
// Metric starts from 20 to 23
if(packet[RIPv1_OFFSET+20 + recordOffset] != 0x00 || packet[RIPv1_OFFSET+21 + recordOffset] != 0x00 || packet[RIPv1_OFFSET+22 + recordOffset] != 0x00)
cout << "Invalid value" << endl;
else if( packet[RIPv1_OFFSET+23 + recordOffset] == 0x10 )
{
cout << "Unreachable (16)" << endl;
}
else
{
printf("%d", packet[RIPv1_OFFSET+23 + recordOffset]);
cout << endl;
}
}
}
else
{
//RIPv2
cout << "RIPv2" << endl;
int recordCount = (static_cast<int>(header->len) - RIPv1_OFFSET -4)/20;
for(int no = 0; no < recordCount; no++)
{
int recordOffset = no*20;
cout << "----Entry no." << no << "----\n";
if((packet[RIPv1_OFFSET + 4+recordOffset] == 0xff && packet[RIPv1_OFFSET + 5+recordOffset] == 0xff))
{
cout << "Authentication type: ";
if(packet[RIPv1_OFFSET+6+recordOffset] == 0x00 && packet[RIPv1_OFFSET+7+recordOffset] == 0x02)
cout << "Simple password" << endl;
else
cout << "Invalid" << endl;
cout << "Authentication password: ";
for(int i = 0; i < 16; i++)
{
printf("%c", packet[RIPv1_OFFSET+8+i]);
}
cout << endl;
}
else
{
cout << "Address family: " << ((packet[RIPv1_OFFSET + 4+recordOffset] == 0x00 && packet[RIPv1_OFFSET + 5+recordOffset] == 0x02) ? "IP" : "Unknown") << "\n";
cout << "Route tag: ";
printf("0x%02x%02x\n", packet[RIPv1_OFFSET + 6+recordOffset], packet[RIPv1_OFFSET + 7+recordOffset]);
cout << "IP address: ";
for(int i = RIPv1_OFFSET + 8 + recordOffset; i < (RIPv1_OFFSET + 12 + recordOffset); i++)
{
printf("%d", packet[i]);
cout << (i < (RIPv1_OFFSET + 11 + recordOffset) ? "." : "\n");
}
cout << "Netmask: ";
for(int i = (RIPv1_OFFSET+12 + recordOffset); i < (RIPv1_OFFSET+16 + recordOffset); i++)
{
printf("%d", packet[i]);
cout << (i < (RIPv1_OFFSET + 15 + recordOffset) ? "." : "\n");
}
cout << "Next hop: ";
for(int i = (RIPv1_OFFSET+16 + recordOffset); i < (RIPv1_OFFSET+20 + recordOffset); i++)
{
printf("%d", packet[i]);
cout << (i < (RIPv1_OFFSET+19 + recordOffset) ? "." : "\n");
}
// Metric starts from 20 to 23
cout << "Metric: ";
if(packet[RIPv1_OFFSET+20 + recordOffset] != 0x00 || packet[RIPv1_OFFSET+21 + recordOffset] != 0x00 || packet[RIPv1_OFFSET+22 + recordOffset] != 0x00)
cout << "Invalid value" << endl;
else if( packet[RIPv1_OFFSET+23 + recordOffset] == 0x10 )
{
cout << "Unreachable (16)" << endl;
}
else
{
printf("%d", packet[RIPv1_OFFSET+23 + recordOffset]);
cout << endl;
}
}
}
}
}
else
{
//IPv6
cout << "IPv6 packet" << endl;
cout << "IPv6 source: ";
for(int i = 22; i < 38; i++)
{
printf("%02x", packet[i]);
cout << ((i % 2 == 1) ? ((i < 37) ? ":" : "\n") : "");
}
cout << "IPv6 destination: ";
for(int i = 38; i < 54; i++)
{
printf("%02x", packet[i]);
cout << ((i % 2 == 1) ? ((i < 53) ? ":" : "\n") : "");
}
cout << "Source port: ";
cout << (packet[54] << 8 | packet[55]) << endl;
cout << "Destination port: ";
cout << (packet[56] << 8 | packet[57]) << endl;
cout << "----RIPng----" << endl;
cout << "Command: ";
if(packet[RIPng_OFFSET] == 0x02)
cout << "Response" << endl;
else if (packet[RIPng_OFFSET] == 0x01)
cout << "Request" << endl;
else
cout << "Undefined" << endl;
printf("Version: %x\n", packet[RIPng_OFFSET+1]);
int packetCount = (static_cast<int>(header->len) - RIPng_OFFSET - 4)/20;
for(int no = 0; no < packetCount; no++)
{
int recordOffset = no*20;
cout << "----Entry no." << no << "----\n";
cout << "IPv6 prefix: ";
for(int i = RIPng_OFFSET+4+recordOffset; i < RIPng_OFFSET+20+recordOffset; i++)
{
printf("%02x", packet[i]);
cout << ((i % 2 == 1) ? ((i < RIPng_OFFSET+19+recordOffset) ? ":" : "\n") : "");
}
printf("Route Tag: 0x%x%x\n", packet[RIPng_OFFSET+20+recordOffset], packet[RIPng_OFFSET+21+recordOffset]);
printf("Prefix Lenght: %d\n", packet[RIPng_OFFSET+22+recordOffset]);
printf("Metric: %d\n", packet[RIPng_OFFSET+23+recordOffset]);
}
}
cout << "--------------------------------------------------------------------" << endl;
}
void Sniffer::error(const string &str)
{
cerr << str;
error_ = true;
}
|
722c015bb277497fe544f2010366f7176e914831 | 3ff1fe3888e34cd3576d91319bf0f08ca955940f | /cam/include/tencentcloud/cam/v20190116/model/CreateMessageReceiverRequest.h | 87fc882d2bb11461a7498452ad1b5f4d0fa48369 | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-cpp | 9f5df8220eaaf72f7eaee07b2ede94f89313651f | 42a76b812b81d1b52ec6a217fafc8faa135e06ca | refs/heads/master | 2023-08-30T03:22:45.269556 | 2023-08-30T00:45:39 | 2023-08-30T00:45:39 | 188,991,963 | 55 | 37 | Apache-2.0 | 2023-08-17T03:13:20 | 2019-05-28T08:56:08 | C++ | UTF-8 | C++ | false | false | 6,419 | h | CreateMessageReceiverRequest.h | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. 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 TENCENTCLOUD_CAM_V20190116_MODEL_CREATEMESSAGERECEIVERREQUEST_H_
#define TENCENTCLOUD_CAM_V20190116_MODEL_CREATEMESSAGERECEIVERREQUEST_H_
#include <string>
#include <vector>
#include <map>
#include <tencentcloud/core/AbstractModel.h>
namespace TencentCloud
{
namespace Cam
{
namespace V20190116
{
namespace Model
{
/**
* CreateMessageReceiver请求参数结构体
*/
class CreateMessageReceiverRequest : public AbstractModel
{
public:
CreateMessageReceiverRequest();
~CreateMessageReceiverRequest() = default;
std::string ToJsonString() const;
/**
* 获取消息接收人的用户名
* @return Name 消息接收人的用户名
*
*/
std::string GetName() const;
/**
* 设置消息接收人的用户名
* @param _name 消息接收人的用户名
*
*/
void SetName(const std::string& _name);
/**
* 判断参数 Name 是否已赋值
* @return Name 是否已赋值
*
*/
bool NameHasBeenSet() const;
/**
* 获取手机号国际区号,国内为86
* @return CountryCode 手机号国际区号,国内为86
*
*/
std::string GetCountryCode() const;
/**
* 设置手机号国际区号,国内为86
* @param _countryCode 手机号国际区号,国内为86
*
*/
void SetCountryCode(const std::string& _countryCode);
/**
* 判断参数 CountryCode 是否已赋值
* @return CountryCode 是否已赋值
*
*/
bool CountryCodeHasBeenSet() const;
/**
* 获取手机号码, 例如:132****2492
* @return PhoneNumber 手机号码, 例如:132****2492
*
*/
std::string GetPhoneNumber() const;
/**
* 设置手机号码, 例如:132****2492
* @param _phoneNumber 手机号码, 例如:132****2492
*
*/
void SetPhoneNumber(const std::string& _phoneNumber);
/**
* 判断参数 PhoneNumber 是否已赋值
* @return PhoneNumber 是否已赋值
*
*/
bool PhoneNumberHasBeenSet() const;
/**
* 获取邮箱,例如:57*****@qq.com
* @return Email 邮箱,例如:57*****@qq.com
*
*/
std::string GetEmail() const;
/**
* 设置邮箱,例如:57*****@qq.com
* @param _email 邮箱,例如:57*****@qq.com
*
*/
void SetEmail(const std::string& _email);
/**
* 判断参数 Email 是否已赋值
* @return Email 是否已赋值
*
*/
bool EmailHasBeenSet() const;
/**
* 获取消息接收人的备注,选填
* @return Remark 消息接收人的备注,选填
*
*/
std::string GetRemark() const;
/**
* 设置消息接收人的备注,选填
* @param _remark 消息接收人的备注,选填
*
*/
void SetRemark(const std::string& _remark);
/**
* 判断参数 Remark 是否已赋值
* @return Remark 是否已赋值
*
*/
bool RemarkHasBeenSet() const;
private:
/**
* 消息接收人的用户名
*/
std::string m_name;
bool m_nameHasBeenSet;
/**
* 手机号国际区号,国内为86
*/
std::string m_countryCode;
bool m_countryCodeHasBeenSet;
/**
* 手机号码, 例如:132****2492
*/
std::string m_phoneNumber;
bool m_phoneNumberHasBeenSet;
/**
* 邮箱,例如:57*****@qq.com
*/
std::string m_email;
bool m_emailHasBeenSet;
/**
* 消息接收人的备注,选填
*/
std::string m_remark;
bool m_remarkHasBeenSet;
};
}
}
}
}
#endif // !TENCENTCLOUD_CAM_V20190116_MODEL_CREATEMESSAGERECEIVERREQUEST_H_
|
ad8fa543f407fb2d671e36a9394bb7b9e431e5d3 | 49d7304b5db9ccb1bc5aba6768ff42b4ece8f51d | /KH_SetTrek_GAS-A1/KH_SetTrek_GAS-A1/GameController.h | 94266393bfedd748d214d96515efb823fa9d0195 | [] | no_license | KyleRoger/SET_Trek_Kyle | 3d45126600d8b0b075df3f055bc3a38b8875c1ee | 0484d7f6c35376b42d4c912140cb54ae30bf7e18 | refs/heads/main | 2023-03-23T20:08:28.132307 | 2021-02-17T03:24:00 | 2021-02-17T03:24:00 | 339,599,706 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 396 | h | GameController.h | #pragma once
#include "GameLevel.h"
#include "Graphics.h"
//This will be a Singleton class (constructor is private)
class GameController
{
GameController() {}
static GameLevel* currentLevel;
public:
static bool Loading;
static void Init();
static void LoadInitialLevel(GameLevel* lev);
static void SwitchLevel(GameLevel* lev);
static void Render(bool miniGame);
static int Update();
}; |
839eb8f40864297064adb55ee070730814287ed8 | e2de642be4f2b96177f1888b81a05fcdb05874c5 | /Arista.cpp | b4f647b818b0a7819736d8114b47b8938e997f21 | [] | no_license | renanz/Proyecto1_TeoriaComputacion_21541052 | dce917f2b4fc33cfb563e2223ad38f8133bf7740 | 6ff194ef6ed5d76170ae6458ef9d0fe31c9a5632 | refs/heads/master | 2021-04-06T00:25:28.322215 | 2018-03-12T04:58:52 | 2018-03-12T04:58:52 | 124,806,928 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 398 | cpp | Arista.cpp | #include "Arista.h"
Arista::Arista(char caracter, Estado *sig)
{
this->caracter = caracter;
this->next = sig;
}
Arista::~Arista()
{
//dtor
}
char Arista::getCaracter()
{
return this->caracter;
}
Estado* Arista::getEstado()
{
return this->next;
}
void Arista::setEstado(Estado *est)
{
this->next = est;
}
char Arista::setCaracter(char car)
{
this->caracter = car;
}
|
8889d8d608512e90e59adeb9394f81b6482fbcbc | 573c517d31d21d835b51a30e4d6619041b188013 | /sum-it/Source/main/Excel/Excel.pass2.cpp | 8442cd7b3dfda0a96226f54d4e898fb97d5f9807 | [] | no_license | keegnotrub/OpenSumIt | 69392e08368dbbe169a4dcfb733630f07044f100 | 74f7463c7b3216eb55b99536c340071602a5d21c | refs/heads/master | 2023-08-29T21:55:51.445937 | 2021-11-11T18:01:20 | 2021-11-11T18:01:20 | 280,171,988 | 1 | 1 | null | 2020-07-16T14:13:57 | 2020-07-16T14:13:56 | null | UTF-8 | C++ | false | false | 8,095 | cpp | Excel.pass2.cpp | /*
Copyright 1996, 1997, 1998, 2000
Hekkelman Programmatuur B.V. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. All advertising materials mentioning features or use of this software
must display the following acknowledgement:
This product includes software developed by Hekkelman Programmatuur B.V.
4. The name of Hekkelman Programmatuur B.V. may not be used to endorse or
promote products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED ``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
AUTHORS 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.
*/
/*
Excel.pass2.c
$Log: Excel.pass2.cpp,v $
Revision 1.2 2000/05/13 19:20:33 svenweidauer
i've removed all warnings now (i hope)
*/
#include <support/Debug.h>
#include "Excel.h"
#include "XL_Biff_codes.h"
#include "FileFormat.h"
#include "XL_Ptg.h"
#include "MyMath.h"
#include "Container.h"
#include "Formula.h"
void CExcel5Filter::Pass2()
{
CExcelStream es(fBook);
short code, len;
ssize_t offset;
offset = 0;
fBook.Seek(offset, SEEK_SET);
es >> code >> len;
offset += 4 + len;
while (offset < fBook.BufferLength())
{
fBook.Seek(offset, SEEK_SET);
es >> code >> len;
offset += 4 + len;
if (code == B_EOF)
break;
HandleXLRecordForPass2(code, len);
}
fBook.Seek(offset, SEEK_SET);
es >> code >> len;
offset += 4 + len;
while (offset < fBook.BufferLength())
{
fBook.Seek(offset, SEEK_SET);
es >> code >> len;
offset += 4 + len;
if (code == B_EOF)
break;
HandleXLRecordForPass2(code, len);
}
} // CExcel5Filter::Pass2
void CExcel5Filter::HandleXLRecordForPass2(int code, int len)
{
CExcelStream es(fBook);
Value v;
cell c;
ushort style;
switch (code & 0x00FF)
{
case BLANK:
{
es >> c.v >> c.h >> style;
c.v++;
c.h++;
fContainer->NewCell(c, v, NULL);
fContainer->SetCellStyleNr(c, fStyles[style]);
break;
}
case NUMBER:
{
es >> c.v >> c.h >> style;
c.v++;
c.h++;
double d;
es >> d;
v = d;
fContainer->NewCell(c, v, NULL);
fContainer->SetCellStyleNr(c, fStyles[style]);
break;
}
case LABEL:
case RSTRING:
{
char label[512];
short l;
es >> c.v >> c.h >> style >> l;
c.v++;
c.h++;
if (l > 511) l = 511;
es.Read(label, l);
label[l] = 0;
v = label;
fContainer->NewCell(c, v, NULL);
fContainer->SetCellStyleNr(c, fStyles[style]);
break;
}
case BOOLERR:
{
es >> c.v >> c.h >> style;
c.v++;
c.h++;
char b, f;
es >> b >> f;
if (f)
{
switch (b)
{
// case 0: d = gRefNan; break;
case 7: v = Nan(8); /*gDivNan;*/ break;
case 15: v = Nan(7); /*gValueNan;*/ break;
case 23: v = Nan(3); /*gRefNan;*/ break;
case 29: v = Nan(3); /*gRefNan;*/ break;
// case 36: v = nan(7); /*gValueNan;*/ break;
case 42: v = Nan(15); /*gNANan;*/ break;
default: v = Nan(1); /*gErrorNan;*/ break;
}
fContainer->NewCell(c, v, NULL);
fContainer->SetCellStyleNr(c, fStyles[style]);
}
else
{
v = (bool)(b != 0);
fContainer->NewCell(c, v, NULL);
fContainer->SetCellStyleNr(c, fStyles[style]);
}
break;
}
case RK:
{
es >> c.v >> c.h >> style;
c.v++;
c.h++;
long l;
es >> l;
double d;
if (l & 0x02)
d = (double)(l>>2);
else
{
long long L = l & 0xFFFFFFFC;
L <<= 32;
memcpy(&d, &L, 8);
}
if (l & 0x01)
d /= 100;
v = d;
fContainer->NewCell(c, v, NULL);
fContainer->SetCellStyleNr(c, fStyles[style]);
break;
}
case FORMULA:
{
es >> c.v >> c.h >> style;
c.v++;
c.h++;
short cce, grbit, num[4];
long chn;
es >> num[3] >> num[2] >> num[1] >> num[0] >> grbit >> chn >> cce;
if (num[0] == -1)
{
switch (num[3])
{
case 0: // text cell
fContainer->NewCell(c, v, NULL);
fContainer->SetCellStyleNr(c, fStyles[style]);
break;
case 1: // bool cell
v = (num[1] != 0);
fContainer->NewCell(c, v, NULL);
fContainer->SetCellStyleNr(c, fStyles[style]);
break;
case 2: // err cell
{
switch (num[1] >> 8)
{
// case 0: d = gRefNan; break;
case 7: v = Nan(8); /*gDivNan;*/ break;
case 15: v = Nan(7); /*gValueNan;*/ break;
case 23: v = Nan(3); /*gRefNan;*/ break;
case 29: v = Nan(3); /*gRefNan;*/ break;
// case 36: v = Nan(7); /*gValueNan;*/ break;
case 42: v = Nan(15); /*gNANan;*/ break;
default: v = Nan(1); /*gErrorNan;*/ break;
}
fContainer->NewCell(c, v, NULL);
fContainer->SetCellStyleNr(c, fStyles[style]);
break;
}
default:
throw CErr("Illegal result type in formula. %d,%d",
c.v, c.h);
}
}
else
{
v = B_LENDIAN_TO_HOST_DOUBLE(*(double *)num);
fContainer->NewCell(c, v, NULL);
fContainer->SetCellStyleNr(c, fStyles[style]);
}
try
{
cell shared;
CFormula form;
shared.v = shared.h = 0;
char o;
// grbit & 0x08 does not seem to work as advertised...
es >> o;
if (o == ptgExp)
{
es >> shared.v >> shared.h;
int i;
for (i = 0; i < fSharedFormulas.size(); i++)
{
if (fSharedFormulas[i].rwFirst == shared.v && fSharedFormulas[i].colFirst == shared.h)
break;
}
if (i == fSharedFormulas.size())
throw CErr("Could not find shared formula %d,%d for cell %d,%d",
shared.v, shared.h, c.v, c.h);
ParseXLFormula(form, c, shared, fSharedFormulas[i].p, fSharedFormulas[i].cce);
}
else
{
fBook.Seek(fBook.Position() - 1, SEEK_SET);
void *p = malloc(cce);
es.Read(p, cce);
ParseXLFormula(form, c, shared, p, cce);
free(p);
}
try
{
form.Calculate(c, v, fContainer);
fContainer->SetValue(c, v);
}
catch (...)
{
int ix = 0;
form.AddToken(valStr, "!ERROR", ix);
form.AddToken(opEnd, NULL, ix);
}
fContainer->SetCellFormula(c, form.DetachString());
}
catch (CErr e) {
puts(e);
// e.DoError();
}
break;
}
case STRING:
{
char label[512];
short l;
es >> l;
if (l > 511) l = 511;
es.Read(label, l);
label[l] = 0;
v = label;
fContainer->SetValue(c, v);
break;
}
case MULRK:
{
long l;
double d;
es >> c.v >> c.h;
c.v++; c.h++;
int i = (len-4)/6;
while (i--)
{
es >> style >> l;
if (l & 0x02)
d = (double)(l>>2);
else
{
long long L = (l & 0xFFFFFFFC);
L <<= 32;
memcpy(&d, &L, 8);
}
if (l & 0x01)
d /= 100;
v = d;
fContainer->NewCell(c, v, NULL);
fContainer->SetCellStyleNr(c, fStyles[style]);
c.h++;
}
break;
}
case MULBLANK:
{
es >> c.v; c.v++;
es >> c.h; c.h++;
int i = (len-4)/2;
while (i--)
{
es >> style;
fContainer->SetCellStyleNr(c, fStyles[style]);
c.h++;
}
break;
}
}
} // CExcel5Filter::HandleXLRecordForPass2
|
e2d9c159199018c08c35830eec911f8e22d74ff8 | ded81394e98c6e1f371be14ba24ae1a883b89546 | /SPOJ/STAR3CAS.cpp | 50b41bceb5d143207c43afbdda623b701ad9bb89 | [] | no_license | OmarKimo/Problem-Solving | 115ae31c25f958b44ac2337073dcc4e3b0611254 | 60ccf8877f05e89a599b2355fd92bdc8989b8d89 | refs/heads/master | 2022-12-04T10:49:45.940405 | 2020-08-20T11:04:56 | 2020-08-20T11:04:56 | 109,227,852 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 751 | cpp | STAR3CAS.cpp | /*STAR3CAS - THE WEIRD STAIRCASE SPOJ Recursion*/
#include <iostream>
using namespace std;
int min_val,n,stairs[100];
void count_steps(int count,int index){
//cout<<"count is : "<<count<<" index is "<<index<<" n value is :"<<n<<" new index "<<index+stairs[index]<<endl;
if(index==n)
{
if(count<min_val) min_val=count;
}
else if (count>n)
{
}
else
{
if(index+stairs[index]<=n && index+stairs[index]>=0)
count_steps(count+1,index+stairs[index]);
count_steps(count+1,index+1);
}
}
int main() {
int t,count;
cin>>t;
for (int i=0;i<t;i++)
{
cin>>n;
min_val=n+1;
count=0;
for (int j=0;j<n;j++)
{
cin>>stairs[j];
}
count_steps(count,0);
cout<<min_val<<endl;
}
return 0;
} |
4511ff2b904053341f41ca8aa1be2d5cc596a600 | 61541ecf093068f3ea372f1a340590fc63609ef6 | /Aula03/c3ex2.cpp | ded5d847e641273a29a6c6af427a79b334c5ff81 | [] | no_license | matheusbsilva137/Competitive_Programming | 600fe0286cf7aa30cf9532cdc47855dcd168875a | 56c90639034f3ac2c3a529ef8035f08a1e727ff2 | refs/heads/master | 2022-11-08T16:27:43.978983 | 2020-07-10T02:25:34 | 2020-07-10T02:25:34 | 275,719,275 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 734 | cpp | c3ex2.cpp | #include<bits/stdc++.h>
using namespace std;
struct twoGram{
string tg;
int ocur = 0;
};
int main(){
int n, i, j = 0, size = -1, maxOcur = 0;
string s, tgAtual;
twoGram* tgs = new twoGram[99];
cin >> n;
cin >> s;
for (i = 0; i <= n - 2; i++){
j = size;
tgAtual = s.substr(i, 2);
while (j >= 0 && tgAtual.compare(tgs[j].tg) != 0) j--;
if (j >= 0) tgs[j].ocur += 1;
else{
tgs[++size].tg = tgAtual;
tgs[size].ocur = 1;
}
}
for(j = 0; j <= size; j++){
if (tgs[j].ocur >= maxOcur) {
tgAtual = tgs[j].tg;
maxOcur = tgs[j].ocur;
}
}
cout << tgAtual << endl;
return 0;
} |
0511290a6e65a90b0c8af4df396d4004dbfebfed | 187e37f3f0b522485bfba470d3967c372bb04738 | /CPlusPlusReview/function_wrapper.cpp | 4524d203cfd5b2816314da5505df4f5458acd3bd | [] | no_license | ambreen2006/exercises | f2df1a6251a51b834ef1e64fc613b4b98cb74053 | 2d17ef9d3fe11d70c8b71d1e7783053ec7cac76e | refs/heads/master | 2023-02-21T15:19:10.969459 | 2021-01-27T20:50:35 | 2021-01-27T20:50:35 | 41,881,173 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,243 | cpp | function_wrapper.cpp | #include <iostream>
#include <functional>
#include <unordered_map>
using namespace std;
struct Switch {
using void_function = std::function<void(void)>;
std::unordered_map<std::string, void_function> cases;
void add_case(std::string const & key, void_function func) {
cases[key] = func;
}
Switch() {}
void operator()(std::string const & key) {
auto f = cases.find(key);
f = (f == cases.end()) ? cases.find("default") : f;
if (f == cases.end()) {
std::cout << "Case not found and default not set\n";
return;
}
f->second();
}
};
void test(void) {
std::cout << "In regular method\n";
}
int main(int argc, const char *argv[]) {
std::string message = "c'est la vie";
Switch s;
s.add_case("regular_method", test);
s.add_case("live_your_life", [&message](void) {
std::cout << message << std::endl;
});
s.add_case("default", [](){
std::cout << "Defaul switch case\n";
});
s.add_case("i_think_therefore_i_am", [msg="cogito ergo sum"]{
cout << msg << endl;
});
s("live_your_life");
s("i_think_therefore_i_am");
s("not_existing_key");
s("regular_method");
return 0;
}
|
4bb90b7238bc52dde58ec7767f278ebc6f56df3b | acada59a01a86566bebf5003e36e0b3f2dbbd6c6 | /Heizs/c++源代码/源.cpp | d1c6dae0ac7d015a55a7b16e4744f6ded53742e2 | [] | no_license | TuringCodeOne/TF5-Linux-Tasks | 7aea0ecab1804fc36ccc8a57445a92d7043d81a5 | 7215d48b92272c5ee9bd5d70270bbe1e5d1c22cc | refs/heads/master | 2020-08-22T04:39:58.320226 | 2019-10-28T06:12:34 | 2019-10-28T06:12:34 | 216,319,527 | 0 | 6 | null | 2019-10-26T17:02:55 | 2019-10-20T06:45:19 | C++ | UTF-8 | C++ | false | false | 289 | cpp | 源.cpp | #include<iostream>
#include<cmath>
using namespace std;
int main()
{
int i,j,k,n;
cin >> n ;
for (i = 0; i <= n; i++)
{
for (j = 0; j <abs( (n + 1) / 2 -i); j++)cout << " ";
for (k = 0; k <((n+1)/2-abs((n+1)/2-i))*2-1;k++) cout << "*";
cout << endl;
}
return 0;
} |
47e92cdce819c5c009285ff08f52d278a57da166 | 48a04ecc61636ac13e4846cfc9a52e0bfcd6ac4a | /Optimization and Vectorization Cpp/game.h | 12124a6678926a4d9e485751c14dc76f6d062d30 | [] | no_license | Firzenick/Portfolio | 0dd0c089ce43420baf30314afcce366f9854948d | 6a48094488033fdeafee062f37750049b2e514a5 | refs/heads/master | 2020-08-10T02:30:51.677004 | 2019-10-10T16:54:08 | 2019-10-10T16:54:08 | 214,235,205 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,174 | h | game.h | // Template, major revision 3, beta
// IGAD/NHTV - Jacco Bikker - 2006-2009
#pragma once
#define STARS 19000
#define MAXACTORS 1000
#define SLICES 32 //always to be a power of 2 (tested at 32, created artifacts
#define SLICEDIVISION 5 //the power of 2 for SLICES
namespace Tmpl8 {
class Surface;
class Sprite;
class Actor
{
public:
enum
{
UNDEFINED = 0,
METALBALL = 1,
PLAYER = 2,
ENEMY = 3,
BULLET = 4
};
virtual bool Tick() = 0;
virtual bool Hit( float& a_X, float& a_Y, float& a_NX, float& a_NY ) { return false; }
virtual int GetType() { return Actor::UNDEFINED; }
static void SetSurface( Surface* a_Surface ) { m_Surface = a_Surface; }
static Surface* m_Surface;
Sprite* m_Sprite;
static Sprite* m_Spark;
float m_X, m_Y;
};
class MetalBall;
class ActorPool
{
public:
ActorPool() { m_Pool = new Actor*[MAXACTORS]; m_Actors = 0; }
static void Tick()
{
for ( int i = 0; i < m_Actors; i++ )
{
Actor* actor = m_Pool[i];
if (!actor->Tick()) delete actor;
}
}
static void Add( Actor* a_Actor ) { m_Pool[m_Actors++] = a_Actor; }
static void Delete( Actor* a_Actor )
{
for ( int i = 0; i < m_Actors; i++ ) if (m_Pool[i] == a_Actor)
{
for ( int j = i + 1; j < m_Actors; j++ ) m_Pool[j - 1] = m_Pool[j];
m_Actors--;
break;
}
}
static bool CheckHit( float& a_X, float& a_Y, float& a_NX, float& a_NY )
{
for ( int i = 0; i < m_Actors; i++ )
if (m_Pool[i]->Hit( a_X, a_Y, a_NX, a_NY )) return true;
return false;
}
static int GetActiveActors() { return m_Actors; }
static Actor** m_Pool;
static int m_Actors;
};
class Surface;
class Starfield : public Actor
{
public:
Starfield();
bool Tick();
private:
float* x, *y;
};
class Bullet : public Actor
{
public:
Bullet();
~Bullet();
enum
{
PLAYER = 0,
ENEMY = 1
};
void Init( Surface* a_Surface, float a_X, float a_Y, float a_VX, float a_VY, int a_Owner )
{
m_X = a_X, m_Y = a_Y;
m_VX = a_VX, m_VY = a_VY;
m_Surface = a_Surface;
m_Life = 1200;
m_Owner = a_Owner;
}
bool Tick();
int GetType() { return Actor::BULLET; }
float m_VX, m_VY;
int m_Life, m_Owner;
Sprite* m_Player, *m_Enemy;
};
class MetalBall : public Actor
{
public:
MetalBall();
bool Tick();
bool Hit( float& a_X, float& a_Y, float& a_NX, float& a_NY );
int GetType() { return Actor::METALBALL; }
};
class Playership : public Actor
{
public:
Playership();
bool Tick();
int GetType() { return Actor::PLAYER; }
private:
float m_VX, m_VY;
int m_BTimer, m_DTimer;
Sprite* m_Death;
};
class Enemy : public Actor
{
public:
Enemy();
bool Tick();
int GetType() { return Actor::ENEMY; }
private:
float m_VX, m_VY;
int m_Frame, m_BTimer, m_DTimer;
Sprite* m_Death;
};
class Game
{
public:
void SetTarget( Surface* a_Surface ) { m_Screen = a_Surface; }
void Init();
void Tick( float a_DT );
void DrawBackdrop();
void HandleKeys();
void KeyDown( unsigned int code ) {}
void KeyUp( unsigned int code ) {}
void MouseMove( unsigned int x, unsigned int y ) {}
void MouseUp( unsigned int button ) {}
void MouseDown( unsigned int button ) {}
private:
Surface* m_Screen;
Sprite* m_Ship;
ActorPool* m_ActorPool;
int m_Timer;
};
}; // namespace Tmpl8 |
0d432c324855b532d5ef1b706c9c7ce56a25868f | 1d85920077c830b74a57fe91b106902762ecb7d1 | /include/P_node_string.h | 67f88ecc7ad622423901819179897acea0367fc6 | [] | no_license | ChristopheBrown/data_structures_and_algorithms | dd31ea2c562d4a7075ebdf48bda523cdf7664d24 | 180af975abd903024660b1e26ef8ddde1e4fa6ab | refs/heads/master | 2020-03-28T02:44:39.188012 | 2019-10-31T21:50:24 | 2019-10-31T21:50:24 | 147,593,076 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 410 | h | P_node_string.h | /*
* P_node_string.h
*
* Created on: Sep 24, 2018
* Author: Christophe's Book
*/
#include "P_node.h"
#ifndef P_NODE_STRING_H_
#define P_NODE_STRING_H_
namespace ece309 {
class P_node_string : public P_node {
public:
const char* data;
P_node_string ( const char* string );
public:
void print();
~P_node_string() {};
};
}
#endif /* P_NODE_STRING_H_ */
|
f280b4ccc0cbffee097ee3bbe6a3cfbd4d735363 | 39100b66c5359c5fa7ce2dc3e0bba754f70d73f7 | /CaioRB/L3E4/Druida.cpp | 133613c7d55b57ac02664503b8cc431b9c953c69 | [] | no_license | raphaellc/AlgEDCPP | 74db9cf0b2a27239c7b44b585e436637aa522151 | f37fca39d16aa8b11572603ba173e7bc2e0e870a | refs/heads/master | 2020-03-25T21:11:30.969638 | 2018-11-29T14:24:06 | 2018-11-29T14:24:06 | 144,163,894 | 0 | 0 | null | 2018-12-11T22:08:25 | 2018-08-09T14:28:14 | C++ | ISO-8859-1 | C++ | false | false | 436 | cpp | Druida.cpp | #include "Druida.h"
Druida::Druida()
{
}
Druida::~Druida()
{
}
void Druida::curar()
{
if (mana > 10)
{
cout << "Abrece o poder da natureza!\n";
}
else
{
cout << "Peço que aguente firme, amigo.\n";
}
}
void Druida::reviver()
{
if (mana > 150)
{
cout << "Volte a caminhar no mundo dos vivos.\n";
}
else
{
cout << "Nem mesmo eu posso mudar a balança. Peço perdão.\n";
}
} |
dae97b7b408496c596a50dbf349732ec74f4168a | 762d4571648ec9a6dee34b202e55fc03c89d35bd | /src/view/ccControlCenterView.cpp | 9d40843f64a56bf4bcf6011f4110896303881abf | [] | no_license | sescandell/ControlCenter | 02464d144eee375141efc2d5610767b2717898b6 | d26a4259b8778ed9ad4a85c73d56daddf63cdfb0 | refs/heads/master | 2016-09-05T14:49:32.600724 | 2013-12-11T09:34:37 | 2013-12-11T09:34:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,020 | cpp | ccControlCenterView.cpp | #include "ccControlCenterView.h"
#include <cv.h>
#include <QtGui/QBrush>
#include <QtGui/QPen>
#include <QtCore/QDebug>
#define CC_CONTROL_CENTER_VIEW_IMAGE_CHANNELS 1
#define CC_CONTROL_CENTER_VIEW_IMAGE_DEPTH IPL_DEPTH_8U
#define CC_CONTROL_CENTER_VIEW_QIMAGE_DEFAULT_FORMAT QImage::Format_RGB32
#define CC_CONTROL_CENTER_VIEW_QHISTOGRAMIMAGE_DEFAULT_FORMAT QImage::Format_RGB32
#define CC_CONTROL_CENTER_VIEW_CIRCLES_BRUSH QBrush(Qt::blue)
#define CC_CONTROL_CENTER_VIEW_CIRCLES_PEN QPen(Qt::red,1)
namespace CCF
{
static int robotSize = 10;
void ControlCenterView::SetRobotSize(int size)
{
robotSize = size;
}
ControlCenterView::ControlCenterView(const ControlCenter* _controlCenter, const QSize& _viewSize, const QSize& _histogramSize)
:controlCenter(_controlCenter), viewSize(_viewSize), histogramSize(_histogramSize)
{
displayCircles = false;
displayImage = true;
image = new Image();
image->lock();
image->CreateIplImage(viewSize.width(), viewSize.height(), CC_CONTROL_CENTER_VIEW_IMAGE_CHANNELS, CC_CONTROL_CENTER_VIEW_IMAGE_DEPTH);
image->unlock();
qImage = new QImage(viewSize,CC_CONTROL_CENTER_VIEW_QIMAGE_DEFAULT_FORMAT);
qHistogramImage = new QImage(histogramSize,CC_CONTROL_CENTER_VIEW_QHISTOGRAMIMAGE_DEFAULT_FORMAT);
}
ControlCenterView::~ControlCenterView()
{
foreach(View* view, views)
delete view;
delete qHistogramImage;
delete qImage;
image->lock();
delete image;
}
void ControlCenterView::AddView(int identifier, View* view)
{
views.insert(identifier,view);
displayView.insert(identifier,true);
}
bool ControlCenterView::IsPointInImage(const QPoint& point) const
{
QPoint origin((viewSize.width()-qImage->width())/2,(viewSize.height()-qImage->height())/2);
return point.x()>=origin.x() && point.x()<=origin.x()+qImage->width() &&
point.y()>=origin.y() && point.y()<=origin.y()+qImage->height();
}
QPoint ControlCenterView::ConvertCoordinateToDisplayerSize(const QPoint& point) const
{
static QSize originalSize = controlCenter->GetVideoSize();
QSize size = qImage->size();
QPoint origin((viewSize.width()-qImage->width())/2,(viewSize.height()-qImage->height())/2);
return QPoint(point.x()*(float)size.width() / (float)originalSize.width()+origin.x(),
point.y()*(float)size.height() / (float)originalSize.height()+origin.y());
}
QPoint ControlCenterView::ConvertCoordinateToVideoSourceSize(const QPoint& point) const
{
static QSize originalSize = controlCenter->GetVideoSize();
QSize size = qImage->size();
QPoint origin((viewSize.width()-qImage->width())/2,(viewSize.height()-qImage->height())/2);
QPoint adjustedPoint = point - origin;
return QPoint(adjustedPoint.x()* (float)originalSize.width() / (float)size.width(),
adjustedPoint.y()* (float)originalSize.height() / (float)size.height() );
}
int ControlCenterView::ConvertDistanceToDisplayerDistance(int distance) const
{
// This function assumes that aspect ratio is kept
static QSize originalSize = controlCenter->GetVideoSize();
QSize size = qImage->size();
return distance*size.width()/originalSize.width();
}
void ControlCenterView::DisplayerResized(QSize newSize)
{
// We take care that the aspect ratio is kept when resizing our displayer
static QSize originalSize = controlCenter->GetVideoSize();
static double ratio = (double)originalSize.width()/(double)originalSize.height();
QSize imageSize;
viewSize = newSize;
if(ratio>=1) // landscape mode
{
imageSize.setWidth(newSize.width());
imageSize.setHeight(newSize.width()/ratio);
if(imageSize.height()>newSize.height())
{
imageSize.setHeight(newSize.height());
imageSize.setWidth(newSize.height()*ratio);
}
}
else // portrait mode
{
imageSize.setHeight(newSize.height());
imageSize.setWidth(newSize.height()*ratio);
if(imageSize.width()>newSize.width())
{
imageSize.setWidth(newSize.width());
imageSize.setHeight(newSize.width()/ratio);
}
}
image->lock();
image->CreateIplImage(imageSize.width(), imageSize.height(), CC_CONTROL_CENTER_VIEW_IMAGE_CHANNELS, CC_CONTROL_CENTER_VIEW_IMAGE_DEPTH);
image->unlock();
delete qImage;
qImage = new QImage(imageSize,CC_CONTROL_CENTER_VIEW_QIMAGE_DEFAULT_FORMAT);
}
void ControlCenterView::HistogramDisplayerResized(QSize newSize)
{
histogramSize = newSize;
delete qHistogramImage;
qHistogramImage = new QImage(histogramSize,CC_CONTROL_CENTER_VIEW_QHISTOGRAMIMAGE_DEFAULT_FORMAT);
}
Image* ControlCenterView::GetImage() const
{
return image;
}
void ControlCenterView::RemoveView(int identifier)
{
views.remove(identifier);
}
void ControlCenterView::SetDisplayImageActivated(int value)
{
displayImage = Qt::Checked==value;
}
void ControlCenterView::SetDisplayCirclesActivated(bool value)
{
displayCircles = value;
}
void ControlCenterView::SetDisplayView(int identifier,bool value)
{
displayView.insert(identifier,value);
}
void ControlCenterView::Draw(QPainter& painter)
{
painter.fillRect(0,0,viewSize.width(),viewSize.height(),QBrush(QColor(0,0,0)));
if(displayImage)
{
//image->lock();
if(image->tryLock())
{
IplImage* _image = image->GetIplImage();
int _widthStep = _image->widthStep;
int _width = _image->width;
int _height = _image->height;
char * _imageData = _image->imageData;
int _channels = image->GetChannelsCount();
for(int y=0; y<_height; y++)
{
for(int x=0;x<_width;x++)
qImage->setPixel(x,y,qRgb( _imageData[_channels*(y*_widthStep+x)],
_imageData[_channels*(y*_widthStep+x)],
_imageData[_channels*(y*_widthStep+x)]));
}
image->unlock();
}
// Draw the camera image in the center of the displayer
painter.drawImage(QPoint((viewSize.width()-qImage->width())/2,(viewSize.height()-qImage->height())/2),*qImage);
}
// If we are in the add robot mode, we draw circles
if(displayCircles)
{
painter.setBrush( CC_CONTROL_CENTER_VIEW_CIRCLES_BRUSH );
painter.setPen( CC_CONTROL_CENTER_VIEW_CIRCLES_PEN );
foreach(IPKPosition p, controlCenter->GetFoundPositions())
{
painter.drawEllipse(ConvertCoordinateToDisplayerSize(p),
ConvertDistanceToDisplayerDistance(robotSize)/2,
ConvertDistanceToDisplayerDistance(robotSize)/2);
}
}
// Draw all activated views (robots and tracks)
QMap<int, View*>::iterator i = views.begin();
while (i != views.end())
{
if(displayView.value(i.key()))
i.value()->Draw(painter);
++i;
}
}
void ControlCenterView::DrawHistogram(QPainter& painter)
{
painter.fillRect(0,0,histogramSize.width(),histogramSize.height(),QBrush(QColor(255,255,255)));
// There is a bug I do not succed to identify ...
// Wherea I take the mutex, some one succed to access to <image>
// and delete it ...
return;
// Initialize our histogram
int values[256];
for(int i=0;i<256;i++)
values[i] = 0;
//Compute the histogram
if(image->tryLock())
{
if(image->GetChannelsCount()==1)
{
IplImage* _image = image->GetIplImage();
int _widthStep = _image->widthStep;
int _width = _image->width;
int _height = _image->height;
char * _imageData = _image->imageData;
for(int y=0; y<_height; y++)
{
for(int x=0;x<_width;x++)
{
values[_imageData[y*_widthStep+x]]++;
}
}
cvReleaseImage(&_image);
image->unlock();
}
else
{
image->unlock();
return;
}
// Find the biggest value
int max = 0;
for(int i=0;i<256;i++)
if(values[i]>max)
max = values[i];
// Draw the histogram
double heightRatio = (double)histogramSize.height()/(double)max;
double widthRatio = (double)histogramSize.width()/256.;
painter.setBrush(Qt::NoBrush);
painter.setPen(QColor(0,0,0));
for(int i=0;i<256;i++)
painter.drawLine((histogramSize.width()-i)*widthRatio,histogramSize.height(),(histogramSize.width()-i)*widthRatio,values[i]*heightRatio);
}
}
} // namespace CCF
|
63027b08ecaba341ecec0845edba53686abc360c | cb80a8562d90eb969272a7ff2cf52c1fa7aeb084 | /inletTest2/constant/polyMesh/neighbour | 12e96db0d6c17376e37758c9bbf3ce684273e01b | [] | no_license | mahoep/inletCFD | eb516145fad17408f018f51e32aa0604871eaa95 | 0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2 | refs/heads/main | 2023-08-30T22:07:41.314690 | 2021-10-14T19:23:51 | 2021-10-14T19:23:51 | 314,657,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 445,599 | neighbour | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class labelList;
note "nPoints:80646 nCells:38932 nFaces:157118 nInternalFaces:77437";
location "constant/polyMesh";
object neighbour;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
77437
(
1
3
6744
38931
2
6743
3
4
5
38931
6
38930
7
38929
8
38928
9
38927
10
38926
11
38925
12
38924
13
38923
14
38922
15
38921
16
38920
17
38919
18
38918
19
38917
20
38916
21
38915
22
38914
23
38913
24
38912
25
38911
26
38910
27
38909
28
38908
29
38907
30
38906
31
38905
32
38904
33
38903
34
38902
35
38901
36
38900
37
38899
38
38898
39
38897
40
38896
41
38895
42
38894
43
38893
44
38892
45
38891
46
38890
47
38889
48
38888
49
38887
50
38886
51
38885
52
38884
53
38883
54
38882
55
38881
56
38880
57
38879
58
38878
59
38877
60
38876
61
38875
62
38874
63
38873
64
38872
65
38871
66
38870
67
38869
68
38868
69
38867
70
38866
71
38865
72
38864
73
38863
74
38862
75
38861
76
38860
77
38859
78
38858
79
38857
80
38856
81
38855
82
38854
83
38853
84
38852
85
38851
86
38850
87
38849
88
38848
89
38847
90
38846
91
38845
92
38844
93
38843
94
38842
95
38841
96
38840
97
38839
98
38838
99
38837
100
38836
101
38835
102
38834
103
38833
104
38832
105
38831
106
38830
107
38829
108
38828
109
38827
110
38826
111
38825
112
38824
113
38823
114
38822
115
38821
116
38820
117
38819
118
38818
119
38817
120
38816
121
38815
122
38814
123
38813
124
38812
125
38811
126
38810
127
38809
128
38808
129
38807
130
134
131
133
132
133
137
134
136
135
38807
136
140
6869
137
139
138
139
143
140
142
141
6870
142
146
6871
143
145
144
145
149
146
148
147
6872
148
152
6873
149
151
150
151
155
152
154
153
6874
154
158
6875
155
157
156
157
161
158
160
159
6876
160
164
6877
161
163
162
163
167
164
166
165
6878
166
170
6879
167
169
168
169
173
170
172
171
6880
172
176
6881
173
175
174
175
179
176
178
177
6882
178
182
6883
179
181
180
181
185
182
184
183
6884
184
188
6885
185
187
186
187
191
188
190
189
6886
190
194
6887
191
193
192
193
197
194
196
195
6888
196
200
6889
197
199
198
199
203
200
202
201
6890
202
206
6891
203
205
204
205
209
206
208
207
6892
208
212
6893
209
211
210
211
215
212
214
213
6894
214
218
6895
215
217
216
217
221
218
220
219
6896
220
224
6897
221
223
222
223
227
224
226
225
6898
226
230
6899
227
229
228
229
233
230
232
231
6900
232
236
6901
233
235
234
235
239
236
238
237
6902
238
242
6903
239
241
240
241
245
242
244
243
6904
244
248
6905
245
247
246
247
251
248
250
249
6906
250
254
6907
251
253
252
253
257
254
256
255
6908
256
260
6909
257
259
258
259
263
260
262
261
6910
262
266
6911
263
265
264
265
269
266
268
267
6912
268
272
6913
269
271
270
271
275
272
274
273
6914
274
278
6915
275
277
276
277
281
278
280
279
6916
280
284
6917
281
283
282
283
287
284
286
285
6918
286
290
6919
287
289
288
289
293
290
292
291
6920
292
296
6921
293
295
294
295
299
296
298
297
6922
298
302
6923
299
301
300
301
305
302
304
303
6924
304
308
6925
305
307
306
307
311
308
310
309
6926
310
314
6927
311
313
312
313
317
314
316
315
6928
316
320
6929
317
319
318
319
323
320
322
321
6930
322
326
6931
323
325
324
325
329
326
328
327
6932
328
332
6933
329
331
330
331
335
332
334
333
6934
334
338
6935
335
337
336
337
341
338
340
339
6936
340
344
6937
341
343
342
343
347
344
346
345
6938
346
350
6939
347
349
348
349
353
350
352
351
6940
352
356
6941
353
355
354
355
359
356
358
357
6942
358
362
6943
359
361
360
361
365
362
364
363
6944
364
368
6945
365
367
366
367
371
368
370
369
6946
370
374
6947
371
373
372
373
377
374
376
375
6948
376
380
6949
377
379
378
379
383
380
382
381
6950
382
386
6951
383
385
384
385
389
386
388
387
6952
388
392
6953
389
391
390
391
395
392
394
393
6954
394
398
6955
395
397
396
397
401
398
400
399
6956
400
404
6957
401
403
402
403
407
404
406
405
6958
406
410
6959
407
409
408
409
413
410
412
411
6960
412
416
6961
413
415
414
415
419
416
418
417
6962
418
422
6963
419
421
420
421
425
422
424
423
6964
424
428
6965
425
427
426
427
431
428
430
429
6966
430
434
6967
431
433
432
433
437
434
436
435
6968
436
440
6969
437
439
438
439
443
440
442
441
6970
442
446
6971
443
445
444
445
449
446
448
447
6972
448
452
6973
449
451
450
451
455
452
454
453
6974
454
458
6975
455
457
456
457
461
458
460
459
6976
460
464
6977
461
463
462
463
467
464
466
465
6978
466
470
6979
467
469
468
469
473
470
472
471
6980
472
476
6981
473
475
474
475
479
476
478
477
6982
478
482
6983
479
481
480
481
485
482
484
483
6984
484
488
6985
485
487
486
487
491
488
490
489
6986
490
494
6987
491
493
492
493
497
494
496
495
6988
496
500
6989
497
499
498
499
503
500
502
501
6990
502
506
6991
503
505
504
505
509
506
508
507
6992
508
512
6993
509
511
510
511
515
512
514
513
6994
514
518
6995
515
517
516
517
521
518
520
519
6996
520
524
6997
521
523
522
523
527
524
526
525
6998
526
530
6999
527
529
528
529
533
530
532
531
7000
532
536
7001
533
535
534
535
539
536
538
537
7002
538
542
7003
539
541
540
541
545
542
544
543
7004
544
548
7005
545
547
546
547
548
549
550
7005
551
7006
552
7007
553
7026
554
7027
555
7032
556
7033
557
7110
558
7111
559
7116
560
7117
561
7138
562
7139
563
7144
564
7145
565
7470
566
7471
567
7476
568
7477
569
7499
570
7499
571
7500
572
7501
573
7503
574
7503
575
7504
576
7505
577
7506
578
7513
579
587
580
586
581
585
582
584
583
584
592
585
591
586
590
587
589
588
7514
589
597
7514
590
596
591
595
592
594
593
594
602
595
601
596
600
597
599
598
7515
599
607
7516
600
606
601
605
602
604
603
604
612
605
611
606
610
607
609
608
7517
609
617
7549
610
616
611
615
612
614
613
614
622
615
621
616
620
617
619
618
7550
619
627
7551
620
626
621
625
622
624
623
624
632
625
631
626
630
627
629
628
7552
629
637
7561
630
636
631
635
632
634
633
634
642
635
641
636
640
637
639
638
7562
639
647
7563
640
646
641
645
642
644
643
644
652
645
651
646
650
647
649
648
7564
649
657
7608
650
656
651
655
652
654
653
654
662
655
661
656
660
657
659
658
7609
659
667
7610
660
666
661
665
662
664
663
664
672
665
671
666
670
667
669
668
7611
669
677
7612
670
676
671
675
672
674
673
674
682
675
681
676
680
677
679
678
7619
679
687
7618
680
686
681
685
682
684
683
684
692
685
691
686
690
687
689
688
7620
689
697
7629
690
696
691
695
692
694
693
694
702
695
701
696
700
697
699
698
7630
699
707
7631
700
706
701
705
702
704
703
704
712
705
711
706
710
707
709
708
7632
709
717
7641
710
716
711
715
712
714
713
714
722
715
721
716
720
717
719
718
7642
719
727
7643
720
726
721
725
722
724
723
724
732
725
731
726
730
727
729
728
7644
729
737
7710
730
736
731
735
732
734
733
734
742
735
741
736
740
737
739
738
7711
739
747
7712
740
746
741
745
742
744
743
744
752
745
751
746
750
747
749
748
7713
749
757
7714
750
756
751
755
752
754
753
754
762
755
761
756
760
757
759
758
7721
759
767
7720
760
766
761
765
762
764
763
764
772
765
771
766
770
767
769
768
7722
769
777
7731
770
776
771
775
772
774
773
774
782
775
781
776
780
777
779
778
7732
779
787
7733
780
786
781
785
782
784
783
784
792
785
791
786
790
787
789
788
7734
789
797
7745
790
796
791
795
792
794
793
794
802
795
801
796
800
797
799
798
7746
799
807
7747
800
806
801
805
802
804
803
804
812
805
811
806
810
807
809
808
7800
809
817
7799
810
816
811
815
812
814
813
814
822
815
821
816
820
817
819
818
7801
819
827
7802
820
826
821
825
822
824
823
824
832
825
831
826
830
827
829
828
7803
829
837
7804
830
836
831
835
832
834
833
834
842
835
841
836
840
837
839
838
7811
839
847
7810
840
846
841
845
842
844
843
844
852
845
851
846
850
847
849
848
7812
849
857
7821
850
856
851
855
852
854
853
854
862
855
861
856
860
857
859
858
7822
859
867
7823
860
866
861
865
862
864
863
864
872
865
871
866
870
867
869
868
7824
869
877
7833
870
876
871
875
872
874
873
874
882
875
881
876
880
877
879
878
7834
879
887
7835
880
886
881
885
882
884
883
884
892
885
891
886
890
887
889
888
7836
889
897
7902
890
896
891
895
892
894
893
894
902
895
901
896
900
897
899
898
7903
899
907
7904
900
906
901
905
902
904
903
904
912
905
911
906
910
907
909
908
7905
909
917
7906
910
916
911
915
912
914
913
914
922
915
921
916
920
917
919
918
7913
919
927
7912
920
926
921
925
922
924
923
924
932
925
931
926
930
927
929
928
7914
929
937
7923
930
936
931
935
932
934
933
934
942
935
941
936
940
937
939
938
7924
939
947
7925
940
946
941
945
942
944
943
944
952
945
951
946
950
947
949
948
7926
949
957
7937
950
956
951
955
952
954
953
954
962
955
961
956
960
957
959
958
7938
959
967
7939
960
966
961
965
962
964
963
964
972
965
971
966
970
967
969
968
7992
969
977
7991
970
976
971
975
972
974
973
974
982
975
981
976
980
977
979
978
7993
979
987
7994
980
986
981
985
982
984
983
984
992
985
991
986
990
987
989
988
7995
989
997
7996
990
996
991
995
992
994
993
994
1002
995
1001
996
1000
997
999
998
8003
999
1007
8002
1000
1006
1001
1005
1002
1004
1003
1004
1012
1005
1011
1006
1010
1007
1009
1008
8004
1009
1017
8013
1010
1016
1011
1015
1012
1014
1013
1014
1022
1015
1021
1016
1020
1017
1019
1018
8014
1019
1027
8015
1020
1026
1021
1025
1022
1024
1023
1024
1032
1025
1031
1026
1030
1027
1029
1028
8016
1029
1037
8025
1030
1036
1031
1035
1032
1034
1033
1034
1042
1035
1041
1036
1040
1037
1039
1038
8026
1039
1047
8027
1040
1046
1041
1045
1042
1044
1043
1044
1052
1045
1051
1046
1050
1047
1049
1048
8028
1049
1057
8094
1050
1056
1051
1055
1052
1054
1053
1054
1062
1055
1061
1056
1060
1057
1059
1058
8095
1059
1067
8096
1060
1066
1061
1065
1062
1064
1063
1064
1072
1065
1071
1066
1070
1067
1069
1068
8097
1069
1077
8098
1070
1076
1071
1075
1072
1074
1073
1074
1082
1075
1081
1076
1080
1077
1079
1078
8105
1079
1087
8104
1080
1086
1081
1085
1082
1084
1083
1084
1092
1085
1091
1086
1090
1087
1089
1088
8106
1089
1097
8115
1090
1096
1091
1095
1092
1094
1093
1094
1102
1095
1101
1096
1100
1097
1099
1098
8116
1099
1107
8117
1100
1106
1101
1105
1102
1104
1103
1104
1112
1105
1111
1106
1110
1107
1109
1108
8118
1109
1117
8129
1110
1116
1111
1115
1112
1114
1113
1114
1122
1115
1121
1116
1120
1117
1119
1118
8130
1119
1127
8131
1120
1126
1121
1125
1122
1124
1123
1124
1132
1125
1131
1126
1130
1127
1129
1128
8184
1129
1137
8183
1130
1136
1131
1135
1132
1134
1133
1134
1142
1135
1141
1136
1140
1137
1139
1138
8185
1139
1147
8186
1140
1146
1141
1145
1142
1144
1143
1144
1152
1145
1151
1146
1150
1147
1149
1148
8187
1149
1157
8197
1150
1156
1151
1155
1152
1154
1153
1154
1162
1155
1161
1156
1160
1157
1159
1158
8197
1159
1167
8196
1160
1166
1161
1165
1162
1164
1163
1164
1172
1165
1171
1166
1170
1167
1169
1168
8198
1169
1177
8199
1170
1176
1171
1175
1172
1174
1173
1174
1182
1175
1181
1176
1180
1177
1179
1178
8214
1179
1187
8213
1180
1186
1181
1185
1182
1184
1183
1184
1192
1185
1191
1186
1190
1187
1189
1188
8212
1189
1197
8215
1190
1196
1191
1195
1192
1194
1193
1194
1202
1195
1201
1196
1200
1197
1199
1198
8252
1199
1207
8252
1200
1206
1201
1205
1202
1204
1203
1204
1212
1205
1211
1206
1210
1207
1209
1208
8253
1209
1217
8257
1210
1216
1211
1215
1212
1214
1213
1214
1222
1215
1221
1216
1220
1217
1219
1218
8257
1219
1227
8256
1220
1226
1221
1225
1222
1224
1223
1224
1232
1225
1231
1226
1230
1227
1229
1228
8258
1229
1237
8261
1230
1236
1231
1235
1232
1234
1233
1234
1242
1235
1241
1236
1240
1237
1239
1238
8262
1239
1247
8920
1240
1246
1241
1245
1242
1244
1243
1244
1252
1245
1251
1246
1250
1247
1249
1248
8921
1249
1257
8922
1250
1256
1251
1255
1252
1254
1253
1254
1262
1255
1261
1256
1260
1257
1259
1258
8934
1259
1267
8934
1260
1266
1261
1265
1262
1264
1263
1264
1272
1265
1271
1266
1270
1267
1269
1268
8933
1269
1277
8932
1270
1276
1271
1275
1272
1274
1273
1274
1282
1275
1281
1276
1280
1277
1279
1278
8935
1279
1287
8936
1280
1286
1281
1285
1282
1284
1283
1284
1292
1285
1291
1286
1290
1287
1289
1288
9129
1289
1297
9130
1290
1296
1291
1295
1292
1294
1293
1294
1302
1295
1301
1296
1300
1297
1299
1298
9130
1299
1307
9131
1300
1306
1301
1305
1302
1304
1303
1304
1312
1305
1311
1306
1310
1307
1309
1308
9132
1309
1317
9133
1310
1316
1311
1315
1312
1314
1313
1314
1322
1315
1321
1316
1320
1317
1319
1318
9134
1319
1327
9135
1320
1326
1321
1325
1322
1324
1323
1324
1332
1325
1331
1326
1330
1327
1329
1328
9269
1329
1337
9269
1330
1336
1331
1335
1332
1334
1333
1334
1342
1335
1341
1336
1340
1337
1339
1338
9270
1339
1347
9271
1340
1346
1341
1345
1342
1344
1343
1344
1352
1345
1351
1346
1350
1347
1349
1348
9274
1349
1357
9275
1350
1356
1351
1355
1352
1354
1353
1354
1362
1355
1361
1356
1360
1357
1359
1358
9282
1359
1367
9283
1360
1366
1361
1365
1362
1364
1363
1364
1372
1365
1371
1366
1370
1367
1369
1368
9283
1369
1377
9284
1370
1376
1371
1375
1372
1374
1373
1374
1382
1375
1381
1376
1380
1377
1379
1378
9285
1379
1387
9449
1380
1386
1381
1385
1382
1384
1383
1384
1392
1385
1391
1386
1390
1387
1389
1388
9450
1389
1397
9464
1390
1396
1391
1395
1392
1394
1393
1394
1402
1395
1401
1396
1400
1397
1399
1398
9464
1399
1407
9463
1400
1406
1401
1405
1402
1404
1403
1404
1412
1405
1411
1406
1410
1407
1409
1408
9462
1409
1417
9461
1410
1416
1411
1415
1412
1414
1413
1414
1422
1415
1421
1416
1420
1417
1419
1418
9466
1419
1427
9466
1420
1426
1421
1425
1422
1424
1423
1424
1432
1425
1431
1426
1430
1427
1429
1428
9467
1429
1437
9612
1430
1436
1431
1435
1432
1434
1433
1434
1442
1435
1441
1436
1440
1437
1439
1438
9613
1439
1447
9615
1440
1446
1441
1445
1442
1444
1443
1444
1452
1445
1451
1446
1450
1447
1449
1448
9615
1449
1457
9616
1450
1456
1451
1455
1452
1454
1453
1454
1462
1455
1461
1456
1460
1457
1459
1458
9707
1459
1467
9706
1460
1466
1461
1465
1462
1464
1463
1464
1472
1465
1471
1466
1470
1467
1469
1468
9709
1469
1477
9709
1470
1476
1471
1475
1472
1474
1473
1474
1482
1475
1481
1476
1480
1477
1479
1478
9710
1479
1487
9719
1480
1486
1481
1485
1482
1484
1483
1484
1492
1485
1491
1486
1490
1487
1489
1488
9833
1489
1497
9833
1490
1496
1491
1495
1492
1494
1493
1494
1502
1495
1501
1496
1500
1497
1499
1498
9832
1499
1507
9831
1500
1506
1501
1505
1502
1504
1503
1504
1512
1505
1511
1506
1510
1507
1509
1508
9834
1509
1517
9834
1510
1516
1511
1515
1512
1514
1513
1514
1522
1515
1521
1516
1520
1517
1519
1518
9835
1519
1527
9837
1520
1526
1521
1525
1522
1524
1523
1524
1532
1525
1531
1526
1530
1527
1529
1528
9837
1529
1537
9838
1530
1536
1531
1535
1532
1534
1533
1534
1542
1535
1541
1536
1540
1537
1539
1538
9862
1539
1547
9862
1540
1546
1541
1545
1542
1544
1543
1544
1552
1545
1551
1546
1550
1547
1549
1548
9863
1549
1557
9948
1550
1556
1551
1555
1552
1554
1553
1554
1562
1555
1561
1556
1560
1557
1559
1558
9948
1559
1567
9947
1560
1566
1561
1565
1562
1564
1563
1564
1572
1565
1571
1566
1570
1567
1569
1568
9950
1569
1577
9950
1570
1576
1571
1575
1572
1574
1573
1574
1582
1575
1581
1576
1580
1577
1579
1578
9958
1579
1587
9958
1580
1586
1581
1585
1582
1584
1583
1584
1592
1585
1591
1586
1590
1587
1589
1588
9959
1589
1597
9959
1590
1596
1591
1595
1592
1594
1593
1594
1602
1595
1601
1596
1600
1597
1599
1598
10028
1599
1607
10029
1600
1606
1601
1605
1602
1604
1603
1604
1612
1605
1611
1606
1610
1607
1609
1608
10036
1609
1617
10037
1610
1616
1611
1615
1612
1614
1613
1614
1622
1615
1621
1616
1620
1617
1619
1618
10111
1619
1627
10112
1620
1626
1621
1625
1622
1624
1623
1624
1632
1625
1631
1626
1630
1627
1629
1628
10119
1629
1637
10121
1630
1636
1631
1635
1632
1634
1633
1634
1642
1635
1641
1636
1640
1637
1639
1638
10121
1639
1647
10123
1640
1646
1641
1645
1642
1644
1643
1644
1652
1645
1651
1646
1650
1647
1649
1648
10123
1649
1657
10125
1650
1656
1651
1655
1652
1654
1653
1654
1662
1655
1661
1656
1660
1657
1659
1658
10125
1659
1667
10127
1660
1666
1661
1665
1662
1664
1663
1664
1672
1665
1671
1666
1670
1667
1669
1668
10127
1669
1677
10129
1670
1676
1671
1675
1672
1674
1673
1674
1682
1675
1681
1676
1680
1677
1679
1678
10129
1679
1687
10131
1680
1686
1681
1685
1682
1684
1683
1684
1692
1685
1691
1686
1690
1687
1689
1688
10131
1689
1697
10133
1690
1696
1691
1695
1692
1694
1693
1694
1702
1695
1701
1696
1700
1697
1699
1698
10134
1699
1707
10134
1700
1706
1701
1705
1702
1704
1703
1704
1712
1705
1711
1706
1710
1707
1709
1708
10136
1709
1717
10136
1710
1716
1711
1715
1712
1714
1713
1714
1722
1715
1721
1716
1720
1717
1719
1718
10138
1719
1727
10139
1720
1726
1721
1725
1722
1724
1723
1724
1732
1725
1731
1726
1730
1727
1729
1728
10139
1729
1737
10141
1730
1736
1731
1735
1732
1734
1733
1734
1742
1735
1741
1736
1740
1737
1739
1738
10142
1739
1747
10142
1740
1746
1741
1745
1742
1744
1743
1744
1752
1745
1751
1746
1750
1747
1749
1748
10144
1749
1757
10145
1750
1756
1751
1755
1752
1754
1753
1754
1762
1755
1761
1756
1760
1757
1759
1758
10145
1759
1767
10147
1760
1766
1761
1765
1762
1764
1763
1764
1772
1765
1771
1766
1770
1767
1769
1768
10147
1769
1777
10149
1770
1776
1771
1775
1772
1774
1773
1774
1782
1775
1781
1776
1780
1777
1779
1778
10150
1779
1787
10150
1780
1786
1781
1785
1782
1784
1783
1784
1792
1785
1791
1786
1790
1787
1789
1788
10152
1789
1797
10153
1790
1796
1791
1795
1792
1794
1793
1794
1802
1795
1801
1796
1800
1797
1799
1798
10153
1799
1807
10155
1800
1806
1801
1805
1802
1804
1803
1804
1812
1805
1811
1806
1810
1807
1809
1808
10156
1809
1817
10156
1810
1816
1811
1815
1812
1814
1813
1814
1822
1815
1821
1816
1820
1817
1819
1818
10158
1819
1827
10159
1820
1826
1821
1825
1822
1824
1823
1824
1832
1825
1831
1826
1830
1827
1829
1828
10159
1829
1837
10161
1830
1836
1831
1835
1832
1834
1833
1834
1842
1835
1841
1836
1840
1837
1839
1838
10162
1839
1847
10162
1840
1846
1841
1845
1842
1844
1843
1844
1852
1845
1851
1846
1850
1847
1849
1848
10164
1849
1857
10165
1850
1856
1851
1855
1852
1854
1853
1854
1862
1855
1861
1856
1860
1857
1859
1858
10165
1859
1867
10167
1860
1866
1861
1865
1862
1864
1863
1864
1872
1865
1871
1866
1870
1867
1869
1868
10168
1869
1877
10169
1870
1876
1871
1875
1872
1874
1873
1874
1882
1875
1881
1876
1880
1877
1879
1878
10169
1879
1887
10171
1880
1886
1881
1885
1882
1884
1883
1884
1892
1885
1891
1886
1890
1887
1889
1888
10172
1889
1897
10172
1890
1896
1891
1895
1892
1894
1893
1894
1902
1895
1901
1896
1900
1897
1899
1898
10174
1899
1907
10175
1900
1906
1901
1905
1902
1904
1903
1904
1912
1905
1911
1906
1910
1907
1909
1908
10175
1909
1917
10177
1910
1916
1911
1915
1912
1914
1913
1914
1922
1915
1921
1916
1920
1917
1919
1918
10178
1919
1927
10178
1920
1926
1921
1925
1922
1924
1923
1924
1932
1925
1931
1926
1930
1927
1929
1928
10180
1929
1937
10181
1930
1936
1931
1935
1932
1934
1933
1934
1942
1935
1941
1936
1940
1937
1939
1938
10181
1939
1947
10183
1940
1946
1941
1945
1942
1944
1943
1944
1952
1945
1951
1946
1950
1947
1949
1948
10184
1949
1957
10184
1950
1956
1951
1955
1952
1954
1953
1954
1962
1955
1961
1956
1960
1957
1959
1958
10186
1959
1967
10187
1960
1966
1961
1965
1962
1964
1963
1964
1972
1965
1971
1966
1970
1967
1969
1968
10187
1969
1977
10189
1970
1976
1971
1975
1972
1974
1973
1974
1982
1975
1981
1976
1980
1977
1979
1978
10190
1979
1987
10190
1980
1986
1981
1985
1982
1984
1983
1984
1992
1985
1991
1986
1990
1987
1989
1988
10192
1989
1997
10193
1990
1996
1991
1995
1992
1994
1993
1994
2002
1995
2001
1996
2000
1997
1999
1998
10193
1999
2007
10195
2000
2006
2001
2005
2002
2004
2003
2004
2012
2005
2011
2006
2010
2007
2009
2008
10196
2009
2017
10196
2010
2016
2011
2015
2012
2014
2013
2014
2022
2015
2021
2016
2020
2017
2019
2018
10198
2019
2027
10199
2020
2026
2021
2025
2022
2024
2023
2024
2032
2025
2031
2026
2030
2027
2029
2028
10199
2029
2037
10201
2030
2036
2031
2035
2032
2034
2033
2034
2042
2035
2041
2036
2040
2037
2039
2038
10202
2039
2047
10202
2040
2046
2041
2045
2042
2044
2043
2044
2052
2045
2051
2046
2050
2047
2049
2048
10205
2049
2057
10206
2050
2056
2051
2055
2052
2054
2053
2054
2062
2055
2061
2056
2060
2057
2059
2058
10206
2059
2067
10207
2060
2066
2061
2065
2062
2064
2063
2064
2072
2065
2071
2066
2070
2067
2069
2068
10207
2069
2077
10209
2070
2076
2071
2075
2072
2074
2073
2074
2082
2075
2081
2076
2080
2077
2079
2078
10210
2079
2087
10211
2080
2086
2081
2085
2082
2084
2083
2084
2092
2085
2091
2086
2090
2087
2089
2088
10211
2089
2097
10213
2090
2096
2091
2095
2092
2094
2093
2094
2102
2095
2101
2096
2100
2097
2099
2098
10213
2099
2107
10215
2100
2106
2101
2105
2102
2104
2103
2104
2112
2105
2111
2106
2110
2107
2109
2108
10216
2109
2117
10216
2110
2116
2111
2115
2112
2114
2113
2114
2122
2115
2121
2116
2120
2117
2119
2118
10218
2119
2127
10219
2120
2126
2121
2125
2122
2124
2123
2124
2132
2125
2131
2126
2130
2127
2129
2128
10219
2129
2137
10221
2130
2136
2131
2135
2132
2134
2133
2134
2142
2135
2141
2136
2140
2137
2139
2138
10222
2139
2147
10222
2140
2146
2141
2145
2142
2144
2143
2144
2152
2145
2151
2146
2150
2147
2149
2148
10224
2149
2157
10225
2150
2156
2151
2155
2152
2154
2153
2154
2162
2155
2161
2156
2160
2157
2159
2158
10225
2159
2167
10227
2160
2166
2161
2165
2162
2164
2163
2164
2172
2165
2171
2166
2170
2167
2169
2168
10228
2169
2177
10228
2170
2176
2171
2175
2172
2174
2173
2174
2182
2175
2181
2176
2180
2177
2179
2178
10230
2179
2187
10231
2180
2186
2181
2185
2182
2184
2183
2184
2192
2185
2191
2186
2190
2187
2189
2188
10231
2189
2197
10233
2190
2196
2191
2195
2192
2194
2193
2194
2202
2195
2201
2196
2200
2197
2199
2198
10234
2199
2207
10234
2200
2206
2201
2205
2202
2204
2203
2204
2212
2205
2211
2206
2210
2207
2209
2208
10236
2209
2217
10236
2210
2216
2211
2215
2212
2214
2213
2214
2222
2215
2221
2216
2220
2217
2219
2218
10238
2219
2227
10239
2220
2226
2221
2225
2222
2224
2223
2224
2232
2225
2231
2226
2230
2227
2229
2228
10239
2229
2237
10241
2230
2236
2231
2235
2232
2234
2233
2234
2242
2235
2241
2236
2240
2237
2239
2238
10242
2239
2247
10242
2240
2246
2241
2245
2242
2244
2243
2244
2252
2245
2251
2246
2250
2247
2249
2248
10244
2249
2257
10244
2250
2256
2251
2255
2252
2254
2253
2254
2262
2255
2261
2256
2260
2257
2259
2258
10246
2259
2267
10247
2260
2266
2261
2265
2262
2264
2263
2264
2272
2265
2271
2266
2270
2267
2269
2268
10247
2269
2277
10249
2270
2276
2271
2275
2272
2274
2273
2274
2282
2275
2281
2276
2280
2277
2279
2278
10250
2279
2287
10250
2280
2286
2281
2285
2282
2284
2283
2284
2292
2285
2291
2286
2290
2287
2289
2288
10252
2289
2297
10252
2290
2296
2291
2295
2292
2294
2293
2294
2302
2295
2301
2296
2300
2297
2299
2298
10254
2299
2307
10255
2300
2306
2301
2305
2302
2304
2303
2304
2312
2305
2311
2306
2310
2307
2309
2308
10255
2309
2317
10257
2310
2316
2311
2315
2312
2314
2313
2314
2322
2315
2321
2316
2320
2317
2319
2318
10258
2319
2327
10258
2320
2326
2321
2325
2322
2324
2323
2324
2332
2325
2331
2326
2330
2327
2329
2328
10260
2329
2337
10260
2330
2336
2331
2335
2332
2334
2333
2334
2342
2335
2341
2336
2340
2337
2339
2338
10262
2339
2347
10263
2340
2346
2341
2345
2342
2344
2343
2344
2352
2345
2351
2346
2350
2347
2349
2348
10263
2349
2357
10265
2350
2356
2351
2355
2352
2354
2353
2354
2362
2355
2361
2356
2360
2357
2359
2358
10265
2359
2367
10267
2360
2366
2361
2365
2362
2364
2363
2364
2372
2365
2371
2366
2370
2367
2369
2368
10268
2369
2377
10268
2370
2376
2371
2375
2372
2374
2373
2374
2382
2375
2381
2376
2380
2377
2379
2378
10270
2379
2387
10270
2380
2386
2381
2385
2382
2384
2383
2384
2392
2385
2391
2386
2390
2387
2389
2388
10272
2389
2397
10273
2390
2396
2391
2395
2392
2394
2393
2394
2402
2395
2401
2396
2400
2397
2399
2398
10273
2399
2407
10275
2400
2406
2401
2405
2402
2404
2403
2404
2412
2405
2411
2406
2410
2407
2409
2408
10275
2409
2417
10277
2410
2416
2411
2415
2412
2414
2413
2414
2422
2415
2421
2416
2420
2417
2419
2418
10278
2419
2427
10278
2420
2426
2421
2425
2422
2424
2423
2424
2432
2425
2431
2426
2430
2427
2429
2428
10280
2429
2437
10280
2430
2436
2431
2435
2432
2434
2433
2434
2442
2435
2441
2436
2440
2437
2439
2438
10282
2439
2447
10283
2440
2446
2441
2445
2442
2444
2443
2444
2452
2445
2451
2446
2450
2447
2449
2448
10283
2449
2457
10285
2450
2456
2451
2455
2452
2454
2453
2454
2462
2455
2461
2456
2460
2457
2459
2458
10285
2459
2467
10287
2460
2466
2461
2465
2462
2464
2463
2464
2472
2465
2471
2466
2470
2467
2469
2468
10288
2469
2477
10288
2470
2476
2471
2475
2472
2474
2473
2474
2482
2475
2481
2476
2480
2477
2479
2478
10290
2479
2487
10290
2480
2486
2481
2485
2482
2484
2483
2484
2492
2485
2491
2486
2490
2487
2489
2488
10292
2489
2497
10292
2490
2496
2491
2495
2492
2494
2493
2494
2502
2495
2501
2496
2500
2497
2499
2498
10294
2499
2507
10295
2500
2506
2501
2505
2502
2504
2503
2504
2512
2505
2511
2506
2510
2507
2509
2508
10295
2509
2517
10297
2510
2516
2511
2515
2512
2514
2513
2514
2522
2515
2521
2516
2520
2517
2519
2518
10297
2519
2527
10299
2520
2526
2521
2525
2522
2524
2523
2524
2532
2525
2531
2526
2530
2527
2529
2528
10300
2529
2537
10300
2530
2536
2531
2535
2532
2534
2533
2534
2542
2535
2541
2536
2540
2537
2539
2538
10302
2539
2547
10302
2540
2546
2541
2545
2542
2544
2543
2544
2552
2545
2551
2546
2550
2547
2549
2548
10304
2549
2557
10304
2550
2556
2551
2555
2552
2554
2553
2554
2562
2555
2561
2556
2560
2557
2559
2558
10306
2559
2567
10307
2560
2566
2561
2565
2562
2564
2563
2564
2572
2565
2571
2566
2570
2567
2569
2568
10307
2569
2577
10309
2570
2576
2571
2575
2572
2574
2573
2574
2582
2575
2581
2576
2580
2577
2579
2578
10309
2579
2587
10311
2580
2586
2581
2585
2582
2584
2583
2584
2592
2585
2591
2586
2590
2587
2589
2588
10311
2589
2597
10313
2590
2596
2591
2595
2592
2594
2593
2594
2602
2595
2601
2596
2600
2597
2599
2598
10314
2599
2607
10314
2600
2606
2601
2605
2602
2604
2603
2604
2612
2605
2611
2606
2610
2607
2609
2608
10316
2609
2617
10316
2610
2616
2611
2615
2612
2614
2613
2614
2622
2615
2621
2616
2620
2617
2619
2618
10318
2619
2627
10318
2620
2626
2621
2625
2622
2624
2623
2624
2632
2625
2631
2626
2630
2627
2629
2628
10320
2629
2637
10321
2630
2636
2631
2635
2632
2634
2633
2634
2642
2635
2641
2636
2640
2637
2639
2638
10321
2639
2647
10323
2640
2646
2641
2645
2642
2644
2643
2644
2652
2645
2651
2646
2650
2647
2649
2648
10323
2649
2657
10325
2650
2656
2651
2655
2652
2654
2653
2654
2662
2655
2661
2656
2660
2657
2659
2658
10325
2659
2667
10327
2660
2666
2661
2665
2662
2664
2663
2664
2672
2665
2671
2666
2670
2667
2669
2668
10328
2669
2677
10328
2670
2676
2671
2675
2672
2674
2673
2674
2682
2675
2681
2676
2680
2677
2679
2678
10330
2679
2687
10330
2680
2686
2681
2685
2682
2684
2683
2684
2692
2685
2691
2686
2690
2687
2689
2688
10332
2689
2697
10332
2690
2696
2691
2695
2692
2694
2693
2694
2702
2695
2701
2696
2700
2697
2699
2698
10334
2699
2707
10334
2700
2706
2701
2705
2702
2704
2703
2704
2712
2705
2711
2706
2710
2707
2709
2708
10336
2709
2717
10337
2710
2716
2711
2715
2712
2714
2713
2714
2722
2715
2721
2716
2720
2717
2719
2718
10337
2719
2727
10339
2720
2726
2721
2725
2722
2724
2723
2724
2732
2725
2731
2726
2730
2727
2729
2728
10339
2729
2737
10341
2730
2736
2731
2735
2732
2734
2733
2734
2742
2735
2741
2736
2740
2737
2739
2738
10341
2739
2747
10343
2740
2746
2741
2745
2742
2744
2743
2744
2752
2745
2751
2746
2750
2747
2749
2748
10343
2749
2757
10345
2750
2756
2751
2755
2752
2754
2753
2754
2762
2755
2761
2756
2760
2757
2759
2758
10346
2759
2767
10346
2760
2766
2761
2765
2762
2764
2763
2764
2772
2765
2771
2766
2770
2767
2769
2768
10348
2769
2777
10348
2770
2776
2771
2775
2772
2774
2773
2774
2782
2775
2781
2776
2780
2777
2779
2778
10350
2779
2787
10350
2780
2786
2781
2785
2782
2784
2783
2784
2792
2785
2791
2786
2790
2787
2789
2788
10352
2789
2797
10352
2790
2796
2791
2795
2792
2794
2793
2794
2802
2795
2801
2796
2800
2797
2799
2798
10354
2799
2807
10355
2800
2806
2801
2805
2802
2804
2803
2804
2812
2805
2811
2806
2810
2807
2809
2808
10355
2809
2817
10357
2810
2816
2811
2815
2812
2814
2813
2814
2822
2815
2821
2816
2820
2817
2819
2818
10357
2819
2827
10359
2820
2826
2821
2825
2822
2824
2823
2824
2832
2825
2831
2826
2830
2827
2829
2828
10359
2829
2837
10361
2830
2836
2831
2835
2832
2834
2833
2834
2842
2835
2841
2836
2840
2837
2839
2838
10361
2839
2847
10363
2840
2846
2841
2845
2842
2844
2843
2844
2852
2845
2851
2846
2850
2847
2849
2848
10364
2849
2857
10364
2850
2856
2851
2855
2852
2854
2853
2854
2862
2855
2861
2856
2860
2857
2859
2858
10366
2859
2867
10366
2860
2866
2861
2865
2862
2864
2863
2864
2872
2865
2871
2866
2870
2867
2869
2868
10368
2869
2877
10368
2870
2876
2871
2875
2872
2874
2873
2874
2882
2875
2881
2876
2880
2877
2879
2878
10370
2879
2887
10370
2880
2886
2881
2885
2882
2884
2883
2884
2892
2885
2891
2886
2890
2887
2889
2888
10372
2889
2897
10372
2890
2896
2891
2895
2892
2894
2893
2894
2902
2895
2901
2896
2900
2897
2899
2898
10374
2899
2907
10375
2900
2906
2901
2905
2902
2904
2903
2904
2912
2905
2911
2906
2910
2907
2909
2908
10375
2909
2917
10377
2910
2916
2911
2915
2912
2914
2913
2914
2922
2915
2921
2916
2920
2917
2919
2918
10377
2919
2927
10379
2920
2926
2921
2925
2922
2924
2923
2924
2932
2925
2931
2926
2930
2927
2929
2928
10379
2929
2937
10381
2930
2936
2931
2935
2932
2934
2933
2934
2942
2935
2941
2936
2940
2937
2939
2938
10381
2939
2947
10383
2940
2946
2941
2945
2942
2944
2943
2944
2952
2945
2951
2946
2950
2947
2949
2948
10384
2949
2957
10384
2950
2956
2951
2955
2952
2954
2953
2954
2962
2955
2961
2956
2960
2957
2959
2958
10386
2959
2967
10386
2960
2966
2961
2965
2962
2964
2963
2964
2972
2965
2971
2966
2970
2967
2969
2968
10388
2969
2977
10388
2970
2976
2971
2975
2972
2974
2973
2974
2982
2975
2981
2976
2980
2977
2979
2978
10390
2979
2987
10390
2980
2986
2981
2985
2982
2984
2983
2984
2992
2985
2991
2986
2990
2987
2989
2988
10392
2989
2997
10392
2990
2996
2991
2995
2992
2994
2993
2994
3002
2995
3001
2996
3000
2997
2999
2998
10394
2999
3007
10395
3000
3006
3001
3005
3002
3004
3003
3004
3012
3005
3011
3006
3010
3007
3009
3008
10395
3009
3017
10397
3010
3016
3011
3015
3012
3014
3013
3014
3022
3015
3021
3016
3020
3017
3019
3018
10397
3019
3027
10399
3020
3026
3021
3025
3022
3024
3023
3024
3032
3025
3031
3026
3030
3027
3029
3028
10399
3029
3037
10401
3030
3036
3031
3035
3032
3034
3033
3034
3042
3035
3041
3036
3040
3037
3039
3038
10401
3039
3047
10403
3040
3046
3041
3045
3042
3044
3043
3044
3052
3045
3051
3046
3050
3047
3049
3048
10403
3049
3057
10405
3050
3056
3051
3055
3052
3054
3053
3054
3062
3055
3061
3056
3060
3057
3059
3058
10405
3059
3067
10407
3060
3066
3061
3065
3062
3064
3063
3064
3072
3065
3071
3066
3070
3067
3069
3068
10408
3069
3077
10408
3070
3076
3071
3075
3072
3074
3073
3074
3082
3075
3081
3076
3080
3077
3079
3078
10410
3079
3087
10410
3080
3086
3081
3085
3082
3084
3083
3084
3092
3085
3091
3086
3090
3087
3089
3088
10412
3089
3097
10412
3090
3096
3091
3095
3092
3094
3093
3094
3102
3095
3101
3096
3100
3097
3099
3098
10414
3099
3107
10414
3100
3106
3101
3105
3102
3104
3103
3104
3112
3105
3111
3106
3110
3107
3109
3108
10416
3109
3117
10416
3110
3116
3111
3115
3112
3114
3113
3114
3122
3115
3121
3116
3120
3117
3119
3118
10418
3119
3127
10419
3120
3126
3121
3125
3122
3124
3123
3124
3132
3125
3131
3126
3130
3127
3129
3128
10419
3129
3137
10421
3130
3136
3131
3135
3132
3134
3133
3134
3142
3135
3141
3136
3140
3137
3139
3138
10421
3139
3147
10423
3140
3146
3141
3145
3142
3144
3143
3144
3152
3145
3151
3146
3150
3147
3149
3148
10423
3149
3157
10425
3150
3156
3151
3155
3152
3154
3153
3154
3162
3155
3161
3156
3160
3157
3159
3158
10425
3159
3167
10427
3160
3166
3161
3165
3162
3164
3163
3164
3172
3165
3171
3166
3170
3167
3169
3168
10427
3169
3177
10429
3170
3176
3171
3175
3172
3174
3173
3174
3182
3175
3181
3176
3180
3177
3179
3178
10430
3179
3187
10430
3180
3186
3181
3185
3182
3184
3183
3184
3192
3185
3191
3186
3190
3187
3189
3188
10432
3189
3197
10432
3190
3196
3191
3195
3192
3194
3193
3194
3202
3195
3201
3196
3200
3197
3199
3198
10434
3199
3207
10434
3200
3206
3201
3205
3202
3204
3203
3204
3212
3205
3211
3206
3210
3207
3209
3208
10436
3209
3217
10436
3210
3216
3211
3215
3212
3214
3213
3214
3222
3215
3221
3216
3220
3217
3219
3218
10438
3219
3227
10438
3220
3226
3221
3225
3222
3224
3223
3224
3232
3225
3231
3226
3230
3227
3229
3228
10440
3229
3237
10441
3230
3236
3231
3235
3232
3234
3233
3234
3242
3235
3241
3236
3240
3237
3239
3238
10441
3239
3247
10443
3240
3246
3241
3245
3242
3244
3243
3244
3252
3245
3251
3246
3250
3247
3249
3248
10443
3249
3257
10445
3250
3256
3251
3255
3252
3254
3253
3254
3262
3255
3261
3256
3260
3257
3259
3258
10445
3259
3267
10447
3260
3266
3261
3265
3262
3264
3263
3264
3272
3265
3271
3266
3270
3267
3269
3268
10447
3269
3277
10449
3270
3276
3271
3275
3272
3274
3273
3274
3282
3275
3281
3276
3280
3277
3279
3278
10449
3279
3287
10451
3280
3286
3281
3285
3282
3284
3283
3284
3292
3285
3291
3286
3290
3287
3289
3288
10452
3289
3297
10452
3290
3296
3291
3295
3292
3294
3293
3294
3302
3295
3301
3296
3300
3297
3299
3298
10454
3299
3307
10454
3300
3306
3301
3305
3302
3304
3303
3304
3312
3305
3311
3306
3310
3307
3309
3308
10456
3309
3317
10456
3310
3316
3311
3315
3312
3314
3313
3314
3322
3315
3321
3316
3320
3317
3319
3318
10458
3319
3327
10458
3320
3326
3321
3325
3322
3324
3323
3324
3332
3325
3331
3326
3330
3327
3329
3328
10460
3329
3337
10460
3330
3336
3331
3335
3332
3334
3333
3334
3342
3335
3341
3336
3340
3337
3339
3338
10462
3339
3347
10463
3340
3346
3341
3345
3342
3344
3343
3344
3352
3345
3351
3346
3350
3347
3349
3348
10463
3349
3357
10465
3350
3356
3351
3355
3352
3354
3353
3354
3362
3355
3361
3356
3360
3357
3359
3358
10465
3359
3367
10467
3360
3366
3361
3365
3362
3364
3363
3364
3372
3365
3371
3366
3370
3367
3369
3368
10467
3369
3377
10469
3370
3376
3371
3375
3372
3374
3373
3374
3382
3375
3381
3376
3380
3377
3379
3378
10469
3379
3387
10471
3380
3386
3381
3385
3382
3384
3383
3384
3392
3385
3391
3386
3390
3387
3389
3388
10471
3389
3397
10473
3390
3396
3391
3395
3392
3394
3393
3394
3402
3395
3401
3396
3400
3397
3399
3398
10474
3399
3407
10474
3400
3406
3401
3405
3402
3404
3403
3404
3412
3405
3411
3406
3410
3407
3409
3408
10476
3409
3417
10476
3410
3416
3411
3415
3412
3414
3413
3414
3422
3415
3421
3416
3420
3417
3419
3418
10478
3419
3427
10478
3420
3426
3421
3425
3422
3424
3423
3424
3432
3425
3431
3426
3430
3427
3429
3428
10480
3429
3437
10480
3430
3436
3431
3435
3432
3434
3433
3434
3442
3435
3441
3436
3440
3437
3439
3438
10482
3439
3447
10482
3440
3446
3441
3445
3442
3444
3443
3444
3452
3445
3451
3446
3450
3447
3449
3448
10484
3449
3457
10485
3450
3456
3451
3455
3452
3454
3453
3454
3462
3455
3461
3456
3460
3457
3459
3458
10485
3459
3467
10487
3460
3466
3461
3465
3462
3464
3463
3464
3472
3465
3471
3466
3470
3467
3469
3468
10487
3469
3477
10489
3470
3476
3471
3475
3472
3474
3473
3474
3482
3475
3481
3476
3480
3477
3479
3478
10489
3479
3487
10491
3480
3486
3481
3485
3482
3484
3483
3484
3492
3485
3491
3486
3490
3487
3489
3488
10491
3489
3497
10493
3490
3496
3491
3495
3492
3494
3493
3494
3502
3495
3501
3496
3500
3497
3499
3498
10494
3499
3507
10494
3500
3506
3501
3505
3502
3504
3503
3504
3512
3505
3511
3506
3510
3507
3509
3508
10496
3509
3517
10496
3510
3516
3511
3515
3512
3514
3513
3514
3522
3515
3521
3516
3520
3517
3519
3518
10498
3519
3527
10498
3520
3526
3521
3525
3522
3524
3523
3524
3532
3525
3531
3526
3530
3527
3529
3528
10500
3529
3537
10500
3530
3536
3531
3535
3532
3534
3533
3534
3542
3535
3541
3536
3540
3537
3539
3538
10502
3539
3547
10503
3540
3546
3541
3545
3542
3544
3543
3544
3552
3545
3551
3546
3550
3547
3549
3548
10503
3549
3557
10505
3550
3556
3551
3555
3552
3554
3553
3554
3562
3555
3561
3556
3560
3557
3559
3558
10505
3559
3567
10507
3560
3566
3561
3565
3562
3564
3563
3564
3572
3565
3571
3566
3570
3567
3569
3568
10507
3569
3577
10509
3570
3576
3571
3575
3572
3574
3573
3574
3582
3575
3581
3576
3580
3577
3579
3578
10509
3579
3587
10511
3580
3586
3581
3585
3582
3584
3583
3584
3592
3585
3591
3586
3590
3587
3589
3588
10512
3589
3597
10512
3590
3596
3591
3595
3592
3594
3593
3594
3602
3595
3601
3596
3600
3597
3599
3598
10514
3599
3607
10514
3600
3606
3601
3605
3602
3604
3603
3604
3612
3605
3611
3606
3610
3607
3609
3608
10516
3609
3617
10516
3610
3616
3611
3615
3612
3614
3613
3614
3622
3615
3621
3616
3620
3617
3619
3618
10518
3619
3627
10518
3620
3626
3621
3625
3622
3624
3623
3624
3632
3625
3631
3626
3630
3627
3629
3628
10520
3629
3637
10521
3630
3636
3631
3635
3632
3634
3633
3634
3642
3635
3641
3636
3640
3637
3639
3638
10521
3639
3647
10523
3640
3646
3641
3645
3642
3644
3643
3644
3652
3645
3651
3646
3650
3647
3649
3648
10523
3649
3657
10525
3650
3656
3651
3655
3652
3654
3653
3654
3662
3655
3661
3656
3660
3657
3659
3658
10525
3659
3667
10527
3660
3666
3661
3665
3662
3664
3663
3664
3672
3665
3671
3666
3670
3667
3669
3668
10527
3669
3677
10529
3670
3676
3671
3675
3672
3674
3673
3674
3682
3675
3681
3676
3680
3677
3679
3678
10530
3679
3687
10530
3680
3686
3681
3685
3682
3684
3683
3684
3692
3685
3691
3686
3690
3687
3689
3688
10532
3689
3697
10532
3690
3696
3691
3695
3692
3694
3693
3694
3702
3695
3701
3696
3700
3697
3699
3698
10534
3699
3707
10534
3700
3706
3701
3705
3702
3704
3703
3704
3712
3705
3711
3706
3710
3707
3709
3708
10536
3709
3717
10537
3710
3716
3711
3715
3712
3714
3713
3714
3722
3715
3721
3716
3720
3717
3719
3718
10537
3719
3727
10539
3720
3726
3721
3725
3722
3724
3723
3724
3732
3725
3731
3726
3730
3727
3729
3728
10539
3729
3737
10541
3730
3736
3731
3735
3732
3734
3733
3734
3742
3735
3741
3736
3740
3737
3739
3738
10541
3739
3747
10543
3740
3746
3741
3745
3742
3744
3743
3744
3752
3745
3751
3746
3750
3747
3749
3748
10544
3749
3757
10544
3750
3756
3751
3755
3752
3754
3753
3754
3762
3755
3761
3756
3760
3757
3759
3758
10546
3759
3767
10546
3760
3766
3761
3765
3762
3764
3763
3764
3772
3765
3771
3766
3770
3767
3769
3768
10548
3769
3777
10548
3770
3776
3771
3775
3772
3774
3773
3774
3782
3775
3781
3776
3780
3777
3779
3778
10550
3779
3787
10551
3780
3786
3781
3785
3782
3784
3783
3784
3792
3785
3791
3786
3790
3787
3789
3788
10551
3789
3797
10553
3790
3796
3791
3795
3792
3794
3793
3794
3802
3795
3801
3796
3800
3797
3799
3798
10553
3799
3807
10555
3800
3806
3801
3805
3802
3804
3803
3804
3812
3805
3811
3806
3810
3807
3809
3808
10555
3809
3817
10557
3810
3816
3811
3815
3812
3814
3813
3814
3822
3815
3821
3816
3820
3817
3819
3818
10558
3819
3827
10558
3820
3826
3821
3825
3822
3824
3823
3824
3832
3825
3831
3826
3830
3827
3829
3828
10560
3829
3837
10560
3830
3836
3831
3835
3832
3834
3833
3834
3842
3835
3841
3836
3840
3837
3839
3838
10562
3839
3847
10563
3840
3846
3841
3845
3842
3844
3843
3844
3852
3845
3851
3846
3850
3847
3849
3848
10563
3849
3857
10565
3850
3856
3851
3855
3852
3854
3853
3854
3862
3855
3861
3856
3860
3857
3859
3858
10565
3859
3867
10567
3860
3866
3861
3865
3862
3864
3863
3864
3872
3865
3871
3866
3870
3867
3869
3868
10567
3869
3877
10569
3870
3876
3871
3875
3872
3874
3873
3874
3882
3875
3881
3876
3880
3877
3879
3878
10570
3879
3887
10570
3880
3886
3881
3885
3882
3884
3883
3884
3892
3885
3891
3886
3890
3887
3889
3888
10572
3889
3897
10572
3890
3896
3891
3895
3892
3894
3893
3894
3902
3895
3901
3896
3900
3897
3899
3898
10574
3899
3907
10575
3900
3906
3901
3905
3902
3904
3903
3904
3912
3905
3911
3906
3910
3907
3909
3908
10575
3909
3917
10577
3910
3916
3911
3915
3912
3914
3913
3914
3922
3915
3921
3916
3920
3917
3919
3918
10577
3919
3927
10579
3920
3926
3921
3925
3922
3924
3923
3924
3932
3925
3931
3926
3930
3927
3929
3928
10580
3929
3937
10580
3930
3936
3931
3935
3932
3934
3933
3934
3942
3935
3941
3936
3940
3937
3939
3938
10582
3939
3947
10582
3940
3946
3941
3945
3942
3944
3943
3944
3952
3945
3951
3946
3950
3947
3949
3948
10584
3949
3957
10585
3950
3956
3951
3955
3952
3954
3953
3954
3962
3955
3961
3956
3960
3957
3959
3958
10585
3959
3967
10587
3960
3966
3961
3965
3962
3964
3963
3964
3972
3965
3971
3966
3970
3967
3969
3968
10587
3969
3977
10589
3970
3976
3971
3975
3972
3974
3973
3974
3982
3975
3981
3976
3980
3977
3979
3978
10590
3979
3987
10590
3980
3986
3981
3985
3982
3984
3983
3984
3992
3985
3991
3986
3990
3987
3989
3988
10592
3989
3997
10592
3990
3996
3991
3995
3992
3994
3993
3994
4002
3995
4001
3996
4000
3997
3999
3998
10594
3999
4007
10595
4000
4006
4001
4005
4002
4004
4003
4004
4012
4005
4011
4006
4010
4007
4009
4008
10595
4009
4017
10597
4010
4016
4011
4015
4012
4014
4013
4014
4022
4015
4021
4016
4020
4017
4019
4018
10597
4019
4027
10599
4020
4026
4021
4025
4022
4024
4023
4024
4032
4025
4031
4026
4030
4027
4029
4028
10600
4029
4037
10600
4030
4036
4031
4035
4032
4034
4033
4034
4042
4035
4041
4036
4040
4037
4039
4038
10602
4039
4047
10603
4040
4046
4041
4045
4042
4044
4043
4044
4052
4045
4051
4046
4050
4047
4049
4048
10603
4049
4057
10605
4050
4056
4051
4055
4052
4054
4053
4054
4062
4055
4061
4056
4060
4057
4059
4058
10605
4059
4067
10607
4060
4066
4061
4065
4062
4064
4063
4064
4072
4065
4071
4066
4070
4067
4069
4068
10608
4069
4077
10608
4070
4076
4071
4075
4072
4074
4073
4074
4082
4075
4081
4076
4080
4077
4079
4078
10610
4079
4087
10611
4080
4086
4081
4085
4082
4084
4083
4084
4092
4085
4091
4086
4090
4087
4089
4088
10611
4089
4097
10613
4090
4096
4091
4095
4092
4094
4093
4094
4102
4095
4101
4096
4100
4097
4099
4098
10614
4099
4107
10614
4100
4106
4101
4105
4102
4104
4103
4104
4112
4105
4111
4106
4110
4107
4109
4108
10616
4109
4117
10616
4110
4116
4111
4115
4112
4114
4113
4114
4122
4115
4121
4116
4120
4117
4119
4118
10618
4119
4127
10619
4120
4126
4121
4125
4122
4124
4123
4124
4132
4125
4131
4126
4130
4127
4129
4128
10619
4129
4137
10621
4130
4136
4131
4135
4132
4134
4133
4134
4142
4135
4141
4136
4140
4137
4139
4138
10622
4139
4147
10622
4140
4146
4141
4145
4142
4144
4143
4144
4152
4145
4151
4146
4150
4147
4149
4148
10624
4149
4157
10625
4150
4156
4151
4155
4152
4154
4153
4154
4162
4155
4161
4156
4160
4157
4159
4158
10625
4159
4167
10627
4160
4166
4161
4165
4162
4164
4163
4164
4172
4165
4171
4166
4170
4167
4169
4168
10628
4169
4177
10628
4170
4176
4171
4175
4172
4174
4173
4174
4182
4175
4181
4176
4180
4177
4179
4178
10630
4179
4187
10631
4180
4186
4181
4185
4182
4184
4183
4184
4192
4185
4191
4186
4190
4187
4189
4188
10631
4189
4197
10633
4190
4196
4191
4195
4192
4194
4193
4194
4202
4195
4201
4196
4200
4197
4199
4198
10634
4199
4207
10634
4200
4206
4201
4205
4202
4204
4203
4204
4212
4205
4211
4206
4210
4207
4209
4208
10636
4209
4217
10637
4210
4216
4211
4215
4212
4214
4213
4214
4222
4215
4221
4216
4220
4217
4219
4218
10638
4219
4227
10638
4220
4226
4221
4225
4222
4224
4223
4224
4232
4225
4231
4226
4230
4227
4229
4228
10640
4229
4237
10641
4230
4236
4231
4235
4232
4234
4233
4234
4242
4235
4241
4236
4240
4237
4239
4238
10641
4239
4247
10643
4240
4246
4241
4245
4242
4244
4243
4244
4252
4245
4251
4246
4250
4247
4249
4248
10644
4249
4257
10645
4250
4256
4251
4255
4252
4254
4253
4254
4262
4255
4261
4256
4260
4257
4259
4258
10645
4259
4267
10647
4260
4266
4261
4265
4262
4264
4263
4264
4272
4265
4271
4266
4270
4267
4269
4268
10648
4269
4277
10649
4270
4276
4271
4275
4272
4274
4273
4274
4282
4275
4281
4276
4280
4277
4279
4278
10649
4279
4287
10651
4280
4286
4281
4285
4282
4284
4283
4284
4292
4285
4291
4286
4290
4287
4289
4288
10652
4289
4297
10653
4290
4296
4291
4295
4292
4294
4293
4294
4302
4295
4301
4296
4300
4297
4299
4298
10653
4299
4307
10655
4300
4306
4301
4305
4302
4304
4303
4304
4312
4305
4311
4306
4310
4307
4309
4308
10656
4309
4317
10657
4310
4316
4311
4315
4312
4314
4313
4314
4322
4315
4321
4316
4320
4317
4319
4318
10658
4319
4327
10658
4320
4326
4321
4325
4322
4324
4323
4324
4332
4325
4331
4326
4330
4327
4329
4328
10660
4329
4337
10661
4330
4336
4331
4335
4332
4334
4333
4334
4342
4335
4341
4336
4340
4337
4339
4338
10662
4339
4347
10663
4340
4346
4341
4345
4342
4344
4343
4344
4352
4345
4351
4346
4350
4347
4349
4348
10664
4349
4357
10665
4350
4356
4351
4355
4352
4354
4353
4354
4362
4355
4361
4356
4360
4357
4359
4358
10666
4359
4367
10667
4360
4366
4361
4365
4362
4364
4363
4364
4372
4365
4371
4366
4370
4367
4369
4368
10668
4369
4377
10669
4370
4376
4371
4375
4372
4374
4373
4374
4382
4375
4381
4376
4380
4377
4379
4378
10670
4379
4387
10671
4380
4386
4381
4385
4382
4384
4383
4384
4392
4385
4391
4386
4390
4387
4389
4388
10672
4389
4397
10673
4390
4396
4391
4395
4392
4394
4393
4394
4402
4395
4401
4396
4400
4397
4399
4398
10674
4399
4407
10675
4400
4406
4401
4405
4402
4404
4403
4404
4412
4405
4411
4406
4410
4407
4409
4408
10676
4409
4417
10677
4410
4416
4411
4415
4412
4414
4413
4414
4422
4415
4421
4416
4420
4417
4419
4418
10678
4419
4427
10679
4420
4426
4421
4425
4422
4424
4423
4424
4432
4425
4431
4426
4430
4427
4429
4428
10680
4429
4437
10681
4430
4436
4431
4435
4432
4434
4433
4434
4442
4435
4441
4436
4440
4437
4439
4438
10682
4439
4447
10683
4440
4446
4441
4445
4442
4444
4443
4444
4452
4445
4451
4446
4450
4447
4449
4448
10684
4449
4457
10685
4450
4456
4451
4455
4452
4454
4453
4454
4462
4455
4461
4456
4460
4457
4459
4458
10686
4459
4467
10687
4460
4466
4461
4465
4462
4464
4463
4464
4472
4465
4471
4466
4470
4467
4469
4468
10688
4469
4477
10689
4470
4476
4471
4475
4472
4474
4473
4474
4482
4475
4481
4476
4480
4477
4479
4478
10690
4479
4487
10691
4480
4486
4481
4485
4482
4484
4483
4484
4492
4485
4491
4486
4490
4487
4489
4488
10692
4489
4497
10693
4490
4496
4491
4495
4492
4494
4493
4494
4502
4495
4501
4496
4500
4497
4499
4498
10694
4499
4507
10695
4500
4506
4501
4505
4502
4504
4503
4504
4512
4505
4511
4506
4510
4507
4509
4508
10696
4509
4517
10697
4510
4516
4511
4515
4512
4514
4513
4514
4522
4515
4521
4516
4520
4517
4519
4518
10698
4519
4527
10699
4520
4526
4521
4525
4522
4524
4523
4524
4532
4525
4531
4526
4530
4527
4529
4528
10700
4529
4537
10701
4530
4536
4531
4535
4532
4534
4533
4534
4542
4535
4541
4536
4540
4537
4539
4538
10702
4539
4547
10703
4540
4546
4541
4545
4542
4544
4543
4544
4552
4545
4551
4546
4550
4547
4549
4548
10704
4549
4557
10705
4550
4556
4551
4555
4552
4554
4553
4554
4562
4555
4561
4556
4560
4557
4559
4558
10706
4559
4567
10707
4560
4566
4561
4565
4562
4564
4563
4564
4572
4565
4571
4566
4570
4567
4569
4568
10708
4569
4577
10709
4570
4576
4571
4575
4572
4574
4573
4574
4582
4575
4581
4576
4580
4577
4579
4578
10710
4579
4587
10711
4580
4586
4581
4585
4582
4584
4583
4584
4592
4585
4591
4586
4590
4587
4589
4588
10712
4589
4597
10713
4590
4596
4591
4595
4592
4594
4593
4594
4602
4595
4601
4596
4600
4597
4599
4598
10714
4599
4607
10715
4600
4606
4601
4605
4602
4604
4603
4604
4612
4605
4611
4606
4610
4607
4609
4608
10716
4609
4617
10717
4610
4616
4611
4615
4612
4614
4613
4614
4622
4615
4621
4616
4620
4617
4619
4618
10718
4619
4627
10719
4620
4626
4621
4625
4622
4624
4623
4624
4632
4625
4631
4626
4630
4627
4629
4628
10720
4629
4637
10721
4630
4636
4631
4635
4632
4634
4633
4634
4642
4635
4641
4636
4640
4637
4639
4638
10722
4639
4647
10723
4640
4646
4641
4645
4642
4644
4643
4644
4652
4645
4651
4646
4650
4647
4649
4648
10724
4649
4657
10725
4650
4656
4651
4655
4652
4654
4653
4654
4662
4655
4661
4656
4660
4657
4659
4658
10726
4659
4667
10727
4660
4666
4661
4665
4662
4664
4663
4664
4672
4665
4671
4666
4670
4667
4669
4668
10728
4669
4677
10729
4670
4676
4671
4675
4672
4674
4673
4674
4682
4675
4681
4676
4680
4677
4679
4678
10730
4679
4687
10731
4680
4686
4681
4685
4682
4684
4683
4684
4692
4685
4691
4686
4690
4687
4689
4688
10732
4689
4697
10733
4690
4696
4691
4695
4692
4694
4693
4694
4702
4695
4701
4696
4700
4697
4699
4698
10734
4699
4707
10735
4700
4706
4701
4705
4702
4704
4703
4704
4712
4705
4711
4706
4710
4707
4709
4708
10736
4709
4717
10737
4710
4716
4711
4715
4712
4714
4713
4714
4722
4715
4721
4716
4720
4717
4719
4718
10738
4719
4727
10739
4720
4726
4721
4725
4722
4724
4723
4724
4732
4725
4731
4726
4730
4727
4729
4728
10740
4729
4737
10741
4730
4736
4731
4735
4732
4734
4733
4734
4742
4735
4741
4736
4740
4737
4739
4738
10742
4739
4747
10743
4740
4746
4741
4745
4742
4744
4743
4744
4752
4745
4751
4746
4750
4747
4749
4748
10744
4749
4757
10745
4750
4756
4751
4755
4752
4754
4753
4754
4762
4755
4761
4756
4760
4757
4759
4758
10746
4759
4767
10747
4760
4766
4761
4765
4762
4764
4763
4764
4772
4765
4771
4766
4770
4767
4769
4768
10748
4769
4777
10749
4770
4776
4771
4775
4772
4774
4773
4774
4782
4775
4781
4776
4780
4777
4779
4778
10750
4779
4787
10751
4780
4786
4781
4785
4782
4784
4783
4784
4792
4785
4791
4786
4790
4787
4789
4788
10752
4789
4797
10753
4790
4796
4791
4795
4792
4794
4793
4794
4802
4795
4801
4796
4800
4797
4799
4798
10754
4799
4807
10755
4800
4806
4801
4805
4802
4804
4803
4804
4812
4805
4811
4806
4810
4807
4809
4808
10756
4809
4817
10757
4810
4816
4811
4815
4812
4814
4813
4814
4822
4815
4821
4816
4820
4817
4819
4818
10758
4819
4827
10759
4820
4826
4821
4825
4822
4824
4823
4824
4832
4825
4831
4826
4830
4827
4829
4828
10760
4829
4837
10761
4830
4836
4831
4835
4832
4834
4833
4834
4842
4835
4841
4836
4840
4837
4839
4838
10762
4839
4847
10763
4840
4846
4841
4845
4842
4844
4843
4844
4852
4845
4851
4846
4850
4847
4849
4848
10764
4849
4857
10765
4850
4856
4851
4855
4852
4854
4853
4854
4862
4855
4861
4856
4860
4857
4859
4858
10766
4859
4867
10767
4860
4866
4861
4865
4862
4864
4863
4864
4872
4865
4871
4866
4870
4867
4869
4868
10768
4869
4877
10769
4870
4876
4871
4875
4872
4874
4873
4874
4882
4875
4881
4876
4880
4877
4879
4878
10770
4879
4887
10771
4880
4886
4881
4885
4882
4884
4883
4884
4892
4885
4891
4886
4890
4887
4889
4888
10772
4889
4897
10773
4890
4896
4891
4895
4892
4894
4893
4894
4902
4895
4901
4896
4900
4897
4899
4898
10774
4899
4907
10775
4900
4906
4901
4905
4902
4904
4903
4904
4912
4905
4911
4906
4910
4907
4909
4908
10776
4909
4917
10777
4910
4916
4911
4915
4912
4914
4913
4914
4922
4915
4921
4916
4920
4917
4919
4918
10778
4919
4927
10779
4920
4926
4921
4925
4922
4924
4923
4924
4932
4925
4931
4926
4930
4927
4929
4928
10780
4929
4937
10781
4930
4936
4931
4935
4932
4934
4933
4934
4942
4935
4941
4936
4940
4937
4939
4938
10782
4939
4947
10783
4940
4946
4941
4945
4942
4944
4943
4944
4952
4945
4951
4946
4950
4947
4949
4948
10784
4949
4957
10785
4950
4956
4951
4955
4952
4954
4953
4954
4962
4955
4961
4956
4960
4957
4959
4958
10786
4959
4967
10787
4960
4966
4961
4965
4962
4964
4963
4964
4972
4965
4971
4966
4970
4967
4969
4968
10788
4969
4977
10789
4970
4976
4971
4975
4972
4974
4973
4974
4982
4975
4981
4976
4980
4977
4979
4978
10790
4979
4987
10791
4980
4986
4981
4985
4982
4984
4983
4984
4992
4985
4991
4986
4990
4987
4989
4988
10792
4989
4997
10793
4990
4996
4991
4995
4992
4994
4993
4994
5002
4995
5001
4996
5000
4997
4999
4998
10794
4999
5007
10795
5000
5006
5001
5005
5002
5004
5003
5004
5012
5005
5011
5006
5010
5007
5009
5008
10796
5009
5017
10797
5010
5016
5011
5015
5012
5014
5013
5014
5022
5015
5021
5016
5020
5017
5019
5018
10798
5019
5027
10799
5020
5026
5021
5025
5022
5024
5023
5024
5032
5025
5031
5026
5030
5027
5029
5028
10800
5029
5037
10801
5030
5036
5031
5035
5032
5034
5033
5034
5042
5035
5041
5036
5040
5037
5039
5038
10802
5039
5047
10803
5040
5046
5041
5045
5042
5044
5043
5044
5052
5045
5051
5046
5050
5047
5049
5048
10804
5049
5057
10805
5050
5056
5051
5055
5052
5054
5053
5054
5062
5055
5061
5056
5060
5057
5059
5058
10806
5059
5067
10807
5060
5066
5061
5065
5062
5064
5063
5064
5072
5065
5071
5066
5070
5067
5069
5068
10808
5069
5077
10809
5070
5076
5071
5075
5072
5074
5073
5074
5082
5075
5081
5076
5080
5077
5079
5078
10810
5079
5087
10811
5080
5086
5081
5085
5082
5084
5083
5084
5092
5085
5091
5086
5090
5087
5089
5088
10812
5089
5097
10813
5090
5096
5091
5095
5092
5094
5093
5094
5102
5095
5101
5096
5100
5097
5099
5098
10814
5099
5107
10815
5100
5106
5101
5105
5102
5104
5103
5104
5112
5105
5111
5106
5110
5107
5109
5108
10816
5109
5117
10817
5110
5116
5111
5115
5112
5114
5113
5114
5122
5115
5121
5116
5120
5117
5119
5118
10818
5119
5127
10819
5120
5126
5121
5125
5122
5124
5123
5124
5132
5125
5131
5126
5130
5127
5129
5128
10820
5129
5137
10821
5130
5136
5131
5135
5132
5134
5133
5134
5142
5135
5141
5136
5140
5137
5139
5138
10822
5139
5147
10823
5140
5146
5141
5145
5142
5144
5143
5144
5152
5145
5151
5146
5150
5147
5149
5148
10824
5149
5157
10825
5150
5156
5151
5155
5152
5154
5153
5154
5162
5155
5161
5156
5160
5157
5159
5158
10826
5159
5167
10827
5160
5166
5161
5165
5162
5164
5163
5164
5172
5165
5171
5166
5170
5167
5169
5168
10828
5169
5177
10829
5170
5176
5171
5175
5172
5174
5173
5174
5182
5175
5181
5176
5180
5177
5179
5178
10830
5179
5187
10831
5180
5186
5181
5185
5182
5184
5183
5184
5192
5185
5191
5186
5190
5187
5189
5188
10832
5189
5197
10833
5190
5196
5191
5195
5192
5194
5193
5194
5202
5195
5201
5196
5200
5197
5199
5198
10834
5199
5207
10835
5200
5206
5201
5205
5202
5204
5203
5204
5212
5205
5211
5206
5210
5207
5209
5208
10836
5209
5217
10837
5210
5216
5211
5215
5212
5214
5213
5214
5222
5215
5221
5216
5220
5217
5219
5218
10838
5219
5227
10839
5220
5226
5221
5225
5222
5224
5223
5224
5232
5225
5231
5226
5230
5227
5229
5228
10840
5229
5237
10841
5230
5236
5231
5235
5232
5234
5233
5234
5242
5235
5241
5236
5240
5237
5239
5238
10842
5239
5247
10843
5240
5246
5241
5245
5242
5244
5243
5244
5252
5245
5251
5246
5250
5247
5249
5248
10844
5249
5257
10845
5250
5256
5251
5255
5252
5254
5253
5254
5262
5255
5261
5256
5260
5257
5259
5258
10846
5259
5267
10847
5260
5266
5261
5265
5262
5264
5263
5264
5272
5265
5271
5266
5270
5267
5269
5268
10848
5269
5277
10849
5270
5276
5271
5275
5272
5274
5273
5274
5282
5275
5281
5276
5280
5277
5279
5278
10850
5279
5287
10851
5280
5286
5281
5285
5282
5284
5283
5284
5292
5285
5291
5286
5290
5287
5289
5288
10852
5289
5297
10853
5290
5296
5291
5295
5292
5294
5293
5294
5302
5295
5301
5296
5300
5297
5299
5298
10854
5299
5307
10855
5300
5306
5301
5305
5302
5304
5303
5304
5312
5305
5311
5306
5310
5307
5309
5308
10856
5309
5317
10857
5310
5316
5311
5315
5312
5314
5313
5314
5322
5315
5321
5316
5320
5317
5319
5318
10858
5319
5327
10859
5320
5326
5321
5325
5322
5324
5323
5324
5332
5325
5331
5326
5330
5327
5329
5328
10860
5329
5337
10861
5330
5336
5331
5335
5332
5334
5333
5334
5342
5335
5341
5336
5340
5337
5339
5338
10862
5339
5347
10863
5340
5346
5341
5345
5342
5344
5343
5344
5352
5345
5351
5346
5350
5347
5349
5348
10864
5349
5357
10865
5350
5356
5351
5355
5352
5354
5353
5354
5362
5355
5361
5356
5360
5357
5359
5358
10866
5359
5367
10867
5360
5366
5361
5365
5362
5364
5363
5364
5372
5365
5371
5366
5370
5367
5369
5368
10868
5369
5377
10869
5370
5376
5371
5375
5372
5374
5373
5374
5382
5375
5381
5376
5380
5377
5379
5378
10870
5379
5387
10871
5380
5386
5381
5385
5382
5384
5383
5384
5392
5385
5391
5386
5390
5387
5389
5388
10872
5389
5397
10873
5390
5396
5391
5395
5392
5394
5393
5394
5402
5395
5401
5396
5400
5397
5399
5398
10874
5399
5407
10875
5400
5406
5401
5405
5402
5404
5403
5404
5412
5405
5411
5406
5410
5407
5409
5408
10876
5409
5417
10877
5410
5416
5411
5415
5412
5414
5413
5414
5422
5415
5421
5416
5420
5417
5419
5418
10878
5419
5427
10879
5420
5426
5421
5425
5422
5424
5423
5424
5432
5425
5431
5426
5430
5427
5429
5428
10880
5429
5437
10881
5430
5436
5431
5435
5432
5434
5433
5434
5442
5435
5441
5436
5440
5437
5439
5438
10882
5439
5447
10883
5440
5446
5441
5445
5442
5444
5443
5444
5452
5445
5451
5446
5450
5447
5449
5448
10884
5449
5457
10885
5450
5456
5451
5455
5452
5454
5453
5454
5462
5455
5461
5456
5460
5457
5459
5458
10886
5459
5467
10887
5460
5466
5461
5465
5462
5464
5463
5464
5472
5465
5471
5466
5470
5467
5469
5468
10888
5469
5477
10889
5470
5476
5471
5475
5472
5474
5473
5474
5482
5475
5481
5476
5480
5477
5479
5478
10890
5479
5487
10891
5480
5486
5481
5485
5482
5484
5483
5484
5492
5485
5491
5486
5490
5487
5489
5488
10892
5489
5497
10893
5490
5496
5491
5495
5492
5494
5493
5494
5502
5495
5501
5496
5500
5497
5499
5498
10894
5499
5507
10895
5500
5506
5501
5505
5502
5504
5503
5504
5512
5505
5511
5506
5510
5507
5509
5508
10896
5509
5517
10897
5510
5516
5511
5515
5512
5514
5513
5514
5522
5515
5521
5516
5520
5517
5519
5518
10898
5519
5527
10899
5520
5526
5521
5525
5522
5524
5523
5524
5532
5525
5531
5526
5530
5527
5529
5528
10900
5529
5537
10901
5530
5536
5531
5535
5532
5534
5533
5534
5542
5535
5541
5536
5540
5537
5539
5538
10902
5539
5547
10903
5540
5546
5541
5545
5542
5544
5543
5544
5552
5545
5551
5546
5550
5547
5549
5548
10904
5549
5557
10905
5550
5556
5551
5555
5552
5554
5553
5554
5562
5555
5561
5556
5560
5557
5559
5558
10906
5559
5567
10907
5560
5566
5561
5565
5562
5564
5563
5564
5572
5565
5571
5566
5570
5567
5569
5568
10908
5569
5577
10909
5570
5576
5571
5575
5572
5574
5573
5574
5582
5575
5581
5576
5580
5577
5579
5578
10910
5579
5587
10911
5580
5586
5581
5585
5582
5584
5583
5584
5592
5585
5591
5586
5590
5587
5589
5588
10912
5589
5597
10913
5590
5596
5591
5595
5592
5594
5593
5594
5602
5595
5601
5596
5600
5597
5599
5598
10914
5599
5607
10915
5600
5606
5601
5605
5602
5604
5603
5604
5612
5605
5611
5606
5610
5607
5609
5608
10916
5609
5617
10917
5610
5616
5611
5615
5612
5614
5613
5614
5622
5615
5621
5616
5620
5617
5619
5618
10918
5619
5627
10919
5620
5626
5621
5625
5622
5624
5623
5624
5632
5625
5631
5626
5630
5627
5629
5628
10920
5629
5637
10921
5630
5636
5631
5635
5632
5634
5633
5634
5642
5635
5641
5636
5640
5637
5639
5638
10922
5639
5647
10923
5640
5646
5641
5645
5642
5644
5643
5644
5652
5645
5651
5646
5650
5647
5649
5648
10924
5649
5657
10925
5650
5656
5651
5655
5652
5654
5653
5654
5662
5655
5661
5656
5660
5657
5659
5658
10926
5659
5667
10927
5660
5666
5661
5665
5662
5664
5663
5664
5672
5665
5671
5666
5670
5667
5669
5668
10928
5669
5677
10929
5670
5676
5671
5675
5672
5674
5673
5674
5682
5675
5681
5676
5680
5677
5679
5678
10930
5679
5687
10931
5680
5686
5681
5685
5682
5684
5683
5684
5692
5685
5691
5686
5690
5687
5689
5688
10932
5689
5697
10933
5690
5696
5691
5695
5692
5694
5693
5694
5702
5695
5701
5696
5700
5697
5699
5698
10934
5699
5707
10935
5700
5706
5701
5705
5702
5704
5703
5704
5712
5705
5711
5706
5710
5707
5709
5708
10936
5709
5717
10937
5710
5716
5711
5715
5712
5714
5713
5714
5722
5715
5721
5716
5720
5717
5719
5718
10938
5719
5727
10939
5720
5726
5721
5725
5722
5724
5723
5724
5732
5725
5731
5726
5730
5727
5729
5728
10940
5729
5737
10941
5730
5736
5731
5735
5732
5734
5733
5734
5742
5735
5741
5736
5740
5737
5739
5738
10942
5739
5747
10943
5740
5746
5741
5745
5742
5744
5743
5744
5752
5745
5751
5746
5750
5747
5749
5748
10944
5749
5757
10945
5750
5756
5751
5755
5752
5754
5753
5754
5762
5755
5761
5756
5760
5757
5759
5758
10946
5759
5767
10947
5760
5766
5761
5765
5762
5764
5763
5764
5772
5765
5771
5766
5770
5767
5769
5768
10948
5769
5777
10949
5770
5776
5771
5775
5772
5774
5773
5774
5782
5775
5781
5776
5780
5777
5779
5778
10950
5779
5787
10951
5780
5786
5781
5785
5782
5784
5783
5784
5792
5785
5791
5786
5790
5787
5789
5788
10952
5789
5797
10953
5790
5796
5791
5795
5792
5794
5793
5794
5802
5795
5801
5796
5800
5797
5799
5798
10954
5799
5807
10955
5800
5806
5801
5805
5802
5804
5803
5804
5812
5805
5811
5806
5810
5807
5809
5808
10956
5809
5817
10957
5810
5816
5811
5815
5812
5814
5813
5814
5822
5815
5821
5816
5820
5817
5819
5818
10958
5819
5827
10959
5820
5826
5821
5825
5822
5824
5823
5824
5832
5825
5831
5826
5830
5827
5829
5828
10960
5829
5837
10961
5830
5836
5831
5835
5832
5834
5833
5834
5842
5835
5841
5836
5840
5837
5839
5838
10962
5839
5847
10963
5840
5846
5841
5845
5842
5844
5843
5844
5852
5845
5851
5846
5850
5847
5849
5848
10964
5849
5857
10965
5850
5856
5851
5855
5852
5854
5853
5854
5862
5855
5861
5856
5860
5857
5859
5858
10966
5859
5867
10967
5860
5866
5861
5865
5862
5864
5863
5864
5872
5865
5871
5866
5870
5867
5869
5868
10968
5869
5877
10969
5870
5876
5871
5875
5872
5874
5873
5874
5882
5875
5881
5876
5880
5877
5879
5878
10970
5879
5887
10971
5880
5886
5881
5885
5882
5884
5883
5884
5892
5885
5891
5886
5890
5887
5889
5888
10972
5889
5897
10973
5890
5896
5891
5895
5892
5894
5893
5894
5902
5895
5901
5896
5900
5897
5899
5898
10974
5899
5907
10975
5900
5906
5901
5905
5902
5904
5903
5904
5912
5905
5911
5906
5910
5907
5909
5908
10976
5909
5917
10977
5910
5916
5911
5915
5912
5914
5913
5914
5922
5915
5921
5916
5920
5917
5919
5918
10978
5919
5927
10979
5920
5926
5921
5925
5922
5924
5923
5924
5932
5925
5931
5926
5930
5927
5929
5928
10980
5929
5937
10981
5930
5936
5931
5935
5932
5934
5933
5934
5942
5935
5941
5936
5940
5937
5939
5938
10982
5939
5947
10983
5940
5946
5941
5945
5942
5944
5943
5944
5952
5945
5951
5946
5950
5947
5949
5948
10984
5949
5957
10985
5950
5956
5951
5955
5952
5954
5953
5954
5962
5955
5961
5956
5960
5957
5959
5958
10986
5959
5967
10987
5960
5966
5961
5965
5962
5964
5963
5964
5972
5965
5971
5966
5970
5967
5969
5968
10988
5969
5977
10989
5970
5976
5971
5975
5972
5974
5973
5974
5982
5975
5981
5976
5980
5977
5979
5978
10990
5979
5987
10991
5980
5986
5981
5985
5982
5984
5983
5984
5992
5985
5991
5986
5990
5987
5989
5988
10992
5989
5997
10993
5990
5996
5991
5995
5992
5994
5993
5994
6002
5995
6001
5996
6000
5997
5999
5998
10994
5999
6007
10995
6000
6006
6001
6005
6002
6004
6003
6004
6012
6005
6011
6006
6010
6007
6009
6008
10996
6009
6017
10997
6010
6016
6011
6015
6012
6014
6013
6014
6022
6015
6021
6016
6020
6017
6019
6018
10998
6019
6027
10999
6020
6026
6021
6025
6022
6024
6023
6024
6032
6025
6031
6026
6030
6027
6029
6028
11000
6029
6037
11001
6030
6036
6031
6035
6032
6034
6033
6034
6042
6035
6041
6036
6040
6037
6039
6038
11002
6039
6047
11003
6040
6046
6041
6045
6042
6044
6043
6044
6052
6045
6051
6046
6050
6047
6049
6048
11004
6049
6057
11005
6050
6056
6051
6055
6052
6054
6053
6054
6062
6055
6061
6056
6060
6057
6059
6058
11006
6059
6067
11007
6060
6066
6061
6065
6062
6064
6063
6064
6072
6065
6071
6066
6070
6067
6069
6068
11008
6069
6077
11009
6070
6076
6071
6075
6072
6074
6073
6074
6082
6075
6081
6076
6080
6077
6079
6078
11010
6079
6087
11011
6080
6086
6081
6085
6082
6084
6083
6084
6092
6085
6091
6086
6090
6087
6089
6088
11012
6089
6097
11013
6090
6096
6091
6095
6092
6094
6093
6094
6102
6095
6101
6096
6100
6097
6099
6098
11014
6099
6107
11015
6100
6106
6101
6105
6102
6104
6103
6104
6112
6105
6111
6106
6110
6107
6109
6108
11016
6109
6117
11017
6110
6116
6111
6115
6112
6114
6113
6114
6122
6115
6121
6116
6120
6117
6119
6118
11018
6119
6127
11019
6120
6126
6121
6125
6122
6124
6123
6124
6132
6125
6131
6126
6130
6127
6129
6128
11020
6129
6137
11021
6130
6136
6131
6135
6132
6134
6133
6134
6142
6135
6141
6136
6140
6137
6139
6138
11022
6139
6147
11023
6140
6146
6141
6145
6142
6144
6143
6144
6152
6145
6151
6146
6150
6147
6149
6148
11024
6149
6157
11025
6150
6156
6151
6155
6152
6154
6153
6154
6162
6155
6161
6156
6160
6157
6159
6158
11026
6159
6167
11027
6160
6166
6161
6165
6162
6164
6163
6164
6172
6165
6171
6166
6170
6167
6169
6168
11028
6169
6177
11029
6170
6176
6171
6175
6172
6174
6173
6174
6182
6175
6181
6176
6180
6177
6179
6178
11030
6179
6187
11031
6180
6186
6181
6185
6182
6184
6183
6184
6192
6185
6191
6186
6190
6187
6189
6188
11032
6189
6197
11033
6190
6196
6191
6195
6192
6194
6193
6194
6202
6195
6201
6196
6200
6197
6199
6198
11034
6199
6207
11035
6200
6206
6201
6205
6202
6204
6203
6204
6212
6205
6211
6206
6210
6207
6209
6208
11036
6209
6217
11037
6210
6216
6211
6215
6212
6214
6213
6214
6222
6215
6221
6216
6220
6217
6219
6218
11038
6219
6227
11039
6220
6226
6221
6225
6222
6224
6223
6224
6232
6225
6231
6226
6230
6227
6229
6228
11040
6229
6237
11041
6230
6236
6231
6235
6232
6234
6233
6234
6242
6235
6241
6236
6240
6237
6239
6238
11042
6239
6247
11043
6240
6246
6241
6245
6242
6244
6243
6244
6252
6245
6251
6246
6250
6247
6249
6248
11044
6249
6257
11045
6250
6256
6251
6255
6252
6254
6253
6254
6262
6255
6261
6256
6260
6257
6259
6258
11046
6259
6267
11047
6260
6266
6261
6265
6262
6264
6263
6264
6272
6265
6271
6266
6270
6267
6269
6268
11048
6269
6277
11049
6270
6276
6271
6275
6272
6274
6273
6274
6282
6275
6281
6276
6280
6277
6279
6278
11050
6279
6287
11051
6280
6286
6281
6285
6282
6284
6283
6284
6292
6285
6291
6286
6290
6287
6289
6288
11052
6289
6297
11053
6290
6296
6291
6295
6292
6294
6293
6294
6302
6295
6301
6296
6300
6297
6299
6298
11054
6299
6307
11055
6300
6306
6301
6305
6302
6304
6303
6304
6312
6305
6311
6306
6310
6307
6309
6308
11056
6309
6317
11057
6310
6316
6311
6315
6312
6314
6313
6314
6322
6315
6321
6316
6320
6317
6319
6318
11058
6319
6327
11059
6320
6326
6321
6325
6322
6324
6323
6324
6332
6325
6331
6326
6330
6327
6329
6328
11060
6329
6337
11061
6330
6336
6331
6335
6332
6334
6333
6334
6342
6335
6341
6336
6340
6337
6339
6338
11062
6339
6347
11063
6340
6346
6341
6345
6342
6344
6343
6344
6352
6345
6351
6346
6350
6347
6349
6348
11064
6349
6357
11065
6350
6356
6351
6355
6352
6354
6353
6354
6362
6355
6361
6356
6360
6357
6359
6358
11066
6359
6367
11067
6360
6366
6361
6365
6362
6364
6363
6364
6372
6365
6371
6366
6370
6367
6369
6368
11068
6369
6377
11069
6370
6376
6371
6375
6372
6374
6373
6374
6382
6375
6381
6376
6380
6377
6379
6378
11070
6379
6387
11071
6380
6386
6381
6385
6382
6384
6383
6384
6392
6385
6391
6386
6390
6387
6389
6388
11072
6389
6397
11073
6390
6396
6391
6395
6392
6394
6393
6394
6402
6395
6401
6396
6400
6397
6399
6398
11074
6399
6407
11075
6400
6406
6401
6405
6402
6404
6403
6404
6405
6406
6407
6408
6409
11075
6410
11076
6411
11079
6412
11080
6413
11083
6414
11084
6415
13708
6416
13707
6417
13710
6418
13711
6419
13711
6420
13712
6421
13713
6422
13720
6423
13721
6424
13726
6425
13727
6426
13732
6427
13733
6428
13810
6429
13811
6430
13816
6431
13817
6432
13822
6433
13823
6434
13828
6435
13829
6436
13898
6437
13899
6438
13904
6439
13905
6440
13910
6441
13911
6442
13916
6443
13917
6444
13986
6445
13987
6446
13992
6447
13993
6448
13998
6449
13999
6450
14004
6451
14005
6452
14074
6453
14075
6454
14080
6455
14081
6456
14086
6457
14087
6458
14092
6459
14093
6460
14162
6461
14163
6462
14168
6463
14169
6464
14174
6465
14175
6466
14180
6467
6468
14180
6469
14179
6470
14178
6471
14181
6472
14220
6473
14219
6474
14218
6475
14221
6476
14228
6477
14227
6478
14226
6479
14229
6480
15996
6481
15995
6482
15994
6483
15997
6484
16004
6485
16003
6486
16002
6487
16005
6488
16044
6489
16043
6490
16042
6491
16045
6492
16052
6493
16051
6494
16050
6495
16053
6496
16220
6497
16219
6498
16218
6499
16221
6500
16228
6501
16227
6502
16226
6503
16229
6504
16268
6505
16267
6506
16266
6507
16269
6508
16276
6509
16275
6510
16274
6511
16277
6512
16956
6513
16955
6514
16954
6515
16957
6516
16964
6517
16963
6518
16962
6519
16965
6520
17004
6521
17003
6522
17002
6523
17005
6524
17012
6525
17011
6526
17010
6527
17013
6528
17180
6529
17179
6530
17178
6531
17181
6532
17188
6533
17187
6534
17186
6535
17189
6536
17228
6537
17227
6538
17226
6539
17229
6540
17236
6541
17235
6542
17234
6543
17237
6544
23689
6545
23688
6546
23687
6547
23690
6548
23697
6549
23696
6550
23695
6551
23698
6552
23737
6553
23736
6554
23735
6555
23738
6556
23745
6557
23744
6558
23743
6559
23746
6560
23913
6561
23912
6562
23911
6563
23914
6564
23921
6565
23920
6566
23919
6567
23922
6568
23961
6569
23960
6570
23959
6571
23962
6572
23969
6573
23968
6574
23967
6575
23970
6576
28821
6577
28820
6578
28819
6579
28822
6580
28829
6581
28828
6582
28827
6583
28830
6584
28869
6585
28868
6586
28867
6587
28870
6588
28877
6589
28876
6590
28875
6591
28878
6592
29045
6593
29044
6594
29043
6595
29046
6596
29053
6597
29052
6598
29051
6599
29054
6600
29093
6601
29092
6602
29091
6603
29094
6604
29101
6605
29100
6606
29099
6607
29102
6608
33152
6609
33151
6610
33150
6611
33153
6612
33160
6613
33159
6614
33158
6615
33161
6616
33200
6617
33199
6618
33198
6619
33201
6620
33208
6621
33207
6622
33206
6623
33209
6624
33520
6625
33519
6626
33518
6627
33521
6628
33532
6629
33533
6630
33534
6631
33575
6632
33574
6633
33573
6634
33572
6635
33571
6636
33576
6637
33577
6638
33580
6639
33581
6640
35616
6641
35615
6642
35614
6643
35617
6644
35624
6645
35623
6646
35622
6647
35625
6648
35664
6649
35663
6650
35665
6651
35666
6652
35677
6653
35678
6654
35679
6655
35784
6656
35783
6657
35782
6658
35781
6659
35780
6660
35785
6661
35786
6662
35841
6663
35840
6664
35842
6665
35843
6666
35846
6667
35847
6668
35858
6669
35859
6670
35860
6671
36541
6672
36540
6673
36539
6674
36538
6675
36542
6676
36549
6677
36548
6678
36547
6679
36550
6680
37233
6681
37232
6682
37231
6683
37234
6684
37245
6685
37244
6686
37246
6687
37247
6688
37350
6689
37349
6690
37348
6691
37351
6692
37352
6693
37805
6694
37804
6695
37806
6696
37807
6697
37812
6698
37811
6699
37813
6700
37836
6701
37835
6702
37834
6703
37833
6704
37837
6705
37838
6706
37861
6707
37860
6708
37862
6709
37863
6710
37866
6711
37867
6712
37922
6713
37921
6714
37920
6715
37923
6716
38590
6717
38589
6718
38588
6719
38591
6720
38592
6721
38597
6722
38596
6723
38598
6724
38605
6725
38604
6726
38603
6727
38606
6728
38645
6729
38644
6730
38643
6731
38646
6732
38653
6733
38652
6734
38651
6735
38654
6736
38717
6737
38716
6738
38715
6739
38718
6740
38733
6741
38732
6742
38734
6743
38735
6744
6745
38735
6746
38729
38931
6747
38728
38930
6748
38725
38929
6749
38726
38928
6750
38727
38927
6751
38684
38926
6752
38677
38925
6753
38678
38924
6754
38679
38923
6755
38680
38922
6756
38681
38921
6757
38682
38920
6758
38683
38919
6759
38485
38918
6760
38478
38917
6761
38479
38916
6762
38480
38915
6763
38481
38914
6764
38482
38913
6765
38483
38912
6766
38484
38911
6767
38421
38910
6768
38414
38909
6769
38415
38908
6770
38416
38907
6771
38417
38906
6772
38418
38905
6773
38419
38904
6774
38420
38903
6775
38357
38902
6776
38350
38901
6777
38351
38900
6778
38352
38899
6779
38353
38898
6780
38354
38897
6781
38355
38896
6782
38356
38895
6783
38293
38894
6784
38286
38893
6785
38287
38892
6786
38288
38891
6787
38289
38890
6788
38290
38889
6789
38291
38888
6790
38292
38887
6791
38229
38886
6792
38222
38885
6793
38223
38884
6794
38224
38883
6795
38225
38882
6796
38226
38881
6797
38227
38880
6798
38228
38879
6799
38165
38878
6800
38158
38877
6801
38159
38876
6802
38160
38875
6803
38161
38874
6804
38162
38873
6805
38163
38872
6806
38164
38871
6807
32467
38870
6808
32460
38869
6809
32461
38868
6810
32462
38867
6811
32463
38866
6812
32464
38865
6813
32465
38864
6814
32466
38863
6815
32403
38862
6816
32396
38861
6817
32397
38860
6818
32398
38859
6819
32399
38858
6820
32400
38857
6821
32401
38856
6822
32402
38855
6823
32339
38854
6824
32332
38853
6825
32333
38852
6826
32334
38851
6827
32335
38850
6828
32336
38849
6829
32337
38848
6830
32338
38847
6831
32275
38846
6832
32268
38845
6833
32269
38844
6834
32270
38843
6835
32271
38842
6836
32272
38841
6837
32273
38840
6838
32274
38839
6839
32211
38838
6840
32204
38837
6841
32205
38836
6842
32206
38835
6843
32207
38834
6844
32208
38833
6845
32209
38832
6846
32210
38831
6847
32147
38830
6848
32140
38829
6849
32141
38828
6850
32142
38827
6851
32143
38826
6852
32144
38825
6853
32145
38824
6854
32146
38823
6855
32083
38822
6856
32076
38821
6857
32077
38820
6858
32078
38819
6859
32079
38818
6860
32080
38817
6861
32081
38816
6862
32082
38815
6863
32019
38814
6864
32013
38813
6865
32014
38812
6866
32015
38811
6867
32016
38810
6868
32017
38809
6869
32018
38808
6870
38807
6871
32018
6872
31983
6873
31982
6874
31979
6875
31978
6876
31975
6877
31974
6878
31971
6879
31970
6880
26767
6881
26766
6882
26763
6883
26762
6884
26759
6885
26758
6886
26755
6887
26754
6888
26719
6889
26718
6890
26715
6891
26714
6892
26711
6893
26710
6894
26707
6895
26706
6896
26543
6897
26542
6898
26539
6899
26538
6900
26535
6901
26534
6902
26531
6903
26530
6904
26495
6905
26494
6906
26491
6907
26490
6908
26487
6909
26486
6910
26483
6911
26482
6912
25807
6913
25806
6914
25803
6915
25802
6916
25799
6917
25798
6918
25795
6919
25794
6920
25759
6921
25758
6922
25755
6923
25754
6924
25751
6925
25750
6926
25747
6927
25746
6928
25583
6929
25582
6930
25579
6931
25578
6932
25575
6933
25574
6934
25571
6935
25570
6936
25535
6937
25534
6938
25531
6939
25530
6940
25527
6941
25526
6942
25523
6943
25522
6944
8588
6945
8587
6946
8584
6947
8583
6948
8580
6949
8579
6950
8576
6951
8575
6952
8540
6953
8539
6954
8536
6955
8535
6956
8532
6957
8531
6958
8528
6959
8527
6960
8364
6961
8363
6962
8360
6963
8359
6964
8356
6965
8355
6966
8352
6967
8351
6968
8316
6969
8315
6970
8312
6971
8311
6972
8308
6973
8307
6974
8304
6975
8303
6976
7290
6977
7289
6978
7286
6979
7285
6980
7282
6981
7281
6982
7278
6983
7277
6984
7242
6985
7241
6986
7238
6987
7237
6988
7234
6989
7233
6990
7230
6991
7229
6992
7066
6993
7065
6994
7062
6995
7061
6996
7058
6997
7057
6998
7054
6999
7053
7000
7018
7001
7017
7002
7014
7003
7013
7004
7010
7005
7009
7006
7007
7009
7008
7026
7009
7011
7025
7010
7011
7013
7012
7024
7013
7015
7023
7014
7015
7017
7016
7022
7017
7019
7021
7018
7019
7053
7020
7052
7021
7041
7051
7022
7040
7023
7039
7024
7038
7025
7029
7026
7028
7027
7028
7032
7029
7031
7030
7038
7031
7035
7037
7032
7034
7033
7034
7110
7035
7109
7036
7108
7037
7045
7107
7038
7044
7039
7040
7044
7041
7043
7042
7050
7043
7047
7049
7044
7046
7045
7046
7106
7047
7105
7048
7104
7049
7081
7103
7050
7080
7051
7075
7052
7074
7053
7055
7054
7055
7057
7056
7074
7057
7059
7073
7058
7059
7061
7060
7072
7061
7063
7071
7062
7063
7065
7064
7070
7065
7067
7069
7066
7067
7229
7068
7228
7069
7089
7227
7070
7088
7071
7087
7072
7086
7073
7077
7074
7076
7075
7076
7080
7077
7079
7078
7086
7079
7083
7085
7080
7082
7081
7082
7102
7083
7101
7084
7100
7085
7093
7099
7086
7092
7087
7088
7092
7089
7091
7090
7226
7091
7095
7225
7092
7094
7093
7094
7098
7095
7097
7096
7224
7097
7181
7223
7098
7180
7099
7179
7100
7178
7101
7169
7102
7168
7103
7167
7104
7166
7105
7125
7106
7124
7107
7123
7108
7122
7109
7113
7110
7112
7111
7112
7116
7113
7115
7114
7122
7115
7119
7121
7116
7118
7117
7118
7138
7119
7137
7120
7136
7121
7129
7135
7122
7128
7123
7124
7128
7125
7127
7126
7166
7127
7131
7165
7128
7130
7129
7130
7134
7131
7133
7132
7164
7133
7153
7163
7134
7152
7135
7151
7136
7150
7137
7141
7138
7140
7139
7140
7144
7141
7143
7142
7150
7143
7147
7149
7144
7146
7145
7146
7470
7147
7469
7148
7468
7149
7157
7467
7150
7156
7151
7152
7156
7153
7155
7154
7162
7155
7159
7161
7156
7158
7157
7158
7466
7159
7465
7160
7464
7161
7201
7463
7162
7200
7163
7195
7164
7194
7165
7173
7166
7172
7167
7168
7172
7169
7171
7170
7178
7171
7175
7177
7172
7174
7173
7174
7194
7175
7193
7176
7192
7177
7185
7191
7178
7184
7179
7180
7184
7181
7183
7182
7222
7183
7187
7221
7184
7186
7185
7186
7190
7187
7189
7188
7220
7189
7209
7219
7190
7208
7191
7207
7192
7206
7193
7197
7194
7196
7195
7196
7200
7197
7199
7198
7206
7199
7203
7205
7200
7202
7201
7202
7462
7203
7461
7204
7460
7205
7213
7459
7206
7212
7207
7208
7212
7209
7211
7210
7218
7211
7215
7217
7212
7214
7213
7214
7458
7215
7457
7216
7456
7217
7369
7455
7218
7368
7219
7363
7220
7362
7221
7341
7222
7340
7223
7335
7224
7334
7225
7257
7226
7256
7227
7251
7228
7250
7229
7231
7230
7231
7233
7232
7250
7233
7235
7249
7234
7235
7237
7236
7248
7237
7239
7247
7238
7239
7241
7240
7246
7241
7243
7245
7242
7243
7277
7244
7276
7245
7265
7275
7246
7264
7247
7263
7248
7262
7249
7253
7250
7252
7251
7252
7256
7253
7255
7254
7262
7255
7259
7261
7256
7258
7257
7258
7334
7259
7333
7260
7332
7261
7269
7331
7262
7268
7263
7264
7268
7265
7267
7266
7274
7267
7271
7273
7268
7270
7269
7270
7330
7271
7329
7272
7328
7273
7305
7327
7274
7304
7275
7299
7276
7298
7277
7279
7278
7279
7281
7280
7298
7281
7283
7297
7282
7283
7285
7284
7296
7285
7287
7295
7286
7287
7289
7288
7294
7289
7291
7293
7290
7291
8303
7292
8302
7293
7313
8301
7294
7312
7295
7311
7296
7310
7297
7301
7298
7300
7299
7300
7304
7301
7303
7302
7310
7303
7307
7309
7304
7306
7305
7306
7326
7307
7325
7308
7324
7309
7317
7323
7310
7316
7311
7312
7316
7313
7315
7314
8300
7315
7319
8299
7316
7318
7317
7318
7322
7319
7321
7320
8298
7321
7405
8297
7322
7404
7323
7403
7324
7402
7325
7393
7326
7392
7327
7391
7328
7390
7329
7349
7330
7348
7331
7347
7332
7346
7333
7337
7334
7336
7335
7336
7340
7337
7339
7338
7346
7339
7343
7345
7340
7342
7341
7342
7362
7343
7361
7344
7360
7345
7353
7359
7346
7352
7347
7348
7352
7349
7351
7350
7390
7351
7355
7389
7352
7354
7353
7354
7358
7355
7357
7356
7388
7357
7377
7387
7358
7376
7359
7375
7360
7374
7361
7365
7362
7364
7363
7364
7368
7365
7367
7366
7374
7367
7371
7373
7368
7370
7369
7370
7454
7371
7453
7372
7452
7373
7381
7451
7374
7380
7375
7376
7380
7377
7379
7378
7386
7379
7383
7385
7380
7382
7381
7382
7450
7383
7449
7384
7448
7385
7425
7447
7386
7424
7387
7419
7388
7418
7389
7397
7390
7396
7391
7392
7396
7393
7395
7394
7402
7395
7399
7401
7396
7398
7397
7398
7418
7399
7417
7400
7416
7401
7409
7415
7402
7408
7403
7404
7408
7405
7407
7406
8296
7407
7411
8295
7408
7410
7409
7410
7414
7411
7413
7412
8294
7413
7433
8293
7414
7432
7415
7431
7416
7430
7417
7421
7418
7420
7419
7420
7424
7421
7423
7422
7430
7423
7427
7429
7424
7426
7425
7426
7446
7427
7445
7428
7444
7429
7437
7443
7430
7436
7431
7432
7436
7433
7435
7434
8292
7435
7439
8291
7436
7438
7437
7438
7442
7439
7441
7440
8290
7441
8056
8289
7442
8055
7443
8054
7444
8053
7445
8044
7446
8043
7447
8042
7448
8041
7449
7864
7450
7863
7451
7862
7452
7861
7453
7852
7454
7851
7455
7850
7456
7849
7457
7672
7458
7671
7459
7670
7460
7669
7461
7660
7462
7659
7463
7658
7464
7657
7465
7485
7466
7484
7467
7483
7468
7482
7469
7473
7470
7472
7471
7472
7476
7473
7475
7474
7482
7475
7479
7481
7476
7478
7477
7478
7498
7479
7497
7480
7496
7481
7489
7495
7482
7488
7483
7484
7488
7485
7487
7486
7657
7487
7491
7656
7488
7490
7489
7490
7494
7491
7493
7492
7655
7493
7585
7586
7654
7494
7581
7582
7495
7577
7578
7496
7573
7574
7497
7530
7531
7498
7526
7527
7499
7500
7522
7523
7500
7501
7502
7522
7503
7504
7508
7509
7521
7504
7505
7506
7508
7507
7513
7508
7510
7512
7509
7510
7520
7511
7519
7512
7516
7518
7513
7515
7514
7515
7516
7517
7518
7549
7519
7548
7520
7543
7521
7542
7522
7524
7542
7523
7524
7526
7525
7540
7541
7526
7528
7538
7539
7527
7528
7530
7529
7536
7537
7530
7532
7534
7535
7531
7532
7573
7533
7570
7572
7534
7568
7570
7535
7567
7536
7566
7537
7557
7538
7556
7539
7555
7540
7554
7541
7545
7542
7544
7543
7544
7548
7545
7547
7546
7554
7547
7551
7553
7548
7550
7549
7550
7551
7552
7553
7561
7554
7560
7555
7556
7560
7557
7559
7558
7566
7559
7563
7565
7560
7562
7561
7562
7563
7564
7565
7608
7566
7607
7567
7568
7607
7569
7606
7570
7603
7605
7571
7572
7601
7603
7573
7575
7601
7574
7575
7577
7576
7599
7600
7577
7579
7597
7598
7578
7579
7581
7580
7595
7596
7581
7583
7593
7594
7582
7583
7585
7584
7591
7592
7585
7587
7589
7590
7586
7587
7653
7588
7650
7652
7589
7648
7650
7590
7647
7591
7646
7592
7637
7593
7636
7594
7635
7595
7634
7596
7625
7597
7624
7598
7623
7599
7622
7600
7616
7601
7615
7602
7603
7613
7615
7604
7605
7611
7613
7606
7610
7607
7609
7608
7609
7610
7611
7612
7613
7619
7614
7615
7617
7619
7616
7617
7622
7618
7621
7619
7620
7621
7629
7622
7628
7623
7624
7628
7625
7627
7626
7634
7627
7631
7633
7628
7630
7629
7630
7631
7632
7633
7641
7634
7640
7635
7636
7640
7637
7639
7638
7646
7639
7643
7645
7640
7642
7641
7642
7643
7644
7645
7710
7646
7709
7647
7648
7709
7649
7708
7650
7705
7707
7651
7652
7703
7705
7653
7688
7703
7654
7687
7655
7685
7687
7656
7664
7657
7663
7658
7659
7663
7660
7662
7661
7669
7662
7666
7668
7663
7665
7664
7665
7685
7666
7684
7667
7683
7668
7676
7682
7669
7675
7670
7671
7675
7672
7674
7673
7849
7674
7678
7848
7675
7677
7676
7677
7681
7678
7680
7679
7847
7680
7776
7777
7846
7681
7772
7773
7682
7768
7769
7683
7764
7765
7684
7753
7754
7685
7692
7693
7686
7691
7687
7689
7691
7688
7689
7701
7702
7690
7699
7700
7691
7695
7697
7698
7692
7693
7695
7694
7753
7695
7739
7740
7752
7696
7738
7697
7736
7738
7698
7727
7699
7726
7700
7725
7701
7724
7702
7718
7703
7717
7704
7705
7715
7717
7706
7707
7713
7715
7708
7712
7709
7711
7710
7711
7712
7713
7714
7715
7721
7716
7717
7719
7721
7718
7719
7724
7720
7723
7721
7722
7723
7731
7724
7730
7725
7726
7730
7727
7729
7728
7736
7729
7733
7735
7730
7732
7731
7732
7733
7734
7735
7745
7736
7744
7737
7738
7742
7744
7739
7740
7742
7741
7751
7742
7748
7750
7743
7744
7746
7748
7745
7746
7747
7748
7800
7749
7750
7798
7800
7751
7758
7752
7757
7753
7755
7757
7754
7755
7764
7756
7761
7763
7757
7759
7761
7758
7759
7798
7760
7797
7761
7794
7796
7762
7763
7792
7794
7764
7766
7792
7765
7766
7768
7767
7790
7791
7768
7770
7788
7789
7769
7770
7772
7771
7786
7787
7772
7774
7784
7785
7773
7774
7776
7775
7782
7783
7776
7778
7780
7781
7777
7778
7845
7779
7842
7844
7780
7840
7842
7781
7839
7782
7838
7783
7829
7784
7828
7785
7827
7786
7826
7787
7817
7788
7816
7789
7815
7790
7814
7791
7808
7792
7807
7793
7794
7805
7807
7795
7796
7803
7805
7797
7802
7798
7801
7799
7800
7801
7802
7803
7804
7805
7811
7806
7807
7809
7811
7808
7809
7814
7810
7813
7811
7812
7813
7821
7814
7820
7815
7816
7820
7817
7819
7818
7826
7819
7823
7825
7820
7822
7821
7822
7823
7824
7825
7833
7826
7832
7827
7828
7832
7829
7831
7830
7838
7831
7835
7837
7832
7834
7833
7834
7835
7836
7837
7902
7838
7901
7839
7840
7901
7841
7900
7842
7897
7899
7843
7844
7895
7897
7845
7880
7895
7846
7879
7847
7877
7879
7848
7856
7849
7855
7850
7851
7855
7852
7854
7853
7861
7854
7858
7860
7855
7857
7856
7857
7877
7858
7876
7859
7875
7860
7868
7874
7861
7867
7862
7863
7867
7864
7866
7865
8041
7866
7870
8040
7867
7869
7868
7869
7873
7870
7872
7871
8039
7872
7968
7969
8038
7873
7964
7965
7874
7960
7961
7875
7956
7957
7876
7945
7946
7877
7884
7885
7878
7883
7879
7881
7883
7880
7881
7893
7894
7882
7891
7892
7883
7887
7889
7890
7884
7885
7887
7886
7945
7887
7931
7932
7944
7888
7930
7889
7928
7930
7890
7919
7891
7918
7892
7917
7893
7916
7894
7910
7895
7909
7896
7897
7907
7909
7898
7899
7905
7907
7900
7904
7901
7903
7902
7903
7904
7905
7906
7907
7913
7908
7909
7911
7913
7910
7911
7916
7912
7915
7913
7914
7915
7923
7916
7922
7917
7918
7922
7919
7921
7920
7928
7921
7925
7927
7922
7924
7923
7924
7925
7926
7927
7937
7928
7936
7929
7930
7934
7936
7931
7932
7934
7933
7943
7934
7940
7942
7935
7936
7938
7940
7937
7938
7939
7940
7992
7941
7942
7990
7992
7943
7950
7944
7949
7945
7947
7949
7946
7947
7956
7948
7953
7955
7949
7951
7953
7950
7951
7990
7952
7989
7953
7986
7988
7954
7955
7984
7986
7956
7958
7984
7957
7958
7960
7959
7982
7983
7960
7962
7980
7981
7961
7962
7964
7963
7978
7979
7964
7966
7976
7977
7965
7966
7968
7967
7974
7975
7968
7970
7972
7973
7969
7970
8037
7971
8034
8036
7972
8032
8034
7973
8031
7974
8030
7975
8021
7976
8020
7977
8019
7978
8018
7979
8009
7980
8008
7981
8007
7982
8006
7983
8000
7984
7999
7985
7986
7997
7999
7987
7988
7995
7997
7989
7994
7990
7993
7991
7992
7993
7994
7995
7996
7997
8003
7998
7999
8001
8003
8000
8001
8006
8002
8005
8003
8004
8005
8013
8006
8012
8007
8008
8012
8009
8011
8010
8018
8011
8015
8017
8012
8014
8013
8014
8015
8016
8017
8025
8018
8024
8019
8020
8024
8021
8023
8022
8030
8023
8027
8029
8024
8026
8025
8026
8027
8028
8029
8094
8030
8093
8031
8032
8093
8033
8092
8034
8089
8091
8035
8036
8087
8089
8037
8072
8087
8038
8071
8039
8069
8071
8040
8048
8041
8047
8042
8043
8047
8044
8046
8045
8053
8046
8050
8052
8047
8049
8048
8049
8069
8050
8068
8051
8067
8052
8060
8066
8053
8059
8054
8055
8059
8056
8058
8057
8288
8058
8062
8287
8059
8061
8060
8061
8065
8062
8064
8063
8286
8064
8160
8161
8284
8285
8065
8156
8157
8066
8152
8153
8067
8148
8149
8068
8137
8138
8069
8076
8077
8070
8075
8071
8073
8075
8072
8073
8085
8086
8074
8083
8084
8075
8079
8081
8082
8076
8077
8079
8078
8137
8079
8123
8124
8136
8080
8122
8081
8120
8122
8082
8111
8083
8110
8084
8109
8085
8108
8086
8102
8087
8101
8088
8089
8099
8101
8090
8091
8097
8099
8092
8096
8093
8095
8094
8095
8096
8097
8098
8099
8105
8100
8101
8103
8105
8102
8103
8108
8104
8107
8105
8106
8107
8115
8108
8114
8109
8110
8114
8111
8113
8112
8120
8113
8117
8119
8114
8116
8115
8116
8117
8118
8119
8129
8120
8128
8121
8122
8126
8128
8123
8124
8126
8125
8135
8126
8132
8134
8127
8128
8130
8132
8129
8130
8131
8132
8184
8133
8134
8182
8184
8135
8142
8136
8141
8137
8139
8141
8138
8139
8148
8140
8145
8147
8141
8143
8145
8142
8143
8182
8144
8181
8145
8178
8180
8146
8147
8176
8178
8148
8150
8176
8149
8150
8152
8151
8174
8175
8152
8154
8172
8173
8153
8154
8156
8155
8170
8171
8156
8158
8168
8169
8157
8158
8160
8159
8166
8167
8160
8162
8164
8165
8161
8162
8283
8163
8234
8281
8282
8164
8232
8234
8165
8231
8166
8230
8167
8221
8168
8220
8169
8219
8170
8218
8171
8205
8172
8204
8173
8203
8174
8202
8175
8192
8176
8191
8177
8178
8189
8191
8179
8180
8187
8189
8181
8186
8182
8185
8183
8184
8185
8186
8187
8188
8189
8195
8197
8190
8191
8193
8195
8192
8193
8202
8194
8201
8195
8198
8200
8196
8197
8198
8199
8200
8214
8201
8209
8202
8208
8203
8204
8208
8205
8207
8206
8218
8207
8211
8217
8208
8210
8209
8210
8214
8211
8213
8212
8216
8213
8215
8214
8216
8251
8217
8225
8218
8224
8219
8220
8224
8221
8223
8222
8230
8223
8227
8229
8224
8226
8225
8226
8251
8227
8250
8228
8249
8229
8242
8245
8247
8248
8230
8241
8231
8232
8241
8233
8237
8239
8240
8234
8235
8237
8235
8280
8236
8279
8237
8276
8278
8238
8239
8274
8276
8240
8273
8241
8272
8242
8243
8272
8243
8245
8244
8271
8245
8268
8270
8246
8247
8266
8268
8248
8265
8249
8264
8250
8259
8260
8264
8251
8254
8255
8252
8253
8253
8254
8255
8257
8256
8259
8257
8258
8259
8261
8260
8261
8263
8262
8263
8920
8264
8919
8265
8266
8919
8267
8918
8268
8915
8917
8269
8270
8913
8915
8271
8908
8272
8907
8273
8274
8907
8275
8906
8276
8903
8905
8277
8278
8901
8903
8279
8828
8280
8827
8281
8822
8823
8827
8282
8811
8283
8810
8284
8808
8810
8285
8802
8286
8801
8287
8775
8801
8288
8774
8289
8769
8290
8768
8291
8443
8292
8442
8293
8437
8294
8436
8295
8415
8296
8414
8297
8409
8298
8408
8299
8331
8300
8330
8301
8325
8302
8324
8303
8305
8304
8305
8307
8306
8324
8307
8309
8323
8308
8309
8311
8310
8322
8311
8313
8321
8312
8313
8315
8314
8320
8315
8317
8319
8316
8317
8351
8318
8350
8319
8339
8349
8320
8338
8321
8337
8322
8336
8323
8327
8324
8326
8325
8326
8330
8327
8329
8328
8336
8329
8333
8335
8330
8332
8331
8332
8408
8333
8407
8334
8406
8335
8343
8405
8336
8342
8337
8338
8342
8339
8341
8340
8348
8341
8345
8347
8342
8344
8343
8344
8404
8345
8403
8346
8402
8347
8379
8401
8348
8378
8349
8373
8350
8372
8351
8353
8352
8353
8355
8354
8372
8355
8357
8371
8356
8357
8359
8358
8370
8359
8361
8369
8360
8361
8363
8362
8368
8363
8365
8367
8364
8365
8527
8366
8526
8367
8387
8525
8368
8386
8369
8385
8370
8384
8371
8375
8372
8374
8373
8374
8378
8375
8377
8376
8384
8377
8381
8383
8378
8380
8379
8380
8400
8381
8399
8382
8398
8383
8391
8397
8384
8390
8385
8386
8390
8387
8389
8388
8524
8389
8393
8523
8390
8392
8391
8392
8396
8393
8395
8394
8522
8395
8479
8521
8396
8478
8397
8477
8398
8476
8399
8467
8400
8466
8401
8465
8402
8464
8403
8423
8404
8422
8405
8421
8406
8420
8407
8411
8408
8410
8409
8410
8414
8411
8413
8412
8420
8413
8417
8419
8414
8416
8415
8416
8436
8417
8435
8418
8434
8419
8427
8433
8420
8426
8421
8422
8426
8423
8425
8424
8464
8425
8429
8463
8426
8428
8427
8428
8432
8429
8431
8430
8462
8431
8451
8461
8432
8450
8433
8449
8434
8448
8435
8439
8436
8438
8437
8438
8442
8439
8441
8440
8448
8441
8445
8447
8442
8444
8443
8444
8768
8445
8767
8446
8766
8447
8455
8765
8448
8454
8449
8450
8454
8451
8453
8452
8460
8453
8457
8459
8454
8456
8455
8456
8764
8457
8763
8458
8762
8459
8499
8761
8460
8498
8461
8493
8462
8492
8463
8471
8464
8470
8465
8466
8470
8467
8469
8468
8476
8469
8473
8475
8470
8472
8471
8472
8492
8473
8491
8474
8490
8475
8483
8489
8476
8482
8477
8478
8482
8479
8481
8480
8520
8481
8485
8519
8482
8484
8483
8484
8488
8485
8487
8486
8518
8487
8507
8517
8488
8506
8489
8505
8490
8504
8491
8495
8492
8494
8493
8494
8498
8495
8497
8496
8504
8497
8501
8503
8498
8500
8499
8500
8760
8501
8759
8502
8758
8503
8511
8757
8504
8510
8505
8506
8510
8507
8509
8508
8516
8509
8513
8515
8510
8512
8511
8512
8756
8513
8755
8514
8754
8515
8667
8753
8516
8666
8517
8661
8518
8660
8519
8639
8520
8638
8521
8633
8522
8632
8523
8555
8524
8554
8525
8549
8526
8548
8527
8529
8528
8529
8531
8530
8548
8531
8533
8547
8532
8533
8535
8534
8546
8535
8537
8545
8536
8537
8539
8538
8544
8539
8541
8543
8540
8541
8575
8542
8574
8543
8563
8573
8544
8562
8545
8561
8546
8560
8547
8551
8548
8550
8549
8550
8554
8551
8553
8552
8560
8553
8557
8559
8554
8556
8555
8556
8632
8557
8631
8558
8630
8559
8567
8629
8560
8566
8561
8562
8566
8563
8565
8564
8572
8565
8569
8571
8566
8568
8567
8568
8628
8569
8627
8570
8626
8571
8603
8625
8572
8602
8573
8597
8574
8596
8575
8577
8576
8577
8579
8578
8596
8579
8581
8595
8580
8581
8583
8582
8594
8583
8585
8593
8584
8585
8587
8586
8592
8587
8589
8591
8588
8589
25522
8590
25521
8591
8611
25520
8592
8610
8593
8609
8594
8608
8595
8599
8596
8598
8597
8598
8602
8599
8601
8600
8608
8601
8605
8607
8602
8604
8603
8604
8624
8605
8623
8606
8622
8607
8615
8621
8608
8614
8609
8610
8614
8611
8613
8612
25519
8613
8617
25518
8614
8616
8615
8616
8620
8617
8619
8618
25517
8619
8703
25516
8620
8702
8621
8701
8622
8700
8623
8691
8624
8690
8625
8689
8626
8688
8627
8647
8628
8646
8629
8645
8630
8644
8631
8635
8632
8634
8633
8634
8638
8635
8637
8636
8644
8637
8641
8643
8638
8640
8639
8640
8660
8641
8659
8642
8658
8643
8651
8657
8644
8650
8645
8646
8650
8647
8649
8648
8688
8649
8653
8687
8650
8652
8651
8652
8656
8653
8655
8654
8686
8655
8675
8685
8656
8674
8657
8673
8658
8672
8659
8663
8660
8662
8661
8662
8666
8663
8665
8664
8672
8665
8669
8671
8666
8668
8667
8668
8752
8669
8751
8670
8750
8671
8679
8749
8672
8678
8673
8674
8678
8675
8677
8676
8684
8677
8681
8683
8678
8680
8679
8680
8748
8681
8747
8682
8746
8683
8723
8745
8684
8722
8685
8717
8686
8716
8687
8695
8688
8694
8689
8690
8694
8691
8693
8692
8700
8693
8697
8699
8694
8696
8695
8696
8716
8697
8715
8698
8714
8699
8707
8713
8700
8706
8701
8702
8706
8703
8705
8704
25515
8705
8709
25514
8706
8708
8707
8708
8712
8709
8711
8710
25513
8711
8731
25512
8712
8730
8713
8729
8714
8728
8715
8719
8716
8718
8717
8718
8722
8719
8721
8720
8728
8721
8725
8727
8722
8724
8723
8724
8744
8725
8743
8726
8742
8727
8735
8741
8728
8734
8729
8730
8734
8731
8733
8732
25511
8733
8737
25510
8734
8736
8735
8736
8740
8737
8739
8738
25509
8739
21738
25508
8740
21737
8741
21736
8742
21735
8743
21726
8744
21725
8745
21724
8746
21723
8747
21682
8748
21681
8749
21680
8750
21679
8751
21670
8752
21669
8753
21668
8754
21667
8755
20593
8756
20592
8757
20591
8758
20590
8759
20585
8760
20572
8761
20573
8762
20574
8763
8783
8764
8782
8765
8781
8766
8780
8767
8771
8768
8770
8769
8770
8774
8771
8773
8772
8780
8773
8777
8779
8774
8776
8775
8776
8799
8800
8777
8797
8798
8778
8795
8796
8779
8787
8793
8794
8780
8786
8781
8782
8786
8783
8785
8784
20574
8785
8789
20575
8786
8788
8787
8788
8792
8789
8791
8790
20578
8791
9916
20579
8792
9914
9915
8793
9031
9385
9386
8794
9031
8795
9030
8796
8851
8797
8850
8798
8849
8799
8848
8800
8804
8801
8803
8802
8803
8808
8804
8806
8807
8805
8846
8848
8806
8844
8846
8807
8843
8808
8842
8809
8814
8842
8810
8812
8814
8811
8812
8821
8822
8813
8817
8819
8820
8814
8815
8817
8815
8841
8816
8840
8817
8837
8839
8818
8819
8835
8837
8820
8834
8821
8833
8822
8824
8823
8824
8826
8825
8833
8826
8830
8832
8827
8829
8828
8829
8901
8830
8900
8831
8899
8832
8892
8898
8833
8891
8834
8835
8891
8836
8890
8837
8887
8889
8838
8839
8885
8887
8840
8868
8841
8867
8842
8865
8867
8843
8844
8865
8845
8863
8864
8846
8859
8861
8862
8847
8848
8857
8859
8849
8857
8850
8855
8856
8851
8853
8854
8852
9028
9030
8853
9026
9028
8854
9025
8855
9024
8856
9016
8857
9015
8858
8859
9002
9003
9015
8860
9001
8861
8999
9001
8862
8876
8863
8875
8864
8874
8865
8873
8866
8871
8873
8867
8869
8871
8868
8869
8885
8870
8884
8871
8881
8883
8872
8873
8879
8881
8874
8875
8879
8876
8878
8877
8999
8878
8996
8998
8879
8995
8880
8881
8993
8995
8882
8883
8991
8993
8884
8978
8885
8977
8886
8887
8975
8977
8888
8889
8973
8975
8890
8894
8891
8893
8892
8893
8897
8894
8896
8895
8973
8896
8962
8972
8897
8961
8898
8960
8899
8959
8900
8946
8901
8945
8902
8903
8943
8945
8904
8905
8941
8943
8906
8910
8907
8909
8908
8909
8913
8910
8912
8911
8941
8912
8928
8940
8913
8927
8914
8915
8925
8927
8916
8917
8923
8925
8918
8922
8919
8921
8920
8921
8922
8923
8924
8934
8925
8931
8933
8926
8927
8929
8931
8928
8929
8939
8930
8938
8931
8935
8937
8932
8933
8935
8934
8936
8937
9129
8938
9112
8939
9111
8940
8952
8941
8951
8942
8943
8949
8951
8944
8945
8947
8949
8946
8947
8959
8948
8958
8949
8955
8957
8950
8951
8953
8955
8952
8953
9111
8954
9110
8955
9107
9109
8956
8957
9105
9107
8958
8966
8959
8965
8960
8961
8965
8962
8964
8963
8971
8964
8968
8970
8965
8967
8966
8967
9105
8968
9104
8969
9103
8970
9084
9102
8971
9083
8972
8984
8973
8983
8974
8975
8981
8983
8976
8977
8979
8981
8978
8979
8991
8980
8990
8981
8987
8989
8982
8983
8985
8987
8984
8985
9083
8986
9082
8987
9079
9081
8988
8989
9077
9079
8990
9060
8991
9059
8992
8993
9057
9059
8994
8995
9055
9057
8996
8997
9055
8998
9008
9054
8999
9007
9000
9001
9005
9007
9002
9003
9005
9004
9014
9005
9011
9013
9006
9007
9009
9011
9008
9009
9053
9010
9052
9011
9049
9051
9012
9013
9047
9049
9014
9019
9015
9018
9016
9018
9017
9022
9024
9018
9020
9022
9019
9020
9047
9021
9046
9022
9043
9045
9023
9024
9041
9043
9025
9041
9026
9039
9040
9027
9037
9038
9028
9029
9036
9029
9030
9032
9034
9035
9031
9032
9033
9383
9385
9034
9360
9383
9035
9358
9359
9036
9354
9355
9037
9205
9209
9210
9038
9205
9039
9204
9040
9179
9041
9178
9042
9043
9176
9178
9044
9045
9174
9176
9046
9173
9047
9172
9048
9049
9170
9172
9050
9051
9168
9170
9052
9068
9053
9067
9054
9066
9055
9065
9056
9057
9063
9065
9058
9059
9061
9063
9060
9061
9077
9062
9076
9063
9073
9075
9064
9065
9071
9073
9066
9067
9071
9068
9070
9069
9168
9070
9165
9167
9071
9164
9072
9073
9162
9164
9074
9075
9160
9162
9076
9092
9077
9091
9078
9079
9089
9091
9080
9081
9087
9089
9082
9086
9083
9085
9084
9085
9101
9086
9100
9087
9099
9088
9098
9089
9095
9097
9090
9091
9093
9095
9092
9093
9160
9094
9159
9095
9156
9158
9096
9097
9154
9156
9098
9153
9099
9152
9100
9143
9101
9142
9102
9141
9103
9140
9104
9120
9105
9119
9106
9107
9117
9119
9108
9109
9115
9117
9110
9114
9111
9113
9112
9113
9129
9114
9128
9115
9127
9116
9126
9117
9123
9125
9118
9119
9121
9123
9120
9121
9140
9122
9139
9123
9136
9138
9124
9125
9134
9136
9126
9133
9127
9132
9128
9131
9129
9130
9131
9132
9133
9134
9135
9136
9268
9137
9138
9266
9268
9139
9147
9140
9146
9141
9142
9146
9143
9145
9144
9152
9145
9149
9151
9146
9148
9147
9148
9266
9149
9265
9150
9264
9151
9257
9263
9152
9256
9153
9154
9256
9155
9255
9156
9252
9254
9157
9158
9250
9252
9159
9233
9160
9232
9161
9162
9230
9232
9163
9164
9228
9230
9165
9166
9228
9167
9191
9227
9168
9190
9169
9170
9188
9190
9171
9172
9186
9188
9173
9174
9186
9175
9185
9176
9182
9184
9177
9178
9180
9182
9179
9180
9204
9181
9203
9182
9200
9202
9183
9184
9198
9200
9185
9197
9186
9196
9187
9188
9194
9196
9189
9190
9192
9194
9191
9192
9226
9193
9225
9194
9222
9224
9195
9196
9220
9222
9197
9198
9220
9199
9219
9200
9216
9218
9201
9202
9214
9216
9203
9207
9204
9206
9205
9206
9207
9209
9208
9214
9209
9211
9213
9210
9211
9354
9212
9353
9213
9326
9352
9214
9325
9215
9216
9323
9325
9217
9218
9321
9323
9219
9320
9220
9319
9221
9222
9317
9319
9223
9224
9315
9317
9225
9241
9226
9240
9227
9239
9228
9238
9229
9230
9236
9238
9231
9232
9234
9236
9233
9234
9250
9235
9249
9236
9246
9248
9237
9238
9244
9246
9239
9240
9244
9241
9243
9242
9315
9243
9312
9314
9244
9311
9245
9246
9309
9311
9247
9248
9307
9309
9249
9294
9250
9293
9251
9252
9291
9293
9253
9254
9289
9291
9255
9259
9256
9258
9257
9258
9262
9259
9261
9260
9289
9261
9279
9288
9262
9278
9263
9277
9264
9276
9265
9273
9266
9272
9267
9268
9270
9272
9269
9270
9271
9272
9274
9273
9274
9276
9275
9276
9282
9277
9278
9282
9279
9281
9280
9287
9281
9284
9286
9282
9283
9284
9285
9286
9449
9287
9448
9288
9300
9289
9299
9290
9291
9297
9299
9292
9293
9295
9297
9294
9295
9307
9296
9306
9297
9303
9305
9298
9299
9301
9303
9300
9301
9448
9302
9447
9303
9444
9446
9304
9305
9442
9444
9306
9425
9307
9424
9308
9309
9422
9424
9310
9311
9420
9422
9312
9313
9420
9314
9338
9419
9315
9337
9316
9317
9335
9337
9318
9319
9333
9335
9320
9321
9333
9322
9332
9323
9329
9331
9324
9325
9327
9329
9326
9327
9351
9328
9350
9329
9347
9349
9330
9331
9345
9347
9332
9344
9333
9343
9334
9335
9341
9343
9336
9337
9339
9341
9338
9339
9418
9340
9417
9341
9414
9416
9342
9343
9412
9414
9344
9345
9412
9346
9411
9347
9408
9410
9348
9349
9406
9408
9350
9371
9351
9370
9352
9365
9353
9364
9354
9356
9355
9356
9358
9357
9364
9358
9361
9363
9359
9360
9361
9361
9377
9378
9382
9362
9363
9367
9377
9364
9366
9365
9366
9370
9367
9369
9368
9376
9369
9373
9375
9370
9372
9371
9372
9406
9373
9405
9374
9404
9375
9397
9403
9376
9396
9377
9379
9378
9379
9381
9380
9396
9381
9393
9395
9382
9392
9383
9390
9392
9384
9385
9388
9390
9386
9388
9387
9914
9388
9389
9910
9911
9913
9389
9390
9535
9391
9392
9393
9530
9531
9535
9393
9394
9395
9399
9530
9396
9398
9397
9398
9402
9399
9401
9400
9529
9401
9518
9528
9402
9517
9403
9516
9404
9515
9405
9502
9406
9501
9407
9408
9499
9501
9409
9410
9497
9499
9411
9484
9412
9483
9413
9414
9481
9483
9415
9416
9479
9481
9417
9433
9418
9432
9419
9431
9420
9430
9421
9422
9428
9430
9423
9424
9426
9428
9425
9426
9442
9427
9441
9428
9438
9440
9429
9430
9436
9438
9431
9432
9436
9433
9435
9434
9479
9435
9476
9478
9436
9475
9437
9438
9473
9475
9439
9440
9471
9473
9441
9457
9442
9456
9443
9444
9454
9456
9445
9446
9452
9454
9447
9451
9448
9450
9449
9450
9451
9452
9464
9453
9463
9454
9460
9462
9455
9456
9458
9460
9457
9458
9471
9459
9470
9460
9465
9469
9461
9462
9465
9463
9464
9466
9468
9467
9468
9612
9469
9611
9470
9594
9471
9593
9472
9473
9591
9593
9474
9475
9589
9591
9476
9477
9589
9478
9490
9588
9479
9489
9480
9481
9487
9489
9482
9483
9485
9487
9484
9485
9497
9486
9496
9487
9493
9495
9488
9489
9491
9493
9490
9491
9587
9492
9586
9493
9583
9585
9494
9495
9581
9583
9496
9508
9497
9507
9498
9499
9505
9507
9500
9501
9503
9505
9502
9503
9515
9504
9514
9505
9511
9513
9506
9507
9509
9511
9508
9509
9581
9510
9580
9511
9577
9579
9512
9513
9575
9577
9514
9522
9515
9521
9516
9517
9521
9518
9520
9519
9527
9520
9524
9526
9521
9523
9522
9523
9575
9524
9574
9525
9573
9526
9548
9572
9527
9547
9528
9542
9529
9541
9530
9532
9531
9532
9534
9533
9541
9534
9538
9540
9535
9536
9536
9911
9537
9538
9538
9554
9555
9911
9912
9539
9540
9544
9554
9541
9543
9542
9543
9547
9544
9546
9545
9553
9546
9550
9552
9547
9549
9548
9549
9571
9550
9570
9551
9569
9552
9559
9568
9553
9558
9554
9557
9555
9556
9557
9557
9561
9562
9912
38801
9558
9559
9561
9560
9567
9561
9564
9566
9562
9563
9564
9564
9777
9778
38801
38802
9565
9566
9676
9777
9567
9675
9568
9674
9569
9673
9570
9664
9571
9663
9572
9662
9573
9661
9574
9636
9575
9635
9576
9577
9633
9635
9578
9579
9631
9633
9580
9630
9581
9629
9582
9583
9627
9629
9584
9585
9625
9627
9586
9602
9587
9601
9588
9600
9589
9599
9590
9591
9597
9599
9592
9593
9595
9597
9594
9595
9611
9596
9610
9597
9607
9609
9598
9599
9605
9607
9600
9601
9605
9602
9604
9603
9625
9604
9622
9624
9605
9621
9606
9607
9619
9621
9608
9609
9617
9619
9610
9614
9611
9613
9612
9613
9614
9615
9617
9616
9617
9707
9618
9619
9705
9707
9620
9621
9703
9705
9622
9623
9703
9624
9648
9702
9625
9647
9626
9627
9645
9647
9628
9629
9643
9645
9630
9631
9643
9632
9642
9633
9639
9641
9634
9635
9637
9639
9636
9637
9661
9638
9660
9639
9657
9659
9640
9641
9655
9657
9642
9654
9643
9653
9644
9645
9651
9653
9646
9647
9649
9651
9648
9649
9701
9650
9700
9651
9697
9699
9652
9653
9695
9697
9654
9655
9695
9656
9694
9657
9691
9693
9658
9659
9689
9691
9660
9668
9661
9667
9662
9663
9667
9664
9666
9665
9673
9666
9670
9672
9667
9669
9668
9669
9689
9670
9688
9671
9687
9672
9680
9686
9673
9679
9674
9675
9679
9676
9678
9677
9776
9678
9682
9775
9679
9681
9680
9681
9685
9682
9684
9683
9774
9684
9763
9773
9685
9762
9686
9761
9687
9760
9688
9735
9689
9734
9690
9691
9732
9734
9692
9693
9730
9732
9694
9729
9695
9728
9696
9697
9726
9728
9698
9699
9724
9726
9700
9715
9701
9714
9702
9713
9703
9712
9704
9705
9708
9712
9706
9707
9708
9709
9711
9710
9711
9719
9712
9718
9713
9714
9718
9715
9717
9716
9724
9717
9721
9723
9718
9720
9719
9720
9721
9833
9722
9832
9723
9747
9831
9724
9746
9725
9726
9744
9746
9727
9728
9742
9744
9729
9730
9742
9731
9741
9732
9738
9740
9733
9734
9736
9738
9735
9736
9760
9737
9759
9738
9756
9758
9739
9740
9754
9756
9741
9753
9742
9752
9743
9744
9750
9752
9745
9746
9748
9750
9747
9748
9830
9749
9829
9750
9826
9828
9751
9752
9824
9826
9753
9754
9824
9755
9823
9756
9820
9822
9757
9758
9818
9820
9759
9767
9760
9766
9761
9762
9766
9763
9765
9764
9772
9765
9769
9771
9766
9768
9767
9768
9818
9769
9817
9770
9816
9771
9797
9815
9772
9796
9773
9791
9774
9790
9775
9782
9776
9781
9777
9780
9778
9779
9780
9780
9784
9785
38802
38803
9781
9782
9784
9783
9790
9784
9787
9789
9785
9786
9787
9787
9803
9804
38803
38804
9788
9789
9793
9803
9790
9792
9791
9792
9796
9793
9795
9794
9802
9795
9799
9801
9796
9798
9797
9798
9814
9799
9813
9800
9812
9801
9809
9811
9802
9807
9803
9806
9804
9805
9806
9806
9808
38804
38805
9807
9808
9809
9809
9890
9891
38806
9810
9811
9888
9890
9812
9887
9813
9878
9814
9877
9815
9876
9816
9875
9817
9850
9818
9849
9819
9820
9847
9849
9821
9822
9845
9847
9823
9844
9824
9843
9825
9826
9841
9843
9827
9828
9839
9841
9829
9836
9830
9835
9831
9834
9832
9833
9835
9836
9837
9839
9838
9839
9861
9840
9841
9859
9861
9842
9843
9857
9859
9844
9845
9857
9846
9856
9847
9853
9855
9848
9849
9851
9853
9850
9851
9875
9852
9874
9853
9871
9873
9854
9855
9869
9871
9856
9868
9857
9867
9858
9859
9865
9867
9860
9861
9863
9865
9862
9863
9864
9865
9946
9948
9866
9867
9944
9946
9868
9869
9944
9870
9943
9871
9940
9942
9872
9873
9938
9940
9874
9882
9875
9881
9876
9877
9881
9878
9880
9879
9887
9880
9884
9886
9881
9883
9882
9883
9938
9884
9937
9885
9936
9886
9897
9935
9887
9896
9888
9889
9896
9890
9893
9895
9891
9892
9893
9893
9900
9902
38806
9894
9895
9899
9900
9896
9898
9897
9898
9934
9899
9933
9900
9932
9901
9930
9931
9902
9927
9929
9903
9927
9904
9926
38806
9905
9926
38805
9906
9923
9924
38804
38805
9907
38803
38804
9908
9918
9923
38802
38803
9909
38801
38802
9910
9912
9913
9918
38801
9911
9912
9914
9917
9915
9916
9917
9917
9919
9920
20582
9918
9919
9920
9923
9921
9922
9922
9925
20582
20583
9923
9924
9925
9926
9926
10070
10071
20584
9927
9928
10068
10070
9929
10068
38800
9930
9995
9997
9931
9995
9932
9994
9933
9985
9934
9984
9935
9983
9936
9982
9937
9969
9938
9968
9939
9940
9966
9968
9941
9942
9964
9966
9943
9954
9944
9953
9945
9946
9949
9953
9947
9948
9949
9950
9952
9951
9952
9956
9958
9953
9955
9954
9955
9964
9956
9963
9957
9962
9958
9959
9961
9960
9961
10010
10028
9962
10009
9963
9975
9964
9974
9965
9966
9972
9974
9967
9968
9970
9972
9969
9970
9982
9971
9981
9972
9978
9980
9973
9974
9976
9978
9975
9976
10009
9977
10008
9978
10005
10007
9979
9980
10003
10005
9981
9989
9982
9988
9983
9984
9988
9985
9987
9986
9994
9987
9991
9993
9988
9990
9989
9990
10003
9991
10002
9992
10001
9993
9998
10000
9994
9996
9995
9996
9997
9998
9998
10054
10055
38800
9999
10000
10052
10054
10001
10051
10002
10018
10003
10017
10004
10005
10015
10017
10006
10007
10013
10015
10008
10012
10009
10011
10010
10011
10027
10012
10026
10013
10025
10014
10024
10015
10021
10023
10016
10017
10019
10021
10018
10019
10051
10020
10050
10021
10047
10049
10022
10023
10045
10047
10024
10044
10025
10043
10026
10032
10027
10031
10028
10030
10029
10030
10036
10031
10035
10032
10034
10033
10043
10034
10040
10042
10035
10039
10036
10038
10037
10038
10111
10039
10110
10040
10109
10041
10108
10042
10088
10107
10043
10087
10044
10045
10087
10046
10086
10047
10083
10085
10048
10049
10081
10083
10050
10061
10051
10060
10052
10053
10060
10054
10057
10059
10055
10056
10057
10057
10064
10066
38800
10058
10059
10063
10064
10060
10062
10061
10062
10081
10063
10080
10064
10079
10065
10078
10066
10075
10077
10067
10075
10068
10069
38800
10069
10070
10073
10075
10071
10072
10073
10073
20563
20565
20584
10074
10075
20562
20563
10076
10077
19280
19281
20562
10078
19280
10079
10096
10098
10080
10096
10081
10095
10082
10083
10093
10095
10084
10085
10091
10093
10086
10090
10087
10089
10088
10089
10106
10090
10105
10091
10104
10092
10103
10093
10100
10102
10094
10095
10097
10100
10096
10097
10098
10099
10099
19278
19280
10100
19277
10101
10102
19275
19277
10103
19274
10104
19273
10105
19168
10106
19167
10107
19166
10108
19165
10109
10115
10110
10114
10111
10113
10112
10113
10119
10114
10118
10115
10117
10116
19165
10117
19162
19164
10118
19161
10119
19160
10120
10121
19158
19160
10122
10123
19156
19158
10124
10125
19154
19156
10126
10127
19152
19154
10128
10129
19150
19152
10130
10131
19148
19150
10132
10133
19146
19148
10134
19145
10135
10136
19143
19145
10137
10138
19131
19143
10139
19130
10140
10141
19128
19130
10142
19127
10143
10144
19123
19127
10145
19122
10146
10147
19120
19122
10148
10149
19118
19120
10150
19117
10151
10152
19115
19117
10153
19114
10154
10155
19112
19114
10156
19111
10157
10158
19109
19111
10159
19108
10160
10161
19106
19108
10162
19105
10163
10164
19103
19105
10165
19102
10166
10167
19100
19102
10168
19097
10169
19096
10170
10171
19094
19096
10172
19093
10173
10174
19049
19093
10175
19048
10176
10177
19046
19048
10178
19045
10179
10180
19041
19045
10181
19040
10182
10183
19038
19040
10184
19037
10185
10186
19025
19037
10187
19024
10188
10189
19022
19024
10190
19021
10191
10192
19017
19021
10193
19016
10194
10195
19014
19016
10196
19013
10197
10198
18994
19013
10199
18993
10200
10201
18991
18993
10202
18990
10203
10204
10205
18990
10205
10207
18986
18988
18989
10206
10207
10208
10209
18984
18986
10210
18983
10211
18982
10212
10213
18980
18982
10214
10215
18978
18980
10216
18977
10217
10218
18975
18977
10219
18974
10220
10221
18972
18974
10222
18971
10223
10224
18969
18971
10225
18968
10226
10227
18966
18968
10228
18965
10229
10230
18963
18965
10231
18962
10232
10233
18960
18962
10234
18959
10235
10236
18957
18959
10237
10238
18955
18957
10239
18954
10240
10241
18950
18954
10242
18949
10243
10244
18947
18949
10245
10246
18945
18947
10247
18944
10248
10249
18942
18944
10250
18941
10251
10252
18939
18941
10253
10254
18912
18939
10255
18911
10256
10257
18907
18911
10258
18906
10259
10260
18904
18906
10261
10262
18902
18904
10263
18901
10264
10265
18899
18901
10266
10267
18858
18899
10268
18857
10269
10270
18855
18857
10271
10272
18853
18855
10273
18852
10274
10275
18850
18852
10276
10277
18846
18850
10278
18845
10279
10280
18843
18845
10281
10282
18841
18843
10283
18840
10284
10285
18838
18840
10286
10287
18822
18838
10288
18821
10289
10290
18819
18821
10291
10292
18817
18819
10293
10294
18728
18817
10295
18727
10296
10297
18725
18727
10298
10299
18723
18725
10300
18722
10301
10302
18720
18722
10303
10304
18718
18720
10305
10306
18716
18718
10307
18715
10308
10309
18713
18715
10310
10311
18711
18713
10312
10313
18709
18711
10314
18708
10315
10316
18706
18708
10317
10318
18704
18706
10319
10320
18702
18704
10321
18701
10322
10323
18699
18701
10324
10325
18697
18699
10326
10327
18695
18697
10328
18694
10329
10330
18692
18694
10331
10332
18690
18692
10333
10334
18688
18690
10335
10336
18567
18688
10337
18566
10338
10339
18564
18566
10340
10341
18562
18564
10342
10343
18560
18562
10344
10345
18558
18560
10346
18557
10347
10348
18555
18557
10349
10350
18553
18555
10351
10352
18551
18553
10353
10354
18549
18551
10355
18548
10356
10357
18546
18548
10358
10359
18544
18546
10360
10361
18542
18544
10362
10363
18540
18542
10364
18539
10365
10366
18537
18539
10367
10368
18535
18537
10369
10370
18533
18535
10371
10372
18531
18533
10373
10374
18529
18531
10375
18528
10376
10377
18526
18528
10378
10379
18524
18526
10380
10381
18522
18524
10382
10383
18518
18522
10384
18517
10385
10386
18515
18517
10387
10388
18513
18515
10389
10390
18511
18513
10391
10392
18509
18511
10393
10394
18270
18509
10395
18269
10396
10397
18267
18269
10398
10399
18265
18267
10400
10401
18263
18265
10402
10403
18261
18263
10404
10405
18259
18261
10406
10407
18257
18259
10408
18256
10409
10410
18254
18256
10411
10412
18252
18254
10413
10414
18250
18252
10415
10416
18248
18250
10417
10418
18246
18248
10419
18245
10420
10421
18243
18245
10422
10423
18241
18243
10424
10425
18239
18241
10426
10427
18237
18239
10428
10429
18235
18237
10430
18234
10431
10432
18232
18234
10433
10434
18230
18232
10435
10436
18228
18230
10437
10438
18226
18228
10439
10440
18224
18226
10441
18223
10442
10443
18221
18223
10444
10445
18219
18221
10446
10447
18217
18219
10448
10449
18215
18217
10450
10451
18213
18215
10452
18212
10453
10454
18210
18212
10455
10456
18208
18210
10457
10458
18206
18208
10459
10460
18204
18206
10461
10462
18202
18204
10463
18201
10464
10465
18199
18201
10466
10467
18197
18199
10468
10469
18195
18197
10470
10471
18193
18195
10472
10473
18191
18193
10474
18190
10475
10476
18188
18190
10477
10478
18186
18188
10479
10480
18184
18186
10481
10482
18182
18184
10483
10484
18180
18182
10485
18179
10486
10487
18177
18179
10488
10489
18175
18177
10490
10491
18173
18175
10492
10493
18169
18173
10494
18168
10495
10496
18166
18168
10497
10498
18164
18166
10499
10500
18162
18164
10501
10502
18160
18162
10503
18159
10504
10505
18157
18159
10506
10507
18155
18157
10508
10509
18153
18155
10510
10511
13161
18153
10512
13160
10513
10514
13158
13160
10515
10516
13156
13158
10517
10518
13154
13156
10519
10520
13152
13154
10521
13151
10522
10523
13149
13151
10524
10525
13147
13149
10526
10527
13145
13147
10528
10529
13141
13145
10530
13140
10531
10532
13138
13140
10533
10534
13136
13138
10535
10536
13134
13136
10537
13133
10538
10539
13131
13133
10540
10541
13129
13131
10542
10543
13125
13129
10544
13124
10545
10546
13122
13124
10547
10548
13120
13122
10549
10550
13118
13120
10551
13117
10552
10553
13115
13117
10554
10555
13113
13115
10556
10557
13109
13113
10558
13108
10559
10560
13106
13108
10561
10562
13104
13106
10563
13103
10564
10565
13101
13103
10566
10567
13099
13101
10568
10569
13097
13099
10570
13096
10571
10572
13094
13096
10573
10574
13092
13094
10575
13091
10576
10577
13089
13091
10578
10579
13087
13089
10580
13086
10581
10582
13084
13086
10583
10584
13082
13084
10585
13081
10586
10587
13079
13081
10588
10589
13077
13079
10590
13076
10591
10592
13074
13076
10593
10594
13072
13074
10595
13071
10596
10597
13069
13071
10598
10599
13067
13069
10600
13066
10601
10602
13064
13066
10603
13063
10604
10605
13061
13063
10606
10607
13049
13061
10608
13048
10609
10610
13046
13048
10611
13045
10612
10613
13041
13045
10614
13040
10615
10616
13038
13040
10617
10618
13036
13038
10619
13035
10620
10621
13033
13035
10622
13032
10623
10624
13030
13032
10625
13029
10626
10627
13027
13029
10628
13026
10629
10630
13024
13026
10631
13023
10632
10633
13021
13023
10634
13020
10635
10636
13018
13020
10637
13015
10638
13014
10639
10640
13012
13014
10641
13011
10642
10643
12998
13011
10644
12997
10645
12996
10646
10647
12994
12996
10648
12989
10649
12988
10650
10651
12956
12988
10652
12955
10653
12954
10654
10655
12952
12954
10656
12951
10657
12950
10658
12949
10659
10660
12947
12949
10661
12944
10662
12943
10663
12930
10664
12929
10665
12926
10666
12925
10667
12912
10668
12911
10669
12908
10670
12907
10671
12894
10672
12893
10673
12890
10674
12889
10675
12876
10676
12875
10677
12872
10678
12871
10679
12858
10680
12857
10681
12854
10682
12853
10683
12840
10684
12839
10685
12836
10686
12835
10687
12822
10688
12821
10689
12818
10690
12817
10691
12804
10692
12803
10693
12800
10694
12799
10695
12786
10696
12785
10697
12782
10698
12781
10699
12768
10700
12767
10701
12764
10702
12763
10703
12750
10704
12749
10705
12746
10706
12745
10707
12732
10708
12731
10709
12728
10710
12727
10711
12714
10712
12713
10713
12710
10714
12709
10715
12696
10716
12695
10717
12692
10718
12691
10719
12678
10720
12677
10721
12674
10722
12673
10723
12660
10724
12659
10725
12656
10726
12655
10727
12642
10728
12641
10729
12638
10730
12637
10731
12624
10732
12623
10733
12620
10734
12619
10735
12606
10736
12605
10737
12602
10738
12601
10739
12588
10740
12587
10741
12584
10742
12583
10743
12570
10744
12569
10745
12566
10746
12565
10747
12552
10748
12551
10749
12548
10750
12547
10751
12534
10752
12533
10753
12530
10754
12529
10755
12516
10756
12515
10757
12512
10758
12511
10759
12498
10760
12497
10761
12494
10762
12493
10763
12480
10764
12479
10765
12476
10766
12475
10767
12462
10768
12461
10769
12458
10770
12457
10771
12444
10772
12443
10773
12440
10774
12439
10775
12426
10776
12425
10777
12422
10778
12421
10779
12408
10780
12407
10781
12404
10782
12403
10783
12390
10784
12389
10785
12386
10786
12385
10787
12372
10788
12371
10789
12368
10790
12367
10791
12354
10792
12353
10793
12350
10794
12349
10795
12336
10796
12335
10797
12332
10798
12331
10799
12318
10800
12317
10801
12314
10802
12313
10803
12300
10804
12299
10805
12296
10806
12295
10807
12282
10808
12281
10809
12278
10810
12277
10811
12264
10812
12263
10813
12260
10814
12259
10815
12246
10816
12245
10817
12242
10818
12241
10819
12228
10820
12227
10821
12224
10822
12223
10823
12210
10824
12209
10825
12206
10826
12205
10827
12192
10828
12191
10829
12188
10830
12187
10831
12174
10832
12173
10833
12170
10834
12169
10835
12156
10836
12155
10837
12152
10838
12151
10839
12138
10840
12137
10841
12134
10842
12133
10843
12120
10844
12119
10845
12116
10846
12115
10847
12102
10848
12101
10849
12098
10850
12097
10851
12084
10852
12083
10853
12080
10854
12079
10855
12066
10856
12065
10857
12062
10858
12061
10859
12048
10860
12047
10861
12044
10862
12043
10863
12030
10864
12029
10865
12026
10866
12025
10867
12012
10868
12011
10869
12008
10870
12007
10871
11994
10872
11993
10873
11990
10874
11989
10875
11976
10876
11975
10877
11972
10878
11971
10879
11958
10880
11957
10881
11954
10882
11953
10883
11940
10884
11939
10885
11936
10886
11935
10887
11922
10888
11921
10889
11918
10890
11917
10891
11904
10892
11903
10893
11900
10894
11899
10895
11886
10896
11885
10897
11882
10898
11881
10899
11868
10900
11867
10901
11864
10902
11863
10903
11850
10904
11849
10905
11846
10906
11845
10907
11832
10908
11831
10909
11828
10910
11827
10911
11814
10912
11813
10913
11810
10914
11809
10915
11796
10916
11795
10917
11792
10918
11791
10919
11778
10920
11777
10921
11774
10922
11773
10923
11760
10924
11759
10925
11756
10926
11755
10927
11742
10928
11741
10929
11738
10930
11737
10931
11724
10932
11723
10933
11720
10934
11719
10935
11706
10936
11705
10937
11702
10938
11701
10939
11688
10940
11687
10941
11684
10942
11683
10943
11670
10944
11669
10945
11666
10946
11665
10947
11652
10948
11651
10949
11648
10950
11647
10951
11634
10952
11633
10953
11630
10954
11629
10955
11616
10956
11615
10957
11612
10958
11611
10959
11598
10960
11597
10961
11594
10962
11593
10963
11580
10964
11579
10965
11576
10966
11575
10967
11562
10968
11561
10969
11558
10970
11557
10971
11544
10972
11543
10973
11540
10974
11539
10975
11526
10976
11525
10977
11522
10978
11521
10979
11508
10980
11507
10981
11504
10982
11503
10983
11490
10984
11489
10985
11486
10986
11485
10987
11472
10988
11471
10989
11468
10990
11467
10991
11454
10992
11453
10993
11450
10994
11449
10995
11436
10996
11435
10997
11432
10998
11431
10999
11418
11000
11417
11001
11414
11002
11413
11003
11400
11004
11399
11005
11396
11006
11395
11007
11382
11008
11381
11009
11378
11010
11377
11011
11364
11012
11363
11013
11360
11014
11359
11015
11346
11016
11345
11017
11342
11018
11341
11019
11328
11020
11327
11021
11324
11022
11323
11023
11310
11024
11309
11025
11306
11026
11305
11027
11292
11028
11291
11029
11288
11030
11287
11031
11274
11032
11273
11033
11270
11034
11269
11035
11256
11036
11255
11037
11252
11038
11251
11039
11238
11040
11237
11041
11234
11042
11233
11043
11220
11044
11219
11045
11216
11046
11215
11047
11202
11048
11201
11049
11198
11050
11197
11051
11184
11052
11183
11053
11180
11054
11179
11055
11166
11056
11165
11057
11162
11058
11161
11059
11148
11060
11147
11061
11144
11062
11143
11063
11130
11064
11129
11065
11126
11066
11125
11067
11112
11068
11111
11069
11108
11070
11107
11071
11095
11072
11094
11073
11091
11074
11090
11075
11077
11076
11077
11079
11078
11090
11079
11081
11089
11080
11081
11083
11082
11088
11083
11085
11087
11084
11085
13708
11086
13709
11087
11100
11102
13706
13709
11088
11100
11089
11099
11090
11092
11091
11092
11094
11093
11099
11094
11096
11098
11095
11096
11107
11097
11106
11098
11103
11105
11099
11101
11100
11101
11102
11103
11103
11118
13704
11104
11105
11117
11118
11106
11116
11107
11109
11108
11109
11111
11110
11116
11111
11113
11115
11112
11113
11125
11114
11124
11115
11121
11123
11116
11120
11117
11118
11120
11119
13703
11120
11121
11136
13701
11121
11122
11123
11135
11136
11124
11134
11125
11127
11126
11127
11129
11128
11134
11129
11131
11133
11130
11131
11143
11132
11142
11133
11139
11141
11134
11138
11135
11136
11138
11137
13700
11138
11139
11154
13698
11139
11140
11141
11153
11154
11142
11152
11143
11145
11144
11145
11147
11146
11152
11147
11149
11151
11148
11149
11161
11150
11160
11151
11157
11159
11152
11156
11153
11154
11156
11155
13697
11156
11157
11172
13695
11157
11158
11159
11171
11172
11160
11170
11161
11163
11162
11163
11165
11164
11170
11165
11167
11169
11166
11167
11179
11168
11178
11169
11175
11177
11170
11174
11171
11172
11174
11173
13694
11174
11175
11190
13692
11175
11176
11177
11189
11190
11178
11188
11179
11181
11180
11181
11183
11182
11188
11183
11185
11187
11184
11185
11197
11186
11196
11187
11193
11195
11188
11192
11189
11190
11192
11191
13691
11192
11193
11208
13689
11193
11194
11195
11207
11208
11196
11206
11197
11199
11198
11199
11201
11200
11206
11201
11203
11205
11202
11203
11215
11204
11214
11205
11211
11213
11206
11210
11207
11208
11210
11209
13688
11210
11211
11226
13686
11211
11212
11213
11225
11226
11214
11224
11215
11217
11216
11217
11219
11218
11224
11219
11221
11223
11220
11221
11233
11222
11232
11223
11229
11231
11224
11228
11225
11226
11228
11227
13685
11228
11229
11244
13683
11229
11230
11231
11243
11244
11232
11242
11233
11235
11234
11235
11237
11236
11242
11237
11239
11241
11238
11239
11251
11240
11250
11241
11247
11249
11242
11246
11243
11244
11246
11245
13682
11246
11247
11262
13680
11247
11248
11249
11261
11262
11250
11260
11251
11253
11252
11253
11255
11254
11260
11255
11257
11259
11256
11257
11269
11258
11268
11259
11265
11267
11260
11264
11261
11262
11264
11263
13679
11264
11265
11280
13677
11265
11266
11267
11279
11280
11268
11278
11269
11271
11270
11271
11273
11272
11278
11273
11275
11277
11274
11275
11287
11276
11286
11277
11283
11285
11278
11282
11279
11280
11282
11281
13676
11282
11283
11298
13674
11283
11284
11285
11297
11298
11286
11296
11287
11289
11288
11289
11291
11290
11296
11291
11293
11295
11292
11293
11305
11294
11304
11295
11301
11303
11296
11300
11297
11298
11300
11299
13673
11300
11301
11316
13671
11301
11302
11303
11315
11316
11304
11314
11305
11307
11306
11307
11309
11308
11314
11309
11311
11313
11310
11311
11323
11312
11322
11313
11319
11321
11314
11318
11315
11316
11318
11317
13670
11318
11319
11334
13668
11319
11320
11321
11333
11334
11322
11332
11323
11325
11324
11325
11327
11326
11332
11327
11329
11331
11328
11329
11341
11330
11340
11331
11337
11339
11332
11336
11333
11334
11336
11335
13667
11336
11337
11352
13665
11337
11338
11339
11351
11352
11340
11350
11341
11343
11342
11343
11345
11344
11350
11345
11347
11349
11346
11347
11359
11348
11358
11349
11355
11357
11350
11354
11351
11352
11354
11353
13664
11354
11355
11370
13662
11355
11356
11357
11369
11370
11358
11368
11359
11361
11360
11361
11363
11362
11368
11363
11365
11367
11364
11365
11377
11366
11376
11367
11373
11375
11368
11372
11369
11370
11372
11371
13661
11372
11373
11388
13659
11373
11374
11375
11387
11388
11376
11386
11377
11379
11378
11379
11381
11380
11386
11381
11383
11385
11382
11383
11395
11384
11394
11385
11391
11393
11386
11390
11387
11388
11390
11389
13658
11390
11391
11406
13656
11391
11392
11393
11405
11406
11394
11404
11395
11397
11396
11397
11399
11398
11404
11399
11401
11403
11400
11401
11413
11402
11412
11403
11409
11411
11404
11408
11405
11406
11408
11407
13655
11408
11409
11424
13653
11409
11410
11411
11423
11424
11412
11422
11413
11415
11414
11415
11417
11416
11422
11417
11419
11421
11418
11419
11431
11420
11430
11421
11427
11429
11422
11426
11423
11424
11426
11425
13652
11426
11427
11442
13650
11427
11428
11429
11441
11442
11430
11440
11431
11433
11432
11433
11435
11434
11440
11435
11437
11439
11436
11437
11449
11438
11448
11439
11445
11447
11440
11444
11441
11442
11444
11443
13649
11444
11445
11460
13647
11445
11446
11447
11459
11460
11448
11458
11449
11451
11450
11451
11453
11452
11458
11453
11455
11457
11454
11455
11467
11456
11466
11457
11463
11465
11458
11462
11459
11460
11462
11461
13646
11462
11463
11478
13644
11463
11464
11465
11477
11478
11466
11476
11467
11469
11468
11469
11471
11470
11476
11471
11473
11475
11472
11473
11485
11474
11484
11475
11481
11483
11476
11480
11477
11478
11480
11479
13643
11480
11481
11496
13641
11481
11482
11483
11495
11496
11484
11494
11485
11487
11486
11487
11489
11488
11494
11489
11491
11493
11490
11491
11503
11492
11502
11493
11499
11501
11494
11498
11495
11496
11498
11497
13640
11498
11499
11514
13638
11499
11500
11501
11513
11514
11502
11512
11503
11505
11504
11505
11507
11506
11512
11507
11509
11511
11508
11509
11521
11510
11520
11511
11517
11519
11512
11516
11513
11514
11516
11515
13637
11516
11517
11532
13635
11517
11518
11519
11531
11532
11520
11530
11521
11523
11522
11523
11525
11524
11530
11525
11527
11529
11526
11527
11539
11528
11538
11529
11535
11537
11530
11534
11531
11532
11534
11533
13634
11534
11535
11550
13632
11535
11536
11537
11549
11550
11538
11548
11539
11541
11540
11541
11543
11542
11548
11543
11545
11547
11544
11545
11557
11546
11556
11547
11553
11555
11548
11552
11549
11550
11552
11551
13631
11552
11553
11568
13629
11553
11554
11555
11567
11568
11556
11566
11557
11559
11558
11559
11561
11560
11566
11561
11563
11565
11562
11563
11575
11564
11574
11565
11571
11573
11566
11570
11567
11568
11570
11569
13628
11570
11571
11586
13626
11571
11572
11573
11585
11586
11574
11584
11575
11577
11576
11577
11579
11578
11584
11579
11581
11583
11580
11581
11593
11582
11592
11583
11589
11591
11584
11588
11585
11586
11588
11587
13625
11588
11589
11604
13623
11589
11590
11591
11603
11604
11592
11602
11593
11595
11594
11595
11597
11596
11602
11597
11599
11601
11598
11599
11611
11600
11610
11601
11607
11609
11602
11606
11603
11604
11606
11605
13622
11606
11607
11622
13620
11607
11608
11609
11621
11622
11610
11620
11611
11613
11612
11613
11615
11614
11620
11615
11617
11619
11616
11617
11629
11618
11628
11619
11625
11627
11620
11624
11621
11622
11624
11623
13619
11624
11625
11640
13617
11625
11626
11627
11639
11640
11628
11638
11629
11631
11630
11631
11633
11632
11638
11633
11635
11637
11634
11635
11647
11636
11646
11637
11643
11645
11638
11642
11639
11640
11642
11641
13616
11642
11643
11658
13614
11643
11644
11645
11657
11658
11646
11656
11647
11649
11648
11649
11651
11650
11656
11651
11653
11655
11652
11653
11665
11654
11664
11655
11661
11663
11656
11660
11657
11658
11660
11659
13613
11660
11661
11676
13611
11661
11662
11663
11675
11676
11664
11674
11665
11667
11666
11667
11669
11668
11674
11669
11671
11673
11670
11671
11683
11672
11682
11673
11679
11681
11674
11678
11675
11676
11678
11677
13610
11678
11679
11694
13608
11679
11680
11681
11693
11694
11682
11692
11683
11685
11684
11685
11687
11686
11692
11687
11689
11691
11688
11689
11701
11690
11700
11691
11697
11699
11692
11696
11693
11694
11696
11695
13607
11696
11697
11712
13605
11697
11698
11699
11711
11712
11700
11710
11701
11703
11702
11703
11705
11704
11710
11705
11707
11709
11706
11707
11719
11708
11718
11709
11715
11717
11710
11714
11711
11712
11714
11713
13604
11714
11715
11730
13602
11715
11716
11717
11729
11730
11718
11728
11719
11721
11720
11721
11723
11722
11728
11723
11725
11727
11724
11725
11737
11726
11736
11727
11733
11735
11728
11732
11729
11730
11732
11731
13601
11732
11733
11748
13599
11733
11734
11735
11747
11748
11736
11746
11737
11739
11738
11739
11741
11740
11746
11741
11743
11745
11742
11743
11755
11744
11754
11745
11751
11753
11746
11750
11747
11748
11750
11749
13598
11750
11751
11766
13596
11751
11752
11753
11765
11766
11754
11764
11755
11757
11756
11757
11759
11758
11764
11759
11761
11763
11760
11761
11773
11762
11772
11763
11769
11771
11764
11768
11765
11766
11768
11767
13595
11768
11769
11784
13593
11769
11770
11771
11783
11784
11772
11782
11773
11775
11774
11775
11777
11776
11782
11777
11779
11781
11778
11779
11791
11780
11790
11781
11787
11789
11782
11786
11783
11784
11786
11785
13592
11786
11787
11802
13590
11787
11788
11789
11801
11802
11790
11800
11791
11793
11792
11793
11795
11794
11800
11795
11797
11799
11796
11797
11809
11798
11808
11799
11805
11807
11800
11804
11801
11802
11804
11803
13589
11804
11805
11820
13587
11805
11806
11807
11819
11820
11808
11818
11809
11811
11810
11811
11813
11812
11818
11813
11815
11817
11814
11815
11827
11816
11826
11817
11823
11825
11818
11822
11819
11820
11822
11821
13586
11822
11823
11838
13584
11823
11824
11825
11837
11838
11826
11836
11827
11829
11828
11829
11831
11830
11836
11831
11833
11835
11832
11833
11845
11834
11844
11835
11841
11843
11836
11840
11837
11838
11840
11839
13583
11840
11841
11856
13581
11841
11842
11843
11855
11856
11844
11854
11845
11847
11846
11847
11849
11848
11854
11849
11851
11853
11850
11851
11863
11852
11862
11853
11859
11861
11854
11858
11855
11856
11858
11857
13580
11858
11859
11874
13578
11859
11860
11861
11873
11874
11862
11872
11863
11865
11864
11865
11867
11866
11872
11867
11869
11871
11868
11869
11881
11870
11880
11871
11877
11879
11872
11876
11873
11874
11876
11875
13577
11876
11877
11892
13575
11877
11878
11879
11891
11892
11880
11890
11881
11883
11882
11883
11885
11884
11890
11885
11887
11889
11886
11887
11899
11888
11898
11889
11895
11897
11890
11894
11891
11892
11894
11893
13574
11894
11895
11910
13572
11895
11896
11897
11909
11910
11898
11908
11899
11901
11900
11901
11903
11902
11908
11903
11905
11907
11904
11905
11917
11906
11916
11907
11913
11915
11908
11912
11909
11910
11912
11911
13571
11912
11913
11928
13569
11913
11914
11915
11927
11928
11916
11926
11917
11919
11918
11919
11921
11920
11926
11921
11923
11925
11922
11923
11935
11924
11934
11925
11931
11933
11926
11930
11927
11928
11930
11929
13568
11930
11931
11946
13566
11931
11932
11933
11945
11946
11934
11944
11935
11937
11936
11937
11939
11938
11944
11939
11941
11943
11940
11941
11953
11942
11952
11943
11949
11951
11944
11948
11945
11946
11948
11947
13565
11948
11949
11964
13563
11949
11950
11951
11963
11964
11952
11962
11953
11955
11954
11955
11957
11956
11962
11957
11959
11961
11958
11959
11971
11960
11970
11961
11967
11969
11962
11966
11963
11964
11966
11965
13562
11966
11967
11982
13560
11967
11968
11969
11981
11982
11970
11980
11971
11973
11972
11973
11975
11974
11980
11975
11977
11979
11976
11977
11989
11978
11988
11979
11985
11987
11980
11984
11981
11982
11984
11983
13559
11984
11985
12000
13557
11985
11986
11987
11999
12000
11988
11998
11989
11991
11990
11991
11993
11992
11998
11993
11995
11997
11994
11995
12007
11996
12006
11997
12003
12005
11998
12002
11999
12000
12002
12001
13556
12002
12003
12018
13554
12003
12004
12005
12017
12018
12006
12016
12007
12009
12008
12009
12011
12010
12016
12011
12013
12015
12012
12013
12025
12014
12024
12015
12021
12023
12016
12020
12017
12018
12020
12019
13553
12020
12021
12036
13551
12021
12022
12023
12035
12036
12024
12034
12025
12027
12026
12027
12029
12028
12034
12029
12031
12033
12030
12031
12043
12032
12042
12033
12039
12041
12034
12038
12035
12036
12038
12037
13550
12038
12039
12054
13548
12039
12040
12041
12053
12054
12042
12052
12043
12045
12044
12045
12047
12046
12052
12047
12049
12051
12048
12049
12061
12050
12060
12051
12057
12059
12052
12056
12053
12054
12056
12055
13547
12056
12057
12072
13545
12057
12058
12059
12071
12072
12060
12070
12061
12063
12062
12063
12065
12064
12070
12065
12067
12069
12066
12067
12079
12068
12078
12069
12075
12077
12070
12074
12071
12072
12074
12073
13544
12074
12075
12090
13542
12075
12076
12077
12089
12090
12078
12088
12079
12081
12080
12081
12083
12082
12088
12083
12085
12087
12084
12085
12097
12086
12096
12087
12093
12095
12088
12092
12089
12090
12092
12091
13541
12092
12093
12108
13539
12093
12094
12095
12107
12108
12096
12106
12097
12099
12098
12099
12101
12100
12106
12101
12103
12105
12102
12103
12115
12104
12114
12105
12111
12113
12106
12110
12107
12108
12110
12109
13538
12110
12111
12126
13536
12111
12112
12113
12125
12126
12114
12124
12115
12117
12116
12117
12119
12118
12124
12119
12121
12123
12120
12121
12133
12122
12132
12123
12129
12131
12124
12128
12125
12126
12128
12127
13535
12128
12129
12144
13533
12129
12130
12131
12143
12144
12132
12142
12133
12135
12134
12135
12137
12136
12142
12137
12139
12141
12138
12139
12151
12140
12150
12141
12147
12149
12142
12146
12143
12144
12146
12145
13532
12146
12147
12162
13530
12147
12148
12149
12161
12162
12150
12160
12151
12153
12152
12153
12155
12154
12160
12155
12157
12159
12156
12157
12169
12158
12168
12159
12165
12167
12160
12164
12161
12162
12164
12163
13529
12164
12165
12180
13527
12165
12166
12167
12179
12180
12168
12178
12169
12171
12170
12171
12173
12172
12178
12173
12175
12177
12174
12175
12187
12176
12186
12177
12183
12185
12178
12182
12179
12180
12182
12181
13526
12182
12183
12198
13524
12183
12184
12185
12197
12198
12186
12196
12187
12189
12188
12189
12191
12190
12196
12191
12193
12195
12192
12193
12205
12194
12204
12195
12201
12203
12196
12200
12197
12198
12200
12199
13523
12200
12201
12216
13521
12201
12202
12203
12215
12216
12204
12214
12205
12207
12206
12207
12209
12208
12214
12209
12211
12213
12210
12211
12223
12212
12222
12213
12219
12221
12214
12218
12215
12216
12218
12217
13520
12218
12219
12234
13518
12219
12220
12221
12233
12234
12222
12232
12223
12225
12224
12225
12227
12226
12232
12227
12229
12231
12228
12229
12241
12230
12240
12231
12237
12239
12232
12236
12233
12234
12236
12235
13517
12236
12237
12252
13515
12237
12238
12239
12251
12252
12240
12250
12241
12243
12242
12243
12245
12244
12250
12245
12247
12249
12246
12247
12259
12248
12258
12249
12255
12257
12250
12254
12251
12252
12254
12253
13514
12254
12255
12270
13512
12255
12256
12257
12269
12270
12258
12268
12259
12261
12260
12261
12263
12262
12268
12263
12265
12267
12264
12265
12277
12266
12276
12267
12273
12275
12268
12272
12269
12270
12272
12271
13511
12272
12273
12288
13509
12273
12274
12275
12287
12288
12276
12286
12277
12279
12278
12279
12281
12280
12286
12281
12283
12285
12282
12283
12295
12284
12294
12285
12291
12293
12286
12290
12287
12288
12290
12289
13508
12290
12291
12306
13506
12291
12292
12293
12305
12306
12294
12304
12295
12297
12296
12297
12299
12298
12304
12299
12301
12303
12300
12301
12313
12302
12312
12303
12309
12311
12304
12308
12305
12306
12308
12307
13505
12308
12309
12324
13503
12309
12310
12311
12323
12324
12312
12322
12313
12315
12314
12315
12317
12316
12322
12317
12319
12321
12318
12319
12331
12320
12330
12321
12327
12329
12322
12326
12323
12324
12326
12325
13502
12326
12327
12342
13500
12327
12328
12329
12341
12342
12330
12340
12331
12333
12332
12333
12335
12334
12340
12335
12337
12339
12336
12337
12349
12338
12348
12339
12345
12347
12340
12344
12341
12342
12344
12343
13499
12344
12345
12360
13497
12345
12346
12347
12359
12360
12348
12358
12349
12351
12350
12351
12353
12352
12358
12353
12355
12357
12354
12355
12367
12356
12366
12357
12363
12365
12358
12362
12359
12360
12362
12361
13496
12362
12363
12378
13494
12363
12364
12365
12377
12378
12366
12376
12367
12369
12368
12369
12371
12370
12376
12371
12373
12375
12372
12373
12385
12374
12384
12375
12381
12383
12376
12380
12377
12378
12380
12379
13493
12380
12381
12396
13491
12381
12382
12383
12395
12396
12384
12394
12385
12387
12386
12387
12389
12388
12394
12389
12391
12393
12390
12391
12403
12392
12402
12393
12399
12401
12394
12398
12395
12396
12398
12397
13490
12398
12399
12414
13488
12399
12400
12401
12413
12414
12402
12412
12403
12405
12404
12405
12407
12406
12412
12407
12409
12411
12408
12409
12421
12410
12420
12411
12417
12419
12412
12416
12413
12414
12416
12415
13487
12416
12417
12432
13485
12417
12418
12419
12431
12432
12420
12430
12421
12423
12422
12423
12425
12424
12430
12425
12427
12429
12426
12427
12439
12428
12438
12429
12435
12437
12430
12434
12431
12432
12434
12433
13484
12434
12435
12450
13482
12435
12436
12437
12449
12450
12438
12448
12439
12441
12440
12441
12443
12442
12448
12443
12445
12447
12444
12445
12457
12446
12456
12447
12453
12455
12448
12452
12449
12450
12452
12451
13481
12452
12453
12468
13479
12453
12454
12455
12467
12468
12456
12466
12457
12459
12458
12459
12461
12460
12466
12461
12463
12465
12462
12463
12475
12464
12474
12465
12471
12473
12466
12470
12467
12468
12470
12469
13478
12470
12471
12486
13476
12471
12472
12473
12485
12486
12474
12484
12475
12477
12476
12477
12479
12478
12484
12479
12481
12483
12480
12481
12493
12482
12492
12483
12489
12491
12484
12488
12485
12486
12488
12487
13475
12488
12489
12504
13473
12489
12490
12491
12503
12504
12492
12502
12493
12495
12494
12495
12497
12496
12502
12497
12499
12501
12498
12499
12511
12500
12510
12501
12507
12509
12502
12506
12503
12504
12506
12505
13472
12506
12507
12522
13470
12507
12508
12509
12521
12522
12510
12520
12511
12513
12512
12513
12515
12514
12520
12515
12517
12519
12516
12517
12529
12518
12528
12519
12525
12527
12520
12524
12521
12522
12524
12523
13469
12524
12525
12540
13467
12525
12526
12527
12539
12540
12528
12538
12529
12531
12530
12531
12533
12532
12538
12533
12535
12537
12534
12535
12547
12536
12546
12537
12543
12545
12538
12542
12539
12540
12542
12541
13466
12542
12543
12558
13464
12543
12544
12545
12557
12558
12546
12556
12547
12549
12548
12549
12551
12550
12556
12551
12553
12555
12552
12553
12565
12554
12564
12555
12561
12563
12556
12560
12557
12558
12560
12559
13463
12560
12561
12576
13461
12561
12562
12563
12575
12576
12564
12574
12565
12567
12566
12567
12569
12568
12574
12569
12571
12573
12570
12571
12583
12572
12582
12573
12579
12581
12574
12578
12575
12576
12578
12577
13460
12578
12579
12594
13458
12579
12580
12581
12593
12594
12582
12592
12583
12585
12584
12585
12587
12586
12592
12587
12589
12591
12588
12589
12601
12590
12600
12591
12597
12599
12592
12596
12593
12594
12596
12595
13457
12596
12597
12612
13455
12597
12598
12599
12611
12612
12600
12610
12601
12603
12602
12603
12605
12604
12610
12605
12607
12609
12606
12607
12619
12608
12618
12609
12615
12617
12610
12614
12611
12612
12614
12613
13454
12614
12615
12630
13452
12615
12616
12617
12629
12630
12618
12628
12619
12621
12620
12621
12623
12622
12628
12623
12625
12627
12624
12625
12637
12626
12636
12627
12633
12635
12628
12632
12629
12630
12632
12631
13451
12632
12633
12648
13449
12633
12634
12635
12647
12648
12636
12646
12637
12639
12638
12639
12641
12640
12646
12641
12643
12645
12642
12643
12655
12644
12654
12645
12651
12653
12646
12650
12647
12648
12650
12649
13448
12650
12651
12666
13446
12651
12652
12653
12665
12666
12654
12664
12655
12657
12656
12657
12659
12658
12664
12659
12661
12663
12660
12661
12673
12662
12672
12663
12669
12671
12664
12668
12665
12666
12668
12667
13445
12668
12669
12684
13443
12669
12670
12671
12683
12684
12672
12682
12673
12675
12674
12675
12677
12676
12682
12677
12679
12681
12678
12679
12691
12680
12690
12681
12687
12689
12682
12686
12683
12684
12686
12685
13442
12686
12687
12702
13440
12687
12688
12689
12701
12702
12690
12700
12691
12693
12692
12693
12695
12694
12700
12695
12697
12699
12696
12697
12709
12698
12708
12699
12705
12707
12700
12704
12701
12702
12704
12703
13439
12704
12705
12720
13437
12705
12706
12707
12719
12720
12708
12718
12709
12711
12710
12711
12713
12712
12718
12713
12715
12717
12714
12715
12727
12716
12726
12717
12723
12725
12718
12722
12719
12720
12722
12721
13436
12722
12723
12738
13434
12723
12724
12725
12737
12738
12726
12736
12727
12729
12728
12729
12731
12730
12736
12731
12733
12735
12732
12733
12745
12734
12744
12735
12741
12743
12736
12740
12737
12738
12740
12739
13433
12740
12741
12756
13431
12741
12742
12743
12755
12756
12744
12754
12745
12747
12746
12747
12749
12748
12754
12749
12751
12753
12750
12751
12763
12752
12762
12753
12759
12761
12754
12758
12755
12756
12758
12757
13430
12758
12759
12774
13428
12759
12760
12761
12773
12774
12762
12772
12763
12765
12764
12765
12767
12766
12772
12767
12769
12771
12768
12769
12781
12770
12780
12771
12777
12779
12772
12776
12773
12774
12776
12775
13427
12776
12777
12792
13425
12777
12778
12779
12791
12792
12780
12790
12781
12783
12782
12783
12785
12784
12790
12785
12787
12789
12786
12787
12799
12788
12798
12789
12795
12797
12790
12794
12791
12792
12794
12793
13424
12794
12795
12810
13422
12795
12796
12797
12809
12810
12798
12808
12799
12801
12800
12801
12803
12802
12808
12803
12805
12807
12804
12805
12817
12806
12816
12807
12813
12815
12808
12812
12809
12810
12812
12811
13421
12812
12813
12828
13419
12813
12814
12815
12827
12828
12816
12826
12817
12819
12818
12819
12821
12820
12826
12821
12823
12825
12822
12823
12835
12824
12834
12825
12831
12833
12826
12830
12827
12828
12830
12829
13418
12830
12831
12846
13416
12831
12832
12833
12845
12846
12834
12844
12835
12837
12836
12837
12839
12838
12844
12839
12841
12843
12840
12841
12853
12842
12852
12843
12849
12851
12844
12848
12845
12846
12848
12847
13415
12848
12849
12864
13413
12849
12850
12851
12863
12864
12852
12862
12853
12855
12854
12855
12857
12856
12862
12857
12859
12861
12858
12859
12871
12860
12870
12861
12867
12869
12862
12866
12863
12864
12866
12865
13412
12866
12867
12882
13410
12867
12868
12869
12881
12882
12870
12880
12871
12873
12872
12873
12875
12874
12880
12875
12877
12879
12876
12877
12889
12878
12888
12879
12885
12887
12880
12884
12881
12882
12884
12883
13409
12884
12885
12900
13407
12885
12886
12887
12899
12900
12888
12898
12889
12891
12890
12891
12893
12892
12898
12893
12895
12897
12894
12895
12907
12896
12906
12897
12903
12905
12898
12902
12899
12900
12902
12901
13406
12902
12903
12918
13404
12903
12904
12905
12917
12918
12906
12916
12907
12909
12908
12909
12911
12910
12916
12911
12913
12915
12912
12913
12925
12914
12924
12915
12921
12923
12916
12920
12917
12918
12920
12919
13403
12920
12921
12936
13401
12921
12922
12923
12935
12936
12924
12934
12925
12927
12926
12927
12929
12928
12934
12929
12931
12933
12930
12931
12943
12932
12942
12933
12939
12941
12934
12938
12935
12936
12938
12937
13400
12938
12939
12970
13398
12939
12940
12941
12969
12970
12942
12968
12943
12945
12944
12945
12947
12946
12968
12947
12965
12967
12948
12949
12963
12965
12950
12951
12963
12952
12962
12953
12961
12954
12958
12960
12955
12956
12958
12957
12987
12958
12984
12986
12959
12960
12981
12984
12961
12980
12962
12978
12963
12977
12964
12965
12975
12977
12966
12967
12973
12975
12968
12972
12969
12970
12972
12971
13397
12972
12973
13391
38793
12973
12974
12975
13391
13392
12976
12977
12979
13392
12978
12979
12980
12980
12982
13390
13392
12981
12982
12983
12983
13387
13389
12984
13388
12985
12986
13385
13388
12987
12991
12988
12990
12989
12990
12994
12991
12993
12992
13385
12993
13003
13384
12994
13002
12995
12996
13000
13002
12997
12998
13000
12999
13010
13000
13007
13009
13001
13002
13004
13007
13003
13004
38794
13005
13006
13006
13344
13380
38794
38795
13007
13345
13008
13009
13342
13345
13010
13337
13011
13336
13012
13013
13336
13014
13016
13335
13015
13016
13018
13017
13334
13018
13331
13333
13019
13020
13329
13331
13021
13022
13329
13023
13326
13328
13024
13025
13326
13026
13323
13325
13027
13028
13323
13029
13320
13322
13030
13031
13320
13032
13317
13319
13033
13034
13317
13035
13314
13316
13036
13037
13314
13038
13311
13313
13039
13040
13042
13311
13041
13042
13044
13043
13310
13044
13054
13309
13045
13053
13046
13047
13053
13048
13050
13052
13049
13050
13060
13051
13059
13052
13056
13058
13053
13055
13054
13055
13308
13056
13307
13057
13306
13058
13304
13305
13059
13303
13060
13256
13061
13255
13062
13063
13253
13255
13064
13065
13253
13066
13250
13252
13067
13068
13250
13069
13247
13249
13070
13071
13245
13247
13072
13073
13245
13074
13242
13244
13075
13076
13240
13242
13077
13078
13240
13079
13237
13239
13080
13081
13235
13237
13082
13083
13235
13084
13232
13234
13085
13086
13230
13232
13087
13088
13230
13089
13227
13229
13090
13091
13225
13227
13092
13093
13225
13094
13222
13224
13095
13096
13220
13222
13097
13098
13220
13099
13217
13219
13100
13101
13215
13217
13102
13103
13213
13215
13104
13105
13213
13106
13210
13212
13107
13108
13110
13210
13109
13110
13112
13111
13209
13112
13206
13208
13113
13205
13114
13115
13203
13205
13116
13117
13201
13203
13118
13119
13201
13120
13198
13200
13121
13122
13196
13198
13123
13124
13126
13196
13125
13126
13128
13127
13195
13128
13192
13194
13129
13191
13130
13131
13189
13191
13132
13133
13187
13189
13134
13135
13187
13136
13184
13186
13137
13138
13182
13184
13139
13140
13142
13182
13141
13142
13144
13143
13181
13144
13178
13180
13145
13177
13146
13147
13175
13177
13148
13149
13173
13175
13150
13151
13171
13173
13152
13153
13171
13154
13168
13170
13155
13156
13166
13168
13157
13158
13164
13166
13159
13160
13162
13164
13161
13162
18152
13163
18151
13164
18148
18150
13165
13166
18146
18148
13167
13168
18144
18146
13169
13170
18142
18144
13171
18141
13172
13173
18139
18141
13174
13175
18137
18139
13176
13177
18135
18137
13178
13179
18135
13180
18132
18134
13181
18126
13182
18127
13183
13184
18127
18129
13185
13186
17976
18129
13187
17975
13188
13189
17973
17975
13190
13191
17971
17973
13192
13193
17971
13194
17968
17970
13195
17966
13196
17965
13197
13198
17963
17965
13199
13200
17961
17963
13201
17960
13202
13203
17958
17960
13204
13205
17956
17958
13206
13207
17956
13208
17953
17955
13209
17951
13210
17950
13211
13212
17948
17950
13213
17947
13214
13215
17947
38784
13216
13217
38784
38786
13218
13219
17911
38786
13220
17910
13221
13222
17908
17910
13223
13224
17906
17908
13225
17905
13226
13227
17903
17905
13228
13229
17896
17903
13230
17897
13231
13232
17897
17899
13233
13234
13280
17899
13235
13279
13236
13237
13277
13279
13238
13239
13274
13277
13240
13273
13241
13242
13271
13273
13243
13244
13269
13271
13245
13268
13246
13247
13266
13268
13248
13249
13263
13266
13250
13262
13251
13252
13260
13262
13253
13259
13254
13255
13257
13259
13256
13257
13303
13258
13302
13259
13301
38797
13260
13261
38797
13262
13264
38798
13263
13264
13265
13265
13293
13299
38798
13266
13294
13267
13268
13291
13294
13269
13270
13291
13271
13289
13290
13272
13273
13275
13290
13274
13275
13276
13276
13284
13288
13290
13277
13285
13278
13279
13281
13285
13280
13281
17900
13282
13283
13283
17892
17894
17900
17901
13284
13285
13285
13286
17892
13287
13288
17891
13288
13295
13296
17888
17890
13289
13290
13291
13292
13295
13292
13293
13294
13294
13295
38799
13296
13297
38799
13298
17849
17886
17888
38799
13299
17846
17849
13300
38799
13301
17845
17846
38797
38798
13302
17845
13303
17844
13304
13305
17844
13306
17838
17839
17843
13307
17838
13308
17836
13309
17837
13310
17822
13311
17821
13312
13313
17819
17821
13314
17818
13315
13316
17814
17818
13317
17813
13318
13319
17809
17813
13320
17810
13321
13322
13363
17810
13323
13362
13324
13325
13360
13362
13326
13359
13327
13328
13356
13359
13329
13355
13330
13331
13353
13355
13332
13333
13351
13353
13334
13350
13335
13339
13336
13338
13337
13338
13342
13339
13341
13340
13350
13341
13348
13349
13342
13347
13343
13344
13345
13347
13345
13346
13379
13347
13348
13374
38796
13348
13349
13350
13351
13371
13374
13351
13352
13353
13371
13372
13354
13355
13357
13372
13356
13357
13358
13358
13366
13372
13373
13359
13367
13360
13361
13367
13362
13364
13365
13363
13364
17811
13365
17805
17807
17811
13366
13367
13367
13368
17805
13369
13373
17804
13370
13373
13377
17801
17803
13371
13374
13377
13372
13373
13375
13376
13377
38796
13377
13378
17799
17801
13379
13381
17798
38796
13380
38796
13381
13382
13382
13389
17625
13383
13387
38795
13384
13386
38795
13385
38794
13386
13387
13388
13388
13389
13390
13395
17624
13391
13395
13392
13393
13394
13395
38793
13395
13396
17620
17624
13397
13399
17619
38793
13398
38793
13399
13400
13400
13402
17608
13401
13402
13403
13403
13405
17607
13404
13405
13406
13406
13408
17604
13407
13408
13409
13409
13411
17603
13410
13411
13412
13412
13414
17560
13413
13414
13415
13415
13417
17559
13416
13417
13418
13418
13420
17556
13419
13420
13421
13421
13423
17555
13422
13423
13424
13424
13426
17544
13425
13426
13427
13427
13429
17543
13428
13429
13430
13430
13432
17540
13431
13432
13433
13433
13435
17539
13434
13435
13436
13436
13438
17368
13437
13438
13439
13439
13441
17367
13440
13441
13442
13442
13444
17364
13443
13444
13445
13445
13447
17363
13446
13447
13448
13448
13450
17352
13449
13450
13451
13451
13453
17351
13452
13453
13454
13454
13456
17348
13455
13456
13457
13457
13459
17347
13458
13459
13460
13460
13462
17304
13461
13462
13463
13463
13465
17303
13464
13465
13466
13466
13468
17300
13467
13468
13469
13469
13471
17299
13470
13471
13472
13472
13474
17288
13473
13474
13475
13475
13477
17287
13476
13477
13478
13478
13480
17284
13479
13480
13481
13481
13483
17283
13482
13483
13484
13484
13486
15128
13485
13486
13487
13487
13489
15127
13488
13489
13490
13490
13492
15124
13491
13492
13493
13493
13495
15123
13494
13495
13496
13496
13498
15112
13497
13498
13499
13499
13501
15111
13500
13501
13502
13502
13504
15108
13503
13504
13505
13505
13507
15107
13506
13507
13508
13508
13510
15064
13509
13510
13511
13511
13513
15063
13512
13513
13514
13514
13516
15060
13515
13516
13517
13517
13519
15059
13518
13519
13520
13520
13522
15048
13521
13522
13523
13523
13525
15047
13524
13525
13526
13526
13528
15044
13527
13528
13529
13529
13531
15043
13530
13531
13532
13532
13534
14872
13533
13534
13535
13535
13537
14871
13536
13537
13538
13538
13540
14868
13539
13540
13541
13541
13543
14867
13542
13543
13544
13544
13546
14856
13545
13546
13547
13547
13549
14855
13548
13549
13550
13550
13552
14852
13551
13552
13553
13553
13555
14851
13554
13555
13556
13556
13558
14808
13557
13558
13559
13559
13561
14807
13560
13561
13562
13562
13564
14804
13563
13564
13565
13565
13567
14803
13566
13567
13568
13568
13570
14792
13569
13570
13571
13571
13573
14791
13572
13573
13574
13574
13576
14788
13575
13576
13577
13577
13579
14787
13578
13579
13580
13580
13582
14616
13581
13582
13583
13583
13585
14615
13584
13585
13586
13586
13588
14612
13587
13588
13589
13589
13591
14611
13590
13591
13592
13592
13594
14600
13593
13594
13595
13595
13597
14599
13596
13597
13598
13598
13600
14596
13599
13600
13601
13601
13603
14595
13602
13603
13604
13604
13606
14552
13605
13606
13607
13607
13609
14551
13608
13609
13610
13610
13612
14548
13611
13612
13613
13613
13615
14547
13614
13615
13616
13616
13618
14536
13617
13618
13619
13619
13621
14535
13620
13621
13622
13622
13624
14532
13623
13624
13625
13625
13627
14531
13626
13627
13628
13628
13630
14360
13629
13630
13631
13631
13633
14359
13632
13633
13634
13634
13636
14356
13635
13636
13637
13637
13639
14355
13638
13639
13640
13640
13642
14344
13641
13642
13643
13643
13645
14343
13644
13645
13646
13646
13648
14340
13647
13648
13649
13649
13651
14339
13650
13651
13652
13652
13654
14296
13653
13654
13655
13655
13657
14295
13656
13657
13658
13658
13660
14292
13659
13660
13661
13661
13663
14291
13662
13663
13664
13664
13666
14280
13665
13666
13667
13667
13669
14279
13668
13669
13670
13670
13672
14276
13671
13672
13673
13673
13675
14275
13674
13675
13676
13676
13678
13764
13677
13678
13679
13679
13681
13763
13680
13681
13682
13682
13684
13760
13683
13684
13685
13685
13687
13759
13686
13687
13688
13688
13690
13748
13689
13690
13691
13691
13693
13747
13692
13693
13694
13694
13696
13744
13695
13696
13697
13697
13699
13743
13698
13699
13700
13700
13702
13716
13701
13702
13703
13703
13705
13715
13704
13705
13706
13706
13710
13711
13712
13707
13708
13709
13710
13709
13711
13713
13715
13714
13720
13715
13717
13719
13716
13717
13743
13718
13742
13719
13723
13741
13720
13722
13721
13722
13726
13723
13725
13724
13740
13725
13729
13739
13726
13728
13727
13728
13732
13729
13731
13730
13738
13731
13735
13737
13732
13734
13733
13734
13810
13735
13809
13736
13808
13737
13785
13807
13738
13784
13739
13779
13740
13778
13741
13753
13742
13752
13743
13745
13744
13745
13747
13746
13752
13747
13749
13751
13748
13749
13759
13750
13758
13751
13755
13757
13752
13754
13753
13754
13778
13755
13777
13756
13776
13757
13769
13775
13758
13768
13759
13761
13760
13761
13763
13762
13768
13763
13765
13767
13764
13765
14275
13766
14274
13767
13771
14273
13768
13770
13769
13770
13774
13771
13773
13772
14272
13773
13793
14271
13774
13792
13775
13791
13776
13790
13777
13781
13778
13780
13779
13780
13784
13781
13783
13782
13790
13783
13787
13789
13784
13786
13785
13786
13806
13787
13805
13788
13804
13789
13797
13803
13790
13796
13791
13792
13796
13793
13795
13794
14270
13795
13799
14269
13796
13798
13797
13798
13802
13799
13801
13800
14268
13801
13853
14267
13802
13852
13803
13851
13804
13850
13805
13841
13806
13840
13807
13839
13808
13838
13809
13813
13810
13812
13811
13812
13816
13813
13815
13814
13838
13815
13819
13837
13816
13818
13817
13818
13822
13819
13821
13820
13836
13821
13825
13835
13822
13824
13823
13824
13828
13825
13827
13826
13834
13827
13831
13833
13828
13830
13829
13830
13898
13831
13897
13832
13896
13833
13873
13895
13834
13872
13835
13867
13836
13866
13837
13845
13838
13844
13839
13840
13844
13841
13843
13842
13850
13843
13847
13849
13844
13846
13845
13846
13866
13847
13865
13848
13864
13849
13857
13863
13850
13856
13851
13852
13856
13853
13855
13854
14266
13855
13859
14265
13856
13858
13857
13858
13862
13859
13861
13860
14264
13861
13881
14263
13862
13880
13863
13879
13864
13878
13865
13869
13866
13868
13867
13868
13872
13869
13871
13870
13878
13871
13875
13877
13872
13874
13873
13874
13894
13875
13893
13876
13892
13877
13885
13891
13878
13884
13879
13880
13884
13881
13883
13882
14262
13883
13887
14261
13884
13886
13885
13886
13890
13887
13889
13888
14260
13889
13941
14259
13890
13940
13891
13939
13892
13938
13893
13929
13894
13928
13895
13927
13896
13926
13897
13901
13898
13900
13899
13900
13904
13901
13903
13902
13926
13903
13907
13925
13904
13906
13905
13906
13910
13907
13909
13908
13924
13909
13913
13923
13910
13912
13911
13912
13916
13913
13915
13914
13922
13915
13919
13921
13916
13918
13917
13918
13986
13919
13985
13920
13984
13921
13961
13983
13922
13960
13923
13955
13924
13954
13925
13933
13926
13932
13927
13928
13932
13929
13931
13930
13938
13931
13935
13937
13932
13934
13933
13934
13954
13935
13953
13936
13952
13937
13945
13951
13938
13944
13939
13940
13944
13941
13943
13942
14258
13943
13947
14257
13944
13946
13945
13946
13950
13947
13949
13948
14256
13949
13969
14255
13950
13968
13951
13967
13952
13966
13953
13957
13954
13956
13955
13956
13960
13957
13959
13958
13966
13959
13963
13965
13960
13962
13961
13962
13982
13963
13981
13964
13980
13965
13973
13979
13966
13972
13967
13968
13972
13969
13971
13970
14254
13971
13975
14253
13972
13974
13973
13974
13978
13975
13977
13976
14252
13977
14029
14251
13978
14028
13979
14027
13980
14026
13981
14017
13982
14016
13983
14015
13984
14014
13985
13989
13986
13988
13987
13988
13992
13989
13991
13990
14014
13991
13995
14013
13992
13994
13993
13994
13998
13995
13997
13996
14012
13997
14001
14011
13998
14000
13999
14000
14004
14001
14003
14002
14010
14003
14007
14009
14004
14006
14005
14006
14074
14007
14073
14008
14072
14009
14049
14071
14010
14048
14011
14043
14012
14042
14013
14021
14014
14020
14015
14016
14020
14017
14019
14018
14026
14019
14023
14025
14020
14022
14021
14022
14042
14023
14041
14024
14040
14025
14033
14039
14026
14032
14027
14028
14032
14029
14031
14030
14250
14031
14035
14249
14032
14034
14033
14034
14038
14035
14037
14036
14248
14037
14057
14247
14038
14056
14039
14055
14040
14054
14041
14045
14042
14044
14043
14044
14048
14045
14047
14046
14054
14047
14051
14053
14048
14050
14049
14050
14070
14051
14069
14052
14068
14053
14061
14067
14054
14060
14055
14056
14060
14057
14059
14058
14246
14059
14063
14245
14060
14062
14061
14062
14066
14063
14065
14064
14244
14065
14117
14243
14066
14116
14067
14115
14068
14114
14069
14105
14070
14104
14071
14103
14072
14102
14073
14077
14074
14076
14075
14076
14080
14077
14079
14078
14102
14079
14083
14101
14080
14082
14081
14082
14086
14083
14085
14084
14100
14085
14089
14099
14086
14088
14087
14088
14092
14089
14091
14090
14098
14091
14095
14097
14092
14094
14093
14094
14162
14095
14161
14096
14160
14097
14137
14159
14098
14136
14099
14131
14100
14130
14101
14109
14102
14108
14103
14104
14108
14105
14107
14106
14114
14107
14111
14113
14108
14110
14109
14110
14130
14111
14129
14112
14128
14113
14121
14127
14114
14120
14115
14116
14120
14117
14119
14118
14242
14119
14123
14241
14120
14122
14121
14122
14126
14123
14125
14124
14240
14125
14145
14239
14126
14144
14127
14143
14128
14142
14129
14133
14130
14132
14131
14132
14136
14133
14135
14134
14142
14135
14139
14141
14136
14138
14137
14138
14158
14139
14157
14140
14156
14141
14149
14155
14142
14148
14143
14144
14148
14145
14147
14146
14238
14147
14151
14237
14148
14150
14149
14150
14154
14151
14153
14152
14236
14153
14201
14235
14154
14200
14155
14199
14156
14198
14157
14189
14158
14188
14159
14187
14160
14186
14161
14165
14162
14164
14163
14164
14168
14165
14167
14166
14186
14167
14171
14185
14168
14170
14169
14170
14174
14171
14173
14172
14184
14173
14177
14183
14174
14176
14175
14176
14180
14177
14179
14178
14182
14179
14181
14180
14182
14220
14183
14215
14184
14214
14185
14193
14186
14192
14187
14188
14192
14189
14191
14190
14198
14191
14195
14197
14192
14194
14193
14194
14214
14195
14213
14196
14212
14197
14205
14211
14198
14204
14199
14200
14204
14201
14203
14202
14234
14203
14207
14233
14204
14206
14205
14206
14210
14207
14209
14208
14232
14209
14225
14231
14210
14224
14211
14223
14212
14222
14213
14217
14214
14216
14215
14216
14220
14217
14219
14218
14222
14219
14221
14220
14222
14228
14223
14224
14228
14225
14227
14226
14230
14227
14229
14228
14230
15996
14231
15991
14232
15990
14233
15969
14234
15968
14235
15963
14236
15962
14237
15877
14238
15876
14239
15871
14240
15870
14241
15849
14242
15848
14243
15843
14244
15842
14245
15501
14246
15500
14247
15495
14248
15494
14249
15473
14250
15472
14251
15467
14252
15466
14253
15381
14254
15380
14255
15375
14256
15374
14257
15353
14258
15352
14259
15347
14260
15346
14261
14445
14262
14444
14263
14439
14264
14438
14265
14417
14266
14416
14267
14411
14268
14410
14269
14317
14270
14316
14271
14311
14272
14310
14273
14285
14274
14284
14275
14277
14276
14277
14279
14278
14284
14279
14281
14283
14280
14281
14291
14282
14290
14283
14287
14289
14284
14286
14285
14286
14310
14287
14309
14288
14308
14289
14301
14307
14290
14300
14291
14293
14292
14293
14295
14294
14300
14295
14297
14299
14296
14297
14339
14298
14338
14299
14303
14337
14300
14302
14301
14302
14306
14303
14305
14304
14336
14305
14325
14335
14306
14324
14307
14323
14308
14322
14309
14313
14310
14312
14311
14312
14316
14313
14315
14314
14322
14315
14319
14321
14316
14318
14317
14318
14410
14319
14409
14320
14408
14321
14329
14407
14322
14328
14323
14324
14328
14325
14327
14326
14334
14327
14331
14333
14328
14330
14329
14330
14406
14331
14405
14332
14404
14333
14381
14403
14334
14380
14335
14375
14336
14374
14337
14349
14338
14348
14339
14341
14340
14341
14343
14342
14348
14343
14345
14347
14344
14345
14355
14346
14354
14347
14351
14353
14348
14350
14349
14350
14374
14351
14373
14352
14372
14353
14365
14371
14354
14364
14355
14357
14356
14357
14359
14358
14364
14359
14361
14363
14360
14361
14531
14362
14530
14363
14367
14529
14364
14366
14365
14366
14370
14367
14369
14368
14528
14369
14389
14527
14370
14388
14371
14387
14372
14386
14373
14377
14374
14376
14375
14376
14380
14377
14379
14378
14386
14379
14383
14385
14380
14382
14381
14382
14402
14383
14401
14384
14400
14385
14393
14399
14386
14392
14387
14388
14392
14389
14391
14390
14526
14391
14395
14525
14392
14394
14393
14394
14398
14395
14397
14396
14524
14397
14481
14523
14398
14480
14399
14479
14400
14478
14401
14469
14402
14468
14403
14467
14404
14466
14405
14425
14406
14424
14407
14423
14408
14422
14409
14413
14410
14412
14411
14412
14416
14413
14415
14414
14422
14415
14419
14421
14416
14418
14417
14418
14438
14419
14437
14420
14436
14421
14429
14435
14422
14428
14423
14424
14428
14425
14427
14426
14466
14427
14431
14465
14428
14430
14429
14430
14434
14431
14433
14432
14464
14433
14453
14463
14434
14452
14435
14451
14436
14450
14437
14441
14438
14440
14439
14440
14444
14441
14443
14442
14450
14443
14447
14449
14444
14446
14445
14446
15346
14447
15345
14448
15344
14449
14457
15343
14450
14456
14451
14452
14456
14453
14455
14454
14462
14455
14459
14461
14456
14458
14457
14458
15342
14459
15341
14460
15340
14461
14501
15339
14462
14500
14463
14495
14464
14494
14465
14473
14466
14472
14467
14468
14472
14469
14471
14470
14478
14471
14475
14477
14472
14474
14473
14474
14494
14475
14493
14476
14492
14477
14485
14491
14478
14484
14479
14480
14484
14481
14483
14482
14522
14483
14487
14521
14484
14486
14485
14486
14490
14487
14489
14488
14520
14489
14509
14519
14490
14508
14491
14507
14492
14506
14493
14497
14494
14496
14495
14496
14500
14497
14499
14498
14506
14499
14503
14505
14500
14502
14501
14502
15338
14503
15337
14504
15336
14505
14513
15335
14506
14512
14507
14508
14512
14509
14511
14510
14518
14511
14515
14517
14512
14514
14513
14514
15334
14515
15333
14516
15332
14517
14701
15331
14518
14700
14519
14695
14520
14694
14521
14673
14522
14672
14523
14667
14524
14666
14525
14573
14526
14572
14527
14567
14528
14566
14529
14541
14530
14540
14531
14533
14532
14533
14535
14534
14540
14535
14537
14539
14536
14537
14547
14538
14546
14539
14543
14545
14540
14542
14541
14542
14566
14543
14565
14544
14564
14545
14557
14563
14546
14556
14547
14549
14548
14549
14551
14550
14556
14551
14553
14555
14552
14553
14595
14554
14594
14555
14559
14593
14556
14558
14557
14558
14562
14559
14561
14560
14592
14561
14581
14591
14562
14580
14563
14579
14564
14578
14565
14569
14566
14568
14567
14568
14572
14569
14571
14570
14578
14571
14575
14577
14572
14574
14573
14574
14666
14575
14665
14576
14664
14577
14585
14663
14578
14584
14579
14580
14584
14581
14583
14582
14590
14583
14587
14589
14584
14586
14585
14586
14662
14587
14661
14588
14660
14589
14637
14659
14590
14636
14591
14631
14592
14630
14593
14605
14594
14604
14595
14597
14596
14597
14599
14598
14604
14599
14601
14603
14600
14601
14611
14602
14610
14603
14607
14609
14604
14606
14605
14606
14630
14607
14629
14608
14628
14609
14621
14627
14610
14620
14611
14613
14612
14613
14615
14614
14620
14615
14617
14619
14616
14617
14787
14618
14786
14619
14623
14785
14620
14622
14621
14622
14626
14623
14625
14624
14784
14625
14645
14783
14626
14644
14627
14643
14628
14642
14629
14633
14630
14632
14631
14632
14636
14633
14635
14634
14642
14635
14639
14641
14636
14638
14637
14638
14658
14639
14657
14640
14656
14641
14649
14655
14642
14648
14643
14644
14648
14645
14647
14646
14782
14647
14651
14781
14648
14650
14649
14650
14654
14651
14653
14652
14780
14653
14737
14779
14654
14736
14655
14735
14656
14734
14657
14725
14658
14724
14659
14723
14660
14722
14661
14681
14662
14680
14663
14679
14664
14678
14665
14669
14666
14668
14667
14668
14672
14669
14671
14670
14678
14671
14675
14677
14672
14674
14673
14674
14694
14675
14693
14676
14692
14677
14685
14691
14678
14684
14679
14680
14684
14681
14683
14682
14722
14683
14687
14721
14684
14686
14685
14686
14690
14687
14689
14688
14720
14689
14709
14719
14690
14708
14691
14707
14692
14706
14693
14697
14694
14696
14695
14696
14700
14697
14699
14698
14706
14699
14703
14705
14700
14702
14701
14702
15330
14703
15329
14704
15328
14705
14713
15327
14706
14712
14707
14708
14712
14709
14711
14710
14718
14711
14715
14717
14712
14714
14713
14714
15326
14715
15325
14716
15324
14717
14757
15323
14718
14756
14719
14751
14720
14750
14721
14729
14722
14728
14723
14724
14728
14725
14727
14726
14734
14727
14731
14733
14728
14730
14729
14730
14750
14731
14749
14732
14748
14733
14741
14747
14734
14740
14735
14736
14740
14737
14739
14738
14778
14739
14743
14777
14740
14742
14741
14742
14746
14743
14745
14744
14776
14745
14765
14775
14746
14764
14747
14763
14748
14762
14749
14753
14750
14752
14751
14752
14756
14753
14755
14754
14762
14755
14759
14761
14756
14758
14757
14758
15322
14759
15321
14760
15320
14761
14769
15319
14762
14768
14763
14764
14768
14765
14767
14766
14774
14767
14771
14773
14768
14770
14769
14770
15318
14771
15317
14772
15316
14773
14957
15315
14774
14956
14775
14951
14776
14950
14777
14929
14778
14928
14779
14923
14780
14922
14781
14829
14782
14828
14783
14823
14784
14822
14785
14797
14786
14796
14787
14789
14788
14789
14791
14790
14796
14791
14793
14795
14792
14793
14803
14794
14802
14795
14799
14801
14796
14798
14797
14798
14822
14799
14821
14800
14820
14801
14813
14819
14802
14812
14803
14805
14804
14805
14807
14806
14812
14807
14809
14811
14808
14809
14851
14810
14850
14811
14815
14849
14812
14814
14813
14814
14818
14815
14817
14816
14848
14817
14837
14847
14818
14836
14819
14835
14820
14834
14821
14825
14822
14824
14823
14824
14828
14825
14827
14826
14834
14827
14831
14833
14828
14830
14829
14830
14922
14831
14921
14832
14920
14833
14841
14919
14834
14840
14835
14836
14840
14837
14839
14838
14846
14839
14843
14845
14840
14842
14841
14842
14918
14843
14917
14844
14916
14845
14893
14915
14846
14892
14847
14887
14848
14886
14849
14861
14850
14860
14851
14853
14852
14853
14855
14854
14860
14855
14857
14859
14856
14857
14867
14858
14866
14859
14863
14865
14860
14862
14861
14862
14886
14863
14885
14864
14884
14865
14877
14883
14866
14876
14867
14869
14868
14869
14871
14870
14876
14871
14873
14875
14872
14873
15043
14874
15042
14875
14879
15041
14876
14878
14877
14878
14882
14879
14881
14880
15040
14881
14901
15039
14882
14900
14883
14899
14884
14898
14885
14889
14886
14888
14887
14888
14892
14889
14891
14890
14898
14891
14895
14897
14892
14894
14893
14894
14914
14895
14913
14896
14912
14897
14905
14911
14898
14904
14899
14900
14904
14901
14903
14902
15038
14903
14907
15037
14904
14906
14905
14906
14910
14907
14909
14908
15036
14909
14993
15035
14910
14992
14911
14991
14912
14990
14913
14981
14914
14980
14915
14979
14916
14978
14917
14937
14918
14936
14919
14935
14920
14934
14921
14925
14922
14924
14923
14924
14928
14925
14927
14926
14934
14927
14931
14933
14928
14930
14929
14930
14950
14931
14949
14932
14948
14933
14941
14947
14934
14940
14935
14936
14940
14937
14939
14938
14978
14939
14943
14977
14940
14942
14941
14942
14946
14943
14945
14944
14976
14945
14965
14975
14946
14964
14947
14963
14948
14962
14949
14953
14950
14952
14951
14952
14956
14953
14955
14954
14962
14955
14959
14961
14956
14958
14957
14958
15314
14959
15313
14960
15312
14961
14969
15311
14962
14968
14963
14964
14968
14965
14967
14966
14974
14967
14971
14973
14968
14970
14969
14970
15310
14971
15309
14972
15308
14973
15013
15307
14974
15012
14975
15007
14976
15006
14977
14985
14978
14984
14979
14980
14984
14981
14983
14982
14990
14983
14987
14989
14984
14986
14985
14986
15006
14987
15005
14988
15004
14989
14997
15003
14990
14996
14991
14992
14996
14993
14995
14994
15034
14995
14999
15033
14996
14998
14997
14998
15002
14999
15001
15000
15032
15001
15021
15031
15002
15020
15003
15019
15004
15018
15005
15009
15006
15008
15007
15008
15012
15009
15011
15010
15018
15011
15015
15017
15012
15014
15013
15014
15306
15015
15305
15016
15304
15017
15025
15303
15018
15024
15019
15020
15024
15021
15023
15022
15030
15023
15027
15029
15024
15026
15025
15026
15302
15027
15301
15028
15300
15029
15213
15299
15030
15212
15031
15207
15032
15206
15033
15185
15034
15184
15035
15179
15036
15178
15037
15085
15038
15084
15039
15079
15040
15078
15041
15053
15042
15052
15043
15045
15044
15045
15047
15046
15052
15047
15049
15051
15048
15049
15059
15050
15058
15051
15055
15057
15052
15054
15053
15054
15078
15055
15077
15056
15076
15057
15069
15075
15058
15068
15059
15061
15060
15061
15063
15062
15068
15063
15065
15067
15064
15065
15107
15066
15106
15067
15071
15105
15068
15070
15069
15070
15074
15071
15073
15072
15104
15073
15093
15103
15074
15092
15075
15091
15076
15090
15077
15081
15078
15080
15079
15080
15084
15081
15083
15082
15090
15083
15087
15089
15084
15086
15085
15086
15178
15087
15177
15088
15176
15089
15097
15175
15090
15096
15091
15092
15096
15093
15095
15094
15102
15095
15099
15101
15096
15098
15097
15098
15174
15099
15173
15100
15172
15101
15149
15171
15102
15148
15103
15143
15104
15142
15105
15117
15106
15116
15107
15109
15108
15109
15111
15110
15116
15111
15113
15115
15112
15113
15123
15114
15122
15115
15119
15121
15116
15118
15117
15118
15142
15119
15141
15120
15140
15121
15133
15139
15122
15132
15123
15125
15124
15125
15127
15126
15132
15127
15129
15131
15128
15129
17283
15130
17282
15131
15135
17281
15132
15134
15133
15134
15138
15135
15137
15136
17280
15137
15157
17279
15138
15156
15139
15155
15140
15154
15141
15145
15142
15144
15143
15144
15148
15145
15147
15146
15154
15147
15151
15153
15148
15150
15149
15150
15170
15151
15169
15152
15168
15153
15161
15167
15154
15160
15155
15156
15160
15157
15159
15158
17278
15159
15163
17277
15160
15162
15161
15162
15166
15163
15165
15164
17276
15165
15249
17275
15166
15248
15167
15247
15168
15246
15169
15237
15170
15236
15171
15235
15172
15234
15173
15193
15174
15192
15175
15191
15176
15190
15177
15181
15178
15180
15179
15180
15184
15181
15183
15182
15190
15183
15187
15189
15184
15186
15185
15186
15206
15187
15205
15188
15204
15189
15197
15203
15190
15196
15191
15192
15196
15193
15195
15194
15234
15195
15199
15233
15196
15198
15197
15198
15202
15199
15201
15200
15232
15201
15221
15231
15202
15220
15203
15219
15204
15218
15205
15209
15206
15208
15207
15208
15212
15209
15211
15210
15218
15211
15215
15217
15212
15214
15213
15214
15298
15215
15297
15216
15296
15217
15225
15295
15218
15224
15219
15220
15224
15221
15223
15222
15230
15223
15227
15229
15224
15226
15225
15226
15294
15227
15293
15228
15292
15229
15269
15291
15230
15268
15231
15263
15232
15262
15233
15241
15234
15240
15235
15236
15240
15237
15239
15238
15246
15239
15243
15245
15240
15242
15241
15242
15262
15243
15261
15244
15260
15245
15253
15259
15246
15252
15247
15248
15252
15249
15251
15250
17274
15251
15255
17273
15252
15254
15253
15254
15258
15255
15257
15256
17272
15257
15277
17271
15258
15276
15259
15275
15260
15274
15261
15265
15262
15264
15263
15264
15268
15265
15267
15266
15274
15267
15271
15273
15268
15270
15269
15270
15290
15271
15289
15272
15288
15273
15281
15287
15274
15280
15275
15276
15280
15277
15279
15278
17270
15279
15283
17269
15280
15282
15281
15282
15286
15283
15285
15284
17268
15285
16617
17267
15286
16616
15287
16615
15288
16614
15289
16605
15290
16604
15291
16603
15292
16602
15293
16561
15294
16560
15295
16559
15296
16558
15297
16549
15298
16548
15299
16547
15300
16546
15301
16377
15302
16376
15303
16375
15304
16374
15305
16365
15306
16364
15307
16363
15308
16362
15309
16321
15310
16320
15311
16319
15312
16318
15313
16309
15314
16308
15315
16307
15316
16306
15317
15657
15318
15656
15319
15655
15320
15654
15321
15645
15322
15644
15323
15643
15324
15642
15325
15601
15326
15600
15327
15599
15328
15598
15329
15589
15330
15588
15331
15587
15332
15586
15333
15417
15334
15416
15335
15415
15336
15414
15337
15405
15338
15404
15339
15403
15340
15402
15341
15361
15342
15360
15343
15359
15344
15358
15345
15349
15346
15348
15347
15348
15352
15349
15351
15350
15358
15351
15355
15357
15352
15354
15353
15354
15374
15355
15373
15356
15372
15357
15365
15371
15358
15364
15359
15360
15364
15361
15363
15362
15402
15363
15367
15401
15364
15366
15365
15366
15370
15367
15369
15368
15400
15369
15389
15399
15370
15388
15371
15387
15372
15386
15373
15377
15374
15376
15375
15376
15380
15377
15379
15378
15386
15379
15383
15385
15380
15382
15381
15382
15466
15383
15465
15384
15464
15385
15393
15463
15386
15392
15387
15388
15392
15389
15391
15390
15398
15391
15395
15397
15392
15394
15393
15394
15462
15395
15461
15396
15460
15397
15437
15459
15398
15436
15399
15431
15400
15430
15401
15409
15402
15408
15403
15404
15408
15405
15407
15406
15414
15407
15411
15413
15408
15410
15409
15410
15430
15411
15429
15412
15428
15413
15421
15427
15414
15420
15415
15416
15420
15417
15419
15418
15586
15419
15423
15585
15420
15422
15421
15422
15426
15423
15425
15424
15584
15425
15445
15583
15426
15444
15427
15443
15428
15442
15429
15433
15430
15432
15431
15432
15436
15433
15435
15434
15442
15435
15439
15441
15436
15438
15437
15438
15458
15439
15457
15440
15456
15441
15449
15455
15442
15448
15443
15444
15448
15445
15447
15446
15582
15447
15451
15581
15448
15450
15449
15450
15454
15451
15453
15452
15580
15453
15537
15579
15454
15536
15455
15535
15456
15534
15457
15525
15458
15524
15459
15523
15460
15522
15461
15481
15462
15480
15463
15479
15464
15478
15465
15469
15466
15468
15467
15468
15472
15469
15471
15470
15478
15471
15475
15477
15472
15474
15473
15474
15494
15475
15493
15476
15492
15477
15485
15491
15478
15484
15479
15480
15484
15481
15483
15482
15522
15483
15487
15521
15484
15486
15485
15486
15490
15487
15489
15488
15520
15489
15509
15519
15490
15508
15491
15507
15492
15506
15493
15497
15494
15496
15495
15496
15500
15497
15499
15498
15506
15499
15503
15505
15500
15502
15501
15502
15842
15503
15841
15504
15840
15505
15513
15839
15506
15512
15507
15508
15512
15509
15511
15510
15518
15511
15515
15517
15512
15514
15513
15514
15838
15515
15837
15516
15836
15517
15557
15835
15518
15556
15519
15551
15520
15550
15521
15529
15522
15528
15523
15524
15528
15525
15527
15526
15534
15527
15531
15533
15528
15530
15529
15530
15550
15531
15549
15532
15548
15533
15541
15547
15534
15540
15535
15536
15540
15537
15539
15538
15578
15539
15543
15577
15540
15542
15541
15542
15546
15543
15545
15544
15576
15545
15565
15575
15546
15564
15547
15563
15548
15562
15549
15553
15550
15552
15551
15552
15556
15553
15555
15554
15562
15555
15559
15561
15556
15558
15557
15558
15834
15559
15833
15560
15832
15561
15569
15831
15562
15568
15563
15564
15568
15565
15567
15566
15574
15567
15571
15573
15568
15570
15569
15570
15830
15571
15829
15572
15828
15573
15741
15827
15574
15740
15575
15735
15576
15734
15577
15713
15578
15712
15579
15707
15580
15706
15581
15621
15582
15620
15583
15615
15584
15614
15585
15593
15586
15592
15587
15588
15592
15589
15591
15590
15598
15591
15595
15597
15592
15594
15593
15594
15614
15595
15613
15596
15612
15597
15605
15611
15598
15604
15599
15600
15604
15601
15603
15602
15642
15603
15607
15641
15604
15606
15605
15606
15610
15607
15609
15608
15640
15609
15629
15639
15610
15628
15611
15627
15612
15626
15613
15617
15614
15616
15615
15616
15620
15617
15619
15618
15626
15619
15623
15625
15620
15622
15621
15622
15706
15623
15705
15624
15704
15625
15633
15703
15626
15632
15627
15628
15632
15629
15631
15630
15638
15631
15635
15637
15632
15634
15633
15634
15702
15635
15701
15636
15700
15637
15677
15699
15638
15676
15639
15671
15640
15670
15641
15649
15642
15648
15643
15644
15648
15645
15647
15646
15654
15647
15651
15653
15648
15650
15649
15650
15670
15651
15669
15652
15668
15653
15661
15667
15654
15660
15655
15656
15660
15657
15659
15658
16306
15659
15663
16305
15660
15662
15661
15662
15666
15663
15665
15664
16304
15665
15685
16303
15666
15684
15667
15683
15668
15682
15669
15673
15670
15672
15671
15672
15676
15673
15675
15674
15682
15675
15679
15681
15676
15678
15677
15678
15698
15679
15697
15680
15696
15681
15689
15695
15682
15688
15683
15684
15688
15685
15687
15686
16302
15687
15691
16301
15688
15690
15689
15690
15694
15691
15693
15692
16300
15693
15777
16299
15694
15776
15695
15775
15696
15774
15697
15765
15698
15764
15699
15763
15700
15762
15701
15721
15702
15720
15703
15719
15704
15718
15705
15709
15706
15708
15707
15708
15712
15709
15711
15710
15718
15711
15715
15717
15712
15714
15713
15714
15734
15715
15733
15716
15732
15717
15725
15731
15718
15724
15719
15720
15724
15721
15723
15722
15762
15723
15727
15761
15724
15726
15725
15726
15730
15727
15729
15728
15760
15729
15749
15759
15730
15748
15731
15747
15732
15746
15733
15737
15734
15736
15735
15736
15740
15737
15739
15738
15746
15739
15743
15745
15740
15742
15741
15742
15826
15743
15825
15744
15824
15745
15753
15823
15746
15752
15747
15748
15752
15749
15751
15750
15758
15751
15755
15757
15752
15754
15753
15754
15822
15755
15821
15756
15820
15757
15797
15819
15758
15796
15759
15791
15760
15790
15761
15769
15762
15768
15763
15764
15768
15765
15767
15766
15774
15767
15771
15773
15768
15770
15769
15770
15790
15771
15789
15772
15788
15773
15781
15787
15774
15780
15775
15776
15780
15777
15779
15778
16298
15779
15783
16297
15780
15782
15781
15782
15786
15783
15785
15784
16296
15785
15805
16295
15786
15804
15787
15803
15788
15802
15789
15793
15790
15792
15791
15792
15796
15793
15795
15794
15802
15795
15799
15801
15796
15798
15797
15798
15818
15799
15817
15800
15816
15801
15809
15815
15802
15808
15803
15804
15808
15805
15807
15806
16294
15807
15811
16293
15808
15810
15809
15810
15814
15811
15813
15812
16292
15813
16137
16291
15814
16136
15815
16135
15816
16134
15817
16125
15818
16124
15819
16123
15820
16122
15821
16081
15822
16080
15823
16079
15824
16078
15825
16069
15826
16068
15827
16067
15828
16066
15829
15913
15830
15912
15831
15911
15832
15910
15833
15901
15834
15900
15835
15899
15836
15898
15837
15857
15838
15856
15839
15855
15840
15854
15841
15845
15842
15844
15843
15844
15848
15845
15847
15846
15854
15847
15851
15853
15848
15850
15849
15850
15870
15851
15869
15852
15868
15853
15861
15867
15854
15860
15855
15856
15860
15857
15859
15858
15898
15859
15863
15897
15860
15862
15861
15862
15866
15863
15865
15864
15896
15865
15885
15895
15866
15884
15867
15883
15868
15882
15869
15873
15870
15872
15871
15872
15876
15873
15875
15874
15882
15875
15879
15881
15876
15878
15877
15878
15962
15879
15961
15880
15960
15881
15889
15959
15882
15888
15883
15884
15888
15885
15887
15886
15894
15887
15891
15893
15888
15890
15889
15890
15958
15891
15957
15892
15956
15893
15933
15955
15894
15932
15895
15927
15896
15926
15897
15905
15898
15904
15899
15900
15904
15901
15903
15902
15910
15903
15907
15909
15904
15906
15905
15906
15926
15907
15925
15908
15924
15909
15917
15923
15910
15916
15911
15912
15916
15913
15915
15914
16066
15915
15919
16065
15916
15918
15917
15918
15922
15919
15921
15920
16064
15921
15941
16063
15922
15940
15923
15939
15924
15938
15925
15929
15926
15928
15927
15928
15932
15929
15931
15930
15938
15931
15935
15937
15932
15934
15933
15934
15954
15935
15953
15936
15952
15937
15945
15951
15938
15944
15939
15940
15944
15941
15943
15942
16062
15943
15947
16061
15944
15946
15945
15946
15950
15947
15949
15948
16060
15949
16025
16059
15950
16024
15951
16023
15952
16022
15953
16013
15954
16012
15955
16011
15956
16010
15957
15977
15958
15976
15959
15975
15960
15974
15961
15965
15962
15964
15963
15964
15968
15965
15967
15966
15974
15967
15971
15973
15968
15970
15969
15970
15990
15971
15989
15972
15988
15973
15981
15987
15974
15980
15975
15976
15980
15977
15979
15978
16010
15979
15983
16009
15980
15982
15981
15982
15986
15983
15985
15984
16008
15985
16001
16007
15986
16000
15987
15999
15988
15998
15989
15993
15990
15992
15991
15992
15996
15993
15995
15994
15998
15995
15997
15996
15998
16004
15999
16000
16004
16001
16003
16002
16006
16003
16005
16004
16006
16044
16007
16039
16008
16038
16009
16017
16010
16016
16011
16012
16016
16013
16015
16014
16022
16015
16019
16021
16016
16018
16017
16018
16038
16019
16037
16020
16036
16021
16029
16035
16022
16028
16023
16024
16028
16025
16027
16026
16058
16027
16031
16057
16028
16030
16029
16030
16034
16031
16033
16032
16056
16033
16049
16055
16034
16048
16035
16047
16036
16046
16037
16041
16038
16040
16039
16040
16044
16041
16043
16042
16046
16043
16045
16044
16046
16052
16047
16048
16052
16049
16051
16050
16054
16051
16053
16052
16054
16220
16055
16215
16056
16214
16057
16193
16058
16192
16059
16187
16060
16186
16061
16101
16062
16100
16063
16095
16064
16094
16065
16073
16066
16072
16067
16068
16072
16069
16071
16070
16078
16071
16075
16077
16072
16074
16073
16074
16094
16075
16093
16076
16092
16077
16085
16091
16078
16084
16079
16080
16084
16081
16083
16082
16122
16083
16087
16121
16084
16086
16085
16086
16090
16087
16089
16088
16120
16089
16109
16119
16090
16108
16091
16107
16092
16106
16093
16097
16094
16096
16095
16096
16100
16097
16099
16098
16106
16099
16103
16105
16100
16102
16101
16102
16186
16103
16185
16104
16184
16105
16113
16183
16106
16112
16107
16108
16112
16109
16111
16110
16118
16111
16115
16117
16112
16114
16113
16114
16182
16115
16181
16116
16180
16117
16157
16179
16118
16156
16119
16151
16120
16150
16121
16129
16122
16128
16123
16124
16128
16125
16127
16126
16134
16127
16131
16133
16128
16130
16129
16130
16150
16131
16149
16132
16148
16133
16141
16147
16134
16140
16135
16136
16140
16137
16139
16138
16290
16139
16143
16289
16140
16142
16141
16142
16146
16143
16145
16144
16288
16145
16165
16287
16146
16164
16147
16163
16148
16162
16149
16153
16150
16152
16151
16152
16156
16153
16155
16154
16162
16155
16159
16161
16156
16158
16157
16158
16178
16159
16177
16160
16176
16161
16169
16175
16162
16168
16163
16164
16168
16165
16167
16166
16286
16167
16171
16285
16168
16170
16169
16170
16174
16171
16173
16172
16284
16173
16249
16283
16174
16248
16175
16247
16176
16246
16177
16237
16178
16236
16179
16235
16180
16234
16181
16201
16182
16200
16183
16199
16184
16198
16185
16189
16186
16188
16187
16188
16192
16189
16191
16190
16198
16191
16195
16197
16192
16194
16193
16194
16214
16195
16213
16196
16212
16197
16205
16211
16198
16204
16199
16200
16204
16201
16203
16202
16234
16203
16207
16233
16204
16206
16205
16206
16210
16207
16209
16208
16232
16209
16225
16231
16210
16224
16211
16223
16212
16222
16213
16217
16214
16216
16215
16216
16220
16217
16219
16218
16222
16219
16221
16220
16222
16228
16223
16224
16228
16225
16227
16226
16230
16227
16229
16228
16230
16268
16231
16263
16232
16262
16233
16241
16234
16240
16235
16236
16240
16237
16239
16238
16246
16239
16243
16245
16240
16242
16241
16242
16262
16243
16261
16244
16260
16245
16253
16259
16246
16252
16247
16248
16252
16249
16251
16250
16282
16251
16255
16281
16252
16254
16253
16254
16258
16255
16257
16256
16280
16257
16273
16279
16258
16272
16259
16271
16260
16270
16261
16265
16262
16264
16263
16264
16268
16265
16267
16266
16270
16267
16269
16268
16270
16276
16271
16272
16276
16273
16275
16274
16278
16275
16277
16276
16278
16956
16279
16951
16280
16950
16281
16929
16282
16928
16283
16923
16284
16922
16285
16837
16286
16836
16287
16831
16288
16830
16289
16809
16290
16808
16291
16803
16292
16802
16293
16461
16294
16460
16295
16455
16296
16454
16297
16433
16298
16432
16299
16427
16300
16426
16301
16341
16302
16340
16303
16335
16304
16334
16305
16313
16306
16312
16307
16308
16312
16309
16311
16310
16318
16311
16315
16317
16312
16314
16313
16314
16334
16315
16333
16316
16332
16317
16325
16331
16318
16324
16319
16320
16324
16321
16323
16322
16362
16323
16327
16361
16324
16326
16325
16326
16330
16327
16329
16328
16360
16329
16349
16359
16330
16348
16331
16347
16332
16346
16333
16337
16334
16336
16335
16336
16340
16337
16339
16338
16346
16339
16343
16345
16340
16342
16341
16342
16426
16343
16425
16344
16424
16345
16353
16423
16346
16352
16347
16348
16352
16349
16351
16350
16358
16351
16355
16357
16352
16354
16353
16354
16422
16355
16421
16356
16420
16357
16397
16419
16358
16396
16359
16391
16360
16390
16361
16369
16362
16368
16363
16364
16368
16365
16367
16366
16374
16367
16371
16373
16368
16370
16369
16370
16390
16371
16389
16372
16388
16373
16381
16387
16374
16380
16375
16376
16380
16377
16379
16378
16546
16379
16383
16545
16380
16382
16381
16382
16386
16383
16385
16384
16544
16385
16405
16543
16386
16404
16387
16403
16388
16402
16389
16393
16390
16392
16391
16392
16396
16393
16395
16394
16402
16395
16399
16401
16396
16398
16397
16398
16418
16399
16417
16400
16416
16401
16409
16415
16402
16408
16403
16404
16408
16405
16407
16406
16542
16407
16411
16541
16408
16410
16409
16410
16414
16411
16413
16412
16540
16413
16497
16539
16414
16496
16415
16495
16416
16494
16417
16485
16418
16484
16419
16483
16420
16482
16421
16441
16422
16440
16423
16439
16424
16438
16425
16429
16426
16428
16427
16428
16432
16429
16431
16430
16438
16431
16435
16437
16432
16434
16433
16434
16454
16435
16453
16436
16452
16437
16445
16451
16438
16444
16439
16440
16444
16441
16443
16442
16482
16443
16447
16481
16444
16446
16445
16446
16450
16447
16449
16448
16480
16449
16469
16479
16450
16468
16451
16467
16452
16466
16453
16457
16454
16456
16455
16456
16460
16457
16459
16458
16466
16459
16463
16465
16460
16462
16461
16462
16802
16463
16801
16464
16800
16465
16473
16799
16466
16472
16467
16468
16472
16469
16471
16470
16478
16471
16475
16477
16472
16474
16473
16474
16798
16475
16797
16476
16796
16477
16517
16795
16478
16516
16479
16511
16480
16510
16481
16489
16482
16488
16483
16484
16488
16485
16487
16486
16494
16487
16491
16493
16488
16490
16489
16490
16510
16491
16509
16492
16508
16493
16501
16507
16494
16500
16495
16496
16500
16497
16499
16498
16538
16499
16503
16537
16500
16502
16501
16502
16506
16503
16505
16504
16536
16505
16525
16535
16506
16524
16507
16523
16508
16522
16509
16513
16510
16512
16511
16512
16516
16513
16515
16514
16522
16515
16519
16521
16516
16518
16517
16518
16794
16519
16793
16520
16792
16521
16529
16791
16522
16528
16523
16524
16528
16525
16527
16526
16534
16527
16531
16533
16528
16530
16529
16530
16790
16531
16789
16532
16788
16533
16701
16787
16534
16700
16535
16695
16536
16694
16537
16673
16538
16672
16539
16667
16540
16666
16541
16581
16542
16580
16543
16575
16544
16574
16545
16553
16546
16552
16547
16548
16552
16549
16551
16550
16558
16551
16555
16557
16552
16554
16553
16554
16574
16555
16573
16556
16572
16557
16565
16571
16558
16564
16559
16560
16564
16561
16563
16562
16602
16563
16567
16601
16564
16566
16565
16566
16570
16567
16569
16568
16600
16569
16589
16599
16570
16588
16571
16587
16572
16586
16573
16577
16574
16576
16575
16576
16580
16577
16579
16578
16586
16579
16583
16585
16580
16582
16581
16582
16666
16583
16665
16584
16664
16585
16593
16663
16586
16592
16587
16588
16592
16589
16591
16590
16598
16591
16595
16597
16592
16594
16593
16594
16662
16595
16661
16596
16660
16597
16637
16659
16598
16636
16599
16631
16600
16630
16601
16609
16602
16608
16603
16604
16608
16605
16607
16606
16614
16607
16611
16613
16608
16610
16609
16610
16630
16611
16629
16612
16628
16613
16621
16627
16614
16620
16615
16616
16620
16617
16619
16618
17266
16619
16623
17265
16620
16622
16621
16622
16626
16623
16625
16624
17264
16625
16645
17263
16626
16644
16627
16643
16628
16642
16629
16633
16630
16632
16631
16632
16636
16633
16635
16634
16642
16635
16639
16641
16636
16638
16637
16638
16658
16639
16657
16640
16656
16641
16649
16655
16642
16648
16643
16644
16648
16645
16647
16646
17262
16647
16651
17261
16648
16650
16649
16650
16654
16651
16653
16652
17260
16653
16737
17259
16654
16736
16655
16735
16656
16734
16657
16725
16658
16724
16659
16723
16660
16722
16661
16681
16662
16680
16663
16679
16664
16678
16665
16669
16666
16668
16667
16668
16672
16669
16671
16670
16678
16671
16675
16677
16672
16674
16673
16674
16694
16675
16693
16676
16692
16677
16685
16691
16678
16684
16679
16680
16684
16681
16683
16682
16722
16683
16687
16721
16684
16686
16685
16686
16690
16687
16689
16688
16720
16689
16709
16719
16690
16708
16691
16707
16692
16706
16693
16697
16694
16696
16695
16696
16700
16697
16699
16698
16706
16699
16703
16705
16700
16702
16701
16702
16786
16703
16785
16704
16784
16705
16713
16783
16706
16712
16707
16708
16712
16709
16711
16710
16718
16711
16715
16717
16712
16714
16713
16714
16782
16715
16781
16716
16780
16717
16757
16779
16718
16756
16719
16751
16720
16750
16721
16729
16722
16728
16723
16724
16728
16725
16727
16726
16734
16727
16731
16733
16728
16730
16729
16730
16750
16731
16749
16732
16748
16733
16741
16747
16734
16740
16735
16736
16740
16737
16739
16738
17258
16739
16743
17257
16740
16742
16741
16742
16746
16743
16745
16744
17256
16745
16765
17255
16746
16764
16747
16763
16748
16762
16749
16753
16750
16752
16751
16752
16756
16753
16755
16754
16762
16755
16759
16761
16756
16758
16757
16758
16778
16759
16777
16760
16776
16761
16769
16775
16762
16768
16763
16764
16768
16765
16767
16766
17254
16767
16771
17253
16768
16770
16769
16770
16774
16771
16773
16772
17252
16773
17097
17251
16774
17096
16775
17095
16776
17094
16777
17085
16778
17084
16779
17083
16780
17082
16781
17041
16782
17040
16783
17039
16784
17038
16785
17029
16786
17028
16787
17027
16788
17026
16789
16873
16790
16872
16791
16871
16792
16870
16793
16861
16794
16860
16795
16859
16796
16858
16797
16817
16798
16816
16799
16815
16800
16814
16801
16805
16802
16804
16803
16804
16808
16805
16807
16806
16814
16807
16811
16813
16808
16810
16809
16810
16830
16811
16829
16812
16828
16813
16821
16827
16814
16820
16815
16816
16820
16817
16819
16818
16858
16819
16823
16857
16820
16822
16821
16822
16826
16823
16825
16824
16856
16825
16845
16855
16826
16844
16827
16843
16828
16842
16829
16833
16830
16832
16831
16832
16836
16833
16835
16834
16842
16835
16839
16841
16836
16838
16837
16838
16922
16839
16921
16840
16920
16841
16849
16919
16842
16848
16843
16844
16848
16845
16847
16846
16854
16847
16851
16853
16848
16850
16849
16850
16918
16851
16917
16852
16916
16853
16893
16915
16854
16892
16855
16887
16856
16886
16857
16865
16858
16864
16859
16860
16864
16861
16863
16862
16870
16863
16867
16869
16864
16866
16865
16866
16886
16867
16885
16868
16884
16869
16877
16883
16870
16876
16871
16872
16876
16873
16875
16874
17026
16875
16879
17025
16876
16878
16877
16878
16882
16879
16881
16880
17024
16881
16901
17023
16882
16900
16883
16899
16884
16898
16885
16889
16886
16888
16887
16888
16892
16889
16891
16890
16898
16891
16895
16897
16892
16894
16893
16894
16914
16895
16913
16896
16912
16897
16905
16911
16898
16904
16899
16900
16904
16901
16903
16902
17022
16903
16907
17021
16904
16906
16905
16906
16910
16907
16909
16908
17020
16909
16985
17019
16910
16984
16911
16983
16912
16982
16913
16973
16914
16972
16915
16971
16916
16970
16917
16937
16918
16936
16919
16935
16920
16934
16921
16925
16922
16924
16923
16924
16928
16925
16927
16926
16934
16927
16931
16933
16928
16930
16929
16930
16950
16931
16949
16932
16948
16933
16941
16947
16934
16940
16935
16936
16940
16937
16939
16938
16970
16939
16943
16969
16940
16942
16941
16942
16946
16943
16945
16944
16968
16945
16961
16967
16946
16960
16947
16959
16948
16958
16949
16953
16950
16952
16951
16952
16956
16953
16955
16954
16958
16955
16957
16956
16958
16964
16959
16960
16964
16961
16963
16962
16966
16963
16965
16964
16966
17004
16967
16999
16968
16998
16969
16977
16970
16976
16971
16972
16976
16973
16975
16974
16982
16975
16979
16981
16976
16978
16977
16978
16998
16979
16997
16980
16996
16981
16989
16995
16982
16988
16983
16984
16988
16985
16987
16986
17018
16987
16991
17017
16988
16990
16989
16990
16994
16991
16993
16992
17016
16993
17009
17015
16994
17008
16995
17007
16996
17006
16997
17001
16998
17000
16999
17000
17004
17001
17003
17002
17006
17003
17005
17004
17006
17012
17007
17008
17012
17009
17011
17010
17014
17011
17013
17012
17014
17180
17015
17175
17016
17174
17017
17153
17018
17152
17019
17147
17020
17146
17021
17061
17022
17060
17023
17055
17024
17054
17025
17033
17026
17032
17027
17028
17032
17029
17031
17030
17038
17031
17035
17037
17032
17034
17033
17034
17054
17035
17053
17036
17052
17037
17045
17051
17038
17044
17039
17040
17044
17041
17043
17042
17082
17043
17047
17081
17044
17046
17045
17046
17050
17047
17049
17048
17080
17049
17069
17079
17050
17068
17051
17067
17052
17066
17053
17057
17054
17056
17055
17056
17060
17057
17059
17058
17066
17059
17063
17065
17060
17062
17061
17062
17146
17063
17145
17064
17144
17065
17073
17143
17066
17072
17067
17068
17072
17069
17071
17070
17078
17071
17075
17077
17072
17074
17073
17074
17142
17075
17141
17076
17140
17077
17117
17139
17078
17116
17079
17111
17080
17110
17081
17089
17082
17088
17083
17084
17088
17085
17087
17086
17094
17087
17091
17093
17088
17090
17089
17090
17110
17091
17109
17092
17108
17093
17101
17107
17094
17100
17095
17096
17100
17097
17099
17098
17250
17099
17103
17249
17100
17102
17101
17102
17106
17103
17105
17104
17248
17105
17125
17247
17106
17124
17107
17123
17108
17122
17109
17113
17110
17112
17111
17112
17116
17113
17115
17114
17122
17115
17119
17121
17116
17118
17117
17118
17138
17119
17137
17120
17136
17121
17129
17135
17122
17128
17123
17124
17128
17125
17127
17126
17246
17127
17131
17245
17128
17130
17129
17130
17134
17131
17133
17132
17244
17133
17209
17243
17134
17208
17135
17207
17136
17206
17137
17197
17138
17196
17139
17195
17140
17194
17141
17161
17142
17160
17143
17159
17144
17158
17145
17149
17146
17148
17147
17148
17152
17149
17151
17150
17158
17151
17155
17157
17152
17154
17153
17154
17174
17155
17173
17156
17172
17157
17165
17171
17158
17164
17159
17160
17164
17161
17163
17162
17194
17163
17167
17193
17164
17166
17165
17166
17170
17167
17169
17168
17192
17169
17185
17191
17170
17184
17171
17183
17172
17182
17173
17177
17174
17176
17175
17176
17180
17177
17179
17178
17182
17179
17181
17180
17182
17188
17183
17184
17188
17185
17187
17186
17190
17187
17189
17188
17190
17228
17191
17223
17192
17222
17193
17201
17194
17200
17195
17196
17200
17197
17199
17198
17206
17199
17203
17205
17200
17202
17201
17202
17222
17203
17221
17204
17220
17205
17213
17219
17206
17212
17207
17208
17212
17209
17211
17210
17242
17211
17215
17241
17212
17214
17213
17214
17218
17215
17217
17216
17240
17217
17233
17239
17218
17232
17219
17231
17220
17230
17221
17225
17222
17224
17223
17224
17228
17225
17227
17226
17230
17227
17229
17228
17230
17236
17231
17232
17236
17233
17235
17234
17238
17235
17237
17236
17238
23689
17239
23684
17240
23683
17241
23662
17242
23661
17243
23656
17244
23655
17245
23570
17246
23569
17247
23564
17248
23563
17249
23542
17250
23541
17251
23536
17252
23535
17253
23194
17254
23193
17255
23188
17256
23187
17257
23166
17258
23165
17259
23160
17260
23159
17261
23074
17262
23073
17263
23068
17264
23067
17265
23046
17266
23045
17267
23040
17268
23039
17269
17453
17270
17452
17271
17447
17272
17446
17273
17425
17274
17424
17275
17419
17276
17418
17277
17325
17278
17324
17279
17319
17280
17318
17281
17293
17282
17292
17283
17285
17284
17285
17287
17286
17292
17287
17289
17291
17288
17289
17299
17290
17298
17291
17295
17297
17292
17294
17293
17294
17318
17295
17317
17296
17316
17297
17309
17315
17298
17308
17299
17301
17300
17301
17303
17302
17308
17303
17305
17307
17304
17305
17347
17306
17346
17307
17311
17345
17308
17310
17309
17310
17314
17311
17313
17312
17344
17313
17333
17343
17314
17332
17315
17331
17316
17330
17317
17321
17318
17320
17319
17320
17324
17321
17323
17322
17330
17323
17327
17329
17324
17326
17325
17326
17418
17327
17417
17328
17416
17329
17337
17415
17330
17336
17331
17332
17336
17333
17335
17334
17342
17335
17339
17341
17336
17338
17337
17338
17414
17339
17413
17340
17412
17341
17389
17411
17342
17388
17343
17383
17344
17382
17345
17357
17346
17356
17347
17349
17348
17349
17351
17350
17356
17351
17353
17355
17352
17353
17363
17354
17362
17355
17359
17361
17356
17358
17357
17358
17382
17359
17381
17360
17380
17361
17373
17379
17362
17372
17363
17365
17364
17365
17367
17366
17372
17367
17369
17371
17368
17369
17539
17370
17538
17371
17375
17537
17372
17374
17373
17374
17378
17375
17377
17376
17536
17377
17397
17535
17378
17396
17379
17395
17380
17394
17381
17385
17382
17384
17383
17384
17388
17385
17387
17386
17394
17387
17391
17393
17388
17390
17389
17390
17410
17391
17409
17392
17408
17393
17401
17407
17394
17400
17395
17396
17400
17397
17399
17398
17534
17399
17403
17533
17400
17402
17401
17402
17406
17403
17405
17404
17532
17405
17489
17531
17406
17488
17407
17487
17408
17486
17409
17477
17410
17476
17411
17475
17412
17474
17413
17433
17414
17432
17415
17431
17416
17430
17417
17421
17418
17420
17419
17420
17424
17421
17423
17422
17430
17423
17427
17429
17424
17426
17425
17426
17446
17427
17445
17428
17444
17429
17437
17443
17430
17436
17431
17432
17436
17433
17435
17434
17474
17435
17439
17473
17436
17438
17437
17438
17442
17439
17441
17440
17472
17441
17461
17471
17442
17460
17443
17459
17444
17458
17445
17449
17446
17448
17447
17448
17452
17449
17451
17450
17458
17451
17455
17457
17452
17454
17453
17454
23039
17455
23038
17456
23037
17457
17465
23036
17458
17464
17459
17460
17464
17461
17463
17462
17470
17463
17467
17469
17464
17466
17465
17466
23035
17467
23034
17468
23033
17469
17509
23032
17470
17508
17471
17503
17472
17502
17473
17481
17474
17480
17475
17476
17480
17477
17479
17478
17486
17479
17483
17485
17480
17482
17481
17482
17502
17483
17501
17484
17500
17485
17493
17499
17486
17492
17487
17488
17492
17489
17491
17490
17530
17491
17495
17529
17492
17494
17493
17494
17498
17495
17497
17496
17528
17497
17517
17527
17498
17516
17499
17515
17500
17514
17501
17505
17502
17504
17503
17504
17508
17505
17507
17506
17514
17507
17511
17513
17508
17510
17509
17510
23031
17511
23030
17512
23029
17513
17521
23028
17514
17520
17515
17516
17520
17517
17519
17518
17526
17519
17523
17525
17520
17522
17521
17522
23027
17523
23026
17524
23025
17525
17711
23024
17526
17710
17527
17705
17528
17704
17529
17683
17530
17682
17531
17677
17532
17676
17533
17581
17534
17580
17535
17575
17536
17574
17537
17549
17538
17548
17539
17541
17540
17541
17543
17542
17548
17543
17545
17547
17544
17545
17555
17546
17554
17547
17551
17553
17548
17550
17549
17550
17574
17551
17573
17552
17572
17553
17565
17571
17554
17564
17555
17557
17556
17557
17559
17558
17564
17559
17561
17563
17560
17561
17603
17562
17602
17563
17567
17601
17564
17566
17565
17566
17570
17567
17569
17568
17600
17569
17589
17599
17570
17588
17571
17587
17572
17586
17573
17577
17574
17576
17575
17576
17580
17577
17579
17578
17586
17579
17583
17585
17580
17582
17581
17582
17676
17583
17675
17584
17674
17585
17593
17673
17586
17592
17587
17588
17592
17589
17591
17590
17598
17591
17595
17597
17592
17594
17593
17594
17672
17595
17671
17596
17670
17597
17647
17669
17598
17646
17599
17641
17600
17640
17601
17613
17602
17612
17603
17605
17604
17605
17607
17606
17612
17607
17609
17611
17608
17609
17619
17610
17618
17611
17615
17617
17612
17614
17613
17614
17640
17615
17639
17616
17638
17617
17631
17637
17618
17630
17619
17621
17620
17621
17623
17622
17630
17623
17627
17629
17624
17626
17625
17626
17798
17627
17797
17628
17796
17629
17633
17795
17630
17632
17631
17632
17636
17633
17635
17634
17794
17635
17655
17793
17636
17654
17637
17653
17638
17652
17639
17643
17640
17642
17641
17642
17646
17643
17645
17644
17652
17645
17649
17651
17646
17648
17647
17648
17668
17649
17667
17650
17666
17651
17659
17665
17652
17658
17653
17654
17658
17655
17657
17656
17792
17657
17661
17791
17658
17660
17659
17660
17664
17661
17663
17662
17790
17663
17747
17789
17664
17746
17665
17745
17666
17744
17667
17735
17668
17734
17669
17733
17670
17732
17671
17691
17672
17690
17673
17689
17674
17688
17675
17679
17676
17678
17677
17678
17682
17679
17681
17680
17688
17681
17685
17687
17682
17684
17683
17684
17704
17685
17703
17686
17702
17687
17695
17701
17688
17694
17689
17690
17694
17691
17693
17692
17732
17693
17697
17731
17694
17696
17695
17696
17700
17697
17699
17698
17730
17699
17719
17729
17700
17718
17701
17717
17702
17716
17703
17707
17704
17706
17705
17706
17710
17707
17709
17708
17716
17709
17713
17715
17710
17712
17711
17712
23023
17713
23022
17714
23021
17715
17723
23020
17716
17722
17717
17718
17722
17719
17721
17720
17728
17721
17725
17727
17722
17724
17723
17724
23019
17725
23018
17726
23017
17727
17767
23016
17728
17766
17729
17761
17730
17760
17731
17739
17732
17738
17733
17734
17738
17735
17737
17736
17744
17737
17741
17743
17738
17740
17739
17740
17760
17741
17759
17742
17758
17743
17751
17757
17744
17750
17745
17746
17750
17747
17749
17748
17788
17749
17753
17787
17750
17752
17751
17752
17756
17753
17755
17754
17786
17755
17775
17785
17756
17774
17757
17773
17758
17772
17759
17763
17760
17762
17761
17762
17766
17763
17765
17764
17772
17765
17769
17771
17766
17768
17767
17768
23015
17769
23014
17770
23013
17771
17779
23012
17772
17778
17773
17774
17778
17775
17777
17776
17784
17777
17781
17783
17778
17780
17779
17780
23011
17781
23010
17782
23009
17783
22538
23008
17784
22537
17785
22532
17786
22531
17787
22510
17788
22509
17789
22504
17790
22503
17791
18053
17792
18052
17793
18047
17794
18046
17795
17869
17796
17868
17797
17863
17798
17862
17799
17800
17862
17801
17859
17861
17802
17803
17855
17859
17804
17830
17854
17805
17830
17806
17807
17828
17830
17808
17816
17829
17809
17811
17816
17810
17812
17811
17813
17815
17816
17814
17815
17817
17816
17817
17825
17829
17818
17826
17819
17820
17826
17821
17823
17824
17822
17823
17837
17824
17833
17835
17837
17825
17826
17826
17827
17833
17828
17829
17832
17829
17830
17831
17854
17832
17841
17851
17853
17833
17841
17834
17835
17840
17841
17836
17838
17839
17837
17838
17840
17842
17841
17842
17848
17851
17843
17847
17844
17845
17846
17845
17847
17848
17849
17849
17850
17886
17851
17883
17885
17852
17853
17881
17883
17854
17856
17855
17856
17858
17857
17881
17858
17876
17880
17859
17875
17860
17861
17865
17875
17862
17864
17863
17864
17868
17865
17867
17866
17874
17867
17871
17873
17868
17870
17869
17870
18046
17871
18045
17872
18044
17873
18037
18043
17874
18036
17875
17877
17876
17877
17879
17878
18036
17879
18033
18035
17880
18032
17881
18031
17882
17883
18029
18031
17884
17885
17931
18029
17886
17930
17887
17888
17928
17930
17889
17890
17926
17928
17891
17924
17925
17892
17924
17893
17894
17922
17924
17895
17923
17896
17898
17901
17902
17917
17897
17902
17898
17899
17901
17900
17901
17903
17918
17904
17905
17915
17918
17906
17907
17915
17908
17913
17914
17909
17910
17912
17913
17911
17912
38787
17913
38787
38789
38792
17914
17915
17916
17919
38792
17916
17917
17918
17918
17919
17923
17920
17921
17921
17939
17941
38791
38792
17922
17923
17923
17924
17925
17939
17926
17938
17927
17937
17928
17934
17936
17929
17930
17932
17934
17931
17932
18028
17933
18027
17934
18024
18026
17935
17936
18022
18024
17937
18015
17938
18014
17939
18013
17940
17941
18009
18013
17942
18005
18008
17943
18005
38791
17944
18004
38789
17945
18003
38782
38783
38790
17946
38785
38790
17947
38783
38784
17948
17949
38783
17950
17952
38782
17951
17952
17953
17953
17995
18003
38782
17954
17955
17994
17995
17956
17993
17957
17958
17992
17993
17959
17960
17989
17992
17961
17962
17989
17963
17987
17988
17964
17965
17967
17988
17966
17967
17968
17968
17984
17986
17988
17969
17970
17983
17984
17971
17982
17972
17973
17981
17982
17974
17975
17977
17981
17976
17977
18130
17978
17979
17979
18122
18124
18130
18131
17980
17981
17981
17982
17983
18122
38781
17983
17984
17985
38781
17986
17999
18118
18120
38781
17987
17999
17988
17989
17990
17998
17990
17991
17992
17992
17993
17994
17996
17998
17994
17995
17996
18002
17997
18000
17998
17999
18000
18006
18118
17999
18001
18002
18002
18004
18005
18006
18008
18003
18004
18005
18007
18117
18008
18010
18116
18009
18010
18012
18011
18115
18012
18018
18114
18013
18017
18014
18015
18017
18016
18022
18017
18019
18021
18018
18019
18113
18020
18112
18021
18085
18111
18022
18084
18023
18024
18082
18084
18025
18026
18080
18082
18027
18079
18028
18078
18029
18077
18030
18031
18075
18077
18032
18033
18075
18034
18074
18035
18039
18073
18036
18038
18037
18038
18042
18039
18041
18040
18072
18041
18061
18071
18042
18060
18043
18059
18044
18058
18045
18049
18046
18048
18047
18048
18052
18049
18051
18050
18058
18051
18055
18057
18052
18054
18053
18054
22503
18055
22502
18056
22501
18057
18065
22500
18058
18064
18059
18060
18064
18061
18063
18062
18070
18063
18067
18069
18064
18066
18065
18066
22499
18067
22498
18068
22497
18069
22426
22496
18070
22425
18071
22420
18072
22419
18073
18097
18074
18096
18075
18095
18076
18077
18093
18095
18078
18079
18093
18080
18092
18081
18091
18082
18088
18090
18083
18084
18086
18088
18085
18086
18110
18087
18109
18088
18106
18108
18089
18090
18104
18106
18091
18103
18092
18102
18093
18101
18094
18095
18099
18101
18096
18097
18099
18098
22419
18099
22416
22418
18100
18101
22414
22416
18102
18103
22414
18104
22413
18105
22412
18106
22409
22411
18107
18108
22407
22409
18109
22322
18110
22321
18111
22316
18112
22315
18113
21102
18114
21101
18115
21096
18116
21095
18117
21074
18118
21073
18119
18120
21071
21073
18121
21065
21068
18122
21065
38781
18123
18124
21064
21065
18125
21066
18126
18128
18131
18132
21019
18127
18132
18128
18129
18131
18130
18131
18133
18134
21018
21019
18135
21017
18136
18137
21016
21017
18138
18139
21013
21016
18140
18141
21012
21013
18142
18143
21012
18144
21009
21010
18145
18146
21008
21009
18147
18148
21007
21008
18149
18150
21006
21007
18151
21005
18152
18386
18153
18385
18154
18155
18383
18385
18156
18157
18381
18383
18158
18159
18379
18381
18160
18161
18379
18162
18376
18378
18163
18164
18374
18376
18165
18166
18372
18374
18167
18168
18170
18372
18169
18170
18172
18171
18371
18172
18368
18370
18173
18367
18174
18175
18365
18367
18176
18177
18363
18365
18178
18179
18361
18363
18180
18181
18361
18182
18358
18360
18183
18184
18356
18358
18185
18186
18354
18356
18187
18188
18352
18354
18189
18190
18350
18352
18191
18192
18350
18193
18347
18349
18194
18195
18345
18347
18196
18197
18343
18345
18198
18199
18341
18343
18200
18201
18339
18341
18202
18203
18339
18204
18336
18338
18205
18206
18334
18336
18207
18208
18332
18334
18209
18210
18330
18332
18211
18212
18328
18330
18213
18214
18328
18215
18325
18327
18216
18217
18323
18325
18218
18219
18321
18323
18220
18221
18319
18321
18222
18223
18317
18319
18224
18225
18317
18226
18314
18316
18227
18228
18312
18314
18229
18230
18310
18312
18231
18232
18308
18310
18233
18234
18306
18308
18235
18236
18306
18237
18303
18305
18238
18239
18301
18303
18240
18241
18299
18301
18242
18243
18297
18299
18244
18245
18295
18297
18246
18247
18295
18248
18292
18294
18249
18250
18290
18292
18251
18252
18288
18290
18253
18254
18286
18288
18255
18256
18284
18286
18257
18258
18284
18259
18281
18283
18260
18261
18279
18281
18262
18263
18277
18279
18264
18265
18275
18277
18266
18267
18273
18275
18268
18269
18271
18273
18270
18271
18508
18272
18507
18273
18504
18506
18274
18275
18502
18504
18276
18277
18500
18502
18278
18279
18498
18500
18280
18281
18496
18498
18282
18283
18493
18496
18284
18492
18285
18286
18490
18492
18287
18288
18488
18490
18289
18290
18486
18488
18291
18292
18484
18486
18293
18294
18482
18484
18295
18481
18296
18297
18479
18481
18298
18299
18477
18479
18300
18301
18475
18477
18302
18303
18473
18475
18304
18305
18470
18473
18306
18469
18307
18308
18467
18469
18309
18310
18465
18467
18311
18312
18463
18465
18313
18314
18461
18463
18315
18316
18459
18461
18317
18458
18318
18319
18456
18458
18320
18321
18454
18456
18322
18323
18452
18454
18324
18325
18450
18452
18326
18327
18447
18450
18328
18446
18329
18330
18444
18446
18331
18332
18442
18444
18333
18334
18440
18442
18335
18336
18438
18440
18337
18338
18436
18438
18339
18435
18340
18341
18433
18435
18342
18343
18431
18433
18344
18345
18429
18431
18346
18347
18427
18429
18348
18349
18424
18427
18350
18423
18351
18352
18421
18423
18353
18354
18419
18421
18355
18356
18417
18419
18357
18358
18415
18417
18359
18360
18413
18415
18361
18412
18362
18363
18410
18412
18364
18365
18408
18410
18366
18367
18406
18408
18368
18369
18406
18370
18403
18405
18371
18401
18372
18400
18373
18374
18398
18400
18375
18376
18396
18398
18377
18378
18394
18396
18379
18393
18380
18381
18391
18393
18382
18383
18389
18391
18384
18385
18387
18389
18386
18387
21005
18388
21004
18389
21003
38737
18390
18391
21000
38737
18392
18393
20999
21000
18394
18395
20999
18396
20996
20997
18397
18398
20996
38738
18399
18400
18402
38738
18401
18402
18403
18403
20989
20995
38738
18404
18405
20988
20989
18406
20987
18407
18408
20986
20987
18409
18410
20983
20986
18411
18412
20983
38742
18413
18414
38742
18415
20980
20981
18416
18417
20979
20980
18418
18419
20977
20979
18420
18421
20977
20978
18422
18423
18425
20978
18424
18425
18426
18426
20958
20978
38743
18427
20959
18428
18429
20956
20959
18430
18431
20955
20956
18432
18433
20952
20955
18434
18435
20952
38745
18436
18437
38745
18438
20949
20950
18439
18440
20948
20949
18441
18442
20947
20948
18443
18444
20947
38746
18445
18446
18448
38746
18447
18448
18449
18449
20939
20946
38746
18450
20940
18451
18452
20937
20940
18453
18454
20936
20937
18455
18456
20933
20936
18457
18458
20932
20933
18459
18460
20932
18461
20929
20930
18462
18463
20928
20929
18464
18465
20926
20928
18466
18467
20926
20927
18468
18469
18471
20927
18470
18471
18472
18472
20922
20925
20927
18473
20923
18474
18475
20920
20923
18476
18477
20919
20920
18478
18479
20916
20919
18480
18481
20916
38747
18482
18483
38747
18484
20913
20914
18485
18486
20912
20913
18487
18488
20911
20912
18489
18490
20911
38748
18491
18492
18494
38748
18493
18494
18495
18495
20900
20910
38748
18496
20901
18497
18498
20898
20901
18499
18500
20897
20898
18501
18502
20894
20897
18503
18504
20894
38749
18505
18506
20891
38749
18507
18625
18508
18624
18509
18623
18510
18511
18621
18623
18512
18513
18619
18621
18514
18515
18617
18619
18516
18517
18519
18617
18518
18519
18521
18520
18616
18521
18613
18615
18522
18612
18523
18524
18610
18612
18525
18526
18608
18610
18527
18528
18606
18608
18529
18530
18606
18531
18603
18605
18532
18533
18601
18603
18534
18535
18599
18601
18536
18537
18597
18599
18538
18539
18595
18597
18540
18541
18595
18542
18592
18594
18543
18544
18590
18592
18545
18546
18588
18590
18547
18548
18586
18588
18549
18550
18586
18551
18583
18585
18552
18553
18581
18583
18554
18555
18579
18581
18556
18557
18577
18579
18558
18559
18577
18560
18574
18576
18561
18562
18572
18574
18563
18564
18570
18572
18565
18566
18568
18570
18567
18568
18687
18569
18686
18570
18683
18685
18571
18572
18681
18683
18573
18574
18679
18681
18575
18576
18676
18679
18577
18675
18578
18579
18673
18675
18580
18581
18671
18673
18582
18583
18669
18671
18584
18585
18667
18669
18586
18666
18587
18588
18664
18666
18589
18590
18662
18664
18591
18592
18660
18662
18593
18594
18657
18660
18595
18656
18596
18597
18654
18656
18598
18599
18652
18654
18600
18601
18650
18652
18602
18603
18648
18650
18604
18605
18646
18648
18606
18645
18607
18608
18643
18645
18609
18610
18641
18643
18611
18612
18639
18641
18613
18614
18639
18615
18636
18638
18616
18634
18617
18633
18618
18619
18631
18633
18620
18621
18629
18631
18622
18623
18627
18629
18624
18625
18627
18626
20891
18627
20889
20890
18628
18629
20887
20889
18630
18631
20887
20888
18632
18633
18635
20888
18634
18635
18636
18636
20869
20888
38750
18637
18638
20868
20869
18639
20867
18640
18641
20866
20867
18642
18643
20863
20866
18644
18645
20863
38752
18646
18647
38752
18648
20860
20861
18649
18650
20859
20860
18651
18652
20858
20859
18653
18654
20858
38753
18655
18656
18658
38753
18657
18658
18659
18659
20850
20857
38753
18660
20851
18661
18662
20848
20851
18663
18664
20847
20848
18665
18666
20844
20847
18667
18668
20844
18669
20842
20843
18670
18671
20840
20842
18672
18673
20840
20841
18674
18675
18677
20841
18676
18677
18678
18678
20835
20839
20841
18679
20836
18680
18681
20833
20836
18682
18683
20833
38757
18684
18685
20830
38757
18686
18770
18687
18769
18688
18768
18689
18690
18766
18768
18691
18692
18764
18766
18693
18694
18762
18764
18695
18696
18762
18697
18759
18761
18698
18699
18757
18759
18700
18701
18755
18757
18702
18703
18755
18704
18752
18754
18705
18706
18750
18752
18707
18708
18748
18750
18709
18710
18748
18711
18745
18747
18712
18713
18743
18745
18714
18715
18741
18743
18716
18717
18741
18718
18738
18740
18719
18720
18736
18738
18721
18722
18734
18736
18723
18724
18734
18725
18731
18733
18726
18727
18729
18731
18728
18729
18816
18730
18815
18731
18812
18814
18732
18733
18809
18812
18734
18808
18735
18736
18806
18808
18737
18738
18804
18806
18739
18740
18802
18804
18741
18801
18742
18743
18799
18801
18744
18745
18797
18799
18746
18747
18794
18797
18748
18793
18749
18750
18791
18793
18751
18752
18789
18791
18753
18754
18787
18789
18755
18786
18756
18757
18784
18786
18758
18759
18782
18784
18760
18761
18779
18782
18762
18778
18763
18764
18776
18778
18765
18766
18774
18776
18767
18768
18772
18774
18769
18770
18772
18771
20830
18772
20828
20829
18773
18774
20827
20828
18775
18776
20827
38758
18777
18778
18780
38758
18779
18780
18781
18781
20817
20826
38758
18782
20818
18783
18784
20815
20818
18785
18786
20814
20815
18787
18788
20814
18789
20810
20812
18790
18791
20810
20811
18792
18793
18795
20811
18794
18795
18796
18796
20806
20809
20811
18797
20807
18798
18799
20804
20807
18800
18801
20803
20804
18802
18803
20803
18804
20800
20801
18805
18806
20800
38759
18807
18808
18810
38759
18809
18810
18811
18811
20779
20799
38759
18812
20780
18813
18814
20777
20780
18815
18829
18816
18828
18817
18827
18818
18819
18825
18827
18820
18821
18823
18825
18822
18823
18837
18824
18836
18825
18833
18835
18826
18827
18831
18833
18828
18829
18831
18830
20777
18831
20775
20776
18832
18833
20774
20775
18834
18835
20773
20774
18836
20772
18837
18877
18838
18876
18839
18840
18874
18876
18841
18842
18874
18843
18871
18873
18844
18845
18847
18871
18846
18847
18849
18848
18870
18849
18867
18869
18850
18866
18851
18852
18864
18866
18853
18854
18864
18855
18861
18863
18856
18857
18859
18861
18858
18859
18898
18860
18897
18861
18894
18896
18862
18863
18892
18894
18864
18891
18865
18866
18889
18891
18867
18868
18889
18869
18886
18888
18870
18884
18871
18883
18872
18873
18881
18883
18874
18880
18875
18876
18878
18880
18877
18878
20772
18879
20771
18880
20770
38762
18881
18882
38762
18883
18885
38763
18884
18885
18886
18886
20752
20768
38763
18887
18888
20751
20752
18889
20750
18890
18891
20749
20750
18892
18893
20749
18894
20746
20747
18895
18896
20745
20746
18897
20744
18898
18924
18899
18923
18900
18901
18921
18923
18902
18903
18921
18904
18918
18920
18905
18906
18908
18918
18907
18908
18910
18909
18917
18910
18914
18916
18911
18913
18912
18913
18938
18914
18937
18915
18936
18916
18933
18935
18917
18931
18918
18930
18919
18920
18928
18930
18921
18927
18922
18923
18925
18927
18924
18925
20744
18926
20743
18927
20742
38765
18928
18929
38765
18930
18932
38766
18931
18932
18933
18933
20735
20740
38766
18934
18935
20734
20735
18936
20733
18937
20711
18938
20710
18939
20709
18940
18941
20707
20709
18942
18943
20707
18944
20704
20706
18945
18946
20704
18947
20701
20703
18948
18949
18951
20701
18950
18951
18953
18952
20700
18953
19811
20699
18954
19810
18955
18956
19810
18957
19807
19809
18958
18959
19805
19807
18960
18961
19805
18962
19802
19804
18963
18964
19802
18965
19799
19801
18966
18967
19799
18968
19796
19798
18969
18970
19796
18971
19793
19795
18972
18973
19793
18974
19790
19792
18975
18976
19790
18977
19787
19789
18978
18979
19787
18980
19784
19786
18981
18982
19782
19784
18983
18984
19782
18985
19781
18986
19779
19780
18987
18988
18999
19003
19004
19779
18989
18999
18990
18998
18991
18992
18998
18993
18995
18997
18994
18995
19012
18996
19011
18997
19001
19010
18998
19000
18999
19000
19001
19003
19002
19009
19003
19006
19008
19004
19005
19006
19006
19768
19777
19779
19007
19008
19767
19768
19009
19766
19010
19745
19011
19744
19012
19739
19013
19738
19014
19015
19738
19016
19018
19737
19017
19018
19020
19019
19736
19020
19030
19735
19021
19029
19022
19023
19029
19024
19026
19028
19025
19026
19036
19027
19035
19028
19032
19034
19029
19031
19030
19031
19734
19032
19733
19033
19732
19034
19070
19731
19035
19069
19036
19064
19037
19063
19038
19039
19063
19040
19042
19062
19041
19042
19044
19043
19061
19044
19054
19060
19045
19053
19046
19047
19053
19048
19050
19052
19049
19050
19092
19051
19091
19052
19056
19090
19053
19055
19054
19055
19059
19056
19058
19057
19089
19058
19078
19088
19059
19077
19060
19076
19061
19075
19062
19066
19063
19065
19064
19065
19069
19066
19068
19067
19075
19068
19072
19074
19069
19071
19070
19071
19730
19072
19729
19073
19728
19074
19082
19727
19075
19081
19076
19077
19081
19078
19080
19079
19087
19080
19084
19086
19081
19083
19082
19083
19726
19084
19725
19085
19724
19086
19448
19723
19087
19447
19088
19442
19089
19441
19090
19372
19091
19371
19092
19366
19093
19365
19094
19095
19365
19096
19098
19364
19097
19098
19100
19099
19363
19100
19360
19362
19101
19102
19358
19360
19103
19104
19358
19105
19355
19357
19106
19107
19355
19108
19352
19354
19109
19110
19352
19111
19349
19351
19112
19113
19349
19114
19346
19348
19115
19116
19346
19117
19343
19345
19118
19119
19343
19120
19340
19342
19121
19122
19124
19340
19123
19124
19126
19125
19339
19126
19136
19338
19127
19135
19128
19129
19135
19130
19132
19134
19131
19132
19142
19133
19141
19134
19138
19140
19135
19137
19136
19137
19337
19138
19336
19139
19335
19140
19244
19334
19141
19243
19142
19198
19143
19197
19144
19145
19195
19197
19146
19147
19195
19148
19192
19194
19149
19150
19190
19192
19151
19152
19188
19190
19153
19154
19186
19188
19155
19156
19184
19186
19157
19158
19182
19184
19159
19160
19180
19182
19161
19162
19180
19163
19179
19164
19172
19178
19165
19171
19166
19167
19171
19168
19170
19169
19273
19170
19174
19272
19171
19173
19172
19173
19177
19174
19176
19175
19271
19176
19220
19270
19177
19219
19178
19218
19179
19217
19180
19216
19181
19182
19214
19216
19183
19184
19212
19214
19185
19186
19210
19212
19187
19188
19208
19210
19189
19190
19206
19208
19191
19192
19204
19206
19193
19194
19202
19204
19195
19201
19196
19197
19199
19201
19198
19199
19243
19200
19242
19201
19239
19241
19202
19203
19239
19204
19236
19238
19205
19206
19234
19236
19207
19208
19232
19234
19209
19210
19230
19232
19211
19212
19228
19230
19213
19214
19226
19228
19215
19216
19224
19226
19217
19218
19224
19219
19223
19220
19222
19221
19269
19222
19266
19268
19223
19265
19224
19264
19225
19226
19262
19264
19227
19228
19260
19262
19229
19230
19258
19260
19231
19232
19256
19258
19233
19234
19254
19256
19235
19236
19252
19254
19237
19238
19250
19252
19239
19249
19240
19241
19247
19249
19242
19246
19243
19245
19244
19245
19333
19246
19332
19247
19331
19248
19330
19249
19327
19329
19250
19251
19327
19252
19324
19326
19253
19254
19322
19324
19255
19256
19320
19322
19257
19258
19318
19320
19259
19260
19316
19318
19261
19262
19314
19316
19263
19264
19312
19314
19265
19266
19312
19267
19311
19268
19304
19310
19269
19303
19270
19293
19271
19292
19272
19287
19273
19286
19274
19275
19286
19276
19285
19277
19278
19284
19278
19279
19283
19280
19281
19282
19282
19298
20561
19283
19297
19284
19289
19296
19285
19289
19286
19288
19287
19288
19292
19289
19291
19290
19291
19295
19296
19292
19294
19293
19294
19303
19295
19302
19296
19301
19297
19300
19298
19299
19299
19579
20560
19300
19578
19301
19306
19577
19302
19306
19303
19305
19304
19305
19309
19306
19308
19307
19308
19576
19577
19309
19575
19310
19574
19311
19573
19312
19572
19313
19314
19570
19572
19315
19316
19568
19570
19317
19318
19566
19568
19319
19320
19564
19566
19321
19322
19562
19564
19323
19324
19560
19562
19325
19326
19558
19560
19327
19557
19328
19329
19555
19557
19330
19554
19331
19553
19332
19544
19333
19543
19334
19542
19335
19541
19336
19404
19337
19403
19338
19402
19339
19401
19340
19400
19341
19342
19398
19400
19343
19397
19344
19345
19395
19397
19346
19394
19347
19348
19392
19394
19349
19391
19350
19351
19389
19391
19352
19388
19353
19354
19386
19388
19355
19385
19356
19357
19383
19385
19358
19382
19359
19360
19380
19382
19361
19362
19378
19380
19363
19377
19364
19368
19365
19367
19366
19367
19371
19368
19370
19369
19377
19370
19374
19376
19371
19373
19372
19373
19441
19374
19440
19375
19439
19376
19432
19438
19377
19431
19378
19379
19431
19380
19428
19430
19381
19382
19426
19428
19383
19384
19426
19385
19423
19425
19386
19387
19423
19388
19420
19422
19389
19390
19420
19391
19417
19419
19392
19393
19417
19394
19414
19416
19395
19396
19414
19397
19411
19413
19398
19399
19411
19400
19408
19410
19401
19402
19408
19403
19407
19404
19406
19405
19541
19406
19490
19540
19407
19489
19408
19488
19409
19410
19486
19488
19411
19485
19412
19413
19483
19485
19414
19482
19415
19416
19480
19482
19417
19479
19418
19419
19477
19479
19420
19476
19421
19422
19474
19476
19423
19473
19424
19425
19471
19473
19426
19470
19427
19428
19468
19470
19429
19430
19434
19468
19431
19433
19432
19433
19437
19434
19436
19435
19467
19436
19456
19466
19437
19455
19438
19454
19439
19453
19440
19444
19441
19443
19442
19443
19447
19444
19446
19445
19453
19446
19450
19452
19447
19449
19448
19449
19722
19450
19721
19451
19720
19452
19460
19719
19453
19459
19454
19455
19459
19456
19458
19457
19465
19458
19462
19464
19459
19461
19460
19461
19718
19462
19717
19463
19716
19464
19645
19715
19465
19644
19466
19514
19467
19513
19468
19512
19469
19470
19510
19512
19471
19472
19510
19473
19507
19509
19474
19475
19507
19476
19504
19506
19477
19478
19504
19479
19501
19503
19480
19481
19501
19482
19498
19500
19483
19484
19498
19485
19495
19497
19486
19487
19495
19488
19492
19494
19489
19490
19492
19491
19539
19492
19536
19538
19493
19494
19534
19536
19495
19533
19496
19497
19531
19533
19498
19530
19499
19500
19528
19530
19501
19527
19502
19503
19525
19527
19504
19524
19505
19506
19522
19524
19507
19521
19508
19509
19519
19521
19510
19518
19511
19512
19516
19518
19513
19514
19516
19515
19644
19516
19641
19643
19517
19518
19639
19641
19519
19520
19639
19521
19636
19638
19522
19523
19636
19524
19633
19635
19525
19526
19633
19527
19630
19632
19528
19529
19630
19530
19627
19629
19531
19532
19627
19533
19624
19626
19534
19535
19624
19536
19621
19623
19537
19538
19615
19621
19539
19614
19540
19548
19541
19547
19542
19543
19547
19544
19546
19545
19553
19546
19550
19552
19547
19549
19548
19549
19614
19550
19613
19551
19612
19552
19605
19611
19553
19604
19554
19555
19604
19556
19603
19557
19600
19602
19558
19559
19600
19560
19597
19599
19561
19562
19595
19597
19563
19564
19593
19595
19565
19566
19591
19593
19567
19568
19589
19591
19569
19570
19587
19589
19571
19572
19585
19587
19573
19574
19585
19575
19584
19576
19583
19577
19582
19578
19581
19579
19580
19580
20326
20559
19581
20325
19582
20285
20324
19583
20285
19584
20284
19585
20283
19586
19587
20281
20283
19588
19589
20279
20281
19590
19591
20277
20279
19592
19593
20275
20277
19594
19595
20273
20275
19596
19597
20271
20273
19598
19599
20269
20271
19600
20268
19601
19602
20266
20268
19603
19607
19604
19606
19605
19606
19610
19607
19609
19608
20266
19609
19677
20265
19610
19676
19611
19675
19612
19674
19613
19617
19614
19616
19615
19616
19620
19617
19619
19618
19674
19619
19671
19673
19620
19670
19621
19669
19622
19623
19667
19669
19624
19666
19625
19626
19664
19666
19627
19663
19628
19629
19661
19663
19630
19660
19631
19632
19658
19660
19633
19657
19634
19635
19655
19657
19636
19654
19637
19638
19652
19654
19639
19651
19640
19641
19649
19651
19642
19643
19647
19649
19644
19646
19645
19646
19714
19647
19713
19648
19712
19649
19709
19711
19650
19651
19707
19709
19652
19653
19707
19654
19704
19706
19655
19656
19704
19657
19701
19703
19658
19659
19701
19660
19698
19700
19661
19662
19698
19663
19695
19697
19664
19665
19695
19666
19692
19694
19667
19668
19692
19669
19689
19691
19670
19671
19689
19672
19688
19673
19681
19687
19674
19680
19675
19676
19680
19677
19679
19678
20264
19679
19683
20263
19680
19682
19681
19682
19686
19683
19685
19684
20262
19685
20060
20261
19686
20059
19687
20058
19688
20057
19689
20056
19690
19691
20054
20056
19692
20053
19693
19694
20051
20053
19695
20050
19696
19697
20048
20050
19698
20047
19699
19700
20045
20047
19701
20044
19702
19703
20042
20044
19704
20041
19705
19706
20039
20041
19707
20038
19708
19709
20036
20038
19710
19711
20034
20036
19712
20033
19713
20024
19714
20023
19715
20022
19716
20021
19717
19980
19718
19979
19719
19978
19720
19977
19721
19968
19722
19967
19723
19966
19724
19965
19725
19887
19726
19886
19727
19885
19728
19884
19729
19875
19730
19874
19731
19873
19732
19872
19733
19753
19734
19752
19735
19751
19736
19750
19737
19741
19738
19740
19739
19740
19744
19741
19743
19742
19750
19743
19747
19749
19744
19746
19745
19746
19766
19747
19765
19748
19764
19749
19757
19763
19750
19756
19751
19752
19756
19753
19755
19754
19872
19755
19759
19871
19756
19758
19757
19758
19762
19759
19761
19760
19870
19761
19859
19869
19762
19858
19763
19857
19764
19856
19765
19771
19766
19770
19767
19768
19770
19769
19775
19776
19770
19772
19775
19771
19772
19856
19773
19855
19774
19775
19854
19775
19776
19851
19853
19777
19849
19778
19848
19779
19780
19846
19781
19845
19782
19844
19783
19784
19842
19844
19785
19786
19839
19842
19787
19838
19788
19789
19836
19838
19790
19835
19791
19792
19832
19835
19793
19831
19794
19795
19829
19831
19796
19828
19797
19798
19825
19828
19799
19824
19800
19801
19822
19824
19802
19821
19803
19804
19818
19821
19805
19817
19806
19807
19815
19817
19808
19809
19813
19815
19810
19812
19811
19812
20698
19813
20697
19814
20696
19815
20694
20695
19816
19817
19819
20695
19818
19819
19820
19820
20693
20695
38768
19821
38769
19822
19823
38769
19824
19826
38770
19825
19826
19827
19827
20686
38770
38771
19828
20687
19829
19830
20687
19831
19833
20688
19832
19833
19834
19834
20685
20688
38772
19835
38773
19836
19837
38773
19838
19840
38774
19839
19840
19841
19841
20487
38774
38775
19842
20488
19843
19844
20488
20490
19845
19846
20490
19847
19848
19848
19850
20486
20489
20490
19849
19850
19851
19851
20481
20485
19852
19853
19933
20481
19854
19863
19931
19932
19855
19863
19856
19862
19857
19858
19862
19859
19861
19860
19868
19861
19865
19867
19862
19864
19863
19864
19865
19931
19866
19930
19867
19907
19929
19868
19906
19869
19901
19870
19900
19871
19879
19872
19878
19873
19874
19878
19875
19877
19876
19884
19877
19881
19883
19878
19880
19879
19880
19900
19881
19899
19882
19898
19883
19891
19897
19884
19890
19885
19886
19890
19887
19889
19888
19965
19889
19893
19964
19890
19892
19891
19892
19896
19893
19895
19894
19963
19895
19915
19962
19896
19914
19897
19913
19898
19912
19899
19903
19900
19902
19901
19902
19906
19903
19905
19904
19912
19905
19909
19911
19906
19908
19907
19908
19928
19909
19927
19910
19926
19911
19919
19925
19912
19918
19913
19914
19918
19915
19917
19916
19961
19917
19921
19960
19918
19920
19919
19920
19924
19921
19923
19922
19959
19923
19944
19958
19924
19943
19925
19942
19926
19941
19927
19940
19928
19938
19929
19937
19930
19935
19931
19934
19932
19933
19934
19934
19936
20481
19935
19936
19937
19937
19939
20480
19938
19939
19940
19940
19948
19949
20479
19941
19942
19948
19943
19947
19944
19946
19945
19957
19946
19954
19956
19947
19952
19948
19951
19949
19950
19951
19951
19953
20477
20479
19952
19953
19954
19954
20141
20475
19955
19956
20140
20141
19957
20139
19958
20134
19959
20133
19960
20000
19961
19999
19962
19994
19963
19993
19964
19972
19965
19971
19966
19967
19971
19968
19970
19969
19977
19970
19974
19976
19971
19973
19972
19973
19993
19974
19992
19975
19991
19976
19984
19990
19977
19983
19978
19979
19983
19980
19982
19981
20021
19982
19986
20020
19983
19985
19984
19985
19989
19986
19988
19987
20019
19988
20008
20018
19989
20007
19990
20006
19991
20005
19992
19996
19993
19995
19994
19995
19999
19996
19998
19997
20005
19998
20002
20004
19999
20001
20000
20001
20133
20002
20132
20003
20131
20004
20012
20130
20005
20011
20006
20007
20011
20008
20010
20009
20017
20010
20014
20016
20011
20013
20012
20013
20129
20014
20128
20015
20127
20016
20104
20126
20017
20103
20018
20098
20019
20097
20020
20028
20021
20027
20022
20023
20027
20024
20026
20025
20033
20026
20030
20032
20027
20029
20028
20029
20097
20030
20096
20031
20095
20032
20088
20094
20033
20087
20034
20035
20087
20036
20084
20086
20037
20038
20082
20084
20039
20040
20082
20041
20079
20081
20042
20043
20079
20044
20076
20078
20045
20046
20076
20047
20073
20075
20048
20049
20073
20050
20070
20072
20051
20052
20070
20053
20067
20069
20054
20055
20067
20056
20064
20066
20057
20058
20064
20059
20063
20060
20062
20061
20260
20062
20209
20259
20063
20208
20064
20207
20065
20066
20205
20207
20067
20204
20068
20069
20202
20204
20070
20201
20071
20072
20199
20201
20073
20198
20074
20075
20196
20198
20076
20195
20077
20078
20193
20195
20079
20192
20080
20081
20190
20192
20082
20189
20083
20084
20187
20189
20085
20086
20090
20187
20087
20089
20088
20089
20093
20090
20092
20091
20186
20092
20112
20185
20093
20111
20094
20110
20095
20109
20096
20100
20097
20099
20098
20099
20103
20100
20102
20101
20109
20102
20106
20108
20103
20105
20104
20105
20125
20106
20124
20107
20123
20108
20116
20122
20109
20115
20110
20111
20115
20112
20114
20113
20184
20114
20118
20183
20115
20117
20116
20117
20121
20118
20120
20119
20182
20120
20179
20181
20121
20177
20122
20176
20123
20175
20124
20164
20125
20163
20126
20162
20127
20161
20128
20150
20129
20149
20130
20148
20131
20147
20132
20136
20133
20135
20134
20135
20139
20136
20138
20137
20147
20138
20144
20146
20139
20143
20140
20141
20143
20142
20474
20143
20144
20155
20472
20144
20145
20146
20154
20155
20147
20153
20148
20149
20153
20150
20152
20151
20161
20152
20158
20160
20153
20157
20154
20155
20157
20156
20471
20157
20158
20169
20469
20158
20159
20160
20168
20169
20161
20167
20162
20163
20167
20164
20166
20165
20175
20166
20172
20174
20167
20171
20168
20169
20171
20170
20468
20171
20172
20461
38778
20172
20173
20174
20461
20462
20175
20463
20176
20177
20463
20178
20179
20179
20458
20460
20462
20463
20180
20181
20457
20458
20182
20456
20183
20416
20184
20415
20185
20233
20186
20232
20187
20231
20188
20189
20229
20231
20190
20191
20229
20192
20226
20228
20193
20194
20226
20195
20223
20225
20196
20197
20223
20198
20220
20222
20199
20200
20220
20201
20217
20219
20202
20203
20217
20204
20214
20216
20205
20206
20214
20207
20211
20213
20208
20209
20211
20210
20258
20211
20255
20257
20212
20213
20253
20255
20214
20252
20215
20216
20250
20252
20217
20249
20218
20219
20247
20249
20220
20246
20221
20222
20244
20246
20223
20243
20224
20225
20241
20243
20226
20240
20227
20228
20238
20240
20229
20237
20230
20231
20235
20237
20232
20233
20235
20234
20415
20235
20412
20414
20236
20237
20410
20412
20238
20239
20410
20240
20407
20409
20241
20242
20407
20243
20404
20406
20244
20245
20404
20246
20401
20403
20247
20248
20401
20249
20398
20400
20250
20251
20398
20252
20395
20397
20253
20254
20395
20255
20389
20394
20256
20257
20384
20389
20258
20383
20259
20370
20260
20369
20261
20364
20262
20363
20263
20346
20264
20345
20265
20305
20266
20304
20267
20268
20302
20304
20269
20270
20302
20271
20299
20301
20272
20273
20297
20299
20274
20275
20295
20297
20276
20277
20293
20295
20278
20279
20291
20293
20280
20281
20289
20291
20282
20283
20287
20289
20284
20285
20287
20286
20287
20323
20324
20288
20289
20321
20323
20290
20291
20319
20321
20292
20293
20317
20319
20294
20295
20315
20317
20296
20297
20313
20315
20298
20299
20311
20313
20300
20301
20309
20311
20302
20308
20303
20304
20306
20308
20305
20306
20345
20307
20344
20308
20341
20343
20309
20310
20341
20311
20338
20340
20312
20313
20337
20338
20314
20315
20333
20337
20316
20317
20331
20333
20318
20319
20330
20331
20320
20321
20329
20330
20322
20323
20328
20329
20324
20325
20328
20326
20327
20327
20541
20558
20328
20540
20329
20539
20330
20331
20536
20539
20332
20333
20536
20537
20334
20335
20337
20537
20336
20354
20355
20535
20537
20337
20338
20354
20339
20340
20352
20354
20341
20351
20342
20343
20349
20351
20344
20348
20345
20347
20346
20347
20363
20348
20362
20349
20361
20350
20360
20351
20358
20359
20352
20353
20358
20354
20355
20356
20356
20532
20534
20357
20358
20358
20359
20376
20378
20532
20360
20376
20361
20375
20362
20366
20363
20365
20364
20365
20369
20366
20368
20367
20375
20368
20372
20374
20369
20371
20370
20371
20383
20372
20382
20373
20381
20374
20379
20380
20375
20377
20376
20377
20378
20379
20379
20529
20531
20380
20381
20387
20527
20529
20382
20387
20383
20385
20384
20385
20388
20386
20387
20387
20388
20392
20525
20527
20389
20392
20390
20391
20392
20394
20392
20393
20437
20523
20525
20394
20396
20437
20395
20396
20397
20435
20398
20434
20399
20400
20432
20434
20401
20431
20402
20403
20429
20431
20404
20428
20405
20406
20426
20428
20407
20425
20408
20409
20423
20425
20410
20422
20411
20412
20420
20422
20413
20414
20418
20420
20415
20417
20416
20417
20456
20418
20455
20419
20454
20420
20452
20453
20421
20422
20448
20453
20423
20424
20448
20425
20447
38779
20426
20427
38779
20428
20442
38780
20429
20430
20442
20431
20440
20441
20432
20433
20440
20434
20436
20438
20435
20436
20437
20437
20438
20521
20523
20439
20440
20440
20441
20445
20519
20521
20442
20445
20443
20444
20445
38780
20445
20446
20517
20519
20447
20451
20516
38779
38780
20448
20451
20449
20450
20451
20453
20451
20452
20514
20516
20453
20454
20510
20513
20455
20513
20456
20512
20457
20458
20512
20459
20511
20460
20466
20507
20509
20511
20461
20466
20462
20464
20463
20465
20466
38778
20466
20467
20505
20507
20468
20470
20503
38778
20469
38778
20470
20471
20471
20473
20502
20472
20473
20474
20474
20476
20500
20475
20476
20477
20477
20483
20499
20478
20479
20482
20483
20480
20481
20482
20482
20484
20483
20484
20497
20485
20496
20486
20494
20487
20493
20488
20489
20491
20489
20490
20492
20493
38775
20493
20495
20682
20684
20494
20495
20496
20496
20498
20681
20497
20498
20499
20499
20501
20680
20500
20501
20502
20502
20504
20679
20503
20504
20505
20505
20670
20678
20506
20507
20669
20670
20508
20509
20666
20669
20510
20514
20667
20511
20514
20512
20513
20513
20515
20516
20667
20668
20517
20518
20668
20519
20520
20661
20665
20668
20520
20521
20522
20522
20523
20524
20661
20663
20524
20525
20526
20526
20527
20528
20549
20663
20528
20529
20530
20530
20531
20545
20547
20549
20532
20545
20533
20534
20544
20545
20535
20543
20536
20543
20537
20538
20539
20542
20543
20540
20541
20542
20542
20557
38777
20543
20544
38777
20545
20546
20547
20547
20553
20555
38776
38777
20548
20549
20552
20553
20550
20551
20552
20663
20552
20656
20658
20662
20664
20553
20554
20656
20555
20653
20655
20556
20650
20557
20629
20649
38776
20558
38776
20559
20629
20560
20629
20561
20628
20562
20628
20563
20564
20628
20565
20625
20627
20566
20624
20567
20584
20607
20568
20583
20606
20569
20581
20605
20570
20580
20604
20571
20577
20587
20572
20576
20586
20573
20585
20574
20576
20575
20576
20578
20577
20578
20580
20579
20580
20582
20581
20582
20583
20584
20586
20590
20587
20589
20588
20604
20589
20597
20603
20590
20596
20591
20592
20596
20593
20595
20594
21667
20595
20599
21666
20596
20598
20597
20598
20602
20599
20601
20600
21665
20601
20613
21664
20602
20612
20603
20611
20604
20610
20605
20606
20610
20607
20609
20608
20624
20609
20617
20623
20610
20616
20611
20612
20616
20613
20615
20614
21663
20615
20619
21662
20616
20618
20617
20618
20622
20619
20621
20620
21661
20621
20637
21660
20622
20636
20623
20635
20624
20634
20625
20626
20634
20627
20631
20633
20628
20630
20629
20630
20631
20649
20632
20648
20633
20641
20647
20634
20640
20635
20636
20640
20637
20639
20638
21659
20639
20643
21658
20640
20642
20641
20642
20646
20643
20645
20644
21657
20645
21646
21656
20646
21645
20647
21644
20648
21643
20649
20651
20650
20651
20653
20652
21643
20653
21640
21642
20654
20655
21638
21640
20656
21637
20657
20658
21635
21637
20659
20673
20660
20664
20666
20672
20661
20664
20665
20662
20663
20664
20666
20667
20667
20669
20671
20668
20670
20671
20677
20672
20676
20673
20675
20674
21635
20675
21600
21634
20676
21599
20677
21598
20678
21597
20679
21596
20680
21595
20681
21594
20682
21593
20683
21512
20684
20690
21511
20685
20691
38772
38775
20686
20691
20687
20688
20689
20688
20690
20691
38771
20691
20692
21510
20693
21507
21509
38768
38771
20694
21507
20695
20696
21504
21505
20697
21504
20698
21502
20699
21503
20700
20723
20701
20722
20702
20703
20720
20722
20704
20719
20705
20706
20716
20719
20707
20715
20708
20709
20713
20715
20710
20711
20713
20712
20733
20713
20731
20732
20714
20715
20717
20732
20716
20717
20718
20718
20726
20730
20732
20719
20727
20720
20721
20727
20722
20724
20725
20723
20724
21503
20725
21499
21501
21503
20726
20727
20727
20728
21499
20729
20730
21498
20730
20736
20737
21495
21497
20731
20732
20733
20734
20736
20734
20735
20736
38767
20737
20738
38767
20739
20763
21493
21495
38767
20740
20760
20763
20741
38767
20742
20759
20760
38765
38766
20743
20759
20744
20758
20745
20746
20758
20747
20755
20757
20748
20749
20749
20750
20751
20753
20755
20751
20752
20753
20767
20754
38764
20755
20756
20762
20765
38764
20756
20757
20761
20758
20759
20760
20759
20761
20762
20763
20763
20764
21493
20765
21272
21492
20766
21271
20767
20789
20790
20793
38764
20768
38764
20769
20789
20770
20787
20788
38762
38763
20771
20787
20772
20786
20773
20774
20786
20775
20783
20785
20776
20777
20778
20781
20783
20778
20779
20780
20780
20781
38760
20782
38761
20783
20784
20791
20796
38761
20784
20785
20792
20786
20787
20788
20787
20789
20792
20790
20791
20792
20792
20793
20795
20794
21271
20795
21266
21270
20796
21265
20797
21242
20798
21240
21241
38760
38761
20799
21238
21240
20800
38760
20801
21238
38759
20802
20803
20803
20804
20805
21238
21239
20805
20806
20807
20807
20808
21239
20809
20822
21234
21236
21239
20810
20822
20811
20812
20821
20813
20814
20814
20815
20816
20819
20821
20816
20817
20818
20818
20819
20825
20820
20823
20821
20822
20823
21232
21234
20822
20824
20825
20825
21226
21227
21230
21232
20826
20827
21226
20828
21225
38758
20829
20830
20831
21223
21225
20831
20832
38757
20833
20834
21221
21223
38757
20834
20835
20836
20836
20837
21221
20838
20839
21220
20839
21217
21219
38755
38756
20840
20841
20842
38756
20843
20844
20845
38754
38756
20845
20846
20847
20847
20848
20849
20852
38754
20849
20850
20851
20851
20852
20856
20853
20854
20854
21215
21217
38754
38755
20855
20856
20856
20878
20879
21213
21215
20857
20858
20878
20859
20877
38753
20860
20861
20875
20877
20862
38752
20863
20864
20873
20875
38752
20864
20865
20866
20866
20867
20868
20871
20873
20868
20869
20870
20871
20871
20882
20884
38750
38751
20872
20873
20881
20882
20874
20875
20880
20881
20876
20877
20879
20880
20878
20879
20880
20881
21211
21213
20882
20883
21211
20884
21198
21210
20885
21197
20886
20905
20906
21196
38751
20887
20890
38751
20888
20889
38750
20890
20891
20892
20906
20892
20893
38749
20894
20895
20904
20906
38749
20895
20896
20897
20897
20898
20899
20902
20904
20899
20900
20901
20901
20902
20909
20903
20907
20904
20905
20907
21194
21196
20905
20906
20908
20909
20909
21150
21151
21154
21194
20910
20911
21150
20912
21149
38748
20913
20914
21147
21149
20915
38747
20916
20917
21145
21147
38747
20917
20918
20919
20919
20920
20921
21145
38736
20921
20922
20923
20923
20924
38736
20925
21137
21141
21143
38736
20926
21137
20927
20928
21136
20929
20930
21136
21138
20931
20932
20932
20933
20934
21138
21140
20934
20935
20936
20936
20937
20938
20941
21140
20938
20939
20940
20940
20941
20945
20942
20943
20943
21132
21134
21139
21140
20944
20945
20945
20968
20969
21130
21132
20946
20947
20968
20948
20967
38746
20949
20950
20965
20967
20951
38745
20952
20953
20963
20965
38745
20953
20954
20955
20955
20956
20957
20961
20963
20957
20958
20959
20959
20960
20961
20961
20972
20974
38743
38744
20962
20963
20971
20972
20964
20965
20970
20971
20966
20967
20969
20970
20968
20969
20970
20971
21128
21130
20972
20973
21128
20974
21050
21127
20975
21049
20976
21048
38740
38741
38744
20977
20980
38744
20978
20979
38743
20980
20981
38741
20982
38742
20983
20984
38739
38741
38742
20984
20985
20986
20986
20987
20988
20990
38739
20988
20989
20990
20994
20991
20992
20992
21046
21048
38739
38740
20993
20994
20994
21036
21037
21044
21046
20995
20996
21036
20997
21035
38738
20998
20999
20999
21000
21001
21033
21035
21001
21002
38737
21003
21030
21031
21033
38737
21004
21030
21005
21029
21006
21007
21029
21008
21026
21028
21009
21010
21024
21026
21011
21012
21012
21013
21014
21022
21024
21014
21015
21016
21016
21017
21018
21020
21022
21018
21019
21020
21066
21021
21067
21022
21023
21061
21063
21067
21023
21024
21025
21025
21026
21027
21040
21061
21027
21028
21041
21029
21030
21031
21030
21032
21041
21033
21038
21039
21034
21035
21037
21038
21036
21037
21038
21039
21042
21044
21040
21041
21041
21042
21060
21043
21059
21044
21056
21058
21045
21046
21054
21056
21047
21048
21052
21054
21049
21050
21052
21051
21126
21052
21123
21125
21053
21054
21121
21123
21055
21056
21119
21121
21057
21058
21117
21119
21059
21084
21060
21083
21061
21082
21062
21063
21080
21082
21064
21069
21065
21066
21067
21068
21067
21069
21071
21070
21080
21071
21077
21079
21072
21073
21075
21077
21074
21075
21095
21076
21094
21077
21091
21093
21078
21079
21089
21091
21080
21088
21081
21082
21086
21088
21083
21084
21086
21085
21117
21086
21114
21116
21087
21088
21112
21114
21089
21090
21112
21091
21109
21111
21092
21093
21107
21109
21094
21098
21095
21097
21096
21097
21101
21098
21100
21099
21107
21100
21104
21106
21101
21103
21102
21103
22315
21104
22314
21105
22313
21106
21389
22312
21107
21388
21108
21109
21386
21388
21110
21111
21384
21386
21112
21383
21113
21114
21381
21383
21115
21116
21359
21381
21117
21358
21118
21119
21356
21358
21120
21121
21354
21356
21122
21123
21352
21354
21124
21125
21350
21352
21126
21173
21127
21172
21128
21171
21129
21130
21169
21171
21131
21132
21167
21169
21133
21134
21163
21167
21135
21162
21136
21137
21138
21139
21141
21137
21139
21140
21142
21162
21143
21157
21161
21144
21153
21156
21145
21153
38736
21146
21147
21152
21153
21148
21149
21151
21152
21150
21151
21152
21153
21154
21156
21155
21193
21156
21158
21192
21157
21158
21160
21159
21191
21160
21186
21190
21161
21185
21162
21164
21163
21164
21166
21165
21185
21166
21180
21184
21167
21179
21168
21169
21177
21179
21170
21171
21175
21177
21172
21173
21175
21174
21350
21175
21347
21349
21176
21177
21345
21347
21178
21179
21181
21345
21180
21181
21183
21182
21344
21183
21341
21343
21184
21340
21185
21187
21186
21187
21189
21188
21340
21189
21333
21339
21190
21332
21191
21327
21192
21326
21193
21203
21194
21202
21195
21196
21200
21202
21197
21198
21200
21199
21209
21200
21206
21208
21201
21202
21204
21206
21203
21204
21326
21205
21325
21206
21322
21324
21207
21208
21320
21322
21209
21299
21210
21298
21211
21297
21212
21213
21295
21297
21214
21215
21293
21295
21216
21217
21291
21293
21218
21219
21253
21291
21220
21229
21252
21221
21229
21222
21223
21228
21229
21224
21225
21227
21228
21226
21227
21228
21229
21230
21252
21231
21251
21232
21248
21250
21233
21234
21246
21248
21235
21236
21244
21246
21237
21240
21241
21238
21239
21240
21242
21244
21243
21265
21244
21262
21264
21245
21246
21260
21262
21247
21248
21258
21260
21249
21250
21256
21258
21251
21255
21252
21254
21253
21254
21290
21255
21289
21256
21288
21257
21287
21258
21284
21286
21259
21260
21282
21284
21261
21262
21280
21282
21263
21264
21278
21280
21265
21267
21266
21267
21269
21268
21278
21269
21275
21277
21270
21274
21271
21273
21272
21273
21491
21274
21490
21275
21489
21276
21488
21277
21461
21487
21278
21460
21279
21280
21458
21460
21281
21282
21456
21458
21283
21284
21454
21456
21285
21286
21452
21454
21287
21451
21288
21450
21289
21309
21290
21308
21291
21307
21292
21293
21305
21307
21294
21295
21303
21305
21296
21297
21301
21303
21298
21299
21301
21300
21320
21301
21317
21319
21302
21303
21315
21317
21304
21305
21313
21315
21306
21307
21311
21313
21308
21309
21311
21310
21450
21311
21447
21449
21312
21313
21445
21447
21314
21315
21443
21445
21316
21317
21441
21443
21318
21319
21439
21441
21320
21438
21321
21322
21436
21438
21323
21324
21434
21436
21325
21329
21326
21328
21327
21328
21332
21329
21331
21330
21434
21331
21335
21433
21332
21334
21333
21334
21338
21335
21337
21336
21432
21337
21421
21431
21338
21420
21339
21419
21340
21418
21341
21342
21418
21343
21415
21417
21344
21414
21345
21413
21346
21347
21411
21413
21348
21349
21369
21411
21350
21368
21351
21352
21366
21368
21353
21354
21364
21366
21355
21356
21362
21364
21357
21358
21360
21362
21359
21360
21380
21361
21379
21362
21376
21378
21363
21364
21374
21376
21365
21366
21372
21374
21367
21368
21370
21372
21369
21370
21410
21371
21409
21372
21406
21408
21373
21374
21404
21406
21375
21376
21402
21404
21377
21378
21400
21402
21379
21399
21380
21398
21381
21397
21382
21383
21395
21397
21384
21385
21395
21386
21392
21394
21387
21388
21390
21392
21389
21390
22311
21391
22310
21392
22307
22309
21393
21394
22305
22307
21395
22304
21396
21397
22302
22304
21398
21399
22302
21400
22301
21401
22300
21402
22297
22299
21403
21404
22295
22297
21405
21406
22293
22295
21407
21408
22291
22293
21409
22274
21410
22273
21411
22272
21412
21413
22270
22272
21414
21415
22270
21416
22269
21417
21425
22268
21418
21424
21419
21420
21424
21421
21423
21422
21430
21423
21427
21429
21424
21426
21425
21426
22267
21427
22266
21428
22265
21429
22130
22264
21430
22129
21431
22124
21432
22123
21433
22090
21434
22089
21435
21436
22087
22089
21437
21438
22085
22087
21439
21440
22085
21441
22082
22084
21442
21443
22080
22082
21444
21445
22078
22080
21446
21447
22076
22078
21448
21449
21473
22076
21450
21472
21451
21452
21472
21453
21471
21454
21468
21470
21455
21456
21466
21468
21457
21458
21464
21466
21459
21460
21462
21464
21461
21462
21486
21463
21485
21464
21482
21484
21465
21466
21480
21482
21467
21468
21478
21480
21469
21470
21476
21478
21471
21475
21472
21474
21473
21474
22075
21475
22074
21476
22073
21477
22072
21478
22069
22071
21479
21480
22067
22069
21481
21482
22065
22067
21483
21484
22063
22065
21485
21574
21486
21573
21487
21568
21488
21567
21489
21550
21490
21549
21491
21524
21492
21523
21493
21522
21494
21495
21520
21522
21496
21497
21518
21520
21498
21508
21517
21499
21508
21500
21501
21506
21508
21502
21504
21505
21503
21504
21506
21507
21507
21508
21509
21517
21510
21516
21511
21515
21512
21514
21513
21593
21514
21534
21592
21515
21533
21516
21532
21517
21531
21518
21519
21531
21520
21528
21530
21521
21522
21526
21528
21523
21524
21526
21525
21549
21526
21546
21548
21527
21528
21544
21546
21529
21530
21538
21544
21531
21537
21532
21533
21537
21534
21536
21535
21591
21536
21540
21590
21537
21539
21538
21539
21543
21540
21542
21541
21589
21542
21558
21588
21543
21557
21544
21556
21545
21546
21554
21556
21547
21548
21552
21554
21549
21551
21550
21551
21567
21552
21566
21553
21565
21554
21562
21564
21555
21556
21560
21562
21557
21558
21560
21559
21587
21560
21584
21586
21561
21562
21582
21584
21563
21564
21580
21582
21565
21579
21566
21570
21567
21569
21568
21569
21573
21570
21572
21571
21579
21572
21576
21578
21573
21575
21574
21575
22063
21576
22062
21577
22061
21578
22054
22060
21579
22053
21580
21581
22053
21582
22050
22052
21583
21584
22048
22050
21585
21586
22026
22048
21587
22025
21588
22020
21589
22019
21590
21614
21591
21613
21592
21608
21593
21607
21594
21595
21607
21596
21606
21597
21605
21598
21604
21599
21603
21600
21602
21601
21633
21602
21622
21632
21603
21621
21604
21620
21605
21619
21606
21610
21607
21609
21608
21609
21613
21610
21612
21611
21619
21612
21616
21618
21613
21615
21614
21615
22019
21616
22018
21617
22017
21618
21626
22016
21619
21625
21620
21621
21625
21622
21624
21623
21631
21624
21628
21630
21625
21627
21626
21627
22015
21628
22014
21629
22013
21630
21942
22012
21631
21941
21632
21936
21633
21935
21634
21918
21635
21917
21636
21637
21915
21917
21638
21639
21915
21640
21912
21914
21641
21642
21650
21912
21643
21649
21644
21645
21649
21646
21648
21647
21655
21648
21652
21654
21649
21651
21650
21651
21911
21652
21910
21653
21909
21654
21822
21908
21655
21821
21656
21816
21657
21815
21658
21794
21659
21793
21660
21788
21661
21787
21662
21702
21663
21701
21664
21696
21665
21695
21666
21674
21667
21673
21668
21669
21673
21670
21672
21671
21679
21672
21676
21678
21673
21675
21674
21675
21695
21676
21694
21677
21693
21678
21686
21692
21679
21685
21680
21681
21685
21682
21684
21683
21723
21684
21688
21722
21685
21687
21686
21687
21691
21688
21690
21689
21721
21690
21710
21720
21691
21709
21692
21708
21693
21707
21694
21698
21695
21697
21696
21697
21701
21698
21700
21699
21707
21700
21704
21706
21701
21703
21702
21703
21787
21704
21786
21705
21785
21706
21714
21784
21707
21713
21708
21709
21713
21710
21712
21711
21719
21712
21716
21718
21713
21715
21714
21715
21783
21716
21782
21717
21781
21718
21758
21780
21719
21757
21720
21752
21721
21751
21722
21730
21723
21729
21724
21725
21729
21726
21728
21727
21735
21728
21732
21734
21729
21731
21730
21731
21751
21732
21750
21733
21749
21734
21742
21748
21735
21741
21736
21737
21741
21738
21740
21739
25507
21740
21744
25506
21741
21743
21742
21743
21747
21744
21746
21745
25505
21746
21766
25504
21747
21765
21748
21764
21749
21763
21750
21754
21751
21753
21752
21753
21757
21754
21756
21755
21763
21756
21760
21762
21757
21759
21758
21759
21779
21760
21778
21761
21777
21762
21770
21776
21763
21769
21764
21765
21769
21766
21768
21767
25503
21768
21772
25502
21769
21771
21770
21771
21775
21772
21774
21773
25501
21774
21858
25500
21775
21857
21776
21856
21777
21855
21778
21846
21779
21845
21780
21844
21781
21843
21782
21802
21783
21801
21784
21800
21785
21799
21786
21790
21787
21789
21788
21789
21793
21790
21792
21791
21799
21792
21796
21798
21793
21795
21794
21795
21815
21796
21814
21797
21813
21798
21806
21812
21799
21805
21800
21801
21805
21802
21804
21803
21843
21804
21808
21842
21805
21807
21806
21807
21811
21808
21810
21809
21841
21810
21830
21840
21811
21829
21812
21828
21813
21827
21814
21818
21815
21817
21816
21817
21821
21818
21820
21819
21827
21820
21824
21826
21821
21823
21822
21823
21907
21824
21906
21825
21905
21826
21834
21904
21827
21833
21828
21829
21833
21830
21832
21831
21839
21832
21836
21838
21833
21835
21834
21835
21903
21836
21902
21837
21901
21838
21878
21900
21839
21877
21840
21872
21841
21871
21842
21850
21843
21849
21844
21845
21849
21846
21848
21847
21855
21848
21852
21854
21849
21851
21850
21851
21871
21852
21870
21853
21869
21854
21862
21868
21855
21861
21856
21857
21861
21858
21860
21859
25499
21860
21864
25498
21861
21863
21862
21863
21867
21864
21866
21865
25497
21866
21886
25496
21867
21885
21868
21884
21869
21883
21870
21874
21871
21873
21872
21873
21877
21874
21876
21875
21883
21876
21880
21882
21877
21879
21878
21879
21899
21880
21898
21881
21897
21882
21890
21896
21883
21889
21884
21885
21889
21886
21888
21887
25495
21888
21892
25494
21889
21891
21890
21891
21895
21892
21894
21893
25493
21894
24646
25492
21895
24645
21896
24644
21897
24643
21898
24634
21899
24633
21900
24632
21901
24631
21902
21970
21903
21969
21904
21968
21905
21967
21906
21958
21907
21957
21908
21956
21909
21955
21910
21926
21911
21925
21912
21924
21913
21914
21922
21924
21915
21921
21916
21917
21919
21921
21918
21919
21935
21920
21934
21921
21931
21933
21922
21923
21931
21924
21928
21930
21925
21926
21928
21927
21955
21928
21952
21954
21929
21930
21950
21952
21931
21949
21932
21933
21947
21949
21934
21938
21935
21937
21936
21937
21941
21938
21940
21939
21947
21940
21944
21946
21941
21943
21942
21943
22011
21944
22010
21945
22009
21946
21990
22008
21947
21989
21948
21949
21987
21989
21950
21951
21987
21952
21984
21986
21953
21954
21962
21984
21955
21961
21956
21957
21961
21958
21960
21959
21967
21960
21964
21966
21961
21963
21962
21963
21983
21964
21982
21965
21981
21966
21974
21980
21967
21973
21968
21969
21973
21970
21972
21971
24631
21972
21976
24630
21973
21975
21974
21975
21979
21976
21978
21977
24629
21978
24618
24628
21979
24617
21980
24616
21981
24615
21982
21998
21983
21997
21984
21996
21985
21986
21994
21996
21987
21993
21988
21989
21991
21993
21990
21991
22007
21992
22006
21993
22003
22005
21994
21995
22003
21996
22000
22002
21997
21998
22000
21999
24615
22000
24612
24614
22001
22002
24610
24612
22003
24609
22004
22005
24607
24609
22006
24566
22007
24565
22008
24564
22009
24563
22010
24554
22011
24553
22012
24552
22013
24551
22014
22034
22015
22033
22016
22032
22017
22031
22018
22022
22019
22021
22020
22021
22025
22022
22024
22023
22031
22024
22028
22030
22025
22027
22026
22027
22047
22028
22046
22029
22045
22030
22038
22044
22031
22037
22032
22033
22037
22034
22036
22035
24551
22036
22040
24550
22037
22039
22038
22039
22043
22040
22042
22041
24549
22042
24538
24548
22043
24537
22044
24536
22045
24535
22046
24522
22047
24521
22048
24520
22049
22050
24518
24520
22051
22052
22056
24518
22053
22055
22054
22055
22059
22056
22058
22057
24517
22058
22202
24516
22059
22201
22060
22200
22061
22199
22062
22174
22063
22173
22064
22065
22171
22173
22066
22067
22169
22171
22068
22069
22167
22169
22070
22071
22165
22167
22072
22164
22073
22163
22074
22106
22075
22105
22076
22104
22077
22078
22102
22104
22079
22080
22100
22102
22081
22082
22098
22100
22083
22084
22096
22098
22085
22095
22086
22087
22093
22095
22088
22089
22091
22093
22090
22091
22123
22092
22122
22093
22119
22121
22094
22095
22117
22119
22096
22097
22117
22098
22114
22116
22099
22100
22112
22114
22101
22102
22110
22112
22103
22104
22108
22110
22105
22106
22108
22107
22163
22108
22160
22162
22109
22110
22158
22160
22111
22112
22156
22158
22113
22114
22154
22156
22115
22116
22140
22154
22117
22139
22118
22119
22137
22139
22120
22121
22135
22137
22122
22126
22123
22125
22124
22125
22129
22126
22128
22127
22135
22128
22132
22134
22129
22131
22130
22131
22263
22132
22262
22133
22261
22134
22146
22260
22135
22145
22136
22137
22143
22145
22138
22139
22141
22143
22140
22141
22153
22142
22152
22143
22149
22151
22144
22145
22147
22149
22146
22147
22259
22148
22258
22149
22255
22257
22150
22151
22253
22255
22152
22232
22153
22231
22154
22230
22155
22156
22228
22230
22157
22158
22226
22228
22159
22160
22224
22226
22161
22162
22186
22224
22163
22185
22164
22165
22185
22166
22184
22167
22181
22183
22168
22169
22179
22181
22170
22171
22177
22179
22172
22173
22175
22177
22174
22175
22199
22176
22198
22177
22195
22197
22178
22179
22193
22195
22180
22181
22191
22193
22182
22183
22189
22191
22184
22188
22185
22187
22186
22187
22223
22188
22222
22189
22221
22190
22220
22191
22217
22219
22192
22193
22215
22217
22194
22195
22213
22215
22196
22197
22211
22213
22198
22206
22199
22205
22200
22201
22205
22202
22204
22203
24515
22204
22208
24514
22205
22207
22206
22207
22211
22208
22210
22209
24513
22210
24486
24512
22211
24485
22212
22213
24483
24485
22214
22215
24481
24483
22216
22217
24479
24481
22218
22219
24477
24479
22220
24476
22221
24475
22222
22242
22223
22241
22224
22240
22225
22226
22238
22240
22227
22228
22236
22238
22229
22230
22234
22236
22231
22232
22234
22233
22253
22234
22250
22252
22235
22236
22248
22250
22237
22238
22246
22248
22239
22240
22244
22246
22241
22242
22244
22243
24475
22244
24472
24474
22245
22246
24470
24472
22247
22248
24468
24470
22249
22250
24466
24468
22251
22252
24464
24466
22253
24463
22254
22255
24461
24463
22256
22257
24459
24461
22258
22722
22259
22721
22260
22720
22261
22719
22262
22710
22263
22709
22264
22708
22265
22707
22266
22282
22267
22281
22268
22280
22269
22279
22270
22278
22271
22272
22276
22278
22273
22274
22276
22275
22291
22276
22288
22290
22277
22278
22286
22288
22279
22280
22286
22281
22285
22282
22284
22283
22707
22284
22692
22706
22285
22691
22286
22690
22287
22288
22688
22690
22289
22290
22358
22688
22291
22357
22292
22293
22355
22357
22294
22295
22353
22355
22296
22297
22351
22353
22298
22299
22349
22351
22300
22348
22301
22347
22302
22346
22303
22304
22344
22346
22305
22306
22344
22307
22341
22343
22308
22309
22339
22341
22310
22330
22311
22329
22312
22328
22313
22327
22314
22318
22315
22317
22316
22317
22321
22318
22320
22319
22327
22320
22324
22326
22321
22323
22322
22323
22407
22324
22406
22325
22405
22326
22334
22404
22327
22333
22328
22329
22333
22330
22332
22331
22339
22332
22336
22338
22333
22335
22334
22335
22403
22336
22402
22337
22401
22338
22378
22400
22339
22377
22340
22341
22375
22377
22342
22343
22373
22375
22344
22372
22345
22346
22370
22372
22347
22348
22370
22349
22369
22350
22368
22351
22365
22367
22352
22353
22363
22365
22354
22355
22361
22363
22356
22357
22359
22361
22358
22359
22687
22360
22686
22361
22683
22685
22362
22363
22681
22683
22364
22365
22679
22681
22366
22367
22677
22679
22368
22388
22369
22387
22370
22386
22371
22372
22384
22386
22373
22374
22384
22375
22381
22383
22376
22377
22379
22381
22378
22379
22399
22380
22398
22381
22395
22397
22382
22383
22393
22395
22384
22392
22385
22386
22390
22392
22387
22388
22390
22389
22677
22390
22674
22676
22391
22392
22672
22674
22393
22394
22672
22395
22669
22671
22396
22397
22667
22669
22398
22658
22399
22657
22400
22656
22401
22655
22402
22470
22403
22469
22404
22468
22405
22467
22406
22454
22407
22453
22408
22409
22451
22453
22410
22411
22449
22451
22412
22436
22413
22435
22414
22434
22415
22416
22432
22434
22417
22418
22422
22432
22419
22421
22420
22421
22425
22422
22424
22423
22431
22424
22428
22430
22425
22427
22426
22427
22495
22428
22494
22429
22493
22430
22442
22492
22431
22441
22432
22440
22433
22434
22438
22440
22435
22436
22438
22437
22449
22438
22446
22448
22439
22440
22444
22446
22441
22442
22444
22443
22491
22444
22488
22490
22445
22446
22486
22488
22447
22448
22460
22486
22449
22459
22450
22451
22457
22459
22452
22453
22455
22457
22454
22455
22467
22456
22466
22457
22463
22465
22458
22459
22461
22463
22460
22461
22485
22462
22484
22463
22481
22483
22464
22465
22479
22481
22466
22474
22467
22473
22468
22469
22473
22470
22472
22471
22655
22472
22476
22654
22473
22475
22474
22475
22479
22476
22478
22477
22653
22478
22626
22652
22479
22625
22480
22481
22623
22625
22482
22483
22621
22623
22484
22620
22485
22619
22486
22618
22487
22488
22616
22618
22489
22490
22574
22616
22491
22573
22492
22572
22493
22571
22494
22562
22495
22561
22496
22560
22497
22559
22498
22518
22499
22517
22500
22516
22501
22515
22502
22506
22503
22505
22504
22505
22509
22506
22508
22507
22515
22508
22512
22514
22509
22511
22510
22511
22531
22512
22530
22513
22529
22514
22522
22528
22515
22521
22516
22517
22521
22518
22520
22519
22559
22520
22524
22558
22521
22523
22522
22523
22527
22524
22526
22525
22557
22526
22546
22556
22527
22545
22528
22544
22529
22543
22530
22534
22531
22533
22532
22533
22537
22534
22536
22535
22543
22536
22540
22542
22537
22539
22538
22539
23007
22540
23006
22541
23005
22542
22550
23004
22543
22549
22544
22545
22549
22546
22548
22547
22555
22548
22552
22554
22549
22551
22550
22551
23003
22552
23002
22553
23001
22554
22594
23000
22555
22593
22556
22588
22557
22587
22558
22566
22559
22565
22560
22561
22565
22562
22564
22563
22571
22564
22568
22570
22565
22567
22566
22567
22587
22568
22586
22569
22585
22570
22578
22584
22571
22577
22572
22573
22577
22574
22576
22575
22615
22576
22580
22614
22577
22579
22578
22579
22583
22580
22582
22581
22613
22582
22602
22612
22583
22601
22584
22600
22585
22599
22586
22590
22587
22589
22588
22589
22593
22590
22592
22591
22599
22592
22596
22598
22593
22595
22594
22595
22999
22596
22998
22597
22997
22598
22606
22996
22599
22605
22600
22601
22605
22602
22604
22603
22611
22604
22608
22610
22605
22607
22606
22607
22995
22608
22994
22609
22993
22610
22922
22992
22611
22921
22612
22916
22613
22915
22614
22638
22615
22637
22616
22636
22617
22618
22634
22636
22619
22620
22634
22621
22633
22622
22632
22623
22629
22631
22624
22625
22627
22629
22626
22627
22651
22628
22650
22629
22647
22649
22630
22631
22645
22647
22632
22644
22633
22643
22634
22642
22635
22636
22640
22642
22637
22638
22640
22639
22915
22640
22912
22914
22641
22642
22910
22912
22643
22644
22910
22645
22909
22646
22908
22647
22905
22907
22648
22649
22903
22905
22650
22882
22651
22881
22652
22876
22653
22875
22654
22662
22655
22661
22656
22657
22661
22658
22660
22659
22667
22660
22664
22666
22661
22663
22662
22663
22875
22664
22874
22665
22873
22666
22786
22872
22667
22785
22668
22669
22783
22785
22670
22671
22781
22783
22672
22780
22673
22674
22778
22780
22675
22676
22756
22778
22677
22755
22678
22679
22753
22755
22680
22681
22751
22753
22682
22683
22749
22751
22684
22685
22747
22749
22686
22698
22687
22697
22688
22696
22689
22690
22694
22696
22691
22692
22694
22693
22705
22694
22702
22704
22695
22696
22700
22702
22697
22698
22700
22699
22747
22700
22744
22746
22701
22702
22742
22744
22703
22704
22736
22742
22705
22735
22706
22714
22707
22713
22708
22709
22713
22710
22712
22711
22719
22712
22716
22718
22713
22715
22714
22715
22735
22716
22734
22717
22733
22718
22726
22732
22719
22725
22720
22721
22725
22722
22724
22723
24459
22724
22728
24458
22725
22727
22726
22727
22731
22728
22730
22729
24457
22730
22818
24456
22731
22817
22732
22816
22733
22815
22734
22738
22735
22737
22736
22737
22741
22738
22740
22739
22815
22740
22812
22814
22741
22811
22742
22810
22743
22744
22808
22810
22745
22746
22766
22808
22747
22765
22748
22749
22763
22765
22750
22751
22761
22763
22752
22753
22759
22761
22754
22755
22757
22759
22756
22757
22777
22758
22776
22759
22773
22775
22760
22761
22771
22773
22762
22763
22769
22771
22764
22765
22767
22769
22766
22767
22807
22768
22806
22769
22803
22805
22770
22771
22801
22803
22772
22773
22799
22801
22774
22775
22797
22799
22776
22796
22777
22795
22778
22794
22779
22780
22792
22794
22781
22782
22792
22783
22789
22791
22784
22785
22787
22789
22786
22787
22871
22788
22870
22789
22867
22869
22790
22791
22865
22867
22792
22864
22793
22794
22862
22864
22795
22796
22862
22797
22861
22798
22860
22799
22857
22859
22800
22801
22855
22857
22802
22803
22853
22855
22804
22805
22851
22853
22806
22834
22807
22833
22808
22832
22809
22810
22830
22832
22811
22812
22830
22813
22829
22814
22822
22828
22815
22821
22816
22817
22821
22818
22820
22819
24455
22820
22824
24454
22821
22823
22822
22823
22827
22824
22826
22825
24453
22826
22842
24452
22827
22841
22828
22840
22829
22839
22830
22838
22831
22832
22836
22838
22833
22834
22836
22835
22851
22836
22848
22850
22837
22838
22846
22848
22839
22840
22846
22841
22845
22842
22844
22843
24451
22844
24436
24450
22845
24435
22846
24434
22847
22848
24432
24434
22849
22850
24358
24432
22851
24357
22852
22853
24355
24357
22854
22855
24353
24355
22856
22857
24351
24353
22858
22859
24349
24351
22860
24348
22861
24347
22862
24346
22863
22864
24344
24346
22865
22866
24344
22867
24341
24343
22868
22869
24339
24341
22870
22890
22871
22889
22872
22888
22873
22887
22874
22878
22875
22877
22876
22877
22881
22878
22880
22879
22887
22880
22884
22886
22881
22883
22882
22883
22903
22884
22902
22885
22901
22886
22894
22900
22887
22893
22888
22889
22893
22890
22892
22891
24339
22892
22896
24338
22893
22895
22894
22895
22899
22896
22898
22897
24337
22898
22966
24336
22899
22965
22900
22964
22901
22963
22902
22950
22903
22949
22904
22905
22947
22949
22906
22907
22945
22947
22908
22932
22909
22931
22910
22930
22911
22912
22928
22930
22913
22914
22918
22928
22915
22917
22916
22917
22921
22918
22920
22919
22927
22920
22924
22926
22921
22923
22922
22923
22991
22924
22990
22925
22989
22926
22938
22988
22927
22937
22928
22936
22929
22930
22934
22936
22931
22932
22934
22933
22945
22934
22942
22944
22935
22936
22940
22942
22937
22938
22940
22939
22987
22940
22984
22986
22941
22942
22982
22984
22943
22944
22956
22982
22945
22955
22946
22947
22953
22955
22948
22949
22951
22953
22950
22951
22963
22952
22962
22953
22959
22961
22954
22955
22957
22959
22956
22957
22981
22958
22980
22959
22977
22979
22960
22961
22975
22977
22962
22970
22963
22969
22964
22965
22969
22966
22968
22967
24335
22968
22972
24334
22969
22971
22970
22971
22975
22972
22974
22973
24333
22974
24306
24332
22975
24305
22976
22977
24303
24305
22978
22979
24301
24303
22980
24300
22981
24299
22982
24298
22983
22984
24296
24298
22985
22986
24254
24296
22987
24253
22988
24252
22989
24251
22990
24242
22991
24241
22992
24240
22993
24239
22994
24070
22995
24069
22996
24068
22997
24067
22998
24058
22999
24057
23000
24056
23001
24055
23002
24014
23003
24013
23004
24012
23005
24011
23006
24002
23007
24001
23008
24000
23009
23999
23010
23350
23011
23349
23012
23348
23013
23347
23014
23338
23015
23337
23016
23336
23017
23335
23018
23294
23019
23293
23020
23292
23021
23291
23022
23282
23023
23281
23024
23280
23025
23279
23026
23110
23027
23109
23028
23108
23029
23107
23030
23098
23031
23097
23032
23096
23033
23095
23034
23054
23035
23053
23036
23052
23037
23051
23038
23042
23039
23041
23040
23041
23045
23042
23044
23043
23051
23044
23048
23050
23045
23047
23046
23047
23067
23048
23066
23049
23065
23050
23058
23064
23051
23057
23052
23053
23057
23054
23056
23055
23095
23056
23060
23094
23057
23059
23058
23059
23063
23060
23062
23061
23093
23062
23082
23092
23063
23081
23064
23080
23065
23079
23066
23070
23067
23069
23068
23069
23073
23070
23072
23071
23079
23072
23076
23078
23073
23075
23074
23075
23159
23076
23158
23077
23157
23078
23086
23156
23079
23085
23080
23081
23085
23082
23084
23083
23091
23084
23088
23090
23085
23087
23086
23087
23155
23088
23154
23089
23153
23090
23130
23152
23091
23129
23092
23124
23093
23123
23094
23102
23095
23101
23096
23097
23101
23098
23100
23099
23107
23100
23104
23106
23101
23103
23102
23103
23123
23104
23122
23105
23121
23106
23114
23120
23107
23113
23108
23109
23113
23110
23112
23111
23279
23112
23116
23278
23113
23115
23114
23115
23119
23116
23118
23117
23277
23118
23138
23276
23119
23137
23120
23136
23121
23135
23122
23126
23123
23125
23124
23125
23129
23126
23128
23127
23135
23128
23132
23134
23129
23131
23130
23131
23151
23132
23150
23133
23149
23134
23142
23148
23135
23141
23136
23137
23141
23138
23140
23139
23275
23140
23144
23274
23141
23143
23142
23143
23147
23144
23146
23145
23273
23146
23230
23272
23147
23229
23148
23228
23149
23227
23150
23218
23151
23217
23152
23216
23153
23215
23154
23174
23155
23173
23156
23172
23157
23171
23158
23162
23159
23161
23160
23161
23165
23162
23164
23163
23171
23164
23168
23170
23165
23167
23166
23167
23187
23168
23186
23169
23185
23170
23178
23184
23171
23177
23172
23173
23177
23174
23176
23175
23215
23176
23180
23214
23177
23179
23178
23179
23183
23180
23182
23181
23213
23182
23202
23212
23183
23201
23184
23200
23185
23199
23186
23190
23187
23189
23188
23189
23193
23190
23192
23191
23199
23192
23196
23198
23193
23195
23194
23195
23535
23196
23534
23197
23533
23198
23206
23532
23199
23205
23200
23201
23205
23202
23204
23203
23211
23204
23208
23210
23205
23207
23206
23207
23531
23208
23530
23209
23529
23210
23250
23528
23211
23249
23212
23244
23213
23243
23214
23222
23215
23221
23216
23217
23221
23218
23220
23219
23227
23220
23224
23226
23221
23223
23222
23223
23243
23224
23242
23225
23241
23226
23234
23240
23227
23233
23228
23229
23233
23230
23232
23231
23271
23232
23236
23270
23233
23235
23234
23235
23239
23236
23238
23237
23269
23238
23258
23268
23239
23257
23240
23256
23241
23255
23242
23246
23243
23245
23244
23245
23249
23246
23248
23247
23255
23248
23252
23254
23249
23251
23250
23251
23527
23252
23526
23253
23525
23254
23262
23524
23255
23261
23256
23257
23261
23258
23260
23259
23267
23260
23264
23266
23261
23263
23262
23263
23523
23264
23522
23265
23521
23266
23434
23520
23267
23433
23268
23428
23269
23427
23270
23406
23271
23405
23272
23400
23273
23399
23274
23314
23275
23313
23276
23308
23277
23307
23278
23286
23279
23285
23280
23281
23285
23282
23284
23283
23291
23284
23288
23290
23285
23287
23286
23287
23307
23288
23306
23289
23305
23290
23298
23304
23291
23297
23292
23293
23297
23294
23296
23295
23335
23296
23300
23334
23297
23299
23298
23299
23303
23300
23302
23301
23333
23302
23322
23332
23303
23321
23304
23320
23305
23319
23306
23310
23307
23309
23308
23309
23313
23310
23312
23311
23319
23312
23316
23318
23313
23315
23314
23315
23399
23316
23398
23317
23397
23318
23326
23396
23319
23325
23320
23321
23325
23322
23324
23323
23331
23324
23328
23330
23325
23327
23326
23327
23395
23328
23394
23329
23393
23330
23370
23392
23331
23369
23332
23364
23333
23363
23334
23342
23335
23341
23336
23337
23341
23338
23340
23339
23347
23340
23344
23346
23341
23343
23342
23343
23363
23344
23362
23345
23361
23346
23354
23360
23347
23353
23348
23349
23353
23350
23352
23351
23999
23352
23356
23998
23353
23355
23354
23355
23359
23356
23358
23357
23997
23358
23378
23996
23359
23377
23360
23376
23361
23375
23362
23366
23363
23365
23364
23365
23369
23366
23368
23367
23375
23368
23372
23374
23369
23371
23370
23371
23391
23372
23390
23373
23389
23374
23382
23388
23375
23381
23376
23377
23381
23378
23380
23379
23995
23380
23384
23994
23381
23383
23382
23383
23387
23384
23386
23385
23993
23386
23470
23992
23387
23469
23388
23468
23389
23467
23390
23458
23391
23457
23392
23456
23393
23455
23394
23414
23395
23413
23396
23412
23397
23411
23398
23402
23399
23401
23400
23401
23405
23402
23404
23403
23411
23404
23408
23410
23405
23407
23406
23407
23427
23408
23426
23409
23425
23410
23418
23424
23411
23417
23412
23413
23417
23414
23416
23415
23455
23416
23420
23454
23417
23419
23418
23419
23423
23420
23422
23421
23453
23422
23442
23452
23423
23441
23424
23440
23425
23439
23426
23430
23427
23429
23428
23429
23433
23430
23432
23431
23439
23432
23436
23438
23433
23435
23434
23435
23519
23436
23518
23437
23517
23438
23446
23516
23439
23445
23440
23441
23445
23442
23444
23443
23451
23444
23448
23450
23445
23447
23446
23447
23515
23448
23514
23449
23513
23450
23490
23512
23451
23489
23452
23484
23453
23483
23454
23462
23455
23461
23456
23457
23461
23458
23460
23459
23467
23460
23464
23466
23461
23463
23462
23463
23483
23464
23482
23465
23481
23466
23474
23480
23467
23473
23468
23469
23473
23470
23472
23471
23991
23472
23476
23990
23473
23475
23474
23475
23479
23476
23478
23477
23989
23478
23498
23988
23479
23497
23480
23496
23481
23495
23482
23486
23483
23485
23484
23485
23489
23486
23488
23487
23495
23488
23492
23494
23489
23491
23490
23491
23511
23492
23510
23493
23509
23494
23502
23508
23495
23501
23496
23497
23501
23498
23500
23499
23987
23500
23504
23986
23501
23503
23502
23503
23507
23504
23506
23505
23985
23506
23830
23984
23507
23829
23508
23828
23509
23827
23510
23818
23511
23817
23512
23816
23513
23815
23514
23774
23515
23773
23516
23772
23517
23771
23518
23762
23519
23761
23520
23760
23521
23759
23522
23606
23523
23605
23524
23604
23525
23603
23526
23594
23527
23593
23528
23592
23529
23591
23530
23550
23531
23549
23532
23548
23533
23547
23534
23538
23535
23537
23536
23537
23541
23538
23540
23539
23547
23540
23544
23546
23541
23543
23542
23543
23563
23544
23562
23545
23561
23546
23554
23560
23547
23553
23548
23549
23553
23550
23552
23551
23591
23552
23556
23590
23553
23555
23554
23555
23559
23556
23558
23557
23589
23558
23578
23588
23559
23577
23560
23576
23561
23575
23562
23566
23563
23565
23564
23565
23569
23566
23568
23567
23575
23568
23572
23574
23569
23571
23570
23571
23655
23572
23654
23573
23653
23574
23582
23652
23575
23581
23576
23577
23581
23578
23580
23579
23587
23580
23584
23586
23581
23583
23582
23583
23651
23584
23650
23585
23649
23586
23626
23648
23587
23625
23588
23620
23589
23619
23590
23598
23591
23597
23592
23593
23597
23594
23596
23595
23603
23596
23600
23602
23597
23599
23598
23599
23619
23600
23618
23601
23617
23602
23610
23616
23603
23609
23604
23605
23609
23606
23608
23607
23759
23608
23612
23758
23609
23611
23610
23611
23615
23612
23614
23613
23757
23614
23634
23756
23615
23633
23616
23632
23617
23631
23618
23622
23619
23621
23620
23621
23625
23622
23624
23623
23631
23624
23628
23630
23625
23627
23626
23627
23647
23628
23646
23629
23645
23630
23638
23644
23631
23637
23632
23633
23637
23634
23636
23635
23755
23636
23640
23754
23637
23639
23638
23639
23643
23640
23642
23641
23753
23642
23718
23752
23643
23717
23644
23716
23645
23715
23646
23706
23647
23705
23648
23704
23649
23703
23650
23670
23651
23669
23652
23668
23653
23667
23654
23658
23655
23657
23656
23657
23661
23658
23660
23659
23667
23660
23664
23666
23661
23663
23662
23663
23683
23664
23682
23665
23681
23666
23674
23680
23667
23673
23668
23669
23673
23670
23672
23671
23703
23672
23676
23702
23673
23675
23674
23675
23679
23676
23678
23677
23701
23678
23694
23700
23679
23693
23680
23692
23681
23691
23682
23686
23683
23685
23684
23685
23689
23686
23688
23687
23691
23688
23690
23689
23691
23697
23692
23693
23697
23694
23696
23695
23699
23696
23698
23697
23699
23737
23700
23732
23701
23731
23702
23710
23703
23709
23704
23705
23709
23706
23708
23707
23715
23708
23712
23714
23709
23711
23710
23711
23731
23712
23730
23713
23729
23714
23722
23728
23715
23721
23716
23717
23721
23718
23720
23719
23751
23720
23724
23750
23721
23723
23722
23723
23727
23724
23726
23725
23749
23726
23742
23748
23727
23741
23728
23740
23729
23739
23730
23734
23731
23733
23732
23733
23737
23734
23736
23735
23739
23736
23738
23737
23739
23745
23740
23741
23745
23742
23744
23743
23747
23744
23746
23745
23747
23913
23748
23908
23749
23907
23750
23886
23751
23885
23752
23880
23753
23879
23754
23794
23755
23793
23756
23788
23757
23787
23758
23766
23759
23765
23760
23761
23765
23762
23764
23763
23771
23764
23768
23770
23765
23767
23766
23767
23787
23768
23786
23769
23785
23770
23778
23784
23771
23777
23772
23773
23777
23774
23776
23775
23815
23776
23780
23814
23777
23779
23778
23779
23783
23780
23782
23781
23813
23782
23802
23812
23783
23801
23784
23800
23785
23799
23786
23790
23787
23789
23788
23789
23793
23790
23792
23791
23799
23792
23796
23798
23793
23795
23794
23795
23879
23796
23878
23797
23877
23798
23806
23876
23799
23805
23800
23801
23805
23802
23804
23803
23811
23804
23808
23810
23805
23807
23806
23807
23875
23808
23874
23809
23873
23810
23850
23872
23811
23849
23812
23844
23813
23843
23814
23822
23815
23821
23816
23817
23821
23818
23820
23819
23827
23820
23824
23826
23821
23823
23822
23823
23843
23824
23842
23825
23841
23826
23834
23840
23827
23833
23828
23829
23833
23830
23832
23831
23983
23832
23836
23982
23833
23835
23834
23835
23839
23836
23838
23837
23981
23838
23858
23980
23839
23857
23840
23856
23841
23855
23842
23846
23843
23845
23844
23845
23849
23846
23848
23847
23855
23848
23852
23854
23849
23851
23850
23851
23871
23852
23870
23853
23869
23854
23862
23868
23855
23861
23856
23857
23861
23858
23860
23859
23979
23860
23864
23978
23861
23863
23862
23863
23867
23864
23866
23865
23977
23866
23942
23976
23867
23941
23868
23940
23869
23939
23870
23930
23871
23929
23872
23928
23873
23927
23874
23894
23875
23893
23876
23892
23877
23891
23878
23882
23879
23881
23880
23881
23885
23882
23884
23883
23891
23884
23888
23890
23885
23887
23886
23887
23907
23888
23906
23889
23905
23890
23898
23904
23891
23897
23892
23893
23897
23894
23896
23895
23927
23896
23900
23926
23897
23899
23898
23899
23903
23900
23902
23901
23925
23902
23918
23924
23903
23917
23904
23916
23905
23915
23906
23910
23907
23909
23908
23909
23913
23910
23912
23911
23915
23912
23914
23913
23915
23921
23916
23917
23921
23918
23920
23919
23923
23920
23922
23921
23923
23961
23924
23956
23925
23955
23926
23934
23927
23933
23928
23929
23933
23930
23932
23931
23939
23932
23936
23938
23933
23935
23934
23935
23955
23936
23954
23937
23953
23938
23946
23952
23939
23945
23940
23941
23945
23942
23944
23943
23975
23944
23948
23974
23945
23947
23946
23947
23951
23948
23950
23949
23973
23950
23966
23972
23951
23965
23952
23964
23953
23963
23954
23958
23955
23957
23956
23957
23961
23958
23960
23959
23963
23960
23962
23961
23963
23969
23964
23965
23969
23966
23968
23967
23971
23968
23970
23969
23971
28821
23972
28816
23973
28815
23974
28794
23975
28793
23976
28788
23977
28787
23978
28702
23979
28701
23980
28696
23981
28695
23982
28674
23983
28673
23984
28668
23985
28667
23986
24154
23987
24153
23988
24148
23989
24147
23990
24126
23991
24125
23992
24120
23993
24119
23994
24034
23995
24033
23996
24028
23997
24027
23998
24006
23999
24005
24000
24001
24005
24002
24004
24003
24011
24004
24008
24010
24005
24007
24006
24007
24027
24008
24026
24009
24025
24010
24018
24024
24011
24017
24012
24013
24017
24014
24016
24015
24055
24016
24020
24054
24017
24019
24018
24019
24023
24020
24022
24021
24053
24022
24042
24052
24023
24041
24024
24040
24025
24039
24026
24030
24027
24029
24028
24029
24033
24030
24032
24031
24039
24032
24036
24038
24033
24035
24034
24035
24119
24036
24118
24037
24117
24038
24046
24116
24039
24045
24040
24041
24045
24042
24044
24043
24051
24044
24048
24050
24045
24047
24046
24047
24115
24048
24114
24049
24113
24050
24090
24112
24051
24089
24052
24084
24053
24083
24054
24062
24055
24061
24056
24057
24061
24058
24060
24059
24067
24060
24064
24066
24061
24063
24062
24063
24083
24064
24082
24065
24081
24066
24074
24080
24067
24073
24068
24069
24073
24070
24072
24071
24239
24072
24076
24238
24073
24075
24074
24075
24079
24076
24078
24077
24237
24078
24098
24236
24079
24097
24080
24096
24081
24095
24082
24086
24083
24085
24084
24085
24089
24086
24088
24087
24095
24088
24092
24094
24089
24091
24090
24091
24111
24092
24110
24093
24109
24094
24102
24108
24095
24101
24096
24097
24101
24098
24100
24099
24235
24100
24104
24234
24101
24103
24102
24103
24107
24104
24106
24105
24233
24106
24190
24232
24107
24189
24108
24188
24109
24187
24110
24178
24111
24177
24112
24176
24113
24175
24114
24134
24115
24133
24116
24132
24117
24131
24118
24122
24119
24121
24120
24121
24125
24122
24124
24123
24131
24124
24128
24130
24125
24127
24126
24127
24147
24128
24146
24129
24145
24130
24138
24144
24131
24137
24132
24133
24137
24134
24136
24135
24175
24136
24140
24174
24137
24139
24138
24139
24143
24140
24142
24141
24173
24142
24162
24172
24143
24161
24144
24160
24145
24159
24146
24150
24147
24149
24148
24149
24153
24150
24152
24151
24159
24152
24156
24158
24153
24155
24154
24155
28667
24156
28666
24157
28665
24158
24166
28664
24159
24165
24160
24161
24165
24162
24164
24163
24171
24164
24168
24170
24165
24167
24166
24167
28663
24168
28662
24169
28661
24170
24210
28660
24171
24209
24172
24204
24173
24203
24174
24182
24175
24181
24176
24177
24181
24178
24180
24179
24187
24180
24184
24186
24181
24183
24182
24183
24203
24184
24202
24185
24201
24186
24194
24200
24187
24193
24188
24189
24193
24190
24192
24191
24231
24192
24196
24230
24193
24195
24194
24195
24199
24196
24198
24197
24229
24198
24218
24228
24199
24217
24200
24216
24201
24215
24202
24206
24203
24205
24204
24205
24209
24206
24208
24207
24215
24208
24212
24214
24209
24211
24210
24211
28659
24212
28658
24213
28657
24214
24222
28656
24215
24221
24216
24217
24221
24218
24220
24219
24227
24220
24224
24226
24221
24223
24222
24223
28655
24224
28654
24225
28653
24226
28566
28652
24227
28565
24228
28560
24229
28559
24230
28538
24231
28537
24232
28532
24233
28531
24234
24274
24235
24273
24236
24268
24237
24267
24238
24246
24239
24245
24240
24241
24245
24242
24244
24243
24251
24244
24248
24250
24245
24247
24246
24247
24267
24248
24266
24249
24265
24250
24258
24264
24251
24257
24252
24253
24257
24254
24256
24255
24295
24256
24260
24294
24257
24259
24258
24259
24263
24260
24262
24261
24293
24262
24282
24292
24263
24281
24264
24280
24265
24279
24266
24270
24267
24269
24268
24269
24273
24270
24272
24271
24279
24272
24276
24278
24273
24275
24274
24275
28531
24276
28530
24277
28529
24278
24286
28528
24279
24285
24280
24281
24285
24282
24284
24283
24291
24284
24288
24290
24285
24287
24286
24287
28527
24288
28526
24289
28525
24290
28454
28524
24291
28453
24292
28448
24293
28447
24294
24318
24295
24317
24296
24316
24297
24298
24314
24316
24299
24300
24314
24301
24313
24302
24312
24303
24309
24311
24304
24305
24307
24309
24306
24307
24331
24308
24330
24309
24327
24329
24310
24311
24325
24327
24312
24324
24313
24323
24314
24322
24315
24316
24320
24322
24317
24318
24320
24319
28447
24320
28444
28446
24321
24322
28442
28444
24323
24324
28442
24325
28441
24326
28440
24327
28437
28439
24328
24329
28435
28437
24330
28350
24331
28349
24332
28344
24333
28343
24334
24406
24335
24405
24336
24400
24337
24399
24338
24378
24339
24377
24340
24341
24375
24377
24342
24343
24373
24375
24344
24372
24345
24346
24370
24372
24347
24348
24370
24349
24369
24350
24368
24351
24365
24367
24352
24353
24363
24365
24354
24355
24361
24363
24356
24357
24359
24361
24358
24359
24431
24360
24430
24361
24427
24429
24362
24363
24425
24427
24364
24365
24423
24425
24366
24367
24421
24423
24368
24388
24369
24387
24370
24386
24371
24372
24384
24386
24373
24374
24384
24375
24381
24383
24376
24377
24379
24381
24378
24379
24399
24380
24398
24381
24395
24397
24382
24383
24393
24395
24384
24392
24385
24386
24390
24392
24387
24388
24390
24389
24421
24390
24418
24420
24391
24392
24416
24418
24393
24394
24416
24395
24413
24415
24396
24397
24411
24413
24398
24402
24399
24401
24400
24401
24405
24402
24404
24403
24411
24404
24408
24410
24405
24407
24406
24407
28343
24408
28342
24409
28341
24410
25182
28340
24411
25181
24412
24413
25179
25181
24414
24415
25177
25179
24416
25176
24417
24418
25174
25176
24419
24420
25152
25174
24421
25151
24422
24423
25149
25151
24424
24425
25147
25149
24426
24427
25145
25147
24428
24429
25143
25145
24430
24442
24431
24441
24432
24440
24433
24434
24438
24440
24435
24436
24438
24437
24449
24438
24446
24448
24439
24440
24444
24446
24441
24442
24444
24443
25143
24444
25140
25142
24445
24446
25138
25140
24447
24448
25132
25138
24449
25131
24450
25110
24451
25109
24452
25104
24453
25103
24454
24970
24455
24969
24456
24964
24457
24963
24458
24930
24459
24929
24460
24461
24927
24929
24462
24463
24925
24927
24464
24465
24925
24466
24922
24924
24467
24468
24920
24922
24469
24470
24918
24920
24471
24472
24916
24918
24473
24474
24498
24916
24475
24497
24476
24477
24497
24478
24496
24479
24493
24495
24480
24481
24491
24493
24482
24483
24489
24491
24484
24485
24487
24489
24486
24487
24511
24488
24510
24489
24507
24509
24490
24491
24505
24507
24492
24493
24503
24505
24494
24495
24501
24503
24496
24500
24497
24499
24498
24499
24915
24500
24914
24501
24913
24502
24912
24503
24909
24911
24504
24505
24907
24909
24506
24507
24905
24907
24508
24509
24903
24905
24510
24834
24511
24833
24512
24828
24513
24827
24514
24810
24515
24809
24516
24528
24517
24527
24518
24526
24519
24520
24524
24526
24521
24522
24524
24523
24535
24524
24532
24534
24525
24526
24530
24532
24527
24528
24530
24529
24809
24530
24806
24808
24531
24532
24804
24806
24533
24534
24542
24804
24535
24541
24536
24537
24541
24538
24540
24539
24547
24540
24544
24546
24541
24543
24542
24543
24803
24544
24802
24545
24801
24546
24586
24800
24547
24585
24548
24580
24549
24579
24550
24558
24551
24557
24552
24553
24557
24554
24556
24555
24563
24556
24560
24562
24557
24559
24558
24559
24579
24560
24578
24561
24577
24562
24570
24576
24563
24569
24564
24565
24569
24566
24568
24567
24607
24568
24572
24606
24569
24571
24570
24571
24575
24572
24574
24573
24605
24574
24594
24604
24575
24593
24576
24592
24577
24591
24578
24582
24579
24581
24580
24581
24585
24582
24584
24583
24591
24584
24588
24590
24585
24587
24586
24587
24799
24588
24798
24589
24797
24590
24598
24796
24591
24597
24592
24593
24597
24594
24596
24595
24603
24596
24600
24602
24597
24599
24598
24599
24795
24600
24794
24601
24793
24602
24722
24792
24603
24721
24604
24716
24605
24715
24606
24698
24607
24697
24608
24609
24695
24697
24610
24611
24695
24612
24692
24694
24613
24614
24622
24692
24615
24621
24616
24617
24621
24618
24620
24619
24627
24620
24624
24626
24621
24623
24622
24623
24691
24624
24690
24625
24689
24626
24666
24688
24627
24665
24628
24660
24629
24659
24630
24638
24631
24637
24632
24633
24637
24634
24636
24635
24643
24636
24640
24642
24637
24639
24638
24639
24659
24640
24658
24641
24657
24642
24650
24656
24643
24649
24644
24645
24649
24646
24648
24647
25491
24648
24652
25490
24649
24651
24650
24651
24655
24652
24654
24653
25489
24654
24674
25488
24655
24673
24656
24672
24657
24671
24658
24662
24659
24661
24660
24661
24665
24662
24664
24663
24671
24664
24668
24670
24665
24667
24666
24667
24687
24668
24686
24669
24685
24670
24678
24684
24671
24677
24672
24673
24677
24674
24676
24675
25487
24676
24680
25486
24677
24679
24678
24679
24683
24680
24682
24681
25485
24682
24750
25484
24683
24749
24684
24748
24685
24747
24686
24738
24687
24737
24688
24736
24689
24735
24690
24706
24691
24705
24692
24704
24693
24694
24702
24704
24695
24701
24696
24697
24699
24701
24698
24699
24715
24700
24714
24701
24711
24713
24702
24703
24711
24704
24708
24710
24705
24706
24708
24707
24735
24708
24732
24734
24709
24710
24730
24732
24711
24729
24712
24713
24727
24729
24714
24718
24715
24717
24716
24717
24721
24718
24720
24719
24727
24720
24724
24726
24721
24723
24722
24723
24791
24724
24790
24725
24789
24726
24770
24788
24727
24769
24728
24729
24767
24769
24730
24731
24767
24732
24764
24766
24733
24734
24742
24764
24735
24741
24736
24737
24741
24738
24740
24739
24747
24740
24744
24746
24741
24743
24742
24743
24763
24744
24762
24745
24761
24746
24754
24760
24747
24753
24748
24749
24753
24750
24752
24751
25483
24752
24756
25482
24753
24755
24754
24755
24759
24756
24758
24757
25481
24758
25422
25480
24759
25421
24760
25420
24761
25419
24762
24778
24763
24777
24764
24776
24765
24766
24774
24776
24767
24773
24768
24769
24771
24773
24770
24771
24787
24772
24786
24773
24783
24785
24774
24775
24783
24776
24780
24782
24777
24778
24780
24779
25419
24780
25416
25418
24781
24782
25414
25416
24783
25413
24784
24785
25411
25413
24786
25370
24787
25369
24788
25368
24789
25367
24790
25358
24791
25357
24792
25356
24793
25355
24794
24862
24795
24861
24796
24860
24797
24859
24798
24850
24799
24849
24800
24848
24801
24847
24802
24818
24803
24817
24804
24816
24805
24806
24814
24816
24807
24808
24812
24814
24809
24811
24810
24811
24827
24812
24826
24813
24825
24814
24822
24824
24815
24816
24820
24822
24817
24818
24820
24819
24847
24820
24844
24846
24821
24822
24842
24844
24823
24824
24840
24842
24825
24839
24826
24830
24827
24829
24828
24829
24833
24830
24832
24831
24839
24832
24836
24838
24833
24835
24834
24835
24903
24836
24902
24837
24901
24838
24882
24900
24839
24881
24840
24841
24881
24842
24878
24880
24843
24844
24876
24878
24845
24846
24854
24876
24847
24853
24848
24849
24853
24850
24852
24851
24859
24852
24856
24858
24853
24855
24854
24855
24875
24856
24874
24857
24873
24858
24866
24872
24859
24865
24860
24861
24865
24862
24864
24863
25355
24864
24868
25354
24865
24867
24866
24867
24871
24868
24870
24869
25353
24870
25294
25352
24871
25293
24872
25292
24873
25291
24874
24890
24875
24889
24876
24888
24877
24878
24886
24888
24879
24880
24884
24886
24881
24883
24882
24883
24899
24884
24898
24885
24897
24886
24894
24896
24887
24888
24892
24894
24889
24890
24892
24891
25291
24892
25288
25290
24893
24894
25286
25288
24895
24896
25284
25286
24897
25283
24898
25042
24899
25041
24900
25040
24901
25039
24902
25014
24903
25013
24904
24905
25011
25013
24906
24907
25009
25011
24908
24909
25007
25009
24910
24911
25005
25007
24912
25004
24913
25003
24914
24946
24915
24945
24916
24944
24917
24918
24942
24944
24919
24920
24940
24942
24921
24922
24938
24940
24923
24924
24936
24938
24925
24935
24926
24927
24933
24935
24928
24929
24931
24933
24930
24931
24963
24932
24962
24933
24959
24961
24934
24935
24957
24959
24936
24937
24957
24938
24954
24956
24939
24940
24952
24954
24941
24942
24950
24952
24943
24944
24948
24950
24945
24946
24948
24947
25003
24948
25000
25002
24949
24950
24998
25000
24951
24952
24996
24998
24953
24954
24994
24996
24955
24956
24980
24994
24957
24979
24958
24959
24977
24979
24960
24961
24975
24977
24962
24966
24963
24965
24964
24965
24969
24966
24968
24967
24975
24968
24972
24974
24969
24971
24970
24971
25103
24972
25102
24973
25101
24974
24986
25100
24975
24985
24976
24977
24983
24985
24978
24979
24981
24983
24980
24981
24993
24982
24992
24983
24989
24991
24984
24985
24987
24989
24986
24987
25099
24988
25098
24989
25095
25097
24990
24991
25093
25095
24992
25072
24993
25071
24994
25070
24995
24996
25068
25070
24997
24998
25066
25068
24999
25000
25064
25066
25001
25002
25026
25064
25003
25025
25004
25005
25025
25006
25024
25007
25021
25023
25008
25009
25019
25021
25010
25011
25017
25019
25012
25013
25015
25017
25014
25015
25039
25016
25038
25017
25035
25037
25018
25019
25033
25035
25020
25021
25031
25033
25022
25023
25029
25031
25024
25028
25025
25027
25026
25027
25063
25028
25062
25029
25061
25030
25060
25031
25057
25059
25032
25033
25055
25057
25034
25035
25053
25055
25036
25037
25051
25053
25038
25046
25039
25045
25040
25041
25045
25042
25044
25043
25283
25044
25048
25282
25045
25047
25046
25047
25051
25048
25050
25049
25281
25050
25254
25280
25051
25253
25052
25053
25251
25253
25054
25055
25249
25251
25056
25057
25247
25249
25058
25059
25245
25247
25060
25244
25061
25243
25062
25082
25063
25081
25064
25080
25065
25066
25078
25080
25067
25068
25076
25078
25069
25070
25074
25076
25071
25072
25074
25073
25093
25074
25090
25092
25075
25076
25088
25090
25077
25078
25086
25088
25079
25080
25084
25086
25081
25082
25084
25083
25243
25084
25240
25242
25085
25086
25238
25240
25087
25088
25236
25238
25089
25090
25234
25236
25091
25092
25232
25234
25093
25231
25094
25095
25229
25231
25096
25097
25227
25229
25098
25118
25099
25117
25100
25116
25101
25115
25102
25106
25103
25105
25104
25105
25109
25106
25108
25107
25115
25108
25112
25114
25109
25111
25110
25111
25131
25112
25130
25113
25129
25114
25122
25128
25115
25121
25116
25117
25121
25118
25120
25119
25227
25120
25124
25226
25121
25123
25122
25123
25127
25124
25126
25125
25225
25126
25214
25224
25127
25213
25128
25212
25129
25211
25130
25134
25131
25133
25132
25133
25137
25134
25136
25135
25211
25136
25208
25210
25137
25207
25138
25206
25139
25140
25204
25206
25141
25142
25162
25204
25143
25161
25144
25145
25159
25161
25146
25147
25157
25159
25148
25149
25155
25157
25150
25151
25153
25155
25152
25153
25173
25154
25172
25155
25169
25171
25156
25157
25167
25169
25158
25159
25165
25167
25160
25161
25163
25165
25162
25163
25203
25164
25202
25165
25199
25201
25166
25167
25197
25199
25168
25169
25195
25197
25170
25171
25193
25195
25172
25192
25173
25191
25174
25190
25175
25176
25188
25190
25177
25178
25188
25179
25185
25187
25180
25181
25183
25185
25182
25183
28339
25184
28338
25185
28335
28337
25186
25187
28333
28335
25188
28332
25189
25190
28330
28332
25191
25192
28330
25193
28329
25194
28328
25195
28325
28327
25196
25197
28323
28325
25198
25199
28321
28323
25200
25201
28319
28321
25202
28302
25203
28301
25204
28300
25205
25206
28298
28300
25207
25208
28298
25209
28297
25210
25218
28296
25211
25217
25212
25213
25217
25214
25216
25215
25223
25216
25220
25222
25217
25219
25218
25219
28295
25220
28294
25221
28293
25222
28158
28292
25223
28157
25224
28152
25225
28151
25226
28118
25227
28117
25228
25229
28115
28117
25230
25231
28113
28115
25232
25233
28113
25234
28110
28112
25235
25236
28108
28110
25237
25238
28106
28108
25239
25240
28104
28106
25241
25242
25266
28104
25243
25265
25244
25245
25265
25246
25264
25247
25261
25263
25248
25249
25259
25261
25250
25251
25257
25259
25252
25253
25255
25257
25254
25255
25279
25256
25278
25257
25275
25277
25258
25259
25273
25275
25260
25261
25271
25273
25262
25263
25269
25271
25264
25268
25265
25267
25266
25267
28103
25268
28102
25269
28101
25270
28100
25271
28097
28099
25272
25273
28095
28097
25274
25275
28093
28095
25276
25277
28091
28093
25278
25334
25279
25333
25280
25328
25281
25327
25282
25310
25283
25309
25284
25285
25309
25286
25306
25308
25287
25288
25304
25306
25289
25290
25298
25304
25291
25297
25292
25293
25297
25294
25296
25295
25351
25296
25300
25350
25297
25299
25298
25299
25303
25300
25302
25301
25349
25302
25318
25348
25303
25317
25304
25316
25305
25306
25314
25316
25307
25308
25312
25314
25309
25311
25310
25311
25327
25312
25326
25313
25325
25314
25322
25324
25315
25316
25320
25322
25317
25318
25320
25319
25347
25320
25344
25346
25321
25322
25342
25344
25323
25324
25340
25342
25325
25339
25326
25330
25327
25329
25328
25329
25333
25330
25332
25331
25339
25332
25336
25338
25333
25335
25334
25335
28091
25336
28090
25337
28089
25338
28070
28088
25339
28069
25340
25341
28069
25342
28066
28068
25343
25344
28064
28066
25345
25346
28042
28064
25347
28041
25348
28036
25349
28035
25350
25390
25351
25389
25352
25384
25353
25383
25354
25362
25355
25361
25356
25357
25361
25358
25360
25359
25367
25360
25364
25366
25361
25363
25362
25363
25383
25364
25382
25365
25381
25366
25374
25380
25367
25373
25368
25369
25373
25370
25372
25371
25411
25372
25376
25410
25373
25375
25374
25375
25379
25376
25378
25377
25409
25378
25398
25408
25379
25397
25380
25396
25381
25395
25382
25386
25383
25385
25384
25385
25389
25386
25388
25387
25395
25388
25392
25394
25389
25391
25390
25391
28035
25392
28034
25393
28033
25394
25402
28032
25395
25401
25396
25397
25401
25398
25400
25399
25407
25400
25404
25406
25401
25403
25402
25403
28031
25404
28030
25405
28029
25406
25462
28028
25407
25461
25408
25456
25409
25455
25410
25438
25411
25437
25412
25413
25435
25437
25414
25415
25435
25416
25432
25434
25417
25418
25426
25432
25419
25425
25420
25421
25425
25422
25424
25423
25479
25424
25428
25478
25425
25427
25426
25427
25431
25428
25430
25429
25477
25430
25446
25476
25431
25445
25432
25444
25433
25434
25442
25444
25435
25441
25436
25437
25439
25441
25438
25439
25455
25440
25454
25441
25451
25453
25442
25443
25451
25444
25448
25450
25445
25446
25448
25447
25475
25448
25472
25474
25449
25450
25470
25472
25451
25469
25452
25453
25467
25469
25454
25458
25455
25457
25456
25457
25461
25458
25460
25459
25467
25460
25464
25466
25461
25463
25462
25463
28027
25464
28026
25465
28025
25466
28006
28024
25467
28005
25468
25469
28003
28005
25470
25471
28003
25472
28000
28002
25473
25474
27978
28000
25475
27977
25476
27972
25477
27971
25478
27630
25479
27629
25480
27624
25481
27623
25482
27602
25483
27601
25484
27596
25485
27595
25486
27510
25487
27509
25488
27504
25489
27503
25490
27482
25491
27481
25492
27476
25493
27475
25494
26142
25495
26141
25496
26136
25497
26135
25498
26114
25499
26113
25500
26108
25501
26107
25502
26022
25503
26021
25504
26016
25505
26015
25506
25994
25507
25993
25508
25988
25509
25987
25510
25662
25511
25661
25512
25656
25513
25655
25514
25634
25515
25633
25516
25628
25517
25627
25518
25550
25519
25549
25520
25544
25521
25543
25522
25524
25523
25524
25526
25525
25543
25526
25528
25542
25527
25528
25530
25529
25541
25530
25532
25540
25531
25532
25534
25533
25539
25534
25536
25538
25535
25536
25570
25537
25569
25538
25558
25568
25539
25557
25540
25556
25541
25555
25542
25546
25543
25545
25544
25545
25549
25546
25548
25547
25555
25548
25552
25554
25549
25551
25550
25551
25627
25552
25626
25553
25625
25554
25562
25624
25555
25561
25556
25557
25561
25558
25560
25559
25567
25560
25564
25566
25561
25563
25562
25563
25623
25564
25622
25565
25621
25566
25598
25620
25567
25597
25568
25592
25569
25591
25570
25572
25571
25572
25574
25573
25591
25574
25576
25590
25575
25576
25578
25577
25589
25578
25580
25588
25579
25580
25582
25581
25587
25582
25584
25586
25583
25584
25746
25585
25745
25586
25606
25744
25587
25605
25588
25604
25589
25603
25590
25594
25591
25593
25592
25593
25597
25594
25596
25595
25603
25596
25600
25602
25597
25599
25598
25599
25619
25600
25618
25601
25617
25602
25610
25616
25603
25609
25604
25605
25609
25606
25608
25607
25743
25608
25612
25742
25609
25611
25610
25611
25615
25612
25614
25613
25741
25614
25698
25740
25615
25697
25616
25696
25617
25695
25618
25686
25619
25685
25620
25684
25621
25683
25622
25642
25623
25641
25624
25640
25625
25639
25626
25630
25627
25629
25628
25629
25633
25630
25632
25631
25639
25632
25636
25638
25633
25635
25634
25635
25655
25636
25654
25637
25653
25638
25646
25652
25639
25645
25640
25641
25645
25642
25644
25643
25683
25644
25648
25682
25645
25647
25646
25647
25651
25648
25650
25649
25681
25650
25670
25680
25651
25669
25652
25668
25653
25667
25654
25658
25655
25657
25656
25657
25661
25658
25660
25659
25667
25660
25664
25666
25661
25663
25662
25663
25987
25664
25986
25665
25985
25666
25674
25984
25667
25673
25668
25669
25673
25670
25672
25671
25679
25672
25676
25678
25673
25675
25674
25675
25983
25676
25982
25677
25981
25678
25718
25980
25679
25717
25680
25712
25681
25711
25682
25690
25683
25689
25684
25685
25689
25686
25688
25687
25695
25688
25692
25694
25689
25691
25690
25691
25711
25692
25710
25693
25709
25694
25702
25708
25695
25701
25696
25697
25701
25698
25700
25699
25739
25700
25704
25738
25701
25703
25702
25703
25707
25704
25706
25705
25737
25706
25726
25736
25707
25725
25708
25724
25709
25723
25710
25714
25711
25713
25712
25713
25717
25714
25716
25715
25723
25716
25720
25722
25717
25719
25718
25719
25979
25720
25978
25721
25977
25722
25730
25976
25723
25729
25724
25725
25729
25726
25728
25727
25735
25728
25732
25734
25729
25731
25730
25731
25975
25732
25974
25733
25973
25734
25886
25972
25735
25885
25736
25880
25737
25879
25738
25858
25739
25857
25740
25852
25741
25851
25742
25774
25743
25773
25744
25768
25745
25767
25746
25748
25747
25748
25750
25749
25767
25750
25752
25766
25751
25752
25754
25753
25765
25754
25756
25764
25755
25756
25758
25757
25763
25758
25760
25762
25759
25760
25794
25761
25793
25762
25782
25792
25763
25781
25764
25780
25765
25779
25766
25770
25767
25769
25768
25769
25773
25770
25772
25771
25779
25772
25776
25778
25773
25775
25774
25775
25851
25776
25850
25777
25849
25778
25786
25848
25779
25785
25780
25781
25785
25782
25784
25783
25791
25784
25788
25790
25785
25787
25786
25787
25847
25788
25846
25789
25845
25790
25822
25844
25791
25821
25792
25816
25793
25815
25794
25796
25795
25796
25798
25797
25815
25798
25800
25814
25799
25800
25802
25801
25813
25802
25804
25812
25803
25804
25806
25805
25811
25806
25808
25810
25807
25808
26482
25809
26481
25810
25830
26480
25811
25829
25812
25828
25813
25827
25814
25818
25815
25817
25816
25817
25821
25818
25820
25819
25827
25820
25824
25826
25821
25823
25822
25823
25843
25824
25842
25825
25841
25826
25834
25840
25827
25833
25828
25829
25833
25830
25832
25831
26479
25832
25836
26478
25833
25835
25834
25835
25839
25836
25838
25837
26477
25838
25922
26476
25839
25921
25840
25920
25841
25919
25842
25910
25843
25909
25844
25908
25845
25907
25846
25866
25847
25865
25848
25864
25849
25863
25850
25854
25851
25853
25852
25853
25857
25854
25856
25855
25863
25856
25860
25862
25857
25859
25858
25859
25879
25860
25878
25861
25877
25862
25870
25876
25863
25869
25864
25865
25869
25866
25868
25867
25907
25868
25872
25906
25869
25871
25870
25871
25875
25872
25874
25873
25905
25874
25894
25904
25875
25893
25876
25892
25877
25891
25878
25882
25879
25881
25880
25881
25885
25882
25884
25883
25891
25884
25888
25890
25885
25887
25886
25887
25971
25888
25970
25889
25969
25890
25898
25968
25891
25897
25892
25893
25897
25894
25896
25895
25903
25896
25900
25902
25897
25899
25898
25899
25967
25900
25966
25901
25965
25902
25942
25964
25903
25941
25904
25936
25905
25935
25906
25914
25907
25913
25908
25909
25913
25910
25912
25911
25919
25912
25916
25918
25913
25915
25914
25915
25935
25916
25934
25917
25933
25918
25926
25932
25919
25925
25920
25921
25925
25922
25924
25923
26475
25924
25928
26474
25925
25927
25926
25927
25931
25928
25930
25929
26473
25930
25950
26472
25931
25949
25932
25948
25933
25947
25934
25938
25935
25937
25936
25937
25941
25938
25940
25939
25947
25940
25944
25946
25941
25943
25942
25943
25963
25944
25962
25945
25961
25946
25954
25960
25947
25953
25948
25949
25953
25950
25952
25951
26471
25952
25956
26470
25953
25955
25954
25955
25959
25956
25958
25957
26469
25958
26298
26468
25959
26297
25960
26296
25961
26295
25962
26286
25963
26285
25964
26284
25965
26283
25966
26242
25967
26241
25968
26240
25969
26239
25970
26230
25971
26229
25972
26228
25973
26227
25974
26058
25975
26057
25976
26056
25977
26055
25978
26046
25979
26045
25980
26044
25981
26043
25982
26002
25983
26001
25984
26000
25985
25999
25986
25990
25987
25989
25988
25989
25993
25990
25992
25991
25999
25992
25996
25998
25993
25995
25994
25995
26015
25996
26014
25997
26013
25998
26006
26012
25999
26005
26000
26001
26005
26002
26004
26003
26043
26004
26008
26042
26005
26007
26006
26007
26011
26008
26010
26009
26041
26010
26030
26040
26011
26029
26012
26028
26013
26027
26014
26018
26015
26017
26016
26017
26021
26018
26020
26019
26027
26020
26024
26026
26021
26023
26022
26023
26107
26024
26106
26025
26105
26026
26034
26104
26027
26033
26028
26029
26033
26030
26032
26031
26039
26032
26036
26038
26033
26035
26034
26035
26103
26036
26102
26037
26101
26038
26078
26100
26039
26077
26040
26072
26041
26071
26042
26050
26043
26049
26044
26045
26049
26046
26048
26047
26055
26048
26052
26054
26049
26051
26050
26051
26071
26052
26070
26053
26069
26054
26062
26068
26055
26061
26056
26057
26061
26058
26060
26059
26227
26060
26064
26226
26061
26063
26062
26063
26067
26064
26066
26065
26225
26066
26086
26224
26067
26085
26068
26084
26069
26083
26070
26074
26071
26073
26072
26073
26077
26074
26076
26075
26083
26076
26080
26082
26077
26079
26078
26079
26099
26080
26098
26081
26097
26082
26090
26096
26083
26089
26084
26085
26089
26086
26088
26087
26223
26088
26092
26222
26089
26091
26090
26091
26095
26092
26094
26093
26221
26094
26178
26220
26095
26177
26096
26176
26097
26175
26098
26166
26099
26165
26100
26164
26101
26163
26102
26122
26103
26121
26104
26120
26105
26119
26106
26110
26107
26109
26108
26109
26113
26110
26112
26111
26119
26112
26116
26118
26113
26115
26114
26115
26135
26116
26134
26117
26133
26118
26126
26132
26119
26125
26120
26121
26125
26122
26124
26123
26163
26124
26128
26162
26125
26127
26126
26127
26131
26128
26130
26129
26161
26130
26150
26160
26131
26149
26132
26148
26133
26147
26134
26138
26135
26137
26136
26137
26141
26138
26140
26139
26147
26140
26144
26146
26141
26143
26142
26143
27475
26144
27474
26145
27473
26146
26154
27472
26147
26153
26148
26149
26153
26150
26152
26151
26159
26152
26156
26158
26153
26155
26154
26155
27471
26156
27470
26157
27469
26158
26198
27468
26159
26197
26160
26192
26161
26191
26162
26170
26163
26169
26164
26165
26169
26166
26168
26167
26175
26168
26172
26174
26169
26171
26170
26171
26191
26172
26190
26173
26189
26174
26182
26188
26175
26181
26176
26177
26181
26178
26180
26179
26219
26180
26184
26218
26181
26183
26182
26183
26187
26184
26186
26185
26217
26186
26206
26216
26187
26205
26188
26204
26189
26203
26190
26194
26191
26193
26192
26193
26197
26194
26196
26195
26203
26196
26200
26202
26197
26199
26198
26199
27467
26200
27466
26201
27465
26202
26210
27464
26203
26209
26204
26205
26209
26206
26208
26207
26215
26208
26212
26214
26209
26211
26210
26211
27463
26212
27462
26213
27461
26214
26382
27460
26215
26381
26216
26376
26217
26375
26218
26354
26219
26353
26220
26348
26221
26347
26222
26262
26223
26261
26224
26256
26225
26255
26226
26234
26227
26233
26228
26229
26233
26230
26232
26231
26239
26232
26236
26238
26233
26235
26234
26235
26255
26236
26254
26237
26253
26238
26246
26252
26239
26245
26240
26241
26245
26242
26244
26243
26283
26244
26248
26282
26245
26247
26246
26247
26251
26248
26250
26249
26281
26250
26270
26280
26251
26269
26252
26268
26253
26267
26254
26258
26255
26257
26256
26257
26261
26258
26260
26259
26267
26260
26264
26266
26261
26263
26262
26263
26347
26264
26346
26265
26345
26266
26274
26344
26267
26273
26268
26269
26273
26270
26272
26271
26279
26272
26276
26278
26273
26275
26274
26275
26343
26276
26342
26277
26341
26278
26318
26340
26279
26317
26280
26312
26281
26311
26282
26290
26283
26289
26284
26285
26289
26286
26288
26287
26295
26288
26292
26294
26289
26291
26290
26291
26311
26292
26310
26293
26309
26294
26302
26308
26295
26301
26296
26297
26301
26298
26300
26299
26467
26300
26304
26466
26301
26303
26302
26303
26307
26304
26306
26305
26465
26306
26326
26464
26307
26325
26308
26324
26309
26323
26310
26314
26311
26313
26312
26313
26317
26314
26316
26315
26323
26316
26320
26322
26317
26319
26318
26319
26339
26320
26338
26321
26337
26322
26330
26336
26323
26329
26324
26325
26329
26326
26328
26327
26463
26328
26332
26462
26329
26331
26330
26331
26335
26332
26334
26333
26461
26334
26418
26460
26335
26417
26336
26416
26337
26415
26338
26406
26339
26405
26340
26404
26341
26403
26342
26362
26343
26361
26344
26360
26345
26359
26346
26350
26347
26349
26348
26349
26353
26350
26352
26351
26359
26352
26356
26358
26353
26355
26354
26355
26375
26356
26374
26357
26373
26358
26366
26372
26359
26365
26360
26361
26365
26362
26364
26363
26403
26364
26368
26402
26365
26367
26366
26367
26371
26368
26370
26369
26401
26370
26390
26400
26371
26389
26372
26388
26373
26387
26374
26378
26375
26377
26376
26377
26381
26378
26380
26379
26387
26380
26384
26386
26381
26383
26382
26383
27459
26384
27458
26385
27457
26386
26394
27456
26387
26393
26388
26389
26393
26390
26392
26391
26399
26392
26396
26398
26393
26395
26394
26395
27455
26396
27454
26397
27453
26398
26438
27452
26399
26437
26400
26432
26401
26431
26402
26410
26403
26409
26404
26405
26409
26406
26408
26407
26415
26408
26412
26414
26409
26411
26410
26411
26431
26412
26430
26413
26429
26414
26422
26428
26415
26421
26416
26417
26421
26418
26420
26419
26459
26420
26424
26458
26421
26423
26422
26423
26427
26424
26426
26425
26457
26426
26446
26456
26427
26445
26428
26444
26429
26443
26430
26434
26431
26433
26432
26433
26437
26434
26436
26435
26443
26436
26440
26442
26437
26439
26438
26439
27451
26440
27450
26441
27449
26442
26450
27448
26443
26449
26444
26445
26449
26446
26448
26447
26455
26448
26452
26454
26449
26451
26450
26451
27447
26452
27446
26453
27445
26454
27102
27444
26455
27101
26456
27096
26457
27095
26458
27074
26459
27073
26460
27068
26461
27067
26462
26982
26463
26981
26464
26976
26465
26975
26466
26954
26467
26953
26468
26948
26469
26947
26470
26622
26471
26621
26472
26616
26473
26615
26474
26594
26475
26593
26476
26588
26477
26587
26478
26510
26479
26509
26480
26504
26481
26503
26482
26484
26483
26484
26486
26485
26503
26486
26488
26502
26487
26488
26490
26489
26501
26490
26492
26500
26491
26492
26494
26493
26499
26494
26496
26498
26495
26496
26530
26497
26529
26498
26518
26528
26499
26517
26500
26516
26501
26515
26502
26506
26503
26505
26504
26505
26509
26506
26508
26507
26515
26508
26512
26514
26509
26511
26510
26511
26587
26512
26586
26513
26585
26514
26522
26584
26515
26521
26516
26517
26521
26518
26520
26519
26527
26520
26524
26526
26521
26523
26522
26523
26583
26524
26582
26525
26581
26526
26558
26580
26527
26557
26528
26552
26529
26551
26530
26532
26531
26532
26534
26533
26551
26534
26536
26550
26535
26536
26538
26537
26549
26538
26540
26548
26539
26540
26542
26541
26547
26542
26544
26546
26543
26544
26706
26545
26705
26546
26566
26704
26547
26565
26548
26564
26549
26563
26550
26554
26551
26553
26552
26553
26557
26554
26556
26555
26563
26556
26560
26562
26557
26559
26558
26559
26579
26560
26578
26561
26577
26562
26570
26576
26563
26569
26564
26565
26569
26566
26568
26567
26703
26568
26572
26702
26569
26571
26570
26571
26575
26572
26574
26573
26701
26574
26658
26700
26575
26657
26576
26656
26577
26655
26578
26646
26579
26645
26580
26644
26581
26643
26582
26602
26583
26601
26584
26600
26585
26599
26586
26590
26587
26589
26588
26589
26593
26590
26592
26591
26599
26592
26596
26598
26593
26595
26594
26595
26615
26596
26614
26597
26613
26598
26606
26612
26599
26605
26600
26601
26605
26602
26604
26603
26643
26604
26608
26642
26605
26607
26606
26607
26611
26608
26610
26609
26641
26610
26630
26640
26611
26629
26612
26628
26613
26627
26614
26618
26615
26617
26616
26617
26621
26618
26620
26619
26627
26620
26624
26626
26621
26623
26622
26623
26947
26624
26946
26625
26945
26626
26634
26944
26627
26633
26628
26629
26633
26630
26632
26631
26639
26632
26636
26638
26633
26635
26634
26635
26943
26636
26942
26637
26941
26638
26678
26940
26639
26677
26640
26672
26641
26671
26642
26650
26643
26649
26644
26645
26649
26646
26648
26647
26655
26648
26652
26654
26649
26651
26650
26651
26671
26652
26670
26653
26669
26654
26662
26668
26655
26661
26656
26657
26661
26658
26660
26659
26699
26660
26664
26698
26661
26663
26662
26663
26667
26664
26666
26665
26697
26666
26686
26696
26667
26685
26668
26684
26669
26683
26670
26674
26671
26673
26672
26673
26677
26674
26676
26675
26683
26676
26680
26682
26677
26679
26678
26679
26939
26680
26938
26681
26937
26682
26690
26936
26683
26689
26684
26685
26689
26686
26688
26687
26695
26688
26692
26694
26689
26691
26690
26691
26935
26692
26934
26693
26933
26694
26846
26932
26695
26845
26696
26840
26697
26839
26698
26818
26699
26817
26700
26812
26701
26811
26702
26734
26703
26733
26704
26728
26705
26727
26706
26708
26707
26708
26710
26709
26727
26710
26712
26726
26711
26712
26714
26713
26725
26714
26716
26724
26715
26716
26718
26717
26723
26718
26720
26722
26719
26720
26754
26721
26753
26722
26742
26752
26723
26741
26724
26740
26725
26739
26726
26730
26727
26729
26728
26729
26733
26730
26732
26731
26739
26732
26736
26738
26733
26735
26734
26735
26811
26736
26810
26737
26809
26738
26746
26808
26739
26745
26740
26741
26745
26742
26744
26743
26751
26744
26748
26750
26745
26747
26746
26747
26807
26748
26806
26749
26805
26750
26782
26804
26751
26781
26752
26776
26753
26775
26754
26756
26755
26756
26758
26757
26775
26758
26760
26774
26759
26760
26762
26761
26773
26762
26764
26772
26763
26764
26766
26765
26771
26766
26768
26770
26767
26768
31970
26769
31969
26770
26790
31968
26771
26789
26772
26788
26773
26787
26774
26778
26775
26777
26776
26777
26781
26778
26780
26779
26787
26780
26784
26786
26781
26783
26782
26783
26803
26784
26802
26785
26801
26786
26794
26800
26787
26793
26788
26789
26793
26790
26792
26791
31967
26792
26796
31966
26793
26795
26794
26795
26799
26796
26798
26797
31965
26798
26882
31964
26799
26881
26800
26880
26801
26879
26802
26870
26803
26869
26804
26868
26805
26867
26806
26826
26807
26825
26808
26824
26809
26823
26810
26814
26811
26813
26812
26813
26817
26814
26816
26815
26823
26816
26820
26822
26817
26819
26818
26819
26839
26820
26838
26821
26837
26822
26830
26836
26823
26829
26824
26825
26829
26826
26828
26827
26867
26828
26832
26866
26829
26831
26830
26831
26835
26832
26834
26833
26865
26834
26854
26864
26835
26853
26836
26852
26837
26851
26838
26842
26839
26841
26840
26841
26845
26842
26844
26843
26851
26844
26848
26850
26845
26847
26846
26847
26931
26848
26930
26849
26929
26850
26858
26928
26851
26857
26852
26853
26857
26854
26856
26855
26863
26856
26860
26862
26857
26859
26858
26859
26927
26860
26926
26861
26925
26862
26902
26924
26863
26901
26864
26896
26865
26895
26866
26874
26867
26873
26868
26869
26873
26870
26872
26871
26879
26872
26876
26878
26873
26875
26874
26875
26895
26876
26894
26877
26893
26878
26886
26892
26879
26885
26880
26881
26885
26882
26884
26883
31963
26884
26888
31962
26885
26887
26886
26887
26891
26888
26890
26889
31961
26890
26910
31960
26891
26909
26892
26908
26893
26907
26894
26898
26895
26897
26896
26897
26901
26898
26900
26899
26907
26900
26904
26906
26901
26903
26902
26903
26923
26904
26922
26905
26921
26906
26914
26920
26907
26913
26908
26909
26913
26910
26912
26911
31959
26912
26916
31958
26913
26915
26914
26915
26919
26916
26918
26917
31957
26918
27258
31956
26919
27257
26920
27256
26921
27255
26922
27246
26923
27245
26924
27244
26925
27243
26926
27202
26927
27201
26928
27200
26929
27199
26930
27190
26931
27189
26932
27188
26933
27187
26934
27018
26935
27017
26936
27016
26937
27015
26938
27006
26939
27005
26940
27004
26941
27003
26942
26962
26943
26961
26944
26960
26945
26959
26946
26950
26947
26949
26948
26949
26953
26950
26952
26951
26959
26952
26956
26958
26953
26955
26954
26955
26975
26956
26974
26957
26973
26958
26966
26972
26959
26965
26960
26961
26965
26962
26964
26963
27003
26964
26968
27002
26965
26967
26966
26967
26971
26968
26970
26969
27001
26970
26990
27000
26971
26989
26972
26988
26973
26987
26974
26978
26975
26977
26976
26977
26981
26978
26980
26979
26987
26980
26984
26986
26981
26983
26982
26983
27067
26984
27066
26985
27065
26986
26994
27064
26987
26993
26988
26989
26993
26990
26992
26991
26999
26992
26996
26998
26993
26995
26994
26995
27063
26996
27062
26997
27061
26998
27038
27060
26999
27037
27000
27032
27001
27031
27002
27010
27003
27009
27004
27005
27009
27006
27008
27007
27015
27008
27012
27014
27009
27011
27010
27011
27031
27012
27030
27013
27029
27014
27022
27028
27015
27021
27016
27017
27021
27018
27020
27019
27187
27020
27024
27186
27021
27023
27022
27023
27027
27024
27026
27025
27185
27026
27046
27184
27027
27045
27028
27044
27029
27043
27030
27034
27031
27033
27032
27033
27037
27034
27036
27035
27043
27036
27040
27042
27037
27039
27038
27039
27059
27040
27058
27041
27057
27042
27050
27056
27043
27049
27044
27045
27049
27046
27048
27047
27183
27048
27052
27182
27049
27051
27050
27051
27055
27052
27054
27053
27181
27054
27138
27180
27055
27137
27056
27136
27057
27135
27058
27126
27059
27125
27060
27124
27061
27123
27062
27082
27063
27081
27064
27080
27065
27079
27066
27070
27067
27069
27068
27069
27073
27070
27072
27071
27079
27072
27076
27078
27073
27075
27074
27075
27095
27076
27094
27077
27093
27078
27086
27092
27079
27085
27080
27081
27085
27082
27084
27083
27123
27084
27088
27122
27085
27087
27086
27087
27091
27088
27090
27089
27121
27090
27110
27120
27091
27109
27092
27108
27093
27107
27094
27098
27095
27097
27096
27097
27101
27098
27100
27099
27107
27100
27104
27106
27101
27103
27102
27103
27443
27104
27442
27105
27441
27106
27114
27440
27107
27113
27108
27109
27113
27110
27112
27111
27119
27112
27116
27118
27113
27115
27114
27115
27439
27116
27438
27117
27437
27118
27158
27436
27119
27157
27120
27152
27121
27151
27122
27130
27123
27129
27124
27125
27129
27126
27128
27127
27135
27128
27132
27134
27129
27131
27130
27131
27151
27132
27150
27133
27149
27134
27142
27148
27135
27141
27136
27137
27141
27138
27140
27139
27179
27140
27144
27178
27141
27143
27142
27143
27147
27144
27146
27145
27177
27146
27166
27176
27147
27165
27148
27164
27149
27163
27150
27154
27151
27153
27152
27153
27157
27154
27156
27155
27163
27156
27160
27162
27157
27159
27158
27159
27435
27160
27434
27161
27433
27162
27170
27432
27163
27169
27164
27165
27169
27166
27168
27167
27175
27168
27172
27174
27169
27171
27170
27171
27431
27172
27430
27173
27429
27174
27342
27428
27175
27341
27176
27336
27177
27335
27178
27314
27179
27313
27180
27308
27181
27307
27182
27222
27183
27221
27184
27216
27185
27215
27186
27194
27187
27193
27188
27189
27193
27190
27192
27191
27199
27192
27196
27198
27193
27195
27194
27195
27215
27196
27214
27197
27213
27198
27206
27212
27199
27205
27200
27201
27205
27202
27204
27203
27243
27204
27208
27242
27205
27207
27206
27207
27211
27208
27210
27209
27241
27210
27230
27240
27211
27229
27212
27228
27213
27227
27214
27218
27215
27217
27216
27217
27221
27218
27220
27219
27227
27220
27224
27226
27221
27223
27222
27223
27307
27224
27306
27225
27305
27226
27234
27304
27227
27233
27228
27229
27233
27230
27232
27231
27239
27232
27236
27238
27233
27235
27234
27235
27303
27236
27302
27237
27301
27238
27278
27300
27239
27277
27240
27272
27241
27271
27242
27250
27243
27249
27244
27245
27249
27246
27248
27247
27255
27248
27252
27254
27249
27251
27250
27251
27271
27252
27270
27253
27269
27254
27262
27268
27255
27261
27256
27257
27261
27258
27260
27259
31955
27260
27264
31954
27261
27263
27262
27263
27267
27264
27266
27265
31953
27266
27286
31952
27267
27285
27268
27284
27269
27283
27270
27274
27271
27273
27272
27273
27277
27274
27276
27275
27283
27276
27280
27282
27277
27279
27278
27279
27299
27280
27298
27281
27297
27282
27290
27296
27283
27289
27284
27285
27289
27286
27288
27287
31951
27288
27292
31950
27289
27291
27290
27291
27295
27292
27294
27293
31949
27294
27378
31948
27295
27377
27296
27376
27297
27375
27298
27366
27299
27365
27300
27364
27301
27363
27302
27322
27303
27321
27304
27320
27305
27319
27306
27310
27307
27309
27308
27309
27313
27310
27312
27311
27319
27312
27316
27318
27313
27315
27314
27315
27335
27316
27334
27317
27333
27318
27326
27332
27319
27325
27320
27321
27325
27322
27324
27323
27363
27324
27328
27362
27325
27327
27326
27327
27331
27328
27330
27329
27361
27330
27350
27360
27331
27349
27332
27348
27333
27347
27334
27338
27335
27337
27336
27337
27341
27338
27340
27339
27347
27340
27344
27346
27341
27343
27342
27343
27427
27344
27426
27345
27425
27346
27354
27424
27347
27353
27348
27349
27353
27350
27352
27351
27359
27352
27356
27358
27353
27355
27354
27355
27423
27356
27422
27357
27421
27358
27398
27420
27359
27397
27360
27392
27361
27391
27362
27370
27363
27369
27364
27365
27369
27366
27368
27367
27375
27368
27372
27374
27369
27371
27370
27371
27391
27372
27390
27373
27389
27374
27382
27388
27375
27381
27376
27377
27381
27378
27380
27379
31947
27380
27384
31946
27381
27383
27382
27383
27387
27384
27386
27385
31945
27386
27406
31944
27387
27405
27388
27404
27389
27403
27390
27394
27391
27393
27392
27393
27397
27394
27396
27395
27403
27396
27400
27402
27397
27399
27398
27399
27419
27400
27418
27401
27417
27402
27410
27416
27403
27409
27404
27405
27409
27406
27408
27407
31943
27408
27412
31942
27409
27411
27410
27411
27415
27412
27414
27413
31941
27414
31258
31940
27415
31257
27416
31256
27417
31255
27418
31246
27419
31245
27420
31244
27421
31243
27422
31202
27423
31201
27424
31200
27425
31199
27426
31190
27427
31189
27428
31188
27429
31187
27430
31018
27431
31017
27432
31016
27433
31015
27434
31006
27435
31005
27436
31004
27437
31003
27438
30962
27439
30961
27440
30960
27441
30959
27442
30950
27443
30949
27444
30948
27445
30947
27446
27786
27447
27785
27448
27784
27449
27783
27450
27774
27451
27773
27452
27772
27453
27771
27454
27730
27455
27729
27456
27728
27457
27727
27458
27718
27459
27717
27460
27716
27461
27715
27462
27546
27463
27545
27464
27544
27465
27543
27466
27534
27467
27533
27468
27532
27469
27531
27470
27490
27471
27489
27472
27488
27473
27487
27474
27478
27475
27477
27476
27477
27481
27478
27480
27479
27487
27480
27484
27486
27481
27483
27482
27483
27503
27484
27502
27485
27501
27486
27494
27500
27487
27493
27488
27489
27493
27490
27492
27491
27531
27492
27496
27530
27493
27495
27494
27495
27499
27496
27498
27497
27529
27498
27518
27528
27499
27517
27500
27516
27501
27515
27502
27506
27503
27505
27504
27505
27509
27506
27508
27507
27515
27508
27512
27514
27509
27511
27510
27511
27595
27512
27594
27513
27593
27514
27522
27592
27515
27521
27516
27517
27521
27518
27520
27519
27527
27520
27524
27526
27521
27523
27522
27523
27591
27524
27590
27525
27589
27526
27566
27588
27527
27565
27528
27560
27529
27559
27530
27538
27531
27537
27532
27533
27537
27534
27536
27535
27543
27536
27540
27542
27537
27539
27538
27539
27559
27540
27558
27541
27557
27542
27550
27556
27543
27549
27544
27545
27549
27546
27548
27547
27715
27548
27552
27714
27549
27551
27550
27551
27555
27552
27554
27553
27713
27554
27574
27712
27555
27573
27556
27572
27557
27571
27558
27562
27559
27561
27560
27561
27565
27562
27564
27563
27571
27564
27568
27570
27565
27567
27566
27567
27587
27568
27586
27569
27585
27570
27578
27584
27571
27577
27572
27573
27577
27574
27576
27575
27711
27576
27580
27710
27577
27579
27578
27579
27583
27580
27582
27581
27709
27582
27666
27708
27583
27665
27584
27664
27585
27663
27586
27654
27587
27653
27588
27652
27589
27651
27590
27610
27591
27609
27592
27608
27593
27607
27594
27598
27595
27597
27596
27597
27601
27598
27600
27599
27607
27600
27604
27606
27601
27603
27602
27603
27623
27604
27622
27605
27621
27606
27614
27620
27607
27613
27608
27609
27613
27610
27612
27611
27651
27612
27616
27650
27613
27615
27614
27615
27619
27616
27618
27617
27649
27618
27638
27648
27619
27637
27620
27636
27621
27635
27622
27626
27623
27625
27624
27625
27629
27626
27628
27627
27635
27628
27632
27634
27629
27631
27630
27631
27971
27632
27970
27633
27969
27634
27642
27968
27635
27641
27636
27637
27641
27638
27640
27639
27647
27640
27644
27646
27641
27643
27642
27643
27967
27644
27966
27645
27965
27646
27686
27964
27647
27685
27648
27680
27649
27679
27650
27658
27651
27657
27652
27653
27657
27654
27656
27655
27663
27656
27660
27662
27657
27659
27658
27659
27679
27660
27678
27661
27677
27662
27670
27676
27663
27669
27664
27665
27669
27666
27668
27667
27707
27668
27672
27706
27669
27671
27670
27671
27675
27672
27674
27673
27705
27674
27694
27704
27675
27693
27676
27692
27677
27691
27678
27682
27679
27681
27680
27681
27685
27682
27684
27683
27691
27684
27688
27690
27685
27687
27686
27687
27963
27688
27962
27689
27961
27690
27698
27960
27691
27697
27692
27693
27697
27694
27696
27695
27703
27696
27700
27702
27697
27699
27698
27699
27959
27700
27958
27701
27957
27702
27870
27956
27703
27869
27704
27864
27705
27863
27706
27842
27707
27841
27708
27836
27709
27835
27710
27750
27711
27749
27712
27744
27713
27743
27714
27722
27715
27721
27716
27717
27721
27718
27720
27719
27727
27720
27724
27726
27721
27723
27722
27723
27743
27724
27742
27725
27741
27726
27734
27740
27727
27733
27728
27729
27733
27730
27732
27731
27771
27732
27736
27770
27733
27735
27734
27735
27739
27736
27738
27737
27769
27738
27758
27768
27739
27757
27740
27756
27741
27755
27742
27746
27743
27745
27744
27745
27749
27746
27748
27747
27755
27748
27752
27754
27749
27751
27750
27751
27835
27752
27834
27753
27833
27754
27762
27832
27755
27761
27756
27757
27761
27758
27760
27759
27767
27760
27764
27766
27761
27763
27762
27763
27831
27764
27830
27765
27829
27766
27806
27828
27767
27805
27768
27800
27769
27799
27770
27778
27771
27777
27772
27773
27777
27774
27776
27775
27783
27776
27780
27782
27777
27779
27778
27779
27799
27780
27798
27781
27797
27782
27790
27796
27783
27789
27784
27785
27789
27786
27788
27787
30947
27788
27792
30946
27789
27791
27790
27791
27795
27792
27794
27793
30945
27794
27814
30944
27795
27813
27796
27812
27797
27811
27798
27802
27799
27801
27800
27801
27805
27802
27804
27803
27811
27804
27808
27810
27805
27807
27806
27807
27827
27808
27826
27809
27825
27810
27818
27824
27811
27817
27812
27813
27817
27814
27816
27815
30943
27816
27820
30942
27817
27819
27818
27819
27823
27820
27822
27821
30941
27822
27906
30940
27823
27905
27824
27904
27825
27903
27826
27894
27827
27893
27828
27892
27829
27891
27830
27850
27831
27849
27832
27848
27833
27847
27834
27838
27835
27837
27836
27837
27841
27838
27840
27839
27847
27840
27844
27846
27841
27843
27842
27843
27863
27844
27862
27845
27861
27846
27854
27860
27847
27853
27848
27849
27853
27850
27852
27851
27891
27852
27856
27890
27853
27855
27854
27855
27859
27856
27858
27857
27889
27858
27878
27888
27859
27877
27860
27876
27861
27875
27862
27866
27863
27865
27864
27865
27869
27866
27868
27867
27875
27868
27872
27874
27869
27871
27870
27871
27955
27872
27954
27873
27953
27874
27882
27952
27875
27881
27876
27877
27881
27878
27880
27879
27887
27880
27884
27886
27881
27883
27882
27883
27951
27884
27950
27885
27949
27886
27926
27948
27887
27925
27888
27920
27889
27919
27890
27898
27891
27897
27892
27893
27897
27894
27896
27895
27903
27896
27900
27902
27897
27899
27898
27899
27919
27900
27918
27901
27917
27902
27910
27916
27903
27909
27904
27905
27909
27906
27908
27907
30939
27908
27912
30938
27909
27911
27910
27911
27915
27912
27914
27913
30937
27914
27934
30936
27915
27933
27916
27932
27917
27931
27918
27922
27919
27921
27920
27921
27925
27922
27924
27923
27931
27924
27928
27930
27925
27927
27926
27927
27947
27928
27946
27929
27945
27930
27938
27944
27931
27937
27932
27933
27937
27934
27936
27935
30935
27936
27940
30934
27937
27939
27938
27939
27943
27940
27942
27941
30933
27942
30762
30932
27943
30761
27944
30760
27945
30759
27946
30750
27947
30749
27948
30748
27949
30747
27950
30706
27951
30705
27952
30704
27953
30703
27954
30694
27955
30693
27956
30692
27957
30691
27958
29894
27959
29893
27960
29892
27961
29891
27962
29882
27963
29881
27964
29880
27965
29879
27966
27986
27967
27985
27968
27984
27969
27983
27970
27974
27971
27973
27972
27973
27977
27974
27976
27975
27983
27976
27980
27982
27977
27979
27978
27979
27999
27980
27998
27981
27997
27982
27990
27996
27983
27989
27984
27985
27989
27986
27988
27987
29879
27988
27992
29878
27989
27991
27990
27991
27995
27992
27994
27993
29877
27994
29866
29876
27995
29865
27996
29864
27997
29863
27998
28014
27999
28013
28000
28012
28001
28002
28010
28012
28003
28009
28004
28005
28007
28009
28006
28007
28023
28008
28022
28009
28019
28021
28010
28011
28019
28012
28016
28018
28013
28014
28016
28015
29863
28016
29860
29862
28017
28018
29858
29860
28019
29857
28020
28021
29855
29857
28022
29814
28023
29813
28024
29812
28025
29811
28026
29802
28027
29801
28028
29800
28029
29799
28030
28050
28031
28049
28032
28048
28033
28047
28034
28038
28035
28037
28036
28037
28041
28038
28040
28039
28047
28040
28044
28046
28041
28043
28042
28043
28063
28044
28062
28045
28061
28046
28054
28060
28047
28053
28048
28049
28053
28050
28052
28051
29799
28052
28056
29798
28053
28055
28054
28055
28059
28056
28058
28057
29797
28058
29786
29796
28059
29785
28060
29784
28061
29783
28062
28078
28063
28077
28064
28076
28065
28066
28074
28076
28067
28068
28072
28074
28069
28071
28070
28071
28087
28072
28086
28073
28085
28074
28082
28084
28075
28076
28080
28082
28077
28078
28080
28079
29783
28080
29780
29782
28081
28082
29778
29780
28083
28084
29776
29778
28085
29775
28086
28230
28087
28229
28088
28228
28089
28227
28090
28202
28091
28201
28092
28093
28199
28201
28094
28095
28197
28199
28096
28097
28195
28197
28098
28099
28193
28195
28100
28192
28101
28191
28102
28134
28103
28133
28104
28132
28105
28106
28130
28132
28107
28108
28128
28130
28109
28110
28126
28128
28111
28112
28124
28126
28113
28123
28114
28115
28121
28123
28116
28117
28119
28121
28118
28119
28151
28120
28150
28121
28147
28149
28122
28123
28145
28147
28124
28125
28145
28126
28142
28144
28127
28128
28140
28142
28129
28130
28138
28140
28131
28132
28136
28138
28133
28134
28136
28135
28191
28136
28188
28190
28137
28138
28186
28188
28139
28140
28184
28186
28141
28142
28182
28184
28143
28144
28168
28182
28145
28167
28146
28147
28165
28167
28148
28149
28163
28165
28150
28154
28151
28153
28152
28153
28157
28154
28156
28155
28163
28156
28160
28162
28157
28159
28158
28159
28291
28160
28290
28161
28289
28162
28174
28288
28163
28173
28164
28165
28171
28173
28166
28167
28169
28171
28168
28169
28181
28170
28180
28171
28177
28179
28172
28173
28175
28177
28174
28175
28287
28176
28286
28177
28283
28285
28178
28179
28281
28283
28180
28260
28181
28259
28182
28258
28183
28184
28256
28258
28185
28186
28254
28256
28187
28188
28252
28254
28189
28190
28214
28252
28191
28213
28192
28193
28213
28194
28212
28195
28209
28211
28196
28197
28207
28209
28198
28199
28205
28207
28200
28201
28203
28205
28202
28203
28227
28204
28226
28205
28223
28225
28206
28207
28221
28223
28208
28209
28219
28221
28210
28211
28217
28219
28212
28216
28213
28215
28214
28215
28251
28216
28250
28217
28249
28218
28248
28219
28245
28247
28220
28221
28243
28245
28222
28223
28241
28243
28224
28225
28239
28241
28226
28234
28227
28233
28228
28229
28233
28230
28232
28231
29775
28232
28236
29774
28233
28235
28234
28235
28239
28236
28238
28237
29773
28238
29746
29772
28239
29745
28240
28241
29743
29745
28242
28243
29741
29743
28244
28245
29739
29741
28246
28247
29737
29739
28248
29736
28249
29735
28250
28270
28251
28269
28252
28268
28253
28254
28266
28268
28255
28256
28264
28266
28257
28258
28262
28264
28259
28260
28262
28261
28281
28262
28278
28280
28263
28264
28276
28278
28265
28266
28274
28276
28267
28268
28272
28274
28269
28270
28272
28271
29735
28272
29732
29734
28273
28274
29730
29732
28275
28276
29728
29730
28277
28278
29726
29728
28279
28280
29724
29726
28281
29723
28282
28283
29721
29723
28284
28285
29719
29721
28286
29230
28287
29229
28288
29228
28289
29227
28290
29218
28291
29217
28292
29216
28293
29215
28294
28310
28295
28309
28296
28308
28297
28307
28298
28306
28299
28300
28304
28306
28301
28302
28304
28303
28319
28304
28316
28318
28305
28306
28314
28316
28307
28308
28314
28309
28313
28310
28312
28311
29215
28312
29200
29214
28313
29199
28314
29198
28315
28316
29196
29198
28317
28318
28386
29196
28319
28385
28320
28321
28383
28385
28322
28323
28381
28383
28324
28325
28379
28381
28326
28327
28377
28379
28328
28376
28329
28375
28330
28374
28331
28332
28372
28374
28333
28334
28372
28335
28369
28371
28336
28337
28367
28369
28338
28358
28339
28357
28340
28356
28341
28355
28342
28346
28343
28345
28344
28345
28349
28346
28348
28347
28355
28348
28352
28354
28349
28351
28350
28351
28435
28352
28434
28353
28433
28354
28362
28432
28355
28361
28356
28357
28361
28358
28360
28359
28367
28360
28364
28366
28361
28363
28362
28363
28431
28364
28430
28365
28429
28366
28406
28428
28367
28405
28368
28369
28403
28405
28370
28371
28401
28403
28372
28400
28373
28374
28398
28400
28375
28376
28398
28377
28397
28378
28396
28379
28393
28395
28380
28381
28391
28393
28382
28383
28389
28391
28384
28385
28387
28389
28386
28387
29195
28388
29194
28389
29191
29193
28390
28391
29189
29191
28392
28393
29187
29189
28394
28395
29185
29187
28396
28416
28397
28415
28398
28414
28399
28400
28412
28414
28401
28402
28412
28403
28409
28411
28404
28405
28407
28409
28406
28407
28427
28408
28426
28409
28423
28425
28410
28411
28421
28423
28412
28420
28413
28414
28418
28420
28415
28416
28418
28417
29185
28418
29182
29184
28419
28420
29180
29182
28421
28422
29180
28423
29177
29179
28424
28425
29175
29177
28426
29166
28427
29165
28428
29164
28429
29163
28430
28498
28431
28497
28432
28496
28433
28495
28434
28482
28435
28481
28436
28437
28479
28481
28438
28439
28477
28479
28440
28464
28441
28463
28442
28462
28443
28444
28460
28462
28445
28446
28450
28460
28447
28449
28448
28449
28453
28450
28452
28451
28459
28452
28456
28458
28453
28455
28454
28455
28523
28456
28522
28457
28521
28458
28470
28520
28459
28469
28460
28468
28461
28462
28466
28468
28463
28464
28466
28465
28477
28466
28474
28476
28467
28468
28472
28474
28469
28470
28472
28471
28519
28472
28516
28518
28473
28474
28514
28516
28475
28476
28488
28514
28477
28487
28478
28479
28485
28487
28480
28481
28483
28485
28482
28483
28495
28484
28494
28485
28491
28493
28486
28487
28489
28491
28488
28489
28513
28490
28512
28491
28509
28511
28492
28493
28507
28509
28494
28502
28495
28501
28496
28497
28501
28498
28500
28499
29163
28500
28504
29162
28501
28503
28502
28503
28507
28504
28506
28505
29161
28506
29134
29160
28507
29133
28508
28509
29131
29133
28510
28511
29129
29131
28512
29128
28513
29127
28514
29126
28515
28516
29124
29126
28517
28518
28602
29124
28519
28601
28520
28600
28521
28599
28522
28590
28523
28589
28524
28588
28525
28587
28526
28546
28527
28545
28528
28544
28529
28543
28530
28534
28531
28533
28532
28533
28537
28534
28536
28535
28543
28536
28540
28542
28537
28539
28538
28539
28559
28540
28558
28541
28557
28542
28550
28556
28543
28549
28544
28545
28549
28546
28548
28547
28587
28548
28552
28586
28549
28551
28550
28551
28555
28552
28554
28553
28585
28554
28574
28584
28555
28573
28556
28572
28557
28571
28558
28562
28559
28561
28560
28561
28565
28562
28564
28563
28571
28564
28568
28570
28565
28567
28566
28567
28651
28568
28650
28569
28649
28570
28578
28648
28571
28577
28572
28573
28577
28574
28576
28575
28583
28576
28580
28582
28577
28579
28578
28579
28647
28580
28646
28581
28645
28582
28622
28644
28583
28621
28584
28616
28585
28615
28586
28594
28587
28593
28588
28589
28593
28590
28592
28591
28599
28592
28596
28598
28593
28595
28594
28595
28615
28596
28614
28597
28613
28598
28606
28612
28599
28605
28600
28601
28605
28602
28604
28603
29123
28604
28608
29122
28605
28607
28606
28607
28611
28608
28610
28609
29121
28610
28630
29120
28611
28629
28612
28628
28613
28627
28614
28618
28615
28617
28616
28617
28621
28618
28620
28619
28627
28620
28624
28626
28621
28623
28622
28623
28643
28624
28642
28625
28641
28626
28634
28640
28627
28633
28628
28629
28633
28630
28632
28631
29119
28632
28636
29118
28633
28635
28634
28635
28639
28636
28638
28637
29117
28638
28962
29116
28639
28961
28640
28960
28641
28959
28642
28950
28643
28949
28644
28948
28645
28947
28646
28906
28647
28905
28648
28904
28649
28903
28650
28894
28651
28893
28652
28892
28653
28891
28654
28738
28655
28737
28656
28736
28657
28735
28658
28726
28659
28725
28660
28724
28661
28723
28662
28682
28663
28681
28664
28680
28665
28679
28666
28670
28667
28669
28668
28669
28673
28670
28672
28671
28679
28672
28676
28678
28673
28675
28674
28675
28695
28676
28694
28677
28693
28678
28686
28692
28679
28685
28680
28681
28685
28682
28684
28683
28723
28684
28688
28722
28685
28687
28686
28687
28691
28688
28690
28689
28721
28690
28710
28720
28691
28709
28692
28708
28693
28707
28694
28698
28695
28697
28696
28697
28701
28698
28700
28699
28707
28700
28704
28706
28701
28703
28702
28703
28787
28704
28786
28705
28785
28706
28714
28784
28707
28713
28708
28709
28713
28710
28712
28711
28719
28712
28716
28718
28713
28715
28714
28715
28783
28716
28782
28717
28781
28718
28758
28780
28719
28757
28720
28752
28721
28751
28722
28730
28723
28729
28724
28725
28729
28726
28728
28727
28735
28728
28732
28734
28729
28731
28730
28731
28751
28732
28750
28733
28749
28734
28742
28748
28735
28741
28736
28737
28741
28738
28740
28739
28891
28740
28744
28890
28741
28743
28742
28743
28747
28744
28746
28745
28889
28746
28766
28888
28747
28765
28748
28764
28749
28763
28750
28754
28751
28753
28752
28753
28757
28754
28756
28755
28763
28756
28760
28762
28757
28759
28758
28759
28779
28760
28778
28761
28777
28762
28770
28776
28763
28769
28764
28765
28769
28766
28768
28767
28887
28768
28772
28886
28769
28771
28770
28771
28775
28772
28774
28773
28885
28774
28850
28884
28775
28849
28776
28848
28777
28847
28778
28838
28779
28837
28780
28836
28781
28835
28782
28802
28783
28801
28784
28800
28785
28799
28786
28790
28787
28789
28788
28789
28793
28790
28792
28791
28799
28792
28796
28798
28793
28795
28794
28795
28815
28796
28814
28797
28813
28798
28806
28812
28799
28805
28800
28801
28805
28802
28804
28803
28835
28804
28808
28834
28805
28807
28806
28807
28811
28808
28810
28809
28833
28810
28826
28832
28811
28825
28812
28824
28813
28823
28814
28818
28815
28817
28816
28817
28821
28818
28820
28819
28823
28820
28822
28821
28823
28829
28824
28825
28829
28826
28828
28827
28831
28828
28830
28829
28831
28869
28832
28864
28833
28863
28834
28842
28835
28841
28836
28837
28841
28838
28840
28839
28847
28840
28844
28846
28841
28843
28842
28843
28863
28844
28862
28845
28861
28846
28854
28860
28847
28853
28848
28849
28853
28850
28852
28851
28883
28852
28856
28882
28853
28855
28854
28855
28859
28856
28858
28857
28881
28858
28874
28880
28859
28873
28860
28872
28861
28871
28862
28866
28863
28865
28864
28865
28869
28866
28868
28867
28871
28868
28870
28869
28871
28877
28872
28873
28877
28874
28876
28875
28879
28876
28878
28877
28879
29045
28880
29040
28881
29039
28882
29018
28883
29017
28884
29012
28885
29011
28886
28926
28887
28925
28888
28920
28889
28919
28890
28898
28891
28897
28892
28893
28897
28894
28896
28895
28903
28896
28900
28902
28897
28899
28898
28899
28919
28900
28918
28901
28917
28902
28910
28916
28903
28909
28904
28905
28909
28906
28908
28907
28947
28908
28912
28946
28909
28911
28910
28911
28915
28912
28914
28913
28945
28914
28934
28944
28915
28933
28916
28932
28917
28931
28918
28922
28919
28921
28920
28921
28925
28922
28924
28923
28931
28924
28928
28930
28925
28927
28926
28927
29011
28928
29010
28929
29009
28930
28938
29008
28931
28937
28932
28933
28937
28934
28936
28935
28943
28936
28940
28942
28937
28939
28938
28939
29007
28940
29006
28941
29005
28942
28982
29004
28943
28981
28944
28976
28945
28975
28946
28954
28947
28953
28948
28949
28953
28950
28952
28951
28959
28952
28956
28958
28953
28955
28954
28955
28975
28956
28974
28957
28973
28958
28966
28972
28959
28965
28960
28961
28965
28962
28964
28963
29115
28964
28968
29114
28965
28967
28966
28967
28971
28968
28970
28969
29113
28970
28990
29112
28971
28989
28972
28988
28973
28987
28974
28978
28975
28977
28976
28977
28981
28978
28980
28979
28987
28980
28984
28986
28981
28983
28982
28983
29003
28984
29002
28985
29001
28986
28994
29000
28987
28993
28988
28989
28993
28990
28992
28991
29111
28992
28996
29110
28993
28995
28994
28995
28999
28996
28998
28997
29109
28998
29074
29108
28999
29073
29000
29072
29001
29071
29002
29062
29003
29061
29004
29060
29005
29059
29006
29026
29007
29025
29008
29024
29009
29023
29010
29014
29011
29013
29012
29013
29017
29014
29016
29015
29023
29016
29020
29022
29017
29019
29018
29019
29039
29020
29038
29021
29037
29022
29030
29036
29023
29029
29024
29025
29029
29026
29028
29027
29059
29028
29032
29058
29029
29031
29030
29031
29035
29032
29034
29033
29057
29034
29050
29056
29035
29049
29036
29048
29037
29047
29038
29042
29039
29041
29040
29041
29045
29042
29044
29043
29047
29044
29046
29045
29047
29053
29048
29049
29053
29050
29052
29051
29055
29052
29054
29053
29055
29093
29056
29088
29057
29087
29058
29066
29059
29065
29060
29061
29065
29062
29064
29063
29071
29064
29068
29070
29065
29067
29066
29067
29087
29068
29086
29069
29085
29070
29078
29084
29071
29077
29072
29073
29077
29074
29076
29075
29107
29076
29080
29106
29077
29079
29078
29079
29083
29080
29082
29081
29105
29082
29098
29104
29083
29097
29084
29096
29085
29095
29086
29090
29087
29089
29088
29089
29093
29090
29092
29091
29095
29092
29094
29093
29095
29101
29096
29097
29101
29098
29100
29099
29103
29100
29102
29101
29103
33152
29104
33147
29105
33146
29106
33125
29107
33124
29108
33119
29109
33118
29110
29534
29111
29533
29112
29528
29113
29527
29114
29506
29115
29505
29116
29500
29117
29499
29118
29430
29119
29429
29120
29424
29121
29423
29122
29146
29123
29145
29124
29144
29125
29126
29142
29144
29127
29128
29142
29129
29141
29130
29140
29131
29137
29139
29132
29133
29135
29137
29134
29135
29159
29136
29158
29137
29155
29157
29138
29139
29153
29155
29140
29152
29141
29151
29142
29150
29143
29144
29148
29150
29145
29146
29148
29147
29423
29148
29420
29422
29149
29150
29418
29420
29151
29152
29418
29153
29417
29154
29416
29155
29413
29415
29156
29157
29411
29413
29158
29390
29159
29389
29160
29384
29161
29383
29162
29170
29163
29169
29164
29165
29169
29166
29168
29167
29175
29168
29172
29174
29169
29171
29170
29171
29383
29172
29382
29173
29381
29174
29294
29380
29175
29293
29176
29177
29291
29293
29178
29179
29289
29291
29180
29288
29181
29182
29286
29288
29183
29184
29264
29286
29185
29263
29186
29187
29261
29263
29188
29189
29259
29261
29190
29191
29257
29259
29192
29193
29255
29257
29194
29206
29195
29205
29196
29204
29197
29198
29202
29204
29199
29200
29202
29201
29213
29202
29210
29212
29203
29204
29208
29210
29205
29206
29208
29207
29255
29208
29252
29254
29209
29210
29250
29252
29211
29212
29244
29250
29213
29243
29214
29222
29215
29221
29216
29217
29221
29218
29220
29219
29227
29220
29224
29226
29221
29223
29222
29223
29243
29224
29242
29225
29241
29226
29234
29240
29227
29233
29228
29229
29233
29230
29232
29231
29719
29232
29236
29718
29233
29235
29234
29235
29239
29236
29238
29237
29717
29238
29326
29716
29239
29325
29240
29324
29241
29323
29242
29246
29243
29245
29244
29245
29249
29246
29248
29247
29323
29248
29320
29322
29249
29319
29250
29318
29251
29252
29316
29318
29253
29254
29274
29316
29255
29273
29256
29257
29271
29273
29258
29259
29269
29271
29260
29261
29267
29269
29262
29263
29265
29267
29264
29265
29285
29266
29284
29267
29281
29283
29268
29269
29279
29281
29270
29271
29277
29279
29272
29273
29275
29277
29274
29275
29315
29276
29314
29277
29311
29313
29278
29279
29309
29311
29280
29281
29307
29309
29282
29283
29305
29307
29284
29304
29285
29303
29286
29302
29287
29288
29300
29302
29289
29290
29300
29291
29297
29299
29292
29293
29295
29297
29294
29295
29379
29296
29378
29297
29375
29377
29298
29299
29373
29375
29300
29372
29301
29302
29370
29372
29303
29304
29370
29305
29369
29306
29368
29307
29365
29367
29308
29309
29363
29365
29310
29311
29361
29363
29312
29313
29359
29361
29314
29342
29315
29341
29316
29340
29317
29318
29338
29340
29319
29320
29338
29321
29337
29322
29330
29336
29323
29329
29324
29325
29329
29326
29328
29327
29715
29328
29332
29714
29329
29331
29330
29331
29335
29332
29334
29333
29713
29334
29350
29712
29335
29349
29336
29348
29337
29347
29338
29346
29339
29340
29344
29346
29341
29342
29344
29343
29359
29344
29356
29358
29345
29346
29354
29356
29347
29348
29354
29349
29353
29350
29352
29351
29711
29352
29696
29710
29353
29695
29354
29694
29355
29356
29692
29694
29357
29358
29618
29692
29359
29617
29360
29361
29615
29617
29362
29363
29613
29615
29364
29365
29611
29613
29366
29367
29609
29611
29368
29608
29369
29607
29370
29606
29371
29372
29604
29606
29373
29374
29604
29375
29601
29603
29376
29377
29599
29601
29378
29398
29379
29397
29380
29396
29381
29395
29382
29386
29383
29385
29384
29385
29389
29386
29388
29387
29395
29388
29392
29394
29389
29391
29390
29391
29411
29392
29410
29393
29409
29394
29402
29408
29395
29401
29396
29397
29401
29398
29400
29399
29599
29400
29404
29598
29401
29403
29402
29403
29407
29404
29406
29405
29597
29406
29474
29596
29407
29473
29408
29472
29409
29471
29410
29458
29411
29457
29412
29413
29455
29457
29414
29415
29453
29455
29416
29440
29417
29439
29418
29438
29419
29420
29436
29438
29421
29422
29426
29436
29423
29425
29424
29425
29429
29426
29428
29427
29435
29428
29432
29434
29429
29431
29430
29431
29499
29432
29498
29433
29497
29434
29446
29496
29435
29445
29436
29444
29437
29438
29442
29444
29439
29440
29442
29441
29453
29442
29450
29452
29443
29444
29448
29450
29445
29446
29448
29447
29495
29448
29492
29494
29449
29450
29490
29492
29451
29452
29464
29490
29453
29463
29454
29455
29461
29463
29456
29457
29459
29461
29458
29459
29471
29460
29470
29461
29467
29469
29462
29463
29465
29467
29464
29465
29489
29466
29488
29467
29485
29487
29468
29469
29483
29485
29470
29478
29471
29477
29472
29473
29477
29474
29476
29475
29595
29476
29480
29594
29477
29479
29478
29479
29483
29480
29482
29481
29593
29482
29566
29592
29483
29565
29484
29485
29563
29565
29486
29487
29561
29563
29488
29560
29489
29559
29490
29558
29491
29492
29556
29558
29493
29494
29514
29556
29495
29513
29496
29512
29497
29511
29498
29502
29499
29501
29500
29501
29505
29502
29504
29503
29511
29504
29508
29510
29505
29507
29506
29507
29527
29508
29526
29509
29525
29510
29518
29524
29511
29517
29512
29513
29517
29514
29516
29515
29555
29516
29520
29554
29517
29519
29518
29519
29523
29520
29522
29521
29553
29522
29542
29552
29523
29541
29524
29540
29525
29539
29526
29530
29527
29529
29528
29529
29533
29530
29532
29531
29539
29532
29536
29538
29533
29535
29534
29535
33118
29536
33117
29537
33116
29538
29546
33115
29539
29545
29540
29541
29545
29542
29544
29543
29551
29544
29548
29550
29545
29547
29546
29547
33114
29548
33113
29549
33112
29550
33041
33111
29551
33040
29552
33035
29553
33034
29554
29578
29555
29577
29556
29576
29557
29558
29574
29576
29559
29560
29574
29561
29573
29562
29572
29563
29569
29571
29564
29565
29567
29569
29566
29567
29591
29568
29590
29569
29587
29589
29570
29571
29585
29587
29572
29584
29573
29583
29574
29582
29575
29576
29580
29582
29577
29578
29580
29579
33034
29580
33031
33033
29581
29582
33029
33031
29583
29584
33029
29585
33028
29586
33027
29587
33024
33026
29588
29589
33022
33024
29590
32937
29591
32936
29592
32931
29593
32930
29594
29666
29595
29665
29596
29660
29597
29659
29598
29638
29599
29637
29600
29601
29635
29637
29602
29603
29633
29635
29604
29632
29605
29606
29630
29632
29607
29608
29630
29609
29629
29610
29628
29611
29625
29627
29612
29613
29623
29625
29614
29615
29621
29623
29616
29617
29619
29621
29618
29619
29691
29620
29690
29621
29687
29689
29622
29623
29685
29687
29624
29625
29683
29685
29626
29627
29681
29683
29628
29648
29629
29647
29630
29646
29631
29632
29644
29646
29633
29634
29644
29635
29641
29643
29636
29637
29639
29641
29638
29639
29659
29640
29658
29641
29655
29657
29642
29643
29653
29655
29644
29652
29645
29646
29650
29652
29647
29648
29650
29649
29681
29650
29678
29680
29651
29652
29676
29678
29653
29654
29676
29655
29673
29675
29656
29657
29671
29673
29658
29662
29659
29661
29660
29661
29665
29662
29664
29663
29671
29664
29668
29670
29665
29667
29666
29667
32930
29668
32929
29669
32928
29670
30430
32927
29671
30429
29672
29673
30427
30429
29674
29675
30425
30427
29676
30424
29677
29678
30422
30424
29679
29680
30400
30422
29681
30399
29682
29683
30397
30399
29684
29685
30395
30397
29686
29687
30393
30395
29688
29689
30391
30393
29690
29702
29691
29701
29692
29700
29693
29694
29698
29700
29695
29696
29698
29697
29709
29698
29706
29708
29699
29700
29704
29706
29701
29702
29704
29703
30391
29704
30388
30390
29705
29706
30386
30388
29707
29708
30380
30386
29709
30379
29710
30358
29711
30357
29712
30352
29713
30351
29714
30218
29715
30217
29716
30212
29717
30211
29718
30178
29719
30177
29720
29721
30175
30177
29722
29723
30173
30175
29724
29725
30173
29726
30170
30172
29727
29728
30168
30170
29729
29730
30166
30168
29731
29732
30164
30166
29733
29734
29758
30164
29735
29757
29736
29737
29757
29738
29756
29739
29753
29755
29740
29741
29751
29753
29742
29743
29749
29751
29744
29745
29747
29749
29746
29747
29771
29748
29770
29749
29767
29769
29750
29751
29765
29767
29752
29753
29763
29765
29754
29755
29761
29763
29756
29760
29757
29759
29758
29759
30163
29760
30162
29761
30161
29762
30160
29763
30157
30159
29764
29765
30155
30157
29766
29767
30153
30155
29768
29769
30151
30153
29770
30082
29771
30081
29772
30076
29773
30075
29774
30058
29775
30057
29776
29777
30057
29778
30054
30056
29779
29780
30052
30054
29781
29782
29790
30052
29783
29789
29784
29785
29789
29786
29788
29787
29795
29788
29792
29794
29789
29791
29790
29791
30051
29792
30050
29793
30049
29794
29834
30048
29795
29833
29796
29828
29797
29827
29798
29806
29799
29805
29800
29801
29805
29802
29804
29803
29811
29804
29808
29810
29805
29807
29806
29807
29827
29808
29826
29809
29825
29810
29818
29824
29811
29817
29812
29813
29817
29814
29816
29815
29855
29816
29820
29854
29817
29819
29818
29819
29823
29820
29822
29821
29853
29822
29842
29852
29823
29841
29824
29840
29825
29839
29826
29830
29827
29829
29828
29829
29833
29830
29832
29831
29839
29832
29836
29838
29833
29835
29834
29835
30047
29836
30046
29837
30045
29838
29846
30044
29839
29845
29840
29841
29845
29842
29844
29843
29851
29844
29848
29850
29845
29847
29846
29847
30043
29848
30042
29849
30041
29850
29970
30040
29851
29969
29852
29964
29853
29963
29854
29946
29855
29945
29856
29857
29943
29945
29858
29859
29943
29860
29940
29942
29861
29862
29870
29940
29863
29869
29864
29865
29869
29866
29868
29867
29875
29868
29872
29874
29869
29871
29870
29871
29939
29872
29938
29873
29937
29874
29914
29936
29875
29913
29876
29908
29877
29907
29878
29886
29879
29885
29880
29881
29885
29882
29884
29883
29891
29884
29888
29890
29885
29887
29886
29887
29907
29888
29906
29889
29905
29890
29898
29904
29891
29897
29892
29893
29897
29894
29896
29895
30691
29896
29900
30690
29897
29899
29898
29899
29903
29900
29902
29901
30689
29902
29922
30688
29903
29921
29904
29920
29905
29919
29906
29910
29907
29909
29908
29909
29913
29910
29912
29911
29919
29912
29916
29918
29913
29915
29914
29915
29935
29916
29934
29917
29933
29918
29926
29932
29919
29925
29920
29921
29925
29922
29924
29923
30687
29924
29928
30686
29925
29927
29926
29927
29931
29928
29930
29929
30685
29930
29998
30684
29931
29997
29932
29996
29933
29995
29934
29986
29935
29985
29936
29984
29937
29983
29938
29954
29939
29953
29940
29952
29941
29942
29950
29952
29943
29949
29944
29945
29947
29949
29946
29947
29963
29948
29962
29949
29959
29961
29950
29951
29959
29952
29956
29958
29953
29954
29956
29955
29983
29956
29980
29982
29957
29958
29978
29980
29959
29977
29960
29961
29975
29977
29962
29966
29963
29965
29964
29965
29969
29966
29968
29967
29975
29968
29972
29974
29969
29971
29970
29971
30039
29972
30038
29973
30037
29974
30018
30036
29975
30017
29976
29977
30015
30017
29978
29979
30015
29980
30012
30014
29981
29982
29990
30012
29983
29989
29984
29985
29989
29986
29988
29987
29995
29988
29992
29994
29989
29991
29990
29991
30011
29992
30010
29993
30009
29994
30002
30008
29995
30001
29996
29997
30001
29998
30000
29999
30683
30000
30004
30682
30001
30003
30002
30003
30007
30004
30006
30005
30681
30006
30670
30680
30007
30669
30008
30668
30009
30667
30010
30026
30011
30025
30012
30024
30013
30014
30022
30024
30015
30021
30016
30017
30019
30021
30018
30019
30035
30020
30034
30021
30031
30033
30022
30023
30031
30024
30028
30030
30025
30026
30028
30027
30667
30028
30664
30666
30029
30030
30662
30664
30031
30661
30032
30033
30659
30661
30034
30618
30035
30617
30036
30616
30037
30615
30038
30606
30039
30605
30040
30604
30041
30603
30042
30110
30043
30109
30044
30108
30045
30107
30046
30098
30047
30097
30048
30096
30049
30095
30050
30066
30051
30065
30052
30064
30053
30054
30062
30064
30055
30056
30060
30062
30057
30059
30058
30059
30075
30060
30074
30061
30073
30062
30070
30072
30063
30064
30068
30070
30065
30066
30068
30067
30095
30068
30092
30094
30069
30070
30090
30092
30071
30072
30088
30090
30073
30087
30074
30078
30075
30077
30076
30077
30081
30078
30080
30079
30087
30080
30084
30086
30081
30083
30082
30083
30151
30084
30150
30085
30149
30086
30130
30148
30087
30129
30088
30089
30129
30090
30126
30128
30091
30092
30124
30126
30093
30094
30102
30124
30095
30101
30096
30097
30101
30098
30100
30099
30107
30100
30104
30106
30101
30103
30102
30103
30123
30104
30122
30105
30121
30106
30114
30120
30107
30113
30108
30109
30113
30110
30112
30111
30603
30112
30116
30602
30113
30115
30114
30115
30119
30116
30118
30117
30601
30118
30542
30600
30119
30541
30120
30540
30121
30539
30122
30138
30123
30137
30124
30136
30125
30126
30134
30136
30127
30128
30132
30134
30129
30131
30130
30131
30147
30132
30146
30133
30145
30134
30142
30144
30135
30136
30140
30142
30137
30138
30140
30139
30539
30140
30536
30538
30141
30142
30534
30536
30143
30144
30532
30534
30145
30531
30146
30290
30147
30289
30148
30288
30149
30287
30150
30262
30151
30261
30152
30153
30259
30261
30154
30155
30257
30259
30156
30157
30255
30257
30158
30159
30253
30255
30160
30252
30161
30251
30162
30194
30163
30193
30164
30192
30165
30166
30190
30192
30167
30168
30188
30190
30169
30170
30186
30188
30171
30172
30184
30186
30173
30183
30174
30175
30181
30183
30176
30177
30179
30181
30178
30179
30211
30180
30210
30181
30207
30209
30182
30183
30205
30207
30184
30185
30205
30186
30202
30204
30187
30188
30200
30202
30189
30190
30198
30200
30191
30192
30196
30198
30193
30194
30196
30195
30251
30196
30248
30250
30197
30198
30246
30248
30199
30200
30244
30246
30201
30202
30242
30244
30203
30204
30228
30242
30205
30227
30206
30207
30225
30227
30208
30209
30223
30225
30210
30214
30211
30213
30212
30213
30217
30214
30216
30215
30223
30216
30220
30222
30217
30219
30218
30219
30351
30220
30350
30221
30349
30222
30234
30348
30223
30233
30224
30225
30231
30233
30226
30227
30229
30231
30228
30229
30241
30230
30240
30231
30237
30239
30232
30233
30235
30237
30234
30235
30347
30236
30346
30237
30343
30345
30238
30239
30341
30343
30240
30320
30241
30319
30242
30318
30243
30244
30316
30318
30245
30246
30314
30316
30247
30248
30312
30314
30249
30250
30274
30312
30251
30273
30252
30253
30273
30254
30272
30255
30269
30271
30256
30257
30267
30269
30258
30259
30265
30267
30260
30261
30263
30265
30262
30263
30287
30264
30286
30265
30283
30285
30266
30267
30281
30283
30268
30269
30279
30281
30270
30271
30277
30279
30272
30276
30273
30275
30274
30275
30311
30276
30310
30277
30309
30278
30308
30279
30305
30307
30280
30281
30303
30305
30282
30283
30301
30303
30284
30285
30299
30301
30286
30294
30287
30293
30288
30289
30293
30290
30292
30291
30531
30292
30296
30530
30293
30295
30294
30295
30299
30296
30298
30297
30529
30298
30502
30528
30299
30501
30300
30301
30499
30501
30302
30303
30497
30499
30304
30305
30495
30497
30306
30307
30493
30495
30308
30492
30309
30491
30310
30330
30311
30329
30312
30328
30313
30314
30326
30328
30315
30316
30324
30326
30317
30318
30322
30324
30319
30320
30322
30321
30341
30322
30338
30340
30323
30324
30336
30338
30325
30326
30334
30336
30327
30328
30332
30334
30329
30330
30332
30331
30491
30332
30488
30490
30333
30334
30486
30488
30335
30336
30484
30486
30337
30338
30482
30484
30339
30340
30480
30482
30341
30479
30342
30343
30477
30479
30344
30345
30475
30477
30346
30366
30347
30365
30348
30364
30349
30363
30350
30354
30351
30353
30352
30353
30357
30354
30356
30355
30363
30356
30360
30362
30357
30359
30358
30359
30379
30360
30378
30361
30377
30362
30370
30376
30363
30369
30364
30365
30369
30366
30368
30367
30475
30368
30372
30474
30369
30371
30370
30371
30375
30372
30374
30373
30473
30374
30462
30472
30375
30461
30376
30460
30377
30459
30378
30382
30379
30381
30380
30381
30385
30382
30384
30383
30459
30384
30456
30458
30385
30455
30386
30454
30387
30388
30452
30454
30389
30390
30410
30452
30391
30409
30392
30393
30407
30409
30394
30395
30405
30407
30396
30397
30403
30405
30398
30399
30401
30403
30400
30401
30421
30402
30420
30403
30417
30419
30404
30405
30415
30417
30406
30407
30413
30415
30408
30409
30411
30413
30410
30411
30451
30412
30450
30413
30447
30449
30414
30415
30445
30447
30416
30417
30443
30445
30418
30419
30441
30443
30420
30440
30421
30439
30422
30438
30423
30424
30436
30438
30425
30426
30436
30427
30433
30435
30428
30429
30431
30433
30430
30431
32926
30432
32925
30433
32922
32924
30434
30435
32920
32922
30436
32919
30437
30438
32917
32919
30439
30440
32917
30441
32916
30442
32915
30443
32912
32914
30444
30445
32910
32912
30446
30447
32908
32910
30448
30449
32906
32908
30450
32889
30451
32888
30452
32887
30453
30454
32885
32887
30455
30456
32885
30457
32884
30458
30466
32883
30459
30465
30460
30461
30465
30462
30464
30463
30471
30464
30468
30470
30465
30467
30466
30467
32882
30468
32881
30469
32880
30470
32745
32879
30471
32744
30472
32739
30473
32738
30474
32705
30475
32704
30476
30477
32702
32704
30478
30479
32700
32702
30480
30481
32700
30482
32697
32699
30483
30484
32695
32697
30485
30486
32693
32695
30487
30488
32691
32693
30489
30490
30514
32691
30491
30513
30492
30493
30513
30494
30512
30495
30509
30511
30496
30497
30507
30509
30498
30499
30505
30507
30500
30501
30503
30505
30502
30503
30527
30504
30526
30505
30523
30525
30506
30507
30521
30523
30508
30509
30519
30521
30510
30511
30517
30519
30512
30516
30513
30515
30514
30515
32690
30516
32689
30517
32688
30518
32687
30519
32684
32686
30520
30521
32682
32684
30522
30523
32680
32682
30524
30525
32678
32680
30526
30582
30527
30581
30528
30576
30529
30575
30530
30558
30531
30557
30532
30533
30557
30534
30554
30556
30535
30536
30552
30554
30537
30538
30546
30552
30539
30545
30540
30541
30545
30542
30544
30543
30599
30544
30548
30598
30545
30547
30546
30547
30551
30548
30550
30549
30597
30550
30566
30596
30551
30565
30552
30564
30553
30554
30562
30564
30555
30556
30560
30562
30557
30559
30558
30559
30575
30560
30574
30561
30573
30562
30570
30572
30563
30564
30568
30570
30565
30566
30568
30567
30595
30568
30592
30594
30569
30570
30590
30592
30571
30572
30588
30590
30573
30587
30574
30578
30575
30577
30576
30577
30581
30578
30580
30579
30587
30580
30584
30586
30581
30583
30582
30583
32678
30584
32677
30585
32676
30586
32669
32675
30587
32668
30588
30589
32668
30590
32665
32667
30591
30592
32663
32665
30593
30594
32641
32663
30595
32640
30596
32635
30597
32634
30598
30638
30599
30637
30600
30632
30601
30631
30602
30610
30603
30609
30604
30605
30609
30606
30608
30607
30615
30608
30612
30614
30609
30611
30610
30611
30631
30612
30630
30613
30629
30614
30622
30628
30615
30621
30616
30617
30621
30618
30620
30619
30659
30620
30624
30658
30621
30623
30622
30623
30627
30624
30626
30625
30657
30626
30646
30656
30627
30645
30628
30644
30629
30643
30630
30634
30631
30633
30632
30633
30637
30634
30636
30635
30643
30636
30640
30642
30637
30639
30638
30639
32634
30640
32633
30641
32632
30642
30650
32631
30643
30649
30644
30645
30649
30646
30648
30647
30655
30648
30652
30654
30649
30651
30650
30651
32630
30652
32629
30653
32628
30654
32557
32627
30655
32556
30656
32551
30657
32550
30658
32533
30659
32532
30660
30661
32530
32532
30662
30663
32530
30664
32527
32529
30665
30666
30674
32527
30667
30673
30668
30669
30673
30670
30672
30671
30679
30672
30676
30678
30673
30675
30674
30675
32526
30676
32525
30677
32524
30678
30846
32523
30679
30845
30680
30840
30681
30839
30682
30818
30683
30817
30684
30812
30685
30811
30686
30726
30687
30725
30688
30720
30689
30719
30690
30698
30691
30697
30692
30693
30697
30694
30696
30695
30703
30696
30700
30702
30697
30699
30698
30699
30719
30700
30718
30701
30717
30702
30710
30716
30703
30709
30704
30705
30709
30706
30708
30707
30747
30708
30712
30746
30709
30711
30710
30711
30715
30712
30714
30713
30745
30714
30734
30744
30715
30733
30716
30732
30717
30731
30718
30722
30719
30721
30720
30721
30725
30722
30724
30723
30731
30724
30728
30730
30725
30727
30726
30727
30811
30728
30810
30729
30809
30730
30738
30808
30731
30737
30732
30733
30737
30734
30736
30735
30743
30736
30740
30742
30737
30739
30738
30739
30807
30740
30806
30741
30805
30742
30782
30804
30743
30781
30744
30776
30745
30775
30746
30754
30747
30753
30748
30749
30753
30750
30752
30751
30759
30752
30756
30758
30753
30755
30754
30755
30775
30756
30774
30757
30773
30758
30766
30772
30759
30765
30760
30761
30765
30762
30764
30763
30931
30764
30768
30930
30765
30767
30766
30767
30771
30768
30770
30769
30929
30770
30790
30928
30771
30789
30772
30788
30773
30787
30774
30778
30775
30777
30776
30777
30781
30778
30780
30779
30787
30780
30784
30786
30781
30783
30782
30783
30803
30784
30802
30785
30801
30786
30794
30800
30787
30793
30788
30789
30793
30790
30792
30791
30927
30792
30796
30926
30793
30795
30794
30795
30799
30796
30798
30797
30925
30798
30882
30924
30799
30881
30800
30880
30801
30879
30802
30870
30803
30869
30804
30868
30805
30867
30806
30826
30807
30825
30808
30824
30809
30823
30810
30814
30811
30813
30812
30813
30817
30814
30816
30815
30823
30816
30820
30822
30817
30819
30818
30819
30839
30820
30838
30821
30837
30822
30830
30836
30823
30829
30824
30825
30829
30826
30828
30827
30867
30828
30832
30866
30829
30831
30830
30831
30835
30832
30834
30833
30865
30834
30854
30864
30835
30853
30836
30852
30837
30851
30838
30842
30839
30841
30840
30841
30845
30842
30844
30843
30851
30844
30848
30850
30845
30847
30846
30847
32522
30848
32521
30849
32520
30850
30858
32519
30851
30857
30852
30853
30857
30854
30856
30855
30863
30856
30860
30862
30857
30859
30858
30859
32518
30860
32517
30861
32516
30862
30902
32515
30863
30901
30864
30896
30865
30895
30866
30874
30867
30873
30868
30869
30873
30870
30872
30871
30879
30872
30876
30878
30873
30875
30874
30875
30895
30876
30894
30877
30893
30878
30886
30892
30879
30885
30880
30881
30885
30882
30884
30883
30923
30884
30888
30922
30885
30887
30886
30887
30891
30888
30890
30889
30921
30890
30910
30920
30891
30909
30892
30908
30893
30907
30894
30898
30895
30897
30896
30897
30901
30898
30900
30899
30907
30900
30904
30906
30901
30903
30902
30903
32514
30904
32513
30905
32512
30906
30914
32511
30907
30913
30908
30909
30913
30910
30912
30911
30919
30912
30916
30918
30913
30915
30914
30915
32510
30916
32509
30917
32508
30918
31598
32507
30919
31597
30920
31592
30921
31591
30922
31570
30923
31569
30924
31564
30925
31563
30926
31478
30927
31477
30928
31472
30929
31471
30930
31450
30931
31449
30932
31444
30933
31443
30934
31102
30935
31101
30936
31096
30937
31095
30938
31074
30939
31073
30940
31068
30941
31067
30942
30982
30943
30981
30944
30976
30945
30975
30946
30954
30947
30953
30948
30949
30953
30950
30952
30951
30959
30952
30956
30958
30953
30955
30954
30955
30975
30956
30974
30957
30973
30958
30966
30972
30959
30965
30960
30961
30965
30962
30964
30963
31003
30964
30968
31002
30965
30967
30966
30967
30971
30968
30970
30969
31001
30970
30990
31000
30971
30989
30972
30988
30973
30987
30974
30978
30975
30977
30976
30977
30981
30978
30980
30979
30987
30980
30984
30986
30981
30983
30982
30983
31067
30984
31066
30985
31065
30986
30994
31064
30987
30993
30988
30989
30993
30990
30992
30991
30999
30992
30996
30998
30993
30995
30994
30995
31063
30996
31062
30997
31061
30998
31038
31060
30999
31037
31000
31032
31001
31031
31002
31010
31003
31009
31004
31005
31009
31006
31008
31007
31015
31008
31012
31014
31009
31011
31010
31011
31031
31012
31030
31013
31029
31014
31022
31028
31015
31021
31016
31017
31021
31018
31020
31019
31187
31020
31024
31186
31021
31023
31022
31023
31027
31024
31026
31025
31185
31026
31046
31184
31027
31045
31028
31044
31029
31043
31030
31034
31031
31033
31032
31033
31037
31034
31036
31035
31043
31036
31040
31042
31037
31039
31038
31039
31059
31040
31058
31041
31057
31042
31050
31056
31043
31049
31044
31045
31049
31046
31048
31047
31183
31048
31052
31182
31049
31051
31050
31051
31055
31052
31054
31053
31181
31054
31138
31180
31055
31137
31056
31136
31057
31135
31058
31126
31059
31125
31060
31124
31061
31123
31062
31082
31063
31081
31064
31080
31065
31079
31066
31070
31067
31069
31068
31069
31073
31070
31072
31071
31079
31072
31076
31078
31073
31075
31074
31075
31095
31076
31094
31077
31093
31078
31086
31092
31079
31085
31080
31081
31085
31082
31084
31083
31123
31084
31088
31122
31085
31087
31086
31087
31091
31088
31090
31089
31121
31090
31110
31120
31091
31109
31092
31108
31093
31107
31094
31098
31095
31097
31096
31097
31101
31098
31100
31099
31107
31100
31104
31106
31101
31103
31102
31103
31443
31104
31442
31105
31441
31106
31114
31440
31107
31113
31108
31109
31113
31110
31112
31111
31119
31112
31116
31118
31113
31115
31114
31115
31439
31116
31438
31117
31437
31118
31158
31436
31119
31157
31120
31152
31121
31151
31122
31130
31123
31129
31124
31125
31129
31126
31128
31127
31135
31128
31132
31134
31129
31131
31130
31131
31151
31132
31150
31133
31149
31134
31142
31148
31135
31141
31136
31137
31141
31138
31140
31139
31179
31140
31144
31178
31141
31143
31142
31143
31147
31144
31146
31145
31177
31146
31166
31176
31147
31165
31148
31164
31149
31163
31150
31154
31151
31153
31152
31153
31157
31154
31156
31155
31163
31156
31160
31162
31157
31159
31158
31159
31435
31160
31434
31161
31433
31162
31170
31432
31163
31169
31164
31165
31169
31166
31168
31167
31175
31168
31172
31174
31169
31171
31170
31171
31431
31172
31430
31173
31429
31174
31342
31428
31175
31341
31176
31336
31177
31335
31178
31314
31179
31313
31180
31308
31181
31307
31182
31222
31183
31221
31184
31216
31185
31215
31186
31194
31187
31193
31188
31189
31193
31190
31192
31191
31199
31192
31196
31198
31193
31195
31194
31195
31215
31196
31214
31197
31213
31198
31206
31212
31199
31205
31200
31201
31205
31202
31204
31203
31243
31204
31208
31242
31205
31207
31206
31207
31211
31208
31210
31209
31241
31210
31230
31240
31211
31229
31212
31228
31213
31227
31214
31218
31215
31217
31216
31217
31221
31218
31220
31219
31227
31220
31224
31226
31221
31223
31222
31223
31307
31224
31306
31225
31305
31226
31234
31304
31227
31233
31228
31229
31233
31230
31232
31231
31239
31232
31236
31238
31233
31235
31234
31235
31303
31236
31302
31237
31301
31238
31278
31300
31239
31277
31240
31272
31241
31271
31242
31250
31243
31249
31244
31245
31249
31246
31248
31247
31255
31248
31252
31254
31249
31251
31250
31251
31271
31252
31270
31253
31269
31254
31262
31268
31255
31261
31256
31257
31261
31258
31260
31259
31939
31260
31264
31938
31261
31263
31262
31263
31267
31264
31266
31265
31937
31266
31286
31936
31267
31285
31268
31284
31269
31283
31270
31274
31271
31273
31272
31273
31277
31274
31276
31275
31283
31276
31280
31282
31277
31279
31278
31279
31299
31280
31298
31281
31297
31282
31290
31296
31283
31289
31284
31285
31289
31286
31288
31287
31935
31288
31292
31934
31289
31291
31290
31291
31295
31292
31294
31293
31933
31294
31378
31932
31295
31377
31296
31376
31297
31375
31298
31366
31299
31365
31300
31364
31301
31363
31302
31322
31303
31321
31304
31320
31305
31319
31306
31310
31307
31309
31308
31309
31313
31310
31312
31311
31319
31312
31316
31318
31313
31315
31314
31315
31335
31316
31334
31317
31333
31318
31326
31332
31319
31325
31320
31321
31325
31322
31324
31323
31363
31324
31328
31362
31325
31327
31326
31327
31331
31328
31330
31329
31361
31330
31350
31360
31331
31349
31332
31348
31333
31347
31334
31338
31335
31337
31336
31337
31341
31338
31340
31339
31347
31340
31344
31346
31341
31343
31342
31343
31427
31344
31426
31345
31425
31346
31354
31424
31347
31353
31348
31349
31353
31350
31352
31351
31359
31352
31356
31358
31353
31355
31354
31355
31423
31356
31422
31357
31421
31358
31398
31420
31359
31397
31360
31392
31361
31391
31362
31370
31363
31369
31364
31365
31369
31366
31368
31367
31375
31368
31372
31374
31369
31371
31370
31371
31391
31372
31390
31373
31389
31374
31382
31388
31375
31381
31376
31377
31381
31378
31380
31379
31931
31380
31384
31930
31381
31383
31382
31383
31387
31384
31386
31385
31929
31386
31406
31928
31387
31405
31388
31404
31389
31403
31390
31394
31391
31393
31392
31393
31397
31394
31396
31395
31403
31396
31400
31402
31397
31399
31398
31399
31419
31400
31418
31401
31417
31402
31410
31416
31403
31409
31404
31405
31409
31406
31408
31407
31927
31408
31412
31926
31409
31411
31410
31411
31415
31412
31414
31413
31925
31414
31754
31924
31415
31753
31416
31752
31417
31751
31418
31742
31419
31741
31420
31740
31421
31739
31422
31698
31423
31697
31424
31696
31425
31695
31426
31686
31427
31685
31428
31684
31429
31683
31430
31514
31431
31513
31432
31512
31433
31511
31434
31502
31435
31501
31436
31500
31437
31499
31438
31458
31439
31457
31440
31456
31441
31455
31442
31446
31443
31445
31444
31445
31449
31446
31448
31447
31455
31448
31452
31454
31449
31451
31450
31451
31471
31452
31470
31453
31469
31454
31462
31468
31455
31461
31456
31457
31461
31458
31460
31459
31499
31460
31464
31498
31461
31463
31462
31463
31467
31464
31466
31465
31497
31466
31486
31496
31467
31485
31468
31484
31469
31483
31470
31474
31471
31473
31472
31473
31477
31474
31476
31475
31483
31476
31480
31482
31477
31479
31478
31479
31563
31480
31562
31481
31561
31482
31490
31560
31483
31489
31484
31485
31489
31486
31488
31487
31495
31488
31492
31494
31489
31491
31490
31491
31559
31492
31558
31493
31557
31494
31534
31556
31495
31533
31496
31528
31497
31527
31498
31506
31499
31505
31500
31501
31505
31502
31504
31503
31511
31504
31508
31510
31505
31507
31506
31507
31527
31508
31526
31509
31525
31510
31518
31524
31511
31517
31512
31513
31517
31514
31516
31515
31683
31516
31520
31682
31517
31519
31518
31519
31523
31520
31522
31521
31681
31522
31542
31680
31523
31541
31524
31540
31525
31539
31526
31530
31527
31529
31528
31529
31533
31530
31532
31531
31539
31532
31536
31538
31533
31535
31534
31535
31555
31536
31554
31537
31553
31538
31546
31552
31539
31545
31540
31541
31545
31542
31544
31543
31679
31544
31548
31678
31545
31547
31546
31547
31551
31548
31550
31549
31677
31550
31634
31676
31551
31633
31552
31632
31553
31631
31554
31622
31555
31621
31556
31620
31557
31619
31558
31578
31559
31577
31560
31576
31561
31575
31562
31566
31563
31565
31564
31565
31569
31566
31568
31567
31575
31568
31572
31574
31569
31571
31570
31571
31591
31572
31590
31573
31589
31574
31582
31588
31575
31581
31576
31577
31581
31578
31580
31579
31619
31580
31584
31618
31581
31583
31582
31583
31587
31584
31586
31585
31617
31586
31606
31616
31587
31605
31588
31604
31589
31603
31590
31594
31591
31593
31592
31593
31597
31594
31596
31595
31603
31596
31600
31602
31597
31599
31598
31599
32506
31600
32505
31601
32504
31602
31610
32503
31603
31609
31604
31605
31609
31606
31608
31607
31615
31608
31612
31614
31609
31611
31610
31611
32502
31612
32501
31613
32500
31614
31654
32499
31615
31653
31616
31648
31617
31647
31618
31626
31619
31625
31620
31621
31625
31622
31624
31623
31631
31624
31628
31630
31625
31627
31626
31627
31647
31628
31646
31629
31645
31630
31638
31644
31631
31637
31632
31633
31637
31634
31636
31635
31675
31636
31640
31674
31637
31639
31638
31639
31643
31640
31642
31641
31673
31642
31662
31672
31643
31661
31644
31660
31645
31659
31646
31650
31647
31649
31648
31649
31653
31650
31652
31651
31659
31652
31656
31658
31653
31655
31654
31655
32498
31656
32497
31657
32496
31658
31666
32495
31659
31665
31660
31661
31665
31662
31664
31663
31671
31664
31668
31670
31665
31667
31666
31667
32494
31668
32493
31669
32492
31670
31838
32491
31671
31837
31672
31832
31673
31831
31674
31810
31675
31809
31676
31804
31677
31803
31678
31718
31679
31717
31680
31712
31681
31711
31682
31690
31683
31689
31684
31685
31689
31686
31688
31687
31695
31688
31692
31694
31689
31691
31690
31691
31711
31692
31710
31693
31709
31694
31702
31708
31695
31701
31696
31697
31701
31698
31700
31699
31739
31700
31704
31738
31701
31703
31702
31703
31707
31704
31706
31705
31737
31706
31726
31736
31707
31725
31708
31724
31709
31723
31710
31714
31711
31713
31712
31713
31717
31714
31716
31715
31723
31716
31720
31722
31717
31719
31718
31719
31803
31720
31802
31721
31801
31722
31730
31800
31723
31729
31724
31725
31729
31726
31728
31727
31735
31728
31732
31734
31729
31731
31730
31731
31799
31732
31798
31733
31797
31734
31774
31796
31735
31773
31736
31768
31737
31767
31738
31746
31739
31745
31740
31741
31745
31742
31744
31743
31751
31744
31748
31750
31745
31747
31746
31747
31767
31748
31766
31749
31765
31750
31758
31764
31751
31757
31752
31753
31757
31754
31756
31755
31923
31756
31760
31922
31757
31759
31758
31759
31763
31760
31762
31761
31921
31762
31782
31920
31763
31781
31764
31780
31765
31779
31766
31770
31767
31769
31768
31769
31773
31770
31772
31771
31779
31772
31776
31778
31773
31775
31774
31775
31795
31776
31794
31777
31793
31778
31786
31792
31779
31785
31780
31781
31785
31782
31784
31783
31919
31784
31788
31918
31785
31787
31786
31787
31791
31788
31790
31789
31917
31790
31874
31916
31791
31873
31792
31872
31793
31871
31794
31862
31795
31861
31796
31860
31797
31859
31798
31818
31799
31817
31800
31816
31801
31815
31802
31806
31803
31805
31804
31805
31809
31806
31808
31807
31815
31808
31812
31814
31809
31811
31810
31811
31831
31812
31830
31813
31829
31814
31822
31828
31815
31821
31816
31817
31821
31818
31820
31819
31859
31820
31824
31858
31821
31823
31822
31823
31827
31824
31826
31825
31857
31826
31846
31856
31827
31845
31828
31844
31829
31843
31830
31834
31831
31833
31832
31833
31837
31834
31836
31835
31843
31836
31840
31842
31837
31839
31838
31839
32490
31840
32489
31841
32488
31842
31850
32487
31843
31849
31844
31845
31849
31846
31848
31847
31855
31848
31852
31854
31849
31851
31850
31851
32486
31852
32485
31853
32484
31854
31894
32483
31855
31893
31856
31888
31857
31887
31858
31866
31859
31865
31860
31861
31865
31862
31864
31863
31871
31864
31868
31870
31865
31867
31866
31867
31887
31868
31886
31869
31885
31870
31878
31884
31871
31877
31872
31873
31877
31874
31876
31875
31915
31876
31880
31914
31877
31879
31878
31879
31883
31880
31882
31881
31913
31882
31902
31912
31883
31901
31884
31900
31885
31899
31886
31890
31887
31889
31888
31889
31893
31890
31892
31891
31899
31892
31896
31898
31893
31895
31894
31895
32482
31896
32481
31897
32480
31898
31906
32479
31899
31905
31900
31901
31905
31902
31904
31903
31911
31904
31908
31910
31905
31907
31906
31907
32478
31908
32477
31909
32476
31910
32445
32475
31911
32444
31912
32439
31913
32438
31914
32417
31915
32416
31916
32411
31917
32410
31918
32381
31919
32380
31920
32375
31921
32374
31922
32353
31923
32352
31924
32347
31925
32346
31926
32317
31927
32316
31928
32311
31929
32310
31930
32289
31931
32288
31932
32283
31933
32282
31934
32253
31935
32252
31936
32247
31937
32246
31938
32225
31939
32224
31940
32219
31941
32218
31942
32189
31943
32188
31944
32183
31945
32182
31946
32161
31947
32160
31948
32155
31949
32154
31950
32125
31951
32124
31952
32119
31953
32118
31954
32097
31955
32096
31956
32091
31957
32090
31958
32061
31959
32060
31960
32055
31961
32054
31962
32033
31963
32032
31964
32027
31965
32026
31966
31998
31967
31997
31968
31992
31969
31991
31970
31972
31971
31972
31974
31973
31991
31974
31976
31990
31975
31976
31978
31977
31989
31978
31980
31988
31979
31980
31982
31981
31987
31982
31984
31986
31983
31984
32018
31985
32017
31986
32006
32016
31987
32005
31988
32004
31989
32003
31990
31994
31991
31993
31992
31993
31997
31994
31996
31995
32003
31996
32000
32002
31997
31999
31998
31999
32026
32000
32025
32001
32024
32002
32010
32023
32003
32009
32004
32005
32009
32006
32008
32007
32015
32008
32012
32014
32009
32011
32010
32011
32022
32012
32021
32013
32020
32014
32019
32015
32016
32017
32018
32020
32082
32021
32041
32022
32040
32023
32039
32024
32038
32025
32029
32026
32028
32027
32028
32032
32029
32031
32030
32038
32031
32035
32037
32032
32034
32033
32034
32054
32035
32053
32036
32052
32037
32045
32051
32038
32044
32039
32040
32044
32041
32043
32042
32082
32043
32047
32081
32044
32046
32045
32046
32050
32047
32049
32048
32080
32049
32069
32079
32050
32068
32051
32067
32052
32066
32053
32057
32054
32056
32055
32056
32060
32057
32059
32058
32066
32059
32063
32065
32060
32062
32061
32062
32090
32063
32089
32064
32088
32065
32073
32087
32066
32072
32067
32068
32072
32069
32071
32070
32078
32071
32075
32077
32072
32074
32073
32074
32086
32075
32085
32076
32084
32077
32083
32078
32079
32080
32081
32082
32084
32146
32085
32105
32086
32104
32087
32103
32088
32102
32089
32093
32090
32092
32091
32092
32096
32093
32095
32094
32102
32095
32099
32101
32096
32098
32097
32098
32118
32099
32117
32100
32116
32101
32109
32115
32102
32108
32103
32104
32108
32105
32107
32106
32146
32107
32111
32145
32108
32110
32109
32110
32114
32111
32113
32112
32144
32113
32133
32143
32114
32132
32115
32131
32116
32130
32117
32121
32118
32120
32119
32120
32124
32121
32123
32122
32130
32123
32127
32129
32124
32126
32125
32126
32154
32127
32153
32128
32152
32129
32137
32151
32130
32136
32131
32132
32136
32133
32135
32134
32142
32135
32139
32141
32136
32138
32137
32138
32150
32139
32149
32140
32148
32141
32147
32142
32143
32144
32145
32146
32148
32210
32149
32169
32150
32168
32151
32167
32152
32166
32153
32157
32154
32156
32155
32156
32160
32157
32159
32158
32166
32159
32163
32165
32160
32162
32161
32162
32182
32163
32181
32164
32180
32165
32173
32179
32166
32172
32167
32168
32172
32169
32171
32170
32210
32171
32175
32209
32172
32174
32173
32174
32178
32175
32177
32176
32208
32177
32197
32207
32178
32196
32179
32195
32180
32194
32181
32185
32182
32184
32183
32184
32188
32185
32187
32186
32194
32187
32191
32193
32188
32190
32189
32190
32218
32191
32217
32192
32216
32193
32201
32215
32194
32200
32195
32196
32200
32197
32199
32198
32206
32199
32203
32205
32200
32202
32201
32202
32214
32203
32213
32204
32212
32205
32211
32206
32207
32208
32209
32210
32212
32274
32213
32233
32214
32232
32215
32231
32216
32230
32217
32221
32218
32220
32219
32220
32224
32221
32223
32222
32230
32223
32227
32229
32224
32226
32225
32226
32246
32227
32245
32228
32244
32229
32237
32243
32230
32236
32231
32232
32236
32233
32235
32234
32274
32235
32239
32273
32236
32238
32237
32238
32242
32239
32241
32240
32272
32241
32261
32271
32242
32260
32243
32259
32244
32258
32245
32249
32246
32248
32247
32248
32252
32249
32251
32250
32258
32251
32255
32257
32252
32254
32253
32254
32282
32255
32281
32256
32280
32257
32265
32279
32258
32264
32259
32260
32264
32261
32263
32262
32270
32263
32267
32269
32264
32266
32265
32266
32278
32267
32277
32268
32276
32269
32275
32270
32271
32272
32273
32274
32276
32338
32277
32297
32278
32296
32279
32295
32280
32294
32281
32285
32282
32284
32283
32284
32288
32285
32287
32286
32294
32287
32291
32293
32288
32290
32289
32290
32310
32291
32309
32292
32308
32293
32301
32307
32294
32300
32295
32296
32300
32297
32299
32298
32338
32299
32303
32337
32300
32302
32301
32302
32306
32303
32305
32304
32336
32305
32325
32335
32306
32324
32307
32323
32308
32322
32309
32313
32310
32312
32311
32312
32316
32313
32315
32314
32322
32315
32319
32321
32316
32318
32317
32318
32346
32319
32345
32320
32344
32321
32329
32343
32322
32328
32323
32324
32328
32325
32327
32326
32334
32327
32331
32333
32328
32330
32329
32330
32342
32331
32341
32332
32340
32333
32339
32334
32335
32336
32337
32338
32340
32402
32341
32361
32342
32360
32343
32359
32344
32358
32345
32349
32346
32348
32347
32348
32352
32349
32351
32350
32358
32351
32355
32357
32352
32354
32353
32354
32374
32355
32373
32356
32372
32357
32365
32371
32358
32364
32359
32360
32364
32361
32363
32362
32402
32363
32367
32401
32364
32366
32365
32366
32370
32367
32369
32368
32400
32369
32389
32399
32370
32388
32371
32387
32372
32386
32373
32377
32374
32376
32375
32376
32380
32377
32379
32378
32386
32379
32383
32385
32380
32382
32381
32382
32410
32383
32409
32384
32408
32385
32393
32407
32386
32392
32387
32388
32392
32389
32391
32390
32398
32391
32395
32397
32392
32394
32393
32394
32406
32395
32405
32396
32404
32397
32403
32398
32399
32400
32401
32402
32404
32466
32405
32425
32406
32424
32407
32423
32408
32422
32409
32413
32410
32412
32411
32412
32416
32413
32415
32414
32422
32415
32419
32421
32416
32418
32417
32418
32438
32419
32437
32420
32436
32421
32429
32435
32422
32428
32423
32424
32428
32425
32427
32426
32466
32427
32431
32465
32428
32430
32429
32430
32434
32431
32433
32432
32464
32433
32453
32463
32434
32452
32435
32451
32436
32450
32437
32441
32438
32440
32439
32440
32444
32441
32443
32442
32450
32443
32447
32449
32444
32446
32445
32446
32474
32447
32473
32448
32472
32449
32457
32471
32450
32456
32451
32452
32456
32453
32455
32454
32462
32455
32459
32461
32456
32458
32457
32458
32470
32459
32469
32460
32468
32461
32467
32462
32463
32464
32465
32466
32468
38164
32469
38123
32470
38122
32471
38121
32472
38120
32473
38111
32474
38110
32475
38109
32476
38108
32477
35053
32478
35052
32479
35051
32480
35050
32481
35041
32482
35040
32483
35039
32484
35038
32485
34997
32486
34996
32487
34995
32488
34994
32489
34985
32490
34984
32491
34983
32492
34982
32493
34813
32494
34812
32495
34811
32496
34810
32497
34801
32498
34800
32499
34799
32500
34798
32501
34757
32502
34756
32503
34755
32504
34754
32505
34745
32506
34744
32507
34743
32508
34742
32509
33897
32510
33896
32511
33895
32512
33894
32513
33885
32514
33884
32515
33883
32516
33882
32517
32585
32518
32584
32519
32583
32520
32582
32521
32573
32522
32572
32523
32571
32524
32570
32525
32541
32526
32540
32527
32539
32528
32529
32537
32539
32530
32536
32531
32532
32534
32536
32533
32534
32550
32535
32549
32536
32546
32548
32537
32538
32546
32539
32543
32545
32540
32541
32543
32542
32570
32543
32567
32569
32544
32545
32565
32567
32546
32564
32547
32548
32562
32564
32549
32553
32550
32552
32551
32552
32556
32553
32555
32554
32562
32555
32559
32561
32556
32558
32557
32558
32626
32559
32625
32560
32624
32561
32605
32623
32562
32604
32563
32564
32602
32604
32565
32566
32602
32567
32599
32601
32568
32569
32577
32599
32570
32576
32571
32572
32576
32573
32575
32574
32582
32575
32579
32581
32576
32578
32577
32578
32598
32579
32597
32580
32596
32581
32589
32595
32582
32588
32583
32584
32588
32585
32587
32586
33882
32587
32591
33881
32588
32590
32589
32590
32594
32591
32593
32592
33880
32593
33869
33879
32594
33868
32595
33867
32596
33866
32597
32613
32598
32612
32599
32611
32600
32601
32609
32611
32602
32608
32603
32604
32606
32608
32605
32606
32622
32607
32621
32608
32618
32620
32609
32610
32618
32611
32615
32617
32612
32613
32615
32614
33866
32615
33863
33865
32616
32617
33861
33863
32618
33860
32619
32620
33858
33860
32621
33817
32622
33816
32623
33815
32624
33814
32625
33805
32626
33804
32627
33803
32628
33802
32629
32649
32630
32648
32631
32647
32632
32646
32633
32637
32634
32636
32635
32636
32640
32637
32639
32638
32646
32639
32643
32645
32640
32642
32641
32642
32662
32643
32661
32644
32660
32645
32653
32659
32646
32652
32647
32648
32652
32649
32651
32650
33802
32651
32655
33801
32652
32654
32653
32654
32658
32655
32657
32656
33800
32657
33789
33799
32658
33788
32659
33787
32660
33786
32661
33773
32662
33772
32663
33771
32664
32665
33769
33771
32666
32667
32671
33769
32668
32670
32669
32670
32674
32671
32673
32672
33768
32673
32817
33767
32674
32816
32675
32815
32676
32814
32677
32789
32678
32788
32679
32680
32786
32788
32681
32682
32784
32786
32683
32684
32782
32784
32685
32686
32780
32782
32687
32779
32688
32778
32689
32721
32690
32720
32691
32719
32692
32693
32717
32719
32694
32695
32715
32717
32696
32697
32713
32715
32698
32699
32711
32713
32700
32710
32701
32702
32708
32710
32703
32704
32706
32708
32705
32706
32738
32707
32737
32708
32734
32736
32709
32710
32732
32734
32711
32712
32732
32713
32729
32731
32714
32715
32727
32729
32716
32717
32725
32727
32718
32719
32723
32725
32720
32721
32723
32722
32778
32723
32775
32777
32724
32725
32773
32775
32726
32727
32771
32773
32728
32729
32769
32771
32730
32731
32755
32769
32732
32754
32733
32734
32752
32754
32735
32736
32750
32752
32737
32741
32738
32740
32739
32740
32744
32741
32743
32742
32750
32743
32747
32749
32744
32746
32745
32746
32878
32747
32877
32748
32876
32749
32761
32875
32750
32760
32751
32752
32758
32760
32753
32754
32756
32758
32755
32756
32768
32757
32767
32758
32764
32766
32759
32760
32762
32764
32761
32762
32874
32763
32873
32764
32870
32872
32765
32766
32868
32870
32767
32847
32768
32846
32769
32845
32770
32771
32843
32845
32772
32773
32841
32843
32774
32775
32839
32841
32776
32777
32801
32839
32778
32800
32779
32780
32800
32781
32799
32782
32796
32798
32783
32784
32794
32796
32785
32786
32792
32794
32787
32788
32790
32792
32789
32790
32814
32791
32813
32792
32810
32812
32793
32794
32808
32810
32795
32796
32806
32808
32797
32798
32804
32806
32799
32803
32800
32802
32801
32802
32838
32803
32837
32804
32836
32805
32835
32806
32832
32834
32807
32808
32830
32832
32809
32810
32828
32830
32811
32812
32826
32828
32813
32821
32814
32820
32815
32816
32820
32817
32819
32818
33766
32819
32823
33765
32820
32822
32821
32822
32826
32823
32825
32824
33764
32825
33737
33763
32826
33736
32827
32828
33734
33736
32829
32830
33732
33734
32831
32832
33730
33732
32833
32834
33728
33730
32835
33727
32836
33726
32837
32857
32838
32856
32839
32855
32840
32841
32853
32855
32842
32843
32851
32853
32844
32845
32849
32851
32846
32847
32849
32848
32868
32849
32865
32867
32850
32851
32863
32865
32852
32853
32861
32863
32854
32855
32859
32861
32856
32857
32859
32858
33726
32859
33723
33725
32860
32861
33721
33723
32862
32863
33719
33721
32864
32865
33717
33719
32866
32867
33715
33717
32868
33714
32869
32870
33712
33714
32871
32872
33710
33712
32873
33321
32874
33320
32875
33319
32876
33318
32877
33309
32878
33308
32879
33307
32880
33306
32881
32897
32882
32896
32883
32895
32884
32894
32885
32893
32886
32887
32891
32893
32888
32889
32891
32890
32906
32891
32903
32905
32892
32893
32901
32903
32894
32895
32901
32896
32900
32897
32899
32898
33306
32899
33291
33305
32900
33290
32901
33289
32902
32903
33287
33289
32904
32905
32973
33287
32906
32972
32907
32908
32970
32972
32909
32910
32968
32970
32911
32912
32966
32968
32913
32914
32964
32966
32915
32963
32916
32962
32917
32961
32918
32919
32959
32961
32920
32921
32959
32922
32956
32958
32923
32924
32954
32956
32925
32945
32926
32944
32927
32943
32928
32942
32929
32933
32930
32932
32931
32932
32936
32933
32935
32934
32942
32935
32939
32941
32936
32938
32937
32938
33022
32939
33021
32940
33020
32941
32949
33019
32942
32948
32943
32944
32948
32945
32947
32946
32954
32947
32951
32953
32948
32950
32949
32950
33018
32951
33017
32952
33016
32953
32993
33015
32954
32992
32955
32956
32990
32992
32957
32958
32988
32990
32959
32987
32960
32961
32985
32987
32962
32963
32985
32964
32984
32965
32983
32966
32980
32982
32967
32968
32978
32980
32969
32970
32976
32978
32971
32972
32974
32976
32973
32974
33286
32975
33285
32976
33282
33284
32977
32978
33280
33282
32979
32980
33278
33280
32981
32982
33276
33278
32983
33003
32984
33002
32985
33001
32986
32987
32999
33001
32988
32989
32999
32990
32996
32998
32991
32992
32994
32996
32993
32994
33014
32995
33013
32996
33010
33012
32997
32998
33008
33010
32999
33007
33000
33001
33005
33007
33002
33003
33005
33004
33276
33005
33273
33275
33006
33007
33271
33273
33008
33009
33271
33010
33268
33270
33011
33012
33266
33268
33013
33257
33014
33256
33015
33255
33016
33254
33017
33085
33018
33084
33019
33083
33020
33082
33021
33069
33022
33068
33023
33024
33066
33068
33025
33026
33064
33066
33027
33051
33028
33050
33029
33049
33030
33031
33047
33049
33032
33033
33037
33047
33034
33036
33035
33036
33040
33037
33039
33038
33046
33039
33043
33045
33040
33042
33041
33042
33110
33043
33109
33044
33108
33045
33057
33107
33046
33056
33047
33055
33048
33049
33053
33055
33050
33051
33053
33052
33064
33053
33061
33063
33054
33055
33059
33061
33056
33057
33059
33058
33106
33059
33103
33105
33060
33061
33101
33103
33062
33063
33075
33101
33064
33074
33065
33066
33072
33074
33067
33068
33070
33072
33069
33070
33082
33071
33081
33072
33078
33080
33073
33074
33076
33078
33075
33076
33100
33077
33099
33078
33096
33098
33079
33080
33094
33096
33081
33089
33082
33088
33083
33084
33088
33085
33087
33086
33254
33087
33091
33253
33088
33090
33089
33090
33094
33091
33093
33092
33252
33093
33225
33251
33094
33224
33095
33096
33222
33224
33097
33098
33220
33222
33099
33219
33100
33218
33101
33217
33102
33103
33215
33217
33104
33105
33181
33215
33106
33180
33107
33179
33108
33178
33109
33169
33110
33168
33111
33167
33112
33166
33113
33133
33114
33132
33115
33131
33116
33130
33117
33121
33118
33120
33119
33120
33124
33121
33123
33122
33130
33123
33127
33129
33124
33126
33125
33126
33146
33127
33145
33128
33144
33129
33137
33143
33130
33136
33131
33132
33136
33133
33135
33134
33166
33135
33139
33165
33136
33138
33137
33138
33142
33139
33141
33140
33164
33141
33157
33163
33142
33156
33143
33155
33144
33154
33145
33149
33146
33148
33147
33148
33152
33149
33151
33150
33154
33151
33153
33152
33154
33160
33155
33156
33160
33157
33159
33158
33162
33159
33161
33160
33162
33200
33163
33195
33164
33194
33165
33173
33166
33172
33167
33168
33172
33169
33171
33170
33178
33171
33175
33177
33172
33174
33173
33174
33194
33175
33193
33176
33192
33177
33185
33191
33178
33184
33179
33180
33184
33181
33183
33182
33214
33183
33187
33213
33184
33186
33185
33186
33190
33187
33189
33188
33212
33189
33205
33211
33190
33204
33191
33203
33192
33202
33193
33197
33194
33196
33195
33196
33200
33197
33199
33198
33202
33199
33201
33200
33202
33208
33203
33204
33208
33205
33207
33206
33210
33207
33209
33208
33210
33520
33211
33515
33212
33514
33213
33237
33214
33236
33215
33235
33216
33217
33233
33235
33218
33219
33233
33220
33232
33221
33231
33222
33228
33230
33223
33224
33226
33228
33225
33226
33250
33227
33249
33228
33246
33248
33229
33230
33244
33246
33231
33243
33232
33242
33233
33241
33234
33235
33239
33241
33236
33237
33239
33238
33514
33239
33511
33513
33240
33241
33509
33511
33242
33243
33509
33244
33508
33245
33507
33246
33504
33506
33247
33248
33502
33504
33249
33481
33250
33480
33251
33475
33252
33474
33253
33261
33254
33260
33255
33256
33260
33257
33259
33258
33266
33259
33263
33265
33260
33262
33261
33262
33474
33263
33473
33264
33472
33265
33385
33471
33266
33384
33267
33268
33382
33384
33269
33270
33380
33382
33271
33379
33272
33273
33377
33379
33274
33275
33355
33377
33276
33354
33277
33278
33352
33354
33279
33280
33350
33352
33281
33282
33348
33350
33283
33284
33346
33348
33285
33297
33286
33296
33287
33295
33288
33289
33293
33295
33290
33291
33293
33292
33304
33293
33301
33303
33294
33295
33299
33301
33296
33297
33299
33298
33346
33299
33343
33345
33300
33301
33341
33343
33302
33303
33335
33341
33304
33334
33305
33313
33306
33312
33307
33308
33312
33309
33311
33310
33318
33311
33315
33317
33312
33314
33313
33314
33334
33315
33333
33316
33332
33317
33325
33331
33318
33324
33319
33320
33324
33321
33323
33322
33710
33323
33327
33709
33324
33326
33325
33326
33330
33327
33329
33328
33708
33329
33417
33707
33330
33416
33331
33415
33332
33414
33333
33337
33334
33336
33335
33336
33340
33337
33339
33338
33414
33339
33411
33413
33340
33410
33341
33409
33342
33343
33407
33409
33344
33345
33365
33407
33346
33364
33347
33348
33362
33364
33349
33350
33360
33362
33351
33352
33358
33360
33353
33354
33356
33358
33355
33356
33376
33357
33375
33358
33372
33374
33359
33360
33370
33372
33361
33362
33368
33370
33363
33364
33366
33368
33365
33366
33406
33367
33405
33368
33402
33404
33369
33370
33400
33402
33371
33372
33398
33400
33373
33374
33396
33398
33375
33395
33376
33394
33377
33393
33378
33379
33391
33393
33380
33381
33391
33382
33388
33390
33383
33384
33386
33388
33385
33386
33470
33387
33469
33388
33466
33468
33389
33390
33464
33466
33391
33463
33392
33393
33461
33463
33394
33395
33461
33396
33460
33397
33459
33398
33456
33458
33399
33400
33454
33456
33401
33402
33452
33454
33403
33404
33450
33452
33405
33433
33406
33432
33407
33431
33408
33409
33429
33431
33410
33411
33429
33412
33428
33413
33421
33427
33414
33420
33415
33416
33420
33417
33419
33418
33706
33419
33423
33705
33420
33422
33421
33422
33426
33423
33425
33424
33704
33425
33441
33703
33426
33440
33427
33439
33428
33438
33429
33437
33430
33431
33435
33437
33432
33433
33435
33434
33450
33435
33447
33449
33436
33437
33445
33447
33438
33439
33445
33440
33444
33441
33443
33442
33702
33443
33687
33701
33444
33686
33445
33685
33446
33447
33683
33685
33448
33449
33609
33683
33450
33608
33451
33452
33606
33608
33453
33454
33604
33606
33455
33456
33602
33604
33457
33458
33600
33602
33459
33599
33460
33598
33461
33597
33462
33463
33595
33597
33464
33465
33595
33466
33592
33594
33467
33468
33590
33592
33469
33489
33470
33488
33471
33487
33472
33486
33473
33477
33474
33476
33475
33476
33480
33477
33479
33478
33486
33479
33483
33485
33480
33482
33481
33482
33502
33483
33501
33484
33500
33485
33493
33499
33486
33492
33487
33488
33492
33489
33491
33490
33590
33491
33495
33589
33492
33494
33493
33494
33498
33495
33497
33496
33588
33497
33559
33587
33498
33558
33499
33557
33500
33556
33501
33543
33502
33542
33503
33504
33540
33542
33505
33506
33538
33540
33507
33527
33508
33526
33509
33525
33510
33511
33523
33525
33512
33513
33517
33523
33514
33516
33515
33516
33520
33517
33519
33518
33522
33519
33521
33520
33522
33532
33523
33531
33524
33525
33529
33531
33526
33527
33529
33528
33538
33529
33535
33537
33530
33531
33533
33535
33532
33533
33534
33535
33575
33536
33537
33549
33575
33538
33548
33539
33540
33546
33548
33541
33542
33544
33546
33543
33544
33556
33545
33555
33546
33552
33554
33547
33548
33550
33552
33549
33550
33574
33551
33573
33552
33570
33572
33553
33554
33568
33570
33555
33563
33556
33562
33557
33558
33562
33559
33561
33560
33586
33561
33565
33585
33562
33564
33563
33564
33568
33565
33567
33566
33584
33567
33579
33583
33568
33578
33569
33570
33576
33578
33571
33572
33576
33573
33574
33575
33577
33578
33580
33579
33580
33582
33581
33582
35616
33583
35611
33584
35610
33585
33657
33586
33656
33587
33651
33588
33650
33589
33629
33590
33628
33591
33592
33626
33628
33593
33594
33624
33626
33595
33623
33596
33597
33621
33623
33598
33599
33621
33600
33620
33601
33619
33602
33616
33618
33603
33604
33614
33616
33605
33606
33612
33614
33607
33608
33610
33612
33609
33610
33682
33611
33681
33612
33678
33680
33613
33614
33676
33678
33615
33616
33674
33676
33617
33618
33672
33674
33619
33639
33620
33638
33621
33637
33622
33623
33635
33637
33624
33625
33635
33626
33632
33634
33627
33628
33630
33632
33629
33630
33650
33631
33649
33632
33646
33648
33633
33634
33644
33646
33635
33643
33636
33637
33641
33643
33638
33639
33641
33640
33672
33641
33669
33671
33642
33643
33667
33669
33644
33645
33667
33646
33664
33666
33647
33648
33662
33664
33649
33653
33650
33652
33651
33652
33656
33653
33655
33654
33662
33655
33659
33661
33656
33658
33657
33658
35610
33659
35609
33660
35608
33661
34401
35607
33662
34400
33663
33664
34398
34400
33665
33666
34396
34398
33667
34395
33668
33669
34393
34395
33670
33671
34371
34393
33672
34370
33673
33674
34368
34370
33675
33676
34366
34368
33677
33678
34364
34366
33679
33680
34362
34364
33681
33693
33682
33692
33683
33691
33684
33685
33689
33691
33686
33687
33689
33688
33700
33689
33697
33699
33690
33691
33695
33697
33692
33693
33695
33694
34362
33695
34359
34361
33696
33697
34357
34359
33698
33699
34351
34357
33700
34350
33701
34329
33702
34328
33703
34323
33704
34322
33705
34221
33706
34220
33707
34215
33708
34214
33709
34181
33710
34180
33711
33712
34178
34180
33713
33714
34176
34178
33715
33716
34176
33717
34173
34175
33718
33719
34171
34173
33720
33721
34169
34171
33722
33723
34167
34169
33724
33725
33749
34167
33726
33748
33727
33728
33748
33729
33747
33730
33744
33746
33731
33732
33742
33744
33733
33734
33740
33742
33735
33736
33738
33740
33737
33738
33762
33739
33761
33740
33758
33760
33741
33742
33756
33758
33743
33744
33754
33756
33745
33746
33752
33754
33747
33751
33748
33750
33749
33750
34166
33751
34165
33752
34164
33753
34163
33754
34160
34162
33755
33756
34158
34160
33757
33758
34156
34158
33759
33760
34154
34156
33761
34085
33762
34084
33763
34079
33764
34078
33765
34061
33766
34060
33767
33779
33768
33778
33769
33777
33770
33771
33775
33777
33772
33773
33775
33774
33786
33775
33783
33785
33776
33777
33781
33783
33778
33779
33781
33780
34060
33781
34057
34059
33782
33783
34055
34057
33784
33785
33793
34055
33786
33792
33787
33788
33792
33789
33791
33790
33798
33791
33795
33797
33792
33794
33793
33794
34054
33795
34053
33796
34052
33797
33837
34051
33798
33836
33799
33831
33800
33830
33801
33809
33802
33808
33803
33804
33808
33805
33807
33806
33814
33807
33811
33813
33808
33810
33809
33810
33830
33811
33829
33812
33828
33813
33821
33827
33814
33820
33815
33816
33820
33817
33819
33818
33858
33819
33823
33857
33820
33822
33821
33822
33826
33823
33825
33824
33856
33825
33845
33855
33826
33844
33827
33843
33828
33842
33829
33833
33830
33832
33831
33832
33836
33833
33835
33834
33842
33835
33839
33841
33836
33838
33837
33838
34050
33839
34049
33840
34048
33841
33849
34047
33842
33848
33843
33844
33848
33845
33847
33846
33854
33847
33851
33853
33848
33850
33849
33850
34046
33851
34045
33852
34044
33853
33973
34043
33854
33972
33855
33967
33856
33966
33857
33949
33858
33948
33859
33860
33946
33948
33861
33862
33946
33863
33943
33945
33864
33865
33873
33943
33866
33872
33867
33868
33872
33869
33871
33870
33878
33871
33875
33877
33872
33874
33873
33874
33942
33875
33941
33876
33940
33877
33917
33939
33878
33916
33879
33911
33880
33910
33881
33889
33882
33888
33883
33884
33888
33885
33887
33886
33894
33887
33891
33893
33888
33890
33889
33890
33910
33891
33909
33892
33908
33893
33901
33907
33894
33900
33895
33896
33900
33897
33899
33898
34742
33899
33903
34741
33900
33902
33901
33902
33906
33903
33905
33904
34740
33905
33925
34739
33906
33924
33907
33923
33908
33922
33909
33913
33910
33912
33911
33912
33916
33913
33915
33914
33922
33915
33919
33921
33916
33918
33917
33918
33938
33919
33937
33920
33936
33921
33929
33935
33922
33928
33923
33924
33928
33925
33927
33926
34738
33927
33931
34737
33928
33930
33929
33930
33934
33931
33933
33932
34736
33933
34001
34735
33934
34000
33935
33999
33936
33998
33937
33989
33938
33988
33939
33987
33940
33986
33941
33957
33942
33956
33943
33955
33944
33945
33953
33955
33946
33952
33947
33948
33950
33952
33949
33950
33966
33951
33965
33952
33962
33964
33953
33954
33962
33955
33959
33961
33956
33957
33959
33958
33986
33959
33983
33985
33960
33961
33981
33983
33962
33980
33963
33964
33978
33980
33965
33969
33966
33968
33967
33968
33972
33969
33971
33970
33978
33971
33975
33977
33972
33974
33973
33974
34042
33975
34041
33976
34040
33977
34021
34039
33978
34020
33979
33980
34018
34020
33981
33982
34018
33983
34015
34017
33984
33985
33993
34015
33986
33992
33987
33988
33992
33989
33991
33990
33998
33991
33995
33997
33992
33994
33993
33994
34014
33995
34013
33996
34012
33997
34005
34011
33998
34004
33999
34000
34004
34001
34003
34002
34734
34003
34007
34733
34004
34006
34005
34006
34010
34007
34009
34008
34732
34009
34673
34731
34010
34672
34011
34671
34012
34670
34013
34029
34014
34028
34015
34027
34016
34017
34025
34027
34018
34024
34019
34020
34022
34024
34021
34022
34038
34023
34037
34024
34034
34036
34025
34026
34034
34027
34031
34033
34028
34029
34031
34030
34670
34031
34667
34669
34032
34033
34665
34667
34034
34664
34035
34036
34662
34664
34037
34621
34038
34620
34039
34619
34040
34618
34041
34609
34042
34608
34043
34607
34044
34606
34045
34113
34046
34112
34047
34111
34048
34110
34049
34101
34050
34100
34051
34099
34052
34098
34053
34069
34054
34068
34055
34067
34056
34057
34065
34067
34058
34059
34063
34065
34060
34062
34061
34062
34078
34063
34077
34064
34076
34065
34073
34075
34066
34067
34071
34073
34068
34069
34071
34070
34098
34071
34095
34097
34072
34073
34093
34095
34074
34075
34091
34093
34076
34090
34077
34081
34078
34080
34079
34080
34084
34081
34083
34082
34090
34083
34087
34089
34084
34086
34085
34086
34154
34087
34153
34088
34152
34089
34133
34151
34090
34132
34091
34092
34132
34093
34129
34131
34094
34095
34127
34129
34096
34097
34105
34127
34098
34104
34099
34100
34104
34101
34103
34102
34110
34103
34107
34109
34104
34106
34105
34106
34126
34107
34125
34108
34124
34109
34117
34123
34110
34116
34111
34112
34116
34113
34115
34114
34606
34115
34119
34605
34116
34118
34117
34118
34122
34119
34121
34120
34604
34121
34545
34603
34122
34544
34123
34543
34124
34542
34125
34141
34126
34140
34127
34139
34128
34129
34137
34139
34130
34131
34135
34137
34132
34134
34133
34134
34150
34135
34149
34136
34148
34137
34145
34147
34138
34139
34143
34145
34140
34141
34143
34142
34542
34143
34539
34541
34144
34145
34537
34539
34146
34147
34535
34537
34148
34534
34149
34477
34150
34476
34151
34475
34152
34474
34153
34265
34154
34264
34155
34156
34262
34264
34157
34158
34260
34262
34159
34160
34258
34260
34161
34162
34256
34258
34163
34255
34164
34254
34165
34197
34166
34196
34167
34195
34168
34169
34193
34195
34170
34171
34191
34193
34172
34173
34189
34191
34174
34175
34187
34189
34176
34186
34177
34178
34184
34186
34179
34180
34182
34184
34181
34182
34214
34183
34213
34184
34210
34212
34185
34186
34208
34210
34187
34188
34208
34189
34205
34207
34190
34191
34203
34205
34192
34193
34201
34203
34194
34195
34199
34201
34196
34197
34199
34198
34254
34199
34251
34253
34200
34201
34249
34251
34202
34203
34247
34249
34204
34205
34245
34247
34206
34207
34231
34245
34208
34230
34209
34210
34228
34230
34211
34212
34226
34228
34213
34217
34214
34216
34215
34216
34220
34217
34219
34218
34226
34219
34223
34225
34220
34222
34221
34222
34322
34223
34321
34224
34320
34225
34237
34319
34226
34236
34227
34228
34234
34236
34229
34230
34232
34234
34231
34232
34244
34233
34243
34234
34240
34242
34235
34236
34238
34240
34237
34238
34318
34239
34317
34240
34314
34316
34241
34242
34312
34314
34243
34291
34244
34290
34245
34289
34246
34247
34287
34289
34248
34249
34285
34287
34250
34251
34283
34285
34252
34253
34277
34283
34254
34276
34255
34256
34276
34257
34275
34258
34272
34274
34259
34260
34270
34272
34261
34262
34268
34270
34263
34264
34266
34268
34265
34266
34474
34267
34473
34268
34470
34472
34269
34270
34468
34470
34271
34272
34466
34468
34273
34274
34464
34466
34275
34279
34276
34278
34277
34278
34282
34279
34281
34280
34464
34281
34301
34463
34282
34300
34283
34299
34284
34285
34297
34299
34286
34287
34295
34297
34288
34289
34293
34295
34290
34291
34293
34292
34312
34293
34309
34311
34294
34295
34307
34309
34296
34297
34305
34307
34298
34299
34303
34305
34300
34301
34303
34302
34462
34303
34459
34461
34304
34305
34457
34459
34306
34307
34455
34457
34308
34309
34453
34455
34310
34311
34451
34453
34312
34450
34313
34314
34448
34450
34315
34316
34446
34448
34317
34337
34318
34336
34319
34335
34320
34334
34321
34325
34322
34324
34323
34324
34328
34325
34327
34326
34334
34327
34331
34333
34328
34330
34329
34330
34350
34331
34349
34332
34348
34333
34341
34347
34334
34340
34335
34336
34340
34337
34339
34338
34446
34339
34343
34445
34340
34342
34341
34342
34346
34343
34345
34344
34444
34345
34433
34443
34346
34432
34347
34431
34348
34430
34349
34353
34350
34352
34351
34352
34356
34353
34355
34354
34430
34355
34427
34429
34356
34426
34357
34425
34358
34359
34423
34425
34360
34361
34381
34423
34362
34380
34363
34364
34378
34380
34365
34366
34376
34378
34367
34368
34374
34376
34369
34370
34372
34374
34371
34372
34392
34373
34391
34374
34388
34390
34375
34376
34386
34388
34377
34378
34384
34386
34379
34380
34382
34384
34381
34382
34422
34383
34421
34384
34418
34420
34385
34386
34416
34418
34387
34388
34414
34416
34389
34390
34412
34414
34391
34411
34392
34410
34393
34409
34394
34395
34407
34409
34396
34397
34407
34398
34404
34406
34399
34400
34402
34404
34401
34402
35606
34403
35605
34404
35602
35604
34405
34406
35600
35602
34407
35599
34408
34409
35597
35599
34410
34411
35597
34412
35596
34413
35595
34414
35592
35594
34415
34416
35590
35592
34417
34418
35588
35590
34419
34420
35586
35588
34421
35569
34422
35568
34423
35567
34424
34425
35565
35567
34426
34427
35565
34428
35564
34429
34437
35563
34430
34436
34431
34432
34436
34433
34435
34434
34442
34435
34439
34441
34436
34438
34437
34438
35562
34439
35561
34440
35560
34441
35425
35559
34442
35424
34443
35419
34444
35418
34445
35385
34446
35384
34447
34448
35382
35384
34449
34450
35380
35382
34451
34452
35380
34453
35377
35379
34454
34455
35375
35377
34456
34457
35373
35375
34458
34459
35371
35373
34460
34461
34517
35371
34462
34516
34463
34495
34464
34494
34465
34466
34492
34494
34467
34468
34490
34492
34469
34470
34488
34490
34471
34472
34486
34488
34473
34481
34474
34480
34475
34476
34480
34477
34479
34478
34534
34479
34483
34533
34480
34482
34481
34482
34486
34483
34485
34484
34532
34485
34505
34531
34486
34504
34487
34488
34502
34504
34489
34490
34500
34502
34491
34492
34498
34500
34493
34494
34496
34498
34495
34496
34516
34497
34515
34498
34512
34514
34499
34500
34510
34512
34501
34502
34508
34510
34503
34504
34506
34508
34505
34506
34530
34507
34529
34508
34526
34528
34509
34510
34524
34526
34511
34512
34522
34524
34513
34514
34520
34522
34515
34519
34516
34518
34517
34518
35370
34519
35369
34520
35368
34521
35367
34522
35364
35366
34523
34524
35362
35364
34525
34526
35360
35362
34527
34528
35358
35360
34529
34585
34530
34584
34531
34579
34532
34578
34533
34561
34534
34560
34535
34536
34560
34537
34557
34559
34538
34539
34555
34557
34540
34541
34549
34555
34542
34548
34543
34544
34548
34545
34547
34546
34602
34547
34551
34601
34548
34550
34549
34550
34554
34551
34553
34552
34600
34553
34569
34599
34554
34568
34555
34567
34556
34557
34565
34567
34558
34559
34563
34565
34560
34562
34561
34562
34578
34563
34577
34564
34576
34565
34573
34575
34566
34567
34571
34573
34568
34569
34571
34570
34598
34571
34595
34597
34572
34573
34593
34595
34574
34575
34591
34593
34576
34590
34577
34581
34578
34580
34579
34580
34584
34581
34583
34582
34590
34583
34587
34589
34584
34586
34585
34586
35358
34587
35357
34588
35356
34589
35337
35355
34590
35336
34591
34592
35336
34593
35333
35335
34594
34595
35331
35333
34596
34597
35309
35331
34598
35308
34599
35303
34600
35302
34601
34641
34602
34640
34603
34635
34604
34634
34605
34613
34606
34612
34607
34608
34612
34609
34611
34610
34618
34611
34615
34617
34612
34614
34613
34614
34634
34615
34633
34616
34632
34617
34625
34631
34618
34624
34619
34620
34624
34621
34623
34622
34662
34623
34627
34661
34624
34626
34625
34626
34630
34627
34629
34628
34660
34629
34649
34659
34630
34648
34631
34647
34632
34646
34633
34637
34634
34636
34635
34636
34640
34637
34639
34638
34646
34639
34643
34645
34640
34642
34641
34642
35302
34643
35301
34644
35300
34645
34653
35299
34646
34652
34647
34648
34652
34649
34651
34650
34658
34651
34655
34657
34652
34654
34653
34654
35298
34655
35297
34656
35296
34657
34713
35295
34658
34712
34659
34707
34660
34706
34661
34689
34662
34688
34663
34664
34686
34688
34665
34666
34686
34667
34683
34685
34668
34669
34677
34683
34670
34676
34671
34672
34676
34673
34675
34674
34730
34675
34679
34729
34676
34678
34677
34678
34682
34679
34681
34680
34728
34681
34697
34727
34682
34696
34683
34695
34684
34685
34693
34695
34686
34692
34687
34688
34690
34692
34689
34690
34706
34691
34705
34692
34702
34704
34693
34694
34702
34695
34699
34701
34696
34697
34699
34698
34726
34699
34723
34725
34700
34701
34721
34723
34702
34720
34703
34704
34718
34720
34705
34709
34706
34708
34707
34708
34712
34709
34711
34710
34718
34711
34715
34717
34712
34714
34713
34714
35294
34715
35293
34716
35292
34717
35273
35291
34718
35272
34719
34720
35270
35272
34721
34722
35270
34723
35267
35269
34724
34725
35245
35267
34726
35244
34727
35239
34728
35238
34729
34897
34730
34896
34731
34891
34732
34890
34733
34869
34734
34868
34735
34863
34736
34862
34737
34777
34738
34776
34739
34771
34740
34770
34741
34749
34742
34748
34743
34744
34748
34745
34747
34746
34754
34747
34751
34753
34748
34750
34749
34750
34770
34751
34769
34752
34768
34753
34761
34767
34754
34760
34755
34756
34760
34757
34759
34758
34798
34759
34763
34797
34760
34762
34761
34762
34766
34763
34765
34764
34796
34765
34785
34795
34766
34784
34767
34783
34768
34782
34769
34773
34770
34772
34771
34772
34776
34773
34775
34774
34782
34775
34779
34781
34776
34778
34777
34778
34862
34779
34861
34780
34860
34781
34789
34859
34782
34788
34783
34784
34788
34785
34787
34786
34794
34787
34791
34793
34788
34790
34789
34790
34858
34791
34857
34792
34856
34793
34833
34855
34794
34832
34795
34827
34796
34826
34797
34805
34798
34804
34799
34800
34804
34801
34803
34802
34810
34803
34807
34809
34804
34806
34805
34806
34826
34807
34825
34808
34824
34809
34817
34823
34810
34816
34811
34812
34816
34813
34815
34814
34982
34815
34819
34981
34816
34818
34817
34818
34822
34819
34821
34820
34980
34821
34841
34979
34822
34840
34823
34839
34824
34838
34825
34829
34826
34828
34827
34828
34832
34829
34831
34830
34838
34831
34835
34837
34832
34834
34833
34834
34854
34835
34853
34836
34852
34837
34845
34851
34838
34844
34839
34840
34844
34841
34843
34842
34978
34843
34847
34977
34844
34846
34845
34846
34850
34847
34849
34848
34976
34849
34933
34975
34850
34932
34851
34931
34852
34930
34853
34921
34854
34920
34855
34919
34856
34918
34857
34877
34858
34876
34859
34875
34860
34874
34861
34865
34862
34864
34863
34864
34868
34865
34867
34866
34874
34867
34871
34873
34868
34870
34869
34870
34890
34871
34889
34872
34888
34873
34881
34887
34874
34880
34875
34876
34880
34877
34879
34878
34918
34879
34883
34917
34880
34882
34881
34882
34886
34883
34885
34884
34916
34885
34905
34915
34886
34904
34887
34903
34888
34902
34889
34893
34890
34892
34891
34892
34896
34893
34895
34894
34902
34895
34899
34901
34896
34898
34897
34898
35238
34899
35237
34900
35236
34901
34909
35235
34902
34908
34903
34904
34908
34905
34907
34906
34914
34907
34911
34913
34908
34910
34909
34910
35234
34911
35233
34912
35232
34913
34953
35231
34914
34952
34915
34947
34916
34946
34917
34925
34918
34924
34919
34920
34924
34921
34923
34922
34930
34923
34927
34929
34924
34926
34925
34926
34946
34927
34945
34928
34944
34929
34937
34943
34930
34936
34931
34932
34936
34933
34935
34934
34974
34935
34939
34973
34936
34938
34937
34938
34942
34939
34941
34940
34972
34941
34961
34971
34942
34960
34943
34959
34944
34958
34945
34949
34946
34948
34947
34948
34952
34949
34951
34950
34958
34951
34955
34957
34952
34954
34953
34954
35230
34955
35229
34956
35228
34957
34965
35227
34958
34964
34959
34960
34964
34961
34963
34962
34970
34963
34967
34969
34964
34966
34965
34966
35226
34967
35225
34968
35224
34969
35137
35223
34970
35136
34971
35131
34972
35130
34973
35109
34974
35108
34975
35103
34976
35102
34977
35017
34978
35016
34979
35011
34980
35010
34981
34989
34982
34988
34983
34984
34988
34985
34987
34986
34994
34987
34991
34993
34988
34990
34989
34990
35010
34991
35009
34992
35008
34993
35001
35007
34994
35000
34995
34996
35000
34997
34999
34998
35038
34999
35003
35037
35000
35002
35001
35002
35006
35003
35005
35004
35036
35005
35025
35035
35006
35024
35007
35023
35008
35022
35009
35013
35010
35012
35011
35012
35016
35013
35015
35014
35022
35015
35019
35021
35016
35018
35017
35018
35102
35019
35101
35020
35100
35021
35029
35099
35022
35028
35023
35024
35028
35025
35027
35026
35034
35027
35031
35033
35028
35030
35029
35030
35098
35031
35097
35032
35096
35033
35073
35095
35034
35072
35035
35067
35036
35066
35037
35045
35038
35044
35039
35040
35044
35041
35043
35042
35050
35043
35047
35049
35044
35046
35045
35046
35066
35047
35065
35048
35064
35049
35057
35063
35050
35056
35051
35052
35056
35053
35055
35054
38108
35055
35059
38107
35056
35058
35057
35058
35062
35059
35061
35060
38106
35061
35081
38105
35062
35080
35063
35079
35064
35078
35065
35069
35066
35068
35067
35068
35072
35069
35071
35070
35078
35071
35075
35077
35072
35074
35073
35074
35094
35075
35093
35076
35092
35077
35085
35091
35078
35084
35079
35080
35084
35081
35083
35082
38104
35083
35087
38103
35084
35086
35085
35086
35090
35087
35089
35088
38102
35089
35173
38101
35090
35172
35091
35171
35092
35170
35093
35161
35094
35160
35095
35159
35096
35158
35097
35117
35098
35116
35099
35115
35100
35114
35101
35105
35102
35104
35103
35104
35108
35105
35107
35106
35114
35107
35111
35113
35108
35110
35109
35110
35130
35111
35129
35112
35128
35113
35121
35127
35114
35120
35115
35116
35120
35117
35119
35118
35158
35119
35123
35157
35120
35122
35121
35122
35126
35123
35125
35124
35156
35125
35145
35155
35126
35144
35127
35143
35128
35142
35129
35133
35130
35132
35131
35132
35136
35133
35135
35134
35142
35135
35139
35141
35136
35138
35137
35138
35222
35139
35221
35140
35220
35141
35149
35219
35142
35148
35143
35144
35148
35145
35147
35146
35154
35147
35151
35153
35148
35150
35149
35150
35218
35151
35217
35152
35216
35153
35193
35215
35154
35192
35155
35187
35156
35186
35157
35165
35158
35164
35159
35160
35164
35161
35163
35162
35170
35163
35167
35169
35164
35166
35165
35166
35186
35167
35185
35168
35184
35169
35177
35183
35170
35176
35171
35172
35176
35173
35175
35174
38100
35175
35179
38099
35176
35178
35177
35178
35182
35179
35181
35180
38098
35181
35201
38097
35182
35200
35183
35199
35184
35198
35185
35189
35186
35188
35187
35188
35192
35189
35191
35190
35198
35191
35195
35197
35192
35194
35193
35194
35214
35195
35213
35196
35212
35197
35205
35211
35198
35204
35199
35200
35204
35201
35203
35202
38096
35203
35207
38095
35204
35206
35205
35206
35210
35207
35209
35208
38094
35209
36842
38093
35210
36841
35211
36840
35212
36839
35213
36830
35214
36829
35215
36828
35216
36827
35217
36786
35218
36785
35219
36784
35220
36783
35221
36774
35222
36773
35223
36772
35224
36771
35225
36049
35226
36048
35227
36047
35228
36046
35229
36037
35230
36036
35231
36035
35232
36034
35233
35253
35234
35252
35235
35251
35236
35250
35237
35241
35238
35240
35239
35240
35244
35241
35243
35242
35250
35243
35247
35249
35244
35246
35245
35246
35266
35247
35265
35248
35264
35249
35257
35263
35250
35256
35251
35252
35256
35253
35255
35254
36034
35255
35259
36033
35256
35258
35257
35258
35262
35259
35261
35260
36032
35261
36021
36031
35262
36020
35263
36019
35264
36018
35265
35281
35266
35280
35267
35279
35268
35269
35277
35279
35270
35276
35271
35272
35274
35276
35273
35274
35290
35275
35289
35276
35286
35288
35277
35278
35286
35279
35283
35285
35280
35281
35283
35282
36018
35283
36015
36017
35284
35285
36013
36015
35286
36012
35287
35288
36010
36012
35289
35969
35290
35968
35291
35967
35292
35966
35293
35957
35294
35956
35295
35955
35296
35954
35297
35317
35298
35316
35299
35315
35300
35314
35301
35305
35302
35304
35303
35304
35308
35305
35307
35306
35314
35307
35311
35313
35308
35310
35309
35310
35330
35311
35329
35312
35328
35313
35321
35327
35314
35320
35315
35316
35320
35317
35319
35318
35954
35319
35323
35953
35320
35322
35321
35322
35326
35323
35325
35324
35952
35325
35941
35951
35326
35940
35327
35939
35328
35938
35329
35345
35330
35344
35331
35343
35332
35333
35341
35343
35334
35335
35339
35341
35336
35338
35337
35338
35354
35339
35353
35340
35352
35341
35349
35351
35342
35343
35347
35349
35344
35345
35347
35346
35938
35347
35935
35937
35348
35349
35933
35935
35350
35351
35931
35933
35352
35930
35353
35497
35354
35496
35355
35495
35356
35494
35357
35469
35358
35468
35359
35360
35466
35468
35361
35362
35464
35466
35363
35364
35462
35464
35365
35366
35460
35462
35367
35459
35368
35458
35369
35401
35370
35400
35371
35399
35372
35373
35397
35399
35374
35375
35395
35397
35376
35377
35393
35395
35378
35379
35391
35393
35380
35390
35381
35382
35388
35390
35383
35384
35386
35388
35385
35386
35418
35387
35417
35388
35414
35416
35389
35390
35412
35414
35391
35392
35412
35393
35409
35411
35394
35395
35407
35409
35396
35397
35405
35407
35398
35399
35403
35405
35400
35401
35403
35402
35458
35403
35455
35457
35404
35405
35453
35455
35406
35407
35451
35453
35408
35409
35449
35451
35410
35411
35435
35449
35412
35434
35413
35414
35432
35434
35415
35416
35430
35432
35417
35421
35418
35420
35419
35420
35424
35421
35423
35422
35430
35423
35427
35429
35424
35426
35425
35426
35558
35427
35557
35428
35556
35429
35441
35555
35430
35440
35431
35432
35438
35440
35433
35434
35436
35438
35435
35436
35448
35437
35447
35438
35444
35446
35439
35440
35442
35444
35441
35442
35554
35443
35553
35444
35550
35552
35445
35446
35548
35550
35447
35527
35448
35526
35449
35525
35450
35451
35523
35525
35452
35453
35521
35523
35454
35455
35519
35521
35456
35457
35481
35519
35458
35480
35459
35460
35480
35461
35479
35462
35476
35478
35463
35464
35474
35476
35465
35466
35472
35474
35467
35468
35470
35472
35469
35470
35494
35471
35493
35472
35490
35492
35473
35474
35488
35490
35475
35476
35486
35488
35477
35478
35484
35486
35479
35483
35480
35482
35481
35482
35518
35483
35517
35484
35516
35485
35515
35486
35512
35514
35487
35488
35510
35512
35489
35490
35508
35510
35491
35492
35506
35508
35493
35501
35494
35500
35495
35496
35500
35497
35499
35498
35930
35499
35503
35929
35500
35502
35501
35502
35506
35503
35505
35504
35928
35505
35901
35927
35506
35900
35507
35508
35898
35900
35509
35510
35896
35898
35511
35512
35894
35896
35513
35514
35892
35894
35515
35891
35516
35890
35517
35537
35518
35536
35519
35535
35520
35521
35533
35535
35522
35523
35531
35533
35524
35525
35529
35531
35526
35527
35529
35528
35548
35529
35545
35547
35530
35531
35543
35545
35532
35533
35541
35543
35534
35535
35539
35541
35536
35537
35539
35538
35890
35539
35887
35889
35540
35541
35885
35887
35542
35543
35883
35885
35544
35545
35881
35883
35546
35547
35879
35881
35548
35878
35549
35550
35876
35878
35551
35552
35874
35876
35553
35728
35554
35727
35555
35726
35556
35725
35557
35716
35558
35715
35559
35714
35560
35713
35561
35577
35562
35576
35563
35575
35564
35574
35565
35573
35566
35567
35571
35573
35568
35569
35571
35570
35586
35571
35583
35585
35572
35573
35581
35583
35574
35575
35581
35576
35580
35577
35579
35578
35713
35579
35698
35712
35580
35697
35581
35696
35582
35583
35694
35696
35584
35585
35645
35694
35586
35644
35587
35588
35642
35644
35589
35590
35640
35642
35591
35592
35638
35640
35593
35594
35636
35638
35595
35635
35596
35634
35597
35633
35598
35599
35631
35633
35600
35601
35631
35602
35628
35630
35603
35604
35626
35628
35605
35621
35606
35620
35607
35619
35608
35618
35609
35613
35610
35612
35611
35612
35616
35613
35615
35614
35618
35615
35617
35616
35618
35624
35619
35620
35624
35621
35623
35622
35626
35623
35625
35624
35626
35664
35627
35628
35662
35664
35629
35630
35660
35662
35631
35659
35632
35633
35657
35659
35634
35635
35657
35636
35656
35637
35655
35638
35652
35654
35639
35640
35650
35652
35641
35642
35648
35650
35643
35644
35646
35648
35645
35646
35693
35647
35692
35648
35689
35691
35649
35650
35687
35689
35651
35652
35685
35687
35653
35654
35683
35685
35655
35672
35656
35671
35657
35670
35658
35659
35668
35670
35660
35661
35668
35662
35665
35667
35663
35664
35665
35666
35667
35677
35668
35676
35669
35670
35674
35676
35671
35672
35674
35673
35683
35674
35680
35682
35675
35676
35678
35680
35677
35678
35679
35680
35784
35681
35682
35762
35784
35683
35761
35684
35685
35759
35761
35686
35687
35757
35759
35688
35689
35755
35757
35690
35691
35753
35755
35692
35704
35693
35703
35694
35702
35695
35696
35700
35702
35697
35698
35700
35699
35711
35700
35708
35710
35701
35702
35706
35708
35703
35704
35706
35705
35753
35706
35750
35752
35707
35708
35748
35750
35709
35710
35742
35748
35711
35741
35712
35720
35713
35719
35714
35715
35719
35716
35718
35717
35725
35718
35722
35724
35719
35721
35720
35721
35741
35722
35740
35723
35739
35724
35732
35738
35725
35731
35726
35727
35731
35728
35730
35729
35874
35730
35734
35873
35731
35733
35732
35733
35737
35734
35736
35735
35872
35736
35804
35871
35737
35803
35738
35802
35739
35801
35740
35744
35741
35743
35742
35743
35747
35744
35746
35745
35801
35746
35798
35800
35747
35797
35748
35796
35749
35750
35794
35796
35751
35752
35772
35794
35753
35771
35754
35755
35769
35771
35756
35757
35767
35769
35758
35759
35765
35767
35760
35761
35763
35765
35762
35763
35783
35764
35782
35765
35779
35781
35766
35767
35777
35779
35768
35769
35775
35777
35770
35771
35773
35775
35772
35773
35793
35774
35792
35775
35789
35791
35776
35777
35787
35789
35778
35779
35785
35787
35780
35781
35785
35782
35783
35784
35786
35787
35841
35788
35789
35839
35841
35790
35791
35837
35839
35792
35820
35793
35819
35794
35818
35795
35796
35816
35818
35797
35798
35816
35799
35815
35800
35808
35814
35801
35807
35802
35803
35807
35804
35806
35805
35870
35806
35810
35869
35807
35809
35808
35809
35813
35810
35812
35811
35868
35812
35828
35867
35813
35827
35814
35826
35815
35825
35816
35824
35817
35818
35822
35824
35819
35820
35822
35821
35837
35822
35834
35836
35823
35824
35832
35834
35825
35826
35832
35827
35831
35828
35830
35829
35866
35830
35853
35865
35831
35852
35832
35851
35833
35834
35849
35851
35835
35836
35845
35849
35837
35844
35838
35839
35842
35844
35840
35841
35842
35843
35844
35846
35845
35846
35848
35847
35848
35858
35849
35857
35850
35851
35855
35857
35852
35853
35855
35854
35864
35855
35861
35863
35856
35857
35859
35861
35858
35859
35860
35861
36541
35862
35863
36535
36541
35864
36534
35865
36513
35866
36512
35867
36507
35868
36506
35869
36373
35870
36372
35871
36367
35872
36366
35873
36333
35874
36332
35875
35876
36330
36332
35877
35878
36328
36330
35879
35880
36328
35881
36325
36327
35882
35883
36323
36325
35884
35885
36321
36323
35886
35887
36319
36321
35888
35889
35913
36319
35890
35912
35891
35892
35912
35893
35911
35894
35908
35910
35895
35896
35906
35908
35897
35898
35904
35906
35899
35900
35902
35904
35901
35902
35926
35903
35925
35904
35922
35924
35905
35906
35920
35922
35907
35908
35918
35920
35909
35910
35916
35918
35911
35915
35912
35914
35913
35914
36318
35915
36317
35916
36316
35917
36315
35918
36312
36314
35919
35920
36310
36312
35921
35922
36308
36310
35923
35924
36306
36308
35925
36237
35926
36236
35927
36231
35928
36230
35929
36213
35930
36212
35931
35932
36212
35933
36209
36211
35934
35935
36207
36209
35936
35937
35945
36207
35938
35944
35939
35940
35944
35941
35943
35942
35950
35943
35947
35949
35944
35946
35945
35946
36206
35947
36205
35948
36204
35949
35989
36203
35950
35988
35951
35983
35952
35982
35953
35961
35954
35960
35955
35956
35960
35957
35959
35958
35966
35959
35963
35965
35960
35962
35961
35962
35982
35963
35981
35964
35980
35965
35973
35979
35966
35972
35967
35968
35972
35969
35971
35970
36010
35971
35975
36009
35972
35974
35973
35974
35978
35975
35977
35976
36008
35977
35997
36007
35978
35996
35979
35995
35980
35994
35981
35985
35982
35984
35983
35984
35988
35985
35987
35986
35994
35987
35991
35993
35988
35990
35989
35990
36202
35991
36201
35992
36200
35993
36001
36199
35994
36000
35995
35996
36000
35997
35999
35998
36006
35999
36003
36005
36000
36002
36001
36002
36198
36003
36197
36004
36196
36005
36125
36195
36006
36124
36007
36119
36008
36118
36009
36101
36010
36100
36011
36012
36098
36100
36013
36014
36098
36015
36095
36097
36016
36017
36025
36095
36018
36024
36019
36020
36024
36021
36023
36022
36030
36023
36027
36029
36024
36026
36025
36026
36094
36027
36093
36028
36092
36029
36069
36091
36030
36068
36031
36063
36032
36062
36033
36041
36034
36040
36035
36036
36040
36037
36039
36038
36046
36039
36043
36045
36040
36042
36041
36042
36062
36043
36061
36044
36060
36045
36053
36059
36046
36052
36047
36048
36052
36049
36051
36050
36771
36051
36055
36770
36052
36054
36053
36054
36058
36055
36057
36056
36769
36057
36077
36768
36058
36076
36059
36075
36060
36074
36061
36065
36062
36064
36063
36064
36068
36065
36067
36066
36074
36067
36071
36073
36068
36070
36069
36070
36090
36071
36089
36072
36088
36073
36081
36087
36074
36080
36075
36076
36080
36077
36079
36078
36767
36079
36083
36766
36080
36082
36081
36082
36086
36083
36085
36084
36765
36085
36153
36764
36086
36152
36087
36151
36088
36150
36089
36141
36090
36140
36091
36139
36092
36138
36093
36109
36094
36108
36095
36107
36096
36097
36105
36107
36098
36104
36099
36100
36102
36104
36101
36102
36118
36103
36117
36104
36114
36116
36105
36106
36114
36107
36111
36113
36108
36109
36111
36110
36138
36111
36135
36137
36112
36113
36133
36135
36114
36132
36115
36116
36130
36132
36117
36121
36118
36120
36119
36120
36124
36121
36123
36122
36130
36123
36127
36129
36124
36126
36125
36126
36194
36127
36193
36128
36192
36129
36173
36191
36130
36172
36131
36132
36170
36172
36133
36134
36170
36135
36167
36169
36136
36137
36145
36167
36138
36144
36139
36140
36144
36141
36143
36142
36150
36143
36147
36149
36144
36146
36145
36146
36166
36147
36165
36148
36164
36149
36157
36163
36150
36156
36151
36152
36156
36153
36155
36154
36763
36155
36159
36762
36156
36158
36157
36158
36162
36159
36161
36160
36761
36161
36750
36760
36162
36749
36163
36748
36164
36747
36165
36181
36166
36180
36167
36179
36168
36169
36177
36179
36170
36176
36171
36172
36174
36176
36173
36174
36190
36175
36189
36176
36186
36188
36177
36178
36186
36179
36183
36185
36180
36181
36183
36182
36747
36183
36744
36746
36184
36185
36742
36744
36186
36741
36187
36188
36739
36741
36189
36698
36190
36697
36191
36696
36192
36695
36193
36686
36194
36685
36195
36684
36196
36683
36197
36265
36198
36264
36199
36263
36200
36262
36201
36253
36202
36252
36203
36251
36204
36250
36205
36221
36206
36220
36207
36219
36208
36209
36217
36219
36210
36211
36215
36217
36212
36214
36213
36214
36230
36215
36229
36216
36228
36217
36225
36227
36218
36219
36223
36225
36220
36221
36223
36222
36250
36223
36247
36249
36224
36225
36245
36247
36226
36227
36243
36245
36228
36242
36229
36233
36230
36232
36231
36232
36236
36233
36235
36234
36242
36235
36239
36241
36236
36238
36237
36238
36306
36239
36305
36240
36304
36241
36285
36303
36242
36284
36243
36244
36284
36245
36281
36283
36246
36247
36279
36281
36248
36249
36257
36279
36250
36256
36251
36252
36256
36253
36255
36254
36262
36255
36259
36261
36256
36258
36257
36258
36278
36259
36277
36260
36276
36261
36269
36275
36262
36268
36263
36264
36268
36265
36267
36266
36683
36267
36271
36682
36268
36270
36269
36270
36274
36271
36273
36272
36681
36273
36622
36680
36274
36621
36275
36620
36276
36619
36277
36293
36278
36292
36279
36291
36280
36281
36289
36291
36282
36283
36287
36289
36284
36286
36285
36286
36302
36287
36301
36288
36300
36289
36297
36299
36290
36291
36295
36297
36292
36293
36295
36294
36619
36295
36616
36618
36296
36297
36614
36616
36298
36299
36612
36614
36300
36611
36301
36445
36302
36444
36303
36443
36304
36442
36305
36417
36306
36416
36307
36308
36414
36416
36309
36310
36412
36414
36311
36312
36410
36412
36313
36314
36408
36410
36315
36407
36316
36406
36317
36349
36318
36348
36319
36347
36320
36321
36345
36347
36322
36323
36343
36345
36324
36325
36341
36343
36326
36327
36339
36341
36328
36338
36329
36330
36336
36338
36331
36332
36334
36336
36333
36334
36366
36335
36365
36336
36362
36364
36337
36338
36360
36362
36339
36340
36360
36341
36357
36359
36342
36343
36355
36357
36344
36345
36353
36355
36346
36347
36351
36353
36348
36349
36351
36350
36406
36351
36403
36405
36352
36353
36401
36403
36354
36355
36399
36401
36356
36357
36397
36399
36358
36359
36383
36397
36360
36382
36361
36362
36380
36382
36363
36364
36378
36380
36365
36369
36366
36368
36367
36368
36372
36369
36371
36370
36378
36371
36375
36377
36372
36374
36373
36374
36506
36375
36505
36376
36504
36377
36389
36503
36378
36388
36379
36380
36386
36388
36381
36382
36384
36386
36383
36384
36396
36385
36395
36386
36392
36394
36387
36388
36390
36392
36389
36390
36502
36391
36501
36392
36498
36500
36393
36394
36496
36498
36395
36475
36396
36474
36397
36473
36398
36399
36471
36473
36400
36401
36469
36471
36402
36403
36467
36469
36404
36405
36429
36467
36406
36428
36407
36408
36428
36409
36427
36410
36424
36426
36411
36412
36422
36424
36413
36414
36420
36422
36415
36416
36418
36420
36417
36418
36442
36419
36441
36420
36438
36440
36421
36422
36436
36438
36423
36424
36434
36436
36425
36426
36432
36434
36427
36431
36428
36430
36429
36430
36466
36431
36465
36432
36464
36433
36463
36434
36460
36462
36435
36436
36458
36460
36437
36438
36456
36458
36439
36440
36454
36456
36441
36449
36442
36448
36443
36444
36448
36445
36447
36446
36611
36447
36451
36610
36448
36450
36449
36450
36454
36451
36453
36452
36609
36453
36582
36608
36454
36581
36455
36456
36579
36581
36457
36458
36577
36579
36459
36460
36575
36577
36461
36462
36573
36575
36463
36572
36464
36571
36465
36485
36466
36484
36467
36483
36468
36469
36481
36483
36470
36471
36479
36481
36472
36473
36477
36479
36474
36475
36477
36476
36496
36477
36493
36495
36478
36479
36491
36493
36480
36481
36489
36491
36482
36483
36487
36489
36484
36485
36487
36486
36571
36487
36568
36570
36488
36489
36566
36568
36490
36491
36564
36566
36492
36493
36562
36564
36494
36495
36560
36562
36496
36559
36497
36498
36557
36559
36499
36500
36555
36557
36501
36521
36502
36520
36503
36519
36504
36518
36505
36509
36506
36508
36507
36508
36512
36509
36511
36510
36518
36511
36515
36517
36512
36514
36513
36514
36534
36515
36533
36516
36532
36517
36525
36531
36518
36524
36519
36520
36524
36521
36523
36522
36555
36523
36527
36554
36524
36526
36525
36526
36530
36527
36529
36528
36553
36529
36546
36552
36530
36545
36531
36544
36532
36543
36533
36537
36534
36536
36535
36536
36540
36537
36539
36538
36543
36539
36542
36540
36541
36543
36549
36544
36545
36549
36546
36548
36547
36551
36548
36550
36549
36551
37233
36552
37228
36553
37227
36554
37194
36555
37193
36556
36557
37191
37193
36558
36559
37189
37191
36560
36561
37189
36562
37186
37188
36563
36564
37184
37186
36565
36566
37182
37184
36567
36568
37180
37182
36569
36570
36594
37180
36571
36593
36572
36573
36593
36574
36592
36575
36589
36591
36576
36577
36587
36589
36578
36579
36585
36587
36580
36581
36583
36585
36582
36583
36607
36584
36606
36585
36603
36605
36586
36587
36601
36603
36588
36589
36599
36601
36590
36591
36597
36599
36592
36596
36593
36595
36594
36595
37179
36596
37178
36597
37177
36598
37176
36599
37173
37175
36600
36601
37171
37173
36602
36603
37169
37171
36604
36605
37167
37169
36606
36662
36607
36661
36608
36656
36609
36655
36610
36638
36611
36637
36612
36613
36637
36614
36634
36636
36615
36616
36632
36634
36617
36618
36626
36632
36619
36625
36620
36621
36625
36622
36624
36623
36679
36624
36628
36678
36625
36627
36626
36627
36631
36628
36630
36629
36677
36630
36646
36676
36631
36645
36632
36644
36633
36634
36642
36644
36635
36636
36640
36642
36637
36639
36638
36639
36655
36640
36654
36641
36653
36642
36650
36652
36643
36644
36648
36650
36645
36646
36648
36647
36675
36648
36672
36674
36649
36650
36670
36672
36651
36652
36668
36670
36653
36667
36654
36658
36655
36657
36656
36657
36661
36658
36660
36659
36667
36660
36664
36666
36661
36663
36662
36663
37167
36664
37166
36665
37165
36666
37158
37164
36667
37157
36668
36669
37157
36670
37154
37156
36671
36672
37152
37154
36673
36674
37130
37152
36675
37129
36676
37124
36677
37123
36678
36718
36679
36717
36680
36712
36681
36711
36682
36690
36683
36689
36684
36685
36689
36686
36688
36687
36695
36688
36692
36694
36689
36691
36690
36691
36711
36692
36710
36693
36709
36694
36702
36708
36695
36701
36696
36697
36701
36698
36700
36699
36739
36700
36704
36738
36701
36703
36702
36703
36707
36704
36706
36705
36737
36706
36726
36736
36707
36725
36708
36724
36709
36723
36710
36714
36711
36713
36712
36713
36717
36714
36716
36715
36723
36716
36720
36722
36717
36719
36718
36719
37123
36720
37122
36721
37121
36722
36730
37120
36723
36729
36724
36725
36729
36726
36728
36727
36735
36728
36732
36734
36729
36731
36730
36731
37119
36732
37118
36733
37117
36734
37046
37116
36735
37045
36736
37040
36737
37039
36738
37022
36739
37021
36740
36741
37019
37021
36742
36743
37019
36744
37016
37018
36745
36746
36754
37016
36747
36753
36748
36749
36753
36750
36752
36751
36759
36752
36756
36758
36753
36755
36754
36755
37015
36756
37014
36757
37013
36758
36926
37012
36759
36925
36760
36920
36761
36919
36762
36898
36763
36897
36764
36892
36765
36891
36766
36806
36767
36805
36768
36800
36769
36799
36770
36778
36771
36777
36772
36773
36777
36774
36776
36775
36783
36776
36780
36782
36777
36779
36778
36779
36799
36780
36798
36781
36797
36782
36790
36796
36783
36789
36784
36785
36789
36786
36788
36787
36827
36788
36792
36826
36789
36791
36790
36791
36795
36792
36794
36793
36825
36794
36814
36824
36795
36813
36796
36812
36797
36811
36798
36802
36799
36801
36800
36801
36805
36802
36804
36803
36811
36804
36808
36810
36805
36807
36806
36807
36891
36808
36890
36809
36889
36810
36818
36888
36811
36817
36812
36813
36817
36814
36816
36815
36823
36816
36820
36822
36817
36819
36818
36819
36887
36820
36886
36821
36885
36822
36862
36884
36823
36861
36824
36856
36825
36855
36826
36834
36827
36833
36828
36829
36833
36830
36832
36831
36839
36832
36836
36838
36833
36835
36834
36835
36855
36836
36854
36837
36853
36838
36846
36852
36839
36845
36840
36841
36845
36842
36844
36843
38092
36844
36848
38091
36845
36847
36846
36847
36851
36848
36850
36849
38090
36850
36870
38089
36851
36869
36852
36868
36853
36867
36854
36858
36855
36857
36856
36857
36861
36858
36860
36859
36867
36860
36864
36866
36861
36863
36862
36863
36883
36864
36882
36865
36881
36866
36874
36880
36867
36873
36868
36869
36873
36870
36872
36871
38088
36872
36876
38087
36873
36875
36874
36875
36879
36876
36878
36877
38086
36878
36962
38085
36879
36961
36880
36960
36881
36959
36882
36950
36883
36949
36884
36948
36885
36947
36886
36906
36887
36905
36888
36904
36889
36903
36890
36894
36891
36893
36892
36893
36897
36894
36896
36895
36903
36896
36900
36902
36897
36899
36898
36899
36919
36900
36918
36901
36917
36902
36910
36916
36903
36909
36904
36905
36909
36906
36908
36907
36947
36908
36912
36946
36909
36911
36910
36911
36915
36912
36914
36913
36945
36914
36934
36944
36915
36933
36916
36932
36917
36931
36918
36922
36919
36921
36920
36921
36925
36922
36924
36923
36931
36924
36928
36930
36925
36927
36926
36927
37011
36928
37010
36929
37009
36930
36938
37008
36931
36937
36932
36933
36937
36934
36936
36935
36943
36936
36940
36942
36937
36939
36938
36939
37007
36940
37006
36941
37005
36942
36982
37004
36943
36981
36944
36976
36945
36975
36946
36954
36947
36953
36948
36949
36953
36950
36952
36951
36959
36952
36956
36958
36953
36955
36954
36955
36975
36956
36974
36957
36973
36958
36966
36972
36959
36965
36960
36961
36965
36962
36964
36963
38084
36964
36968
38083
36965
36967
36966
36967
36971
36968
36970
36969
38082
36970
36990
38081
36971
36989
36972
36988
36973
36987
36974
36978
36975
36977
36976
36977
36981
36978
36980
36979
36987
36980
36984
36986
36981
36983
36982
36983
37003
36984
37002
36985
37001
36986
36994
37000
36987
36993
36988
36989
36993
36990
36992
36991
38080
36992
36996
38079
36993
36995
36994
36995
36999
36996
36998
36997
38078
36998
37531
38077
36999
37530
37000
37529
37001
37528
37002
37519
37003
37518
37004
37517
37005
37516
37006
37074
37007
37073
37008
37072
37009
37071
37010
37062
37011
37061
37012
37060
37013
37059
37014
37030
37015
37029
37016
37028
37017
37018
37026
37028
37019
37025
37020
37021
37023
37025
37022
37023
37039
37024
37038
37025
37035
37037
37026
37027
37035
37028
37032
37034
37029
37030
37032
37031
37059
37032
37056
37058
37033
37034
37054
37056
37035
37053
37036
37037
37051
37053
37038
37042
37039
37041
37040
37041
37045
37042
37044
37043
37051
37044
37048
37050
37045
37047
37046
37047
37115
37048
37114
37049
37113
37050
37094
37112
37051
37093
37052
37053
37091
37093
37054
37055
37091
37056
37088
37090
37057
37058
37066
37088
37059
37065
37060
37061
37065
37062
37064
37063
37071
37064
37068
37070
37065
37067
37066
37067
37087
37068
37086
37069
37085
37070
37078
37084
37071
37077
37072
37073
37077
37074
37076
37075
37516
37076
37080
37515
37077
37079
37078
37079
37083
37080
37082
37081
37514
37082
37503
37513
37083
37502
37084
37501
37085
37500
37086
37102
37087
37101
37088
37100
37089
37090
37098
37100
37091
37097
37092
37093
37095
37097
37094
37095
37111
37096
37110
37097
37107
37109
37098
37099
37107
37100
37104
37106
37101
37102
37104
37103
37500
37104
37497
37499
37105
37106
37495
37497
37107
37494
37108
37109
37492
37494
37110
37451
37111
37450
37112
37449
37113
37448
37114
37439
37115
37438
37116
37437
37117
37436
37118
37138
37119
37137
37120
37136
37121
37135
37122
37126
37123
37125
37124
37125
37129
37126
37128
37127
37135
37128
37132
37134
37129
37131
37130
37131
37151
37132
37150
37133
37149
37134
37142
37148
37135
37141
37136
37137
37141
37138
37140
37139
37436
37140
37144
37435
37141
37143
37142
37143
37147
37144
37146
37145
37434
37146
37423
37433
37147
37422
37148
37421
37149
37420
37150
37407
37151
37406
37152
37405
37153
37154
37403
37405
37155
37156
37160
37403
37157
37159
37158
37159
37163
37160
37162
37161
37402
37162
37299
37401
37163
37298
37164
37297
37165
37296
37166
37271
37167
37270
37168
37169
37268
37270
37170
37171
37266
37268
37172
37173
37264
37266
37174
37175
37262
37264
37176
37261
37177
37260
37178
37210
37179
37209
37180
37208
37181
37182
37206
37208
37183
37184
37204
37206
37185
37186
37202
37204
37187
37188
37200
37202
37189
37199
37190
37191
37197
37199
37192
37193
37195
37197
37194
37195
37227
37196
37226
37197
37223
37225
37198
37199
37221
37223
37200
37201
37221
37202
37218
37220
37203
37204
37216
37218
37205
37206
37214
37216
37207
37208
37212
37214
37209
37210
37212
37211
37260
37212
37257
37259
37213
37214
37255
37257
37215
37216
37253
37255
37217
37218
37251
37253
37219
37220
37240
37251
37221
37239
37222
37223
37237
37239
37224
37225
37235
37237
37226
37230
37227
37229
37228
37229
37233
37230
37232
37231
37235
37232
37234
37233
37235
37245
37236
37237
37243
37245
37238
37239
37241
37243
37240
37241
37250
37242
37249
37243
37246
37248
37244
37245
37246
37247
37248
37350
37249
37329
37250
37328
37251
37327
37252
37253
37325
37327
37254
37255
37323
37325
37256
37257
37321
37323
37258
37259
37283
37321
37260
37282
37261
37262
37282
37263
37281
37264
37278
37280
37265
37266
37276
37278
37267
37268
37274
37276
37269
37270
37272
37274
37271
37272
37296
37273
37295
37274
37292
37294
37275
37276
37290
37292
37277
37278
37288
37290
37279
37280
37286
37288
37281
37285
37282
37284
37283
37284
37320
37285
37319
37286
37318
37287
37317
37288
37314
37316
37289
37290
37312
37314
37291
37292
37310
37312
37293
37294
37308
37310
37295
37303
37296
37302
37297
37298
37302
37299
37301
37300
37400
37301
37305
37399
37302
37304
37303
37304
37308
37305
37307
37306
37398
37307
37371
37397
37308
37370
37309
37310
37368
37370
37311
37312
37366
37368
37313
37314
37364
37366
37315
37316
37362
37364
37317
37361
37318
37360
37319
37339
37320
37338
37321
37337
37322
37323
37335
37337
37324
37325
37333
37335
37326
37327
37331
37333
37328
37329
37331
37330
37350
37331
37347
37349
37332
37333
37345
37347
37334
37335
37343
37345
37336
37337
37341
37343
37338
37339
37341
37340
37360
37341
37357
37359
37342
37343
37355
37357
37344
37345
37353
37355
37346
37347
37351
37353
37348
37349
37351
37350
37352
37353
37805
37354
37355
37803
37805
37356
37357
37801
37803
37358
37359
37383
37801
37360
37382
37361
37362
37382
37363
37381
37364
37378
37380
37365
37366
37376
37378
37367
37368
37374
37376
37369
37370
37372
37374
37371
37372
37396
37373
37395
37374
37392
37394
37375
37376
37390
37392
37377
37378
37388
37390
37379
37380
37386
37388
37381
37385
37382
37384
37383
37384
37800
37385
37799
37386
37798
37387
37797
37388
37794
37796
37389
37390
37792
37794
37391
37392
37790
37792
37393
37394
37788
37790
37395
37719
37396
37718
37397
37713
37398
37712
37399
37695
37400
37694
37401
37413
37402
37412
37403
37411
37404
37405
37409
37411
37406
37407
37409
37408
37420
37409
37417
37419
37410
37411
37415
37417
37412
37413
37415
37414
37694
37415
37691
37693
37416
37417
37689
37691
37418
37419
37427
37689
37420
37426
37421
37422
37426
37423
37425
37424
37432
37425
37429
37431
37426
37428
37427
37428
37688
37429
37687
37430
37686
37431
37471
37685
37432
37470
37433
37465
37434
37464
37435
37443
37436
37442
37437
37438
37442
37439
37441
37440
37448
37441
37445
37447
37442
37444
37443
37444
37464
37445
37463
37446
37462
37447
37455
37461
37448
37454
37449
37450
37454
37451
37453
37452
37492
37453
37457
37491
37454
37456
37455
37456
37460
37457
37459
37458
37490
37459
37479
37489
37460
37478
37461
37477
37462
37476
37463
37467
37464
37466
37465
37466
37470
37467
37469
37468
37476
37469
37473
37475
37470
37472
37471
37472
37684
37473
37683
37474
37682
37475
37483
37681
37476
37482
37477
37478
37482
37479
37481
37480
37488
37481
37485
37487
37482
37484
37483
37484
37680
37485
37679
37486
37678
37487
37607
37677
37488
37606
37489
37601
37490
37600
37491
37583
37492
37582
37493
37494
37580
37582
37495
37496
37580
37497
37577
37579
37498
37499
37507
37577
37500
37506
37501
37502
37506
37503
37505
37504
37512
37505
37509
37511
37506
37508
37507
37508
37576
37509
37575
37510
37574
37511
37551
37573
37512
37550
37513
37545
37514
37544
37515
37523
37516
37522
37517
37518
37522
37519
37521
37520
37528
37521
37525
37527
37522
37524
37523
37524
37544
37525
37543
37526
37542
37527
37535
37541
37528
37534
37529
37530
37534
37531
37533
37532
38076
37533
37537
38075
37534
37536
37535
37536
37540
37537
37539
37538
38074
37539
37559
38073
37540
37558
37541
37557
37542
37556
37543
37547
37544
37546
37545
37546
37550
37547
37549
37548
37556
37549
37553
37555
37550
37552
37551
37552
37572
37553
37571
37554
37570
37555
37563
37569
37556
37562
37557
37558
37562
37559
37561
37560
38072
37561
37565
38071
37562
37564
37563
37564
37568
37565
37567
37566
38070
37567
37635
38069
37568
37634
37569
37633
37570
37632
37571
37623
37572
37622
37573
37621
37574
37620
37575
37591
37576
37590
37577
37589
37578
37579
37587
37589
37580
37586
37581
37582
37584
37586
37583
37584
37600
37585
37599
37586
37596
37598
37587
37588
37596
37589
37593
37595
37590
37591
37593
37592
37620
37593
37617
37619
37594
37595
37615
37617
37596
37614
37597
37598
37612
37614
37599
37603
37600
37602
37601
37602
37606
37603
37605
37604
37612
37605
37609
37611
37606
37608
37607
37608
37676
37609
37675
37610
37674
37611
37655
37673
37612
37654
37613
37614
37652
37654
37615
37616
37652
37617
37649
37651
37618
37619
37627
37649
37620
37626
37621
37622
37626
37623
37625
37624
37632
37625
37629
37631
37626
37628
37627
37628
37648
37629
37647
37630
37646
37631
37639
37645
37632
37638
37633
37634
37638
37635
37637
37636
38068
37637
37641
38067
37638
37640
37639
37640
37644
37641
37643
37642
38066
37643
38007
38065
37644
38006
37645
38005
37646
38004
37647
37663
37648
37662
37649
37661
37650
37651
37659
37661
37652
37658
37653
37654
37656
37658
37655
37656
37672
37657
37671
37658
37668
37670
37659
37660
37668
37661
37665
37667
37662
37663
37665
37664
38004
37665
38001
38003
37666
37667
37999
38001
37668
37998
37669
37670
37996
37998
37671
37955
37672
37954
37673
37953
37674
37952
37675
37943
37676
37942
37677
37941
37678
37940
37679
37747
37680
37746
37681
37745
37682
37744
37683
37735
37684
37734
37685
37733
37686
37732
37687
37703
37688
37702
37689
37701
37690
37691
37699
37701
37692
37693
37697
37699
37694
37696
37695
37696
37712
37697
37711
37698
37710
37699
37707
37709
37700
37701
37705
37707
37702
37703
37705
37704
37732
37705
37729
37731
37706
37707
37727
37729
37708
37709
37725
37727
37710
37724
37711
37715
37712
37714
37713
37714
37718
37715
37717
37716
37724
37717
37721
37723
37718
37720
37719
37720
37788
37721
37787
37722
37786
37723
37767
37785
37724
37766
37725
37726
37766
37727
37763
37765
37728
37729
37761
37763
37730
37731
37739
37761
37732
37738
37733
37734
37738
37735
37737
37736
37744
37737
37741
37743
37738
37740
37739
37740
37760
37741
37759
37742
37758
37743
37751
37757
37744
37750
37745
37746
37750
37747
37749
37748
37940
37749
37753
37939
37750
37752
37751
37752
37756
37753
37755
37754
37938
37755
37883
37937
37756
37882
37757
37881
37758
37880
37759
37775
37760
37774
37761
37773
37762
37763
37771
37773
37764
37765
37769
37771
37766
37768
37767
37768
37784
37769
37783
37770
37782
37771
37779
37781
37772
37773
37777
37779
37774
37775
37777
37776
37880
37777
37877
37879
37778
37779
37875
37877
37780
37781
37873
37875
37782
37872
37783
37848
37784
37847
37785
37846
37786
37845
37787
37825
37788
37824
37789
37790
37822
37824
37791
37792
37820
37822
37793
37794
37818
37820
37795
37796
37816
37818
37797
37815
37798
37814
37799
37810
37800
37809
37801
37808
37802
37803
37806
37808
37804
37805
37806
37807
37808
37812
37809
37810
37812
37811
37814
37812
37813
37814
37836
37815
37816
37836
37817
37835
37818
37832
37834
37819
37820
37830
37832
37821
37822
37828
37830
37823
37824
37826
37828
37825
37826
37845
37827
37844
37828
37841
37843
37829
37830
37839
37841
37831
37832
37837
37839
37833
37834
37837
37835
37836
37838
37839
37861
37840
37841
37859
37861
37842
37843
37857
37859
37844
37852
37845
37851
37846
37847
37851
37848
37850
37849
37872
37850
37854
37871
37851
37853
37852
37853
37857
37854
37856
37855
37870
37856
37865
37869
37857
37864
37858
37859
37862
37864
37860
37861
37862
37863
37864
37866
37865
37866
37868
37867
37868
37922
37869
37917
37870
37916
37871
37899
37872
37898
37873
37874
37898
37875
37895
37897
37876
37877
37893
37895
37878
37879
37887
37893
37880
37886
37881
37882
37886
37883
37885
37884
37936
37885
37889
37935
37886
37888
37887
37888
37892
37889
37891
37890
37934
37891
37907
37933
37892
37906
37893
37905
37894
37895
37903
37905
37896
37897
37901
37903
37898
37900
37899
37900
37916
37901
37915
37902
37914
37903
37911
37913
37904
37905
37909
37911
37906
37907
37909
37908
37932
37909
37929
37931
37910
37911
37927
37929
37912
37913
37925
37927
37914
37924
37915
37919
37916
37918
37917
37918
37922
37919
37921
37920
37924
37921
37923
37922
37924
38590
37925
37926
38590
37927
38587
38589
37928
37929
38585
38587
37930
37931
38563
38585
37932
38562
37933
38557
37934
38556
37935
37975
37936
37974
37937
37969
37938
37968
37939
37947
37940
37946
37941
37942
37946
37943
37945
37944
37952
37945
37949
37951
37946
37948
37947
37948
37968
37949
37967
37950
37966
37951
37959
37965
37952
37958
37953
37954
37958
37955
37957
37956
37996
37957
37961
37995
37958
37960
37959
37960
37964
37961
37963
37962
37994
37963
37983
37993
37964
37982
37965
37981
37966
37980
37967
37971
37968
37970
37969
37970
37974
37971
37973
37972
37980
37973
37977
37979
37974
37976
37975
37976
38556
37977
38555
37978
38554
37979
37987
38553
37980
37986
37981
37982
37986
37983
37985
37984
37992
37985
37989
37991
37986
37988
37987
37988
38552
37989
38551
37990
38550
37991
38047
38549
37992
38046
37993
38041
37994
38040
37995
38023
37996
38022
37997
37998
38020
38022
37999
38000
38020
38001
38017
38019
38002
38003
38011
38017
38004
38010
38005
38006
38010
38007
38009
38008
38064
38009
38013
38063
38010
38012
38011
38012
38016
38013
38015
38014
38062
38015
38031
38061
38016
38030
38017
38029
38018
38019
38027
38029
38020
38026
38021
38022
38024
38026
38023
38024
38040
38025
38039
38026
38036
38038
38027
38028
38036
38029
38033
38035
38030
38031
38033
38032
38060
38033
38057
38059
38034
38035
38055
38057
38036
38054
38037
38038
38052
38054
38039
38043
38040
38042
38041
38042
38046
38043
38045
38044
38052
38045
38049
38051
38046
38048
38047
38048
38548
38049
38547
38050
38546
38051
38527
38545
38052
38526
38053
38054
38524
38526
38055
38056
38524
38057
38521
38523
38058
38059
38499
38521
38060
38498
38061
38493
38062
38492
38063
38463
38064
38462
38065
38457
38066
38456
38067
38435
38068
38434
38069
38429
38070
38428
38071
38399
38072
38398
38073
38393
38074
38392
38075
38371
38076
38370
38077
38365
38078
38364
38079
38335
38080
38334
38081
38329
38082
38328
38083
38307
38084
38306
38085
38301
38086
38300
38087
38271
38088
38270
38089
38265
38090
38264
38091
38243
38092
38242
38093
38237
38094
38236
38095
38207
38096
38206
38097
38201
38098
38200
38099
38179
38100
38178
38101
38173
38102
38172
38103
38143
38104
38142
38105
38137
38106
38136
38107
38115
38108
38114
38109
38110
38114
38111
38113
38112
38120
38113
38117
38119
38114
38116
38115
38116
38136
38117
38135
38118
38134
38119
38127
38133
38120
38126
38121
38122
38126
38123
38125
38124
38164
38125
38129
38163
38126
38128
38127
38128
38132
38129
38131
38130
38162
38131
38151
38161
38132
38150
38133
38149
38134
38148
38135
38139
38136
38138
38137
38138
38142
38139
38141
38140
38148
38141
38145
38147
38142
38144
38143
38144
38172
38145
38171
38146
38170
38147
38155
38169
38148
38154
38149
38150
38154
38151
38153
38152
38160
38153
38157
38159
38154
38156
38155
38156
38168
38157
38167
38158
38166
38159
38165
38160
38161
38162
38163
38164
38166
38228
38167
38187
38168
38186
38169
38185
38170
38184
38171
38175
38172
38174
38173
38174
38178
38175
38177
38176
38184
38177
38181
38183
38178
38180
38179
38180
38200
38181
38199
38182
38198
38183
38191
38197
38184
38190
38185
38186
38190
38187
38189
38188
38228
38189
38193
38227
38190
38192
38191
38192
38196
38193
38195
38194
38226
38195
38215
38225
38196
38214
38197
38213
38198
38212
38199
38203
38200
38202
38201
38202
38206
38203
38205
38204
38212
38205
38209
38211
38206
38208
38207
38208
38236
38209
38235
38210
38234
38211
38219
38233
38212
38218
38213
38214
38218
38215
38217
38216
38224
38217
38221
38223
38218
38220
38219
38220
38232
38221
38231
38222
38230
38223
38229
38224
38225
38226
38227
38228
38230
38292
38231
38251
38232
38250
38233
38249
38234
38248
38235
38239
38236
38238
38237
38238
38242
38239
38241
38240
38248
38241
38245
38247
38242
38244
38243
38244
38264
38245
38263
38246
38262
38247
38255
38261
38248
38254
38249
38250
38254
38251
38253
38252
38292
38253
38257
38291
38254
38256
38255
38256
38260
38257
38259
38258
38290
38259
38279
38289
38260
38278
38261
38277
38262
38276
38263
38267
38264
38266
38265
38266
38270
38267
38269
38268
38276
38269
38273
38275
38270
38272
38271
38272
38300
38273
38299
38274
38298
38275
38283
38297
38276
38282
38277
38278
38282
38279
38281
38280
38288
38281
38285
38287
38282
38284
38283
38284
38296
38285
38295
38286
38294
38287
38293
38288
38289
38290
38291
38292
38294
38356
38295
38315
38296
38314
38297
38313
38298
38312
38299
38303
38300
38302
38301
38302
38306
38303
38305
38304
38312
38305
38309
38311
38306
38308
38307
38308
38328
38309
38327
38310
38326
38311
38319
38325
38312
38318
38313
38314
38318
38315
38317
38316
38356
38317
38321
38355
38318
38320
38319
38320
38324
38321
38323
38322
38354
38323
38343
38353
38324
38342
38325
38341
38326
38340
38327
38331
38328
38330
38329
38330
38334
38331
38333
38332
38340
38333
38337
38339
38334
38336
38335
38336
38364
38337
38363
38338
38362
38339
38347
38361
38340
38346
38341
38342
38346
38343
38345
38344
38352
38345
38349
38351
38346
38348
38347
38348
38360
38349
38359
38350
38358
38351
38357
38352
38353
38354
38355
38356
38358
38420
38359
38379
38360
38378
38361
38377
38362
38376
38363
38367
38364
38366
38365
38366
38370
38367
38369
38368
38376
38369
38373
38375
38370
38372
38371
38372
38392
38373
38391
38374
38390
38375
38383
38389
38376
38382
38377
38378
38382
38379
38381
38380
38420
38381
38385
38419
38382
38384
38383
38384
38388
38385
38387
38386
38418
38387
38407
38417
38388
38406
38389
38405
38390
38404
38391
38395
38392
38394
38393
38394
38398
38395
38397
38396
38404
38397
38401
38403
38398
38400
38399
38400
38428
38401
38427
38402
38426
38403
38411
38425
38404
38410
38405
38406
38410
38407
38409
38408
38416
38409
38413
38415
38410
38412
38411
38412
38424
38413
38423
38414
38422
38415
38421
38416
38417
38418
38419
38420
38422
38484
38423
38443
38424
38442
38425
38441
38426
38440
38427
38431
38428
38430
38429
38430
38434
38431
38433
38432
38440
38433
38437
38439
38434
38436
38435
38436
38456
38437
38455
38438
38454
38439
38447
38453
38440
38446
38441
38442
38446
38443
38445
38444
38484
38445
38449
38483
38446
38448
38447
38448
38452
38449
38451
38450
38482
38451
38471
38481
38452
38470
38453
38469
38454
38468
38455
38459
38456
38458
38457
38458
38462
38459
38461
38460
38468
38461
38465
38467
38462
38464
38463
38464
38492
38465
38491
38466
38490
38467
38475
38489
38468
38474
38469
38470
38474
38471
38473
38472
38480
38473
38477
38479
38474
38476
38475
38476
38488
38477
38487
38478
38486
38479
38485
38480
38481
38482
38483
38484
38486
38683
38487
38507
38488
38506
38489
38505
38490
38504
38491
38495
38492
38494
38493
38494
38498
38495
38497
38496
38504
38497
38501
38503
38498
38500
38499
38500
38520
38501
38519
38502
38518
38503
38511
38517
38504
38510
38505
38506
38510
38507
38509
38508
38683
38509
38513
38682
38510
38512
38511
38512
38516
38513
38515
38514
38681
38515
38670
38680
38516
38669
38517
38668
38518
38667
38519
38535
38520
38534
38521
38533
38522
38523
38531
38533
38524
38530
38525
38526
38528
38530
38527
38528
38544
38529
38543
38530
38540
38542
38531
38532
38540
38533
38537
38539
38534
38535
38537
38536
38667
38537
38664
38666
38538
38539
38662
38664
38540
38661
38541
38542
38659
38661
38543
38626
38544
38625
38545
38624
38546
38623
38547
38614
38548
38613
38549
38612
38550
38611
38551
38571
38552
38570
38553
38569
38554
38568
38555
38559
38556
38558
38557
38558
38562
38559
38561
38560
38568
38561
38565
38567
38562
38564
38563
38564
38584
38565
38583
38566
38582
38567
38575
38581
38568
38574
38569
38570
38574
38571
38573
38572
38611
38573
38577
38610
38574
38576
38575
38576
38580
38577
38579
38578
38609
38579
38602
38608
38580
38601
38581
38600
38582
38599
38583
38595
38584
38594
38585
38593
38586
38587
38591
38593
38588
38589
38591
38590
38592
38593
38597
38594
38595
38597
38596
38599
38597
38598
38599
38605
38600
38601
38605
38602
38604
38603
38607
38604
38606
38605
38607
38645
38608
38640
38609
38639
38610
38618
38611
38617
38612
38613
38617
38614
38616
38615
38623
38616
38620
38622
38617
38619
38618
38619
38639
38620
38638
38621
38637
38622
38630
38636
38623
38629
38624
38625
38629
38626
38628
38627
38659
38628
38632
38658
38629
38631
38630
38631
38635
38632
38634
38633
38657
38634
38650
38656
38635
38649
38636
38648
38637
38647
38638
38642
38639
38641
38640
38641
38645
38642
38644
38643
38647
38644
38646
38645
38647
38653
38648
38649
38653
38650
38652
38651
38655
38652
38654
38653
38655
38717
38656
38712
38657
38711
38658
38694
38659
38693
38660
38661
38691
38693
38662
38663
38691
38664
38688
38690
38665
38666
38674
38688
38667
38673
38668
38669
38673
38670
38672
38671
38679
38672
38676
38678
38673
38675
38674
38675
38687
38676
38686
38677
38685
38678
38684
38679
38680
38681
38682
38683
38685
38727
38686
38702
38687
38701
38688
38700
38689
38690
38698
38700
38691
38697
38692
38693
38695
38697
38694
38695
38711
38696
38710
38697
38707
38709
38698
38699
38707
38700
38704
38706
38701
38702
38704
38703
38727
38704
38724
38726
38705
38706
38722
38724
38707
38721
38708
38709
38719
38721
38710
38714
38711
38713
38712
38713
38717
38714
38716
38715
38719
38716
38718
38717
38719
38733
38720
38721
38731
38733
38722
38723
38731
38724
38728
38730
38725
38726
38728
38727
38729
38730
38735
38731
38734
38732
38733
38734
38735
38740
38741
38744
38751
38755
38756
38761
38763
38766
38769
38770
38771
38770
38773
38774
38775
38774
38777
38780
38783
38785
38786
38788
38787
38788
38789
38790
38790
38791
38792
38795
38798
38806
38808
38809
38810
38811
38812
38813
38814
38815
38816
38817
38818
38819
38820
38821
38822
38823
38824
38825
38826
38827
38828
38829
38830
38831
38832
38833
38834
38835
38836
38837
38838
38839
38840
38841
38842
38843
38844
38845
38846
38847
38848
38849
38850
38851
38852
38853
38854
38855
38856
38857
38858
38859
38860
38861
38862
38863
38864
38865
38866
38867
38868
38869
38870
38871
38872
38873
38874
38875
38876
38877
38878
38879
38880
38881
38882
38883
38884
38885
38886
38887
38888
38889
38890
38891
38892
38893
38894
38895
38896
38897
38898
38899
38900
38901
38902
38903
38904
38905
38906
38907
38908
38909
38910
38911
38912
38913
38914
38915
38916
38917
38918
38919
38920
38921
38922
38923
38924
38925
38926
38927
38928
38929
38930
38931
)
// ************************************************************************* //
| |
903054536d01f5d1b508a82871022b8776eb5301 | 347ab64d91ddc8f857ea0c81da371c8ab5ea86c3 | /C++/Assignment4/TestTree2.cpp | 552c8d9078e9b446c2a73251b8b0336b322aaade | [] | no_license | ron-kap/university-projects | 94132276c6fbc1177669067eb3e1ca9bea5966cf | 9e10028372cb5fa23cc98a8e857b80cfadab1889 | refs/heads/main | 2023-09-03T08:54:59.165070 | 2021-09-22T15:49:22 | 2021-09-22T15:49:22 | 334,437,202 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,621 | cpp | TestTree2.cpp | #include "treenode.h"
#include "tree.h"
#include <iostream>
#include <sstream>
using std::cout;
using std::endl;
using std::ostringstream;
class JustAnInt {
public:
int x;
bool operator<(const JustAnInt & other) const {
return (x < other.x);
}
};
int main() {
int retval = 0;
{
BinarySearchTree<int> tree;
tree.insert(5);
{
ostringstream s;
tree.write(s);
if (s.str() == " 5 ") {
cout << "1) Pass: adding 5 to the tree yields the tree containing 5 and only 5\n";
} else {
cout << "1) Fail: adding 5 to the tree should yield the tree containing 5 and only 5 but it gives " << s.str() << "\n";
++retval;
}
}
tree.insert(1);
tree.insert(2);
tree.insert(6);
{
ostringstream s1;
tree.write(s1);
if (s1.str() == " 1 2 5 6 ") {
cout << "2) Pass: adding 1, 2 and 6 to the tree containing 5 yields the tree \" 1 2 5 6 \"\n";
} else {
cout << "2) Fail: adding 1, 2 and 6 to the tree containing 5 should yield the tree \" 1 2 5 6 \" but it gives \"" << s1.str() << "\"\n";
++retval;
}
}
{
auto six = tree.find(6);
if (six && six->data == 6) {
cout << "3) Pass: found 6 in the tree \" 1 2 5 6 \"\n";
} else {
cout << "3) Fail: 6 is in the tree \" 1 2 5 6 \" but find hasn't found a note containing 6\n";
++retval;
}
}
{
auto three = tree.find(3);
if (!three) {
cout << "4) Pass: didn't find 3 in the tree \" 1 2 5 6 \", which doesn't contain it\n";
} else {
cout << "4) Fail: looked for 3 in the tree \" 1 2 5 6 \", which doesn't contain 3 and got non-null node containing \"" << three->data << "\"\n";
++retval;
}
}
BinarySearchTree<int> tree2;
tree2.insert(5);
{
ostringstream s10;
tree2.write(s10);
if (s10.str() == " 5 ") {
cout << "5) Pass: adding 5 to the tree yields the tree containing 5 and only 5\n";
} else {
cout << "5) Fail: adding 5 to the tree should yield the tree containing 5 and only 5 but it gives " << s10.str() << "\n";
++retval;
}
}
BinarySearchTree<int> a;
a.insert(2);
a.insert(1);
a.insert(3);
BinarySearchTree<int> b = a; // uses the copy constructor
a.write(std::cout); cout << "\n"; // print out a
b.write(std::cout); cout << "\n"; // print out b -- should be the same as a
cout << "\n";
cout << "\n";
BinarySearchTree<int> c;
c.insert(2);
c.insert(1);
c.insert(3);
BinarySearchTree<int> d;
d = c; // uses the assignment operator
c.write(std::cout); cout << "\n"; // print out a
d.write(std::cout); cout << "\n"; // print out b -- should be the same as a
cout << "\n";
cout << "\n";
cout << "\n";
cout << "\n";
BinarySearchTree<int> aa;
aa.insert(2);
aa.insert(1);
aa.insert(3);
aa.insert(5);
aa.insert(4);
aa.insert(6);
BinarySearchTree<int> bb;
bb = aa;
aa.write(std::cout); cout << "\n"; // print out a
bb.write(std::cout); cout << "\n";
TreeNode<int> * aaFive = aa.find(5);
cout << "5aa parent: " << aaFive->parent->data << "\n";
TreeNode<int> * bbFive = bb.find(5);
cout << "5bb parent: " << bbFive->parent->data << "\n";
TreeNode<int> * aaFour = aa.find(4);
cout << "4aa parent: " << aaFour->parent->data << "\n";
TreeNode<int> * bbFour = bb.find(4);
cout << "4bb parent: " << bbFour->parent->data << "\n";
TreeNode<int> * aaSix = aa.find(6);
cout << "6aa parent: " << aaSix->parent->data << "\n";
TreeNode<int> * bbSix = bb.find(6);
cout << "6bb parent: " << bbSix->parent->data << "\n";
cout << endl;
}
{
// compiler errors here mean you tried to do something other than 'operator<' when comparing data in the tree
BinarySearchTree<JustAnInt> tree;
tree.insert(JustAnInt{42});
}
return retval;
}
|
fa0269e112fa8342a965a663fdd56c3261617d72 | 88b5393cc0236430ad7de21f5165d481d7832ddb | /src/GameObjects/Buney/BuneyStates/BuneyFleeState.cpp | 5ea9f83a56d613b950db887fc06605a26fc98e62 | [] | no_license | jorgdebont/Minor_kmint | ddeb3745c67209bff2166bd4e6eeed4807b62401 | 5840209b05e35a77de24b89c3bdc4ff97daa98c3 | refs/heads/master | 2020-12-24T06:55:03.756493 | 2016-12-07T11:00:06 | 2016-12-07T11:00:06 | 73,389,236 | 1 | 0 | null | 2016-12-07T11:00:07 | 2016-11-10T14:24:16 | C++ | UTF-8 | C++ | false | false | 549 | cpp | BuneyFleeState.cpp | //
// Created by mafn on 12/6/16.
//
#include "BuneyFleeState.hpp"
#include "BuneyWanderState.hpp"
#include "../Buney.hpp"
BuneyFleeState::BuneyFleeState(Buney& context)
: BuneyState(context)
, _flee_state(context)
, _turn_counter(0)
{
this->name = "Buney flee temporarily";
}
void BuneyFleeState::update(float delta_time)
{
if (this->_turn_counter < this->_length) {
this->_flee_state.update(delta_time);
this->_turn_counter++;
} else {
this->_context.set_state(new BuneyWanderState(this->_context));
}
}
|
b20d997ec7079e33a91b4f8634e6b711011f8a25 | f069306d2638254deab17b124c8ba5df93b3bb2a | /include/clcommons/util_type.h | 73319f54632c1b2d10539c6d99a86f6785e43f60 | [
"MIT"
] | permissive | Nuzhny007/clcommons | 9ed834f0b670ccf495448662c0075607e4b137b7 | b91015780327c0e12e967b16ccb5bcadf2bb8280 | refs/heads/master | 2021-01-21T12:57:58.419357 | 2017-04-27T01:09:16 | 2017-04-27T01:09:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,500 | h | util_type.h | #ifndef CLCOMMONS_UTIL_TYPE_H
#define CLCOMMONS_UTIL_TYPE_H
#ifdef ENABLE_CL_CPP
template<class T, T v>
struct integral_constant{
enum{ value = v };
typedef T value_type;
typedef integral_constant<T,v> type;
};
typedef integral_constant<bool,false> false_type;
typedef integral_constant<bool,true> true_type;
template<typename T, typename U> struct is_same: false_type{};
template<typename T> struct is_same<T, T> : true_type{};
template<typename T> struct make_unsigned {};
template<> struct make_unsigned<char>{ typedef uchar type; };
template<> struct make_unsigned<short>{ typedef ushort type; };
template<> struct make_unsigned<int>{ typedef uint type; };
template<> struct make_unsigned<long>{ typedef ulong type; };
template<> struct make_unsigned<uchar>{ typedef uchar type; };
template<> struct make_unsigned<ushort>{ typedef ushort type; };
template<> struct make_unsigned<uint>{ typedef uint type; };
template<> struct make_unsigned<ulong>{ typedef ulong type; };
template<typename T> struct make_signed {};
template<> struct make_signed<char>{ typedef char type; };
template<> struct make_signed<short>{ typedef short type; };
template<> struct make_signed<int>{ typedef int type; };
template<> struct make_signed<long>{ typedef long type; };
template<> struct make_signed<uchar>{ typedef uchar type; };
template<> struct make_signed<ushort>{ typedef ushort type; };
template<> struct make_signed<uint>{ typedef uint type; };
template<> struct make_signed<ulong>{ typedef ulong type; };
template<bool IF, typename ThenType, typename ElseType>
struct static_if{
typedef ThenType Type; // true
};
template<typename ThenType, typename ElseType>
struct static_if<false, ThenType, ElseType>{
typedef ElseType Type; // false
};
template<typename A, typename B>
struct is_same{
enum {
VALUE = 0,
NEGATE = 1
};
};
template<typename A>
struct is_same <A, A>{
enum {
VALUE = 1,
NEGATE = 0
};
};
struct NullType{
template<typename T>
inline NullType& operator =(const T& b) { return *this; }
};
template<int A>
struct Int2Type{
enum {VALUE = A};
};
template<int N, int CURRENT_VAL = N, int COUNT = 0>
struct Log2{
/// Static logarithm value
enum { VALUE = Log2<N, (CURRENT_VAL >> 1), COUNT + 1>::VALUE }; // Inductive case
};
template<int N, int COUNT>
struct Log2<N, 0, COUNT>{
enum {VALUE = (1 << (COUNT - 1) < N) ? // Base case
COUNT :
COUNT - 1 };
};
template<int N>
struct ISPowerOfTwo{
enum { VALUE = ((N & (N - 1)) == 0) };
};
template<typename Tp>
struct is_pointer{
enum { VALUE = 0 };
};
struct is_pointer<Tp*>{
enum { VALUE = 1 };
};
template<typename Tp>
struct is_volatile{
enum { VALUE = 0 };
};
template<typename Tp>
struct is_volatile<Tp volatile>{
enum { VALUE = 1 };
};
template<typename Tp, typename Up = Tp>
struct remove_cv{
typedef Up Type;
};
template<typename Tp, typename Up>
struct remove_cv<Tp, volatile Up>{
typedef Up Type;
};
template<typename Tp, typename Up>
struct remove_cv<Tp, const Up>
{
typedef Up Type;
};
template<typename Tp, typename Up>
struct remove_cv<Tp, const volatile Up>
{
typedef Up Type;
};
template<bool Condition, class T = void>
struct enable_if{
/// Enable-if type for SFINAE dummy variables
typedef T Type;
};
template<class T>
struct enable_if<false, T> {};
enum NumericCategory{
NOT_A_NUMBER,
SIGNED_INTEGER,
UNSIGNED_INTEGER,
FLOATING_POINT
};
template<NumericCategory _CATEGORY, bool _PRIMITIVE, bool _NULL_TYPE, typename _UnsignedBits>
struct BaseTraits{
/// NumericCategory
enum{
CATEGORY = _CATEGORY,
PRIMITIVE = _PRIMITIVE,
NULL_TYPE = _NULL_TYPE,
};
};
template<typename _UnsignedBits>
struct BaseTraits<UNSIGNED_INTEGER, true, false, _UnsignedBits>
{
typedef _UnsignedBits UnsignedBits;
//static const UnsignedBits MIN_VALUE = UnsignedBits(0);
//static const UnsignedBits MAX_VALUE = UnsignedBits(-1);
static const UnsignedBits MIN_VALUE(){ return UnsignedBits(0); }
static const UnsignedBits MAX_VALUE(){ return UnsignedBits(-1); }
enum
{
CATEGORY = UNSIGNED_INTEGER,
PRIMITIVE = true,
NULL_TYPE = false,
};
static inline UnsignedBits TwiddleIn(UnsignedBits key)
{
return key;
}
static inline UnsignedBits TwiddleOut(UnsignedBits key)
{
return key;
}
};
template<typename _UnsignedBits>
struct BaseTraits<SIGNED_INTEGER, true, false, _UnsignedBits>
{
typedef _UnsignedBits UnsignedBits;
static const UnsignedBits HIGH_BIT(){ return UnsignedBits(1) << ((sizeof(UnsignedBits) * 8) - 1); }
static const UnsignedBits MIN_VALUE(){ return HIGH_BIT(); }
static const UnsignedBits MAX_VALUE(){ return UnsignedBits(-1) ^ HIGH_BIT(); }
enum
{
CATEGORY = SIGNED_INTEGER,
PRIMITIVE = true,
NULL_TYPE = false,
};
static inline UnsignedBits TwiddleIn(UnsignedBits key)
{
//on negative: flip sign (twos complement) and complement with max value to preserve ordering, on positive: add MSB
return (key & HIGH_BIT()) ? (HIGH_BIT() - 1) - ((~key) + 1) : (HIGH_BIT() | key);
};
static inline UnsignedBits TwiddleOut(UnsignedBits key)
{
return (key & HIGH_BIT()) ? (HIGH_BIT() - 1) - ((~key) + 1): ((HIGH_BIT() - 1) & key);
};
};
template<typename _UnsignedBits>
struct BaseTraits<FLOATING_POINT, true, false, _UnsignedBits>
{
typedef _UnsignedBits UnsignedBits;
typedef make_signed<UnsignedBits> SignedBits;
static const UnsignedBits HIGH_BIT(){ return UnsignedBits(1) << ((sizeof(UnsignedBits) * 8) - 1); }
static const UnsignedBits MIN_VALUE(){ return UnsignedBits(-1); }
static const UnsignedBits MAX_VALUE(){ return UnsignedBits(-1) ^ HIGH_BIT; }
static inline UnsignedBits TwiddleIn(UnsignedBits key)
{
UnsignedBits mask = (key & HIGH_BIT()) ? UnsignedBits(-1) : HIGH_BIT();
return key ^ mask;
};
static inline UnsignedBits TwiddleOut(UnsignedBits key)
{
UnsignedBits mask = (key & HIGH_BIT()) ? HIGH_BIT() : UnsignedBits(-1);
return key ^ mask;
};
enum
{
CATEGORY = FLOATING_POINT,
PRIMITIVE = true,
NULL_TYPE = false,
};
};
template<typename T> struct numeric_traits : BaseTraits<NOT_A_NUMBER, false, false, T> {};
template<> struct numeric_traits<NullType> : BaseTraits<NOT_A_NUMBER, false, true, NullType> {};
//template<> struct numeric_traits<char> : BaseTraits<SIGNED_INTEGER, true, false, unsigned char> {};
template<> struct numeric_traits<signed char> : BaseTraits<SIGNED_INTEGER, true, false, uchar> {};
template<> struct numeric_traits<short> : BaseTraits<SIGNED_INTEGER, true, false, ushort> {};
template<> struct numeric_traits<int> : BaseTraits<SIGNED_INTEGER, true, false, uint> {};
template<> struct numeric_traits<long> : BaseTraits<SIGNED_INTEGER, true, false, ulong> {};
template<> struct numeric_traits<uchar> : BaseTraits<UNSIGNED_INTEGER, true, false, uchar> {};
template<> struct numeric_traits<ushort> : BaseTraits<UNSIGNED_INTEGER, true, false, ushort> {};
template<> struct numeric_traits<uint> : BaseTraits<UNSIGNED_INTEGER, true, false, uint> {};
template<> struct numeric_traits<ulong> : BaseTraits<UNSIGNED_INTEGER, true, false, ulong> {};
template<> struct numeric_traits<float> : BaseTraits<FLOATING_POINT, true, false, uint> {};
template<> struct numeric_traits<double> : BaseTraits<FLOATING_POINT, true, false, ulong> {};
template<typename T> struct underlying_scalar_type {};
template<> struct underlying_scalar_type<char>{ typedef char type; };
template<> struct underlying_scalar_type<char2>{ typedef char type; };
template<> struct underlying_scalar_type<char4>{ typedef char type; };
template<> struct underlying_scalar_type<char8>{ typedef char type; };
template<> struct underlying_scalar_type<char16>{ typedef char type; };
template<> struct underlying_scalar_type<uchar>{ typedef uchar type; };
template<> struct underlying_scalar_type<uchar2>{ typedef uchar type; };
template<> struct underlying_scalar_type<uchar4>{ typedef uchar type; };
template<> struct underlying_scalar_type<uchar8>{ typedef uchar type; };
template<> struct underlying_scalar_type<uchar16>{ typedef uchar type; };
template<> struct underlying_scalar_type<short>{ typedef short type; };
template<> struct underlying_scalar_type<short2>{ typedef short type; };
template<> struct underlying_scalar_type<short4>{ typedef short type; };
template<> struct underlying_scalar_type<short8>{ typedef short type; };
template<> struct underlying_scalar_type<short16>{ typedef short type; };
template<> struct underlying_scalar_type<ushort>{ typedef ushort type; };
template<> struct underlying_scalar_type<ushort2>{ typedef ushort type; };
template<> struct underlying_scalar_type<ushort4>{ typedef ushort type; };
template<> struct underlying_scalar_type<ushort8>{ typedef ushort type; };
template<> struct underlying_scalar_type<ushort16>{ typedef ushort type; };
template<> struct underlying_scalar_type<int>{ typedef int type; };
template<> struct underlying_scalar_type<int2>{ typedef int type; };
template<> struct underlying_scalar_type<int4>{ typedef int type; };
template<> struct underlying_scalar_type<int8>{ typedef int type; };
template<> struct underlying_scalar_type<int16>{ typedef int type; };
template<> struct underlying_scalar_type<uint>{ typedef uint type; };
template<> struct underlying_scalar_type<uint2>{ typedef uint type; };
template<> struct underlying_scalar_type<uint4>{ typedef uint type; };
template<> struct underlying_scalar_type<uint8>{ typedef uint type; };
template<> struct underlying_scalar_type<uint16>{ typedef uint type; };
template<> struct underlying_scalar_type<long>{ typedef long type; };
template<> struct underlying_scalar_type<long2>{ typedef long type; };
template<> struct underlying_scalar_type<long4>{ typedef long type; };
template<> struct underlying_scalar_type<long8>{ typedef long type; };
template<> struct underlying_scalar_type<long16>{ typedef long type; };
template<> struct underlying_scalar_type<ulong>{ typedef ulong type; };
template<> struct underlying_scalar_type<ulong2>{ typedef ulong type; };
template<> struct underlying_scalar_type<ulong4>{ typedef ulong type; };
template<> struct underlying_scalar_type<ulong8>{ typedef ulong type; };
template<> struct underlying_scalar_type<ulong16>{ typedef ulong type; };
template<> struct underlying_scalar_type<float>{ typedef float type; };
template<> struct underlying_scalar_type<float2>{ typedef float type; };
template<> struct underlying_scalar_type<float4>{ typedef float type; };
template<> struct underlying_scalar_type<float8>{ typedef float type; };
template<> struct underlying_scalar_type<float16>{ typedef float type; };
template<> struct underlying_scalar_type<double>{ typedef double type; };
template<> struct underlying_scalar_type<double2>{ typedef double type; };
template<> struct underlying_scalar_type<double4>{ typedef double type; };
template<> struct underlying_scalar_type<double8>{ typedef double type; };
template<> struct underlying_scalar_type<double16>{ typedef double type; };
//template<typename T> struct is_vec2 : false_type{};
//template<> struct is_vec2<char2> : true_type{};
//template<> struct is_vec2<short2> : true_type{};
//template<> struct is_vec2<int2> : true_type{};
//template<> struct is_vec2<long2> : true_type{};
//template<> struct is_vec2<uchar2> : true_type{};
//template<> struct is_vec2<ushort2> : true_type{};
//template<> struct is_vec2<uint2> : true_type{};
//template<> struct is_vec2<ulong2> : true_type{};
//template<> struct is_vec2<float2> : true_type{};
//template<> struct is_vec2<double2> : true_type{};
template<typename T>
struct fast_lds_type{
typedef T value_type;
};
template<>
struct fast_lds_type<uchar>{ typedef uint value_type; };
template<>
struct fast_lds_type<ushort>{ typedef uint value_type; };
template<>
struct fast_lds_type<char>{ typedef int value_type; };
template<>
struct fast_lds_type<short>{ typedef int value_type; };
#endif
#endif
|
b5bb13f53e99a261660e89120782b6b039f79a60 | 7ed7aa5e28bd3cdea44e809bbaf8a527a61259fb | /UVa/821 - Page Hopping.cpp | e462e5e670969c97d9fc429de8a917778040c07c | [] | no_license | NaiveRed/Problem-solving | bdbf3d355ee0cb2390cc560d8d35f5e86fc2f2c3 | acb47328736a845a60f0f1babcb42f9b78dfdd10 | refs/heads/master | 2022-06-16T03:50:18.823384 | 2022-06-12T10:02:23 | 2022-06-12T10:02:23 | 38,728,377 | 4 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 1,153 | cpp | 821 - Page Hopping.cpp | #include<cstdio>
#include<algorithm>
#define N 101
using namespace std;
int main()
{
int map[N], d[N][N], u, v, Case = 1;
while (scanf("%d%d", &u, &v) && u&&v)
{
int i, j, k, idx = 0;
for (i = 0; i < N; i++)
fill(d[i], d[i] + N, 1e9);
fill(map, map + N, 0);
do
{
if (!map[u])
map[u] = ++idx;
if (!map[v])
map[v] = ++idx;
d[map[u]][map[v]] = 1;
} while (scanf("%d%d", &u, &v) && u&&v);
//Floyd-Warshall
for (k = 0; k <= idx; k++)
for (i = 0; i <= idx; i++)
for (j = 0; j <= idx; j++)
if (i != j&&d[i][k] + d[k][j] < d[i][j])
d[i][j] = d[i][k] + d[k][j];
int sum = 0, count = 0;
for (i = 0; i <= idx; i++)
for (j = 0; j <= idx; j++)
if (d[i][j] < 1e9)
{
sum += d[i][j];
count++;
}
printf("Case %d: average length between pages = %.3f clicks\n", Case++, (float)sum / count);
}
return 0;
} |
734bc70a6cff3e3e6ce8d6cb4d5364b45ffbb24a | 34c9bbdf4c83ccdc99ba118f8434ca96bda202b5 | /cpp/HuffmanCoder.hpp | a5763e66ebbe9dd8cead5f9a9fc23a0b35d6254d | [
"MIT"
] | permissive | nayuki/Reference-Huffman-coding | 08445ce9df5b1ba97774c7fb0ce1daea02e81c1c | a74553c299cc18146886ab3e3b778b393c50192d | refs/heads/master | 2023-08-24T10:53:10.651200 | 2023-01-22T23:55:29 | 2023-01-22T23:55:29 | 1,725,737 | 226 | 88 | null | 2023-08-30T18:51:42 | 2011-05-10T01:33:28 | Java | UTF-8 | C++ | false | false | 1,823 | hpp | HuffmanCoder.hpp | /*
* Reference Huffman coding
*
* Copyright (c) Project Nayuki
* MIT License. See readme file.
* https://www.nayuki.io/page/reference-huffman-coding
*/
#pragma once
#include "BitIoStream.hpp"
#include "CodeTree.hpp"
/*
* Reads from a Huffman-coded bit stream and decodes symbols.
*/
class HuffmanDecoder final {
/*---- Fields ----*/
// The underlying bit input stream.
private: BitInputStream &input;
// The code tree to use in the next read() operation. Must be given a non-null value
// before calling read(). The tree can be changed after each symbol decoded, as long
// as the encoder and decoder have the same tree at the same point in the code stream.
public: const CodeTree *codeTree;
/*---- Constructor ----*/
// Constructs a Huffman decoder based on the given bit input stream.
public: explicit HuffmanDecoder(BitInputStream &in);
/*---- Method ----*/
// Reads from the input stream to decode the next Huffman-coded symbol.
public: int read();
};
/*
* Encodes symbols and writes to a Huffman-coded bit stream.
*/
class HuffmanEncoder final {
/*---- Fields ----*/
// The underlying bit output stream.
private: BitOutputStream &output;
// The code tree to use in the next write(uint32_t) operation. Must be given a non-null
// value before calling write(). The tree can be changed after each symbol encoded, as long
// as the encoder and decoder have the same tree at the same point in the code stream.
public: const CodeTree *codeTree;
/*---- Constructor ----*/
// Constructs a Huffman encoder based on the given bit output stream.
public: explicit HuffmanEncoder(BitOutputStream &out);
/*---- Method ----*/
// Encodes the given symbol and writes to the Huffman-coded output stream.
public: void write(std::uint32_t symbol);
};
|
e7407b99d49b7f13687b0f35fd9d5fdb43576738 | fad7887e0e3b0842931ccf1f3365a27f664e4ee7 | /solutions/leetcode/scramble-string.cpp | d56504d44a470239fee1d248d17439d91fb60bc7 | [
"MIT"
] | permissive | anujonthemove/CodeMonk | b73b0298ed705ae8232b95854ca7c069e2ba544f | e350188bfbf949836a9dbd7ae9051e9f17850a35 | refs/heads/master | 2021-01-20T13:44:22.076613 | 2017-04-11T07:19:16 | 2017-04-11T07:19:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,114 | cpp | scramble-string.cpp | /**
* @author yangyanzhan
* @email yangyanzhan@gmail.com
* @homepage http://www.yangyanzhan.com
* @github_project https://github.com/yangyanzhan/CodeMonk
* @online_judge leetcode
* @problem_id scramble-string
* @problem_address https://leetcode.com/problems/scramble-string/
**/
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <iostream>
#include <iterator>
#include <map>
#include <queue>
#include <regex>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
using namespace std;
class Solution {
private:
map<pair<string, string>, bool> cache;
public:
bool isScramble(string s1, string s2) {
if (s1.length() != s2.length()) {
return false;
}
if (s1 == s2) {
return true;
}
pair<string, string> p(s1, s2);
if (cache.find(p) != cache.end()) {
return cache[p];
}
vector<int> counts(256, 0);
for (char c1 : s1) {
counts[c1]++;
}
for (char c2 : s2) {
counts[c2]--;
}
bool scramble = true;
for (int i = 0; i < 256; i++) {
if (counts[i] != 0) {
scramble = false;
break;
}
}
if (!scramble) {
cache[p] = scramble;
return scramble;
}
scramble = false;
int n = s1.length();
for (int len = 1; len < n; len++) {
string s11 = s1.substr(0, len);
string s12 = s1.substr(len);
string s21 = s2.substr(0, len);
string s22 = s2.substr(len);
if (isScramble(s11, s21) && isScramble(s12, s22)) {
scramble = true;
break;
}
s21 = s2.substr(0, n - len);
s22 = s2.substr(n - len);
if (isScramble(s11, s22) && isScramble(s12, s21)) {
scramble = true;
break;
}
}
cache[p] = scramble;
return scramble;
}
};
int main(int argc, char *argv[]) { return 0; }
|
57813a386b377a11fa5acb5d24b4fc30a1311af0 | 4352b5c9e6719d762e6a80e7a7799630d819bca3 | /tutorials/eulerVortex.twitch.alternative.numerics/eulerVortex.cyclic.twitch.moving/2.72/rho | c307ba762ca18cb2bd65ab351a5320c8d1182a40 | [] | no_license | dashqua/epicProject | d6214b57c545110d08ad053e68bc095f1d4dc725 | 54afca50a61c20c541ef43e3d96408ef72f0bcbc | refs/heads/master | 2022-02-28T17:20:20.291864 | 2019-10-28T13:33:16 | 2019-10-28T13:33:16 | 184,294,390 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 169,095 | rho | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "2.72";
object rho;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -3 0 0 0 0 0];
internalField nonuniform List<scalar>
22500
(
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.39999
1.39999
1.39999
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40002
1.40002
1.40002
1.40002
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.39999
1.39999
1.39999
1.39999
1.39999
1.39999
1.39999
1.39999
1.39999
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40002
1.40002
1.40002
1.40002
1.40002
1.40002
1.40002
1.40002
1.40001
1.40001
1.40001
1.4
1.4
1.39999
1.4
1.39999
1.39998
1.39998
1.39999
1.4
1.39999
1.39999
1.39998
1.39998
1.39999
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40002
1.40002
1.40002
1.40003
1.40003
1.40003
1.40003
1.40003
1.40003
1.40002
1.40001
1.40001
1.40002
1.4
1.39998
1.39999
1.4
1.39999
1.39997
1.39997
1.39998
1.4
1.4
1.39999
1.39997
1.39997
1.39998
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40003
1.40001
1.39998
1.4
1.40003
1.40001
1.39999
1.39999
1.40002
1.40003
1.40002
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40002
1.40002
1.40003
1.40003
1.40004
1.40004
1.40005
1.40005
1.40004
1.40005
1.40005
1.40003
1.40001
1.40003
1.40002
1.39999
1.39997
1.39998
1.4
1.39998
1.39994
1.39993
1.39996
1.4
1.40002
1.4
1.39997
1.39996
1.39997
1.39999
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.39999
1.40003
1.40001
1.39994
1.39998
1.40005
1.4
1.39995
1.39999
1.40004
1.40003
1.39998
1.39996
1.39997
1.39999
1.40001
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40002
1.40002
1.40004
1.40005
1.40005
1.40006
1.40007
1.40007
1.40008
1.40007
1.40006
1.40008
1.40007
1.40003
1.40002
1.40005
1.40004
1.39997
1.39994
1.39998
1.40003
1.40001
1.39993
1.39989
1.39991
1.39999
1.40004
1.40003
1.39999
1.39995
1.39995
1.39997
1.4
1.40002
1.40002
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39998
1.40004
1.40003
1.39995
1.40002
1.40013
1.40004
1.39993
1.40002
1.40011
1.40003
1.39993
1.39996
1.40004
1.40008
1.40007
1.40003
1.39999
1.39998
1.39998
1.39999
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40002
1.40003
1.40005
1.40006
1.40008
1.40009
1.40011
1.40012
1.40012
1.40014
1.40014
1.40011
1.40011
1.40014
1.4001
1.40002
1.40002
1.40009
1.40007
1.39996
1.39989
1.39995
1.40006
1.40008
1.39997
1.39984
1.39983
1.39993
1.40005
1.40008
1.40003
1.39995
1.39993
1.39995
1.39998
1.40001
1.40002
1.40002
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40002
1.39999
1.40002
1.4
1.4
1.40001
1.4
1.40002
1.39997
1.40002
1.40004
1.39993
1.39997
1.4001
1.39996
1.39978
1.39995
1.4001
1.39994
1.39983
1.39997
1.40011
1.40008
1.39997
1.39991
1.39993
1.39999
1.40004
1.40006
1.40005
1.40003
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40002
1.40003
1.40004
1.40006
1.40009
1.40011
1.40014
1.40017
1.40019
1.40021
1.40023
1.40022
1.40025
1.40024
1.40017
1.40017
1.40024
1.40016
1.4
1.4
1.40014
1.40015
1.39997
1.3998
1.39982
1.40004
1.40021
1.40012
1.39987
1.39971
1.3998
1.40001
1.40013
1.4001
1.4
1.39992
1.39992
1.39995
1.39999
1.40001
1.40002
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.39998
1.40003
1.39998
1.40003
1.39996
1.40002
1.40006
1.39995
1.39998
1.40013
1.40004
1.39987
1.40013
1.40034
1.40007
1.39993
1.40016
1.40024
1.40005
1.39988
1.3999
1.40002
1.40009
1.40006
1.4
1.39994
1.39992
1.39994
1.39998
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40002
1.40003
1.40004
1.40007
1.4001
1.40013
1.40017
1.40021
1.40026
1.40031
1.40034
1.40037
1.40041
1.4004
1.40039
1.40044
1.40038
1.40024
1.40027
1.4004
1.40025
1.39996
1.39992
1.40017
1.40033
1.40012
1.39969
1.39952
1.39985
1.40035
1.40043
1.40005
1.39963
1.39962
1.39987
1.40015
1.40019
1.4001
1.39997
1.39991
1.39992
1.39996
1.39999
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40002
1.39999
1.40003
1.39997
1.40004
1.39997
1.40004
1.39999
1.40001
1.4
1.4
1.40009
1.39993
1.39997
1.40006
1.40005
1.39979
1.39999
1.40015
1.39973
1.39962
1.39994
1.39996
1.39976
1.39976
1.39996
1.40014
1.40012
1.40002
1.39998
1.39999
1.40005
1.40009
1.4001
1.40006
1.40002
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.40002
1.40003
1.40004
1.40007
1.4001
1.40014
1.4002
1.40026
1.40033
1.40041
1.40048
1.40055
1.40063
1.40066
1.4007
1.40073
1.40066
1.40064
1.40073
1.40058
1.40029
1.40036
1.40064
1.40046
1.3999
1.39966
1.40006
1.40065
1.4006
1.39975
1.39901
1.39933
1.4003
1.40085
1.40044
1.39973
1.39942
1.39965
1.40002
1.40024
1.40021
1.40009
1.39997
1.39993
1.39994
1.39997
1.39999
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40002
1.39998
1.40004
1.39996
1.40006
1.39994
1.40007
1.39993
1.40011
1.39987
1.39999
1.40007
1.40014
1.39985
1.40001
1.40032
1.39993
1.39999
1.4004
1.40033
1.40014
1.40023
1.40028
1.40019
1.40004
1.39991
1.3999
1.39993
1.39996
1.39996
1.39992
1.39992
1.39994
1.39998
1.40001
1.40002
1.40002
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40002
1.40004
1.40006
1.4001
1.40015
1.40021
1.40029
1.40039
1.4005
1.40062
1.40076
1.40089
1.40099
1.4011
1.40117
1.40118
1.40124
1.40122
1.40101
1.401
1.40117
1.40084
1.40025
1.40036
1.40097
1.40094
1.39997
1.39906
1.39949
1.40098
1.4016
1.4003
1.39852
1.3984
1.3998
1.40112
1.40095
1.40014
1.39938
1.3994
1.39974
1.4001
1.40025
1.4002
1.40009
1.39999
1.39995
1.39996
1.39998
1.39999
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.39999
1.40003
1.39997
1.40005
1.39994
1.40007
1.39993
1.40008
1.39996
1.40007
1.39994
1.40001
1.40015
1.40005
1.3998
1.39983
1.40036
1.39978
1.39976
1.40004
1.39982
1.39963
1.39978
1.39975
1.3996
1.39982
1.39997
1.39994
1.40003
1.40012
1.40012
1.40011
1.4001
1.40008
1.40005
1.40002
1.4
1.39998
1.39999
1.4
1.4
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40002
1.40003
1.40005
1.40009
1.40013
1.4002
1.40029
1.40041
1.40056
1.40072
1.40093
1.40113
1.40134
1.40156
1.40174
1.40187
1.40201
1.40202
1.40196
1.40204
1.40189
1.40141
1.40145
1.40183
1.40124
1.40006
1.40003
1.40134
1.402
1.40042
1.39805
1.39806
1.40086
1.40302
1.40162
1.39866
1.39729
1.39881
1.40075
1.40143
1.4007
1.39981
1.3993
1.39941
1.39976
1.40008
1.40023
1.40018
1.40008
1.4
1.39997
1.39998
1.39999
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40002
1.39998
1.40005
1.39994
1.4001
1.39988
1.40016
1.39983
1.40019
1.3998
1.40017
1.39981
1.40028
1.39978
1.39993
1.39982
1.40068
1.39982
1.39976
1.40026
1.40021
1.40012
1.4003
1.40029
1.40007
1.40045
1.40043
1.39991
1.39993
1.40011
1.39998
1.39987
1.3999
1.39988
1.39992
1.39998
1.39999
1.40004
1.40005
1.40003
1.40002
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40002
1.40004
1.40006
1.4001
1.40017
1.40026
1.40039
1.40055
1.40076
1.40101
1.4013
1.40162
1.40198
1.40232
1.40264
1.40295
1.40313
1.40328
1.40339
1.40321
1.40306
1.40319
1.4027
1.40175
1.40194
1.40283
1.40198
1.3996
1.39891
1.40141
1.40387
1.40194
1.3971
1.39555
1.39958
1.40404
1.40372
1.39997
1.39692
1.39765
1.39956
1.40135
1.4013
1.4006
1.39973
1.39929
1.39941
1.39977
1.40007
1.40019
1.40014
1.40006
1.40001
1.39999
1.39999
1.39999
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40002
1.39999
1.40002
1.39999
1.40002
1.39999
1.4
1.40002
1.39997
1.40006
1.39998
1.40013
1.39988
1.39998
1.40004
1.40052
1.39967
1.39934
1.40038
1.40015
1.39983
1.39967
1.39988
1.39952
1.40008
1.39995
1.39934
1.39998
1.40034
1.40006
1.39998
1.40007
1.40014
1.4001
1.40008
1.40004
1.39999
1.39998
1.39993
1.39996
1.39999
1.39998
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40002
1.40002
1.40004
1.40007
1.40012
1.40019
1.40031
1.40047
1.40069
1.40098
1.40133
1.40175
1.40224
1.40275
1.40331
1.40387
1.40434
1.40479
1.40513
1.40523
1.40534
1.4053
1.40471
1.40446
1.40472
1.40367
1.40177
1.40217
1.40429
1.4035
1.39892
1.39643
1.40062
1.40635
1.40504
1.39744
1.39273
1.39669
1.40307
1.40585
1.40231
1.39843
1.39675
1.39823
1.40003
1.40149
1.40142
1.40062
1.39972
1.39931
1.39948
1.39983
1.40007
1.40013
1.40009
1.40004
1.4
1.39999
1.39999
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40003
1.39996
1.40009
1.39986
1.40023
1.3997
1.4004
1.39955
1.40051
1.39944
1.4005
1.39946
1.40058
1.39967
1.40009
1.39919
1.40119
1.40002
1.39993
1.39955
1.40063
1.39989
1.4005
1.4004
1.39942
1.40044
1.40044
1.3995
1.39968
1.39997
1.39987
1.39985
1.39989
1.39995
1.40002
1.4
1.40005
1.40009
1.40006
1.40005
1.40003
1.40001
1.39999
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40002
1.40002
1.40002
1.40002
1.40003
1.40004
1.40007
1.40012
1.40021
1.40034
1.40054
1.40082
1.40119
1.40165
1.40223
1.4029
1.40366
1.40449
1.40533
1.40618
1.40693
1.40752
1.40804
1.40824
1.40813
1.40816
1.40769
1.40638
1.40613
1.40673
1.40477
1.40106
1.40164
1.40636
1.4065
1.39869
1.39258
1.39768
1.40788
1.40973
1.40042
1.39168
1.39251
1.39951
1.40566
1.4048
1.40152
1.3975
1.39698
1.39824
1.40035
1.40171
1.40148
1.4005
1.39968
1.39944
1.39965
1.39992
1.40006
1.40008
1.40004
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.39998
1.40006
1.39992
1.40014
1.39981
1.40028
1.39967
1.40037
1.39962
1.40037
1.39968
1.40035
1.39991
1.39992
1.39992
1.4
1.40085
1.39952
1.39921
1.39994
1.40086
1.39958
1.39955
1.40052
1.39903
1.4003
1.40034
1.39958
1.40005
1.4007
1.40031
1.39996
1.40035
1.40029
1.39996
1.40004
1.39998
1.39995
1.39996
1.39991
1.39997
1.39995
1.4
1.40004
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40002
1.40002
1.40003
1.40003
1.40004
1.40007
1.40012
1.40021
1.40035
1.40058
1.40091
1.40136
1.40195
1.40269
1.40359
1.40463
1.40578
1.40704
1.4083
1.40952
1.41065
1.41152
1.41212
1.41255
1.41233
1.41183
1.41172
1.41046
1.40791
1.40784
1.40959
1.4062
1.39916
1.39968
1.40863
1.41133
1.40017
1.38863
1.39199
1.40577
1.41383
1.40643
1.39537
1.38883
1.39454
1.40141
1.4062
1.40415
1.40074
1.39686
1.39669
1.39851
1.40074
1.4017
1.40116
1.40024
1.39972
1.39967
1.39983
1.39998
1.40003
1.40003
1.40002
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40002
1.39997
1.40005
1.39996
1.40006
1.39996
1.40003
1.40006
1.39981
1.40037
1.39949
1.40073
1.39902
1.40095
1.3988
1.40147
1.39923
1.40023
1.39828
1.40219
1.40021
1.39987
1.39822
1.40199
1.39928
1.40048
1.39995
1.39982
1.40002
1.40002
1.39976
1.39927
1.39982
1.40001
1.39949
1.39977
1.40017
1.39995
1.40001
1.40013
1.40001
1.40008
1.40008
1.4
1.39999
1.39998
1.40003
1.4
1.39999
1.40002
1.39999
1.4
1.40001
1.40001
1.40001
1.39999
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40002
1.40003
1.40003
1.40004
1.40006
1.40011
1.40019
1.40034
1.40058
1.40095
1.40146
1.40217
1.40308
1.40421
1.40556
1.40712
1.40882
1.41062
1.41246
1.41418
1.41574
1.41703
1.41778
1.41823
1.41826
1.41718
1.41619
1.41596
1.41331
1.40871
1.40941
1.41365
1.40846
1.396
1.39531
1.40929
1.41721
1.40556
1.38802
1.38414
1.39845
1.41341
1.414
1.40319
1.39066
1.39014
1.39529
1.4038
1.40604
1.40388
1.3995
1.39633
1.39699
1.3992
1.40088
1.40123
1.40066
1.40007
1.39984
1.39985
1.39993
1.39999
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.39999
1.40005
1.39991
1.40017
1.39973
1.40046
1.39931
1.40094
1.39886
1.40136
1.39844
1.40174
1.39879
1.401
1.39885
1.40011
1.40116
1.40029
1.3988
1.39835
1.40235
1.39971
1.39986
1.39982
1.39925
1.40081
1.40008
1.40019
1.39955
1.40086
1.40036
1.40005
1.40044
1.40014
1.4001
1.40006
1.39987
1.40004
1.39995
1.39992
1.39998
1.39994
1.40007
1.40002
1.39999
1.40002
1.39999
1.40003
1.40001
1.4
1.4
1.4
1.40002
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40002
1.40002
1.40003
1.40003
1.40004
1.40006
1.40009
1.40017
1.4003
1.40054
1.40092
1.40148
1.40228
1.40335
1.40471
1.40638
1.40834
1.41055
1.41298
1.41548
1.418
1.42039
1.42244
1.42416
1.42531
1.42564
1.42569
1.42486
1.42238
1.42086
1.42094
1.41595
1.4078
1.4104
1.41896
1.41212
1.3931
1.38855
1.4057
1.42099
1.41526
1.39485
1.37852
1.38688
1.40451
1.4198
1.41111
1.3995
1.38882
1.39185
1.39742
1.40553
1.40593
1.40265
1.39849
1.39674
1.398
1.39981
1.40068
1.40066
1.40029
1.40001
1.39993
1.39995
1.39998
1.4
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.40003
1.39995
1.4001
1.39986
1.40021
1.3997
1.40047
1.39936
1.40077
1.39925
1.40072
1.39938
1.40012
1.40035
1.39886
1.40177
1.39845
1.40161
1.39754
1.40215
1.39899
1.40147
1.39819
1.40235
1.39681
1.4016
1.40021
1.40116
1.39756
1.40063
1.40061
1.3991
1.40006
1.39953
1.39965
1.40034
1.39988
1.39974
1.40032
1.39995
1.39996
1.4002
1.39992
1.40001
1.4
1.39995
1.40008
1.39999
1.39996
1.39998
1.40002
1.40004
1.39998
1.4
1.40001
1.4
1.40002
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40002
1.40003
1.40004
1.40004
1.40005
1.40006
1.40009
1.40014
1.40026
1.40048
1.40084
1.40142
1.40226
1.40345
1.40501
1.40697
1.40934
1.41209
1.41513
1.41841
1.42178
1.42506
1.42819
1.43086
1.43298
1.43454
1.43508
1.43464
1.43407
1.43186
1.42716
1.42562
1.42666
1.41785
1.40466
1.40975
1.4246
1.41853
1.39368
1.38125
1.39519
1.4175
1.42714
1.40896
1.38129
1.37492
1.39137
1.41497
1.41641
1.40856
1.39458
1.39036
1.39343
1.4002
1.40606
1.40469
1.40101
1.39836
1.39794
1.39904
1.40007
1.40036
1.40026
1.4001
1.4
1.39998
1.39999
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.39999
1.40004
1.39996
1.40006
1.39995
1.40008
1.39987
1.40023
1.39973
1.40016
1.40021
1.39926
1.40134
1.39787
1.40351
1.39624
1.4034
1.39591
1.40376
1.39903
1.40008
1.398
1.40091
1.4035
1.39594
1.39962
1.40162
1.40277
1.39692
1.39828
1.40273
1.40019
1.40006
1.39864
1.40116
1.40049
1.39979
1.39991
1.39988
1.40031
1.39997
1.39975
1.40015
1.39996
1.39995
1.40013
1.39995
1.39999
1.39998
1.40008
1.40009
1.39991
1.39998
1.40001
1.40001
1.40002
1.39998
1.4
1.40001
1.4
1.40002
1.40001
1.40001
1.4
1.4
1.40003
1.40004
1.40005
1.40006
1.40007
1.40008
1.40012
1.40022
1.40039
1.40072
1.40127
1.40213
1.40337
1.40506
1.40728
1.41002
1.41326
1.41695
1.42098
1.42519
1.42949
1.43359
1.43738
1.44071
1.44329
1.44506
1.44608
1.44554
1.44413
1.4429
1.43845
1.43048
1.43022
1.43353
1.41923
1.39957
1.40594
1.42717
1.42719
1.40174
1.37863
1.37883
1.40252
1.43426
1.42599
1.39611
1.36706
1.38338
1.39974
1.41596
1.41036
1.40508
1.39245
1.39205
1.39599
1.4019
1.4048
1.40272
1.40001
1.39894
1.39908
1.39966
1.40006
1.40014
1.40009
1.40003
1.4
1.39999
1.39999
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.39999
1.40003
1.4
1.39995
1.40009
1.40007
1.39948
1.4013
1.39781
1.40309
1.39613
1.40435
1.39523
1.40325
1.39892
1.40174
1.39893
1.39622
1.40469
1.40021
1.40019
1.39374
1.4053
1.40041
1.40163
1.3933
1.40326
1.40099
1.40296
1.39462
1.4004
1.4026
1.39916
1.39932
1.39981
1.40046
1.40015
1.39977
1.39981
1.40039
1.39991
1.39982
1.40022
1.39984
1.40008
1.40013
1.39978
1.39997
1.40009
1.40011
1.40001
1.39993
1.40005
1.40001
1.39999
1.40002
1.4
1.40001
1.39998
1.39998
1.4
1.40001
1.40003
1.40004
1.40004
1.40005
1.40007
1.40008
1.40012
1.40017
1.40031
1.40058
1.40107
1.40188
1.40311
1.40488
1.40725
1.41029
1.41397
1.41825
1.423
1.42806
1.43325
1.43834
1.44319
1.44749
1.45126
1.45421
1.45624
1.45742
1.45758
1.45557
1.45317
1.45163
1.44359
1.43164
1.4343
1.44106
1.42165
1.394
1.39723
1.42261
1.43473
1.41837
1.38718
1.36172
1.38083
1.42827
1.43948
1.41302
1.3761
1.3809
1.38958
1.40484
1.40954
1.40822
1.40164
1.39234
1.39428
1.39863
1.40194
1.4027
1.40119
1.39979
1.39951
1.3997
1.39991
1.40003
1.40005
1.40002
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.39999
1.40002
1.39999
1.4
1.40006
1.39994
1.39992
1.40058
1.39861
1.40236
1.39685
1.40342
1.39696
1.4022
1.39974
1.39825
1.40422
1.39341
1.40659
1.3934
1.40782
1.39451
1.40166
1.39818
1.40159
1.40394
1.39554
1.39793
1.40026
1.40805
1.39562
1.39367
1.40464
1.40315
1.39881
1.39573
1.40302
1.40087
1.39879
1.40016
1.39982
1.40033
1.40003
1.39966
1.40029
1.40002
1.39978
1.40009
1.40007
1.4002
1.39986
1.39974
1.40013
1.40005
1.40001
1.40003
1.4
1.40003
1.40001
1.40005
1.40005
1.40001
1.4
1.4
1.40003
1.40005
1.40004
1.40005
1.40006
1.40007
1.4001
1.40015
1.40024
1.40045
1.40086
1.40156
1.40272
1.40445
1.40688
1.41011
1.41414
1.41893
1.42434
1.43018
1.43619
1.44218
1.44781
1.45299
1.4575
1.46129
1.46433
1.46664
1.46792
1.46855
1.46768
1.46394
1.46126
1.45995
1.44648
1.42935
1.43627
1.44837
1.42769
1.39286
1.38458
1.40679
1.43455
1.44009
1.40881
1.35227
1.36221
1.40785
1.44656
1.41428
1.39981
1.38451
1.39342
1.38992
1.40596
1.40703
1.40588
1.39918
1.39415
1.39688
1.4001
1.40117
1.40105
1.4004
1.39989
1.39984
1.39994
1.39999
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40003
1.39996
1.40003
1.40015
1.39941
1.40137
1.39781
1.40264
1.39773
1.40099
1.40141
1.39558
1.40694
1.39
1.4123
1.38813
1.4113
1.38882
1.40821
1.39831
1.39797
1.39851
1.4024
1.40661
1.388
1.40154
1.40551
1.40762
1.3848
1.40166
1.40528
1.40721
1.38823
1.39972
1.40667
1.39909
1.39729
1.39989
1.40181
1.39965
1.3995
1.40001
1.40027
1.4
1.39979
1.40039
1.39971
1.39971
1.40041
1.40016
1.39998
1.39984
1.39987
1.40008
1.39996
1.39999
1.39999
1.39996
1.4
1.40001
1.40005
1.40004
1.40004
1.40005
1.40005
1.40004
1.40005
1.40006
1.40009
1.40013
1.40019
1.40034
1.40064
1.40123
1.40224
1.40384
1.40623
1.4095
1.41375
1.41892
1.4249
1.43143
1.43822
1.44492
1.45123
1.45692
1.46177
1.46586
1.46913
1.4719
1.47408
1.47585
1.47671
1.47733
1.47556
1.46988
1.46804
1.46729
1.44714
1.4236
1.43362
1.45336
1.43822
1.40024
1.37452
1.38246
1.41955
1.45856
1.433
1.35996
1.35338
1.3891
1.43265
1.40782
1.4092
1.40121
1.39739
1.39045
1.39302
1.40744
1.40532
1.40228
1.39873
1.39694
1.39868
1.40034
1.4005
1.40027
1.40012
1.39999
1.39995
1.39998
1.39999
1.39999
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40006
1.3998
1.40056
1.3989
1.40165
1.39835
1.40065
1.4015
1.39554
1.40784
1.38899
1.41284
1.38806
1.41142
1.39
1.40333
1.40234
1.39702
1.40704
1.38469
1.41586
1.39356
1.404
1.38834
1.40857
1.40695
1.3934
1.39202
1.40124
1.4156
1.39468
1.38614
1.40642
1.40836
1.39789
1.39059
1.4062
1.40239
1.39648
1.40055
1.4004
1.40008
1.40013
1.39946
1.40019
1.40033
1.39994
1.39997
1.39956
1.40005
1.4005
1.40001
1.4
1.39997
1.39996
1.40004
1.39997
1.39998
1.39992
1.3999
1.39999
1.40004
1.40006
1.40004
1.40002
1.40003
1.40005
1.40008
1.40011
1.40017
1.40026
1.40048
1.40092
1.40173
1.40315
1.40533
1.40852
1.41281
1.41823
1.42465
1.43178
1.43925
1.44661
1.45347
1.45939
1.46428
1.46799
1.47077
1.47288
1.47481
1.4766
1.47866
1.48065
1.48212
1.48343
1.48058
1.47248
1.47329
1.47496
1.44744
1.41463
1.42303
1.45051
1.45197
1.41918
1.37327
1.35668
1.39303
1.46693
1.44346
1.38332
1.35154
1.40036
1.39811
1.40308
1.39513
1.41979
1.39972
1.39684
1.39037
1.39785
1.40658
1.4029
1.39997
1.39926
1.39896
1.39951
1.40016
1.4002
1.40005
1.40001
1.39999
1.39998
1.39999
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40018
1.39965
1.40062
1.39923
1.40043
1.40092
1.39664
1.40638
1.39103
1.41055
1.38964
1.40754
1.39772
1.39569
1.4093
1.38545
1.42331
1.37266
1.42448
1.37742
1.4212
1.38385
1.40886
1.39489
1.40207
1.40773
1.38906
1.39713
1.40526
1.41789
1.37818
1.39548
1.40877
1.41641
1.38044
1.39574
1.41257
1.40035
1.39382
1.39962
1.40415
1.39855
1.39899
1.40085
1.39998
1.39996
1.39949
1.40043
1.40053
1.39958
1.39969
1.39978
1.40014
1.40029
1.4
1.40007
1.40006
1.40012
1.40014
1.39999
1.39997
1.39998
1.4
1.40002
1.39999
1.4
1.40004
1.40007
1.40012
1.40015
1.40021
1.40036
1.40065
1.40128
1.40241
1.40433
1.40727
1.41142
1.4169
1.42358
1.4312
1.43929
1.4473
1.45462
1.46077
1.4654
1.46838
1.47001
1.4706
1.4709
1.47131
1.47274
1.47473
1.4781
1.48142
1.48448
1.48723
1.48289
1.47142
1.47617
1.48232
1.44966
1.40667
1.40605
1.43555
1.45852
1.44408
1.38923
1.33836
1.36939
1.45742
1.43883
1.40253
1.36652
1.4219
1.38782
1.38534
1.3891
1.41269
1.41466
1.39308
1.3966
1.39569
1.39974
1.40362
1.40126
1.39943
1.39966
1.39987
1.39987
1.40002
1.40006
1.39999
1.39998
1.39999
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.39999
1.40004
1.39992
1.39988
1.40003
1.40048
1.39831
1.40375
1.39393
1.40754
1.39309
1.40402
1.40093
1.39195
1.41715
1.37634
1.4272
1.36957
1.43207
1.37166
1.42014
1.38688
1.40414
1.41039
1.38188
1.41512
1.38668
1.4219
1.37039
1.41343
1.40884
1.40286
1.37743
1.40065
1.42385
1.39983
1.3746
1.40598
1.41566
1.39918
1.38232
1.4093
1.40627
1.39308
1.40029
1.40176
1.39938
1.40024
1.39999
1.39976
1.3999
1.39995
1.40075
1.40022
1.3994
1.39974
1.39983
1.40002
1.39999
1.39987
1.4001
1.40009
1.4001
1.40012
1.40002
1.39999
1.39996
1.39998
1.40002
1.40009
1.40013
1.40016
1.4002
1.40027
1.40048
1.4009
1.40176
1.40332
1.40586
1.40971
1.415
1.42176
1.42972
1.43835
1.44698
1.45485
1.46127
1.46566
1.46789
1.46795
1.46654
1.46431
1.4623
1.46111
1.46169
1.46421
1.46806
1.474
1.47986
1.48521
1.49069
1.48209
1.46456
1.47441
1.4897
1.45727
1.40507
1.38517
1.40992
1.45542
1.46275
1.41298
1.33132
1.37071
1.43235
1.43015
1.37887
1.40905
1.4213
1.4163
1.36381
1.39398
1.3977
1.41576
1.40457
1.39194
1.39868
1.39966
1.39973
1.40111
1.4006
1.39973
1.39984
1.40006
1.39998
1.39996
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.39999
1.40002
1.39998
1.40004
1.39994
1.4001
1.39937
1.40142
1.39738
1.40384
1.39596
1.4021
1.40252
1.39123
1.41537
1.37862
1.42653
1.37213
1.42142
1.38689
1.40945
1.40116
1.37835
1.43419
1.36605
1.43929
1.34876
1.4492
1.36884
1.41726
1.38052
1.41891
1.40328
1.38678
1.39253
1.40623
1.42682
1.37682
1.38609
1.40885
1.42759
1.37709
1.38746
1.41804
1.40367
1.38988
1.39809
1.40788
1.39769
1.39738
1.40195
1.39975
1.40029
1.39982
1.39909
1.40033
1.40059
1.40057
1.40003
1.39974
1.39995
1.3998
1.39983
1.39982
1.3998
1.40006
1.40009
1.4
1.39999
1.39996
1.40004
1.40011
1.40013
1.40016
1.40016
1.40023
1.40035
1.40062
1.40124
1.40239
1.40448
1.40782
1.41271
1.41931
1.42738
1.43645
1.4457
1.45421
1.46105
1.46549
1.46706
1.46578
1.4622
1.45714
1.45191
1.44745
1.4451
1.44466
1.44776
1.45272
1.45989
1.46923
1.47781
1.48561
1.49496
1.47932
1.45402
1.46559
1.48965
1.46847
1.41647
1.3744
1.37899
1.43462
1.47298
1.42956
1.33659
1.39
1.41191
1.42056
1.33747
1.42633
1.42725
1.4251
1.37907
1.37963
1.4074
1.39922
1.40803
1.40128
1.39498
1.39954
1.40083
1.3998
1.40002
1.40032
1.39999
1.39988
1.39999
1.4
1.39999
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39998
1.40005
1.3999
1.40026
1.40106
1.39872
1.40067
1.4017
1.39386
1.41189
1.38326
1.41888
1.38225
1.41382
1.39496
1.39111
1.42552
1.36396
1.44215
1.34421
1.4678
1.33948
1.44541
1.36437
1.42479
1.39248
1.38881
1.42439
1.37034
1.43816
1.35536
1.4252
1.39305
1.42835
1.36011
1.40038
1.42154
1.41514
1.36452
1.40097
1.42076
1.40516
1.37464
1.40816
1.41233
1.39038
1.39839
1.40433
1.39907
1.39884
1.40076
1.40058
1.39975
1.39887
1.39958
1.40052
1.40038
1.40053
1.40026
1.40012
1.40018
1.39981
1.39985
1.39999
1.4
1.40004
1.40006
1.40008
1.40013
1.40015
1.4001
1.40014
1.40018
1.40026
1.40047
1.40083
1.40166
1.40323
1.40594
1.41025
1.41635
1.42431
1.43363
1.44345
1.4527
1.46021
1.46499
1.46637
1.46418
1.4587
1.45106
1.44245
1.43446
1.4282
1.42483
1.42459
1.42735
1.43462
1.44293
1.45338
1.46592
1.47501
1.4882
1.50187
1.47704
1.43899
1.4496
1.48021
1.47883
1.4325
1.37419
1.36359
1.40945
1.47288
1.41363
1.35801
1.40971
1.43707
1.38186
1.34549
1.38262
1.45321
1.40607
1.40731
1.37533
1.39747
1.40963
1.39727
1.40196
1.4013
1.39794
1.39945
1.40072
1.4001
1.39976
1.40002
1.40004
1.39996
1.39999
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.39999
1.40004
1.39995
1.4001
1.39984
1.40034
1.39936
1.4009
1.39726
1.40587
1.39044
1.41206
1.38894
1.40575
1.40298
1.38702
1.4248
1.36138
1.44927
1.34969
1.44603
1.35763
1.43585
1.38611
1.38775
1.42653
1.35644
1.46692
1.32574
1.46362
1.34776
1.45083
1.34761
1.43281
1.40163
1.39901
1.37561
1.40764
1.42855
1.38971
1.37323
1.40692
1.43105
1.38499
1.37672
1.41947
1.40919
1.38762
1.3946
1.41093
1.39838
1.39529
1.40315
1.39938
1.39967
1.40193
1.39963
1.39908
1.39921
1.39951
1.39996
1.40015
1.40049
1.40037
1.40009
1.40011
1.39993
1.39987
1.40003
1.40007
1.40016
1.40013
1.40007
1.4001
1.40013
1.40023
1.40033
1.40058
1.40112
1.40219
1.40429
1.40779
1.41318
1.42067
1.42994
1.44026
1.45029
1.45868
1.4642
1.4659
1.46335
1.45675
1.44696
1.43537
1.42386
1.41382
1.40679
1.40286
1.40356
1.40691
1.41477
1.42614
1.43799
1.45082
1.46553
1.47162
1.49088
1.50713
1.47934
1.43015
1.42639
1.45504
1.47701
1.45474
1.38496
1.35464
1.39637
1.47167
1.37988
1.37522
1.40931
1.49353
1.34962
1.3702
1.3623
1.43482
1.41664
1.39208
1.40627
1.38536
1.40112
1.40656
1.39748
1.39935
1.40134
1.39983
1.39939
1.40012
1.40016
1.3999
1.39995
1.40003
1.40002
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.39999
1.40002
1.39999
1.40003
1.39996
1.40009
1.39991
1.3999
1.39671
1.40483
1.39489
1.40251
1.40405
1.38657
1.42295
1.37018
1.43408
1.36421
1.43292
1.38209
1.39535
1.42065
1.3663
1.46142
1.30738
1.49892
1.31276
1.48906
1.31151
1.46224
1.37466
1.39812
1.41677
1.37031
1.45184
1.33678
1.44697
1.35973
1.46108
1.34558
1.41014
1.40031
1.43297
1.36587
1.39243
1.42065
1.41023
1.37497
1.40198
1.41736
1.39145
1.39417
1.40596
1.40087
1.39674
1.39956
1.40127
1.40136
1.40069
1.39997
1.39975
1.39893
1.39914
1.39994
1.40007
1.4003
1.40022
1.3999
1.39981
1.39991
1.39996
1.40001
1.4
1.40001
1.40015
1.4002
1.40028
1.40045
1.40073
1.40148
1.40291
1.4056
1.41008
1.41669
1.4256
1.43608
1.44689
1.4564
1.46298
1.46551
1.46332
1.45634
1.4452
1.43141
1.41665
1.40305
1.39211
1.38493
1.3818
1.38277
1.38849
1.39575
1.40883
1.42449
1.43913
1.45437
1.46536
1.46684
1.49082
1.51206
1.48029
1.42866
1.40762
1.43128
1.46155
1.45502
1.39941
1.35376
1.41792
1.45169
1.35038
1.36025
1.42499
1.48773
1.39643
1.34144
1.39972
1.388
1.43477
1.39179
1.39289
1.40788
1.39281
1.39936
1.40403
1.39939
1.39866
1.40045
1.40044
1.39974
1.39985
1.40007
1.40004
1.4
1.40002
1.40002
1.40001
1.40001
1.4
1.40001
1.39999
1.40003
1.39996
1.40007
1.39987
1.40033
1.39919
1.4018
1.40045
1.4023
1.39242
1.41472
1.3789
1.4236
1.37963
1.41296
1.39714
1.38903
1.43125
1.34515
1.47113
1.3282
1.4769
1.31251
1.47758
1.35898
1.40951
1.40923
1.36016
1.4713
1.31793
1.48475
1.31017
1.4876
1.3292
1.44396
1.3737
1.43347
1.36138
1.41528
1.40129
1.42196
1.35939
1.41375
1.41462
1.40244
1.37239
1.41318
1.41481
1.3874
1.39208
1.41229
1.39965
1.39385
1.40469
1.39924
1.39581
1.40122
1.40094
1.40066
1.40168
1.40056
1.39939
1.39906
1.39946
1.40028
1.40026
1.40011
1.4002
1.40006
1.4
1.39991
1.39997
1.40011
1.4002
1.40028
1.40035
1.40056
1.40096
1.40191
1.40384
1.40722
1.4128
1.42082
1.43105
1.44246
1.45311
1.46116
1.46501
1.46375
1.45719
1.44571
1.43046
1.41326
1.39635
1.38152
1.37052
1.36367
1.36192
1.36362
1.37067
1.38041
1.39206
1.40876
1.42894
1.4444
1.46351
1.46734
1.46378
1.48098
1.50845
1.48681
1.43856
1.3962
1.4027
1.45122
1.45196
1.39839
1.34213
1.4577
1.43866
1.3542
1.30606
1.4666
1.42162
1.446
1.3456
1.40144
1.40123
1.39139
1.42253
1.3893
1.39564
1.40714
1.39751
1.39761
1.40166
1.40085
1.39928
1.3997
1.40021
1.40006
1.39996
1.40001
1.40003
1.40001
1.40001
1.4
1.40001
1.39999
1.40002
1.39997
1.40006
1.39988
1.40029
1.3994
1.40103
1.39879
1.40578
1.39043
1.4123
1.38863
1.40507
1.4061
1.38131
1.43002
1.36005
1.45125
1.34145
1.4546
1.36367
1.41424
1.40155
1.37209
1.47496
1.28948
1.52107
1.26764
1.55053
1.2637
1.49637
1.33243
1.44669
1.38702
1.37512
1.45214
1.33352
1.4717
1.32297
1.48167
1.33321
1.43667
1.37534
1.43084
1.38354
1.38272
1.42315
1.40461
1.38316
1.39772
1.41505
1.39639
1.39089
1.40436
1.40512
1.39883
1.39875
1.39888
1.39819
1.39918
1.40029
1.40182
1.40166
1.39971
1.3993
1.39955
1.3997
1.40022
1.40044
1.40019
1.40014
1.40011
1.40014
1.40024
1.40021
1.40032
1.40043
1.40066
1.40127
1.40248
1.40495
1.40925
1.416
1.4255
1.43692
1.44867
1.45843
1.46403
1.46436
1.45887
1.44787
1.43222
1.41351
1.39381
1.37541
1.36008
1.34905
1.34295
1.34177
1.3456
1.35264
1.36594
1.37882
1.39339
1.41318
1.43636
1.45467
1.47526
1.47064
1.45945
1.47271
1.49168
1.48283
1.44202
1.40348
1.39459
1.43845
1.44544
1.37102
1.35834
1.48225
1.43809
1.36794
1.2933
1.44399
1.43725
1.40024
1.4105
1.35737
1.42647
1.39379
1.39308
1.41458
1.39349
1.39515
1.40446
1.40117
1.39813
1.39957
1.40061
1.40009
1.39985
1.4
1.40005
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.39998
1.40006
1.39993
1.39988
1.40089
1.39732
1.39593
1.40171
1.40456
1.38582
1.42455
1.36837
1.43325
1.36963
1.4252
1.38354
1.39667
1.43388
1.3389
1.47865
1.30832
1.51859
1.26787
1.50954
1.32498
1.45681
1.37002
1.37738
1.46095
1.32364
1.4963
1.2885
1.49724
1.32385
1.47228
1.33231
1.45534
1.3488
1.45305
1.34785
1.4581
1.3375
1.44194
1.3872
1.40992
1.38272
1.40053
1.42169
1.38784
1.38821
1.4146
1.39929
1.38832
1.40683
1.40653
1.39669
1.40018
1.39977
1.39635
1.39907
1.40163
1.40153
1.40063
1.39922
1.39925
1.39988
1.39976
1.39989
1.40006
1.40015
1.40021
1.40022
1.40023
1.4003
1.40048
1.4008
1.4016
1.40322
1.4063
1.41167
1.41976
1.43063
1.44298
1.45436
1.46229
1.46469
1.46091
1.45113
1.43597
1.41678
1.39528
1.37377
1.35414
1.33832
1.32713
1.32143
1.3206
1.32577
1.33461
1.34797
1.36635
1.38321
1.39827
1.42198
1.44306
1.46538
1.48447
1.47922
1.45254
1.45524
1.46787
1.47948
1.44444
1.39064
1.3918
1.44307
1.46046
1.32218
1.36771
1.4767
1.46554
1.3412
1.38185
1.35857
1.46872
1.3671
1.42028
1.39792
1.37708
1.42396
1.39078
1.39256
1.41009
1.40018
1.39561
1.40019
1.40156
1.39992
1.39953
1.40003
1.40012
1.40003
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.39999
1.40003
1.39995
1.40018
1.39946
1.40133
1.39744
1.40385
1.39395
1.41208
1.38206
1.42053
1.38281
1.40797
1.40428
1.38354
1.42929
1.35478
1.46573
1.32279
1.47125
1.34543
1.44155
1.37477
1.37966
1.48012
1.28325
1.54113
1.22409
1.59816
1.22132
1.55697
1.25305
1.51092
1.34909
1.41221
1.41255
1.34744
1.484
1.31448
1.48372
1.31762
1.45637
1.38015
1.40262
1.41186
1.36322
1.43796
1.39542
1.38277
1.4039
1.40929
1.40142
1.39418
1.39747
1.40026
1.39874
1.4018
1.40383
1.40126
1.39935
1.39754
1.39779
1.40083
1.40147
1.40064
1.40048
1.39979
1.39946
1.39989
1.39994
1.40001
1.40013
1.40011
1.40024
1.40034
1.40057
1.40105
1.40201
1.40414
1.40799
1.41448
1.42406
1.43612
1.44886
1.45914
1.46429
1.46293
1.45486
1.441
1.42224
1.4001
1.37639
1.35313
1.33223
1.3153
1.30379
1.29794
1.29807
1.30345
1.31514
1.32854
1.34877
1.37206
1.39152
1.40697
1.43161
1.44934
1.47454
1.48963
1.4813
1.45641
1.44493
1.44863
1.45709
1.44083
1.38288
1.39073
1.45567
1.4424
1.31003
1.37215
1.44811
1.49566
1.31903
1.40515
1.37871
1.41052
1.43493
1.35818
1.42811
1.38913
1.38715
1.41936
1.39715
1.39136
1.40277
1.40305
1.399
1.39897
1.40024
1.40028
1.39999
1.39998
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40002
1.39997
1.40014
1.39965
1.40066
1.39918
1.40027
1.40183
1.40827
1.3922
1.40295
1.40665
1.38142
1.42909
1.36475
1.43793
1.36026
1.43899
1.36968
1.40436
1.43013
1.34242
1.48035
1.29035
1.54882
1.24245
1.54007
1.27582
1.50949
1.33491
1.40809
1.42027
1.35564
1.48078
1.3073
1.47285
1.32944
1.48314
1.331
1.45246
1.32679
1.49774
1.30544
1.49391
1.30103
1.47019
1.38158
1.39489
1.40617
1.38171
1.4245
1.39727
1.37648
1.41716
1.41476
1.38449
1.39358
1.40536
1.39803
1.4003
1.4053
1.40055
1.39732
1.39816
1.3994
1.40115
1.40114
1.4002
1.40036
1.40029
1.40008
1.40015
1.40015
1.40017
1.40034
1.40052
1.40074
1.40133
1.40259
1.40523
1.41005
1.41775
1.42877
1.44182
1.45421
1.46258
1.46425
1.45875
1.44662
1.42907
1.40734
1.38266
1.35689
1.33153
1.30875
1.29027
1.27806
1.27243
1.27366
1.28071
1.2939
1.31111
1.32885
1.35354
1.38232
1.40189
1.42091
1.44139
1.4572
1.47802
1.49694
1.48289
1.45706
1.42631
1.44106
1.46172
1.43086
1.36248
1.37004
1.5017
1.41962
1.32428
1.37133
1.43419
1.42954
1.4128
1.3448
1.45378
1.34675
1.43119
1.40243
1.37619
1.42873
1.39095
1.38608
1.40964
1.40434
1.39606
1.39843
1.40108
1.4005
1.39982
1.39992
1.40003
1.40002
1.40001
1.4
1.40001
1.40001
1.4
1.39999
1.40006
1.3999
1.40006
1.40036
1.39854
1.40351
1.39383
1.40304
1.39024
1.41775
1.37612
1.42504
1.37965
1.41175
1.39747
1.39185
1.42404
1.35295
1.47284
1.31662
1.47961
1.32852
1.46343
1.36224
1.38116
1.47374
1.28713
1.55827
1.19162
1.63132
1.17269
1.6329
1.17595
1.57328
1.28154
1.48922
1.35494
1.37662
1.46356
1.32916
1.48578
1.31091
1.44445
1.41244
1.36188
1.45329
1.33173
1.44551
1.41079
1.36716
1.40965
1.40716
1.39133
1.40018
1.40863
1.40356
1.39429
1.39478
1.40013
1.4015
1.40252
1.40203
1.39874
1.39821
1.39928
1.39932
1.40011
1.40055
1.40013
1.40019
1.40023
1.40017
1.40036
1.40047
1.4006
1.40087
1.40161
1.40332
1.40657
1.41241
1.42153
1.43379
1.44742
1.45873
1.46429
1.46213
1.45242
1.43665
1.41595
1.39163
1.36464
1.33638
1.30835
1.28281
1.26277
1.24987
1.2451
1.24764
1.25781
1.27299
1.29414
1.31439
1.33533
1.36295
1.39466
1.41504
1.43794
1.45087
1.46411
1.47576
1.48704
1.47681
1.45598
1.42228
1.42669
1.4627
1.42502
1.359
1.37529
1.50119
1.41059
1.34024
1.34861
1.48685
1.36243
1.44817
1.34555
1.40543
1.43167
1.36025
1.43679
1.38614
1.38042
1.42121
1.40299
1.39021
1.39949
1.40308
1.40029
1.3993
1.39991
1.40012
1.40003
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40003
1.4
1.39986
1.40055
1.39875
1.40206
1.3977
1.40096
1.39002
1.41212
1.38961
1.40376
1.40665
1.38252
1.426
1.36796
1.43839
1.3543
1.44684
1.36423
1.40587
1.42518
1.34769
1.48292
1.27717
1.56208
1.23041
1.56794
1.23557
1.54585
1.29852
1.46323
1.35759
1.4093
1.42376
1.37628
1.41128
1.37941
1.42714
1.38602
1.42558
1.32561
1.51093
1.27871
1.53275
1.27542
1.46425
1.41043
1.3581
1.43506
1.37651
1.40678
1.42511
1.37471
1.38528
1.41773
1.40587
1.3956
1.40186
1.39806
1.39494
1.40095
1.40318
1.40153
1.40042
1.39891
1.3989
1.39979
1.39964
1.39974
1.40003
1.39998
1.40015
1.40034
1.40037
1.40052
1.40102
1.40202
1.40416
1.40821
1.41515
1.42572
1.43908
1.45259
1.46211
1.46419
1.45798
1.44439
1.42536
1.40208
1.37531
1.34584
1.31432
1.28277
1.25412
1.23259
1.21973
1.21573
1.22031
1.23304
1.25213
1.27541
1.30299
1.32543
1.34667
1.37643
1.40697
1.4301
1.45079
1.4593
1.46253
1.4715
1.47627
1.4764
1.43732
1.4012
1.42386
1.47139
1.42911
1.31787
1.40526
1.4626
1.41402
1.38594
1.35624
1.42723
1.40642
1.37138
1.46199
1.33665
1.43488
1.3924
1.37475
1.43558
1.39611
1.38176
1.40489
1.40614
1.3985
1.39838
1.40024
1.40031
1.4
1.4
1.40001
1.39999
1.4
1.40001
1.39999
1.40001
1.40004
1.39985
1.40036
1.39948
1.40038
1.40058
1.39723
1.40623
1.40149
1.40395
1.38825
1.4196
1.37552
1.42463
1.37894
1.41571
1.38982
1.39871
1.42102
1.35277
1.4718
1.32038
1.4801
1.3224
1.46714
1.36486
1.38266
1.46398
1.28828
1.5691
1.17945
1.64818
1.13364
1.6843
1.12765
1.63059
1.20784
1.55326
1.31648
1.4036
1.44733
1.32088
1.50424
1.31378
1.41496
1.4563
1.30875
1.50111
1.32392
1.40726
1.44868
1.3586
1.39375
1.43292
1.39826
1.37717
1.39651
1.41279
1.40584
1.39652
1.39682
1.39818
1.39909
1.40139
1.40147
1.40065
1.40081
1.40016
1.39971
1.40002
1.40002
1.4001
1.40031
1.40027
1.40034
1.40067
1.4013
1.40259
1.40517
1.41013
1.41834
1.43022
1.4444
1.45709
1.46403
1.46232
1.45204
1.43509
1.41323
1.38766
1.35841
1.32578
1.2902
1.25426
1.22276
1.19987
1.1874
1.18411
1.19068
1.20585
1.22869
1.25509
1.28601
1.317
1.34121
1.36238
1.39115
1.41738
1.44593
1.46369
1.47249
1.4663
1.46437
1.45947
1.46732
1.43305
1.38433
1.41781
1.45445
1.4279
1.31108
1.4309
1.45274
1.40226
1.34517
1.4359
1.35563
1.47864
1.33492
1.41713
1.41592
1.36318
1.44607
1.38526
1.37448
1.41742
1.40767
1.39323
1.3979
1.40159
1.40044
1.3998
1.39999
1.40002
1.39998
1.4
1.40002
1.4
1.39999
1.40005
1.3999
1.40014
1.39997
1.39963
1.40127
1.39744
1.40377
1.39618
1.40813
1.38798
1.41353
1.389
1.40447
1.40412
1.38779
1.41922
1.37333
1.4365
1.35457
1.44342
1.37042
1.4003
1.42511
1.34643
1.48815
1.2726
1.55964
1.22862
1.58229
1.21719
1.56735
1.26018
1.52177
1.29409
1.48126
1.3313
1.47968
1.31128
1.48473
1.31834
1.47
1.38109
1.34251
1.51986
1.24326
1.5633
1.28767
1.40896
1.47475
1.32357
1.42903
1.41163
1.36738
1.41276
1.41986
1.39261
1.39081
1.39812
1.40129
1.40599
1.40366
1.39684
1.39667
1.39932
1.40007
1.40072
1.40068
1.40021
1.40041
1.40038
1.40024
1.40039
1.40037
1.40036
1.40062
1.401
1.40165
1.40321
1.40645
1.41236
1.42194
1.43502
1.44944
1.46069
1.46438
1.45876
1.44472
1.4248
1.40062
1.37273
1.34075
1.30401
1.26355
1.2229
1.18864
1.16465
1.15186
1.1495
1.15762
1.17629
1.20254
1.23359
1.26469
1.30043
1.33362
1.35874
1.38071
1.40792
1.43281
1.45913
1.47428
1.47636
1.46475
1.44993
1.45881
1.4651
1.42047
1.36986
1.4149
1.47317
1.40163
1.34963
1.39578
1.41993
1.44183
1.34988
1.43839
1.36647
1.38879
1.45554
1.3442
1.44538
1.3792
1.3713
1.43587
1.40309
1.38419
1.40045
1.40427
1.39973
1.3993
1.40015
1.40006
1.39994
1.40001
1.40003
1.4
1.39999
1.40003
1.39997
1.39999
1.40017
1.39954
1.40088
1.39888
1.40076
1.40082
1.39609
1.39544
1.40165
1.40402
1.38885
1.4175
1.37899
1.42143
1.3798
1.41722
1.3874
1.39855
1.42287
1.35339
1.46482
1.3296
1.47309
1.32949
1.45605
1.37481
1.38297
1.45838
1.29175
1.56164
1.19259
1.63976
1.13199
1.68509
1.12393
1.6472
1.18999
1.55114
1.33521
1.37746
1.48963
1.26742
1.5341
1.3317
1.36104
1.5248
1.25286
1.49897
1.39069
1.34
1.45894
1.4088
1.35247
1.39877
1.43192
1.40492
1.38207
1.39278
1.40576
1.4049
1.4014
1.40002
1.39884
1.39901
1.39954
1.39936
1.39973
1.40013
1.40009
1.4002
1.40021
1.4002
1.40046
1.40074
1.40107
1.40193
1.40395
1.40796
1.41497
1.42585
1.43997
1.45402
1.46313
1.46324
1.45369
1.4364
1.41387
1.38766
1.35733
1.32193
1.28029
1.2341
1.1889
1.15164
1.12624
1.11222
1.11026
1.1204
1.14292
1.17424
1.21064
1.24636
1.28045
1.31669
1.35082
1.37811
1.40233
1.42204
1.44323
1.46104
1.47721
1.47591
1.46554
1.43691
1.44606
1.46348
1.41127
1.38436
1.40176
1.47615
1.35205
1.38579
1.42067
1.4124
1.39136
1.40682
1.35927
1.48003
1.32994
1.43102
1.39236
1.37039
1.45249
1.38909
1.37444
1.4097
1.407
1.39684
1.39888
1.40078
1.4
1.39981
1.40006
1.40006
1.39999
1.39999
1.40001
1.40002
1.39994
1.40016
1.39975
1.40028
1.39997
1.39931
1.40201
1.39635
1.4049
1.39563
1.40842
1.38831
1.41253
1.38988
1.40505
1.40107
1.39281
1.41404
1.37741
1.43215
1.36218
1.43047
1.38429
1.39043
1.43042
1.34198
1.4889
1.27948
1.54534
1.23975
1.57417
1.22319
1.57098
1.23816
1.55818
1.24673
1.54949
1.24183
1.57697
1.21157
1.58729
1.23089
1.51685
1.3777
1.31338
1.57003
1.20332
1.54534
1.37816
1.30427
1.51244
1.36314
1.36087
1.44184
1.41401
1.37282
1.38853
1.41425
1.41194
1.39572
1.38923
1.39701
1.4047
1.40326
1.39985
1.39952
1.39984
1.39989
1.39998
1.39985
1.39992
1.40006
1.4001
1.40029
1.4005
1.40064
1.40111
1.40235
1.40492
1.40971
1.41792
1.43006
1.44482
1.45797
1.46427
1.46069
1.44746
1.42732
1.40265
1.37435
1.34138
1.3017
1.25445
1.20212
1.15229
1.11175
1.08383
1.06844
1.06628
1.07896
1.10501
1.14204
1.18469
1.22893
1.26618
1.30059
1.33489
1.36804
1.39402
1.4193
1.43772
1.45534
1.46535
1.47612
1.47232
1.44754
1.42469
1.44103
1.46198
1.3937
1.37292
1.40837
1.46545
1.38505
1.37533
1.38615
1.44061
1.36076
1.46481
1.3374
1.40376
1.42821
1.36407
1.45684
1.37166
1.37026
1.42678
1.40547
1.39086
1.4
1.40206
1.39945
1.39963
1.40026
1.40009
1.39993
1.39998
1.40001
1.40003
1.39997
1.40006
1.39998
1.39992
1.40038
1.39918
1.40133
1.39847
1.40092
1.40103
1.40497
1.39567
1.40146
1.40342
1.391
1.41374
1.38351
1.41755
1.38252
1.41432
1.39215
1.39263
1.42604
1.35634
1.45458
1.34181
1.45929
1.3457
1.43917
1.38574
1.38274
1.45179
1.30667
1.53431
1.22947
1.59929
1.17642
1.63333
1.17617
1.59507
1.25296
1.47235
1.42032
1.2922
1.56817
1.22293
1.51154
1.41668
1.25835
1.58186
1.29068
1.39156
1.4755
1.35063
1.37347
1.43987
1.41597
1.37317
1.38869
1.41463
1.40934
1.39688
1.39538
1.39785
1.39949
1.40085
1.40096
1.40032
1.40029
1.40033
1.40022
1.40018
1.40017
1.4003
1.40048
1.40054
1.40076
1.40149
1.40305
1.40611
1.41176
1.42118
1.43452
1.44945
1.46104
1.46418
1.45685
1.4404
1.41775
1.39125
1.36078
1.32465
1.28005
1.22642
1.16798
1.11306
1.06873
1.03758
1.02103
1.01941
1.03457
1.06491
1.10693
1.15546
1.20572
1.25265
1.29051
1.32306
1.35331
1.38412
1.41365
1.43862
1.45564
1.4625
1.46562
1.4645
1.46882
1.43915
1.41149
1.43404
1.43937
1.40629
1.36977
1.44185
1.39959
1.39274
1.4062
1.38952
1.42531
1.37159
1.37845
1.46649
1.3503
1.44303
1.36595
1.37442
1.44656
1.39515
1.38349
1.405
1.40313
1.39784
1.39977
1.40076
1.39999
1.3998
1.4
1.40004
1.40001
1.39999
1.4
1.40005
1.39987
1.40026
1.39965
1.40032
1.40008
1.39902
1.40242
1.396
1.40115
1.3959
1.40738
1.39024
1.41022
1.39162
1.4048
1.39978
1.39492
1.41185
1.38073
1.42477
1.37454
1.41471
1.39856
1.38157
1.43471
1.343
1.47923
1.29911
1.51855
1.26807
1.54296
1.25267
1.54963
1.24722
1.55858
1.2335
1.57931
1.20083
1.61792
1.17528
1.60929
1.24101
1.46332
1.46182
1.2296
1.61004
1.25075
1.40981
1.51142
1.28187
1.42463
1.45715
1.36833
1.36299
1.42224
1.42608
1.38716
1.38213
1.4034
1.41138
1.403
1.39631
1.39789
1.40056
1.4003
1.3997
1.39991
1.40004
1.40008
1.40014
1.40025
1.40037
1.4004
1.40053
1.40099
1.40193
1.40377
1.40742
1.4141
1.42478
1.43906
1.45368
1.46311
1.4629
1.45201
1.43271
1.40801
1.37968
1.34699
1.30707
1.257
1.19659
1.13185
1.07144
1.02244
0.988273
0.970462
0.970039
0.987788
1.02342
1.07155
1.12599
1.18015
1.23288
1.27843
1.31556
1.34647
1.37662
1.40238
1.42835
1.44924
1.46584
1.46417
1.46494
1.46536
1.4578
1.42533
1.3995
1.44859
1.42659
1.40087
1.35211
1.44531
1.41084
1.39528
1.38829
1.40392
1.37122
1.4791
1.3418
1.41536
1.38544
1.38097
1.45796
1.37675
1.37943
1.41536
1.40171
1.39516
1.40107
1.40139
1.39942
1.39961
1.40013
1.4001
1.39999
1.39999
1.39999
1.40004
1.39996
1.40005
1.40002
1.39981
1.40054
1.39899
1.40147
1.39847
1.40078
1.39641
1.40417
1.3966
1.40101
1.4027
1.39325
1.41028
1.38752
1.41345
1.38738
1.40815
1.39985
1.38672
1.42613
1.36284
1.44182
1.35648
1.44169
1.36429
1.42335
1.39435
1.384
1.44124
1.33067
1.49621
1.27983
1.53933
1.24784
1.55147
1.26494
1.49904
1.35829
1.36486
1.51571
1.22584
1.58036
1.28769
1.38154
1.54601
1.22155
1.48933
1.43328
1.32258
1.41904
1.44286
1.38587
1.36977
1.41051
1.41678
1.39517
1.39083
1.39816
1.40225
1.40271
1.40134
1.39947
1.39915
1.4
1.40018
1.39985
1.39986
1.4001
1.40025
1.40029
1.40036
1.40065
1.40121
1.40226
1.4045
1.40894
1.41673
1.42864
1.44354
1.45731
1.46419
1.46053
1.44644
1.42465
1.39821
1.36811
1.33287
1.28878
1.23268
1.16549
1.09407
1.02786
0.973895
0.936978
0.917932
0.917942
0.938372
0.978706
1.034
1.09629
1.15754
1.21267
1.26205
1.30399
1.3403
1.36916
1.39502
1.41802
1.44144
1.45971
1.47101
1.46753
1.45189
1.45628
1.45149
1.42245
1.39621
1.42858
1.42321
1.39442
1.39313
1.40969
1.40022
1.40433
1.3838
1.45555
1.35009
1.38855
1.42355
1.3802
1.45254
1.36116
1.38266
1.42861
1.39502
1.39276
1.40437
1.40122
1.39815
1.39974
1.40052
1.40009
1.39991
1.39998
1.40001
1.40001
1.40001
1.39998
1.40008
1.39984
1.40028
1.39967
1.40022
1.40023
1.39889
1.40236
1.40044
1.40115
1.39663
1.4057
1.39275
1.40747
1.39393
1.40341
1.40051
1.39499
1.41056
1.38497
1.41592
1.38673
1.40255
1.40741
1.37858
1.43213
1.35401
1.45869
1.32914
1.48158
1.31003
1.49697
1.29792
1.508
1.2836
1.52708
1.25816
1.55913
1.22319
1.5848
1.22599
1.53118
1.35023
1.3409
1.55464
1.21748
1.51223
1.419
1.29014
1.48943
1.40331
1.34752
1.4026
1.44057
1.39628
1.37395
1.40425
1.41431
1.39996
1.39359
1.39784
1.40104
1.40023
1.39949
1.40024
1.40052
1.4001
1.40011
1.40036
1.40033
1.40023
1.40028
1.40052
1.40086
1.40143
1.40271
1.40551
1.41081
1.41969
1.43266
1.44784
1.46023
1.4643
1.45729
1.44033
1.41648
1.38844
1.3566
1.31847
1.26989
1.20756
1.13351
1.0554
0.983047
0.924703
0.885115
0.864911
0.864871
0.887699
0.932131
0.993558
1.06359
1.13365
1.1953
1.24759
1.29137
1.32819
1.36008
1.39075
1.41654
1.43679
1.45191
1.46828
1.46609
1.45688
1.44672
1.45251
1.44254
1.39755
1.41022
1.42336
1.43069
1.3689
1.40911
1.40468
1.40338
1.41852
1.37182
1.37579
1.45452
1.37182
1.4315
1.3627
1.39065
1.43847
1.38326
1.39303
1.40936
1.39875
1.39669
1.40087
1.40102
1.3998
1.39977
1.40001
1.40004
1.4
1.40001
1.39999
1.40003
1.39997
1.40002
1.40007
1.39975
1.40057
1.39906
1.40126
1.39882
1.40192
1.39731
1.40294
1.39777
1.40044
1.40218
1.39503
1.40751
1.39114
1.40918
1.39302
1.40218
1.40518
1.38514
1.42175
1.37236
1.4278
1.37227
1.42442
1.38062
1.41117
1.40031
1.38608
1.43014
1.35352
1.46149
1.32573
1.48241
1.3167
1.47281
1.35087
1.4097
1.44327
1.30007
1.53859
1.26564
1.47026
1.43754
1.27059
1.5334
1.35335
1.35499
1.45385
1.41058
1.36347
1.38924
1.42752
1.40356
1.3865
1.39814
1.40533
1.40322
1.40004
1.39859
1.39912
1.4003
1.4004
1.39975
1.39973
1.4002
1.40027
1.40012
1.40018
1.4004
1.40061
1.40091
1.40163
1.40336
1.40679
1.41293
1.4229
1.43678
1.45181
1.46241
1.46349
1.45339
1.43392
1.40834
1.37884
1.34514
1.30399
1.25064
1.18219
1.10131
1.01661
0.93844
0.876221
0.834133
0.812353
0.812716
0.837923
0.887114
0.954051
1.02993
1.10614
1.17599
1.23442
1.28156
1.31873
1.35224
1.38244
1.41083
1.43277
1.45046
1.45855
1.46796
1.46865
1.44886
1.43478
1.43646
1.44452
1.39727
1.40435
1.41046
1.42487
1.38464
1.40595
1.40384
1.38959
1.38138
1.45785
1.36537
1.40708
1.38489
1.3948
1.43888
1.37203
1.39719
1.41414
1.39335
1.39668
1.40331
1.40087
1.39901
1.39974
1.40018
1.40006
1.39999
1.4
1.4
1.40001
1.40001
1.39997
1.40008
1.39986
1.40021
1.39979
1.40007
1.40034
1.39898
1.3993
1.40012
1.40101
1.39754
1.40391
1.39521
1.40479
1.3964
1.40158
1.40176
1.39515
1.40856
1.38987
1.40847
1.39494
1.39657
1.40913
1.38248
1.42227
1.37157
1.4338
1.36116
1.44409
1.35221
1.45224
1.34269
1.46444
1.32608
1.48505
1.302
1.50899
1.2864
1.50355
1.32816
1.41406
1.45892
1.28291
1.52082
1.34462
1.36246
1.48217
1.35333
1.38027
1.42915
1.41868
1.37479
1.38992
1.41472
1.40167
1.39385
1.39907
1.40136
1.40035
1.40027
1.40078
1.40047
1.39976
1.39979
1.40017
1.40006
1.39982
1.39998
1.40028
1.40045
1.40057
1.40098
1.40203
1.40416
1.40817
1.4152
1.42629
1.44087
1.45532
1.4638
1.46191
1.44898
1.42741
1.40034
1.3695
1.33385
1.28955
1.23148
1.15709
1.06977
0.978793
0.895633
0.829865
0.785081
0.761635
0.762609
0.79058
0.844491
0.917201
0.998779
1.08003
1.15496
1.21859
1.27036
1.31246
1.34614
1.37383
1.4003
1.42731
1.44781
1.4573
1.46591
1.46691
1.45969
1.43562
1.43164
1.43719
1.42102
1.39774
1.40513
1.41713
1.40144
1.3986
1.39648
1.39584
1.43678
1.37053
1.39135
1.41284
1.39055
1.42995
1.36973
1.40247
1.41612
1.38669
1.39973
1.40605
1.399
1.39807
1.40023
1.40045
1.39999
1.39993
1.4
1.40001
1.4
1.40001
1.39999
1.40002
1.39999
1.39999
1.40009
1.39977
1.40045
1.39931
1.40084
1.39924
1.4013
1.3983
1.40174
1.39883
1.39997
1.40175
1.39651
1.40515
1.39445
1.40548
1.39735
1.39898
1.40631
1.38787
1.41451
1.3827
1.41481
1.38599
1.41067
1.39275
1.40261
1.40481
1.38747
1.42201
1.36983
1.43703
1.35908
1.43986
1.36777
1.4167
1.40693
1.36302
1.4666
1.31717
1.47004
1.37804
1.35458
1.48957
1.32606
1.41248
1.43554
1.3769
1.37969
1.41597
1.4185
1.38691
1.39359
1.4057
1.40172
1.39846
1.39887
1.39956
1.39996
1.39993
1.39974
1.39995
1.40033
1.4003
1.40007
1.40018
1.40039
1.4004
1.40037
1.40061
1.40128
1.40259
1.40508
1.40974
1.41775
1.42985
1.44483
1.45829
1.46445
1.4597
1.44429
1.42095
1.39262
1.36048
1.32286
1.2754
1.21287
1.13296
1.03981
0.943356
0.855988
0.787003
0.739422
0.714972
0.716804
0.74744
0.804901
0.88214
0.969272
1.05641
1.13556
1.20285
1.25767
1.30247
1.33868
1.36925
1.39545
1.42002
1.44142
1.45938
1.46155
1.46071
1.46121
1.45457
1.43247
1.4131
1.43439
1.41936
1.39971
1.39425
1.41976
1.39605
1.402
1.41476
1.3834
1.38733
1.42881
1.38284
1.41749
1.37941
1.40343
1.41478
1.38261
1.40511
1.40687
1.39524
1.39819
1.40149
1.4005
1.39971
1.39989
1.40003
1.40002
1.4
1.4
1.4
1.4
1.40001
1.39998
1.40006
1.39991
1.40012
1.39991
1.39998
1.40032
1.40045
1.39969
1.39993
1.40076
1.39842
1.40236
1.39725
1.40263
1.39839
1.40031
1.40233
1.3962
1.40618
1.39402
1.404
1.39849
1.39574
1.40611
1.38977
1.41062
1.3878
1.41384
1.38506
1.41777
1.38059
1.42311
1.37211
1.4343
1.35832
1.44852
1.34647
1.45337
1.35559
1.42345
1.40948
1.3538
1.46895
1.3414
1.41481
1.4326
1.35423
1.41652
1.41731
1.39253
1.38068
1.40777
1.40998
1.39586
1.39884
1.40111
1.39968
1.40025
1.40077
1.40005
1.39952
1.39975
1.40009
1.40001
1.39984
1.40003
1.4003
1.40031
1.40025
1.40043
1.40086
1.40163
1.40312
1.4061
1.41154
1.42054
1.43351
1.44854
1.46069
1.46443
1.45704
1.43947
1.41468
1.38527
1.35189
1.31232
1.26186
1.19526
1.11056
1.01241
0.911538
0.820694
0.74875
0.69907
0.674445
0.677748
0.710733
0.770952
0.850773
0.941031
1.03248
1.11665
1.18895
1.24695
1.29231
1.32991
1.36338
1.39214
1.41487
1.43577
1.45397
1.46326
1.46218
1.45684
1.45659
1.44022
1.42532
1.41803
1.42288
1.40899
1.40541
1.39968
1.40775
1.4036
1.39435
1.39091
1.42695
1.38098
1.40768
1.39435
1.39807
1.41228
1.38406
1.40908
1.4046
1.39153
1.40052
1.40287
1.39976
1.39931
1.4
1.40011
1.40001
1.39999
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.39999
1.40007
1.39985
1.40028
1.3996
1.40022
1.39955
1.40072
1.39912
1.40085
1.39955
1.39975
1.40128
1.3978
1.40326
1.397
1.40315
1.39956
1.39861
1.40473
1.39242
1.40739
1.39135
1.40523
1.39524
1.40209
1.39996
1.39786
1.40714
1.38964
1.41522
1.38246
1.41881
1.38299
1.41154
1.39783
1.39002
1.42351
1.36571
1.43654
1.37595
1.39713
1.43342
1.35263
1.4325
1.40019
1.38024
1.40523
1.41472
1.39848
1.38746
1.40247
1.40282
1.39894
1.40049
1.40043
1.39963
1.39983
1.40023
1.40036
1.40032
1.40013
1.39997
1.40002
1.40012
1.40004
1.40001
1.40023
1.40058
1.40104
1.4019
1.40374
1.4073
1.41354
1.42346
1.43712
1.4519
1.4625
1.46382
1.45405
1.43467
1.40871
1.37839
1.34383
1.3024
1.24922
1.17917
1.09059
0.98855
0.884326
0.790717
0.716296
0.66544
0.641212
0.645962
0.681
0.743252
0.824842
0.916528
1.00999
1.09778
1.17396
1.2362
1.28482
1.32303
1.35506
1.38443
1.41107
1.43222
1.44781
1.46212
1.46593
1.45913
1.44787
1.4465
1.43994
1.41296
1.41176
1.42255
1.40768
1.39661
1.40712
1.40097
1.39451
1.41725
1.38744
1.40072
1.4055
1.39111
1.41084
1.39004
1.4077
1.40097
1.39065
1.40439
1.40297
1.39812
1.39927
1.40038
1.40015
1.39995
1.39998
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.39999
1.40003
1.39996
1.40006
1.39997
1.39996
1.39982
1.40019
1.3999
1.39989
1.40047
1.39914
1.40123
1.39865
1.40125
1.39954
1.39988
1.4022
1.39765
1.40429
1.39678
1.40205
1.39919
1.39715
1.40216
1.39565
1.40273
1.39693
1.40368
1.39668
1.40616
1.39337
1.41059
1.38661
1.41727
1.38025
1.42072
1.38148
1.41249
1.39863
1.38733
1.42618
1.36852
1.42283
1.39866
1.38107
1.42186
1.39614
1.39003
1.39826
1.41118
1.40066
1.3954
1.39994
1.39961
1.40005
1.40071
1.39989
1.39951
1.39987
1.40006
1.39997
1.39994
1.40009
1.40022
1.40018
1.40015
1.40028
1.40046
1.40066
1.40113
1.40227
1.40456
1.40871
1.41572
1.42651
1.44064
1.45486
1.46373
1.46276
1.45087
1.43003
1.40313
1.37207
1.33642
1.2933
1.2378
1.16505
1.07366
0.968998
0.862531
0.766869
0.690762
0.6394
0.615687
0.621482
0.657681
0.720569
0.80271
0.895506
0.990651
1.0807
1.15911
1.22395
1.27567
1.31671
1.34907
1.37749
1.40434
1.42839
1.44585
1.45701
1.46443
1.46358
1.45153
1.44422
1.43555
1.42828
1.41556
1.40882
1.40975
1.41076
1.39934
1.39873
1.40997
1.39597
1.39596
1.40983
1.38839
1.41009
1.39624
1.40147
1.3996
1.39349
1.40702
1.40102
1.39651
1.40013
1.40083
1.39998
1.39986
1.39999
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40004
1.39993
1.40014
1.39998
1.40011
1.3998
1.40032
1.39964
1.40032
1.3999
1.39974
1.40084
1.39876
1.40202
1.39857
1.4021
1.40031
1.39956
1.40262
1.3963
1.40239
1.39654
1.39996
1.39941
1.39831
1.40236
1.39703
1.40605
1.39429
1.40813
1.39352
1.40573
1.39786
1.39817
1.40697
1.38905
1.41352
1.38802
1.40589
1.40553
1.38281
1.42219
1.38631
1.39711
1.41016
1.40115
1.39246
1.39705
1.40545
1.40111
1.39979
1.39977
1.39904
1.39987
1.40051
1.40025
1.39994
1.39987
1.3999
1.39997
1.40001
1.39999
1.40002
1.40016
1.4003
1.40042
1.40071
1.40142
1.40286
1.40553
1.41025
1.41803
1.42959
1.44397
1.45738
1.46444
1.46134
1.44767
1.42563
1.39803
1.36636
1.32978
1.28519
1.22787
1.15326
1.06025
0.954273
0.846673
0.749779
0.672744
0.621186
0.597753
0.604215
0.640628
0.703036
0.784398
0.876991
0.972798
1.06433
1.14574
1.2128
1.26621
1.30861
1.34383
1.37291
1.39836
1.42225
1.44275
1.45528
1.46171
1.46292
1.4593
1.44491
1.43316
1.43447
1.42032
1.40719
1.41286
1.40802
1.39921
1.40755
1.40212
1.39303
1.4099
1.3916
1.40752
1.39967
1.39526
1.40165
1.39772
1.40598
1.39837
1.39635
1.40168
1.40085
1.39956
1.39984
1.40005
1.40002
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40002
1.39999
1.40003
1.39999
1.40005
1.39994
1.40007
1.39999
1.39993
1.40023
1.39961
1.40056
1.39942
1.40058
1.40002
1.39994
1.40178
1.39894
1.40304
1.39846
1.40129
1.39904
1.3984
1.39966
1.39814
1.39959
1.39924
1.40088
1.39932
1.40304
1.39759
1.40543
1.39464
1.40675
1.39438
1.40443
1.3986
1.39776
1.40738
1.3884
1.41364
1.39068
1.39923
1.41098
1.39001
1.39881
1.40531
1.40353
1.39527
1.39774
1.40125
1.40082
1.40067
1.39986
1.39961
1.40004
1.40012
1.4
1.40004
1.40011
1.40011
1.40006
1.40005
1.40009
1.40014
1.40019
1.40039
1.40085
1.40177
1.40347
1.40656
1.41189
1.42044
1.43263
1.44703
1.45943
1.46469
1.45968
1.44451
1.42156
1.39345
1.36134
1.32403
1.27828
1.21966
1.14405
1.05063
0.944647
0.836991
0.73974
0.662282
0.61042
0.586838
0.593156
0.628917
0.690184
0.770435
0.861861
0.95701
1.04891
1.13202
1.20214
1.25802
1.30131
1.33673
1.36714
1.39412
1.41676
1.43741
1.45347
1.46121
1.46164
1.46016
1.45039
1.44042
1.42681
1.42358
1.42052
1.40632
1.40285
1.41147
1.40335
1.39318
1.40946
1.3969
1.40245
1.40164
1.39296
1.40468
1.40029
1.40194
1.39736
1.39789
1.40275
1.40015
1.39914
1.40002
1.40013
1.39999
1.39998
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.4
1.40002
1.39998
1.4
1.4
1.40004
1.39994
1.40011
1.39989
1.40009
1.40003
1.39982
1.40052
1.39936
1.40129
1.39942
1.40165
1.40054
1.40051
1.40126
1.39863
1.39993
1.39856
1.39809
1.39994
1.39757
1.40143
1.3982
1.40253
1.39896
1.40214
1.39988
1.40023
1.40178
1.39726
1.40443
1.39508
1.40469
1.39808
1.39706
1.40909
1.38917
1.405
1.40434
1.39512
1.3972
1.40329
1.4029
1.39836
1.39866
1.39964
1.40046
1.40053
1.39985
1.39972
1.4
1.40009
1.40003
1.39999
1.39999
1.40003
1.40009
1.40014
1.40019
1.40031
1.40058
1.40111
1.40215
1.40413
1.40769
1.41366
1.42291
1.43559
1.44977
1.46103
1.46456
1.45788
1.44152
1.41788
1.38945
1.35709
1.31928
1.27272
1.21332
1.13756
1.04482
0.940075
0.833468
0.736622
0.658997
0.60653
0.582305
0.587661
0.621739
0.680963
0.759322
0.84932
0.943704
1.03578
1.1192
1.19081
1.24868
1.29455
1.33015
1.36091
1.38814
1.41274
1.43281
1.44942
1.45971
1.46332
1.4584
1.45379
1.44433
1.42988
1.4255
1.41821
1.41012
1.41057
1.40607
1.39638
1.40909
1.40087
1.39775
1.40376
1.3942
1.40567
1.40059
1.39816
1.39877
1.39983
1.40242
1.39921
1.39913
1.40036
1.40012
1.39993
1.39998
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40002
1.39999
1.40002
1.40001
1.39997
1.4001
1.39984
1.40026
1.39976
1.40031
1.40014
1.40013
1.40128
1.39989
1.40218
1.39964
1.40099
1.39916
1.39885
1.39881
1.39822
1.39903
1.39861
1.40023
1.39913
1.40138
1.39938
1.40175
1.39899
1.40165
1.3991
1.40036
1.40126
1.39665
1.40588
1.39325
1.40415
1.40226
1.39321
1.4037
1.40296
1.39771
1.39724
1.40141
1.40161
1.39996
1.39939
1.39958
1.40018
1.40023
1.39997
1.39993
1.4
1.40002
1.4
1.4
1.40001
1.40003
1.40005
1.40014
1.40033
1.40067
1.40133
1.40259
1.40492
1.40897
1.41554
1.42539
1.43838
1.45217
1.46222
1.46413
1.45604
1.43876
1.41466
1.38606
1.35362
1.31561
1.26864
1.209
1.13378
1.0427
0.94025
0.835717
0.739952
0.662296
0.609035
0.583729
0.587562
0.619324
0.675671
0.751018
0.838737
0.931817
1.02344
1.10775
1.18015
1.23939
1.28647
1.32437
1.35529
1.38216
1.40725
1.42891
1.44574
1.45758
1.46305
1.46021
1.4547
1.44489
1.43859
1.42452
1.41698
1.41753
1.40986
1.39996
1.41003
1.40299
1.39604
1.40588
1.3967
1.40381
1.40045
1.39669
1.40093
1.40074
1.40096
1.39884
1.39957
1.4006
1.39997
1.39988
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.39999
1.40003
1.39998
1.40002
1.40004
1.3999
1.4003
1.39972
1.4008
1.39988
1.40128
1.40065
1.40106
1.40081
1.39986
1.39936
1.39894
1.39801
1.39897
1.39809
1.39946
1.39911
1.39991
1.40018
1.39992
1.40056
1.3995
1.40118
1.39813
1.40255
1.39738
1.4011
1.402
1.39473
1.40513
1.39956
1.39631
1.40157
1.40233
1.39903
1.39837
1.40026
1.40069
1.40022
1.39973
1.39983
1.40013
1.40008
1.39996
1.39997
1.40001
1.40001
1.40002
1.40004
1.40006
1.4001
1.40019
1.40039
1.40078
1.40158
1.40309
1.40579
1.41031
1.41744
1.4278
1.44094
1.45419
1.46302
1.46349
1.45423
1.4363
1.41193
1.3833
1.35095
1.31306
1.26615
1.20679
1.13268
1.04395
0.94467
0.843027
0.748975
0.671519
0.617497
0.590865
0.592664
0.621526
0.674281
0.746143
0.830922
0.92176
1.01198
1.09624
1.1699
1.23083
1.27899
1.31774
1.34932
1.37713
1.40144
1.42398
1.44221
1.45541
1.46133
1.4631
1.45583
1.44808
1.4393
1.42937
1.42173
1.41503
1.40822
1.41053
1.40504
1.39771
1.40725
1.39886
1.40118
1.40158
1.39702
1.40218
1.40062
1.39958
1.39933
1.40007
1.40051
1.39978
1.39989
1.40004
1.4
1.39999
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.39998
1.40006
1.39992
1.40014
1.39988
1.40021
1.40008
1.40026
1.40077
1.40043
1.4015
1.4005
1.40097
1.39977
1.39925
1.3989
1.39814
1.39886
1.39825
1.39934
1.399
1.3999
1.3995
1.40031
1.3994
1.40049
1.39962
1.39937
1.4017
1.39677
1.40324
1.39879
1.3976
1.40341
1.39951
1.39777
1.40054
1.40144
1.39973
1.3993
1.39993
1.40028
1.40011
1.39985
1.39993
1.40005
1.40004
1.4
1.39999
1.40001
1.40002
1.40002
1.40005
1.40011
1.40024
1.40048
1.40097
1.40193
1.40369
1.40672
1.41169
1.41934
1.43012
1.44324
1.45585
1.46352
1.46272
1.45253
1.43418
1.40975
1.3812
1.34909
1.31162
1.26528
1.20674
1.13423
1.04829
0.952707
0.854575
0.762767
0.685976
0.631365
0.603382
0.602909
0.628362
0.676862
0.744359
0.825432
0.913672
1.00249
1.08568
1.15955
1.22164
1.27191
1.31102
1.34336
1.37136
1.39639
1.41865
1.43803
1.45217
1.46071
1.46279
1.45892
1.45133
1.44041
1.43341
1.42452
1.41534
1.41312
1.40936
1.40121
1.40811
1.40068
1.39998
1.40323
1.39776
1.40218
1.40028
1.39905
1.40012
1.40025
1.4002
1.39973
1.39997
1.40007
1.39998
1.39999
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.39999
1.40001
1.40002
1.39997
1.40014
1.39992
1.40042
1.40007
1.40086
1.40061
1.40117
1.40086
1.40063
1.39993
1.39943
1.39879
1.39875
1.39865
1.39881
1.39913
1.39927
1.39963
1.39952
1.40015
1.39913
1.4009
1.39846
1.40115
1.39954
1.39846
1.40265
1.39818
1.39903
1.40193
1.39989
1.39875
1.40011
1.4006
1.4
1.39974
1.39996
1.40016
1.40004
1.39993
1.39997
1.40002
1.40001
1.4
1.39999
1.4
1.40001
1.40004
1.4001
1.40025
1.40056
1.40116
1.40229
1.4043
1.40769
1.41311
1.42123
1.43229
1.44526
1.45716
1.46377
1.46191
1.45101
1.43244
1.40813
1.37979
1.34803
1.31125
1.26597
1.20886
1.13839
1.05551
0.963844
0.869577
0.780535
0.704945
0.650163
0.620942
0.618123
0.639967
0.683891
0.746325
0.822586
0.907176
0.993872
1.07639
1.15002
1.21255
1.26363
1.30452
1.33764
1.36539
1.39089
1.4137
1.43345
1.44885
1.45918
1.46204
1.46092
1.45369
1.44466
1.43474
1.42691
1.41957
1.41421
1.407
1.40917
1.40327
1.40083
1.40449
1.39887
1.40172
1.40056
1.39919
1.40065
1.40017
1.39993
1.39984
1.40004
1.40005
1.39995
1.39999
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.39999
1.40004
1.39996
1.40008
1.39993
1.40015
1.40001
1.40025
1.40035
1.40051
1.40093
1.40083
1.40104
1.40051
1.40011
1.39968
1.39905
1.39929
1.39882
1.39932
1.3992
1.39963
1.3994
1.40007
1.3994
1.40008
1.40008
1.39889
1.40146
1.3986
1.39989
1.40139
1.39873
1.39962
1.40092
1.39999
1.39953
1.39999
1.40019
1.40003
1.39989
1.39999
1.40007
1.40002
1.39999
1.39999
1.39999
1.39998
1.39999
1.39999
1.40001
1.40005
1.40014
1.40032
1.40069
1.40138
1.40268
1.40495
1.40869
1.41452
1.42303
1.43427
1.44697
1.45813
1.46381
1.46113
1.44973
1.43111
1.40709
1.37911
1.34778
1.31186
1.2681
1.21305
1.14515
1.06554
0.977805
0.88753
0.80165
0.727825
0.67341
0.643234
0.638112
0.65622
0.695146
0.752059
0.823084
0.903249
0.98653
1.06737
1.14089
1.20402
1.25558
1.29754
1.33136
1.35994
1.38518
1.40835
1.42875
1.44554
1.45671
1.46217
1.46122
1.45621
1.44795
1.43816
1.42881
1.42246
1.41449
1.41159
1.40751
1.40303
1.40557
1.40044
1.40153
1.40133
1.39947
1.40091
1.40009
1.39987
1.40002
1.40007
1.4
1.39995
1.4
1.4
1.39999
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40002
1.39999
1.40003
1.39999
1.40003
1.40002
1.40002
1.40015
1.4001
1.40044
1.4004
1.40088
1.40075
1.40096
1.40055
1.40028
1.39992
1.39957
1.39955
1.39941
1.39955
1.39964
1.39969
1.39972
1.40014
1.39932
1.4006
1.39938
1.39995
1.40065
1.39893
1.40039
1.4005
1.39937
1.39991
1.40032
1.40002
1.39988
1.39998
1.40007
1.39999
1.39995
1.39999
1.40002
1.4
1.39999
1.4
1.4
1.39999
1.39999
1.4
1.40005
1.40016
1.40038
1.40082
1.40163
1.4031
1.40564
1.40972
1.4159
1.42472
1.43605
1.4484
1.45883
1.4637
1.46044
1.44876
1.43021
1.40662
1.37917
1.34839
1.3134
1.27145
1.21906
1.15438
1.07838
0.994615
0.908323
0.825839
0.754277
0.700712
0.669939
0.662617
0.676944
0.710727
0.761635
0.826721
0.901708
0.981306
1.05971
1.13201
1.19505
1.24798
1.29063
1.32492
1.3541
1.37961
1.40276
1.4237
1.44144
1.45421
1.46143
1.46226
1.45805
1.4507
1.44174
1.43216
1.42397
1.41766
1.41291
1.40705
1.40735
1.40273
1.40229
1.40233
1.40002
1.40115
1.4002
1.4
1.40018
1.40007
1.39998
1.39999
1.4
1.4
1.39999
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.39999
1.40003
1.39998
1.40007
1.39999
1.40014
1.40011
1.40033
1.40042
1.40065
1.40073
1.40074
1.40059
1.40036
1.4001
1.39997
1.39977
1.39989
1.39971
1.39999
1.39975
1.40008
1.39986
1.39991
1.40027
1.39947
1.40038
1.40003
1.39956
1.4003
1.40012
1.39978
1.39997
1.40008
1.40001
1.39998
1.40001
1.40003
1.4
1.39999
1.39999
1.39999
1.39998
1.39998
1.39997
1.39998
1.39999
1.40001
1.40007
1.4002
1.40045
1.40096
1.4019
1.40354
1.40633
1.41072
1.41722
1.42626
1.43757
1.44955
1.45928
1.46349
1.45987
1.44814
1.4298
1.40671
1.37997
1.34988
1.31587
1.27582
1.22652
1.16573
1.09393
1.01438
0.932141
0.853205
0.784231
0.731905
0.700744
0.691305
0.701785
0.730365
0.775251
0.833989
0.90296
0.977831
1.0533
1.12408
1.18665
1.23981
1.28334
1.31888
1.34811
1.37374
1.39718
1.41849
1.4368
1.45109
1.45985
1.46282
1.45988
1.45342
1.44455
1.43586
1.42648
1.42026
1.41352
1.41035
1.40632
1.40416
1.40354
1.40107
1.40155
1.40061
1.40025
1.40034
1.40011
1.40003
1.40003
1.40001
1.4
1.39999
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.39999
1.40002
1.39998
1.40004
1.39998
1.40005
1.40002
1.40007
1.40014
1.4002
1.40039
1.40044
1.4006
1.40055
1.40051
1.40035
1.40021
1.40011
1.4
1.40002
1.39997
1.4
1.39997
1.40014
1.39981
1.40018
1.39999
1.39985
1.40022
1.39992
1.3999
1.40011
1.40003
1.39995
1.40001
1.40001
1.39999
1.4
1.40002
1.40001
1.39999
1.39999
1.4
1.39999
1.39998
1.39997
1.39997
1.39999
1.40001
1.40009
1.40024
1.40054
1.40112
1.40218
1.40399
1.407
1.41167
1.41844
1.42763
1.43885
1.45044
1.45954
1.46321
1.45944
1.4479
1.42991
1.40737
1.38144
1.35226
1.31932
1.28112
1.23502
1.17863
1.11173
1.03697
0.959101
0.883902
0.817696
0.766774
0.735319
0.723714
0.730348
0.753669
0.792442
0.84466
0.907482
0.976822
1.04819
1.11677
1.17885
1.23186
1.27593
1.31223
1.34216
1.36801
1.39141
1.41306
1.43209
1.44743
1.45784
1.46237
1.46165
1.45591
1.44775
1.43857
1.43017
1.42198
1.41601
1.41154
1.40729
1.40564
1.40296
1.4024
1.40139
1.40067
1.40061
1.40025
1.40015
1.40008
1.40005
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40005
1.40002
1.40013
1.40012
1.40027
1.40031
1.40039
1.40039
1.40036
1.40028
1.4002
1.40014
1.4001
1.40002
1.40011
1.4
1.40003
1.40007
1.39999
1.40007
1.39998
1.40003
1.40005
1.39997
1.40001
1.40005
1.39999
1.39999
1.40002
1.40001
1.4
1.39999
1.4
1.40002
1.4
1.39998
1.39998
1.39999
1.39998
1.39997
1.39998
1.40002
1.4001
1.40028
1.40062
1.40127
1.40245
1.40442
1.40764
1.41256
1.41956
1.42881
1.43988
1.45108
1.45965
1.46292
1.45915
1.44802
1.43059
1.40865
1.38355
1.35546
1.32378
1.28738
1.24434
1.19249
1.13104
1.06177
0.988846
0.917735
0.85446
0.805006
0.773218
0.759371
0.762131
0.7803
0.812937
0.858618
0.914919
0.978425
1.04507
1.11066
1.17123
1.22408
1.26877
1.3054
1.33593
1.36214
1.38572
1.40739
1.42704
1.44349
1.45532
1.46158
1.46242
1.4583
1.451
1.4418
1.43323
1.42491
1.41838
1.41259
1.40931
1.4058
1.40407
1.40267
1.40148
1.40112
1.40058
1.40036
1.40019
1.40012
1.40005
1.40003
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40003
1.39999
1.40004
1.40001
1.40008
1.40009
1.40014
1.40021
1.40021
1.40025
1.40021
1.40019
1.40014
1.4001
1.40011
1.40003
1.40006
1.40006
1.40002
1.40003
1.40005
1.40001
1.40001
1.40004
1.40002
1.39999
1.40001
1.40002
1.4
1.40002
1.4
1.4
1.40001
1.4
1.39999
1.39999
1.4
1.39999
1.39997
1.39997
1.39998
1.4
1.40004
1.40013
1.40033
1.40072
1.40143
1.40271
1.40484
1.40824
1.41335
1.4205
1.42979
1.44066
1.45148
1.45966
1.46266
1.45901
1.44846
1.43181
1.4106
1.38631
1.35936
1.32915
1.29464
1.25444
1.20689
1.15102
1.08777
1.02045
0.953912
0.89386
0.845967
0.81378
0.797676
0.796574
0.809714
0.836379
0.875622
0.925289
0.982603
1.04406
1.10602
1.16436
1.21663
1.26136
1.29866
1.3297
1.35612
1.37983
1.40166
1.42163
1.43897
1.45224
1.46045
1.4627
1.4602
1.45373
1.44542
1.43601
1.42787
1.42062
1.41485
1.41024
1.40711
1.40478
1.40296
1.40205
1.4012
1.40074
1.40044
1.40027
1.40013
1.40008
1.40003
1.40002
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40002
1.39999
1.40002
1.39999
1.40003
1.40001
1.40003
1.40007
1.40006
1.40012
1.4001
1.40013
1.40011
1.40011
1.40009
1.40005
1.40007
1.40005
1.40002
1.40003
1.40003
1.40004
1.40001
1.40001
1.40003
1.40002
1.4
1.40001
1.40003
1.39999
1.39999
1.40002
1.40002
1.39999
1.39999
1.40001
1.4
1.39998
1.39998
1.39998
1.39998
1.39998
1.4
1.40005
1.40016
1.40038
1.4008
1.40158
1.40295
1.40521
1.40877
1.41403
1.42129
1.43054
1.4412
1.45168
1.45955
1.46246
1.45905
1.44918
1.4335
1.41323
1.38979
1.36392
1.33527
1.30282
1.26538
1.22177
1.17116
1.11399
1.05266
0.991197
0.934728
0.888608
0.856152
0.83783
0.833057
0.841328
0.862278
0.895182
0.938422
0.989405
1.0453
1.10288
1.15861
1.20965
1.25407
1.29177
1.32327
1.35018
1.37392
1.39577
1.41609
1.43408
1.44854
1.45838
1.4627
1.46167
1.45635
1.44857
1.43969
1.43089
1.42308
1.41698
1.41191
1.40823
1.40546
1.40369
1.40233
1.40147
1.40091
1.40056
1.40032
1.40018
1.4001
1.40005
1.40002
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.39999
1.40002
1.39999
1.40002
1.4
1.40001
1.40002
1.4
1.40005
1.40002
1.40005
1.40005
1.40006
1.40006
1.40004
1.40005
1.40004
1.40001
1.40003
1.40005
1.4
1.40001
1.40004
1.40001
1.4
1.40002
1.40002
1.4
1.4
1.40002
1.40001
1.39999
1.4
1.40001
1.40001
1.39999
1.39999
1.39999
1.39999
1.39998
1.39998
1.39999
1.40001
1.40007
1.40018
1.40043
1.40088
1.40172
1.40316
1.40552
1.4092
1.41457
1.42187
1.43107
1.44151
1.45169
1.45936
1.46231
1.45929
1.45016
1.43555
1.41644
1.39401
1.36918
1.34201
1.31166
1.27703
1.23712
1.19133
1.1399
1.08453
1.02836
0.975821
0.931795
0.89931
0.879045
0.870891
0.874644
0.89014
0.916944
0.953886
0.998698
1.04884
1.10158
1.15409
1.20325
1.24713
1.28491
1.31685
1.34405
1.36796
1.3899
1.41036
1.42888
1.44458
1.45574
1.46191
1.46257
1.45878
1.45156
1.44294
1.43407
1.42606
1.41906
1.41373
1.40948
1.4065
1.40429
1.40278
1.40177
1.40111
1.40066
1.40039
1.40023
1.40012
1.40007
1.40004
1.40002
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40002
1.4
1.40002
1.40002
1.40002
1.40003
1.40001
1.40004
1.40002
1.4
1.40004
1.40002
1.39999
1.40003
1.40002
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.40002
1.4
1.4
1.40001
1.40001
1.4
1.39999
1.4
1.4
1.39999
1.39999
1.39998
1.39999
1.39999
1.40002
1.40008
1.40021
1.40047
1.40096
1.40183
1.40334
1.40578
1.40952
1.41495
1.42226
1.43134
1.44158
1.45152
1.45909
1.46221
1.45969
1.45139
1.4379
1.42009
1.3989
1.37519
1.34936
1.32099
1.28911
1.2528
1.21147
1.16533
1.11559
1.06464
1.01621
0.97457
0.942401
0.920569
0.90941
0.909059
0.919504
0.940591
0.97143
1.01016
1.05455
1.10235
1.15097
1.19777
1.24064
1.27818
1.31037
1.33791
1.36202
1.38396
1.40449
1.42349
1.43993
1.45271
1.46051
1.46301
1.46061
1.45454
1.44628
1.43741
1.42896
1.42163
1.41559
1.41101
1.40751
1.40502
1.4033
1.40211
1.4013
1.40081
1.40048
1.40028
1.40016
1.40009
1.40005
1.40002
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40002
1.39999
1.40002
1.4
1.40001
1.40001
1.4
1.40002
1.4
1.40001
1.40003
1.4
1.4
1.40002
1.40001
1.4
1.40001
1.40002
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40002
1.40001
1.39999
1.4
1.40001
1.4
1.39999
1.39999
1.39999
1.39999
1.39999
1.4
1.40003
1.4001
1.40023
1.4005
1.40101
1.40192
1.40346
1.40595
1.40972
1.41516
1.42242
1.43138
1.4414
1.45117
1.45872
1.46214
1.46023
1.45284
1.44051
1.42405
1.40426
1.38189
1.35739
1.33076
1.3014
1.26848
1.23137
1.19013
1.14562
1.09966
1.05533
1.01627
0.984723
0.961729
0.948035
0.944038
0.949877
0.965629
0.990746
1.02364
1.06238
1.10502
1.14949
1.19348
1.23469
1.27174
1.304
1.33176
1.35602
1.37806
1.39859
1.41784
1.43504
1.44901
1.45848
1.46282
1.46201
1.45711
1.44952
1.44076
1.43203
1.42428
1.41777
1.4126
1.40872
1.40589
1.40387
1.40249
1.40158
1.40096
1.40058
1.40034
1.40019
1.40011
1.40006
1.40003
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40002
1.39999
1.40001
1.40002
1.4
1.39999
1.40002
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40002
1.40001
1.39999
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.39999
1.4
1.40002
1.40004
1.40011
1.40025
1.40053
1.40105
1.40197
1.40353
1.40602
1.40979
1.41517
1.42235
1.43116
1.44097
1.4506
1.45824
1.46206
1.46087
1.45447
1.44333
1.42824
1.40993
1.38904
1.36602
1.34103
1.31386
1.28393
1.25068
1.21399
1.17435
1.1331
1.09281
1.05638
1.02572
1.00197
0.986231
0.979098
0.980867
0.991756
1.01147
1.03883
1.07213
1.10965
1.14975
1.19044
1.22966
1.26573
1.29775
1.32566
1.35012
1.37212
1.39272
1.41209
1.42983
1.44483
1.4559
1.46195
1.46288
1.45932
1.45257
1.44407
1.43529
1.42708
1.42007
1.41441
1.41005
1.40683
1.40454
1.40294
1.40186
1.40115
1.4007
1.40041
1.40024
1.40014
1.40008
1.40004
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39999
1.40001
1.40001
1.39999
1.40001
1.40002
1.4
1.39999
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40002
1.40005
1.40012
1.40027
1.40054
1.40107
1.40199
1.40354
1.406
1.40972
1.41501
1.42203
1.43067
1.4403
1.4498
1.45759
1.46192
1.46155
1.45621
1.4463
1.43259
1.41577
1.39644
1.37501
1.3517
1.32652
1.29916
1.26925
1.2366
1.20141
1.16459
1.12817
1.09441
1.06487
1.04081
1.02352
1.01382
1.01204
1.01859
1.03338
1.05553
1.08357
1.11611
1.15177
1.18888
1.22562
1.26032
1.29183
1.31971
1.34424
1.36634
1.38685
1.40627
1.4244
1.4403
1.4527
1.46048
1.46317
1.46112
1.45533
1.44735
1.43855
1.43006
1.42255
1.41637
1.41153
1.40791
1.40528
1.40344
1.40219
1.40136
1.40083
1.40049
1.40029
1.40016
1.40009
1.40005
1.40003
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.39999
1.40001
1.40001
1.39999
1.4
1.40002
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40002
1.40003
1.40006
1.40013
1.40027
1.40055
1.40106
1.40197
1.40348
1.40589
1.4095
1.41464
1.42146
1.42988
1.43933
1.44877
1.45674
1.46163
1.4622
1.458
1.44937
1.43703
1.42169
1.40393
1.38414
1.36256
1.33928
1.31421
1.28714
1.25794
1.22663
1.19385
1.16106
1.12993
1.10173
1.07779
1.05951
1.04778
1.04305
1.0458
1.05614
1.07347
1.09658
1.1243
1.15549
1.18886
1.2228
1.25574
1.28637
1.31398
1.33852
1.36063
1.38107
1.40048
1.41884
1.43543
1.44901
1.4584
1.46286
1.46238
1.4578
1.45047
1.44183
1.43312
1.42519
1.41849
1.41316
1.40909
1.40612
1.40401
1.40257
1.4016
1.40098
1.40059
1.40034
1.4002
1.40011
1.40006
1.40004
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40002
1.4
1.39999
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40002
1.40001
1.40002
1.40002
1.40003
1.40004
1.40007
1.40014
1.40027
1.40054
1.40103
1.40191
1.40337
1.40568
1.40915
1.41407
1.42065
1.42881
1.43806
1.44745
1.45564
1.46113
1.4627
1.45975
1.45246
1.4415
1.4276
1.41136
1.39319
1.37333
1.35193
1.32897
1.3044
1.2781
1.25012
1.22086
1.19134
1.16273
1.13606
1.11266
1.09389
1.08069
1.07357
1.07307
1.07947
1.0924
1.11092
1.13405
1.1609
1.1904
1.2213
1.25212
1.28155
1.30861
1.33302
1.35507
1.37543
1.39477
1.41323
1.4303
1.44489
1.45577
1.46193
1.46311
1.45986
1.45336
1.44504
1.43624
1.42795
1.42077
1.41492
1.41039
1.40704
1.40465
1.40299
1.40187
1.40115
1.40069
1.4004
1.40023
1.40013
1.40008
1.40004
1.40003
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40002
1.40003
1.40003
1.40004
1.40004
1.40005
1.40008
1.40014
1.40026
1.40051
1.40098
1.40181
1.4032
1.40538
1.40865
1.41333
1.4196
1.42745
1.43647
1.4458
1.45423
1.46034
1.46294
1.46132
1.45548
1.44595
1.43347
1.41868
1.40204
1.38385
1.36424
1.34328
1.32093
1.29718
1.27205
1.24583
1.21918
1.1929
1.16789
1.14535
1.12654
1.11235
1.10335
1.10012
1.10309
1.11206
1.12637
1.14521
1.16785
1.19354
1.22122
1.24963
1.27749
1.30375
1.32782
1.34975
1.36999
1.38919
1.40767
1.42505
1.44045
1.45262
1.46041
1.46328
1.46148
1.45597
1.44813
1.43936
1.4308
1.42316
1.41681
1.41181
1.40806
1.40535
1.40346
1.40218
1.40134
1.4008
1.40047
1.40027
1.40016
1.40009
1.40005
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.39999
1.40001
1.40001
1.39999
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.40002
1.4
1.4
1.40001
1.40002
1.40002
1.40001
1.40001
1.40002
1.40004
1.40004
1.40005
1.40005
1.40006
1.40009
1.40014
1.40026
1.40049
1.40092
1.40169
1.40297
1.405
1.40805
1.41242
1.41834
1.42581
1.43455
1.4438
1.45245
1.4592
1.46283
1.46258
1.45827
1.45027
1.43924
1.42585
1.41065
1.39399
1.37605
1.35692
1.33662
1.31513
1.29249
1.26889
1.24476
1.22067
1.19738
1.17592
1.15739
1.14261
1.13219
1.12673
1.12674
1.13222
1.1427
1.15756
1.17625
1.19819
1.22258
1.24837
1.27438
1.29953
1.32306
1.34471
1.36479
1.38383
1.40219
1.41976
1.43578
1.44906
1.45836
1.46288
1.4626
1.45824
1.45105
1.44245
1.4337
1.42566
1.41882
1.41334
1.40917
1.40612
1.40397
1.40251
1.40155
1.40093
1.40055
1.40032
1.40018
1.4001
1.40006
1.40004
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.39999
1.40001
1.40001
1.4
1.40001
1.40002
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40002
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40002
1.40003
1.40002
1.40002
1.40004
1.40005
1.40006
1.40007
1.40008
1.40009
1.40015
1.40025
1.40046
1.40085
1.40154
1.40271
1.40456
1.40736
1.41138
1.41688
1.42392
1.43231
1.44142
1.45025
1.4576
1.46227
1.4634
1.46068
1.45431
1.44482
1.43285
1.41902
1.40375
1.38731
1.36983
1.35135
1.33188
1.31144
1.29014
1.26826
1.24623
1.22466
1.20442
1.1864
1.17137
1.15992
1.1527
1.15022
1.15265
1.1597
1.17092
1.18592
1.20427
1.22538
1.24842
1.27234
1.2961
1.31883
1.34009
1.35991
1.37872
1.39692
1.41453
1.43098
1.44517
1.45582
1.46195
1.46322
1.46011
1.45372
1.44544
1.4366
1.42822
1.42092
1.41497
1.41036
1.40696
1.40453
1.40288
1.40177
1.40107
1.40063
1.40036
1.40021
1.40012
1.40007
1.40004
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40002
1.39999
1.4
1.40002
1.39999
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40002
1.40001
1.40001
1.39999
1.4
1.40003
1.40002
1.4
1.4
1.40002
1.40004
1.40004
1.40004
1.40004
1.40005
1.40007
1.40009
1.4001
1.4001
1.40015
1.40024
1.40041
1.40077
1.40139
1.40243
1.40409
1.4066
1.41026
1.41527
1.42182
1.42978
1.43867
1.44761
1.45548
1.46114
1.46366
1.46257
1.45789
1.45004
1.43958
1.42712
1.41315
1.39805
1.38202
1.36514
1.34743
1.32891
1.30964
1.2898
1.26971
1.24985
1.23087
1.21353
1.1985
1.18638
1.1778
1.17329
1.17312
1.17714
1.1851
1.1967
1.21166
1.22958
1.2498
1.27146
1.29359
1.31528
1.33595
1.35543
1.37396
1.3919
1.40944
1.42615
1.44104
1.45288
1.46052
1.46335
1.46157
1.4561
1.44828
1.43947
1.43083
1.42311
1.41668
1.41163
1.40785
1.40514
1.40327
1.40202
1.40122
1.40072
1.40041
1.40024
1.40013
1.40008
1.40005
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.39999
1.4
1.40003
1.39997
1.40003
1.40001
1.39998
1.40001
1.40003
1.39999
1.39999
1.40002
1.40002
1.40001
1.39997
1.40002
1.40003
1.40001
1.40001
1.39998
1.4
1.40004
1.40004
1.4
1.39999
1.40002
1.40005
1.40007
1.40006
1.40006
1.40007
1.4001
1.40011
1.40013
1.40015
1.40022
1.40038
1.40068
1.40122
1.40214
1.4036
1.40583
1.40908
1.4136
1.41957
1.427
1.43556
1.4445
1.45281
1.45937
1.46322
1.46377
1.46086
1.45475
1.44589
1.43487
1.42221
1.40836
1.39359
1.37807
1.36186
1.345
1.3275
1.3095
1.29119
1.27295
1.25525
1.23873
1.22394
1.21145
1.20188
1.19576
1.1934
1.19481
1.19987
1.2084
1.22021
1.23508
1.25251
1.27179
1.29207
1.31254
1.33244
1.35141
1.36958
1.38724
1.40457
1.42138
1.43683
1.44966
1.45865
1.46299
1.46259
1.45816
1.45092
1.44227
1.43343
1.42533
1.41846
1.41297
1.4088
1.40579
1.40369
1.40229
1.40138
1.40081
1.40046
1.40026
1.40015
1.40009
1.40005
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40002
1.39999
1.40001
1.40002
1.39997
1.40003
1.4
1.39997
1.40004
1.40001
1.39995
1.40004
1.40002
1.4
1.39997
1.40001
1.40007
1.39998
1.39994
1.40004
1.40003
1.40003
1.40002
1.39997
1.39999
1.40006
1.40006
1.4
1.39999
1.40002
1.40007
1.4001
1.40009
1.40008
1.40009
1.40011
1.40015
1.40018
1.40023
1.40036
1.40059
1.40105
1.40185
1.40312
1.40506
1.4079
1.4119
1.41726
1.42405
1.43214
1.44094
1.44955
1.4569
1.462
1.46415
1.46304
1.45874
1.45161
1.44214
1.43085
1.41823
1.40463
1.39028
1.37533
1.35986
1.34389
1.32748
1.31078
1.29402
1.27758
1.26194
1.24757
1.23499
1.22477
1.21742
1.21329
1.21252
1.21504
1.22081
1.2298
1.2418
1.25647
1.27335
1.29169
1.31069
1.32962
1.34795
1.36564
1.38296
1.40007
1.41681
1.43258
1.44624
1.45644
1.4622
1.4632
1.45987
1.45331
1.44492
1.43601
1.42758
1.42027
1.41434
1.4098
1.40647
1.40413
1.40256
1.40154
1.4009
1.40051
1.40029
1.40016
1.4001
1.40006
1.40004
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39999
1.40002
1.39999
1.40001
1.40002
1.39997
1.40005
1.39998
1.39998
1.40009
1.39992
1.40001
1.40009
1.39995
1.39995
1.40005
1.4001
1.39992
1.39991
1.40009
1.40015
1.39988
1.39994
1.40009
1.40003
1.40005
1.40003
1.39995
1.39996
1.40008
1.40009
1.40002
1.39998
1.40001
1.40009
1.40012
1.40012
1.40011
1.40011
1.40014
1.40018
1.40024
1.40034
1.40055
1.40091
1.40157
1.40265
1.40431
1.40677
1.41023
1.41496
1.42106
1.42852
1.43699
1.44571
1.45369
1.45992
1.4636
1.46427
1.46185
1.45655
1.44875
1.43894
1.4276
1.41516
1.40189
1.38804
1.37373
1.35901
1.34394
1.32861
1.31319
1.29794
1.28322
1.26942
1.25696
1.24637
1.23816
1.23264
1.23003
1.23041
1.23377
1.24019
1.24958
1.26165
1.27611
1.29242
1.30982
1.32758
1.34515
1.36229
1.37918
1.39591
1.4125
1.42844
1.44272
1.45396
1.46103
1.4634
1.46124
1.45546
1.44741
1.43848
1.42981
1.4221
1.41575
1.41082
1.40718
1.4046
1.40285
1.40172
1.40101
1.40057
1.40032
1.40018
1.4001
1.40006
1.40004
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.39999
1.40002
1.39999
1.40001
1.40001
1.39998
1.40005
1.39996
1.40001
1.40007
1.39988
1.40008
1.40007
1.39983
1.40005
1.40021
1.39982
1.39988
1.40021
1.40017
1.39976
1.39977
1.40039
1.40016
1.39966
1.4
1.40018
1.4
1.4
1.4001
1.39998
1.3999
1.40002
1.40012
1.40008
1.39998
1.39998
1.40009
1.40015
1.40015
1.40015
1.40014
1.40015
1.40022
1.40033
1.40051
1.40081
1.40134
1.40223
1.40362
1.4057
1.40867
1.41274
1.41811
1.42484
1.43277
1.44136
1.44976
1.45694
1.46203
1.46443
1.4639
1.46049
1.45448
1.44629
1.43636
1.42512
1.41294
1.40009
1.38678
1.37309
1.35912
1.34495
1.33068
1.31652
1.30268
1.2895
1.27735
1.26663
1.25782
1.25128
1.24722
1.24578
1.2471
1.25125
1.25822
1.2679
1.28008
1.29435
1.30997
1.32642
1.34307
1.35958
1.37587
1.39226
1.40855
1.42449
1.4392
1.45133
1.45956
1.46319
1.46221
1.45732
1.44973
1.44087
1.43199
1.42394
1.41719
1.41187
1.40789
1.40507
1.40315
1.40189
1.4011
1.40063
1.40035
1.40019
1.40011
1.40006
1.40004
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39998
1.40004
1.39997
1.40001
1.40007
1.39987
1.40015
1.39999
1.39978
1.40033
1.39995
1.39965
1.4003
1.40029
1.39961
1.39965
1.40067
1.40033
1.39915
1.39976
1.40102
1.4
1.39924
1.40017
1.40047
1.39985
1.39978
1.40023
1.40013
1.3998
1.39987
1.40014
1.40018
1.39998
1.39995
1.40008
1.40015
1.40019
1.40019
1.40018
1.40019
1.40028
1.40044
1.40071
1.40114
1.40187
1.40301
1.40474
1.40723
1.41068
1.41531
1.42124
1.42845
1.43664
1.44515
1.45305
1.45938
1.46342
1.46475
1.46327
1.45915
1.45269
1.44431
1.4344
1.42336
1.41152
1.39912
1.38632
1.37326
1.36006
1.34676
1.33354
1.32051
1.30794
1.29618
1.28553
1.27639
1.26909
1.26391
1.26105
1.26064
1.2628
1.26761
1.27513
1.2851
1.2973
1.31127
1.32619
1.34181
1.35757
1.37322
1.389
1.40511
1.42089
1.43579
1.44863
1.45793
1.46273
1.46287
1.45884
1.45178
1.4431
1.43411
1.42575
1.4186
1.41291
1.40863
1.40555
1.40344
1.40206
1.4012
1.40068
1.40037
1.40021
1.40011
1.40006
1.40004
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40002
1.39998
1.40004
1.39998
1.40001
1.40005
1.3999
1.40016
1.39992
1.39989
1.40037
1.39966
1.39989
1.40062
1.39969
1.3993
1.40087
1.40053
1.39876
1.3996
1.40162
1.40039
1.3978
1.40022
1.40207
1.39946
1.39847
1.40061
1.40112
1.39944
1.39929
1.40046
1.40047
1.39971
1.3996
1.40013
1.40031
1.40003
1.39994
1.40005
1.40014
1.40022
1.40023
1.40023
1.40024
1.40036
1.40058
1.40095
1.40155
1.40248
1.40389
1.40595
1.40884
1.41274
1.41784
1.42423
1.43176
1.44005
1.44832
1.45564
1.46117
1.46429
1.46476
1.46258
1.45797
1.45125
1.4428
1.43303
1.42226
1.41078
1.39884
1.38658
1.37416
1.36167
1.34922
1.33694
1.32495
1.31362
1.30313
1.29383
1.28608
1.28005
1.276
1.27416
1.27472
1.27765
1.28315
1.29118
1.30128
1.31349
1.32714
1.34139
1.35623
1.3713
1.3864
1.40199
1.41777
1.43264
1.4459
1.45618
1.46205
1.46317
1.4601
1.45365
1.44513
1.43604
1.42747
1.42001
1.41395
1.40933
1.40602
1.40375
1.40224
1.40128
1.40072
1.4004
1.40022
1.40012
1.40007
1.40004
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40002
1.39999
1.40002
1.4
1.39999
1.40005
1.39993
1.40011
1.39993
1.39994
1.4003
1.39957
1.4002
1.40049
1.39903
1.4003
1.40115
1.39883
1.39904
1.40195
1.40086
1.397
1.39962
1.40402
1.39951
1.39564
1.40137
1.40391
1.39837
1.39686
1.40157
1.40233
1.39884
1.39841
1.40067
1.40104
1.39969
1.39927
1.40007
1.40043
1.40013
1.39994
1.39999
1.40011
1.40022
1.40027
1.40029
1.40034
1.40048
1.40077
1.40124
1.40202
1.40316
1.40484
1.40721
1.41045
1.41476
1.42026
1.42698
1.43471
1.44296
1.45089
1.45764
1.46244
1.46482
1.46462
1.46194
1.45701
1.45016
1.44177
1.43219
1.42171
1.41064
1.39917
1.38743
1.37566
1.36381
1.35218
1.34076
1.32976
1.31957
1.31024
1.30213
1.29556
1.29061
1.2876
1.28677
1.2882
1.29187
1.29801
1.30647
1.31665
1.32889
1.34199
1.35573
1.37
1.38465
1.39948
1.41488
1.42995
1.4434
1.45429
1.46126
1.46342
1.46104
1.4552
1.44704
1.43789
1.42902
1.42128
1.41495
1.41006
1.40649
1.40403
1.4024
1.40138
1.40076
1.40041
1.40022
1.40013
1.40008
1.40005
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.39998
1.40004
1.39995
1.40007
1.39997
1.39996
1.4002
1.39966
1.40031
1.40014
1.39917
1.40102
1.40012
1.39831
1.40114
1.40196
1.39705
1.39865
1.40465
1.40038
1.39397
1.40041
1.40802
1.39736
1.39227
1.40354
1.40701
1.3964
1.39431
1.40288
1.40432
1.39824
1.39708
1.40072
1.40187
1.39983
1.39886
1.39991
1.40056
1.40031
1.39998
1.39993
1.40005
1.4002
1.4003
1.40035
1.40046
1.40065
1.401
1.40159
1.40252
1.40387
1.4058
1.40847
1.41203
1.41667
1.42249
1.42944
1.43726
1.44536
1.45293
1.45914
1.46333
1.46513
1.46444
1.46141
1.45631
1.44944
1.44116
1.43181
1.42167
1.41099
1.39997
1.3888
1.3776
1.36637
1.35551
1.34489
1.33488
1.3257
1.31738
1.3104
1.30483
1.30088
1.29892
1.29896
1.30122
1.3056
1.31228
1.32114
1.33142
1.34352
1.35601
1.36956
1.38351
1.39773
1.4125
1.42762
1.44123
1.45235
1.46026
1.46348
1.4618
1.45643
1.44868
1.43964
1.43056
1.42245
1.41582
1.41071
1.40692
1.40428
1.40255
1.40147
1.4008
1.40042
1.40022
1.40012
1.40007
1.40004
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.39999
1.40002
1.39999
1.40002
1.40002
1.39994
1.40015
1.39978
1.40021
1.40003
1.39949
1.40097
1.39938
1.39912
1.40223
1.39916
1.39715
1.40332
1.40245
1.39397
1.39867
1.40902
1.3996
1.38763
1.40388
1.41346
1.3938
1.38685
1.40694
1.41201
1.39371
1.39047
1.40419
1.40713
1.39802
1.39526
1.40049
1.4029
1.40024
1.39847
1.39952
1.40064
1.40056
1.40009
1.39989
1.4
1.40016
1.40028
1.4004
1.40058
1.40084
1.40127
1.40198
1.40306
1.4046
1.40676
1.40968
1.41352
1.41843
1.42449
1.43158
1.4394
1.44731
1.4545
1.46025
1.46395
1.46531
1.46429
1.46105
1.45585
1.44903
1.44093
1.43183
1.42201
1.41178
1.40118
1.39055
1.37985
1.36933
1.35917
1.34931
1.3403
1.33188
1.32458
1.31856
1.31397
1.31106
1.30995
1.31089
1.31393
1.31893
1.32623
1.33527
1.34568
1.35748
1.36964
1.38301
1.39671
1.41084
1.42541
1.43947
1.45095
1.45906
1.4632
1.4626
1.45763
1.44994
1.4411
1.43203
1.4236
1.41661
1.41124
1.40729
1.40454
1.40271
1.40153
1.40083
1.40044
1.40022
1.40011
1.40006
1.40004
1.40003
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39999
1.40003
1.39995
1.4001
1.39989
1.40009
1.40005
1.3997
1.40063
1.39936
1.39987
1.40159
1.39787
1.39992
1.40359
1.3974
1.39558
1.40727
1.40279
1.38815
1.40036
1.41574
1.39682
1.37899
1.4093
1.42126
1.38903
1.37862
1.41165
1.41847
1.39144
1.38526
1.40498
1.4107
1.3983
1.39305
1.39988
1.40418
1.40102
1.3981
1.39891
1.40057
1.40082
1.40027
1.39992
1.39996
1.40013
1.40028
1.40045
1.40068
1.40104
1.40157
1.40239
1.40361
1.40532
1.40768
1.41082
1.41489
1.42002
1.42624
1.43341
1.44115
1.44883
1.45569
1.46106
1.46439
1.46544
1.4642
1.46084
1.45564
1.44893
1.44098
1.4322
1.42271
1.41289
1.40271
1.3926
1.38243
1.3726
1.36304
1.35401
1.34589
1.33808
1.33189
1.32674
1.32315
1.32111
1.32078
1.32267
1.32651
1.33197
1.33982
1.34901
1.3597
1.37078
1.38297
1.3966
1.40994
1.42389
1.43802
1.44995
1.4581
1.46276
1.46306
1.45863
1.45109
1.44223
1.43318
1.42477
1.41749
1.4117
1.40754
1.40469
1.40278
1.40158
1.40088
1.40046
1.40023
1.40011
1.40006
1.40004
1.40003
1.40002
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.39999
1.40003
1.39999
1.39998
1.40012
1.39976
1.40039
1.39961
1.40005
1.40082
1.39833
1.40117
1.40155
1.39603
1.40131
1.40577
1.39356
1.3946
1.41322
1.40193
1.38061
1.40206
1.42781
1.38924
1.36953
1.41522
1.43293
1.38265
1.36825
1.41606
1.42678
1.38989
1.37906
1.40493
1.41495
1.39912
1.39046
1.39869
1.40539
1.40229
1.39793
1.39817
1.40027
1.40099
1.40045
1.39996
1.39994
1.40012
1.4003
1.4005
1.40079
1.40123
1.40186
1.4028
1.40415
1.40601
1.40855
1.41187
1.41612
1.42141
1.42774
1.43492
1.44254
1.45
1.45658
1.46164
1.46471
1.46554
1.46419
1.46081
1.45561
1.44907
1.44138
1.43282
1.42367
1.41421
1.40462
1.39488
1.38525
1.37633
1.36696
1.35903
1.35155
1.34449
1.33939
1.33491
1.33234
1.33117
1.33164
1.33431
1.33905
1.34502
1.35307
1.36233
1.37303
1.38389
1.3965
1.41004
1.42297
1.43644
1.44896
1.45786
1.46228
1.46286
1.45953
1.45245
1.4432
1.43395
1.42557
1.41819
1.41224
1.40784
1.40474
1.40275
1.40156
1.40087
1.40047
1.40024
1.40012
1.40006
1.40003
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40002
1.39996
1.40009
1.39987
1.40018
1.39986
1.39996
1.40047
1.39903
1.401
1.4003
1.39739
1.40325
1.40068
1.39398
1.4034
1.40872
1.38741
1.39442
1.4215
1.39934
1.37074
1.40656
1.44072
1.38174
1.35659
1.4215
1.44812
1.37556
1.35733
1.41851
1.43657
1.38905
1.37207
1.40429
1.41968
1.40073
1.38763
1.39664
1.40627
1.4039
1.39824
1.39752
1.39979
1.40098
1.4006
1.40002
1.39993
1.40013
1.40032
1.40055
1.4009
1.40141
1.40214
1.40319
1.40465
1.40667
1.40934
1.41281
1.41721
1.42262
1.429
1.43614
1.44364
1.45089
1.45721
1.46204
1.46491
1.46566
1.46424
1.46084
1.45591
1.44935
1.44198
1.4337
1.42494
1.41581
1.40675
1.39732
1.38855
1.38007
1.371
1.36455
1.35709
1.3514
1.34683
1.34321
1.34174
1.34126
1.34279
1.34621
1.35125
1.35757
1.366
1.37614
1.3861
1.39687
1.41054
1.42348
1.43543
1.44805
1.45797
1.46235
1.46271
1.45991
1.45329
1.44422
1.43471
1.42585
1.41845
1.41269
1.4082
1.40493
1.40281
1.40152
1.40078
1.40041
1.40022
1.40012
1.40006
1.40003
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.39999
1.40003
1.39998
1.40001
1.40006
1.39983
1.40037
1.39943
1.40059
1.4
1.39869
1.4024
1.39887
1.39704
1.40534
1.4002
1.39023
1.40763
1.41085
1.38031
1.39573
1.42875
1.39912
1.35519
1.41714
1.45062
1.37771
1.33888
1.42991
1.46246
1.37081
1.345
1.42048
1.44668
1.38878
1.36432
1.40259
1.42474
1.40367
1.38548
1.39373
1.40614
1.40551
1.39913
1.39723
1.39925
1.40081
1.40069
1.4001
1.39994
1.40013
1.40036
1.40062
1.40101
1.40158
1.40241
1.40356
1.40512
1.40725
1.41005
1.41365
1.41816
1.42364
1.43004
1.43711
1.44447
1.45153
1.45766
1.4623
1.4651
1.46568
1.4645
1.46101
1.45624
1.44992
1.4428
1.43489
1.42625
1.41763
1.40937
1.39969
1.39227
1.3838
1.37573
1.37014
1.36254
1.35877
1.35432
1.35227
1.35145
1.35107
1.35336
1.35803
1.36384
1.37051
1.37908
1.38923
1.39866
1.4105
1.42474
1.43622
1.44676
1.45698
1.46315
1.46334
1.45941
1.45338
1.44535
1.4356
1.42617
1.41856
1.41265
1.40826
1.40524
1.4031
1.40161
1.40075
1.40034
1.40018
1.40011
1.40007
1.40005
1.40004
1.40003
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.39998
1.40007
1.39988
1.40019
1.39978
1.40017
1.40013
1.39927
1.40138
1.39897
1.39877
1.4041
1.3969
1.39646
1.408
1.4004
1.3848
1.41296
1.41186
1.37529
1.39596
1.43613
1.39694
1.34466
1.42106
1.46572
1.37322
1.31985
1.4388
1.4754
1.36805
1.331
1.42258
1.45745
1.38959
1.35613
1.39858
1.42914
1.40853
1.38507
1.39056
1.40472
1.40645
1.40037
1.39744
1.39882
1.40052
1.40068
1.40018
1.40001
1.40017
1.4004
1.40069
1.40112
1.40175
1.40266
1.40389
1.40556
1.40779
1.41069
1.41438
1.41897
1.42449
1.43088
1.43787
1.4451
1.45194
1.45797
1.46241
1.46522
1.4659
1.46446
1.46148
1.45679
1.45064
1.44366
1.43634
1.42771
1.42011
1.41163
1.40258
1.39667
1.38701
1.381
1.37542
1.36939
1.36672
1.36165
1.3606
1.3604
1.36199
1.36559
1.37043
1.37549
1.38215
1.3926
1.40256
1.41157
1.4248
1.43812
1.44701
1.45605
1.4634
1.46411
1.45971
1.45343
1.44516
1.43584
1.4271
1.41909
1.41243
1.40792
1.40505
1.40307
1.40173
1.40086
1.40035
1.40012
1.40005
1.40004
1.40006
1.40006
1.40004
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39999
1.40003
1.39997
1.40004
1.40001
1.39991
1.40028
1.39947
1.4008
1.39933
1.39961
1.40228
1.39714
1.39931
1.40625
1.39526
1.39284
1.41405
1.40028
1.37963
1.41479
1.41338
1.3777
1.38792
1.44817
1.38991
1.34228
1.41585
1.48811
1.36316
1.30505
1.44454
1.4916
1.36347
1.31582
1.42291
1.4692
1.39411
1.34875
1.39139
1.43061
1.41435
1.38753
1.38825
1.40214
1.40629
1.40155
1.39804
1.39863
1.40018
1.40056
1.40023
1.40009
1.40022
1.40045
1.40077
1.40123
1.40192
1.40288
1.40419
1.40594
1.40825
1.41124
1.41502
1.41966
1.42518
1.43154
1.43843
1.44551
1.45227
1.45801
1.46272
1.46492
1.46626
1.46472
1.46187
1.45736
1.45147
1.44491
1.43822
1.42887
1.4233
1.41341
1.40658
1.39995
1.3913
1.38796
1.38056
1.37603
1.37233
1.37001
1.37188
1.37128
1.37172
1.37568
1.38233
1.38799
1.39556
1.40696
1.41487
1.42404
1.43915
1.4507
1.45608
1.46108
1.46436
1.46167
1.45341
1.44402
1.4356
1.42728
1.41932
1.41291
1.40794
1.40438
1.40247
1.40154
1.40088
1.40039
1.40009
1.39996
1.39998
1.40002
1.40002
1.40002
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.39999
1.4
1.40004
1.39992
1.40016
1.39979
1.40023
1.39991
1.39963
1.40125
1.39818
1.40041
1.40376
1.3937
1.40006
1.41109
1.39234
1.3849
1.42404
1.40306
1.37396
1.40635
1.42433
1.38098
1.3795
1.45121
1.39914
1.32351
1.41942
1.51171
1.34966
1.28718
1.45078
1.51313
1.35913
1.29834
1.41772
1.48019
1.40471
1.34567
1.38175
1.42726
1.41917
1.39225
1.38797
1.39934
1.40503
1.40221
1.39885
1.39871
1.39985
1.40033
1.4002
1.40014
1.40027
1.40051
1.40085
1.40135
1.40208
1.40308
1.40446
1.40629
1.40867
1.41172
1.41555
1.42023
1.42578
1.432
1.43892
1.44569
1.45255
1.4579
1.46267
1.46524
1.46623
1.46478
1.46247
1.45833
1.45221
1.4467
1.43928
1.43115
1.42654
1.41479
1.41253
1.40286
1.39725
1.39162
1.38519
1.38555
1.38171
1.37934
1.37844
1.37934
1.38363
1.38995
1.3948
1.3983
1.40833
1.42026
1.42757
1.43882
1.4521
1.45783
1.46087
1.46393
1.4613
1.45361
1.44487
1.43515
1.42558
1.41866
1.41339
1.40837
1.40451
1.40226
1.4011
1.40062
1.4004
1.40019
1.40005
1.39998
1.39994
1.39994
1.39998
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40003
1.39997
1.40005
1.39998
1.39997
1.40017
1.39961
1.40072
1.39905
1.40052
1.4014
1.39608
1.40274
1.40565
1.38754
1.40024
1.42364
1.3833
1.37278
1.43688
1.41607
1.36126
1.38646
1.45384
1.37309
1.3756
1.45192
1.41761
1.28373
1.43801
1.53661
1.33796
1.25636
1.45793
1.53815
1.3628
1.28088
1.40343
1.48615
1.42009
1.35064
1.37329
1.41897
1.42067
1.39791
1.38982
1.39724
1.40319
1.40225
1.39961
1.399
1.39966
1.40009
1.40013
1.40015
1.4003
1.40056
1.40092
1.40146
1.40223
1.40327
1.4047
1.40659
1.40903
1.41212
1.41604
1.42063
1.42627
1.43237
1.43914
1.44593
1.45222
1.45851
1.46203
1.46519
1.46638
1.46533
1.46292
1.45932
1.45243
1.44991
1.43912
1.43603
1.4275
1.41911
1.41657
1.40414
1.40465
1.39781
1.39544
1.39069
1.38479
1.3886
1.39241
1.39238
1.39264
1.40009
1.40561
1.41104
1.42522
1.43429
1.43765
1.44961
1.46281
1.46466
1.46092
1.45844
1.45467
1.44583
1.43451
1.42502
1.41761
1.4118
1.40814
1.40549
1.40283
1.40103
1.40042
1.40031
1.40028
1.40019
1.40005
1.39996
1.39997
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.39999
1.40002
1.40001
1.39996
1.40011
1.39983
1.40022
1.39983
1.39992
1.4008
1.39805
1.40224
1.40118
1.39183
1.40893
1.40768
1.37501
1.40246
1.44701
1.36533
1.35284
1.45642
1.44392
1.32597
1.37922
1.48334
1.36319
1.35164
1.49971
1.40219
1.23576
1.46303
1.57823
1.325
1.21456
1.45669
1.56338
1.38038
1.27147
1.38128
1.48117
1.43518
1.3637
1.36939
1.40884
1.41816
1.40245
1.39307
1.39647
1.40138
1.40179
1.40016
1.39942
1.39964
1.39992
1.40004
1.40014
1.40031
1.40058
1.40098
1.40156
1.40236
1.40345
1.40492
1.40684
1.40935
1.41246
1.41636
1.42113
1.42643
1.43277
1.43903
1.44643
1.45173
1.45821
1.4619
1.46585
1.46594
1.46531
1.4639
1.46
1.45424
1.45234
1.4388
1.44246
1.42504
1.42726
1.4176
1.41351
1.41085
1.3988
1.40038
1.39939
1.40008
1.39925
1.39655
1.39862
1.40756
1.41655
1.41606
1.4234
1.4383
1.44415
1.45085
1.46235
1.46518
1.46159
1.45887
1.45254
1.44287
1.4348
1.42655
1.41679
1.40986
1.40682
1.40471
1.40268
1.40129
1.40044
1.40007
1.40008
1.40013
1.40013
1.40014
1.40012
1.40006
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.39999
1.40001
1.40001
1.39998
1.40004
1.39997
1.40001
1.40009
1.39976
1.4005
1.39919
1.40094
1.40005
1.39694
1.40608
1.3985
1.38577
1.42107
1.41056
1.3486
1.4145
1.48054
1.33658
1.32222
1.49381
1.47212
1.26571
1.411
1.49666
1.33035
1.33125
1.5927
1.35638
1.17336
1.48479
1.63893
1.31892
1.17407
1.43688
1.57974
1.41049
1.27761
1.35947
1.46338
1.44311
1.38067
1.3718
1.39986
1.41298
1.40484
1.39649
1.39679
1.40005
1.40112
1.4004
1.39978
1.39973
1.39987
1.39999
1.40012
1.40031
1.40061
1.40103
1.40165
1.40248
1.40358
1.40511
1.40712
1.40949
1.41295
1.41648
1.42145
1.42664
1.433
1.43923
1.44543
1.45244
1.45814
1.46121
1.46523
1.46632
1.46555
1.46649
1.45765
1.45932
1.44965
1.44457
1.44437
1.42755
1.43721
1.4151
1.42097
1.41035
1.41271
1.41353
1.40352
1.40065
1.40889
1.4145
1.41186
1.41776
1.42398
1.42573
1.4416
1.4545
1.45249
1.45557
1.46612
1.46765
1.45844
1.44818
1.44086
1.43371
1.42527
1.41764
1.41101
1.40517
1.40208
1.40166
1.40137
1.40047
1.39986
1.39977
1.39992
1.40012
1.4002
1.40013
1.40006
1.40003
1.40003
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39999
1.40002
1.4
1.39998
1.40007
1.39989
1.40017
1.39984
1.40006
1.40033
1.39874
1.40259
1.39783
1.39611
1.41381
1.38977
1.37859
1.44391
1.41089
1.30356
1.44481
1.52024
1.29245
1.28959
1.56283
1.45248
1.22208
1.47133
1.51326
1.21077
1.38228
1.68835
1.31195
1.08948
1.4993
1.6975
1.33279
1.15075
1.40149
1.57482
1.44339
1.30136
1.34616
1.43848
1.4416
1.39541
1.37882
1.39449
1.40712
1.40495
1.39911
1.39769
1.39929
1.40044
1.40036
1.39998
1.39983
1.39985
1.39997
1.40012
1.40032
1.40062
1.40109
1.40171
1.40258
1.40378
1.40516
1.40742
1.40972
1.41301
1.41687
1.42164
1.42696
1.43201
1.44037
1.44492
1.45235
1.45607
1.46226
1.46559
1.46642
1.46477
1.46748
1.45586
1.46744
1.44367
1.45839
1.43666
1.43832
1.43357
1.42173
1.43503
1.41465
1.41733
1.4114
1.41708
1.42063
1.42042
1.41263
1.41957
1.43924
1.43689
1.43679
1.45455
1.45998
1.45878
1.46495
1.46496
1.45683
1.45025
1.44146
1.42911
1.42148
1.41823
1.41265
1.40587
1.40236
1.40151
1.40107
1.40062
1.40022
1.39989
1.39978
1.39981
1.39984
1.39989
1.39997
1.40002
1.40003
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.4
1.4
1.40002
1.39998
1.40002
1.40004
1.39987
1.4003
1.39949
1.40076
1.39938
1.399
1.40506
1.39222
1.39825
1.42545
1.37172
1.3701
1.48614
1.39688
1.24639
1.49815
1.55403
1.2273
1.2898
1.64385
1.35296
1.2261
1.57474
1.50127
1.03425
1.47452
1.79114
1.27869
1.00822
1.49269
1.7293
1.37162
1.15721
1.36405
1.54601
1.46382
1.33611
1.34599
1.41487
1.43243
1.40509
1.38725
1.39283
1.40242
1.40383
1.4006
1.39867
1.39906
1.39993
1.40017
1.40004
1.39989
1.39987
1.39997
1.40011
1.40034
1.40065
1.4011
1.40182
1.40262
1.40386
1.40553
1.40719
1.41018
1.4132
1.41703
1.42122
1.4275
1.43267
1.43916
1.44348
1.45358
1.45612
1.46183
1.46425
1.46327
1.47008
1.46412
1.46395
1.46405
1.44518
1.46317
1.43021
1.45842
1.42923
1.43706
1.42591
1.42016
1.43466
1.42759
1.41837
1.4193
1.43418
1.42982
1.43727
1.44526
1.4386
1.45373
1.47096
1.46387
1.45715
1.46062
1.45931
1.45003
1.4388
1.42831
1.41957
1.41359
1.41063
1.40862
1.40539
1.40201
1.40059
1.40072
1.40081
1.40039
1.39991
1.39968
1.39971
1.39986
1.39996
1.39999
1.39999
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.4
1.40001
1.40001
1.4
1.4
1.40004
1.39994
1.40011
1.3999
1.40006
1.40012
1.39942
1.40161
1.39726
1.40115
1.40767
1.38118
1.40732
1.44057
1.33881
1.36558
1.55058
1.35358
1.19996
1.56903
1.5592
1.14251
1.37941
1.66605
1.20475
1.25639
1.7688
1.39174
0.902275
1.53394
1.88962
1.26598
0.968202
1.46293
1.71832
1.41786
1.19777
1.33715
1.50221
1.46663
1.36908
1.35604
1.39909
1.42059
1.40887
1.39454
1.39387
1.3996
1.40238
1.40117
1.39948
1.3992
1.39967
1.39999
1.40001
1.39991
1.39988
1.39997
1.40014
1.40032
1.4007
1.40115
1.40174
1.40298
1.40361
1.4058
1.40748
1.41017
1.41301
1.41722
1.42264
1.42517
1.43311
1.43875
1.44581
1.45078
1.45411
1.46004
1.46739
1.46228
1.47731
1.45075
1.47834
1.44425
1.47156
1.45286
1.44833
1.45261
1.42267
1.45336
1.43377
1.43843
1.427
1.42918
1.43358
1.44606
1.43466
1.42636
1.4601
1.45991
1.4447
1.46453
1.47266
1.46059
1.45775
1.45511
1.44404
1.43621
1.43048
1.41921
1.40857
1.40551
1.40614
1.40484
1.402
1.40028
1.40008
1.40023
1.40024
1.40028
1.40032
1.40025
1.40012
1.40003
1.4
1.39999
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.39999
1.40002
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40003
1.39993
1.40017
1.39973
1.40041
1.39953
1.40002
1.40221
1.39337
1.40761
1.40783
1.36366
1.42802
1.45712
1.28514
1.37994
1.61985
1.27822
1.1955
1.64282
1.49572
1.08153
1.56225
1.60157
1.02767
1.32453
1.99245
1.24888
0.81665
1.56575
1.92917
1.2876
0.989816
1.41715
1.66996
1.44972
1.257
1.33157
1.45634
1.45497
1.39288
1.37069
1.39137
1.41019
1.40854
1.3992
1.39579
1.39845
1.40113
1.40113
1.39998
1.39945
1.3996
1.39985
1.39994
1.39988
1.3999
1.39994
1.40015
1.40039
1.40059
1.40137
1.40169
1.40287
1.40414
1.4056
1.4073
1.41054
1.41397
1.4156
1.42268
1.42548
1.43565
1.43433
1.44519
1.44867
1.45731
1.46327
1.46123
1.46301
1.46754
1.4572
1.48794
1.44215
1.48831
1.42092
1.47371
1.44066
1.45821
1.44847
1.42696
1.4438
1.44759
1.44355
1.42982
1.45573
1.44341
1.45019
1.47099
1.44945
1.45528
1.48012
1.46726
1.44986
1.44974
1.44432
1.43241
1.42614
1.42093
1.41086
1.40209
1.39978
1.40061
1.40073
1.39996
1.39902
1.39868
1.39941
1.40032
1.40051
1.40028
1.40012
1.40008
1.40005
1.40003
1.40002
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.39999
1.40002
1.39999
1.40002
1.39999
1.40003
1.39997
1.40006
1.39995
1.40003
1.40007
1.39974
1.40073
1.39842
1.40212
1.40109
1.38824
1.42077
1.40184
1.33956
1.46631
1.46594
1.21556
1.43065
1.65064
1.19795
1.24998
1.70388
1.32424
1.11802
1.76976
1.49738
0.81878
1.47261
2.09765
1.19309
0.770494
1.56916
1.89409
1.32644
1.06821
1.38038
1.59411
1.46228
1.3136
1.34205
1.42273
1.43745
1.40498
1.3842
1.39023
1.40314
1.40617
1.40136
1.39762
1.39831
1.40028
1.40079
1.40017
1.39967
1.39965
1.39979
1.39991
1.39986
1.39987
1.40002
1.40004
1.40048
1.40072
1.40099
1.40229
1.40262
1.40389
1.40606
1.40781
1.4098
1.41285
1.41817
1.4222
1.42402
1.43251
1.43573
1.44815
1.44948
1.45015
1.4622
1.44821
1.48843
1.44926
1.49287
1.44005
1.46658
1.46468
1.45581
1.48785
1.42332
1.46341
1.43823
1.46212
1.44845
1.44795
1.43892
1.46076
1.46698
1.42664
1.47356
1.48844
1.4433
1.45546
1.47695
1.45758
1.4424
1.44005
1.43088
1.42095
1.41799
1.41559
1.40916
1.40152
1.39774
1.39867
1.39991
1.39936
1.39914
1.39972
1.39974
1.39946
1.39963
1.39995
1.40005
1.40003
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40002
1.39999
1.40002
1.39999
1.40001
1.40001
1.4
1.40001
1.39999
1.40003
1.39995
1.40011
1.39985
1.4002
1.3998
1.40007
1.40072
1.39681
1.40698
1.39533
1.38407
1.4427
1.38364
1.31501
1.52174
1.45215
1.15672
1.5147
1.60282
1.14845
1.37609
1.70757
1.09224
1.24016
1.9587
1.38218
0.644135
1.63542
2.07803
1.18841
0.830562
1.52982
1.80135
1.37227
1.1598
1.36757
1.51831
1.45362
1.35951
1.35939
1.40274
1.42107
1.40902
1.39364
1.39212
1.39956
1.40378
1.40182
1.3989
1.39863
1.39985
1.40046
1.4002
1.39982
1.39971
1.3998
1.39981
1.39993
1.39979
1.4
1.40025
1.40007
1.40116
1.40099
1.40185
1.40304
1.40444
1.40528
1.40687
1.41261
1.4113
1.41827
1.41743
1.43005
1.43116
1.43771
1.4393
1.44431
1.45449
1.46751
1.45604
1.4816
1.42268
1.50794
1.41969
1.53702
1.41363
1.49094
1.4268
1.46968
1.47743
1.44612
1.45385
1.44885
1.46861
1.43793
1.48085
1.46049
1.44144
1.49493
1.46395
1.43655
1.47133
1.46485
1.43378
1.43383
1.43411
1.41597
1.40738
1.41467
1.41615
1.40724
1.40102
1.40062
1.40092
1.40133
1.40187
1.40083
1.39936
1.39932
1.39994
1.40007
1.39995
1.39994
1.39999
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40002
1.39999
1.40002
1.4
1.4
1.40002
1.39999
1.40003
1.39998
1.40003
1.39997
1.40004
1.39997
1.40001
1.40006
1.39985
1.40033
1.39937
1.40111
1.3993
1.39607
1.41475
1.38192
1.38455
1.47315
1.3472
1.30449
1.57989
1.40249
1.15783
1.58586
1.48805
1.13386
1.58154
1.60995
0.901217
1.37819
2.09582
1.25575
0.629282
1.67261
2.0205
1.19493
0.960827
1.49158
1.67075
1.40402
1.25299
1.36432
1.46378
1.43675
1.38586
1.37661
1.39483
1.40935
1.4079
1.39881
1.39502
1.39835
1.40192
1.40156
1.39968
1.39908
1.39966
1.40014
1.40008
1.39989
1.39969
1.39984
1.39978
1.39982
1.40003
1.3997
1.40039
1.40038
1.40053
1.40133
1.40258
1.40199
1.40411
1.40701
1.40669
1.41061
1.41018
1.42199
1.41739
1.42912
1.42279
1.43717
1.4466
1.44523
1.46669
1.42642
1.47932
1.43744
1.50121
1.46587
1.45199
1.47606
1.41793
1.53566
1.42076
1.50274
1.41941
1.47222
1.46253
1.47459
1.4517
1.45344
1.505
1.42277
1.45498
1.51966
1.4462
1.42086
1.46188
1.45414
1.42554
1.41959
1.41779
1.4087
1.40056
1.39989
1.40543
1.40829
1.40453
1.40135
1.40191
1.4016
1.39998
1.40002
1.40086
1.40063
1.40001
1.39989
1.40001
1.40003
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.39999
1.40001
1.4
1.4
1.40002
1.39999
1.40002
1.39999
1.40001
1.40001
1.39999
1.40004
1.39995
1.40009
1.3999
1.40012
1.39993
1.39997
1.40032
1.3988
1.40343
1.39438
1.39967
1.42329
1.35863
1.3967
1.50187
1.29876
1.32026
1.61386
1.32375
1.24885
1.59978
1.33908
1.16985
1.78623
1.47819
0.774068
1.50448
2.14226
1.1301
0.783789
1.62343
1.87934
1.25847
1.09192
1.45417
1.5719
1.40392
1.32446
1.37405
1.42501
1.42239
1.39958
1.38907
1.39339
1.40285
1.40567
1.40085
1.39722
1.39846
1.4008
1.40105
1.40002
1.39947
1.39963
1.39998
1.39998
1.39989
1.39981
1.39967
1.39999
1.39964
1.39991
1.40021
1.39975
1.40052
1.4013
1.40046
1.40215
1.40334
1.40476
1.40346
1.40897
1.41031
1.41433
1.4141
1.41754
1.42686
1.43228
1.43819
1.4381
1.42845
1.46689
1.42972
1.52395
1.38894
1.5364
1.35689
1.57162
1.40236
1.53171
1.42419
1.4436
1.50323
1.44455
1.49219
1.43834
1.48696
1.43194
1.49102
1.49518
1.40386
1.48379
1.49214
1.41464
1.43849
1.45964
1.41936
1.40831
1.42653
1.41687
1.39114
1.38739
1.39897
1.40273
1.40016
1.39983
1.39918
1.3976
1.39881
1.40101
1.4009
1.39981
1.39972
1.40007
1.40013
1.40003
1.39999
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40002
1.39999
1.40002
1.4
1.4
1.40002
1.39998
1.40004
1.39996
1.40005
1.39997
1.40002
1.40004
1.39991
1.40017
1.39978
1.40031
1.39972
1.39909
1.4062
1.38479
1.41155
1.42791
1.32736
1.4264
1.51061
1.25819
1.36706
1.58704
1.26513
1.38407
1.57925
1.16774
1.27727
1.8927
1.37807
0.742983
1.57917
2.07084
1.10488
0.935833
1.60757
1.69508
1.30816
1.233
1.41315
1.49286
1.41095
1.36208
1.38634
1.40756
1.41018
1.4037
1.39606
1.3952
1.40004
1.40312
1.40127
1.39869
1.39883
1.40021
1.40062
1.40015
1.39978
1.39976
1.39986
1.40004
1.39975
1.39996
1.39969
1.39968
1.40018
1.39946
1.40008
1.40046
1.40014
1.40033
1.40207
1.40243
1.40059
1.40651
1.40375
1.41173
1.40271
1.41737
1.41191
1.42801
1.42053
1.42193
1.4352
1.42885
1.47352
1.42794
1.46566
1.42659
1.45838
1.50436
1.42384
1.54306
1.3306
1.59276
1.3647
1.56596
1.41583
1.45908
1.47218
1.47706
1.47836
1.41646
1.53274
1.4405
1.38554
1.51616
1.47554
1.38844
1.42324
1.44798
1.41971
1.40467
1.41257
1.41776
1.40932
1.39458
1.3891
1.39476
1.39841
1.39694
1.39785
1.40062
1.40037
1.39886
1.39913
1.40009
1.40026
1.40001
1.39995
1.39999
1.40002
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40002
1.39999
1.40001
1.40001
1.39999
1.40003
1.39998
1.40003
1.39999
1.40001
1.40002
1.39996
1.40008
1.39991
1.4001
1.39994
1.39998
1.40019
1.39954
1.40116
1.39735
1.40301
1.40552
1.37319
1.43317
1.42133
1.3004
1.46572
1.49017
1.24541
1.43537
1.48829
1.26733
1.50155
1.54309
1.04153
1.37348
1.93711
1.27664
0.826295
1.63148
1.85428
1.20394
1.07446
1.53892
1.59019
1.33117
1.31042
1.41905
1.43476
1.40689
1.38883
1.39143
1.39952
1.4034
1.40382
1.39936
1.39673
1.39929
1.40159
1.40094
1.39952
1.39931
1.39993
1.40026
1.40015
1.39985
1.3999
1.39976
1.39995
1.39994
1.39959
1.40014
1.39952
1.39979
1.4001
1.40007
1.39927
1.4016
1.40044
1.40051
1.40235
1.40343
1.40489
1.40216
1.40959
1.40821
1.41815
1.40841
1.41844
1.42074
1.42986
1.45053
1.40579
1.47655
1.36928
1.5576
1.34809
1.59554
1.29635
1.58305
1.3719
1.53061
1.48962
1.36392
1.56247
1.38912
1.5304
1.43225
1.48922
1.42045
1.45117
1.54993
1.38183
1.40693
1.50853
1.41964
1.38954
1.44386
1.42683
1.38649
1.40059
1.42635
1.41952
1.40232
1.39918
1.4008
1.39891
1.39975
1.40259
1.4013
1.39853
1.39889
1.40047
1.40057
1.39998
1.39984
1.39998
1.40003
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.39999
1.40002
1.39999
1.40002
1.4
1.39999
1.40004
1.39995
1.40007
1.39995
1.40004
1.40001
1.39995
1.4001
1.39991
1.40003
1.40013
1.39954
1.402
1.39315
1.41282
1.39621
1.36625
1.45996
1.39899
1.29539
1.49506
1.44449
1.27768
1.48449
1.37653
1.29231
1.60156
1.47082
1.02223
1.41439
1.91222
1.23236
0.935959
1.65866
1.65922
1.24408
1.25381
1.46334
1.48656
1.38898
1.34732
1.40364
1.4199
1.3998
1.39745
1.39802
1.39826
1.4012
1.40203
1.40025
1.39861
1.39935
1.40065
1.40063
1.3999
1.39961
1.39986
1.4
1.40007
1.39993
1.3998
1.40001
1.3996
1.40009
1.39976
1.39959
1.40005
1.3999
1.39919
1.40081
1.39991
1.40026
1.39993
1.40363
1.39954
1.40449
1.40049
1.41104
1.40356
1.41049
1.4065
1.41745
1.42513
1.41629
1.42899
1.40894
1.45171
1.44038
1.44469
1.46386
1.37237
1.56233
1.31459
1.68113
1.2031
1.67994
1.28366
1.56736
1.47607
1.395
1.48973
1.44561
1.51236
1.36193
1.50033
1.51197
1.32947
1.43895
1.50422
1.39195
1.37576
1.42889
1.42373
1.38846
1.37824
1.3944
1.41287
1.41455
1.4049
1.40118
1.40349
1.40196
1.39852
1.3992
1.40137
1.40113
1.39989
1.39966
1.39998
1.40009
1.40003
1.39999
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.39999
1.40001
1.40001
1.39998
1.40004
1.39997
1.40003
1.4
1.39998
1.40007
1.39992
1.40011
1.39993
1.40003
1.40008
1.39982
1.40031
1.39938
1.40128
1.39985
1.39111
1.42535
1.3779
1.37065
1.48044
1.36744
1.31905
1.49971
1.38714
1.35276
1.48394
1.31027
1.30796
1.65983
1.41953
1.02838
1.48639
1.77586
1.24469
1.10866
1.55574
1.58574
1.28116
1.31535
1.46454
1.42267
1.38109
1.39673
1.39895
1.40256
1.40232
1.40051
1.40011
1.398
1.39985
1.40158
1.40032
1.3993
1.39964
1.40018
1.40029
1.40008
1.39988
1.39987
1.40001
1.3999
1.40012
1.39971
1.39994
1.39995
1.39952
1.4001
1.39979
1.39951
1.39993
1.40031
1.39932
1.39997
1.40179
1.3991
1.40278
1.39873
1.40816
1.39869
1.40928
1.39917
1.41766
1.4089
1.41275
1.4173
1.40169
1.46397
1.37858
1.51277
1.30857
1.57957
1.28395
1.63713
1.28403
1.54904
1.41506
1.38458
1.66323
1.21072
1.64373
1.33842
1.4991
1.4541
1.47462
1.42932
1.34344
1.56555
1.45041
1.3192
1.4664
1.46428
1.36709
1.39623
1.43957
1.40935
1.37698
1.38371
1.39729
1.39812
1.39857
1.40228
1.40092
1.39738
1.39887
1.40191
1.40134
1.39945
1.39929
1.4
1.40021
1.40005
1.39998
1.39999
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40002
1.4
1.40001
1.40001
1.39999
1.40003
1.39998
1.40001
1.40002
1.39996
1.40007
1.39994
1.40006
1.39998
1.39998
1.40007
1.39994
1.40001
1.40015
1.39962
1.4008
1.39785
1.40577
1.39153
1.39746
1.43192
1.35793
1.38751
1.48219
1.34231
1.3626
1.47423
1.34744
1.42427
1.47003
1.26633
1.34428
1.64254
1.41491
1.05127
1.53271
1.66427
1.22288
1.29195
1.47748
1.46471
1.37636
1.34946
1.41049
1.43569
1.38607
1.38908
1.40722
1.40016
1.3985
1.39981
1.39977
1.40006
1.39989
1.40017
1.40011
1.39981
1.39981
1.40002
1.40011
1.40004
1.40006
1.39986
1.40004
1.39992
1.3999
1.40012
1.39957
1.40006
1.39981
1.39973
1.39958
1.40055
1.39882
1.40047
1.39983
1.40059
1.39934
1.40145
1.40122
1.40253
1.40083
1.40352
1.40722
1.40596
1.40848
1.40323
1.41978
1.41457
1.42401
1.41715
1.40418
1.46878
1.36878
1.56523
1.24146
1.69089
1.11637
1.83505
1.09291
1.70341
1.32915
1.39129
1.62055
1.31751
1.48303
1.40088
1.54043
1.35923
1.36885
1.5613
1.3765
1.33936
1.48593
1.44357
1.35817
1.38779
1.43654
1.43379
1.40409
1.38434
1.38652
1.3969
1.39911
1.39649
1.39859
1.40209
1.40107
1.39864
1.39881
1.40012
1.40041
1.40008
1.39993
1.39997
1.40002
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.39999
1.40002
1.39999
1.4
1.40003
1.39997
1.40005
1.39997
1.40001
1.40004
1.39993
1.4001
1.39991
1.40007
1.4
1.39995
1.40008
1.39999
1.4
1.40001
1.39815
1.40957
1.38002
1.41217
1.42689
1.34582
1.41136
1.4606
1.33733
1.40831
1.42722
1.34218
1.45679
1.47093
1.23634
1.37484
1.62802
1.36095
1.1692
1.49292
1.57256
1.28358
1.32141
1.48678
1.41219
1.36368
1.41497
1.3992
1.39179
1.40675
1.39941
1.39883
1.40047
1.39946
1.40109
1.39996
1.39939
1.40015
1.40023
1.39998
1.39998
1.39996
1.3999
1.40001
1.39998
1.40002
1.39999
1.39981
1.40015
1.39975
1.39999
1.39997
1.39974
1.39969
1.40028
1.39919
1.40017
1.39955
1.40065
1.39835
1.40225
1.39787
1.40443
1.39602
1.40665
1.39822
1.40899
1.39841
1.40686
1.41198
1.40203
1.43182
1.37127
1.47579
1.33648
1.54557
1.27756
1.58113
1.26806
1.56614
1.39383
1.3707
1.64334
1.07837
1.87071
1.10609
1.60309
1.42189
1.38399
1.45113
1.44828
1.51759
1.26854
1.43205
1.54313
1.33208
1.36086
1.47657
1.41644
1.35702
1.38936
1.42252
1.41783
1.40697
1.40464
1.40137
1.39732
1.39917
1.40242
1.40077
1.39795
1.39862
1.40053
1.40077
1.40009
1.39982
1.39995
1.40002
1.40002
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.39999
1.40002
1.4
1.4
1.40003
1.39998
1.40003
1.4
1.39998
1.40006
1.39993
1.40007
1.39996
1.40001
1.40005
1.39993
1.40006
1.40003
1.39983
1.40038
1.39935
1.40156
1.39638
1.40382
1.40618
1.37471
1.4261
1.41355
1.34675
1.4324
1.42324
1.3558
1.43607
1.38695
1.34568
1.47958
1.45337
1.24963
1.37178
1.62375
1.30598
1.27108
1.49641
1.44047
1.3777
1.35857
1.40991
1.43865
1.37747
1.37997
1.42521
1.40125
1.38888
1.40177
1.40278
1.40147
1.39957
1.39864
1.40006
1.40059
1.40025
1.39994
1.39991
1.4
1.40006
1.39998
1.39992
1.40005
1.39987
1.40011
1.39986
1.39989
1.40009
1.39973
1.39992
1.39995
1.3998
1.39953
1.40025
1.39953
1.39964
1.40035
1.39926
1.40145
1.39838
1.40257
1.39919
1.40485
1.3976
1.4069
1.40146
1.40985
1.40344
1.40387
1.42126
1.39241
1.46185
1.33285
1.54649
1.2275
1.70523
1.07746
1.84052
0.977588
1.83311
1.18417
1.46869
1.62138
1.11787
1.67416
1.35466
1.44338
1.33478
1.50503
1.4903
1.27254
1.46809
1.4753
1.31535
1.38989
1.47084
1.41109
1.35658
1.36911
1.40023
1.41393
1.40923
1.40146
1.40102
1.403
1.40068
1.39783
1.399
1.40126
1.40118
1.39999
1.39964
1.3999
1.40007
1.40004
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40002
1.39999
1.40002
1.40001
1.39998
1.40005
1.39996
1.40003
1.40001
1.39995
1.40009
1.3999
1.4001
1.39995
1.40001
1.40003
1.40002
1.39984
1.40036
1.39933
1.40251
1.39216
1.41298
1.3951
1.38054
1.43108
1.39794
1.36233
1.43859
1.38858
1.38589
1.44264
1.36675
1.34123
1.50395
1.42451
1.26567
1.41205
1.54133
1.34025
1.30757
1.47764
1.41359
1.35785
1.41912
1.40153
1.38556
1.41805
1.39657
1.38999
1.40622
1.40059
1.39772
1.39978
1.3997
1.40077
1.40012
1.39951
1.39993
1.40019
1.39998
1.39991
1.40005
1.40004
1.40009
1.3999
1.40005
1.39998
1.39988
1.40012
1.39978
1.39998
1.39986
1.40005
1.39939
1.40055
1.39903
1.40051
1.39896
1.40093
1.39849
1.40173
1.3977
1.40311
1.39836
1.4025
1.39991
1.40297
1.40561
1.39556
1.41785
1.38327
1.4463
1.3538
1.48165
1.31879
1.52143
1.31811
1.48923
1.40828
1.32275
1.66611
1.03702
1.94525
0.873637
1.82325
1.29461
1.34966
1.54277
1.37313
1.42793
1.31192
1.55589
1.41215
1.29211
1.49423
1.44418
1.3229
1.3934
1.45499
1.42044
1.38428
1.38323
1.39131
1.39529
1.39911
1.40167
1.39986
1.39787
1.39965
1.40191
1.40128
1.39964
1.39932
1.39987
1.40014
1.40007
1.4
1.39999
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.39999
1.40001
1.40002
1.39999
1.40001
1.40001
1.39998
1.40004
1.39998
1.40001
1.40004
1.39994
1.40008
1.39994
1.40004
1.40002
1.39994
1.4001
1.39992
1.40002
1.4001
1.39981
1.40031
1.39927
1.40153
1.39966
1.39301
1.41739
1.38522
1.39155
1.42759
1.38413
1.38943
1.4248
1.37196
1.40815
1.44466
1.34821
1.35637
1.50059
1.41599
1.26508
1.46301
1.45343
1.3579
1.38426
1.40609
1.42953
1.38365
1.38025
1.42962
1.39657
1.37809
1.41186
1.40736
1.39566
1.39781
1.39878
1.40132
1.40163
1.39975
1.39911
1.39972
1.40026
1.40023
1.40003
1.39989
1.4
1.4
1.40004
1.40005
1.39988
1.40011
1.39988
1.39998
1.39997
1.39996
1.39969
1.40018
1.39955
1.40008
1.39948
1.40042
1.39873
1.40148
1.39754
1.40275
1.3973
1.40324
1.39691
1.40487
1.39852
1.40264
1.40343
1.3983
1.41832
1.37752
1.45189
1.33146
1.52875
1.23842
1.65028
1.10099
1.78552
1.01874
1.79504
1.13759
1.50663
1.57953
1.0483
1.84083
1.14883
1.4768
1.41097
1.50053
1.35857
1.29441
1.54091
1.38872
1.34903
1.47768
1.40712
1.33784
1.39562
1.43952
1.42409
1.39988
1.3922
1.39554
1.39916
1.39875
1.39806
1.40016
1.40195
1.40078
1.399
1.39902
1.39994
1.40029
1.40013
1.39998
1.39997
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40002
1.39999
1.40002
1.4
1.39999
1.40004
1.39996
1.40005
1.39999
1.39998
1.40007
1.3999
1.40012
1.39992
1.40005
1.40002
1.39997
1.39999
1.40015
1.39969
1.40067
1.39801
1.40493
1.39351
1.40031
1.41239
1.38411
1.4005
1.41785
1.37867
1.41394
1.40346
1.36971
1.42236
1.44494
1.32823
1.38442
1.48009
1.39403
1.31932
1.44491
1.43887
1.35498
1.41031
1.40868
1.38555
1.41327
1.39632
1.38844
1.41667
1.39924
1.39015
1.4036
1.40319
1.40035
1.39923
1.3986
1.40026
1.4008
1.40012
1.39974
1.39999
1.40012
1.40002
1.39994
1.39991
1.40006
1.39992
1.40011
1.39996
1.39994
1.40005
1.39988
1.39999
1.39985
1.4001
1.39947
1.40038
1.3993
1.40024
1.39953
1.39998
1.39957
1.40032
1.3997
1.39954
1.4017
1.39852
1.40372
1.39573
1.41058
1.38927
1.42088
1.37695
1.43865
1.36565
1.44699
1.37545
1.40797
1.46925
1.26317
1.68065
1.01397
1.91847
0.858407
1.90627
1.14527
1.38446
1.60177
1.27813
1.43775
1.35542
1.5691
1.31244
1.33263
1.49945
1.36288
1.37405
1.46545
1.40894
1.3542
1.37923
1.40974
1.41329
1.40715
1.40303
1.40067
1.39996
1.4012
1.40175
1.40007
1.39854
1.39906
1.40025
1.40054
1.40016
1.39993
1.39995
1.4
1.40002
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.4
1.39999
1.40002
1.4
1.39999
1.40003
1.39998
1.40002
1.40001
1.39996
1.40007
1.39993
1.40006
1.4
1.39995
1.40011
1.39987
1.40013
1.39993
1.40001
1.40004
1.39994
1.4002
1.39975
1.39883
1.40562
1.38984
1.4074
1.40356
1.38908
1.40676
1.40211
1.38784
1.42272
1.3907
1.36675
1.43736
1.42834
1.33424
1.40225
1.46956
1.36076
1.38138
1.41335
1.40754
1.39684
1.38583
1.41567
1.40129
1.38194
1.41442
1.40383
1.38759
1.40243
1.40251
1.40011
1.40048
1.39844
1.39926
1.40057
1.40069
1.40004
1.39969
1.39979
1.39996
1.40013
1.40005
1.40005
1.3999
1.40001
1.39999
1.39993
1.40009
1.39988
1.40004
1.39985
1.40016
1.39955
1.40041
1.3993
1.40048
1.3991
1.40083
1.39833
1.4018
1.39765
1.40184
1.39829
1.40162
1.39922
1.39958
1.40449
1.3931
1.41509
1.37763
1.44091
1.34355
1.49065
1.27859
1.57503
1.1866
1.66838
1.12686
1.65995
1.24021
1.43561
1.5751
1.04914
1.87609
1.03393
1.54423
1.42888
1.4455
1.28565
1.39018
1.59853
1.31064
1.34502
1.45045
1.37466
1.39498
1.4419
1.40803
1.37787
1.38589
1.39906
1.40259
1.40153
1.40076
1.40102
1.40069
1.39921
1.39849
1.39951
1.4007
1.4007
1.40009
1.39982
1.3999
1.40001
1.40003
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.39999
1.40002
1.39999
1.40001
1.40002
1.39997
1.40005
1.39997
1.40001
1.40005
1.39992
1.40011
1.39991
1.40007
1.40001
1.39994
1.40011
1.39992
1.40002
1.4001
1.39967
1.40108
1.39773
1.40209
1.40181
1.3927
1.40774
1.39835
1.39523
1.4099
1.3868
1.40231
1.42011
1.38484
1.3706
1.44922
1.40336
1.35337
1.40786
1.43715
1.37178
1.39446
1.41968
1.38671
1.40445
1.40425
1.39132
1.40946
1.39712
1.3894
1.4108
1.40274
1.39407
1.39913
1.40017
1.40164
1.40125
1.39924
1.39913
1.39999
1.40036
1.40008
1.39991
1.39992
1.40005
1.40005
1.40003
1.40003
1.3999
1.40007
1.39992
1.40001
1.39999
1.39997
1.39992
1.39997
1.39995
1.39981
1.39999
1.39989
1.39953
1.40045
1.39902
1.40068
1.39873
1.40167
1.39743
1.40301
1.39694
1.4044
1.39537
1.4067
1.39476
1.40738
1.39775
1.3986
1.42109
1.3579
1.49565
1.2433
1.65604
1.05776
1.83058
0.957832
1.80148
1.16033
1.40791
1.62745
1.18647
1.4388
1.44578
1.52579
1.17957
1.42257
1.56701
1.3427
1.37061
1.4225
1.37485
1.39177
1.42671
1.41584
1.39636
1.39271
1.39621
1.39875
1.39941
1.39908
1.39856
1.3989
1.40018
1.40101
1.40062
1.39987
1.39967
1.39988
1.40005
1.40005
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40002
1.39998
1.40003
1.4
1.39999
1.40005
1.39994
1.40006
1.39998
1.39998
1.40009
1.39987
1.40015
1.39988
1.40008
1.4
1.39997
1.40006
1.39992
1.39992
1.40114
1.39672
1.40468
1.39722
1.39886
1.40327
1.39658
1.40218
1.4055
1.38313
1.40993
1.42027
1.37425
1.38428
1.43805
1.39225
1.37417
1.42107
1.40371
1.39585
1.39616
1.40371
1.40388
1.39056
1.40431
1.40635
1.39144
1.40468
1.40194
1.39605
1.40241
1.39964
1.39973
1.40088
1.39962
1.3997
1.39993
1.40015
1.40017
1.40011
1.40003
1.39995
1.39994
1.39995
1.40008
1.39998
1.40007
1.39998
1.39997
1.40006
1.39989
1.40008
1.39981
1.40021
1.39957
1.40041
1.39938
1.40043
1.39927
1.40061
1.39888
1.40077
1.39932
1.39968
1.40086
1.39786
1.40421
1.39276
1.41188
1.38295
1.42612
1.36329
1.45319
1.32938
1.49548
1.28404
1.53887
1.26074
1.52092
1.35322
1.34472
1.59876
1.08137
1.81081
1.03283
1.56676
1.48176
1.3249
1.28245
1.56304
1.50128
1.15593
1.43084
1.52513
1.37232
1.38089
1.40945
1.38667
1.39172
1.40711
1.40619
1.4013
1.39977
1.39959
1.39942
1.39954
1.40021
1.401
1.40106
1.4003
1.39962
1.39961
1.39994
1.40011
1.40007
1.40001
1.39999
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40002
1.39999
1.40001
1.40001
1.39998
1.40004
1.39997
1.40002
1.40002
1.39995
1.40008
1.39992
1.40007
1.39999
1.39995
1.40013
1.39984
1.40017
1.39988
1.40006
1.40011
1.39955
1.40075
1.39987
1.39817
1.40369
1.39644
1.40227
1.3993
1.39596
1.40993
1.3967
1.38693
1.40859
1.41826
1.37162
1.40461
1.4214
1.39103
1.38782
1.41074
1.39668
1.3966
1.40628
1.39364
1.40151
1.40314
1.39361
1.40577
1.40071
1.39268
1.40334
1.40213
1.39929
1.39997
1.39834
1.39978
1.40093
1.40044
1.39983
1.39968
1.39996
1.4001
1.40009
1.39999
1.4
1.39993
1.40001
1.40003
1.39995
1.40008
1.39992
1.40006
1.39992
1.40005
1.39985
1.4001
1.39979
1.40011
1.39964
1.40038
1.39912
1.40085
1.39875
1.40104
1.39846
1.40152
1.3984
1.40094
1.40003
1.39881
1.40377
1.39291
1.4132
1.3791
1.43531
1.34567
1.48561
1.27596
1.57993
1.16569
1.68506
1.10895
1.64903
1.2639
1.38309
1.60694
1.12183
1.52103
1.51877
1.32197
1.22152
1.63292
1.45476
1.20614
1.41816
1.47468
1.38907
1.39453
1.40806
1.39286
1.39242
1.40085
1.40306
1.40134
1.4003
1.40048
1.40096
1.40104
1.40051
1.39974
1.3994
1.39966
1.40006
1.40017
1.40007
1.39999
1.39998
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.39999
1.40002
1.39999
1.4
1.40003
1.39996
1.40005
1.39998
1.4
1.40006
1.39991
1.40012
1.39989
1.40008
1.39999
1.39994
1.40013
1.39984
1.40017
1.40001
1.39944
1.40135
1.39853
1.40057
1.40031
1.39919
1.4026
1.39675
1.39681
1.41128
1.39325
1.39096
1.41339
1.40756
1.37957
1.4047
1.40644
1.39377
1.40225
1.39918
1.40064
1.39887
1.40153
1.40311
1.39559
1.39892
1.40334
1.39734
1.40227
1.39984
1.39752
1.40166
1.39983
1.40015
1.40057
1.39965
1.39981
1.39998
1.40006
1.39998
1.39995
1.40001
1.40007
1.40003
1.39998
1.40002
1.39994
1.40005
1.39996
1.39999
1.40004
1.39993
1.40008
1.39985
1.40015
1.39972
1.40021
1.39969
1.40011
1.39976
1.39997
1.39997
1.39934
1.40114
1.39769
1.40328
1.39496
1.40733
1.38973
1.41394
1.38174
1.42366
1.37019
1.43643
1.3584
1.44469
1.36134
1.42331
1.41727
1.3219
1.56488
1.15952
1.69084
1.12342
1.56999
1.45393
1.2089
1.45715
1.58362
1.25629
1.26334
1.61554
1.42172
1.2762
1.40849
1.43859
1.39339
1.39716
1.40589
1.40037
1.39833
1.3995
1.40002
1.40035
1.40049
1.40019
1.39964
1.39929
1.39943
1.39988
1.4002
1.4002
1.40004
1.39996
1.39997
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40002
1.39998
1.40002
1.40001
1.39998
1.40005
1.39994
1.40006
1.39999
1.39997
1.40009
1.39987
1.40016
1.39986
1.4001
1.39999
1.3999
1.40026
1.39975
1.39982
1.40091
1.39871
1.40146
1.39809
1.40133
1.40214
1.39447
1.40163
1.40792
1.39529
1.38859
1.41327
1.3969
1.39634
1.40394
1.40042
1.39946
1.40212
1.39977
1.3984
1.40191
1.39801
1.40087
1.403
1.39592
1.40184
1.40209
1.39754
1.40056
1.40006
1.40007
1.40086
1.39949
1.39965
1.40005
1.40014
1.40014
1.4
1.39996
1.39996
1.39999
1.4
1.40006
1.39998
1.40003
1.40001
1.39997
1.40007
1.39991
1.40009
1.39989
1.40011
1.39984
1.40015
1.39975
1.40023
1.39955
1.40045
1.39927
1.40057
1.39933
1.40029
1.39982
1.39941
1.40165
1.39652
1.40605
1.39043
1.41453
1.37874
1.42972
1.35881
1.45556
1.32705
1.49371
1.28601
1.53377
1.2617
1.51975
1.34089
1.37457
1.53182
1.17866
1.59976
1.40923
1.22621
1.46293
1.57155
1.23482
1.33219
1.54525
1.40545
1.33576
1.40543
1.41618
1.39507
1.39851
1.40258
1.39996
1.39899
1.39967
1.40001
1.39973
1.39942
1.39948
1.39985
1.40022
1.40032
1.40017
1.39999
1.39994
1.39998
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40002
1.4
1.40001
1.40002
1.39998
1.40003
1.39998
1.40001
1.40003
1.39995
1.40008
1.39993
1.40006
1.4
1.39995
1.40013
1.39984
1.4002
1.39984
1.40004
1.40021
1.39961
1.40032
1.39988
1.40009
1.40031
1.39817
1.40229
1.40235
1.39303
1.40236
1.40374
1.39804
1.39588
1.40862
1.3965
1.40004
1.39984
1.39795
1.40259
1.39767
1.39986
1.39984
1.40004
1.40165
1.39912
1.39922
1.40059
1.39851
1.40146
1.40064
1.39869
1.4003
1.39943
1.4
1.40054
1.40004
1.39991
1.39991
1.40003
1.40006
1.40001
1.39998
1.39999
1.39999
1.40001
1.40002
1.39997
1.40005
1.39997
1.40002
1.4
1.39997
1.40004
1.39992
1.40005
1.39992
1.39998
1.40002
1.39977
1.40024
1.39942
1.40076
1.39858
1.40192
1.39725
1.40355
1.39549
1.40564
1.39351
1.407
1.39286
1.40587
1.39599
1.39931
1.40791
1.38093
1.43577
1.34387
1.48767
1.2771
1.55315
1.24653
1.52403
1.373
1.27852
1.57026
1.39381
1.24465
1.49226
1.49809
1.27261
1.38138
1.47753
1.39799
1.3713
1.40477
1.40688
1.39712
1.39852
1.40046
1.4002
1.39986
1.39968
1.39964
1.39989
1.40021
1.40035
1.40025
1.40004
1.39991
1.39992
1.39998
1.40002
1.40002
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.39999
1.40002
1.4
1.39999
1.40003
1.39997
1.40004
1.39999
1.39999
1.40006
1.39992
1.40011
1.39991
1.40007
1.4
1.39993
1.40016
1.3998
1.40017
1.40001
1.39983
1.40026
1.39939
1.4013
1.39934
1.39833
1.40189
1.40118
1.39646
1.40186
1.40433
1.39526
1.39981
1.39869
1.40171
1.40049
1.39668
1.40088
1.40153
1.40084
1.39928
1.3999
1.39888
1.39977
1.40198
1.39873
1.39991
1.40053
1.39935
1.40037
1.39997
1.39997
1.40035
1.39972
1.39987
1.40007
1.40002
1.39999
1.4
1.40004
1.40002
1.40001
1.39998
1.40002
1.39998
1.40002
1.4
1.39997
1.40006
1.39992
1.4001
1.39989
1.4001
1.39987
1.40011
1.39982
1.40016
1.39974
1.40018
1.39981
1.39988
1.40035
1.39904
1.40168
1.39717
1.40462
1.39326
1.40982
1.38662
1.41737
1.37768
1.42633
1.36878
1.43456
1.36313
1.43713
1.36472
1.43427
1.37904
1.39182
1.45138
1.3027
1.54223
1.30263
1.34834
1.53329
1.3663
1.30316
1.48967
1.42904
1.32876
1.40264
1.4349
1.396
1.38808
1.40289
1.40279
1.39931
1.39991
1.40035
1.40008
1.40004
1.4002
1.40033
1.40027
1.40008
1.39992
1.39989
1.39995
1.40001
1.40003
1.40002
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39999
1.40002
1.39999
1.40001
1.40001
1.39998
1.40005
1.39996
1.40004
1.4
1.39997
1.40008
1.39989
1.40013
1.39989
1.40007
1.40002
1.3999
1.40015
1.39984
1.40029
1.39974
1.39964
1.40103
1.39947
1.3987
1.40274
1.39976
1.39797
1.39783
1.404
1.39814
1.40127
1.39702
1.40369
1.40154
1.3976
1.40193
1.39818
1.40016
1.40082
1.3996
1.4005
1.39987
1.40014
1.4003
1.39925
1.40032
1.40066
1.39978
1.40032
1.39977
1.39989
1.40013
1.40001
1.40003
1.40001
1.39997
1.39998
1.40002
1.40001
1.40002
1.39999
1.40001
1.40001
1.39998
1.40004
1.39995
1.40004
1.39997
1.40001
1.4
1.4
1.39997
1.40006
1.39983
1.40021
1.39963
1.40042
1.39935
1.4008
1.39892
1.40131
1.39866
1.4015
1.39906
1.40043
1.40118
1.39635
1.40661
1.38852
1.41549
1.37911
1.42557
1.37132
1.43067
1.36543
1.44871
1.34152
1.45936
1.35398
1.39601
1.49271
1.30007
1.39394
1.48398
1.34923
1.37015
1.45861
1.39561
1.36826
1.40571
1.41444
1.39748
1.39562
1.40131
1.40104
1.39987
1.39996
1.40014
1.40023
1.4002
1.40008
1.39993
1.39988
1.39992
1.39999
1.40004
1.40003
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40002
1.39999
1.40002
1.4
1.4
1.40003
1.39996
1.40006
1.39996
1.40003
1.40001
1.39995
1.4001
1.39988
1.40014
1.39989
1.40008
1.39997
1.39987
1.40045
1.39937
1.40021
1.40076
1.39986
1.39788
1.40137
1.4008
1.39994
1.39877
1.40131
1.40187
1.3983
1.39949
1.40129
1.39776
1.39982
1.4009
1.40015
1.39998
1.40048
1.39943
1.3995
1.40041
1.40011
1.40018
1.39993
1.39956
1.39989
1.39985
1.40006
1.40032
1.39997
1.39991
1.39999
1.40002
1.40003
1.4
1.39999
1.4
1.40001
1.4
1.40002
1.39999
1.40002
1.4
1.39999
1.40004
1.39993
1.40008
1.39992
1.40007
1.39994
1.40002
1.39997
1.39997
1.40004
1.39981
1.40034
1.39932
1.4011
1.39838
1.40255
1.39671
1.40488
1.39407
1.40756
1.39128
1.40884
1.39099
1.40653
1.39532
1.40125
1.40201
1.39863
1.39734
1.40462
1.40651
1.38082
1.44341
1.32847
1.44682
1.43789
1.3298
1.4221
1.43059
1.35769
1.40771
1.42659
1.39053
1.38793
1.40308
1.40553
1.39907
1.39858
1.4003
1.40016
1.39995
1.40002
1.40001
1.39991
1.39986
1.39989
1.39997
1.40003
1.40004
1.40002
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39999
1.40002
1.39999
1.40002
1.4
1.39999
1.40004
1.39995
1.40007
1.39995
1.40004
1.40001
1.39996
1.40009
1.39987
1.40021
1.39974
1.40014
1.40033
1.39951
1.39972
1.40054
1.4005
1.39921
1.40003
1.40165
1.39856
1.39963
1.39966
1.40157
1.39617
1.40128
1.40218
1.39857
1.40146
1.39897
1.39938
1.4005
1.39989
1.40027
1.3999
1.39983
1.39997
1.3999
1.39998
1.40036
1.3999
1.40003
1.39983
1.39997
1.4001
1.39998
1.39998
1.40002
1.40002
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39998
1.40004
1.39996
1.40006
1.39995
1.40004
1.39997
1.40004
1.39993
1.4001
1.39984
1.40018
1.39976
1.40024
1.39974
1.40028
1.3999
1.40009
1.40066
1.3991
1.40243
1.39644
1.40547
1.39208
1.40913
1.38885
1.41033
1.39043
1.40681
1.39729
1.4045
1.38862
1.41827
1.37933
1.42504
1.40008
1.35132
1.45003
1.40108
1.36853
1.42854
1.39526
1.37849
1.41423
1.40833
1.39544
1.39603
1.4008
1.40159
1.39955
1.39959
1.40009
1.40002
1.39993
1.39991
1.39993
1.39999
1.40004
1.40006
1.40004
1.40002
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.39999
1.40003
1.39998
1.40002
1.40001
1.39998
1.40005
1.39995
1.40007
1.39994
1.40007
1.39996
1.39998
1.4002
1.39966
1.40019
1.40004
1.40018
1.39947
1.4007
1.40002
1.3992
1.39929
1.40214
1.39817
1.39914
1.40176
1.40151
1.39892
1.40081
1.39903
1.3994
1.40095
1.39994
1.39963
1.40067
1.39965
1.39989
1.39993
1.4001
1.40027
1.40007
1.39995
1.40009
1.39992
1.39995
1.40006
1.40001
1.40002
1.40002
1.39998
1.4
1.40002
1.40001
1.40001
1.4
1.4
1.40001
1.39999
1.40001
1.4
1.4
1.40003
1.39997
1.40005
1.39996
1.40001
1.40002
1.39993
1.4001
1.39983
1.40023
1.39966
1.40053
1.39931
1.4011
1.39882
1.40194
1.39825
1.40256
1.39792
1.40178
1.39894
1.39871
1.40211
1.39549
1.40479
1.39552
1.40177
1.40373
1.39678
1.40106
1.40134
1.38679
1.43559
1.37614
1.38235
1.43051
1.38561
1.39833
1.41846
1.38572
1.39454
1.40798
1.40142
1.39892
1.39893
1.40026
1.40048
1.3999
1.39993
1.40001
1.39999
1.4
1.40003
1.40005
1.40004
1.40002
1.4
1.39999
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40002
1.39998
1.40003
1.39998
1.40002
1.4
1.39999
1.40005
1.39993
1.40012
1.39986
1.4001
1.40006
1.39986
1.4001
1.40003
1.40022
1.39902
1.40077
1.40054
1.39898
1.39968
1.40199
1.40004
1.39899
1.40098
1.39829
1.39971
1.40144
1.39885
1.40068
1.40031
1.39948
1.39988
1.40023
1.40024
1.40027
1.40001
1.39979
1.4
1.3998
1.4001
1.40008
1.40011
1.39996
1.39994
1.40003
1.40001
1.40001
1.4
1.39999
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39999
1.40003
1.39996
1.40005
1.39996
1.40005
1.39997
1.40003
1.39997
1.40004
1.39996
1.40003
1.4
1.39997
1.40019
1.39983
1.40067
1.39947
1.4016
1.3985
1.40276
1.39686
1.40327
1.39614
1.40196
1.39817
1.39981
1.40163
1.3981
1.40028
1.40364
1.39729
1.40815
1.38411
1.40442
1.42274
1.37685
1.40179
1.4094
1.38676
1.41022
1.40594
1.39028
1.40081
1.40252
1.3999
1.39996
1.39976
1.40015
1.40017
1.39999
1.39999
1.40003
1.40004
1.40004
1.40003
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40002
1.39998
1.40003
1.39997
1.40004
1.39998
1.39999
1.40009
1.39986
1.40015
1.39995
1.40005
1.3997
1.40036
1.40032
1.39916
1.40033
1.40101
1.39915
1.40013
1.39977
1.39901
1.39972
1.40137
1.39942
1.40064
1.40018
1.39908
1.4002
1.40047
1.39958
1.40024
1.39962
1.39981
1.39989
1.40002
1.40009
1.4001
1.39989
1.40001
1.39997
1.40001
1.40003
1.39997
1.4
1.40002
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.40002
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.39997
1.40006
1.39991
1.40013
1.39984
1.40021
1.39978
1.40036
1.39974
1.40063
1.39982
1.40081
1.4001
1.40026
1.40062
1.39852
1.40134
1.39726
1.40122
1.39826
1.40077
1.4013
1.39872
1.40096
1.39849
1.40577
1.40368
1.38219
1.41208
1.40766
1.38803
1.40731
1.39744
1.39417
1.40913
1.39952
1.39617
1.40147
1.40039
1.39995
1.40004
1.39987
1.4
1.40003
1.40001
1.40002
1.40002
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.39999
1.40001
1.4
1.4
1.40002
1.39997
1.40006
1.39994
1.40005
1.40002
1.39994
1.40003
1.4
1.40026
1.39946
1.40043
1.40016
1.39958
1.40003
1.40024
1.39876
1.4008
1.40074
1.39995
1.40045
1.39963
1.39916
1.40099
1.39965
1.40002
1.40032
1.40009
1.39971
1.40026
1.40004
1.40009
1.40012
1.39988
1.40008
1.39999
1.39995
1.4
1.40003
1.40001
1.40001
1.4
1.39999
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40002
1.39998
1.40004
1.39997
1.40003
1.4
1.39999
1.40003
1.39997
1.40006
1.39993
1.40014
1.39989
1.40036
1.39986
1.40077
1.39978
1.4012
1.39946
1.401
1.39911
1.39959
1.39961
1.39877
1.39998
1.39916
1.40094
1.40099
1.40086
1.39892
1.39656
1.41064
1.39776
1.38944
1.40963
1.39973
1.39762
1.4051
1.39489
1.39956
1.40456
1.3984
1.39918
1.40061
1.39991
1.39999
1.40001
1.39996
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40002
1.39999
1.40002
1.4
1.39999
1.40005
1.39994
1.40005
1.39997
1.40008
1.39986
1.40008
1.4002
1.39955
1.40041
1.39988
1.39951
1.40044
1.40073
1.39977
1.40019
1.39955
1.3995
1.40067
1.39971
1.39973
1.4006
1.39943
1.39944
1.4004
1.39992
1.4001
1.40005
1.39999
1.39992
1.40006
1.39994
1.40009
1.40004
1.40002
1.39999
1.4
1.40003
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.39999
1.40002
1.39999
1.40002
1.39999
1.40003
1.39997
1.40004
1.39995
1.40007
1.39994
1.40009
1.4
1.40016
1.40016
1.40032
1.40047
1.40033
1.40071
1.39966
1.40046
1.39883
1.39941
1.39912
1.39941
1.39952
1.39976
1.40057
1.40098
1.40286
1.39621
1.39825
1.40884
1.39616
1.39657
1.40444
1.39802
1.40171
1.40169
1.39667
1.40113
1.40139
1.39911
1.39995
1.40013
1.3999
1.39999
1.4
1.4
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.39999
1.40003
1.39998
1.40002
1.40001
1.4
1.40001
1.39997
1.40014
1.39976
1.40022
1.40002
1.39963
1.4004
1.40029
1.39977
1.4
1.39954
1.39974
1.40028
1.39989
1.40014
1.40037
1.39953
1.40023
1.40037
1.4003
1.39975
1.40025
1.39974
1.40001
1.4
1.4
1.40003
1.4
1.39998
1.40002
1.4
1.4
1.4
1.39999
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40002
1.4
1.4
1.40002
1.39997
1.40005
1.39995
1.40008
1.39994
1.40014
1.40001
1.40031
1.40018
1.40061
1.40035
1.40062
1.40018
1.39977
1.39968
1.39883
1.39893
1.39913
1.39956
1.39949
1.40005
1.39965
1.40155
1.40284
1.39578
1.40022
1.40452
1.39745
1.40005
1.40096
1.39884
1.40188
1.3999
1.39867
1.40075
1.4002
1.39967
1.40004
1.40002
1.39999
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40002
1.39999
1.40002
1.39998
1.40005
1.39994
1.40003
1.40011
1.39972
1.40028
1.40007
1.39983
1.4
1.39983
1.39979
1.40037
1.40003
1.40023
1.40007
1.39956
1.40013
1.4002
1.39952
1.40024
1.39989
1.39987
1.40002
1.40011
1.39998
1.40001
1.40006
1.39994
1.40004
1.39998
1.39998
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40002
1.39999
1.40002
1.39999
1.40001
1.4
1.40001
1.4
1.40001
1.40002
1.40003
1.40011
1.40014
1.40034
1.4004
1.40066
1.40045
1.40052
1.39986
1.39953
1.39919
1.39876
1.39864
1.39916
1.39945
1.39966
1.39989
1.399
1.40182
1.40149
1.39726
1.40086
1.40137
1.39896
1.40063
1.39971
1.39971
1.4009
1.39959
1.39963
1.40027
1.39995
1.39992
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39998
1.40008
1.39988
1.40009
1.4001
1.3998
1.40013
1.39989
1.39992
1.40022
1.40014
1.40007
1.40007
1.39977
1.40022
1.40014
1.39993
1.40018
1.40013
1.39962
1.40012
1.4002
1.39972
1.40014
1.39996
1.39999
1.39997
1.40006
1.39998
1.40002
1.40001
1.4
1.40001
1.40002
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.39999
1.40002
1.39998
1.40003
1.39998
1.40004
1.40001
1.40008
1.40013
1.40028
1.4004
1.40062
1.40067
1.40053
1.40029
1.39965
1.39922
1.39897
1.39869
1.3986
1.39907
1.39926
1.39982
1.39949
1.39907
1.40132
1.40035
1.39882
1.40061
1.40012
1.39973
1.40027
1.39961
1.40004
1.40025
1.39976
1.39994
1.40005
1.39998
1.4
1.40002
1.40001
1.4
1.4
1.4
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.39999
1.40003
1.39998
1.39999
1.4001
1.39987
1.40009
1.40001
1.39991
1.40018
1.40006
1.39997
1.39998
1.39978
1.39997
1.39996
1.3998
1.40008
1.39981
1.39991
1.40007
1.40015
1.39995
1.39996
1.40025
1.39983
1.40009
1.40003
1.4
1.4
1.40003
1.40002
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.39999
1.40002
1.39999
1.40004
1.40004
1.40012
1.40021
1.40039
1.40053
1.40076
1.40072
1.40051
1.40011
1.39952
1.39908
1.39891
1.39872
1.39873
1.39895
1.3992
1.39976
1.39932
1.39946
1.40061
1.39989
1.39964
1.40024
1.39988
1.4
1.4
1.39981
1.40007
1.40004
1.39993
1.4
1.40002
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.39998
1.40005
1.39996
1.4
1.40007
1.3999
1.4001
1.40001
1.39995
1.4
1.39993
1.39998
1.40011
1.39999
1.40015
1.40003
1.39993
1.4002
1.39991
1.4
1.40005
1.39994
1.40001
1.39994
1.40008
1.39995
1.39999
1.40004
1.39996
1.40001
1.39999
1.40002
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40004
1.40007
1.40015
1.4003
1.40048
1.40066
1.40082
1.40075
1.40048
1.40005
1.39953
1.39914
1.39898
1.39887
1.39892
1.39902
1.39931
1.39967
1.39945
1.39978
1.40019
1.39985
1.39994
1.40004
1.39995
1.40005
1.39998
1.39996
1.40005
1.40002
1.4
1.40002
1.40002
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.39999
1.40001
1.40001
1.39998
1.40005
1.39996
1.40002
1.40004
1.39994
1.40004
1.39996
1.4
1.40005
1.40001
1.40005
1.40004
1.39995
1.40011
1.40005
1.39998
1.40016
1.39997
1.39997
1.40015
1.39994
1.39999
1.40002
1.4
1.4
1.39998
1.40004
1.39999
1.4
1.39999
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40002
1.40005
1.4001
1.4002
1.40037
1.40055
1.40074
1.40085
1.40076
1.40049
1.40011
1.39966
1.39931
1.39914
1.39912
1.39918
1.39926
1.39953
1.3997
1.39968
1.39995
1.40004
1.39996
1.40002
1.40001
1.40001
1.40004
1.40001
1.40002
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.39999
1.40002
1.40001
1.39998
1.40004
1.39997
1.40002
1.40001
1.39997
1.40005
1.39998
1.40001
1.4
1.3999
1.39999
1.39996
1.39988
1.39996
1.39993
1.3999
1.40001
1.39998
1.39989
1.40009
1.4
1.39996
1.40003
1.40002
1.4
1.39999
1.40002
1.40002
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40002
1.40006
1.40012
1.40023
1.4004
1.40057
1.40073
1.40082
1.40075
1.40053
1.40021
1.39984
1.39952
1.39937
1.39941
1.39947
1.39955
1.39974
1.39983
1.39988
1.4
1.40002
1.40002
1.40004
1.40003
1.40003
1.40003
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40002
1.39999
1.40002
1.4
1.39999
1.40003
1.39998
1.40004
1.40002
1.4
1.40005
1.39999
1.40004
1.4001
1.40002
1.40009
1.40009
1.40005
1.40007
1.40005
1.40002
1.40003
1.40006
1.39995
1.40002
1.40004
1.39998
1.4
1.40002
1.4
1.40001
1.4
1.40002
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40003
1.40007
1.40013
1.40023
1.40038
1.40054
1.40066
1.40073
1.4007
1.40055
1.40028
1.39997
1.3997
1.39961
1.39967
1.39972
1.39978
1.39988
1.39994
1.39998
1.40002
1.40003
1.40003
1.40003
1.40003
1.40003
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.39999
1.40002
1.40001
1.4
1.40002
1.39997
1.4
1.39998
1.39995
1.4
1.39994
1.39993
1.39998
1.39993
1.39995
1.39997
1.39998
1.39999
1.4
1.4
1.39999
1.40002
1.40001
1.39998
1.40002
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.40003
1.40007
1.40013
1.40021
1.40032
1.40044
1.40053
1.40059
1.40058
1.40048
1.40028
1.40003
1.39984
1.3998
1.39985
1.39988
1.39991
1.39996
1.39999
1.40001
1.40002
1.40002
1.40003
1.40003
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40003
1.40001
1.40004
1.40005
1.40003
1.40006
1.40006
1.40004
1.40006
1.40005
1.40003
1.40001
1.40002
1.40001
1.4
1.40001
1.40001
1.39999
1.40002
1.39999
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.40002
1.40006
1.4001
1.40016
1.40023
1.40031
1.40038
1.40042
1.40042
1.40035
1.40021
1.40005
1.39993
1.39992
1.39995
1.39996
1.39997
1.39999
1.40001
1.40002
1.40002
1.40002
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.39999
1.4
1.39998
1.39997
1.39998
1.39997
1.39996
1.39997
1.39998
1.39997
1.39999
1.40001
1.39998
1.4
1.40001
1.4
1.4
1.40002
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40002
1.40004
1.40007
1.40011
1.40015
1.40019
1.40023
1.40026
1.40026
1.40021
1.40012
1.40004
1.39999
1.39998
1.39999
1.39999
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40002
1.40002
1.40002
1.40002
1.40003
1.40003
1.40001
1.40003
1.40001
1.4
1.40002
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40002
1.40003
1.40004
1.40006
1.40008
1.4001
1.40012
1.40014
1.40013
1.4001
1.40006
1.40002
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.39999
1.4
1.39999
1.39999
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40002
1.40002
1.40003
1.40004
1.40005
1.40006
1.40006
1.40006
1.40004
1.40003
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40002
1.40002
1.40002
1.40002
1.40002
1.40002
1.40002
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.4
1.4
1.4
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.4
1.4
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.40001
1.40001
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.40001
1.4
1.4
1.40001
1.4
1.40001
1.4
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.4
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
1.40001
)
;
boundaryField
{
emptyPatches_empt
{
type empty;
}
top_cyc
{
type cyclic;
}
bottom_cyc
{
type cyclic;
}
inlet_cyc
{
type cyclic;
}
outlet_cyc
{
type cyclic;
}
}
// ************************************************************************* //
| |
a0b3aeacbb8521caf72edf1f4d92881a3f72aae2 | 1e6e98f2a25caf35fa52e9ed751820b874d1912f | /include/mos/aud/buffer.hpp | 95b3f757e982949263d30d151e537e90131c205d | [
"MIT"
] | permissive | thom-bahm/mos | ee421f57d82c1a16fc3f993fe8583031ab94a97d | 9f1e1e32d2ba28908abc687efbd0cb3c42487328 | refs/heads/master | 2021-01-03T03:22:54.723808 | 2020-02-11T17:40:28 | 2020-02-11T17:40:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,386 | hpp | buffer.hpp | #pragma once
#include <atomic>
#include <string>
#include <memory>
#include <vector>
namespace mos {
namespace aud {
class Buffer;
using Shared_buffer = std::shared_ptr<Buffer>;
/** 16bit integer audio buffer. */
class Buffer final {
public:
using Samples = std::vector<short>;
template<class T>
/** Construct buffer from a container of shorts. */
Buffer(const T begin, const T end, const int channels = 1,
const unsigned int sample_rate = 44100u)
: channels_(channels), sample_rate_(sample_rate),
samples_(begin, end), id_(current_id_++) {}
/** Empty buffer constructor. */
explicit Buffer(int channels = 1, int sample_rate = 44100);
/** Construct from *.ogg file. */
explicit Buffer(const std::string &path);
/** Load shared buffer. */
static Shared_buffer load(const std::string &path);
Samples::const_iterator begin() const;
Samples::const_iterator end() const;
/** Raw data. */
const short *data() const;
/** Unique id. */
unsigned int id() const;
/** Get number of channels. */
int channels() const;
/** Get sample rate */
int sample_rate() const;
/** Duration in seconds. */
float duration() const;
/** Size of samples container. */
size_t size() const;
private:
static std::atomic_uint current_id_;
unsigned int id_;
Samples samples_;
int channels_;
int sample_rate_;
};
}
}
|
4b56d647b698c8dabf74ea20061f42f6b5fceb0a | 9e58c230ec8e0f9519a5b4c0c5d0524318c73ed5 | /main.cpp | f700e2c7cef9fa47d97141295d654840ee1e5bef | [] | no_license | Noodle96/BD-Lab5 | bbd8d19989e43ffc7cba7ebbd45e349f119d8e59 | 27dec4c78342942d7eaff0648e07526eca6832b1 | refs/heads/master | 2020-05-29T16:25:18.258898 | 2019-05-25T22:24:53 | 2019-05-25T22:24:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,865 | cpp | main.cpp | #include"Sequential.hpp"
#include<map>
#include<sstream>
#include<fstream>
#include<cstring>
using namespace std;
class Record{
public:
string account_number;
string branch_name;
string balance;
public:
Record(){
account_number="";
branch_name="";
balance="0.0";
}
Record(string account_number,string branch_name,string balance){
account_number=account_number;
branch_name=branch_name;
balance=balance;
}
~Record(){}
};
class DB{
public:
SeqBPlusTree tree;
int rec_pos;
string db;
map<int,int> records;
public:
DB(string file){
tree=SeqBPlusTree();
db=file;
rec_pos=0;
}
int str_to_int(string number){
stringstream geek(number);
int num=0;
geek>>num;
return num;
}
void insert_records(){
rec_pos=0;
int i=0;
fstream file;
file.open(db,ios::in|ios::binary);
file.seekg(rec_pos,ios::beg);
char a_number[50];
char b_name[50];
char balance_[50];
char buffer[10000];
while(!file.eof()){
file.seekg(rec_pos,ios::beg);
file.getline(buffer,10000,'\n');
string t_(buffer);
i=strlen(buffer);
if(t_[0]!=' '){
file.seekg(rec_pos,ios::beg);
file.getline(a_number,50,',');
file.getline(b_name,50,',');
file.getline(balance_,50,'\n');
string s(a_number);
string sub=s.substr(int(s.find("-"))+1);
tree.insert(str_to_int(sub),rec_pos);
records.insert(pair<int,int>(str_to_int(sub),i));
}
rec_pos=rec_pos+i+1;
}
file.close();
}
void search(int key){
rec_pos=tree.search(key);
int i=0;
fstream file;
file.open(db,ios::in|ios::binary);
file.seekg(rec_pos,ios::beg);
char a_number[50];
char b_name[50];
char balance_[50];
char buffer[10000];
while(!file.eof()){
file.seekg(rec_pos,ios::beg);
file.getline(buffer,10000,'\n');
string t_(buffer);
i=strlen(buffer);
if(t_[0]!=' '){
file.seekg(rec_pos,ios::beg);
file.getline(a_number,50,',');
file.getline(b_name,50,',');
file.getline(balance_,50,'\n');
cout<<a_number<<"-"<<b_name<<"-"<<balance_<<endl;
break;
}
rec_pos=rec_pos+i+1;
}
file.close();
}
void add(){
ofstream file;
file.open(db,ios::in|ios::binary);
file.seekp(0,ios::end);
string a,b,c;
cout<<"Accountnumber:";
cin>>a;
cout<<"Branchname:";
cin>>b;
cout<<"Balance:";
cin>>c;
file<<"\n"<<a<<","<<b<<","<<c;
cout<<"Recordhasbeenadded"<<endl;
file.close();
}
void remove(int key){
ofstream file;
file.open(db,ios::in|ios::binary);
file.seekp(tree.search(key),ios::beg);
int i=0;
string v;
map<int,int>::iterator it;
it=records.find(key);
while(i<it->second){
v=v+"";
i++;
}
v=v+"\n";
file<<v;
records.erase(it);
file.close();
}
};
int main(){
DB Bplus("records.txt");
int res=5;string s;
while(true){
cout<<"-----------------------------------------------"<<endl;
cout<<"1)insertrecords"<<endl;
cout<<"2)removerecord"<<endl;
cout<<"3)searchrecord"<<endl;
cout<<"4)addrecord"<<endl;
cout<<"5)graph"<<endl;
cin>>res;
system("clear");
if(res==1){
Bplus.insert_records();
}
else if(res==2){
cout<<"Key:";
cin>>s;
Bplus.remove(Bplus.str_to_int(s));
Bplus.tree.remove(Bplus.str_to_int(s));
}
else if(res==3){
cout<<"Key:";
cin>>s;
Bplus.search(Bplus.str_to_int(s));
}
else if(res==4){
Bplus.add();
}
else if(res==5){
begin();
Bplus.tree.print();
end();
graph();
}
}
return 0;
}
|
b9d22b44bf45b9cfe15c3bc7a51058ee07e94166 | a3fdc844b434e2f7546156d705aa9dd07dc14a41 | /C++ How to program/chapter 4/4.21/4.21/main.cpp | 280bbdd66ebcf064ecad8f4d866047cc8602d523 | [] | no_license | isabuhi/CPlusPlusForProgrammers | b04a6355758331c133fcd269de52849b9374f2fe | 6e3ccb0d41d620bef900d0396e09e60ffdee9781 | refs/heads/main | 2023-07-13T05:46:11.269210 | 2021-08-16T12:02:57 | 2021-08-16T12:02:57 | 363,443,627 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 418 | cpp | main.cpp | //
// main.cpp
// 4.21
//
// Created by Ibrahimov Sabuhi on 8/15/20.
// Copyright © 2020 Ibrahimov Sabuhi. All rights reserved.
//
#include <iostream>
using namespace std;
int main() {
int count = 1;
// insert code here...
while ( count <= 10 ) {
// output line of text
cout << ( count % 2 ? "****" : "++++++++" ) << endl;
++count; // increment count
} // end while
}
|
8c0e35181882f6a81f12f421ccda008e36620170 | c24c52e8adb80fc9d499eae06bc3f90869bb0f90 | /DindanContract/dindancontract.h | b04c8b332650fcfc71e3a3a4180080207654498b | [] | no_license | xujunmingbest/TuYuErp | 34c78a564b19a0697d8d895589b73fd17a55f83e | 8f916ee95863eefce10ea8bb3099dd165a5956da | refs/heads/master | 2022-02-17T06:33:54.911821 | 2019-08-09T10:37:15 | 2019-08-09T10:37:15 | 198,246,023 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 1,179 | h | dindancontract.h | #ifndef DINDANCONTRACT_H
#define DINDANCONTRACT_H
#include <QWidget>
#include "MysqlOperate/mysqloperate.h"
#include "global.h"
#include "picture_client/msg_def.h"
namespace Ui {
class DindanContract;
}
class DindanContract : public QWidget
{
Q_OBJECT
//imageurl 放到 ClickQlabel的 properity url这里
public:
explicit DindanContract(QWidget *parent = 0);
~DindanContract();
void SetMode(e_mode mode);
bool LoadData(QString contract_id);
private:
QMap<QString,int> TableIndex_1;
QMap<QString,int> TableIndex_2;
QMap<QString,int> TableIndex_3;
Ui::DindanContract *ui;
e_mode m_mode;
//QMap<int , QString> imageUrls_1;
//QMap<int , QString> imageUrls_3;
private:
//处理表1
bool add_table_1();
bool add_table_2();
bool add_table_3();
bool add_contract();
void AddContract();
void EditContract();
QString version;
MysqlOperate * m_MysqlOperate;
private slots:
void AddLine_1();
void AddLine_2();
void AddLine_3();
void Loadimage_1();
void ButtonSlot();
void DeleteProduct_1();
void DeleteProduct_2();
void DeleteProduct_3();
};
#endif // DINDANCONTRACT_H
|
f5a1d54683cfa9c934c3d23777099e0f47456a26 | 295a2c7c4ebee566ffcb5f560a390073886252fa | /compress/main.cpp | cb12823b98063f01c2d8741805c48bff0a41657e | [] | no_license | Invagly/Trajectory-Compression | 7d6d2dd53d829bffde2eebe53774c50f7e575ae6 | 6060a7ff1e603c8f1278c6e1f2b83cb524e0ecc9 | refs/heads/master | 2021-01-10T17:55:06.633227 | 2016-01-24T11:24:26 | 2016-01-24T11:24:26 | 50,283,306 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,832 | cpp | main.cpp | /*
*compress trajectory
*author: BWChen
*date: 2015-12-20
*/
#include <iostream>
#include <fstream>
#include <limits.h>
#include <vector>
#include <stack>
#include <list>
#include <math.h>
#include <stdlib.h>
#include <iomanip>
#include <string>
#define MAXLENGTH 5000
using namespace std;
double pointList[MAXLENGTH][2];
double delta = 30;
int length = 0;
void split(string &s, string &delim, vector<string> &ret);
int readData(string fileName);
double distance(int s, int e, int i);
list<int> DouglasPeucker(int s, int e);
void writeFile(list<int> compressList, string fileName);
double Rad(double d);
double Geodist(double lat1, double lon1, double lat2, double lon2);
void split(string &s, string &delim, vector<string> &ret)
{
size_t last = 0;
size_t index = s.find_first_of(delim, last);
while(index != string::npos)
{
ret.push_back(s.substr(last, index - last));
last = index + 1;
index = s.find_first_of(delim, last);
}
if(index - last > 0)
{
ret.push_back(s.substr(last, index - last));
}
}
int readData(char* fileName)
{
ifstream in(fileName);
string line;
string delim = ",";
int i = 0;
if(in)
{
while(getline(in, line))
{
vector<string> ret;
split(line, delim, ret);
double latitude = atof(ret[0].c_str());
double longitude = atof(ret[1].c_str());
pointList[i][0] = latitude;
pointList[i][1] = longitude;
i++;
}
}
else
{
return 0;
}
length = i;
return 1;
}
double Geodist(double lat1, double lon1, double lat2, double lon2)
{
double radLat1 = Rad(lat1);
double radLat2 = Rad(lat2);
double delta_lon = Rad(lon2 - lon1);
double top_1 = cos(radLat2) * sin(delta_lon);
double top_2 = cos(radLat1) * sin(radLat2) - sin(radLat1) * cos(radLat2) * cos(delta_lon);
double top = sqrt(top_1 * top_1 + top_2 * top_2);
double bottom = sin(radLat1) * sin(radLat2) + cos(radLat1) * cos(radLat2) * cos(delta_lon);
double delta_sigma = atan2(top, bottom);
double distance = delta_sigma * 6378137.0;
return distance;
}
double Rad(double d)
{
return d * M_PI / 180.0;
}
double distance(int s, int e, int i)
{
double lat_start = pointList[s][0];
double lon_start = pointList[s][1];
double lat_end = pointList[e][0];
double lon_end = pointList[e][1];
double lat_i = pointList[i][0];
double lon_i = pointList[i][1];
double a = Geodist(lat_start, lon_start, lat_i, lon_i);
double b = Geodist(lat_i, lon_i, lat_end, lon_end);
double c = Geodist(lat_start, lon_start, lat_end, lon_end);
double p = (a + b + c) / 2;
double area = sqrt(p * (p - a) * (p - b) * (p - c));
double distance = 2 * area / c;
return distance;
}
list<int> DouglasPeucker(int s, int e)
{
list<int> indecies;
list<int>::iterator iter;
double dmax = 0;
double temp_d = 0;
int idx = 0;
int i = 0;
for(i = s + 1; i < e; i++)
{
temp_d = distance(s, e, i);
if(temp_d > dmax)
{
dmax = temp_d;
idx = i;
}
}
if(dmax > delta)
{
list<int> L1 = DouglasPeucker(s, idx);
list<int> L2 = DouglasPeucker(idx, e);
for(iter = L1.begin(); iter != L1.end(); iter++)
{
int index = *iter;
indecies.push_back(index);
}
indecies.pop_back();
for(iter = L2.begin(); iter != L2.end(); iter++)
{
int index = *iter;
indecies.push_back(index);
}
}
else
{
indecies.push_back(s);
indecies.push_back(e);
}
return indecies;
}
void writeFile(list<int> compressList, char* fileName)
{
int i = 0;
ofstream fout(fileName);
double latitude = 0;
double longitude = 0;
list<int>::iterator iter;
for(iter = compressList.begin(); iter != compressList.end(); iter++)
{
int idx = *iter;
latitude = pointList[idx][0];
longitude = pointList[idx][1];
fout<<setprecision(8)<<idx<<","<<latitude<<","<<longitude<<endl;
i++;
}
}
int main()
{
char* beforeData = "Data.txt";
char* afterData = "compressList.txt";
readData(beforeData);
list<int> compressList = DouglasPeucker(0, 3150);
compressList.pop_back();
double rate = 1 - (double)compressList.size() / (double)length;
writeFile(compressList, afterData);
cout<<"The original data file: "<<beforeData<<endl;
cout<<"The compressed data file: "<<afterData<<endl;
cout<<"\t-"<<length<<" data points before compressing"<<endl;
cout<<"\t-"<<compressList.size()<<" data points after compressing"<<endl;
cout<<"\t-"<<"Compression rate:"<<rate<<endl;
return 0;
}
|
4ca74d0bc1f2533866d924f7a8d3baca662da6d2 | e8dc0403b56e1e0727ac81e88fe66f07df025375 | /IUrobot01/ros_lib/mrpt_msgs/ObservationRangeBearing.h | 17d50dcc0dfa7bf8e092f5a5d181a119c54587b4 | [
"Apache-2.0"
] | permissive | Waywrong/ros_win_msg | 1988c195154ec755ab51a56252f36b67b0489aa1 | 548e2a37c37a7d05778b68cf2c23c8233baa8ff1 | refs/heads/master | 2020-04-19T02:29:04.194225 | 2018-11-26T03:51:08 | 2018-11-26T03:51:08 | 66,776,692 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 11,336 | h | ObservationRangeBearing.h | #ifndef _ROS_mrpt_msgs_ObservationRangeBearing_h
#define _ROS_mrpt_msgs_ObservationRangeBearing_h
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "ros/msg.h"
#include "std_msgs/Header.h"
#include "geometry_msgs/Pose.h"
#include "mrpt_msgs/SingleRangeBearingObservation.h"
namespace mrpt_msgs
{
class ObservationRangeBearing : public ros::Msg
{
public:
std_msgs::Header header;
geometry_msgs::Pose sensor_pose_on_robot;
double min_sensor_distance;
double max_sensor_distance;
double sensor_std_range;
double sensor_std_yaw;
double sensor_std_pitch;
uint8_t sensed_data_length;
mrpt_msgs::SingleRangeBearingObservation st_sensed_data;
mrpt_msgs::SingleRangeBearingObservation * sensed_data;
ObservationRangeBearing():
header(),
sensor_pose_on_robot(),
min_sensor_distance(0),
max_sensor_distance(0),
sensor_std_range(0),
sensor_std_yaw(0),
sensor_std_pitch(0),
sensed_data_length(0), sensed_data(NULL)
{
}
virtual int serialize(unsigned char *outbuffer) const
{
int offset = 0;
offset += this->header.serialize(outbuffer + offset);
offset += this->sensor_pose_on_robot.serialize(outbuffer + offset);
union {
double real;
uint64_t base;
} u_min_sensor_distance;
u_min_sensor_distance.real = this->min_sensor_distance;
*(outbuffer + offset + 0) = (u_min_sensor_distance.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_min_sensor_distance.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_min_sensor_distance.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_min_sensor_distance.base >> (8 * 3)) & 0xFF;
*(outbuffer + offset + 4) = (u_min_sensor_distance.base >> (8 * 4)) & 0xFF;
*(outbuffer + offset + 5) = (u_min_sensor_distance.base >> (8 * 5)) & 0xFF;
*(outbuffer + offset + 6) = (u_min_sensor_distance.base >> (8 * 6)) & 0xFF;
*(outbuffer + offset + 7) = (u_min_sensor_distance.base >> (8 * 7)) & 0xFF;
offset += sizeof(this->min_sensor_distance);
union {
double real;
uint64_t base;
} u_max_sensor_distance;
u_max_sensor_distance.real = this->max_sensor_distance;
*(outbuffer + offset + 0) = (u_max_sensor_distance.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_max_sensor_distance.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_max_sensor_distance.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_max_sensor_distance.base >> (8 * 3)) & 0xFF;
*(outbuffer + offset + 4) = (u_max_sensor_distance.base >> (8 * 4)) & 0xFF;
*(outbuffer + offset + 5) = (u_max_sensor_distance.base >> (8 * 5)) & 0xFF;
*(outbuffer + offset + 6) = (u_max_sensor_distance.base >> (8 * 6)) & 0xFF;
*(outbuffer + offset + 7) = (u_max_sensor_distance.base >> (8 * 7)) & 0xFF;
offset += sizeof(this->max_sensor_distance);
union {
double real;
uint64_t base;
} u_sensor_std_range;
u_sensor_std_range.real = this->sensor_std_range;
*(outbuffer + offset + 0) = (u_sensor_std_range.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_sensor_std_range.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_sensor_std_range.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_sensor_std_range.base >> (8 * 3)) & 0xFF;
*(outbuffer + offset + 4) = (u_sensor_std_range.base >> (8 * 4)) & 0xFF;
*(outbuffer + offset + 5) = (u_sensor_std_range.base >> (8 * 5)) & 0xFF;
*(outbuffer + offset + 6) = (u_sensor_std_range.base >> (8 * 6)) & 0xFF;
*(outbuffer + offset + 7) = (u_sensor_std_range.base >> (8 * 7)) & 0xFF;
offset += sizeof(this->sensor_std_range);
union {
double real;
uint64_t base;
} u_sensor_std_yaw;
u_sensor_std_yaw.real = this->sensor_std_yaw;
*(outbuffer + offset + 0) = (u_sensor_std_yaw.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_sensor_std_yaw.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_sensor_std_yaw.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_sensor_std_yaw.base >> (8 * 3)) & 0xFF;
*(outbuffer + offset + 4) = (u_sensor_std_yaw.base >> (8 * 4)) & 0xFF;
*(outbuffer + offset + 5) = (u_sensor_std_yaw.base >> (8 * 5)) & 0xFF;
*(outbuffer + offset + 6) = (u_sensor_std_yaw.base >> (8 * 6)) & 0xFF;
*(outbuffer + offset + 7) = (u_sensor_std_yaw.base >> (8 * 7)) & 0xFF;
offset += sizeof(this->sensor_std_yaw);
union {
double real;
uint64_t base;
} u_sensor_std_pitch;
u_sensor_std_pitch.real = this->sensor_std_pitch;
*(outbuffer + offset + 0) = (u_sensor_std_pitch.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_sensor_std_pitch.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_sensor_std_pitch.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_sensor_std_pitch.base >> (8 * 3)) & 0xFF;
*(outbuffer + offset + 4) = (u_sensor_std_pitch.base >> (8 * 4)) & 0xFF;
*(outbuffer + offset + 5) = (u_sensor_std_pitch.base >> (8 * 5)) & 0xFF;
*(outbuffer + offset + 6) = (u_sensor_std_pitch.base >> (8 * 6)) & 0xFF;
*(outbuffer + offset + 7) = (u_sensor_std_pitch.base >> (8 * 7)) & 0xFF;
offset += sizeof(this->sensor_std_pitch);
*(outbuffer + offset++) = sensed_data_length;
*(outbuffer + offset++) = 0;
*(outbuffer + offset++) = 0;
*(outbuffer + offset++) = 0;
for( uint8_t i = 0; i < sensed_data_length; i++){
offset += this->sensed_data[i].serialize(outbuffer + offset);
}
return offset;
}
virtual int deserialize(unsigned char *inbuffer)
{
int offset = 0;
offset += this->header.deserialize(inbuffer + offset);
offset += this->sensor_pose_on_robot.deserialize(inbuffer + offset);
union {
double real;
uint64_t base;
} u_min_sensor_distance;
u_min_sensor_distance.base = 0;
u_min_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_min_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_min_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_min_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 3))) << (8 * 3);
u_min_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 4))) << (8 * 4);
u_min_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 5))) << (8 * 5);
u_min_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 6))) << (8 * 6);
u_min_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 7))) << (8 * 7);
this->min_sensor_distance = u_min_sensor_distance.real;
offset += sizeof(this->min_sensor_distance);
union {
double real;
uint64_t base;
} u_max_sensor_distance;
u_max_sensor_distance.base = 0;
u_max_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_max_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_max_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_max_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 3))) << (8 * 3);
u_max_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 4))) << (8 * 4);
u_max_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 5))) << (8 * 5);
u_max_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 6))) << (8 * 6);
u_max_sensor_distance.base |= ((uint64_t) (*(inbuffer + offset + 7))) << (8 * 7);
this->max_sensor_distance = u_max_sensor_distance.real;
offset += sizeof(this->max_sensor_distance);
union {
double real;
uint64_t base;
} u_sensor_std_range;
u_sensor_std_range.base = 0;
u_sensor_std_range.base |= ((uint64_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_sensor_std_range.base |= ((uint64_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_sensor_std_range.base |= ((uint64_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_sensor_std_range.base |= ((uint64_t) (*(inbuffer + offset + 3))) << (8 * 3);
u_sensor_std_range.base |= ((uint64_t) (*(inbuffer + offset + 4))) << (8 * 4);
u_sensor_std_range.base |= ((uint64_t) (*(inbuffer + offset + 5))) << (8 * 5);
u_sensor_std_range.base |= ((uint64_t) (*(inbuffer + offset + 6))) << (8 * 6);
u_sensor_std_range.base |= ((uint64_t) (*(inbuffer + offset + 7))) << (8 * 7);
this->sensor_std_range = u_sensor_std_range.real;
offset += sizeof(this->sensor_std_range);
union {
double real;
uint64_t base;
} u_sensor_std_yaw;
u_sensor_std_yaw.base = 0;
u_sensor_std_yaw.base |= ((uint64_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_sensor_std_yaw.base |= ((uint64_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_sensor_std_yaw.base |= ((uint64_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_sensor_std_yaw.base |= ((uint64_t) (*(inbuffer + offset + 3))) << (8 * 3);
u_sensor_std_yaw.base |= ((uint64_t) (*(inbuffer + offset + 4))) << (8 * 4);
u_sensor_std_yaw.base |= ((uint64_t) (*(inbuffer + offset + 5))) << (8 * 5);
u_sensor_std_yaw.base |= ((uint64_t) (*(inbuffer + offset + 6))) << (8 * 6);
u_sensor_std_yaw.base |= ((uint64_t) (*(inbuffer + offset + 7))) << (8 * 7);
this->sensor_std_yaw = u_sensor_std_yaw.real;
offset += sizeof(this->sensor_std_yaw);
union {
double real;
uint64_t base;
} u_sensor_std_pitch;
u_sensor_std_pitch.base = 0;
u_sensor_std_pitch.base |= ((uint64_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_sensor_std_pitch.base |= ((uint64_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_sensor_std_pitch.base |= ((uint64_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_sensor_std_pitch.base |= ((uint64_t) (*(inbuffer + offset + 3))) << (8 * 3);
u_sensor_std_pitch.base |= ((uint64_t) (*(inbuffer + offset + 4))) << (8 * 4);
u_sensor_std_pitch.base |= ((uint64_t) (*(inbuffer + offset + 5))) << (8 * 5);
u_sensor_std_pitch.base |= ((uint64_t) (*(inbuffer + offset + 6))) << (8 * 6);
u_sensor_std_pitch.base |= ((uint64_t) (*(inbuffer + offset + 7))) << (8 * 7);
this->sensor_std_pitch = u_sensor_std_pitch.real;
offset += sizeof(this->sensor_std_pitch);
uint8_t sensed_data_lengthT = *(inbuffer + offset++);
if(sensed_data_lengthT > sensed_data_length)
this->sensed_data = (mrpt_msgs::SingleRangeBearingObservation*)realloc(this->sensed_data, sensed_data_lengthT * sizeof(mrpt_msgs::SingleRangeBearingObservation));
offset += 3;
sensed_data_length = sensed_data_lengthT;
for( uint8_t i = 0; i < sensed_data_length; i++){
offset += this->st_sensed_data.deserialize(inbuffer + offset);
memcpy( &(this->sensed_data[i]), &(this->st_sensed_data), sizeof(mrpt_msgs::SingleRangeBearingObservation));
}
return offset;
}
const char * getType(){ return "mrpt_msgs/ObservationRangeBearing"; };
const char * getMD5(){ return "472b2383ab13ca08684f420fbc8f6657"; };
};
}
#endif |
389d329b36bcb11beaf0540331fd5cd8afe46985 | c60a810d25bb8e5d614daeb37212568f614a4401 | /simulacros/TC2016 - Prueba 4/j.cpp | 9ff658b3c750e320e40a703bd2b7bde3bad47403 | [] | no_license | jonasla/icpc | f5d0af087a54b7bb57bc92e4191ddc09e2669d5b | 4f464de0b374f4c5b756b1a87322f87b08d9551a | refs/heads/master | 2021-01-24T03:42:37.957660 | 2018-03-17T15:30:05 | 2018-03-17T15:30:05 | 122,900,491 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,546 | cpp | j.cpp | #include <iostream>
#include <algorithm>
#include <utility>
#include <vector>
#include <queue>
#define forn(i,n) for(int i = 0; i < int(n); i++)
#define dforn(i,n) for(int i = (int)(n-1); i >= 0; i--)
#define forsn(i,j,n) for(int i = (int)j; i < int(n); i++)
#define pb push_back
#define mp make_pair
using namespace std;
typedef long long tint;
typedef pair<int, pair<int,int> > seg;
typedef pair<int, int> ii;
typedef deque<int> dqi;
typedef deque<ii> dqii;
typedef deque<seg> dqseg;
const tint maxN = 60050;
dqii staH1;
dqii endH1;
dqii staH2;
dqii endH2;
dqseg ver1;
dqseg ver2;
typedef int tipo;
struct RMQ {
int MAX;
tipo vec[4*maxN];
tipo * init(int N){
MAX = 1 << (32 - __builtin_clz(N));
fill(vec, vec+2*MAX, 0);
return vec+MAX;
}
void updall() { dforn(i,MAX) vec[i] = vec[2*i] + vec[2*i+1]; }
void pset(int i, tipo v1) {
vec[i+=MAX] = v1;
while(i) { i/=2; vec[i] = vec[2*i] + vec[2*i+1]; }
}
tipo pget(int i, int j) { return _pget(i+MAX, j+MAX); }
tipo _pget(int i, int j) {
tipo res = 0;
if(j-i <= 0) return res;
if (i%2) res += vec[i++];
res += _pget(i/2, j/2);
if (j%2) res += vec[--j];
return res;
}
} rmq1, rmq2;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(NULL);
int N;
int sx, sy;
int ax, ay;
int s, e;
// AUTO 1
cin >> N;
cin >> sx >> sy;
ax=sx, ay=sy;
forsn(i,1,N){
int cx, cy; cin >> cx >> cy;
if(cx-ax==0){ // ver
s = min(cy,ay);
e = max(cy,ay);
ver1.pb(mp(ax, mp(s,e)));
}else if(cy-ay==0){ // hor
s = min(cx,ax);
e = max(cx,ax);
staH1.pb(mp(s,ay));
endH1.pb(mp(e,ay));
}
ax=cx; ay=cy;
}
if(sx-ax==0){ // ver
s = min(sy,ay);
e = max(sy,ay);
ver1.pb(mp(ax, mp(s,e)));
}else if(sy-ay==0){ // hor
s = min(sx,ax);
e = max(sx,ax);
staH1.pb(mp(s,ay));
endH1.pb(mp(e,ay));
}
sort(staH1.begin(), staH1.end());
sort(endH1.begin(), endH1.end());
sort(ver1.begin(), ver1.end());
// AUTO 2
cin >> N;
cin >> sx >> sy;
ax=sx, ay=sy;
forsn(i,1,N){
int cx, cy; cin >> cx >> cy;
if(cx-ax==0){ // ver
s = min(cy,ay);
e = max(cy,ay);
ver2.pb(mp(ax, mp(s,e)));
}else if(cy-ay==0){ // hor
s = min(cx,ax);
e = max(cx,ax);
staH2.pb(mp(s,ay));
endH2.pb(mp(e,ay));
}
ax=cx; ay=cy;
}
if(sx-ax==0){ // ver
s = min(sy,ay);
e = max(sy,ay);
ver2.pb(mp(ax, mp(s,e)));
}else if(sy-ay==0){ // hor
s = min(sx,ax);
e = max(sx,ax);
staH2.pb(mp(s,ay));
endH2.pb(mp(e,ay));
}
sort(staH2.begin(), staH2.end());
sort(endH2.begin(), endH2.end());
sort(ver2.begin(), ver2.end());
///
tint RES = 0;
//cout << "holsdjkgjsdk" << endl;
// RMQ1 tiene los horizontales de 1
rmq1.init(maxN);
rmq1.updall();
while(!ver2.empty() || !staH1.empty() || !endH1.empty()){
seg ver = mp(maxN, mp(0,0));
if(!ver2.empty()){
ver = ver2.front();
}
int sh = maxN;
int eh = maxN;
if(!staH1.empty()){
sh = staH1.front().first;
}
if(!endH1.empty()){
eh = endH1.front().first;
}
ii evnE = mp(eh,0);
ii evnQ = mp(ver.first,1);
ii evnS = mp(sh,2);
deque<ii> eventos = {evnE, evnQ, evnS};
sort(eventos.begin(), eventos.end());
ii elevento = eventos.front();
if(elevento.second == 0){ // end
//cout << "end\n";
rmq1.pset(endH1.front().second, 0);
endH1.pop_front();
}else if(elevento.second == 1){ // query
//cout << "query\n";
RES += rmq1.pget(ver.second.first, ver.second.second+1);
ver2.pop_front();
}else if(elevento.second == 2){ // start
//cout << "start\n";
rmq1.pset(staH1.front().second, 1);
staH1.pop_front();
}
}
//cout << "RMQ2\n";
// RMQ1 tiene los horizontales de 1
rmq2.init(maxN);
rmq2.updall();
while(!ver1.empty() || !staH2.empty() || !endH2.empty()){
seg ver = mp(maxN, mp(0,0));
if(!ver1.empty()){
ver = ver1.front();
}
int sh = maxN;
int eh = maxN;
if(!staH2.empty()){
sh = staH2.front().first;
}
if(!endH2.empty()){
eh = endH2.front().first;
}
ii evnE = mp(eh,0);
ii evnQ = mp(ver.first,1);
ii evnS = mp(sh,2);
deque<ii> eventos = {evnE, evnQ, evnS};
sort(eventos.begin(), eventos.end());
ii elevento = eventos.front();
if(elevento.second == 0){ // end
//cout << "end\n";
rmq2.pset(endH2.front().second, 0);
endH2.pop_front();
}else if(elevento.second == 1){ // query
//cout << "query\n";
RES += rmq2.pget(ver.second.first, ver.second.second+1);
ver1.pop_front();
}else if(elevento.second == 2){ // start
//cout << "start\n";
rmq2.pset(staH2.front().second, 1);
staH2.pop_front();
}
}
cout << RES << "\n";
return 0;
}
|
e1637d5bbd93812cb154f72a78650f5ec3563559 | bb363aadd38ea27032e49e14434e1e254ec953f0 | /5_prototyPattern/square.cpp | 92cbdfb46531b113a9ccfc34de25befe338fe75b | [] | no_license | RealCrond/DesignPattern | db251691115af2a6f030245a9c8457d9f8d4a748 | ac8e97fa2623a4ba429f32b5e2b47565ff34640c | refs/heads/master | 2020-03-22T09:01:58.066607 | 2018-07-18T05:09:48 | 2018-07-18T05:09:48 | 139,809,423 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 167 | cpp | square.cpp | #include "square.h"
CSquare::CSquare()
{
strcpy(m_szType,"Square");
}
CSquare::~CSquare()
{
}
void CSquare::Draw()
{
printf("Inside Square::draw() method.\n");
} |
56416cc1ddc9ea0f74963c830ad42321c76d44fc | cd470ad61c4dbbd37ff004785fd6d75980987fe9 | /baekjoon/Petrozavodsk Programming Camp/Winter 2021/Day8/F/std.cpp | d5a37ef22f045537c6ac2053684cd644eec0670b | [] | no_license | AutumnKite/Codes | d67c3770687f3d68f17a06775c79285edc59a96d | 31b7fc457bf8858424172bc3580389badab62269 | refs/heads/master | 2023-02-17T21:33:04.604104 | 2023-02-17T05:38:57 | 2023-02-17T05:38:57 | 202,944,952 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,522 | cpp | std.cpp | #include <bits/stdc++.h>
int main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(nullptr);
int n, m;
std::cin >> n >> m;
std::vector<std::string> a(n), b(m, std::string(n, 'a'));
for (int i = 0; i < n; ++i) {
std::cin >> a[i];
for (int j = 0; j < m; ++j) {
b[j][i] = a[i][j];
}
}
auto calc = [&](const auto &a, int lx, int rx, int ly, int ry) {
int my = (ly + ry) / 2;
std::vector<int> lenl(rx - lx), lenr(rx - lx);
for (int i = lx; i < rx; ++i) {
int l = 0, r = 0;
while (my - l > ly && a[i][my - l - 1] == a[i][my]) {
++l;
}
while (my + r < ry && a[i][my + r] == a[i][my]) {
++r;
}
lenl[i - lx] = l, lenr[i - lx] = r;
}
std::vector<std::vector<int>> sl(rx - lx, std::vector<int>(rx - lx));
std::vector<std::vector<int>> sr(rx - lx, std::vector<int>(rx - lx));
std::vector<int> now(ry - ly);
for (int i = lx; i < rx; ++i) {
for (int j = ly; j < ry; ++j) {
if (i == lx || a[i - 1][j] != a[i][j]) {
now[j - ly] = 0;
}
++now[j - ly];
}
std::vector<int> d(i - lx + 1);
for (int j = 0; j < lenl[i - lx]; ++j) {
++d[now[my - j - 1 - ly] - 1];
}
for (int j = i - lx; j >= 1; --j) {
d[j - 1] += d[j];
}
for (int j = 1; j <= i - lx; ++j) {
if (lenl[i - j - lx] >= lenl[i - lx]) {
sl[i - lx][i - j - lx] = d[j];
}
}
std::fill(d.begin(), d.end(), 0);
for (int j = 0; j < lenr[i - lx]; ++j) {
++d[now[my + j - ly] - 1];
}
for (int j = i - lx; j >= 1; --j) {
d[j - 1] += d[j];
}
for (int j = 1; j <= i - lx; ++j) {
if (lenr[i - j - lx] >= lenr[i - lx]) {
sr[i - lx][i - j - lx] = d[j];
}
}
}
for (int i = rx - 1; i >= lx; --i) {
for (int j = ly; j < ry; ++j) {
if (i + 1 == rx || a[i + 1][j] != a[i][j]) {
now[j - ly] = 0;
}
++now[j - ly];
}
std::vector<int> d(rx - i);
for (int j = 0; j < lenl[i - lx]; ++j) {
++d[now[my - j - 1 - ly] - 1];
}
for (int j = rx - i - 1; j >= 1; --j) {
d[j - 1] += d[j];
}
for (int j = 1; j < rx - i; ++j) {
if (lenl[i + j - lx] > lenl[i - lx]) {
sl[i + j - lx][i - lx] = d[j];
}
}
std::fill(d.begin(), d.end(), 0);
for (int j = 0; j < lenr[i - lx]; ++j) {
++d[now[my + j - ly] - 1];
}
for (int j = rx - i - 1; j >= 1; --j) {
d[j - 1] += d[j];
}
for (int j = 1; j < rx - i; ++j) {
if (lenr[i + j - lx] > lenr[i - lx]) {
sr[i + j - lx][i - lx] = d[j];
}
}
}
long long ans = 0;
for (int i = 0; i < rx - lx; ++i) {
for (int j = 0; j < i; ++j) {
ans += 1ll * sl[i][j] * sr[i][j];
}
}
return ans;
};
auto solve = [&](auto &self, int lx, int rx, int ly, int ry) -> long long {
if (lx + 1 == rx || ly + 1 == ry) {
return 0;
}
if (rx - lx < ry - ly) {
int my = (ly + ry) / 2;
long long ans = calc(a, lx, rx, ly, ry);
ans += self(self, lx, rx, ly, my);
ans += self(self, lx, rx, my, ry);
return ans;
} else {
int mx = (lx + rx) / 2;
long long ans = calc(b, ly, ry, lx, rx);
ans += self(self, lx, mx, ly, ry);
ans += self(self, mx, rx, ly, ry);
return ans;
}
};
std::cout << solve(solve, 0, n, 0, m) << "\n";
}
|
f35d6288911cbefe54e2690fccf294f8ad82eedc | 2f74fcc9b45dfd63e8a7f5cbdf31ae27ace76b29 | /cvsnt/tortoiseCVS/TortoiseCVS/build/vc9Win32/cvstree/flex_lexer.cpp | b26bce61a9a1823320af32242cdec01838dcf4df | [] | no_license | pampersrocker/G-CVSNT | 66d736dc02018764a259beec85bee12f78d22ef1 | aa8f8f621a4c814903c2205a647ac885d8dfd974 | refs/heads/master | 2021-01-09T06:57:28.296794 | 2014-02-17T11:05:58 | 2014-02-17T11:05:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 95,305 | cpp | flex_lexer.cpp | #define yyFlexLexer CvsLogFlexLexer
#line 4 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../build/vc9Win32/cvstree/flex_lexer.cpp"
/* A lexical scanner generated by flex */
/* Scanner skeleton version:
* $Header: /cvsroot-fuse/tortoisecvs/TortoiseCVS/src/cvstree/flex.skl,v 1.1 2004/07/03 16:02:48 hhonisch Exp $
*/
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
#ifdef c_plusplus
#ifndef __cplusplus
#define __cplusplus
#endif
#endif
#ifdef __cplusplus
#include <stdlib.h>
#include <fstream>
using std::istream;
using std::ostream;
#ifndef _WIN32
#include <unistd.h>
#endif
/* Use prototypes in function declarations. */
#define YY_USE_PROTOS
/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST
#else /* ! __cplusplus */
#if __STDC__
#define YY_USE_PROTOS
#define YY_USE_CONST
#endif /* __STDC__ */
#endif /* ! __cplusplus */
#ifdef __TURBOC__
#pragma warn -rch
#pragma warn -use
#include <io.h>
#include <stdlib.h>
#define YY_USE_CONST
#define YY_USE_PROTOS
#endif
#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#endif
#ifdef YY_USE_PROTOS
#define YY_PROTO(proto) proto
#else
#define YY_PROTO(proto) ()
#endif
/* Returned upon end-of-file. */
#define YY_NULL 0
/* Promotes a possibly negative, possibly signed char to an unsigned
* integer for use as an array index. If the signed char is negative,
* we want to instead treat it as an 8-bit unsigned char, hence the
* double cast.
*/
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
/* Enter a start condition. This macro really ought to take a parameter,
* but we do it the disgusting crufty way forced on us by the ()-less
* definition of BEGIN.
*/
#define BEGIN yy_start = 1 + 2 *
/* Translate the current start state into a value that can be later handed
* to BEGIN to return to the state. The YYSTATE alias is for lex
* compatibility.
*/
#define YY_START ((yy_start - 1) / 2)
#define YYSTATE YY_START
/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE yyrestart( yyin )
#define YY_END_OF_BUFFER_CHAR 0
/* Size of default input buffer. */
#define YY_BUF_SIZE 16384
typedef struct yy_buffer_state *YY_BUFFER_STATE;
extern int yyleng;
#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
/* The funky do-while in the following #define is used to turn the definition
* int a single C statement (which needs a semi-colon terminator). This
* avoids problems with code like:
*
* if ( condition_holds )
* yyless( 5 );
* else
* do_something_else();
*
* Prior to using the do-while the compiler would get upset at the
* "else" because it interpreted the "if" statement as being all
* done when it reached the ';' after the yyless() call.
*/
/* Return all but the first 'n' matched characters back to the input stream. */
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
*yy_cp = yy_hold_char; \
YY_RESTORE_YY_MORE_OFFSET \
yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
} \
while ( 0 )
#define unput(c) yyunput( c, yytext_ptr )
/* The following is because we cannot portably get our hands on size_t
* (without autoconf's help, which isn't available because we want
* flex-generated scanners to compile on their own).
*/
typedef unsigned int yy_size_t;
struct yy_buffer_state
{
istream* yy_input_file;
char *yy_ch_buf; /* input buffer */
char *yy_buf_pos; /* current position in input buffer */
/* Size of input buffer in bytes, not including room for EOB
* characters.
*/
yy_size_t yy_buf_size;
/* Number of characters read into yy_ch_buf, not including EOB
* characters.
*/
int yy_n_chars;
/* Whether we "own" the buffer - i.e., we know we created it,
* and can realloc() it to grow it, and should free() it to
* delete it.
*/
int yy_is_our_buffer;
/* Whether this is an "interactive" input source; if so, and
* if we're using stdio for input, then we want to use getc()
* instead of fread(), to make sure we stop fetching input after
* each newline.
*/
int yy_is_interactive;
/* Whether we're considered to be at the beginning of a line.
* If so, '^' rules will be active on the next match, otherwise
* not.
*/
int yy_at_bol;
/* Whether to try to fill the input buffer when we reach the
* end of it.
*/
int yy_fill_buffer;
int yy_buffer_status;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
/* When an EOF's been seen but there's still some text to process
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
* shouldn't try reading from the input source any more. We might
* still have a bunch of tokens to match, though, because of
* possible backing-up.
*
* When we actually see the EOF, we change the status to "new"
* (via yyrestart()), so that the user can continue scanning by
* just pointing yyin at a new input file.
*/
#define YY_BUFFER_EOF_PENDING 2
};
/* We provide macros for accessing buffer states in case in the
* future we want to put the buffer states in a more general
* "scanner state".
*/
#define YY_CURRENT_BUFFER yy_current_buffer
static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
static void yy_flex_free YY_PROTO(( void * ));
#define yy_new_buffer yy_create_buffer
#define yy_set_interactive(is_interactive) \
{ \
if ( ! yy_current_buffer ) \
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
yy_current_buffer->yy_is_interactive = is_interactive; \
}
#define yy_set_bol(at_bol) \
{ \
if ( ! yy_current_buffer ) \
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
yy_current_buffer->yy_at_bol = at_bol; \
}
#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
#define YY_USES_REJECT
#define yywrap() 1
#define YY_SKIP_YYWRAP
#define FLEX_DEBUG
typedef unsigned char YY_CHAR;
#define yytext_ptr yytext
#define YY_INTERACTIVE
#define FLEX_DEBUG
#include <FlexLexer.h>
int yyFlexLexer::yylex()
{
LexerError( "yyFlexLexer::yylex invoked but %option yyclass used" );
return 0;
}
#define YY_DECL int TortoiseLexer::yylex()
/* Done after the current pattern has been matched and before the
* corresponding action - sets up yytext.
*/
#define YY_DO_BEFORE_ACTION \
yytext_ptr = yy_bp; \
yyleng = (int) (yy_cp - yy_bp); \
yy_hold_char = *yy_cp; \
*yy_cp = '\0'; \
yy_c_buf_p = yy_cp;
#define YY_NUM_RULES 61
#define YY_END_OF_BUFFER 62
static yyconst short int yy_acclist[433] =
{ 0,
50, 50, 62, 61, 61, 61, 61, 61, 24, 61,
24, 61, 24, 61, 24, 61, 24, 61, 24, 61,
24, 61, 24, 61, 24, 61, 24, 61, 8, 61,
61, 61, 11, 61, 61, 14, 61, 61, 18, 61,
61, 61, 22, 61, 23, 61, 61, 22, 61, 22,
61, 61, 26, 61, 61, 61, 61, 39, 61, 61,
37, 61, 61, 61, 61, 61, 61, 61, 61, 61,
61, 61, 41, 61, 43, 61, 61, 42, 61, 61,
16428, 45, 61, 61, 61,16428, 61,16428, 61,16432,
49, 61, 61, 50, 61, 50, 61, 61, 52, 61,
16435, 53, 61, 54, 61, 55, 61, 56, 61, 57,
61, 61,16443, 60, 61, 7, 8, 10, 11, 13,
14, 18, 22, 23, 22, 22, 26, 37, 39, 37,
41, 43, 42,16428, 8236, 45,16428,16428,16432, 8240,
49, 50, 50, 52,16435, 8243, 53, 54, 55, 56,
57,16443, 8251, 58, 60, 22, 22,16428,16428, 22,
22,16428,16428, 3, 22, 22, 28, 37, 32, 37,
16428,16428, 3, 5, 6, 22, 22, 36, 37, 28,
37, 32, 37, 31, 37, 30, 37,16428,16428, 4,
5, 6, 22, 22, 29, 37, 36, 37, 31, 37,
30, 37,16428,16428, 4, 22, 22, 25, 29, 37,
16428,16428, 1, 22, 22, 25, 33, 37, 34, 37,
40,16428,16428, 1, 22, 22, 27, 38, 33, 37,
34, 37, 40,16428,16428, 22, 22, 27, 35, 37,
16428,16428, 9, 22, 22, 35, 37,16428,16428, 2,
9, 19, 22, 22,16428,16428, 2, 22, 22,16428,
16428, 12, 22, 22,16428,16428, 12, 16, 22, 22,
16428,16428, 16, 22, 22,16428,16428, 22, 22,16428,
16428, 17, 22, 22,16428,16428, 17, 22, 22,16428,
16428, 15, 22, 22,16428,16428, 15, 22, 22,16428,
16428, 22, 22,16428,16428, 22, 22,16428,16428, 22,
22,16428,16428, 22, 22,16428,16428, 22, 22,16428,
16428, 22, 22,16428,16428, 22, 8236,16428, 22,16428,
22,16428, 22,16428, 22,16428, 22,16428, 22,16428,
22,16428, 20, 22, 46,16428, 22,16428, 22,16428,
22,16428, 22,16428, 22,16428, 22,16428, 22,16428,
22,16428, 22,16428, 22,16428, 22,16428, 22,16428,
22,16428, 22,16428, 22,16428, 22,16428, 22,16428,
22,16428, 22,16428, 22,16428, 22,16428, 22,16428,
22,16428, 22,16428, 22,16428, 22,16428, 22,16428,
22,16428, 22,16428, 22,16428, 22,16428, 22,16428,
22,16428, 22,16428, 22,16428, 22,16428, 22,16428,
22,16428, 22,16428, 22,16428, 21, 22, 8236, 47,
16428, 47
} ;
static yyconst short int yy_accept[854] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 2, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 4, 5, 6, 7, 8,
9, 11, 13, 15, 17, 19, 21, 23, 25, 27,
29, 31, 32, 33, 35, 36, 38, 39, 41, 42,
43, 45, 47, 48, 50, 52, 53, 55, 56, 57,
58, 60, 61, 63, 64, 65, 66, 67, 68, 69,
70, 71, 72, 73, 75, 77, 78, 80, 82, 84,
85, 87, 89, 91, 93, 94, 96, 98, 99, 102,
104, 106, 108, 110, 112, 114, 116, 116, 116, 116,
116, 116, 116, 116, 116, 116, 116, 116, 116, 116,
116, 117, 118, 118, 119, 120, 121, 122, 123, 123,
124, 124, 124, 125, 126, 127, 127, 128, 128, 128,
129, 129, 130, 131, 131, 131, 131, 131, 131, 131,
131, 131, 131, 131, 132, 133, 134, 135, 136, 136,
136, 136, 137, 138, 139, 140, 141, 141, 142, 143,
144, 144, 146, 147, 148, 149, 150, 151, 152, 153,
154, 154, 155, 156, 156, 156, 156, 156, 156, 156,
156, 156, 156, 156, 156, 156, 156, 156, 157, 158,
158, 158, 158, 158, 158, 158, 158, 158, 158, 158,
158, 158, 158, 158, 158, 159, 160, 160, 160, 160,
160, 160, 160, 160, 160, 160, 160, 160, 160, 160,
160, 161, 162, 162, 162, 162, 162, 162, 162, 162,
162, 162, 162, 162, 162, 162, 162, 162, 163, 164,
164, 164, 164, 164, 164, 165, 165, 165, 165, 165,
165, 165, 165, 165, 166, 167, 167, 167, 167, 167,
167, 167, 169, 169, 171, 171, 171, 171, 171, 171,
171, 172, 173, 173, 173, 173, 173, 173, 174, 174,
175, 175, 175, 176, 176, 176, 176, 177, 178, 178,
178, 178, 178, 180, 180, 182, 182, 184, 186, 186,
188, 188, 188, 188, 189, 190, 190, 190, 190, 191,
191, 191, 192, 192, 192, 193, 193, 193, 193, 194,
195, 195, 195, 195, 197, 199, 199, 199, 201, 201,
203, 203, 203, 203, 204, 205, 205, 205, 205, 206,
206, 206, 206, 206, 206, 206, 206, 207, 208, 209,
209, 209, 211, 211, 211, 211, 211, 211, 211, 212,
213, 214, 214, 214, 214, 214, 214, 214, 214, 214,
214, 215, 216, 217, 217, 217, 219, 221, 221, 222,
222, 222, 223, 224, 225, 225, 225, 225, 225, 225,
225, 225, 225, 225, 226, 227, 228, 229, 231, 233,
233, 234, 234, 234, 235, 236, 236, 236, 236, 236,
236, 236, 236, 236, 236, 237, 238, 239, 241, 241,
241, 242, 243, 243, 244, 244, 244, 244, 244, 244,
244, 244, 245, 246, 248, 248, 248, 249, 250, 251,
252, 252, 253, 253, 253, 253, 253, 253, 253, 253,
254, 255, 255, 255, 256, 257, 258, 258, 258, 258,
258, 258, 258, 259, 260, 260, 260, 261, 262, 262,
263, 263, 263, 263, 263, 264, 265, 265, 265, 266,
267, 267, 268, 269, 269, 269, 269, 270, 271, 271,
271, 272, 273, 273, 274, 274, 274, 274, 275, 276,
276, 276, 277, 278, 278, 278, 278, 278, 279, 280,
280, 280, 281, 282, 282, 283, 283, 283, 284, 285,
285, 285, 286, 287, 287, 288, 288, 288, 289, 290,
290, 290, 291, 292, 293, 293, 293, 294, 295, 295,
295, 296, 297, 298, 298, 298, 299, 300, 300, 300,
301, 302, 302, 302, 303, 304, 304, 304, 305, 306,
306, 306, 307, 308, 308, 308, 309, 310, 310, 310,
311, 312, 312, 312, 313, 314, 314, 314, 315, 316,
316, 316, 317, 318, 318, 318, 319, 320, 320, 320,
321, 322, 322, 322, 323, 324, 324, 324, 325, 326,
326, 326, 326, 326, 327, 327, 327, 328, 328, 329,
329, 329, 330, 330, 330, 330, 330, 331, 331, 331,
332, 332, 332, 333, 333, 333, 334, 334, 334, 335,
335, 335, 336, 336, 336, 337, 337, 337, 338, 338,
338, 339, 339, 339, 340, 340, 340, 341, 341, 341,
342, 342, 342, 343, 343, 344, 345, 345, 346, 347,
347, 348, 348, 349, 349, 350, 350, 351, 351, 352,
352, 353, 353, 354, 354, 355, 355, 356, 356, 357,
357, 358, 358, 359, 359, 360, 360, 361, 361, 362,
362, 363, 363, 364, 364, 365, 365, 366, 366, 367,
367, 368, 368, 369, 369, 370, 370, 371, 371, 372,
372, 373, 373, 374, 374, 375, 375, 376, 376, 377,
377, 378, 378, 379, 379, 380, 380, 381, 381, 382,
382, 383, 383, 384, 384, 385, 385, 386, 386, 387,
387, 388, 388, 389, 389, 390, 390, 391, 391, 392,
392, 393, 393, 394, 394, 395, 395, 396, 396, 397,
397, 398, 398, 399, 399, 400, 400, 401, 401, 402,
402, 403, 403, 404, 404, 405, 405, 406, 406, 407,
407, 408, 408, 409, 409, 410, 410, 411, 411, 412,
412, 413, 413, 414, 414, 415, 415, 416, 416, 417,
417, 418, 418, 419, 419, 420, 420, 421, 421, 422,
422, 423, 423, 424, 424, 425, 425, 426, 426, 427,
427, 428, 428, 429, 429, 431, 431, 432, 432, 433,
433, 433, 433
} ;
static yyconst int yy_ec[256] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
1, 1, 4, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 5, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 6, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 7, 8, 1,
9, 1, 1, 1, 1, 1, 10, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 11, 12, 1, 1, 1, 13, 1, 1, 1,
1, 1, 1, 1, 1, 1, 14, 15, 16, 17,
18, 19, 20, 21, 22, 1, 23, 24, 25, 26,
27, 28, 1, 29, 30, 31, 32, 33, 34, 1,
35, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1
} ;
static yyconst int yy_meta[36] =
{ 0,
1, 1, 2, 2, 1, 1, 3, 4, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1
} ;
static yyconst short int yy_base[879] =
{ 0,
0, 4, 13, 42, 9, 17, 15, 19, 21, 28,
37, 45, 65, 73, 1398, 1397, 0, 0, 57, 80,
102, 130, 1410, 1409, 50, 82, 85, 89, 47, 93,
96, 98, 108, 126, 1416, 1415, 1414, 1413, 104, 111,
119, 132, 135, 148, 1419, 1428, 159, 163, 167, 1408,
1428, 1390, 1400, 1386, 1396, 1395, 1394, 1384, 1375, 1382,
33, 1405, 1376, 171, 1403, 173, 1402, 1428, 1401, 1385,
0, 171, 1399, 1395, 1391, 1381, 1428, 1395, 1370, 1389,
1380, 1391, 179, 55, 71, 113, 134, 7, 152, 135,
178, 179, 1364, 0, 1428, 1389, 185, 185, 185, 1388,
189, 194, 196, 1428, 1387, 198, 1428, 1386, 202, 203,
0, 204, 0, 0, 208, 212, 216, 220, 224, 1378,
1375, 1357, 1369, 1370, 1353, 1368, 1346, 1364, 1354, 1347,
228, 230, 1348, 232, 234, 236, 238, 1428, 1352, 0,
1369, 1365, 236, 1367, 1363, 1338, 1428, 1354, 1362, 244,
1339, 1352, 248, 237, 247, 45, 248, 249, 250, 251,
35, 252, 1352, 0, 1428, 258, 258, 1428, 1362, 1358,
1354, 263, 277, 261, 271, 1428, 1359, 1428, 281, 1428,
1358, 284, 285, 286, 0, 290, 0, 0, 290, 1428,
1357, 1428, 294, 1354, 1335, 1339, 1330, 1339, 1337, 1319,
1329, 1336, 1336, 1327, 1330, 1341, 1337, 1339, 1335, 1321,
1319, 1327, 290, 293, 294, 264, 295, 296, 298, 297,
299, 1314, 1333, 1329, 304, 317, 1318, 1314, 1305, 1318,
1304, 1325, 1304, 1300, 1302, 1304, 1311, 1310, 1319, 1315,
1317, 1313, 1291, 1302, 1293, 302, 305, 311, 1311, 316,
1310, 3, 307, 317, 1300, 1309, 1305, 328, 334, 1291,
1286, 1281, 1289, 1287, 334, 1279, 1300, 1282, 1300, 1273,
1272, 1296, 1292, 1294, 1290, 1276, 1280, 1280, 321, 1288,
333, 342, 334, 349, 1287, 342, 1286, 1271, 1285, 1281,
352, 356, 1265, 1268, 1282, 1279, 1257, 361, 1267, 366,
1261, 1253, 367, 1263, 1274, 1270, 1272, 1268, 1249, 1270,
1253, 1266, 371, 355, 376, 360, 384, 388, 375, 392,
1254, 1265, 1261, 395, 400, 1251, 1263, 1243, 403, 1235,
1260, 405, 1248, 1245, 409, 1245, 1255, 1251, 1253, 1249,
1231, 1241, 1237, 413, 417, 406, 417, 423, 422, 428,
1224, 1247, 1243, 433, 437, 1244, 1231, 1227, 440, 1226,
1217, 1241, 1212, 1239, 1237, 1233, 1235, 1231, 445, 1204,
1208, 449, 1230, 1229, 431, 1228, 1228, 1224, 452, 456,
459, 1210, 1201, 1203, 1197, 1202, 1205, 1197, 1219, 1215,
1217, 1213, 461, 1214, 1213, 465, 469, 455, 473, 1213,
1209, 473, 478, 478, 1193, 1185, 1189, 1199, 1199, 1182,
1193, 1204, 1200, 1202, 1198, 483, 1428, 487, 491, 1199,
495, 1199, 1195, 495, 499, 1185, 1195, 1194, 1170, 1174,
1176, 1164, 1190, 1186, 1188, 1184, 502, 507, 1186, 1182,
510, 514, 1183, 517, 380, 1158, 1170, 1160, 1164, 1179,
1175, 1177, 1173, 522, 1175, 1171, 525, 529, 532, 534,
445, 1428, 1176, 1156, 1147, 1150, 1145, 1168, 1164, 1166,
1162, 1164, 1160, 537, 541, 544, 1137, 1160, 1136, 1143,
1158, 1154, 1156, 1152, 1154, 1150, 548, 544, 1126, 0,
1150, 1129, 1149, 1145, 1147, 1143, 1145, 1141, 552, 556,
1118, 0, 559, 1122, 1141, 1137, 1139, 1135, 1137, 1133,
563, 559, 1119, 568, 1110, 1133, 1129, 1131, 1127, 1129,
1125, 568, 572, 1106, 1125, 1125, 1121, 1123, 1119, 1121,
1117, 574, 579, 1099, 582, 1118, 1114, 1116, 1112, 1114,
1110, 586, 582, 1111, 591, 1111, 1107, 1109, 1105, 1107,
1103, 591, 595, 598, 1105, 1101, 1103, 1099, 1101, 1097,
602, 598, 607, 1099, 1095, 1097, 1093, 1095, 1091, 607,
611, 1093, 1089, 1091, 1087, 1089, 1085, 613, 618, 1087,
1083, 1085, 1081, 1083, 1079, 620, 625, 1081, 1077, 1079,
1075, 1077, 1073, 627, 632, 1075, 1071, 1073, 1069, 1071,
1067, 634, 639, 1069, 1065, 1067, 1063, 1065, 1061, 641,
646, 1063, 1059, 502, 1058, 1060, 1056, 517, 648, 650,
1055, 1034, 1059, 1052, 655, 1051, 1030, 1055, 657, 1048,
1038, 1046, 1025, 1050, 1043, 1033, 659, 1041, 1016, 1039,
1038, 1013, 661, 1036, 1022, 1034, 1033, 1019, 668, 1031,
1009, 1029, 1028, 1006, 670, 1026, 1012, 1024, 1023, 1009,
672, 1021, 1002, 1019, 1018, 999, 679, 1016, 998, 1014,
1013, 995, 681, 1011, 1428, 1010, 1009, 1428, 683, 1008,
1007, 1006, 690, 1005, 1004, 1003, 692, 1002, 1001, 1000,
694, 999, 998, 997, 701, 996, 995, 994, 703, 993,
992, 991, 705, 990, 989, 988, 712, 987, 986, 985,
714, 984, 983, 982, 716, 981, 980, 979, 723, 978,
977, 976, 725, 975, 974, 973, 727, 972, 971, 970,
734, 969, 968, 967, 736, 966, 965, 964, 738, 963,
962, 961, 745, 958, 946, 942, 747, 939, 934, 919,
749, 915, 911, 856, 756, 854, 853, 847, 758, 845,
836, 834, 760, 825, 823, 814, 767, 812, 803, 801,
769, 792, 790, 781, 771, 779, 770, 768, 778, 759,
757, 748, 780, 746, 737, 735, 782, 726, 724, 715,
789, 713, 704, 702, 791, 693, 691, 71, 793, 115,
141, 149, 800, 204, 206, 267, 802, 348, 352, 391,
804, 397, 403, 425, 811, 434, 475, 506, 813, 521,
526, 533, 815, 548, 570, 609, 822, 616, 623, 630,
824, 637, 647, 658, 826, 660, 833, 669, 835, 837,
1428, 677, 844, 846, 1428, 686, 848, 855, 1428, 688,
857, 1428, 866, 870, 874, 878, 882, 886, 890, 894,
898, 902, 906, 910, 914, 918, 922, 926, 929, 933,
937, 941, 945, 949, 953, 957, 961, 965
} ;
static yyconst short int yy_def[879] =
{ 0,
853, 853, 854, 854, 853, 853, 853, 853, 853, 853,
853, 853, 855, 855, 853, 853, 853, 853, 853, 853,
856, 856, 853, 853, 857, 857, 858, 858, 859, 859,
860, 860, 861, 861, 862, 862, 853, 853, 863, 863,
864, 864, 865, 865, 852, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
866, 852, 852, 866, 866, 852, 852, 852, 852, 867,
852, 852, 852, 867, 867, 867, 867, 867, 867, 867,
867, 867, 852, 868, 852, 852, 852, 869, 852, 852,
869, 869, 870, 852, 852, 871, 852, 852, 872, 852,
873, 852, 874, 875, 876, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 866,
852, 852, 852, 866, 866, 852, 852, 852, 867, 852,
852, 852, 852, 867, 867, 867, 867, 867, 867, 867,
867, 867, 852, 868, 852, 852, 869, 852, 852, 852,
852, 852, 869, 869, 870, 852, 852, 852, 871, 852,
852, 872, 852, 852, 873, 852, 874, 875, 876, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 866, 866, 852,
852, 852, 867, 867, 867, 867, 867, 867, 867, 867,
867, 852, 852, 852, 869, 869, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
866, 866, 852, 852, 852, 867, 867, 867, 867, 867,
867, 867, 867, 867, 852, 852, 852, 869, 869, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 866, 866, 852, 852, 852, 867, 867,
867, 852, 867, 852, 867, 867, 867, 852, 852, 852,
869, 869, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 866, 866, 852, 852,
852, 867, 852, 867, 852, 867, 852, 852, 867, 852,
852, 852, 852, 869, 869, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 866, 866,
852, 852, 852, 852, 852, 867, 867, 852, 867, 852,
852, 852, 852, 869, 869, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 866, 866, 852, 852,
852, 852, 867, 867, 867, 852, 852, 852, 869, 869,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
866, 866, 852, 852, 852, 852, 852, 867, 852, 852,
852, 869, 869, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 866, 866, 852, 852, 852, 852, 867,
852, 852, 852, 869, 869, 852, 852, 852, 852, 852,
852, 852, 852, 852, 866, 866, 852, 852, 852, 852,
869, 869, 852, 852, 877, 852, 852, 852, 852, 852,
852, 866, 866, 852, 852, 852, 869, 869, 852, 852,
877, 852, 852, 852, 852, 852, 852, 852, 852, 866,
866, 852, 852, 869, 869, 852, 852, 852, 852, 852,
852, 852, 866, 866, 852, 852, 869, 869, 852, 878,
852, 852, 852, 852, 866, 866, 852, 852, 869, 869,
852, 878, 852, 852, 852, 852, 866, 866, 852, 852,
869, 869, 852, 852, 852, 852, 852, 866, 866, 852,
852, 869, 869, 852, 852, 852, 852, 866, 866, 852,
852, 869, 869, 852, 852, 852, 852, 866, 866, 852,
852, 869, 869, 852, 852, 852, 852, 866, 866, 852,
852, 869, 869, 852, 852, 852, 866, 866, 852, 852,
869, 869, 852, 852, 852, 866, 866, 852, 852, 869,
869, 852, 852, 866, 866, 852, 852, 869, 869, 852,
852, 866, 866, 852, 852, 869, 869, 852, 852, 866,
866, 852, 852, 869, 869, 852, 852, 866, 866, 852,
852, 869, 869, 852, 852, 866, 866, 852, 852, 869,
869, 852, 852, 866, 866, 852, 852, 869, 869, 852,
852, 852, 852, 866, 852, 852, 852, 852, 869, 852,
852, 866, 852, 852, 852, 852, 869, 852, 852, 866,
852, 852, 869, 852, 852, 866, 852, 852, 869, 852,
852, 866, 852, 852, 869, 852, 852, 866, 852, 852,
869, 852, 852, 866, 852, 852, 869, 852, 852, 866,
852, 852, 869, 852, 852, 866, 852, 852, 869, 852,
866, 852, 869, 852, 866, 852, 869, 852, 866, 852,
869, 852, 866, 852, 869, 852, 866, 852, 869, 852,
866, 852, 869, 852, 866, 852, 869, 852, 866, 852,
869, 852, 866, 852, 869, 852, 866, 852, 869, 852,
866, 852, 869, 852, 866, 852, 869, 852, 866, 852,
869, 852, 866, 852, 869, 852, 866, 852, 869, 852,
866, 852, 869, 852, 866, 852, 869, 852, 866, 852,
869, 852, 866, 852, 869, 852, 866, 852, 869, 852,
866, 852, 869, 852, 866, 852, 869, 852, 866, 852,
869, 852, 866, 852, 869, 852, 866, 852, 869, 852,
866, 852, 869, 852, 866, 852, 869, 852, 866, 852,
869, 852, 866, 852, 869, 852, 866, 852, 869, 852,
866, 852, 869, 852, 866, 852, 869, 852, 866, 852,
869, 852, 866, 852, 869, 852, 866, 852, 869, 852,
866, 852, 869, 852, 866, 852, 869, 852, 866, 852,
869, 852, 866, 852, 869, 852, 866, 852, 869, 852,
852, 852, 866, 852, 852, 852, 869, 852, 852, 852,
852, 0, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852
} ;
static yyconst short int yy_nxt[1464] =
{ 0,
852, 47, 48, 49, 47, 47, 48, 49, 47, 150,
50, 61, 62, 150, 50, 46, 46, 64, 65, 61,
62, 64, 65, 66, 67, 52, 53, 54, 158, 55,
66, 67, 285, 56, 131, 57, 58, 131, 63, 68,
69, 150, 59, 60, 46, 46, 63, 68, 69, 104,
105, 150, 95, 96, 52, 53, 54, 97, 55, 77,
78, 150, 56, 220, 57, 58, 70, 72, 73, 215,
74, 59, 60, 75, 70, 72, 73, 150, 74, 802,
79, 75, 77, 78, 95, 96, 154, 99, 100, 97,
101, 99, 100, 102, 101, 104, 105, 102, 107, 108,
107, 108, 155, 79, 81, 82, 46, 46, 83, 110,
46, 46, 110, 46, 46, 84, 85, 86, 87, 150,
88, 46, 46, 804, 89, 90, 91, 110, 46, 46,
110, 92, 81, 82, 46, 46, 83, 46, 46, 156,
150, 150, 116, 84, 85, 86, 87, 157, 88, 805,
46, 46, 89, 90, 91, 116, 160, 806, 150, 92,
117, 118, 119, 117, 117, 118, 119, 117, 117, 118,
119, 117, 134, 120, 136, 134, 141, 136, 159, 142,
153, 153, 153, 153, 150, 150, 166, 168, 169, 166,
170, 168, 169, 171, 173, 161, 168, 169, 176, 177,
180, 181, 174, 183, 184, 186, 183, 184, 186, 162,
190, 191, 808, 193, 809, 192, 193, 117, 118, 119,
117, 117, 118, 119, 117, 117, 118, 119, 117, 131,
120, 131, 131, 134, 131, 134, 134, 136, 134, 136,
136, 141, 136, 150, 142, 153, 153, 153, 153, 153,
153, 153, 153, 150, 150, 150, 150, 150, 150, 166,
168, 169, 166, 168, 169, 221, 214, 213, 170, 226,
150, 171, 217, 176, 177, 810, 219, 218, 216, 168,
169, 249, 225, 180, 181, 183, 183, 184, 183, 183,
184, 186, 190, 191, 186, 193, 150, 192, 193, 150,
150, 150, 150, 150, 150, 150, 168, 169, 150, 258,
246, 150, 250, 150, 247, 252, 253, 150, 248, 168,
169, 280, 150, 150, 286, 259, 251, 150, 279, 254,
168, 169, 281, 291, 287, 298, 168, 169, 298, 150,
150, 283, 292, 315, 153, 153, 315, 316, 150, 312,
317, 317, 317, 317, 168, 169, 812, 324, 168, 169,
813, 150, 298, 314, 325, 298, 150, 332, 335, 319,
332, 335, 345, 345, 345, 345, 346, 315, 153, 153,
315, 150, 462, 463, 347, 317, 317, 317, 317, 348,
348, 348, 348, 350, 350, 350, 350, 168, 169, 814,
354, 349, 168, 169, 359, 816, 332, 359, 355, 332,
335, 817, 150, 335, 372, 372, 372, 372, 345, 345,
345, 345, 373, 150, 348, 348, 348, 348, 150, 350,
350, 350, 350, 818, 374, 168, 169, 150, 379, 168,
169, 359, 820, 375, 359, 380, 393, 462, 463, 393,
372, 372, 372, 372, 168, 169, 398, 402, 168, 169,
404, 150, 393, 404, 403, 393, 418, 418, 418, 418,
419, 419, 419, 419, 421, 168, 169, 421, 424, 404,
168, 169, 404, 821, 437, 420, 425, 437, 418, 418,
418, 418, 419, 419, 419, 419, 421, 168, 169, 421,
441, 168, 169, 437, 622, 623, 437, 442, 454, 454,
454, 454, 168, 169, 822, 457, 168, 169, 460, 627,
628, 460, 458, 454, 454, 454, 454, 168, 169, 824,
474, 168, 169, 476, 825, 460, 476, 475, 460, 168,
169, 826, 487, 168, 169, 476, 168, 169, 476, 488,
168, 169, 500, 499, 168, 169, 828, 511, 168, 169,
514, 168, 169, 514, 512, 168, 169, 523, 522, 514,
168, 169, 514, 532, 168, 169, 168, 169, 829, 542,
533, 168, 169, 545, 168, 169, 545, 543, 168, 169,
553, 552, 545, 168, 169, 545, 561, 168, 169, 563,
168, 169, 563, 562, 168, 169, 571, 570, 563, 168,
169, 563, 578, 168, 169, 168, 169, 830, 586, 579,
168, 169, 168, 169, 832, 594, 587, 168, 169, 168,
169, 833, 602, 595, 168, 169, 168, 169, 834, 610,
603, 168, 169, 168, 169, 836, 618, 611, 168, 169,
168, 169, 622, 623, 619, 837, 629, 633, 634, 168,
169, 168, 169, 168, 169, 637, 838, 643, 840, 649,
168, 169, 168, 169, 168, 169, 655, 844, 661, 841,
667, 168, 169, 168, 169, 168, 169, 673, 845, 679,
849, 683, 168, 169, 168, 169, 168, 169, 687, 801,
691, 800, 695, 168, 169, 168, 169, 168, 169, 699,
798, 703, 797, 707, 168, 169, 168, 169, 168, 169,
711, 796, 715, 794, 719, 168, 169, 168, 169, 168,
169, 723, 793, 727, 792, 731, 168, 169, 168, 169,
168, 169, 735, 790, 739, 789, 743, 168, 169, 168,
169, 168, 169, 747, 788, 751, 786, 755, 168, 169,
168, 169, 168, 169, 759, 785, 763, 784, 767, 168,
169, 168, 169, 168, 169, 771, 782, 775, 781, 779,
168, 169, 168, 169, 168, 169, 783, 780, 787, 778,
791, 168, 169, 168, 169, 168, 169, 795, 777, 799,
776, 803, 168, 169, 168, 169, 168, 169, 807, 774,
811, 773, 815, 168, 169, 168, 169, 168, 169, 819,
772, 823, 770, 827, 168, 169, 168, 169, 168, 169,
831, 769, 835, 768, 839, 841, 842, 845, 846, 841,
842, 843, 766, 847, 765, 848, 841, 842, 849, 850,
845, 846, 843, 764, 851, 762, 847, 841, 842, 849,
850, 761, 760, 848, 758, 851, 46, 46, 46, 46,
51, 51, 51, 51, 71, 71, 71, 71, 80, 80,
80, 80, 94, 94, 94, 94, 98, 98, 98, 98,
103, 103, 103, 103, 106, 106, 106, 106, 109, 109,
109, 109, 111, 111, 111, 111, 113, 113, 113, 113,
114, 114, 114, 114, 115, 115, 115, 115, 140, 757,
140, 140, 149, 756, 149, 149, 164, 754, 164, 167,
167, 167, 167, 175, 175, 175, 175, 179, 179, 179,
179, 182, 753, 182, 182, 185, 185, 752, 185, 187,
750, 187, 187, 188, 749, 188, 188, 189, 189, 189,
189, 461, 461, 461, 461, 502, 748, 502, 502, 746,
745, 744, 742, 741, 740, 738, 737, 736, 734, 733,
732, 730, 729, 728, 726, 725, 724, 722, 721, 720,
718, 717, 716, 714, 713, 712, 710, 709, 708, 706,
705, 704, 702, 701, 700, 698, 697, 696, 694, 693,
692, 690, 689, 688, 686, 685, 684, 682, 681, 680,
678, 677, 676, 675, 674, 672, 671, 670, 669, 668,
666, 665, 664, 663, 662, 660, 659, 658, 657, 656,
654, 653, 652, 651, 650, 648, 647, 646, 645, 644,
642, 641, 633, 636, 640, 639, 638, 627, 636, 635,
632, 622, 631, 630, 626, 625, 624, 621, 620, 617,
616, 615, 614, 613, 612, 609, 608, 607, 606, 605,
604, 601, 600, 599, 598, 597, 596, 593, 592, 591,
590, 589, 588, 585, 584, 583, 582, 581, 580, 577,
576, 575, 574, 573, 572, 569, 568, 567, 566, 565,
564, 560, 559, 558, 557, 556, 555, 554, 551, 550,
549, 548, 547, 546, 544, 541, 540, 539, 538, 537,
536, 535, 534, 531, 530, 529, 528, 527, 526, 525,
524, 521, 520, 519, 518, 517, 516, 515, 513, 510,
509, 508, 507, 506, 505, 504, 503, 501, 498, 497,
496, 495, 494, 493, 492, 491, 490, 489, 486, 485,
484, 483, 482, 481, 480, 479, 478, 477, 462, 473,
472, 471, 470, 469, 468, 467, 466, 465, 464, 459,
456, 455, 453, 452, 451, 450, 449, 448, 447, 446,
445, 444, 443, 440, 439, 438, 436, 435, 434, 433,
432, 431, 430, 429, 428, 427, 426, 423, 422, 417,
416, 415, 414, 413, 412, 411, 410, 409, 408, 407,
406, 405, 401, 400, 399, 397, 396, 395, 394, 392,
391, 390, 389, 388, 387, 386, 385, 384, 383, 382,
381, 378, 377, 376, 371, 370, 369, 368, 367, 366,
365, 364, 363, 362, 361, 360, 358, 357, 356, 353,
352, 351, 344, 343, 342, 341, 340, 339, 338, 337,
336, 334, 333, 331, 330, 329, 328, 327, 326, 323,
322, 321, 320, 318, 313, 311, 310, 309, 308, 307,
306, 305, 304, 303, 302, 301, 300, 299, 297, 296,
295, 294, 293, 290, 289, 288, 284, 282, 278, 277,
276, 275, 274, 273, 272, 271, 270, 269, 268, 267,
266, 265, 264, 263, 262, 261, 260, 257, 256, 255,
245, 244, 243, 242, 241, 240, 239, 238, 237, 236,
235, 234, 233, 232, 231, 230, 229, 228, 227, 190,
180, 176, 224, 223, 168, 222, 151, 212, 150, 211,
210, 209, 208, 207, 206, 205, 204, 203, 202, 201,
200, 199, 198, 197, 196, 195, 194, 121, 180, 178,
172, 165, 163, 152, 151, 150, 148, 147, 146, 145,
144, 143, 139, 138, 137, 135, 133, 132, 130, 129,
128, 127, 126, 125, 124, 123, 122, 121, 852, 112,
112, 46, 46, 93, 93, 76, 76, 45, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852
} ;
static yyconst short int yy_chk[1464] =
{ 0,
0, 1, 1, 1, 1, 2, 2, 2, 2, 252,
1, 5, 5, 88, 2, 3, 3, 7, 7, 6,
6, 8, 8, 9, 9, 3, 3, 3, 88, 3,
10, 10, 252, 3, 61, 3, 3, 61, 5, 11,
11, 161, 3, 3, 4, 4, 6, 12, 12, 29,
29, 156, 25, 25, 4, 4, 4, 25, 4, 19,
19, 84, 4, 161, 4, 4, 11, 13, 13, 156,
13, 4, 4, 13, 12, 14, 14, 85, 14, 798,
19, 14, 20, 20, 26, 26, 84, 27, 27, 26,
27, 28, 28, 27, 28, 30, 30, 28, 31, 31,
32, 32, 85, 20, 21, 21, 39, 39, 21, 33,
33, 33, 33, 40, 40, 21, 21, 21, 21, 86,
21, 41, 41, 800, 21, 21, 21, 34, 34, 34,
34, 21, 22, 22, 42, 42, 22, 43, 43, 86,
87, 90, 43, 22, 22, 22, 22, 87, 22, 801,
44, 44, 22, 22, 22, 44, 90, 802, 89, 22,
47, 47, 47, 47, 48, 48, 48, 48, 49, 49,
49, 49, 64, 48, 66, 64, 72, 66, 89, 72,
83, 83, 83, 83, 91, 92, 97, 98, 98, 97,
99, 101, 101, 99, 101, 91, 102, 102, 103, 103,
106, 106, 102, 109, 110, 112, 109, 110, 112, 92,
115, 115, 804, 116, 805, 115, 116, 117, 117, 117,
117, 118, 118, 118, 118, 119, 119, 119, 119, 131,
118, 132, 131, 134, 132, 135, 134, 136, 135, 137,
136, 143, 137, 154, 143, 150, 150, 150, 150, 153,
153, 153, 153, 155, 157, 158, 159, 160, 162, 166,
167, 167, 166, 174, 174, 162, 155, 154, 172, 174,
216, 172, 158, 175, 175, 806, 160, 159, 157, 173,
173, 216, 173, 179, 179, 182, 183, 184, 182, 183,
184, 186, 189, 189, 186, 193, 213, 189, 193, 214,
215, 217, 218, 220, 219, 221, 225, 225, 246, 225,
213, 247, 217, 253, 214, 219, 220, 248, 215, 226,
226, 247, 250, 254, 253, 226, 218, 279, 246, 221,
258, 258, 248, 258, 254, 265, 259, 259, 265, 281,
283, 250, 259, 282, 282, 282, 282, 283, 286, 279,
284, 284, 284, 284, 291, 291, 808, 291, 292, 292,
809, 314, 298, 281, 292, 298, 316, 300, 303, 286,
300, 303, 313, 313, 313, 313, 314, 315, 315, 315,
315, 319, 445, 445, 316, 317, 317, 317, 317, 318,
318, 318, 318, 320, 320, 320, 320, 324, 324, 810,
324, 319, 325, 325, 329, 812, 332, 329, 325, 332,
335, 813, 346, 335, 344, 344, 344, 344, 345, 345,
345, 345, 346, 347, 348, 348, 348, 348, 349, 350,
350, 350, 350, 814, 347, 354, 354, 375, 354, 355,
355, 359, 816, 349, 359, 355, 369, 461, 461, 369,
372, 372, 372, 372, 379, 379, 375, 379, 380, 380,
381, 398, 393, 381, 380, 393, 396, 396, 396, 396,
397, 397, 397, 397, 399, 402, 402, 399, 402, 404,
403, 403, 404, 817, 416, 398, 403, 416, 418, 418,
418, 418, 419, 419, 419, 419, 421, 424, 424, 421,
424, 425, 425, 437, 614, 614, 437, 425, 438, 438,
438, 438, 441, 441, 818, 441, 442, 442, 444, 618,
618, 444, 442, 454, 454, 454, 454, 457, 457, 820,
457, 458, 458, 459, 821, 460, 459, 458, 460, 474,
474, 822, 474, 475, 475, 476, 488, 488, 476, 475,
487, 487, 488, 487, 499, 499, 824, 499, 500, 500,
503, 512, 512, 503, 500, 511, 511, 512, 511, 514,
522, 522, 514, 522, 523, 523, 532, 532, 825, 532,
523, 533, 533, 535, 543, 543, 535, 533, 542, 542,
543, 542, 545, 552, 552, 545, 552, 553, 553, 554,
562, 562, 554, 553, 561, 561, 562, 561, 563, 570,
570, 563, 570, 571, 571, 578, 578, 826, 578, 571,
579, 579, 586, 586, 828, 586, 579, 587, 587, 594,
594, 829, 594, 587, 595, 595, 602, 602, 830, 602,
595, 603, 603, 610, 610, 832, 610, 603, 611, 611,
619, 619, 620, 620, 611, 833, 619, 625, 625, 629,
629, 637, 637, 643, 643, 629, 834, 637, 836, 643,
649, 649, 655, 655, 661, 661, 649, 838, 655, 842,
661, 667, 667, 673, 673, 679, 679, 667, 846, 673,
850, 679, 683, 683, 687, 687, 691, 691, 683, 797,
687, 796, 691, 695, 695, 699, 699, 703, 703, 695,
794, 699, 793, 703, 707, 707, 711, 711, 715, 715,
707, 792, 711, 790, 715, 719, 719, 723, 723, 727,
727, 719, 789, 723, 788, 727, 731, 731, 735, 735,
739, 739, 731, 786, 735, 785, 739, 743, 743, 747,
747, 751, 751, 743, 784, 747, 782, 751, 755, 755,
759, 759, 763, 763, 755, 781, 759, 780, 763, 767,
767, 771, 771, 775, 775, 767, 778, 771, 777, 775,
779, 779, 783, 783, 787, 787, 779, 776, 783, 774,
787, 791, 791, 795, 795, 799, 799, 791, 773, 795,
772, 799, 803, 803, 807, 807, 811, 811, 803, 770,
807, 769, 811, 815, 815, 819, 819, 823, 823, 815,
768, 819, 766, 823, 827, 827, 831, 831, 835, 835,
827, 765, 831, 764, 835, 837, 837, 839, 839, 840,
840, 837, 762, 839, 761, 840, 843, 843, 844, 844,
847, 847, 843, 760, 844, 758, 847, 848, 848, 851,
851, 757, 756, 848, 754, 851, 853, 853, 853, 853,
854, 854, 854, 854, 855, 855, 855, 855, 856, 856,
856, 856, 857, 857, 857, 857, 858, 858, 858, 858,
859, 859, 859, 859, 860, 860, 860, 860, 861, 861,
861, 861, 862, 862, 862, 862, 863, 863, 863, 863,
864, 864, 864, 864, 865, 865, 865, 865, 866, 753,
866, 866, 867, 752, 867, 867, 868, 750, 868, 869,
869, 869, 869, 870, 870, 870, 870, 871, 871, 871,
871, 872, 749, 872, 872, 873, 873, 748, 873, 874,
746, 874, 874, 875, 745, 875, 875, 876, 876, 876,
876, 877, 877, 877, 877, 878, 744, 878, 878, 742,
741, 740, 738, 737, 736, 734, 733, 732, 730, 729,
728, 726, 725, 724, 722, 721, 720, 718, 717, 716,
714, 713, 712, 710, 709, 708, 706, 705, 704, 702,
701, 700, 698, 697, 696, 694, 693, 692, 690, 689,
688, 686, 685, 684, 682, 681, 680, 677, 676, 674,
672, 671, 670, 669, 668, 666, 665, 664, 663, 662,
660, 659, 658, 657, 656, 654, 653, 652, 651, 650,
648, 647, 646, 645, 644, 642, 641, 640, 639, 638,
636, 635, 634, 633, 632, 631, 630, 628, 627, 626,
624, 623, 622, 621, 617, 616, 615, 613, 612, 609,
608, 607, 606, 605, 604, 601, 600, 599, 598, 597,
596, 593, 592, 591, 590, 589, 588, 585, 584, 583,
582, 581, 580, 577, 576, 575, 574, 573, 572, 569,
568, 567, 566, 565, 564, 560, 559, 558, 557, 556,
555, 551, 550, 549, 548, 547, 546, 544, 541, 540,
539, 538, 537, 536, 534, 531, 530, 529, 528, 527,
526, 525, 524, 521, 520, 519, 518, 517, 516, 515,
513, 510, 509, 508, 507, 506, 505, 504, 501, 498,
497, 496, 495, 494, 493, 492, 491, 489, 486, 485,
484, 483, 482, 481, 480, 479, 478, 477, 473, 472,
471, 470, 469, 468, 467, 466, 465, 464, 463, 456,
455, 453, 452, 451, 450, 449, 448, 447, 446, 443,
440, 439, 436, 435, 434, 433, 432, 431, 430, 429,
428, 427, 426, 423, 422, 420, 415, 414, 413, 412,
411, 410, 409, 408, 407, 406, 405, 401, 400, 395,
394, 392, 391, 390, 389, 388, 387, 386, 385, 384,
383, 382, 378, 377, 376, 374, 373, 371, 370, 368,
367, 366, 365, 364, 363, 362, 361, 360, 358, 357,
356, 353, 352, 351, 343, 342, 341, 340, 339, 338,
337, 336, 334, 333, 331, 330, 328, 327, 326, 323,
322, 321, 312, 311, 310, 309, 308, 307, 306, 305,
304, 302, 301, 299, 297, 296, 295, 294, 293, 290,
289, 288, 287, 285, 280, 278, 277, 276, 275, 274,
273, 272, 271, 270, 269, 268, 267, 266, 264, 263,
262, 261, 260, 257, 256, 255, 251, 249, 245, 244,
243, 242, 241, 240, 239, 238, 237, 236, 235, 234,
233, 232, 231, 230, 229, 228, 227, 224, 223, 222,
212, 211, 210, 209, 208, 207, 206, 205, 204, 203,
202, 201, 200, 199, 198, 197, 196, 195, 194, 191,
181, 177, 171, 170, 169, 163, 152, 151, 149, 148,
146, 145, 144, 142, 141, 139, 133, 130, 129, 128,
127, 126, 125, 124, 123, 122, 121, 120, 108, 105,
100, 96, 93, 82, 81, 80, 79, 78, 76, 75,
74, 73, 70, 69, 67, 65, 63, 62, 60, 59,
58, 57, 56, 55, 54, 53, 52, 50, 45, 38,
37, 36, 35, 24, 23, 16, 15, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852, 852, 852, 852, 852, 852, 852, 852,
852, 852, 852
} ;
static yyconst short int yy_rule_linenum[61] =
{ 0,
151, 160, 168, 176, 184, 190, 195, 200, 207, 213,
218, 225, 231, 236, 243, 251, 258, 264, 271, 277,
283, 290, 295, 302, 310, 319, 324, 332, 339, 345,
351, 357, 363, 369, 375, 381, 387, 393, 398, 405,
411, 416, 420, 427, 433, 439, 445, 452, 458, 464,
471, 477, 484, 495, 501, 506, 518, 530, 535, 541
} ;
#define YY_TRAILING_MASK 0x2000
#define YY_TRAILING_HEAD_MASK 0x4000
#define REJECT \
{ \
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \
yy_cp = yy_full_match; /* restore poss. backed-over text */ \
yy_lp = yy_full_lp; /* restore orig. accepting pos. */ \
yy_state_ptr = yy_full_state; /* restore orig. state */ \
yy_current_state = *yy_state_ptr; /* restore curr. state */ \
++yy_lp; \
goto find_rule; \
}
#define yymore() yymore_used_but_not_detected
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
#line 1 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
#define INITIAL 0
/* TortoiseCVS - a Windows shell extension for easy version control
// Copyright (C) 2004 - Hartmut Honisch
// <Hartmut_Honisch@web.de> - April 2004
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/****************************/
/* Lexer for cvs log output */
/****************************/
#line 26 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
/* Headers */
#include "bison_parser.hpp"
#include <iostream>
// This is a bugfix class - flex forgets to free its stack memory
class TortoiseLexer : public yyFlexLexer
{
public:
TortoiseLexer(std::istream* arg_yyin = 0, std::ostream* arg_yyout = 0)
: yyFlexLexer(arg_yyin, arg_yyout) { }
~TortoiseLexer()
{
if (yy_start_stack)
{
yy_flex_free(yy_start_stack);
yy_start_stack = 0;
}
}
int yylex();
};
using namespace std;
/***********/
/* Options */
/***********/
/* Don't use yywrap */
/* Enable start condition stack */
#define YY_STACK_USED 1
/* No interactive scanning */
#define YY_NEVER_INTERACTIVE 1
/* Rename class to avoid name clashing */
/* Don't include the default rule */
/* Derive from my subclass */
/********************/
/* Start conditions */
/********************/
/* When reading the header part */
#define HEADER 1
#define HEADER_LOCKS 2
#define HEADER_ACCESS 3
#define HEADER_SYMBOLIC 4
#define HEADER_TOTAL_REVS 5
#define HEADER_DESCRIPTION 6
/* When reading a revision */
#define REVISION 7
#define REVISION_DATE 8
#define REVISION_LOCKED_BY 9
#define REVISION_OPTIONS 10
#define REVISION_BRANCHES 11
#define REVISION_BRANCH_ITEMS 12
#define REVISION_COMMENT 13
/* Read string up to various delimiters */
#define STR_TO_EOL 14
#define SKIP_TO_EOL 15
#define STR_TO_WS 16
/* When reading an item of type "name: revision" followed by '\n' */
#define NAME_REV_ITEM 17
#define NAME_REV_COLON 18
#define NAME_REV_REV 19
/* When reading a list item followed by '\n' */
#define LIST_ITEM 20
/* When reading a key value, i.e. the value in ("key: value") followed by ';' or '\n' */
#define KEY_VALUE 21
/***************/
/* Definitions */
/***************/
/* Whitespace. */
/* No whitespace. */
/* Whitespace without a newline character */
/* Newline character */
/* No newline character */
/* Revision separator */
/* Node separator */
#line 1143 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../build/vc9Win32/cvstree/flex_lexer.cpp"
/* Macros after this point can all be overridden by user definitions in
* section 1.
*/
#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap YY_PROTO(( void ));
#else
extern int yywrap YY_PROTO(( void ));
#endif
#endif
#ifndef yytext_ptr
static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen YY_PROTO(( yyconst char * ));
#endif
#ifndef YY_NO_INPUT
#endif
#if YY_STACK_USED
static int yy_start_stack_ptr = 0;
static int yy_start_stack_depth = 0;
static int *yy_start_stack = 0;
#ifndef YY_NO_PUSH_STATE
static void yy_push_state YY_PROTO(( int new_state ));
#endif
#ifndef YY_NO_POP_STATE
static void yy_pop_state YY_PROTO(( void ));
#endif
#ifndef YY_NO_TOP_STATE
static int yy_top_state YY_PROTO(( void ));
#endif
#else
#define YY_NO_PUSH_STATE 1
#define YY_NO_POP_STATE 1
#define YY_NO_TOP_STATE 1
#endif
#ifdef YY_MALLOC_DECL
YY_MALLOC_DECL
#else
#if __STDC__
#ifndef __cplusplus
#include <stdlib.h>
#endif
#else
/* Just try to get by without declaring the routines. This will fail
* miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)
* or sizeof(void*) != sizeof(int).
*/
#endif
#endif
/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#define YY_READ_BUF_SIZE 8192
#endif
/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
#define ECHO LexerOutput( yytext, yyleng )
#endif
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
* is returned in "result".
*/
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
if ( (result = LexerInput( (char *) buf, max_size )) < 0 ) \
YY_FATAL_ERROR( "input in flex scanner failed" );
#endif
/* No semi-colon after return; correct usage is to write "yyterminate();" -
* we don't want an extra ';' after the "return" because that will cause
* some compilers to complain about unreachable statements.
*/
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif
/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif
/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) LexerError( msg )
#endif
/* Default declaration of generated scanner - a define so the user can
* easily add parameters.
*/
#ifndef YY_DECL
#define YY_DECL int yyFlexLexer::yylex()
#endif
/* Code executed at the beginning of each rule, after yytext and yyleng
* have been set up.
*/
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif
/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK break;
#endif
#define YY_RULE_SETUP \
YY_USER_ACTION
YY_DECL
{
register yy_state_type yy_current_state;
register char *yy_cp, *yy_bp;
register int yy_act;
#line 148 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
/* Skip whitespace at the beginning of the log */
#line 1274 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../build/vc9Win32/cvstree/flex_lexer.cpp"
if ( yy_init )
{
yy_init = 0;
#ifdef YY_USER_INIT
YY_USER_INIT;
#endif
if ( ! yy_start )
yy_start = 1; /* first start state */
if ( ! yyin )
yyin = &cin;
if ( ! yyout )
yyout = &cout;
if ( ! yy_current_buffer )
yy_current_buffer =
yy_create_buffer( yyin, YY_BUF_SIZE );
yy_load_buffer_state();
}
while ( 1 ) /* loops until end-of-file is reached */
{
yy_cp = yy_c_buf_p;
/* Support of yytext. */
*yy_cp = yy_hold_char;
/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
*/
yy_bp = yy_cp;
yy_current_state = yy_start;
yy_state_ptr = yy_state_buf;
*yy_state_ptr++ = yy_current_state;
yy_match:
do
{
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 853 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
*yy_state_ptr++ = yy_current_state;
++yy_cp;
}
while ( yy_base[yy_current_state] != 1428 );
yy_find_action:
yy_current_state = *--yy_state_ptr;
yy_lp = yy_accept[yy_current_state];
find_rule: /* we branch to this label when backing up */
for ( ; ; ) /* until we find what rule we matched */
{
if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] )
{
yy_act = yy_acclist[yy_lp];
if ( yy_act & YY_TRAILING_HEAD_MASK ||
yy_looking_for_trail_begin )
{
if ( yy_act == yy_looking_for_trail_begin )
{
yy_looking_for_trail_begin = 0;
yy_act &= ~YY_TRAILING_HEAD_MASK;
break;
}
}
else if ( yy_act & YY_TRAILING_MASK )
{
yy_looking_for_trail_begin = yy_act & ~YY_TRAILING_MASK;
yy_looking_for_trail_begin |= YY_TRAILING_HEAD_MASK;
}
else
{
yy_full_match = yy_cp;
yy_full_state = yy_state_ptr;
yy_full_lp = yy_lp;
break;
}
++yy_lp;
goto find_rule;
}
--yy_cp;
yy_current_state = *--yy_state_ptr;
yy_lp = yy_accept[yy_current_state];
}
YY_DO_BEFORE_ACTION;
do_action: /* This label is used only to access EOF actions. */
if ( yy_flex_debug )
{
if ( yy_act == 0 )
cerr << "--scanner backing up\n";
else if ( yy_act < 61 )
cerr << "--accepting rule at line " << yy_rule_linenum[yy_act] <<
"(\"" << yytext << "\")\n";
else if ( yy_act == 61 )
cerr << "--accepting default rule (\"" << yytext << "\")\n";
else if ( yy_act == 62 )
cerr << "--(end of buffer or a NUL)\n";
else
cerr << "--EOF (start condition " << YY_START << ")\n";
}
switch ( yy_act )
{ /* beginning of action switch */
case 1:
YY_RULE_SETUP
#line 151 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(HEADER);
yy_push_state(STR_TO_EOL);
return TOK_RCS_FILE;
}
YY_BREAK
/* Read "Working file" */
case 2:
YY_RULE_SETUP
#line 160 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(STR_TO_EOL);
return TOK_WORKING_FILE;
}
YY_BREAK
/* Read "head" */
case 3:
YY_RULE_SETUP
#line 168 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(STR_TO_EOL);
return TOK_HEAD_REV;
}
YY_BREAK
/* Read "branch" */
case 4:
YY_RULE_SETUP
#line 176 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(STR_TO_EOL);
return TOK_BRANCH_REV;
}
YY_BREAK
/* Read "locks" */
case 5:
YY_RULE_SETUP
#line 184 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(HEADER_LOCKS);
return TOK_LOCKS;
}
YY_BREAK
/* Read "strict" */
case 6:
YY_RULE_SETUP
#line 190 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
return TOK_STRICT;
}
YY_BREAK
/* Read locks list item */
case 7:
YY_RULE_SETUP
#line 195 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(NAME_REV_ITEM);
}
YY_BREAK
/* End of locks list */
case 8:
YY_RULE_SETUP
#line 200 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(HEADER);
}
YY_BREAK
/* Read "access list" */
case 9:
YY_RULE_SETUP
#line 207 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(HEADER_ACCESS);
return TOK_ACCESS_LIST;
}
YY_BREAK
/* Read access list item */
case 10:
YY_RULE_SETUP
#line 213 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(LIST_ITEM);
}
YY_BREAK
/* End of access list */
case 11:
YY_RULE_SETUP
#line 218 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(HEADER);
}
YY_BREAK
/* Read "symbolic names" */
case 12:
YY_RULE_SETUP
#line 225 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(HEADER_SYMBOLIC);
return TOK_SYMBOLIC_NAMES;
}
YY_BREAK
/* Read symbolic list item */
case 13:
YY_RULE_SETUP
#line 231 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(NAME_REV_ITEM);
}
YY_BREAK
/* End of symbolic list */
case 14:
YY_RULE_SETUP
#line 236 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(HEADER);
}
YY_BREAK
/* Read "keyword substitution:" */
case 15:
YY_RULE_SETUP
#line 243 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(STR_TO_EOL);
return TOK_KEYWORD_SUBST;
}
YY_BREAK
/* Read "total revisions:" */
case 16:
YY_RULE_SETUP
#line 251 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(HEADER_TOTAL_REVS);
yy_push_state(KEY_VALUE);
return TOK_TOTAL_REVS;
}
YY_BREAK
/* Read "selected revisions:" */
case 17:
YY_RULE_SETUP
#line 258 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(KEY_VALUE);
return TOK_SELECTED_REVS;
}
YY_BREAK
/* End if "total revisions" */
case 18:
YY_RULE_SETUP
#line 264 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(HEADER);
}
YY_BREAK
/* Read "description:" */
case 19:
YY_RULE_SETUP
#line 271 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(HEADER_DESCRIPTION);
return TOK_DESCRIPTION;
}
YY_BREAK
/* Read revision separator => Start reading revision */
case 20:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp -= 8;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 277 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_pop_state();
BEGIN(REVISION);
}
YY_BREAK
/* Read node separator => Finished node */
case 21:
YY_RULE_SETUP
#line 283 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_pop_state();
BEGIN(INITIAL);
return TOK_EON;
}
YY_BREAK
/* Read description line */
case 22:
YY_RULE_SETUP
#line 290 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
return TOK_STRING;
}
YY_BREAK
/* Read description line break */
case 23:
YY_RULE_SETUP
#line 295 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
return TOK_EOL;
}
YY_BREAK
/* Read unknown header line */
case 24:
YY_RULE_SETUP
#line 302 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(SKIP_TO_EOL);
ECHO;
}
YY_BREAK
/* Revision starts */
case 25:
YY_RULE_SETUP
#line 310 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(REVISION_LOCKED_BY);
yy_push_state(STR_TO_WS);
return TOK_REVISION;
}
YY_BREAK
/* Read empty "locked by:" */
case 26:
YY_RULE_SETUP
#line 319 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(REVISION_OPTIONS);
}
YY_BREAK
/* Read "locked by:" */
case 27:
YY_RULE_SETUP
#line 324 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(KEY_VALUE);
return TOK_LOCKED_BY;
}
YY_BREAK
/* Read "date:" */
case 28:
YY_RULE_SETUP
#line 332 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(REVISION_OPTIONS);
yy_push_state(KEY_VALUE);
return TOK_DATE;
}
YY_BREAK
/* Read "author:" */
case 29:
YY_RULE_SETUP
#line 339 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(KEY_VALUE);
return TOK_AUTHOR;
}
YY_BREAK
/* Read "state:" */
case 30:
YY_RULE_SETUP
#line 345 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(KEY_VALUE);
return TOK_STATE;
}
YY_BREAK
/* Read "lines:" */
case 31:
YY_RULE_SETUP
#line 351 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(KEY_VALUE);
return TOK_LINES;
}
YY_BREAK
/* Read "kopt:" */
case 32:
YY_RULE_SETUP
#line 357 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(KEY_VALUE);
return TOK_KOPT;
}
YY_BREAK
/* Read "commitid:" */
case 33:
YY_RULE_SETUP
#line 363 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(KEY_VALUE);
return TOK_COMMITID;
}
YY_BREAK
/* Read "filename:" */
case 34:
YY_RULE_SETUP
#line 369 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(KEY_VALUE);
return TOK_FILENAME;
}
YY_BREAK
/* Read "mergepoint:" */
case 35:
YY_RULE_SETUP
#line 375 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(KEY_VALUE);
return TOK_MERGEPOINT;
}
YY_BREAK
/* Read "bugid:" */
case 36:
YY_RULE_SETUP
#line 381 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(KEY_VALUE);
return TOK_BUGNUMBER;
}
YY_BREAK
/* Read unknown option */
case 37:
YY_RULE_SETUP
#line 387 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_push_state(KEY_VALUE);
return TOK_UNKNOWN;
}
YY_BREAK
/* End of options */
case 38:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp -= 9;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 393 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(REVISION_BRANCHES);
}
YY_BREAK
/* End of options */
case 39:
YY_RULE_SETUP
#line 398 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(REVISION_COMMENT);
}
YY_BREAK
/* Read "branches: " */
case 40:
YY_RULE_SETUP
#line 405 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(REVISION_BRANCH_ITEMS);
return TOK_BRANCHES;
}
YY_BREAK
/* Read branch */
case 41:
YY_RULE_SETUP
#line 411 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
return TOK_STRING;
}
YY_BREAK
/* Read delimiter */
case 42:
YY_RULE_SETUP
#line 416 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
}
YY_BREAK
/* End of branches */
case 43:
YY_RULE_SETUP
#line 420 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(REVISION_COMMENT);
}
YY_BREAK
/* Read revision comment */
case 44:
YY_RULE_SETUP
#line 427 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
return TOK_COMMENT;
}
YY_BREAK
/* Read revision comment */
case 45:
YY_RULE_SETUP
#line 433 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
return TOK_EOL;
}
YY_BREAK
/* Read revision comment */
case 46:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp -= 8;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 439 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(REVISION);
}
YY_BREAK
/* Read revision comment */
case 47:
YY_RULE_SETUP
#line 445 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(INITIAL);
return TOK_EON;
}
YY_BREAK
/* Read string up to next newline */
case 48:
YY_RULE_SETUP
#line 452 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
return TOK_STRING;
}
YY_BREAK
/* Read newline */
case 49:
YY_RULE_SETUP
#line 458 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_pop_state();
}
YY_BREAK
/* Skip to end of line */
case 50:
YY_RULE_SETUP
#line 464 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_pop_state();
ECHO;
}
YY_BREAK
/* Read string up to whitespace */
case 51:
YY_RULE_SETUP
#line 471 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
return TOK_STRING;
}
YY_BREAK
/* Read string up to whitespace */
case 52:
YY_RULE_SETUP
#line 477 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_pop_state();
return TOK_STRING;
}
YY_BREAK
/* Read whitespace after string*/
case 53:
YY_RULE_SETUP
#line 484 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_pop_state();
}
YY_BREAK
/*************************************************************/
/* Reading an item of type "name: revision" followed by '\n' */
/*************************************************************/
/* Read name */
case 54:
YY_RULE_SETUP
#line 495 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(NAME_REV_COLON);
return TOK_STRING;
}
YY_BREAK
/* Read delimiting colon */
case 55:
YY_RULE_SETUP
#line 501 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
BEGIN(NAME_REV_REV);
}
YY_BREAK
/* Read revision */
case 56:
YY_RULE_SETUP
#line 506 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_pop_state();
return TOK_STRING;
}
YY_BREAK
/****************************************/
/* Reading a list item followed by '\n' */
/****************************************/
/* Read item */
case 57:
YY_RULE_SETUP
#line 518 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_pop_state();
return TOK_STRING;
}
YY_BREAK
/*********************************************************************************/
/* Reading a key value, i.e. the value in ("key: value") followed by ';' or '\n' */
/*********************************************************************************/
/* Read value followed by delimiter */
case 58:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp -= 1;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 530 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
return TOK_STRING;
}
YY_BREAK
/* Read value followed by newline */
case 59:
YY_RULE_SETUP
#line 535 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_pop_state();
return TOK_STRING;
}
YY_BREAK
/* Read semicolon delimiter */
case 60:
YY_RULE_SETUP
#line 541 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
{
yy_pop_state();
}
YY_BREAK
/* Ignore unknown input
<*>. {
printf("x");
}
<*>{NL} {
printf("\n");
}
*/
case 61:
YY_RULE_SETUP
#line 556 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
YY_FATAL_ERROR( "flex scanner jammed" );
YY_BREAK
#line 1943 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../build/vc9Win32/cvstree/flex_lexer.cpp"
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(HEADER):
case YY_STATE_EOF(HEADER_LOCKS):
case YY_STATE_EOF(HEADER_ACCESS):
case YY_STATE_EOF(HEADER_SYMBOLIC):
case YY_STATE_EOF(HEADER_TOTAL_REVS):
case YY_STATE_EOF(HEADER_DESCRIPTION):
case YY_STATE_EOF(REVISION):
case YY_STATE_EOF(REVISION_DATE):
case YY_STATE_EOF(REVISION_LOCKED_BY):
case YY_STATE_EOF(REVISION_OPTIONS):
case YY_STATE_EOF(REVISION_BRANCHES):
case YY_STATE_EOF(REVISION_BRANCH_ITEMS):
case YY_STATE_EOF(REVISION_COMMENT):
case YY_STATE_EOF(STR_TO_EOL):
case YY_STATE_EOF(SKIP_TO_EOL):
case YY_STATE_EOF(STR_TO_WS):
case YY_STATE_EOF(NAME_REV_ITEM):
case YY_STATE_EOF(NAME_REV_COLON):
case YY_STATE_EOF(NAME_REV_REV):
case YY_STATE_EOF(LIST_ITEM):
case YY_STATE_EOF(KEY_VALUE):
yyterminate();
case YY_END_OF_BUFFER:
{
/* Amount of text matched not including the EOB char. */
int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1;
/* Undo the effects of YY_DO_BEFORE_ACTION. */
*yy_cp = yy_hold_char;
YY_RESTORE_YY_MORE_OFFSET
if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
{
/* We're scanning a new file or input source. It's
* possible that this happened because the user
* just pointed yyin at a new source and called
* yylex(). If so, then we have to assure
* consistency between yy_current_buffer and our
* globals. Here is the right place to do so, because
* this is the first action (other than possibly a
* back-up) that will match for the new input source.
*/
yy_n_chars = yy_current_buffer->yy_n_chars;
yy_current_buffer->yy_input_file = yyin;
yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL;
}
/* Note that here we test for yy_c_buf_p "<=" to the position
* of the first EOB in the buffer, since yy_c_buf_p will
* already have been incremented past the NUL character
* (since all states make transitions on EOB to the
* end-of-buffer state). Contrast this with the test
* in input().
*/
if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
{ /* This was really a NUL. */
yy_state_type yy_next_state;
yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state();
/* Okay, we're now positioned to make the NUL
* transition. We couldn't have
* yy_get_previous_state() go ahead and do it
* for us because it doesn't know how to deal
* with the possibility of jamming (and we don't
* want to build jamming into it because then it
* will run more slowly).
*/
yy_next_state = yy_try_NUL_trans( yy_current_state );
yy_bp = yytext_ptr + YY_MORE_ADJ;
if ( yy_next_state )
{
/* Consume the NUL. */
yy_cp = ++yy_c_buf_p;
yy_current_state = yy_next_state;
goto yy_match;
}
else
{
yy_cp = yy_c_buf_p;
goto yy_find_action;
}
}
else switch ( yy_get_next_buffer() )
{
case EOB_ACT_END_OF_FILE:
{
yy_did_buffer_switch_on_eof = 0;
if ( yywrap() )
{
/* Note: because we've taken care in
* yy_get_next_buffer() to have set up
* yytext, we can now set up
* yy_c_buf_p so that if some total
* hoser (like flex itself) wants to
* call the scanner after we return the
* YY_NULL, it'll still work - another
* YY_NULL will get returned.
*/
yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
yy_act = YY_STATE_EOF(YY_START);
goto do_action;
}
else
{
if ( ! yy_did_buffer_switch_on_eof )
YY_NEW_FILE;
}
break;
}
case EOB_ACT_CONTINUE_SCAN:
yy_c_buf_p =
yytext_ptr + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state();
yy_cp = yy_c_buf_p;
yy_bp = yytext_ptr + YY_MORE_ADJ;
goto yy_match;
case EOB_ACT_LAST_MATCH:
yy_c_buf_p =
&yy_current_buffer->yy_ch_buf[yy_n_chars];
yy_current_state = yy_get_previous_state();
yy_cp = yy_c_buf_p;
yy_bp = yytext_ptr + YY_MORE_ADJ;
goto yy_find_action;
}
break;
}
default:
YY_FATAL_ERROR(
"fatal flex scanner internal error--no action found" );
} /* end of action switch */
} /* end of scanning one token */
} /* end of yylex */
yyFlexLexer::yyFlexLexer( istream* arg_yyin, ostream* arg_yyout )
{
yyin = arg_yyin;
yyout = arg_yyout;
yy_c_buf_p = 0;
yy_init = 1;
yy_start = 0;
yy_flex_debug = 0;
yylineno = 1; // this will only get updated if %option yylineno
yy_did_buffer_switch_on_eof = 0;
yy_looking_for_trail_begin = 0;
yy_more_flag = 0;
yy_more_len = 0;
yy_more_offset = yy_prev_more_offset = 0;
yy_start_stack_ptr = yy_start_stack_depth = 0;
yy_start_stack = 0;
yy_current_buffer = 0;
#ifdef YY_USES_REJECT
yy_state_buf = new yy_state_type[YY_BUF_SIZE + 2];
#else
yy_state_buf = 0;
#endif
}
yyFlexLexer::~yyFlexLexer()
{
delete yy_state_buf;
yy_delete_buffer( yy_current_buffer );
}
void yyFlexLexer::switch_streams( istream* new_in, ostream* new_out )
{
if ( new_in )
{
yy_delete_buffer( yy_current_buffer );
yy_switch_to_buffer( yy_create_buffer( new_in, YY_BUF_SIZE ) );
}
if ( new_out )
yyout = new_out;
}
#ifdef YY_INTERACTIVE
int yyFlexLexer::LexerInput( char* buf, int /* max_size */ )
#else
int yyFlexLexer::LexerInput( char* buf, int max_size )
#endif
{
if ( yyin->eof() || yyin->fail() )
return 0;
#ifdef YY_INTERACTIVE
yyin->get( buf[0] );
if ( yyin->eof() )
return 0;
if ( yyin->bad() )
return -1;
return 1;
#else
(void) yyin->read( buf, max_size );
if ( yyin->bad() )
return -1;
else
return yyin->gcount();
#endif
}
void yyFlexLexer::LexerOutput( const char* buf, int size )
{
(void) yyout->write( buf, size );
}
/* yy_get_next_buffer - try to read in a new buffer
*
* Returns a code representing an action:
* EOB_ACT_LAST_MATCH -
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
* EOB_ACT_END_OF_FILE - end of file
*/
int yyFlexLexer::yy_get_next_buffer()
{
register char *dest = yy_current_buffer->yy_ch_buf;
register char *source = yytext_ptr;
register int number_to_move, i;
int ret_val;
if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
YY_FATAL_ERROR(
"fatal flex scanner internal error--end of buffer missed" );
if ( yy_current_buffer->yy_fill_buffer == 0 )
{ /* Don't try to fill the buffer, so this is an EOF. */
if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )
{
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
}
else
{
/* We matched some text prior to the EOB, first
* process it.
*/
return EOB_ACT_LAST_MATCH;
}
}
/* Try to read more data. */
/* First move last chars to start of buffer. */
number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1;
for ( i = 0; i < number_to_move; ++i )
*(dest++) = *(source++);
if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )
/* don't do the read, it's not guaranteed to return an EOF,
* just force an EOF
*/
yy_current_buffer->yy_n_chars = yy_n_chars = 0;
else
{
int num_to_read =
yy_current_buffer->yy_buf_size - number_to_move - 1;
while ( num_to_read <= 0 )
{ /* Not enough room in the buffer - grow it. */
#ifdef YY_USES_REJECT
YY_FATAL_ERROR(
"input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
#else
/* just a shorter name for the current buffer */
YY_BUFFER_STATE b = yy_current_buffer;
int yy_c_buf_p_offset =
(int) (yy_c_buf_p - b->yy_ch_buf);
if ( b->yy_is_our_buffer )
{
int new_size = b->yy_buf_size * 2;
if ( new_size <= 0 )
b->yy_buf_size += b->yy_buf_size / 8;
else
b->yy_buf_size *= 2;
b->yy_ch_buf = (char *)
/* Include room in for 2 EOB chars. */
yy_flex_realloc( (void *) b->yy_ch_buf,
b->yy_buf_size + 2 );
}
else
/* Can't grow it, we don't own it. */
b->yy_ch_buf = 0;
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR(
"fatal error - scanner input buffer overflow" );
yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
num_to_read = yy_current_buffer->yy_buf_size -
number_to_move - 1;
#endif
}
if ( num_to_read > YY_READ_BUF_SIZE )
num_to_read = YY_READ_BUF_SIZE;
/* Read in more data. */
YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
yy_n_chars, num_to_read );
yy_current_buffer->yy_n_chars = yy_n_chars;
}
if ( yy_n_chars == 0 )
{
if ( number_to_move == YY_MORE_ADJ )
{
ret_val = EOB_ACT_END_OF_FILE;
yyrestart( yyin );
}
else
{
ret_val = EOB_ACT_LAST_MATCH;
yy_current_buffer->yy_buffer_status =
YY_BUFFER_EOF_PENDING;
}
}
else
ret_val = EOB_ACT_CONTINUE_SCAN;
yy_n_chars += number_to_move;
yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
yytext_ptr = &yy_current_buffer->yy_ch_buf[0];
return ret_val;
}
/* yy_get_previous_state - get the state just before the EOB char was reached */
yy_state_type yyFlexLexer::yy_get_previous_state()
{
register yy_state_type yy_current_state;
register char *yy_cp;
yy_current_state = yy_start;
yy_state_ptr = yy_state_buf;
*yy_state_ptr++ = yy_current_state;
for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
{
register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 853 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
*yy_state_ptr++ = yy_current_state;
}
return yy_current_state;
}
/* yy_try_NUL_trans - try to make a transition on the NUL character
*
* synopsis
* next_state = yy_try_NUL_trans( current_state );
*/
yy_state_type yyFlexLexer::yy_try_NUL_trans( yy_state_type yy_current_state )
{
register int yy_is_jam;
register YY_CHAR yy_c = 1;
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 853 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
yy_is_jam = (yy_current_state == 852);
if ( ! yy_is_jam )
*yy_state_ptr++ = yy_current_state;
return yy_is_jam ? 0 : yy_current_state;
}
void yyFlexLexer::yyunput( int c, register char* yy_bp )
{
register char *yy_cp = yy_c_buf_p;
/* undo effects of setting up yytext */
*yy_cp = yy_hold_char;
if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
{ /* need to shift things up to make room */
/* +2 for EOB chars. */
register int number_to_move = yy_n_chars + 2;
register char *dest = &yy_current_buffer->yy_ch_buf[
yy_current_buffer->yy_buf_size + 2];
register char *source =
&yy_current_buffer->yy_ch_buf[number_to_move];
while ( source > yy_current_buffer->yy_ch_buf )
*--dest = *--source;
yy_cp += (int) (dest - source);
yy_bp += (int) (dest - source);
yy_current_buffer->yy_n_chars =
yy_n_chars = yy_current_buffer->yy_buf_size;
if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
YY_FATAL_ERROR( "flex scanner push-back overflow" );
}
*--yy_cp = (char) c;
yytext_ptr = yy_bp;
yy_hold_char = *yy_cp;
yy_c_buf_p = yy_cp;
}
int yyFlexLexer::yyinput()
{
int c;
*yy_c_buf_p = yy_hold_char;
if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
{
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
*/
if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
/* This was really a NUL. */
*yy_c_buf_p = '\0';
else
{ /* need more input */
int offset = yy_c_buf_p - yytext_ptr;
++yy_c_buf_p;
switch ( yy_get_next_buffer() )
{
case EOB_ACT_LAST_MATCH:
/* This happens because yy_g_n_b()
* sees that we've accumulated a
* token and flags that we need to
* try matching the token before
* proceeding. But for input(),
* there's no matching to consider.
* So convert the EOB_ACT_LAST_MATCH
* to EOB_ACT_END_OF_FILE.
*/
/* Reset buffer status. */
yyrestart( yyin );
/* fall through */
case EOB_ACT_END_OF_FILE:
{
if ( yywrap() )
return EOF;
if ( ! yy_did_buffer_switch_on_eof )
YY_NEW_FILE;
#ifdef __cplusplus
return yyinput();
#else
return input();
#endif
}
case EOB_ACT_CONTINUE_SCAN:
yy_c_buf_p = yytext_ptr + offset;
break;
}
}
}
c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */
*yy_c_buf_p = '\0'; /* preserve yytext */
yy_hold_char = *++yy_c_buf_p;
return c;
}
void yyFlexLexer::yyrestart( istream* input_file )
{
if ( ! yy_current_buffer )
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );
yy_init_buffer( yy_current_buffer, input_file );
yy_load_buffer_state();
}
void yyFlexLexer::yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
{
if ( yy_current_buffer == new_buffer )
return;
if ( yy_current_buffer )
{
/* Flush out information for old buffer. */
*yy_c_buf_p = yy_hold_char;
yy_current_buffer->yy_buf_pos = yy_c_buf_p;
yy_current_buffer->yy_n_chars = yy_n_chars;
}
yy_current_buffer = new_buffer;
yy_load_buffer_state();
/* We don't actually know whether we did this switch during
* EOF (yywrap()) processing, but the only time this flag
* is looked at is after yywrap() is called, so it's safe
* to go ahead and always set it.
*/
yy_did_buffer_switch_on_eof = 1;
}
void yyFlexLexer::yy_load_buffer_state()
{
yy_n_chars = yy_current_buffer->yy_n_chars;
yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
yyin = yy_current_buffer->yy_input_file;
yy_hold_char = *yy_c_buf_p;
}
YY_BUFFER_STATE yyFlexLexer::yy_create_buffer( istream* file, int size )
{
YY_BUFFER_STATE b;
b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_buf_size = size;
/* yy_ch_buf has to be 2 characters longer than the size given because
* we need to put in 2 end-of-buffer characters.
*/
b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_is_our_buffer = 1;
yy_init_buffer( b, file );
return b;
}
void yyFlexLexer::yy_delete_buffer( YY_BUFFER_STATE b )
{
if ( ! b )
return;
if ( b == yy_current_buffer )
yy_current_buffer = (YY_BUFFER_STATE) 0;
if ( b->yy_is_our_buffer )
yy_flex_free( (void *) b->yy_ch_buf );
yy_flex_free( (void *) b );
}
extern "C" int isatty YY_PROTO(( int ));
void yyFlexLexer::yy_init_buffer( YY_BUFFER_STATE b, istream* file )
{
yy_flush_buffer( b );
b->yy_input_file = file;
b->yy_fill_buffer = 1;
b->yy_is_interactive = 0;
}
void yyFlexLexer::yy_flush_buffer( YY_BUFFER_STATE b )
{
if ( ! b )
return;
b->yy_n_chars = 0;
/* We always need two end-of-buffer characters. The first causes
* a transition to the end-of-buffer state. The second causes
* a jam in that state.
*/
b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
b->yy_buf_pos = &b->yy_ch_buf[0];
b->yy_at_bol = 1;
b->yy_buffer_status = YY_BUFFER_NEW;
if ( b == yy_current_buffer )
yy_load_buffer_state();
}
#ifndef YY_NO_SCAN_BUFFER
#endif
#ifndef YY_NO_SCAN_STRING
#endif
#ifndef YY_NO_SCAN_BYTES
#endif
#ifndef YY_NO_PUSH_STATE
void yyFlexLexer::yy_push_state( int new_state )
{
if ( yy_start_stack_ptr >= yy_start_stack_depth )
{
yy_size_t new_size;
yy_start_stack_depth += YY_START_STACK_INCR;
new_size = yy_start_stack_depth * sizeof( int );
if ( ! yy_start_stack )
yy_start_stack = (int *) yy_flex_alloc( new_size );
else
yy_start_stack = (int *) yy_flex_realloc(
(void *) yy_start_stack, new_size );
if ( ! yy_start_stack )
YY_FATAL_ERROR(
"out of memory expanding start-condition stack" );
}
yy_start_stack[yy_start_stack_ptr++] = YY_START;
BEGIN(new_state);
}
#endif
#ifndef YY_NO_POP_STATE
void yyFlexLexer::yy_pop_state()
{
if ( --yy_start_stack_ptr < 0 )
YY_FATAL_ERROR( "start-condition stack underflow" );
BEGIN(yy_start_stack[yy_start_stack_ptr]);
}
#endif
#ifndef YY_NO_TOP_STATE
int yyFlexLexer::yy_top_state()
{
return yy_start_stack[yy_start_stack_ptr - 1];
}
#endif
#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif
void yyFlexLexer::LexerError( yyconst char msg[] )
{
cerr << msg << '\n';
exit( YY_EXIT_FAILURE );
}
/* Redefine yyless() so it works in section 3 code. */
#undef yyless
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
yytext[yyleng] = yy_hold_char; \
yy_c_buf_p = yytext + n; \
yy_hold_char = *yy_c_buf_p; \
*yy_c_buf_p = '\0'; \
yyleng = n; \
} \
while ( 0 )
/* Internal utility routines. */
#ifndef yytext_ptr
#ifdef YY_USE_PROTOS
static void yy_flex_strncpy( char *s1, yyconst char *s2, int n )
#else
static void yy_flex_strncpy( s1, s2, n )
char *s1;
yyconst char *s2;
int n;
#endif
{
register int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
}
#endif
#ifdef YY_NEED_STRLEN
#ifdef YY_USE_PROTOS
static int yy_flex_strlen( yyconst char *s )
#else
static int yy_flex_strlen( s )
yyconst char *s;
#endif
{
register int n;
for ( n = 0; s[n]; ++n )
;
return n;
}
#endif
#ifdef YY_USE_PROTOS
static void *yy_flex_alloc( yy_size_t size )
#else
static void *yy_flex_alloc( size )
yy_size_t size;
#endif
{
return (void *) malloc( size );
}
#ifdef YY_USE_PROTOS
static void *yy_flex_realloc( void *ptr, yy_size_t size )
#else
static void *yy_flex_realloc( ptr, size )
void *ptr;
yy_size_t size;
#endif
{
/* The cast to (char *) in the following accommodates both
* implementations that use char* generic pointers, and those
* that use void* generic pointers. It works with the latter
* because both ANSI C and C++ allow castless assignment from
* any pointer type to void*, and deal with argument conversions
* as though doing an assignment.
*/
return (void *) realloc( (char *) ptr, size );
}
#ifdef YY_USE_PROTOS
static void yy_flex_free( void *ptr )
#else
static void yy_flex_free( ptr )
void *ptr;
#endif
{
free( ptr );
}
#if YY_MAIN
int main()
{
yylex();
return 0;
}
#endif
#line 556 "C:\\Users\\Marvin\\Git\\G-CVSNT\\cvsnt\\tortoiseCVS\\TortoiseCVS\\build\\vc9Win32\\../../src/cvstree/lexer.ll"
// Create the lexer
FlexLexer* CreateCvsLogLexer(std::istream *in, std::ostream *out)
{
return new TortoiseLexer(in, out);
}
|
5764ad7302650f13d27867df5dc256bd1867028b | 4049995ce0046be6f13d172c7f72968d2cc04610 | /huffmanCpp/huffman-menuDriven/main.cpp | 62f820662ade3b3548e34115d0f33799722ca045 | [] | no_license | adityameharia/HuffmanCompression | f449f2681c9fecec5b7bfd94336f81dd98ecc260 | 7346b7412b48ecbcf35a54eecd8584c28b53f673 | refs/heads/main | 2023-04-23T07:30:05.241571 | 2021-05-04T06:04:50 | 2021-05-04T06:04:50 | 345,003,433 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 188 | cpp | main.cpp | #include "include/compress.h"
#include "include/decompress.hpp"
using namespace std;
int main(){
compress("text.txt","try.txt");
decompress("text.txt","try.txt");
return 0;
} |
c0da7c569ae027d235a3d23b9573b65753d7e38d | 335dada1f77bf87773ba4a45cf204cd0b38f2044 | /Stoer-Wagner/gen.cpp | 803432002797603fcd7558aaeebeed588090a3ac | [
"MIT"
] | permissive | AngusRitossa/Heaps | afe4b4d154ae75797ef99624c8d06ae706cb1c90 | 0658004f4a209387de2fb1490ce0c1ae890b40de | refs/heads/master | 2021-06-12T15:45:07.416728 | 2018-11-18T00:54:16 | 2018-11-18T00:54:16 | 128,756,967 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,289 | cpp | gen.cpp | // Generates the input
// It is guaranteed to be connected
// No self edges
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define MXCOST (ll)(1e5) // Maximum weight of an edge
vector<pair<pair<int, int>, ll> > edges;
struct UF // Union find data structure
{
int rep[10000000];
UF()
{
for (int i = 0; i < 10000000; i++) rep[i] = i;
}
int findrep(int a)
{
if (rep[a] == a) return a;
return rep[a] = findrep(rep[a]);
}
void merge(int a, int b)
{
rep[findrep(a)] = findrep(b);
}
bool connected(int a, int b)
{
return findrep(a) == findrep(b);
}
};
UF uf;
int main()
{
srand(time(NULL));
int v, e;
scanf("%d%d", &v, &e);
printf("%d %d\n", v, e);
e-=v-1;
assert(e >= 0);
for (int i = 1; i < v; i++)
{
int a = rand()%v;
int b = rand()%v;
ll c = (rand()%MXCOST) + 1;
if (uf.connected(a, b))
{
i--;
continue;
}
edges.push_back({ {a, b}, c } );
uf.merge(a, b);
}
for (int i = 0; i < e; i++)
{
int a = rand()%v;
int b = rand()%v;
if (a == b)
{
i--; continue;
}
ll c = (rand()%MXCOST) + 1;
edges.push_back({ {a, b}, c } );
}
random_device rd;
mt19937 g(rd());
shuffle(edges.begin(), edges.end(), g);
for (auto a : edges)
{
printf("%d %d %lld\n", a.first.first, a.first.second, a.second);
}
} |
304b5d8def534ff5810d5685a2f78c0a53d68f46 | 908469f5311041a4831eb2f172633cad46c32224 | /cppPrimer/12/12_14.cpp | e85083d68cc1d6a52a5a812208299454f22c367a | [] | no_license | SmileyJs/Learning | f90dc4ff2a7f5280b6a6c11ddd4aaf05ad9021d2 | 4cacee5e372e71ec2245d4701ea34e07b6d3daa2 | refs/heads/master | 2021-10-22T11:43:35.004887 | 2019-03-10T14:24:58 | 2019-03-10T14:24:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 863 | cpp | 12_14.cpp | #include <iostream>
#include <memory>
using namespace std;
struct connection {
int port;
string ip;
connection(string ip_, int port_) : ip(ip_), port(port_) {}
};
struct destination {
int port;
string ip;
destination(string ip_, int port_) : ip(ip_), port(port_) {}
};
connection
connect(destination *dest)
{
cout << "connect: " << dest->ip << " " << dest->port << endl;
shared_ptr<connection> p(new connection(dest->ip, dest->port));
return *p;
}
void
disconnect(connection *p)
{
cout << "disconenct: " << p->ip << " " << p->port << endl;
}
void
end_connect(connection *c)
{
cout << "end_connect" << endl;
disconnect(c);
}
void
f(destination *dest)
{
connection c = connect(dest);
shared_ptr<connection> p(&c, end_connect);
}
int
main(int argc, char const *argv[])
{
destination dest("192.168.5.100", 5555);
f(&dest);
return 0;
} |
43bf9007732281b6b63b59bd35cbf4524e4d59dd | 03ac0302b6480683b7ab0c80fec3ac8e1c25a0cd | /src/sdlmain.cpp | 89cb3f1715adcf394e99e32e27a1a2ca34cd8d71 | [] | no_license | msgpo/REminiscence | 3dc056a565ee4b15b09ec85b6a4cd407077df2fd | 6888c010a5886b06ea8c3ac18add29e1ba1fa6a6 | refs/heads/master | 2022-12-02T23:21:42.578298 | 2020-01-07T00:06:42 | 2020-01-07T00:06:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,374 | cpp | sdlmain.cpp |
/*
* REminiscence - Flashback interpreter
* Copyright (C) 2005-2015 Gregory Montoir (cyx@users.sourceforge.net)
*/
#include <SDL.h>
#include <ctype.h>
#include <getopt.h>
#include <sys/stat.h>
#include "file.h"
#include "fs.h"
#include "game.h"
#include "util.h"
static const char *USAGE =
"REminiscence - Flashback Interpreter\n"
"Usage: %s [OPTIONS]...\n"
" --datapath=PATH Path to data files (default 'DATA')\n"
" --savepath=PATH Path to save files (default '.')\n"
" --levelnum=NUM Start to level, bypass introduction\n"
" --fullscreen Fullscreen display\n"
" --language=LANG Language (fr,en,de,sp,it,jp)\n"
;
static int detectVersion(FileSystem *fs) {
static const struct {
const char *filename;
int type;
const char *name;
} table[] = {
{ "DEMO_UK.ABA", kResourceTypeDOS, "DOS (Demo)" },
{ "INTRO.SEQ", kResourceTypeDOS, "DOS CD" },
{ "LEVEL1.MAP", kResourceTypeDOS, "DOS" },
{ "LEVEL1.LEV", kResourceTypeAmiga, "Amiga" },
{ "DEMO.LEV", kResourceTypeAmiga, "Amiga (Demo)" },
{ 0, -1, 0 }
};
for (int i = 0; table[i].filename; ++i) {
File f;
if (f.open(table[i].filename, "rb", fs)) {
debug(DBG_INFO, "Detected %s version", table[i].name);
return table[i].type;
}
}
return -1;
}
static Language detectLanguage(FileSystem *fs) {
static const struct {
const char *filename;
Language language;
} table[] = {
// PC
{ "ENGCINE.TXT", LANG_EN },
{ "FR_CINE.TXT", LANG_FR },
{ "GERCINE.TXT", LANG_DE },
{ "SPACINE.TXT", LANG_SP },
{ "ITACINE.TXT", LANG_IT },
// Amiga
{ "FRCINE.TXT", LANG_FR },
{ 0, LANG_EN }
};
for (int i = 0; table[i].filename; ++i) {
File f;
if (f.open(table[i].filename, "rb", fs)) {
return table[i].language;
}
}
return LANG_EN;
}
const char *g_caption = "REminiscence";
static void initOptions() {
// defaults
g_options.play_disabled_cutscenes = false;
g_options.enable_password_menu = false;
g_options.use_text_cutscenes = false;
g_options.use_seq_cutscenes = true;
// read configuration file
struct {
const char *name;
bool *value;
} opts[] = {
{ "play_disabled_cutscenes", &g_options.play_disabled_cutscenes },
{ "enable_password_menu", &g_options.enable_password_menu },
{ "use_text_cutscenes", &g_options.use_text_cutscenes },
{ "use_seq_cutscenes", &g_options.use_seq_cutscenes },
{ 0, 0 }
};
static const char *filename = "rs.cfg";
FILE *fp = fopen(filename, "rb");
if (fp) {
char buf[256];
while (fgets(buf, sizeof(buf), fp)) {
if (buf[0] == '#') {
continue;
}
const char *p = strchr(buf, '=');
if (p) {
++p;
while (*p && isspace(*p)) {
++p;
}
if (*p) {
const bool value = (*p == 't' || *p == 'T' || *p == '1');
for (int i = 0; opts[i].name; ++i) {
if (strncmp(buf, opts[i].name, strlen(opts[i].name)) == 0) {
*opts[i].value = value;
break;
}
}
}
}
}
fclose(fp);
}
}
static const int kJoystickCommitValue = 3200;
void processEvent(const SDL_Event &ev, PlayerInput &_pi, SDL_Joystick *_joystick, SDL_GameController *_controller) {
switch (ev.type) {
case SDL_QUIT:
_pi.quit = true;
break;
case SDL_JOYHATMOTION:
if (_joystick) {
_pi.dirMask = 0;
if (ev.jhat.value & SDL_HAT_UP) {
_pi.dirMask |= PlayerInput::DIR_UP;
}
if (ev.jhat.value & SDL_HAT_DOWN) {
_pi.dirMask |= PlayerInput::DIR_DOWN;
}
if (ev.jhat.value & SDL_HAT_LEFT) {
_pi.dirMask |= PlayerInput::DIR_LEFT;
}
if (ev.jhat.value & SDL_HAT_RIGHT) {
_pi.dirMask |= PlayerInput::DIR_RIGHT;
}
}
break;
case SDL_JOYAXISMOTION:
if (_joystick) {
switch (ev.jaxis.axis) {
case 0:
_pi.dirMask &= ~(PlayerInput::DIR_RIGHT | PlayerInput::DIR_LEFT);
if (ev.jaxis.value > kJoystickCommitValue) {
_pi.dirMask |= PlayerInput::DIR_RIGHT;
} else if (ev.jaxis.value < -kJoystickCommitValue) {
_pi.dirMask |= PlayerInput::DIR_LEFT;
}
break;
case 1:
_pi.dirMask &= ~(PlayerInput::DIR_UP | PlayerInput::DIR_DOWN);
if (ev.jaxis.value > kJoystickCommitValue) {
_pi.dirMask |= PlayerInput::DIR_DOWN;
} else if (ev.jaxis.value < -kJoystickCommitValue) {
_pi.dirMask |= PlayerInput::DIR_UP;
}
break;
}
}
break;
case SDL_JOYBUTTONDOWN:
case SDL_JOYBUTTONUP:
if (_joystick) {
const bool pressed = (ev.jbutton.state == SDL_PRESSED);
switch (ev.jbutton.button) {
case 0:
_pi.weapon = pressed;
break;
case 1:
_pi.action = pressed;
break;
case 2:
_pi.use = pressed;
break;
case 3:
_pi.inventory_skip = pressed;
break;
}
}
break;
case SDL_CONTROLLERAXISMOTION:
if (_controller) {
switch (ev.caxis.axis) {
case SDL_CONTROLLER_AXIS_LEFTX:
case SDL_CONTROLLER_AXIS_RIGHTX:
if (ev.caxis.value < -kJoystickCommitValue) {
_pi.dirMask |= PlayerInput::DIR_LEFT;
} else {
_pi.dirMask &= ~PlayerInput::DIR_LEFT;
}
if (ev.caxis.value > kJoystickCommitValue) {
_pi.dirMask |= PlayerInput::DIR_RIGHT;
} else {
_pi.dirMask &= ~PlayerInput::DIR_RIGHT;
}
break;
case SDL_CONTROLLER_AXIS_LEFTY:
case SDL_CONTROLLER_AXIS_RIGHTY:
if (ev.caxis.value < -kJoystickCommitValue) {
_pi.dirMask |= PlayerInput::DIR_UP;
} else {
_pi.dirMask &= ~PlayerInput::DIR_UP;
}
if (ev.caxis.value > kJoystickCommitValue) {
_pi.dirMask |= PlayerInput::DIR_DOWN;
} else {
_pi.dirMask &= ~PlayerInput::DIR_DOWN;
}
break;
}
}
break;
case SDL_CONTROLLERBUTTONDOWN:
case SDL_CONTROLLERBUTTONUP:
if (_controller) {
const bool pressed = (ev.cbutton.state == SDL_PRESSED);
switch (ev.cbutton.button) {
case SDL_CONTROLLER_BUTTON_A:
_pi.use = pressed; // USE
break;
case SDL_CONTROLLER_BUTTON_B:
_pi.weapon = pressed; // ARM / DRAW or HOLSTER
break;
case SDL_CONTROLLER_BUTTON_X:
_pi.action = pressed; // ACTION
break;
case SDL_CONTROLLER_BUTTON_Y:
_pi.inventory_skip = pressed; // INVENTORY / SKIP ANIMATION
break;
case SDL_CONTROLLER_BUTTON_BACK:
case SDL_CONTROLLER_BUTTON_START:
_pi.escape = pressed;
break;
case SDL_CONTROLLER_BUTTON_DPAD_UP:
if (pressed) {
_pi.dirMask |= PlayerInput::DIR_UP;
} else {
_pi.dirMask &= ~PlayerInput::DIR_UP;
}
break;
case SDL_CONTROLLER_BUTTON_DPAD_DOWN:
if (pressed) {
_pi.dirMask |= PlayerInput::DIR_DOWN;
} else {
_pi.dirMask &= ~PlayerInput::DIR_DOWN;
}
break;
case SDL_CONTROLLER_BUTTON_DPAD_LEFT:
if (pressed) {
_pi.dirMask |= PlayerInput::DIR_LEFT;
} else {
_pi.dirMask &= ~PlayerInput::DIR_LEFT;
}
break;
case SDL_CONTROLLER_BUTTON_DPAD_RIGHT:
if (pressed) {
_pi.dirMask |= PlayerInput::DIR_RIGHT;
} else {
_pi.dirMask &= ~PlayerInput::DIR_RIGHT;
}
break;
}
}
break;
case SDL_KEYUP:
if (ev.key.keysym.mod & KMOD_CTRL) {
switch (ev.key.keysym.sym) {
case SDLK_f:
_pi.dbgMask ^= PlayerInput::DF_FASTMODE;
break;
case SDLK_b:
_pi.dbgMask ^= PlayerInput::DF_DBLOCKS;
break;
case SDLK_i:
_pi.dbgMask ^= PlayerInput::DF_SETLIFE;
break;
case SDLK_s:
_pi.save = true;
break;
case SDLK_l:
_pi.load = true;
break;
case SDLK_KP_PLUS:
case SDLK_PAGEUP:
_pi.stateSlot = 1;
break;
case SDLK_KP_MINUS:
case SDLK_PAGEDOWN:
_pi.stateSlot = -1;
break;
}
break;
}
_pi.lastChar = ev.key.keysym.sym;
switch (ev.key.keysym.sym) {
case SDLK_LEFT:
_pi.dirMask &= ~PlayerInput::DIR_LEFT;
break;
case SDLK_RIGHT:
_pi.dirMask &= ~PlayerInput::DIR_RIGHT;
break;
case SDLK_UP:
_pi.dirMask &= ~PlayerInput::DIR_UP;
break;
case SDLK_DOWN:
_pi.dirMask &= ~PlayerInput::DIR_DOWN;
break;
case SDLK_SPACE:
_pi.weapon = false;
break;
case SDLK_RSHIFT:
case SDLK_LSHIFT:
_pi.action = false;
break;
case SDLK_RETURN:
_pi.use = false;
break;
case SDLK_ESCAPE:
_pi.escape = false;
break;
default:
break;
}
break;
case SDL_KEYDOWN:
if (ev.key.keysym.mod & (KMOD_ALT | KMOD_CTRL)) {
break;
}
switch (ev.key.keysym.sym) {
case SDLK_LEFT:
_pi.dirMask |= PlayerInput::DIR_LEFT;
break;
case SDLK_RIGHT:
_pi.dirMask |= PlayerInput::DIR_RIGHT;
break;
case SDLK_UP:
_pi.dirMask |= PlayerInput::DIR_UP;
break;
case SDLK_DOWN:
_pi.dirMask |= PlayerInput::DIR_DOWN;
break;
case SDLK_BACKSPACE:
case SDLK_TAB:
_pi.inventory_skip = true;
break;
case SDLK_SPACE:
_pi.weapon = true;
break;
case SDLK_RSHIFT:
case SDLK_LSHIFT:
_pi.action = true;
break;
case SDLK_RETURN:
_pi.use = true;
break;
case SDLK_ESCAPE:
_pi.escape = true;
break;
default:
break;
}
break;
default:
break;
}
}
int main(int argc, char *argv[]) {
const char *dataPath = "DATA";
const char *savePath = ".";
int levelNum = 0;
bool fullscreen = false;
int forcedLanguage = -1;
if (argc == 2) {
// data path as the only command line argument
struct stat st;
if (stat(argv[1], &st) == 0 && S_ISDIR(st.st_mode)) {
dataPath = strdup(argv[1]);
}
}
while (1) {
static struct option options[] = {
{ "datapath", required_argument, 0, 1 },
{ "savepath", required_argument, 0, 2 },
{ "levelnum", required_argument, 0, 3 },
{ "fullscreen", no_argument, 0, 4 },
{ "language", required_argument, 0, 5 },
{ 0, 0, 0, 0 }
};
int index;
const int c = getopt_long(argc, argv, "", options, &index);
if (c == -1) {
break;
}
switch (c) {
case 1:
dataPath = strdup(optarg);
break;
case 2:
savePath = strdup(optarg);
break;
case 3:
levelNum = atoi(optarg);
break;
case 4:
fullscreen = true;
break;
case 5: {
static const struct {
int lang;
const char *str;
} languages[] = {
{ LANG_FR, "FR" },
{ LANG_EN, "EN" },
{ LANG_DE, "DE" },
{ LANG_SP, "SP" },
{ LANG_IT, "IT" },
{ LANG_JP, "JP" },
{ -1, 0 }
};
for (int i = 0; languages[i].str; ++i) {
if (strcasecmp(languages[i].str, optarg) == 0) {
forcedLanguage = languages[i].lang;
break;
}
}
}
break;
default:
printf(USAGE, argv[0]);
return 0;
}
}
initOptions();
g_debugMask = DBG_INFO; // DBG_CUT | DBG_VIDEO | DBG_RES | DBG_MENU | DBG_PGE | DBG_GAME | DBG_UNPACK | DBG_COL | DBG_MOD | DBG_SFX | DBG_FILE;
FileSystem fs(dataPath);
const int version = detectVersion(&fs);
if (version != kResourceTypeDOS) {
error("Unable to find DOS data files, check that all required files are present");
return -1;
}
const Language language = (forcedLanguage == -1) ? detectLanguage(&fs) : (Language)forcedLanguage;
Game *g = new Game(&fs, savePath, levelNum, language);
g->init();
SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_JOYSTICK | SDL_INIT_GAMECONTROLLER);
SDL_ShowCursor(SDL_DISABLE);
SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "0"); // nearest pixel sampling
SDL_Window *window = nullptr;
SDL_Renderer *renderer = nullptr;
SDL_Texture *texture = nullptr;
SDL_GameController *controller = nullptr;
SDL_Joystick *joystick = nullptr;
// joystick
if (SDL_NumJoysticks() > 0) {
SDL_GameControllerAddMappingsFromFile("gamecontrollerdb.txt");
if (SDL_IsGameController(0)) {
controller = SDL_GameControllerOpen(0);
}
if (!controller) {
joystick = SDL_JoystickOpen(0);
}
}
uint32_t flags = 0;
if (fullscreen) {
flags |= SDL_WINDOW_FULLSCREEN_DESKTOP;
} else {
flags |= SDL_WINDOW_RESIZABLE;
}
int windowW = Video::GAMESCREEN_W*3;
int windowH = Video::GAMESCREEN_H*3;
window = SDL_CreateWindow(g_caption, SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, windowW, windowH, flags);
renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED);
SDL_RenderSetLogicalSize(renderer, windowW, windowH);
texture = SDL_CreateTexture(renderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STREAMING, Video::GAMESCREEN_W, Video::GAMESCREEN_H);
SDL_AudioSpec desired, spec;
memset(&desired, 0, sizeof(desired));
memset(&spec, 0, sizeof(spec));
uint16_t samplesPerFrame = g->getOutputSampleRate()/g->getFrameRate();
uint16_t samples = samplesPerFrame*2;
desired.freq = g->getOutputSampleRate();
desired.format = AUDIO_S16SYS;
desired.channels = 1;
desired.samples = samples;
auto dev = SDL_OpenAudioDevice(nullptr, 0, &desired, &spec, 0);
SDL_PauseAudioDevice(dev, 0);
while(!g->_pi.quit) {
uint32_t start = SDL_GetTicks();
g->tick();
SDL_UpdateTexture(texture, nullptr, g->getFrameBuffer(), Video::GAMESCREEN_W * sizeof(uint32_t));
SDL_RenderClear(renderer);
SDL_RenderCopy(renderer, texture, nullptr, nullptr);
SDL_RenderPresent(renderer);
SDL_Event ev;
while (SDL_PollEvent(&ev)) {
processEvent(ev, g->_pi, joystick, controller);
if (g->_pi.quit) {
break;
}
}
int qa = SDL_GetQueuedAudioSize(dev);
if (qa < samples) {
int16_t buf[2048];
memset(buf, 0, 2048*sizeof(int16_t));
g->processFragment(buf, samples-qa);
SDL_QueueAudio(dev, buf, (samples-qa)*sizeof(int16_t));
}
uint32_t delta = SDL_GetTicks() - start;
int sleep = MS_PER_FRAME - delta;
if (sleep > 0) {
SDL_Delay(static_cast<Uint32>(sleep));
}
}
delete g;
return 0;
}
|
cc616c4ce1d52e4e508c1632d63783889b7ab33d | 92a029463f3a5e07f433086cc402d08c3d83ba67 | /sltl/src/syntax/list.h | 136fe09a8ed624690d5b85ea0dacabbdbb555b38 | [
"MIT"
] | permissive | cheneryc/sltl | 76447956a1c15eaddd939cc959a3c2dd41e3e1f8 | f7afe936cc218332b077b0ec14cb4c69a51af908 | refs/heads/master | 2021-03-22T05:08:33.351109 | 2019-02-17T22:33:26 | 2019-02-17T22:33:26 | 24,823,949 | 0 | 0 | MIT | 2019-02-17T22:33:27 | 2014-10-05T19:21:00 | C++ | UTF-8 | C++ | false | false | 996 | h | list.h | #pragma once
#include "action.h"
#include <deque>
namespace sltl
{
namespace syntax
{
template<typename T, typename N>
class list : public N
{
static_assert(std::is_base_of<node, T>::value, "sltl::syntax::list: template parameter T must derive from sltl::syntax::node");
static_assert(std::is_base_of<node, N>::value, "sltl::syntax::list: template parameter N must derive from sltl::syntax::node");
public:
void add(typename T::ptr&& item)
{
_list_items.push_back(std::move(item));
}
typename std::deque<typename T::ptr>::const_iterator begin() const
{
return _list_items.begin();
}
typename std::deque<typename T::ptr>::const_iterator end() const
{
return _list_items.end();
}
size_t size() const
{
return _list_items.size();
}
protected:
list() : N(), _list_items() {}
list(list&& l) : N(), _list_items(std::move(l._list_items)) {}
std::deque<typename T::ptr> _list_items;
};
}
}
|
794314200957ff3647dd7cf41e602c84308f403e | b858a7c15a869924559edd31f0dc2473324a86f8 | /AlgoParcourCocosModule/AlgoParcour/Classes/algoParcours/PreGraph.h | 419c84231c0fba2b037f86782859850682f8bb70 | [] | no_license | Rileyi/GlobalLearning | 2e5dfebbd4975a4455d7d82086e7b90dc387ef7a | 8f1e29c39aacd2a698784493215079cdf6ba7393 | refs/heads/master | 2021-05-03T20:13:36.504539 | 2017-02-03T07:59:23 | 2017-02-03T07:59:23 | 47,284,883 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 471 | h | PreGraph.h | #ifndef PREGRAPH_H
#define PREGRAPH_H
#include "Fork.h"
#include "Junction.h"
class PreGraph
{
public:
PreGraph(std::map<const Module*, int>& modules);
bool add(std::map<const Module*, int>*& modules);
ModuleGE* getContenu(){return m_contenu;};
PreGraph(const PreGraph& other);
~PreGraph();
PreGraph& operator=(const PreGraph& other);
protected:
private:
ModuleGE* m_contenu;
};
#endif // PREGRAPH_H
|
d242c6408b4837b90184e882143a42dde9887986 | 633c1591528313f5c8c4ea88f08731cd4660c077 | /test_circle_include/B.h | 9492c39d7de9914042193e75c75d1d5872ee3181 | [] | no_license | luowei0603/C-project | c53c7bb5072b1cbbd06487a3970d2f97212f304f | 25502600cea3cbf9a22bf12c51a8d9560a558adc | refs/heads/master | 2023-08-22T15:13:46.183065 | 2023-08-15T12:16:48 | 2023-08-15T12:16:48 | 228,181,389 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 79 | h | B.h |
class A;
class B{
public:
B(){}
~B(){}
void print(A *a);
}; |
c465d27bfcb79d38df3c3232962b7ed5a00c6ae5 | 2f470c281197ba7dda772cd3db50ec59b0ea9a4d | /src/Graphics/ImageButton.cpp | fec24cfc1de0751755c5a37aa0b44d2e49316705 | [] | no_license | Soszu/HeroOfAndaria | 7e327000d06e1f987f1e3cb2f8d532ee44117291 | 869a3fcbd8d47ed3402130b3255fe57d08ab0ba5 | refs/heads/master | 2020-05-17T02:00:32.298245 | 2014-06-03T13:39:58 | 2014-06-03T13:39:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,573 | cpp | ImageButton.cpp | #include "Graphics/ImageButton.h"
#include "System/DataManager.h"
#include "System/Paths.h"
/* --------------- ImageButton class -------------------------- */
ImageButton::ImageButton(QString normalPath, QString darkPath, QString text, QWidget *parent) :
QPushButton(text, parent),
fontPointSize_(DEFAULT_FONT_SIZE)
{
loadImages(normalPath, darkPath);
setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
}
ImageButton::ImageButton(ImageButtonType type, QString text, QWidget *parent) :
QPushButton(text, parent),
fontPointSize_(DEFAULT_FONT_SIZE)
{
switch (type) {
case MENU_BUTTON:
loadImages(Data::path(Data::ImagePath::MenuButtonsNormal),
Data::path(Data::ImagePath::MenuButtonsDark));
break;
case SMALL_MENU_BUTTON:
loadImages(Data::path(Data::ImagePath::SmallMenuButtonNormal),
Data::path(Data::ImagePath::SmallMenuButtonDark));
break;
case NEXT_ARROW_BUTTON:
loadImages(Data::path(Data::ImagePath::NextButtonNormal),
Data::path(Data::ImagePath::NextButtonDark));
break;
case PREV_ARROW_BUTTON:
loadImages(Data::path(Data::ImagePath::PrevButtonNormal),
Data::path(Data::ImagePath::PrevButtonDark));
break;
case UP_MENU_BUTTON:
loadImages(Data::path(Data::ImagePath::UpButtonNormal),
Data::path(Data::ImagePath::UpButtonDark));
break;
case DOWN_MENU_BUTTON:
loadImages(Data::path(Data::ImagePath::DownButtonNormal),
Data::path(Data::ImagePath::DownButtonDark));
break;
}
setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
}
void ImageButton::loadImages(const QString normalPath, const QString darkPath)
{
normalImage_ = DataManager::pixmap(normalPath);
darkImage_ = DataManager::pixmap(darkPath);
}
void ImageButton::setFontPointSize(int value)
{
fontPointSize_ = value;
}
QSize ImageButton::sizeHint() const
{
return QSize(normalImage_->width(), normalImage_->height());
}
void ImageButton::paintEvent(QPaintEvent *)
{
QPainter painter(this);
if (isDown() || !isEnabled())
painter.drawPixmap(rect(), *darkImage_);
else
painter.drawPixmap(rect(), *normalImage_);
QFont font = QApplication::font();
font.setPointSize(fontPointSize_);
if (hasFocus())
font.setBold(true);
QPen pen(Qt::black);
painter.setPen(pen);
painter.setFont(font);
painter.drawText(rect(), Qt::AlignCenter, text());
}
QPixmap * ImageButton::normalImage()
{
return this->normalImage_;
}
QPixmap * ImageButton::darkImage()
{
return this->darkImage_;
}
int ImageButton::fontPointSize()
{
return this->fontPointSize_;
}
|
bba089f9f16060f5efb0ed55e0fb7ceb81e4ae1e | ffb104a2bb9b3861440467ca9d534e132a3c7d9a | /AtCoder/AGC/034/B/B.cpp | 31a340b3f1f41c3ae469ae063c171a9834c2cf58 | [] | no_license | closekn/procon | 6ce0a38b748a344f6ff1e0a38df626b65462bb2d | 841d91ae06ad86032b87dd6faa1ddc5a2e3dedd7 | refs/heads/master | 2023-05-27T13:47:13.404129 | 2021-06-06T13:52:50 | 2021-06-06T13:52:50 | 191,014,377 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 575 | cpp | B.cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
string s;
cin >> s;
int n = s.length();
if ( n < 3 ) { cout << 0 << endl; return 0; }
size_t pos = 0;
while ( (pos = s.find("BC", pos)) != std::string::npos ) {
s.replace(pos, 2, "D");
pos += 1;
}
int a = 0, count = 0;
for ( int i = 0; i < n; i++ ) {
switch ( s[i] )
{
case 'A':
a++;
break;
case 'D':
count += a;
break;
default:
a = 0;
break;
}
}
cout << count << endl;
return 0;
}
|
89be200dbff8792029d78abaa9e1f35bbcfb90d1 | 0a2b6479dfa2bebe678877fa5e189fd997a25ba2 | /Seminararbeit/include/engine/input.hpp | faf6ea47b8db10fd69144410fdbf40b2b8412c16 | [] | no_license | NiklasMinckwitz/Seminararbeit | 1e30ff49711fd4e09ca1e1c8cea12a79be5ed8cc | b4e5b4ce4f437375706d856860bfc2811a597d12 | refs/heads/master | 2021-01-21T15:12:37.389008 | 2017-06-16T11:23:19 | 2017-06-16T11:23:19 | 89,614,345 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 987 | hpp | input.hpp | #ifndef INPUT_HPP
#define INPUT_HPP
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <glm/glm.hpp>
#include <map>
namespace input {
struct button_state {
GLint key;
GLboolean hit;
GLboolean down;
GLboolean up;
};
void key_callback(GLFWwindow* window, int key, int scancode, int action, int mode);
void mouse_button_callback(GLFWwindow* window, int button, int action, int mode);
void mouse_position_callback(GLFWwindow* window, double xpos, double ypos);
void set_mouse_sensitivity(GLfloat sensitivity);
GLfloat get_mouse_sensitivity();
glm::vec2 get_mouse_position();
glm::vec2 get_mouse_offset();
void register_button(GLint button, GLint key);
void unregister_button(GLint button);
void flush_buttons();
void flush_mouse();
GLboolean mouse_hit(GLint button);
GLboolean mouse_down(GLint button);
GLboolean mouse_up(GLint button);
GLboolean button_hit(GLint button);
GLboolean button_down(GLint button);
GLboolean button_up(GLint button);
}
#endif |
5580f8b88e980d3fa8b476234e7159228bee8faa | 97163be23ec46d35737c9e41aa34107479d1e323 | /Tree/maximumPathSum.cpp | eee98558e16f2a25a236105c465467fa3401a2a1 | [] | no_license | Kamrul-Hasan-1971/Code | 54612faea047f523306158bd936850a2c599ef3e | 7ca4da7b1e23a3c3fef06f598f11ba83054373ae | refs/heads/master | 2023-09-02T09:06:05.462951 | 2021-11-05T06:53:18 | 2021-11-05T06:53:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 578 | cpp | maximumPathSum.cpp | struct Node{
int data;
Node *left, *right;
};
#include <climits>
int maxSum;
int func(Node *root){
if(root == NULL) return 0;
int leftSum = func(root->left);
int rightSum = func(root->right);
int sum = root->data;
if(leftSum > 0) sum += leftSum;
if(rightSum > 0) sum += rightSum;
if(sum > maxSum) maxSum = sum;
if(leftSum > 0 && leftSum > rightSum) return root->data+leftSum;
if(rightSum > 0 && rightSum > leftSum) return root->data+rightSum;
return root->data;
}
int maxPathSum(struct Node *root)
{
maxSum = INT_MIN;
func(root);
return maxSum;
}
|
a63b75cd43f183721cf04fadc4bd4ea1ba3316ad | 3bece67e5f7af1f558d0457a61669c99296ac040 | /submission/Smallest_String_With_Swaps.cpp | b216b1d81050fabe24b78cc95542ea93a985b360 | [] | no_license | DerrickPikachu/Leetcode | 2566faa872021c3d3ba97f8f3d871b5d6354221c | 764011a746a78b548613aabc34462213e50f97c6 | refs/heads/master | 2022-11-25T10:14:16.803921 | 2020-08-03T03:49:12 | 2020-08-03T03:49:12 | 278,987,120 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,025 | cpp | Smallest_String_With_Swaps.cpp | class Solution {
private:
int find(vector<int>& unionFind, int i) {
if (unionFind[i] != -1)
return unionFind[i] = find(unionFind, unionFind[i]);
return i;
}
public:
string smallestStringWithSwaps(string s, vector<vector<int>>& pairs) {
vector<int> unionFind(s.size(), -1);
vector<vector<int>> member(s.size());
for (auto& pair : pairs) {
int root1 = find(unionFind, pair[0]), root2 = find(unionFind, pair[1]);
if (root1 != root2)
unionFind[root2] = root1;
}
for (int i = 0; i < unionFind.size(); i++)
member[find(unionFind, i)].push_back(i);
for (int i = 0; i < member.size(); i++) {
string ss;
for (int& mem : member[i])
ss += s[mem];
sort(ss.begin(), ss.end());
for (int j = 0; j < member[i].size(); j++)
s[member[i][j]] = ss[j];
}
return s;
}
};
|
5091bfb84b3c077624b16b4275e5d514c1641222 | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir7942/dir8062/dir8063/dir12766/dir12767/dir19789/dir20455/file20550.cpp | 3c7cf95e827a0ffc29d3773004ab0976d63df8e6 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | file20550.cpp | #ifndef file20550
#error "macro file20550 must be defined"
#endif
static const char* file20550String = "file20550"; |
cb152b150c831e76e45cb1b58aa5cdd8b591fb2e | 52a9235bc0059499372703b98efa20f98168e561 | /Mohamed/connection.cpp | 55b2cdc1a73927b58abd52eea4e4db6b1a56e588 | [] | no_license | RamyKlouz/Wedding_planner_2A1 | 19236d5b299bc3de65e228bf07e4b4eed184f593 | a024827700668aae14433cba0321b3fceba1ec90 | refs/heads/main | 2023-02-15T15:10:54.078377 | 2021-01-07T02:17:21 | 2021-01-07T02:17:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 313 | cpp | connection.cpp | #include "connection.h"
#include <QString>
connection::connection()
{
}
bool connection::createconnection()
{bool test=false;
QSqlDatabase db = QSqlDatabase::addDatabase("QODBC");
db.setDatabaseName("alpha");
db.setUserName("mohamed");
db.setPassword("mohamed");
if (db.open())
test=true;
return test;
}
|
edfc22875bec7592353ba9b5c471dfc1c2e3b8a3 | 790673dc29c97b58132488e7d1502b73a520ee04 | /RBTree.hpp | 7e668aa02b4e58692250a4dd8a47cd935f19ddb7 | [] | no_license | KanHarI/Spellchecker | 00c553b28a7e931b32f6f2a88c167f13c0132476 | b1ab81006941a35820027c380c1d6541711554b5 | refs/heads/master | 2020-06-01T14:08:01.709767 | 2019-07-10T20:10:20 | 2019-07-10T20:10:20 | 190,808,375 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,084 | hpp | RBTree.hpp |
#ifndef RBTREE_HPP
#define RBTREE_HPP
inline direction flip(direction orig) {
if (orig == direction::LEFT) {
return direction::RIGHT;
}
return direction::LEFT;
}
template <class T>
std::shared_ptr<RBTree<T>> RBTree<T>::createTree(comp_func_t comp_func) {
auto tree = std::make_shared<RBTree<T>>(comp_func, ctor_protector_t());
tree->m_root = RBNode::createNode(tree);
return tree;
}
template <class T>
RBTree<T>::RBNode::RBNode(std::weak_ptr<RBTree<T>> tree)
: m_color(color::BLACK)
, m_tree(tree) {}
template <class T>
RBTree<T>::RBNode::~RBNode() {
// Delete all children by shared_ptr magic
}
template <class T>
std::shared_ptr<typename RBTree<T>::RBNode> RBTree<T>::RBNode::createNode(std::weak_ptr<RBTree<T>> tree) {
auto node = std::make_shared<RBNode>(tree);
node->m_self = node;
return node;
}
template <class T>
std::shared_ptr<typename RBTree<T>::RBNode> RBTree<T>::RBNode::createChild() {
auto node = createNode(m_tree);
node->m_p = m_self;
return node;
}
template <class T>
bool RBTree<T>::RBNode::isNil() const {
return !m_key;
}
template <class T>
void RBTree<T>::RBNode::insert(T key) {
if (!m_key) {
m_key = std::make_unique<T>(key);
m_l = createChild();
m_r = createChild();
redden();
return;
}
int comp_res = m_tree.lock()->m_comp_func(key, *m_key);
if (comp_res == 0) {
throw KeyAlreadyExists();
}
if (comp_res > 0) {
m_r->insert(key);
return;
}
m_l->insert(key);
}
template <class T>
std::shared_ptr<typename RBTree<T>::RBNode> RBTree<T>::RBNode::kill() {
std::shared_ptr<RBNode> retval = succ();
auto killed_node = m_self.lock();
if (m_r->m_key && m_l->m_key) {
killed_node = retval; // retval is the successor
retval = m_self.lock();
m_key = std::move(killed_node->m_key);
}
auto replacing_node = killed_node->m_l->m_key ? killed_node->m_l : killed_node->m_r;
auto killed_node_parent = killed_node->m_p.lock();
if (!killed_node_parent) {
// killed node is root
m_tree.lock()->m_root = replacing_node;
}
else {
auto killed_node_dir = killed_node->getDirectionFromParent();
if (killed_node_dir == direction::LEFT) {
killed_node_parent->m_l = replacing_node;
}
else {
killed_node_parent->m_r = replacing_node;
}
}
replacing_node->m_p = killed_node_parent;
if (killed_node->m_color == color::BLACK) {
replacing_node->blacken();
}
return retval;
}
template <class T>
std::shared_ptr<typename RBTree<T>::RBNode> RBTree<T>::RBNode::succ() const {
return scan(direction::RIGHT);
}
template <class T>
std::shared_ptr<typename RBTree<T>::RBNode> RBTree<T>::RBNode::pred() const {
return scan(direction::LEFT);
}
template <class T>
std::shared_ptr<typename RBTree<T>::RBNode> RBTree<T>::RBNode::scan(direction dir) const {
auto ptr = getChild(dir);
if (ptr && ptr->m_key) {
// There is a child in the scanned direction, therefore successor is in subtree
while(ptr->m_key) {
// progress as much as possible in opposite direction in subtree
ptr = ptr->getChild(flip(dir));
}
// Now we reached a leaf without a value, returning direct parent
return ptr->m_p.lock();
}
ptr = m_self.lock();
while (ptr->m_p.lock() && ptr->getDirectionFromParent() == dir) {
ptr = ptr->m_p.lock();
}
if (!ptr) {
return ptr;
}
// return either the direct parent, or if this is the last node - a nullptr
return ptr->m_p.lock();
}
template <class T>
std::shared_ptr<typename RBTree<T>::RBNode> RBTree<T>::RBNode::minimum() const {
if (!m_l || !m_l->m_key) {
return m_self.lock();
}
return m_l->minimum();
}
template <class T>
std::shared_ptr<typename RBTree<T>::RBNode> RBTree<T>::RBNode::getChild(direction dir) const {
if (dir == direction::LEFT) {
return m_l;
}
return m_r;
}
template <class T>
direction RBTree<T>::RBNode::getDirectionFromParent() const {
auto p = m_p.lock();
if (!p) {
throw std::runtime_error("Root node is looking for parent!");
}
if (p->m_l == m_self.lock()) {
return direction::LEFT;
}
if (p->m_r == m_self.lock()) {
return direction::RIGHT;
}
throw std::runtime_error("Parent does not know this node!");
}
template <class T>
void RBTree<T>::RBNode::redden() {
// Implementing as recursion is easier in this case
// as we get free updates of `this`
auto p = m_p.lock();
if (!p) {
// root, update red height by one
m_color = color::BLACK;
return;
}
m_color = color::RED;
if (p->m_color == color::BLACK) {
// All ok, can finish recursion
return;
}
auto grandpa = p->m_p.lock();
auto parent_dir = p->getDirectionFromParent();
auto uncle = grandpa->getChild(flip(parent_dir));
// Case 1
if (uncle->m_color == color::RED) {
// Red uncle, color father and uncle black and pass reddening upwards
p->m_color = color::BLACK;
uncle->m_color = color::BLACK;
grandpa->redden();
return;
}
auto dir = getDirectionFromParent();
// Case 2
if (dir != parent_dir) {
// Rotate into case 3
p->rotate(parent_dir);
p->redden();
return;
}
// Case 3
p->m_color = color::BLACK;
grandpa->m_color = color::RED;
grandpa->rotate(flip(parent_dir));
}
template <class T>
void RBTree<T>::RBNode::blacken() {
// More natural to implement using recursion
auto p = m_p.lock();
if (!p) {
// Node is root, decrease black height by one
return;
}
if (m_color == color::RED) {
// Blackening a red node is easy
m_color = color::BLACK;
return;
}
auto dir = getDirectionFromParent();
auto brother = p->getChild(flip(dir));
// Case 1
if (brother->m_color == color::RED) {
brother->m_color = color::BLACK;
p->m_color = color::RED;
p->rotate(dir);
// Move to black brother case
blacken();
return;
}
// Black brother
// Case 2
if (brother->m_l->m_color == color::BLACK && brother->m_r->m_color == color::BLACK) {
// Both brother's kids are black
// color brother red, and move extra black upwards
brother->m_color = color::RED;
p->blacken();
return;
}
// At least one kid of brother is red
// Case 3
if (brother->getChild(flip(dir))->m_color == color::BLACK) {
// Color same sided cousin in black and brother in red
// then rotate brother into opposing side cousin (red -> case 4)
brother->getChild(dir)->m_color = color::BLACK;
brother->m_color = color::RED;
brother->rotate(flip(dir));
blacken();
return;
}
// The remaining case is red opposite sided cousin
// Case 4
// Switch colors between (black) brother and parent, rotating parent and
// adding a black node on both sides of new parent, rebalancing the tree
brother->m_color = p->m_color;
p->m_color = color::BLACK;
brother->getChild(flip(dir))->m_color = color::BLACK;
p->rotate(dir);
}
template <class T>
void RBTree<T>::RBNode::rotate(direction dir) {
auto new_parent = getChild(flip(dir));
if (!new_parent || !new_parent->m_key) {
throw std::runtime_error("Attempting to rotate a NIL into node!");
}
auto old_parent = m_p.lock();
auto self = m_self.lock();
direction my_dir = direction::LEFT;
if (old_parent) {
my_dir = getDirectionFromParent();
}
m_p = new_parent;
new_parent->m_p = old_parent;
if (dir == direction::LEFT) {
m_r = new_parent->m_l;
m_r->m_p = self;
new_parent->m_l = self;
}
else {
m_l = new_parent->m_r;
m_l->m_p = self;
new_parent->m_r = self;
}
if (old_parent) {
if (my_dir == direction::LEFT) {
old_parent->m_l = new_parent;
}
else {
old_parent->m_r = new_parent;
}
}
else {
m_tree.lock()->m_root = new_parent;
}
}
template <class T>
const T& RBTree<T>::RBNode::get() const {
return *m_key;
}
template <class T>
RBTree<T>::RBTree(comp_func_t comp_func, ctor_protector_t ctor_protector)
: m_comp_func(comp_func) {
// prevent warnings while not allow user to call Ctor
ctor_protector = ctor_protector;
}
template <class T>
RBTree<T>::~RBTree() {}
template <class T>
void RBTree<T>::insert(T key) {
m_root->insert(key);
}
template <class T>
void RBTree<T>::remove(T key) {
auto node = m_root->find(key);
if (node->isNil()) {
throw KeyNotFound();
}
node->kill();
}
template <class T>
std::shared_ptr<typename RBTree<T>::RBNode> RBTree<T>::minimum() {
return m_root->minimum();
}
#endif
|
6619e9ae43fbe76a64c2c4902ed22407a496c600 | 40720a1b5dbe9994b9b3d8f27795e4a996b0f93c | /sketch_1/sketch_1.ino | 828d1f159cd4d6ec67e0eb022898cbc83fd92451 | [] | no_license | fadlimuharram/belajar-arduino | 7b4ee88876be46668282874cfd2653f911fa50ca | 90ddecd83a3eda07cec0b26b54477b30e498bd9a | refs/heads/master | 2021-05-12T11:22:32.173685 | 2018-01-13T23:17:29 | 2018-01-13T23:17:29 | 117,385,939 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 310 | ino | sketch_1.ino | int led = 9;
void setup() {
// put your setup code here, to run once:
pinMode(led, OUTPUT);
}
void loop() {
// put your main code here, to run repeate
digitalWrite(led, HIGH);//pada port 13 , high adalah menyala
delay(100); //selama 1 detik
digitalWrite(led, LOW);//low adalah mati
delay(100);
}
|
db239a1a380b12e5768fd790d1f94f61bdc38a4e | 003305cdacdb538de90cea987b5d85f12dbd73e0 | /Algorithm/src/ResultProcess/DM6467ResultSender.cpp | 94ea9249905615405a6a1044677d63dbb10952d2 | [] | no_license | github188/EC700IR | a1a66fc88b1256bb60ddb0ec0d33cd3386cf6a63 | d7976578c627d9eaa04078fbd7a48d4a211ae3a0 | refs/heads/master | 2021-01-17T14:01:31.259583 | 2016-05-13T02:28:04 | 2016-05-13T02:28:04 | 66,121,249 | 2 | 0 | null | 2016-08-20T01:02:58 | 2016-08-20T01:02:58 | null | GB18030 | C++ | false | false | 23,141 | cpp | DM6467ResultSender.cpp | // 该文件编码格式必须为WINDOWS-936格式
#include "DM6467ResultSender.h"
#include "tinyxml.h"
CDM6467ResultSender::CDM6467ResultSender()
{
m_pRecordLinkCtrl = NULL;
m_pImageLinkCtrl = NULL;
m_pSafeSaver = NULL;
m_iCarID = 0;
m_fSendRecord = false;
m_timeLastRecord.wYear = 1970;
m_timeLastRecord.wMonth = 1;
m_timeLastRecord.wDay = 1;
m_timeLastRecord.wHour = 0;
m_fCarIdSet = FALSE;
}
CDM6467ResultSender::~CDM6467ResultSender()
{
}
void CDM6467ResultSender::EnableRecordSend()
{
m_fSendRecord = true;
}
void CDM6467ResultSender::DisableRecordSend()
{
#ifdef _HVCAM_PLATFORM_RTM_
m_fSendRecord = false;
#else
// 在非RTM版本下,即使加密认证失败也照常发送识别结果。
m_fSendRecord = true;
#endif
}
bool CDM6467ResultSender::IsSameHour(REAL_TIME_STRUCT* prtLeft, REAL_TIME_STRUCT* prtRight)
{
if ( prtLeft == NULL || prtRight == NULL )
{
return false;
}
if ( prtLeft->wYear == prtRight->wYear
&& prtLeft->wMonth == prtRight->wMonth
&& prtLeft->wDay == prtRight->wDay
&& prtLeft->wHour == prtRight->wHour )
{
return true;
}
return false;
}
HRESULT CDM6467ResultSender::PutResult(
LPCSTR szResultInfo,
LPVOID lpcData
)
{
if (!lpcData || !m_fSendRecord)
{
return E_FAIL;
}
CARLEFT_INFO_STRUCT *lpCarLeftInfo = (CARLEFT_INFO_STRUCT*)lpcData;
static char szAppendInfo[4096] = {0};
static char szValue[32] = {0};
TiXmlDocument xmlDoc;
xmlDoc.Parse(szResultInfo);
if (xmlDoc.Error())
{
HV_Trace(5, "%s\n", xmlDoc.ErrorDesc());
return E_FAIL;
}
TiXmlElement* pRootElement = xmlDoc.RootElement();
TiXmlElement* pResultSet = pRootElement->FirstChildElement("ResultSet");
TiXmlElement* pResult = pResultSet->FirstChildElement("Result");
TiXmlElement* pPlateName = pResult->FirstChildElement("PlateName");
TiXmlElement* pTemp;
TiXmlElement* pValue;
DWORD32 dwCarArriveTime = GetSystemTick();
DWORD32 dwTimeMsLow, dwTimeMsHigh;
ConvertTickToSystemTime(
dwCarArriveTime,
dwTimeMsLow,
dwTimeMsHigh
);
// 计算CarID
if (!m_fCarIdSet && m_pSafeSaver)
{
int iCurIndex = m_pSafeSaver->GetCurRecordIndex();
if (iCurIndex != -1)
{
m_fCarIdSet = TRUE;
m_iCarID = iCurIndex;
}
}
REAL_TIME_STRUCT realtime;
ConvertMsToTime(dwTimeMsLow, dwTimeMsHigh, &realtime);
if (!IsSameHour(&realtime, &m_timeLastRecord))
{
m_iCarID = 0;
}
else
{
++m_iCarID;
}
m_timeLastRecord = realtime;
// 车辆ID
pValue = new TiXmlElement("CarID");
if (pValue)
{
sprintf(szValue, "%u", m_iCarID);
pValue->SetAttribute("value", szValue);
pResult->LinkEndChild(pValue);
}
// 低32位识别结果时间
pValue = new TiXmlElement("TimeLow");
if (pValue)
{
sprintf(szValue, "%u", dwTimeMsLow);
pValue->SetAttribute("value", szValue);
pResult->LinkEndChild(pValue);
}
// 高32位识别结果时间
pValue = new TiXmlElement("TimeHigh");
if (pValue)
{
sprintf(szValue, "%u", dwTimeMsHigh);
pValue->SetAttribute("value", szValue);
pResult->LinkEndChild(pValue);
}
if (m_pResultSenderParam->cProcRule.fLeach
|| m_pResultSenderParam->cProcRule.fReplace)
{
//从XML中解析出车牌字符串和附加信息
const char* pszPlateName = pPlateName->GetText();
const char* pszChnName = NULL;
const char* pszValue = NULL;
szAppendInfo[0] = 0;
pTemp = pResult->FirstChildElement();
while (pTemp)
{
pszChnName = pTemp->Attribute("chnname");
pszValue = pTemp->Attribute("value");
if (pszChnName && pszValue)
{
if (strstr(pszChnName, "事件检测") == NULL)
{
strcat(szAppendInfo, pszChnName);
strcat(szAppendInfo, ":");
strcat(szAppendInfo, pszValue);
strcat(szAppendInfo, "\n");
}
else
{
strcat(szAppendInfo, pszValue);
strcat(szAppendInfo, "\n");
}
}
pTemp = pTemp->NextSiblingElement();
}
RESULT_INFO resultInfo;
resultInfo.strPlate = pszPlateName;
resultInfo.strOther = szAppendInfo;
resultInfo.strApplied = "";
HV_Trace(5, "%s\n", szAppendInfo);
if (m_resultFilter.FilterProcess(&resultInfo))
{
if (resultInfo.fLeach)
{
return S_FALSE; //不发送要过滤的结果
}
pPlateName->FirstChild()->SetValue(resultInfo.strPlate.GetBuffer());
if (!resultInfo.strApplied.IsEmpty()
&& m_pResultSenderParam->fOutputFilterInfo)
{
pValue = new TiXmlElement("ResultProcess");
if (pValue)
{
pValue->SetAttribute("value", resultInfo.strApplied.GetBuffer());
pValue->SetAttribute("chnname", "后处理信息");
pResult->LinkEndChild(pValue);
}
}
}
}
//重新生成XML字符串
TiXmlPrinter cTxPr;
xmlDoc.Accept(&cTxPr);
if (xmlDoc.Error())
{
HV_Trace(5, "%s\n", xmlDoc.ErrorDesc());
return E_FAIL;
}
char * szPlateInfo = new char[MAX_PLATE_STRING_SIZE];
memset(szPlateInfo, 0, MAX_PLATE_STRING_SIZE);
strncpy(szPlateInfo, cTxPr.CStr(), MAX_PLATE_STRING_SIZE);
//开始网络发送,修改成指定用4兆共享内存空间作为网络发送,2011-09-23
DWORD32 dwDataSize = 1024 * 1024 * 4;
HV_Trace(5, "PutResult size = %d\n", dwDataSize);
if (dwDataSize > 0)
{
// zhaopy
IReferenceMemory* pRefMemory = NULL;
int iTimes = 0;
while ( iTimes++ < 10 && S_OK != CreateReferenceMemory(&pRefMemory, dwDataSize) )
{
HV_Trace(5, "CreateReferenceMemory failed, retry time=%d...\n", iTimes);
HV_Sleep(200);
}
if (!pRefMemory)
{
HV_Trace(5, "pRefMemory is NULL..\n");
delete []szPlateInfo;
szPlateInfo = NULL;
return E_OUTOFMEMORY;
}
PBYTE8 pbRecord = NULL;
pRefMemory->GetData(&pbRecord);
if (!pbRecord)
{
delete []szPlateInfo;
szPlateInfo = NULL;
return S_FALSE;
}
PBYTE8 buf = pbRecord;
IReferenceComponentImage *prgImage[5] =
{
lpCarLeftInfo->cCoreResult.cResultImg.pimgBestSnapShot,
lpCarLeftInfo->cCoreResult.cResultImg.pimgLastSnapShot,
lpCarLeftInfo->cCoreResult.cResultImg.pimgBeginCapture,
lpCarLeftInfo->cCoreResult.cResultImg.pimgBestCapture,
lpCarLeftInfo->cCoreResult.cResultImg.pimgLastCapture
};
PCILINK_IMAGE_TYPE rgcImageType[5] =
{
PCILINK_IMAGE_BEST_SNAPSHOT,
PCILINK_IMAGE_LAST_SNAPSHOT,
PCILINK_IMAGE_BEGIN_CAPTURE,
PCILINK_IMAGE_BEST_CAPTURE,
PCILINK_IMAGE_LAST_CAPTURE
};
if (m_pResultSenderParam->iBestSnapshotOutput)
{
buf = CopyBigImageToBuffer(
buf,
prgImage[0],
rgcImageType[0],
m_iCarID,
lpCarLeftInfo->cCoreResult.rcBestPlatePos,
lpCarLeftInfo->cCoreResult.rcRedLightPos,
lpCarLeftInfo->cCoreResult.rcRedLightCount
);
}
if (m_pResultSenderParam->iLastSnapshotOutput)
{
buf = CopyBigImageToBuffer(
buf,
prgImage[1],
rgcImageType[1],
m_iCarID,
lpCarLeftInfo->cCoreResult.rcLastPlatePos,
lpCarLeftInfo->cCoreResult.rcRedLightPos,
lpCarLeftInfo->cCoreResult.rcRedLightCount
);
}
if (m_pResultSenderParam->iOutputCaptureImage
|| strstr(szPlateInfo, "违章:是") != NULL || strstr(szPlateInfo, "违章:否<") != NULL)
{
HV_RECT *rc[3] =
{
&lpCarLeftInfo->cCoreResult.rcFirstPos,
&lpCarLeftInfo->cCoreResult.rcSecondPos,
&lpCarLeftInfo->cCoreResult.rcThirdPos
};
for (int i = 2; i < 5; i++)
{
buf = CopyBigImageToBuffer(
buf,
prgImage[i],
rgcImageType[i],
m_iCarID,
*rc[i - 2],
lpCarLeftInfo->cCoreResult.rcRedLightPos,
lpCarLeftInfo->cCoreResult.rcRedLightCount
);
}
}
buf = CopySmallImageToBuffer(
buf,
lpCarLeftInfo->cCoreResult.cResultImg.pimgPlate,
dwTimeMsLow,
dwTimeMsHigh,
m_iCarID
);
buf = CopyBinImageToBuffer(
buf,
lpCarLeftInfo->cCoreResult.cResultImg.pimgPlateBin,
dwTimeMsLow,
dwTimeMsHigh,
m_iCarID
);
// 发送识别结果
SEND_RECORD recordInfo;
recordInfo.iCurCarId = m_iCarID;
recordInfo.dwRecordType = CAMERA_RECORD_NORMAL;
recordInfo.pbXML = (PBYTE8)szPlateInfo;
recordInfo.dwXMLSize = strlen(szPlateInfo) + 128;//预留点空间
recordInfo.pbRecord = pbRecord;
recordInfo.dwRecordSize = (DWORD32)(buf - pbRecord);
recordInfo.pRefMemory = pRefMemory;
HV_Trace(5, "send data size = %d\n", recordInfo.dwRecordSize);
if ( FAILED(m_pRecordLinkCtrl->SendRecord(&recordInfo, dwTimeMsLow, dwTimeMsHigh)))
{
HV_Trace(5, "<link> SendRecord failed!\n");
}
pRefMemory->Release();
}
if (szPlateInfo)
{
delete []szPlateInfo;
szPlateInfo = NULL;
}
return S_OK;
}
HRESULT CDM6467ResultSender::PutVideo(
DWORD32* pdwSendCount,
LPVOID lpFrameData,
int nRectCount/* = 0*/,
HV_RECT *pRect/* = NULL*/
)
{
IMG_FRAME *pFrame = (IMG_FRAME *)lpFrameData;
DWORD32 dwImgTime = pFrame->pRefImage->GetRefTime();
static DWORD32 dwLastSendTime = 0;
if (0 != dwImgTime)
{
if (dwImgTime - dwLastSendTime < (DWORD32)m_pResultSenderParam->iVideoDisplayTime)
{
return S_OK;
}
else
{
dwLastSendTime = dwImgTime;
}
}
//计算图片偏移量
DWORD32 dwImageOffset = 0;
//旋转标志
if (m_pResultSenderParam->iEddyType)
{
dwImageOffset += 8;
}
//红灯位置
if (nRectCount > 64)
{
nRectCount = 64;
}
if (nRectCount && m_pResultSenderParam->iDrawRect)
{
dwImageOffset += sizeof(int) + sizeof(int) + sizeof(HV_RECT)*nRectCount;
}
//图片信息
HV_COMPONENT_IMAGE img;
pFrame->pRefImage->GetImage(&img);
// zhaopy
static DWORD32 dwVideoImageSize = 1024 * 1024;
IReferenceMemory* pRefMemory = NULL;
if ( S_OK != CreateReferenceMemory(&pRefMemory, dwVideoImageSize) )
{
HV_Trace(5, "Put Video pRefMemory is NULL..\n");
return E_OUTOFMEMORY;
}
PBYTE8 pbJpegData = NULL;
pRefMemory->GetData(&pbJpegData);
PBYTE8 buf = pbJpegData;
//图片偏移信息
if (m_pResultSenderParam->iEddyType)
{
memcpy(buf, "EddyLeft", 8);
buf += 8;
}
if (nRectCount && m_pResultSenderParam->iDrawRect)
{
memcpy(buf, "rect", sizeof(int));
buf += sizeof(int);
memcpy(buf, &nRectCount, sizeof(int));
buf += sizeof(int);
for (int i = 0; i < (int)nRectCount; i++)
{
pRect[i].top *= 2;
pRect[i].bottom *= 2;
memcpy(buf, &pRect[i], sizeof(HV_RECT));
buf += sizeof(HV_RECT);
}
}
//图片数据
memcpy(buf, GetHvImageData(&img, 0), img.iWidth);
SEND_CAMERA_IMAGE imageInfo;
imageInfo.dwImageType = CAMERA_IMAGE_JPEG_SLAVE;
imageInfo.dwWidth = img.iHeight & 0x0000FFFF;
imageInfo.dwHeight = img.iHeight >> 16;
imageInfo.dwImageSize = dwImageOffset + img.iWidth;
imageInfo.dwImageOffset = dwImageOffset;
imageInfo.pbImage = pbJpegData;
// zhaopy
imageInfo.pRefMemory = pRefMemory;
// 发送图片
if ( m_pImageLinkCtrl != NULL )
{
if ( FAILED(m_pImageLinkCtrl->SendCameraImage(&imageInfo)))
{
HV_Trace(5, "<link>SendCameraImage failed!\n");
}
}
pRefMemory->Release();
return S_OK;
}
HRESULT CDM6467ResultSender::PutString(
WORD16 wVideoID,
WORD16 wStreamID,
DWORD32 dwTimeLow,
DWORD32 dwTimeHigh,
const char *pString
)
{
if ( NULL != m_pRecordLinkCtrl )
{
char szVideoID[8] = {0};
char szStreamID[8] = {0};
char szTimeLow[16] = {0};
char szTimeHigh[16] = {0};
sprintf(szVideoID, "%d", wVideoID);
sprintf(szStreamID, "%d", wStreamID);
sprintf(szTimeLow, "%u", dwTimeLow);
sprintf(szTimeHigh, "%u", dwTimeHigh);
/*
<?xml version="1.0" encoding="GB2312" standalone="yes" ?>
<HvStringInfo VideoID="xxx" StreamID="xxx" TimeLow="xxx" TimeHigh="xxx" />
*/
TiXmlDocument cStringInfoXmlDoc;
TiXmlDeclaration* pDecl = new TiXmlDeclaration("1.0", "GB2312", "yes");
TiXmlElement* pRootElement = new TiXmlElement("HvStringInfo");
pRootElement->SetAttribute("VideoID", szVideoID);
pRootElement->SetAttribute("StreamID", szStreamID);
pRootElement->SetAttribute("TimeLow", szTimeLow);
pRootElement->SetAttribute("TimeHigh", szTimeHigh);
cStringInfoXmlDoc.LinkEndChild(pDecl);
cStringInfoXmlDoc.LinkEndChild(pRootElement);
TiXmlPrinter cPrinter;
cStringInfoXmlDoc.Accept(&cPrinter);
IReferenceMemory* pRefMemory = NULL;
if ( S_OK != CreateReferenceMemory(&pRefMemory, strlen((char*)pString)+1) )
{
HV_Trace(5, "PutString pRefMemory is NULL..\n");
return E_OUTOFMEMORY;
}
PBYTE8 pbStringInfo = NULL;
pRefMemory->GetData(&pbStringInfo);
strcpy((char*)pbStringInfo, pString);
// 发送字符串(事件检测信息)
SEND_RECORD recordInfo;
recordInfo.dwRecordType = CAMERA_RECORD_STRING;
recordInfo.pbXML = (PBYTE8)cPrinter.CStr();
recordInfo.dwXMLSize = cPrinter.Size();
recordInfo.pbRecord = pbStringInfo;
recordInfo.dwRecordSize = strlen((char*)pbStringInfo)+1;
recordInfo.pRefMemory = pRefMemory;
DWORD32 dwTimeLow = 0;
DWORD32 dwTimeHigh = 0;
ConvertTickToSystemTime(GetSystemTick(), dwTimeLow, dwTimeHigh);
if ( FAILED(m_pRecordLinkCtrl->SendRecord(&recordInfo, dwTimeLow, dwTimeHigh)))
{
HV_Trace(5, "<link> SendRecord(HvStringInfo) failed!\n");
}
pRefMemory->Release();
}
return S_OK;
}
HRESULT CDM6467ResultSender::PutStatusString(const char * pString)
{
if (pString)
{
IReferenceMemory* pRefMemory = NULL;
if ( S_OK != CreateReferenceMemory(&pRefMemory, strlen((char*)pString)+1) )
{
HV_Trace(5, "PutString pRefMemory is NULL..\n");
return E_OUTOFMEMORY;
}
PBYTE8 pbStringInfo = NULL;
pRefMemory->GetData(&pbStringInfo);
strcpy((char*)pbStringInfo, pString);
// 发送字符串(事件检测信息)
SEND_RECORD recordInfo;
recordInfo.dwRecordType = CAMERA_RECORD_STATUS;
recordInfo.pbXML = (BYTE8 *)pString;
recordInfo.dwXMLSize = strlen(pString) + 1;
recordInfo.pbRecord = pbStringInfo;
recordInfo.dwRecordSize = strlen((char*)pbStringInfo)+1;
recordInfo.pRefMemory = pRefMemory;
DWORD32 dwTimeLow = 0;
DWORD32 dwTimeHigh = 0;
ConvertTickToSystemTime(GetSystemTick(), dwTimeLow, dwTimeHigh);
if ( FAILED(m_pRecordLinkCtrl->SendRecord(&recordInfo, dwTimeLow, dwTimeHigh)))
{
HV_Trace(5, "<link> SendRecord(HvStringInfo) failed!\n");
}
pRefMemory->Release();
return S_OK;
}
return E_FAIL;
}
int CDM6467ResultSender::CalcShareMemorySize(CARLEFT_INFO_STRUCT * carLeft, LPCSTR szResultInfo)
{
int size = 0;
//计算大图大小
IReferenceComponentImage *prgImage[5] =
{
carLeft->cCoreResult.cResultImg.pimgBestSnapShot,
carLeft->cCoreResult.cResultImg.pimgLastSnapShot,
carLeft->cCoreResult.cResultImg.pimgBeginCapture,
carLeft->cCoreResult.cResultImg.pimgBestCapture,
carLeft->cCoreResult.cResultImg.pimgLastCapture
};
HV_COMPONENT_IMAGE imgTemp;
int nHeaderSize = sizeof(int) + sizeof(PCI_IMAGE_INFO) + sizeof(int);
for (int i = 0; i < 5; i++)
{
if (prgImage[i] && (i < 2 || i >= 2 && (m_pResultSenderParam->iOutputCaptureImage || strstr(szResultInfo, "违章:是") != NULL || strstr(szResultInfo, "违章:否<") != NULL)))
{
prgImage[i]->GetImage(&imgTemp);
//一张图的数据格式:头大小+头数据+图像大小+图像格式
size += nHeaderSize + imgTemp.iWidth;
}
}
//计算小图大小
if (carLeft->cCoreResult.cResultImg.pimgPlate)
{
carLeft->cCoreResult.cResultImg.pimgPlate->GetImage(&imgTemp);
size += nHeaderSize + imgTemp.iWidth * imgTemp.iHeight * 2;
}
//计算二值图大小
if (carLeft->cCoreResult.cResultImg.pimgPlateBin)
{
carLeft->cCoreResult.cResultImg.pimgPlateBin->GetImage(&imgTemp);
size += nHeaderSize + (imgTemp.iWidth >> 3) * imgTemp.iHeight;
}
return size;
}
PBYTE8 CDM6467ResultSender::CopyBigImageToBuffer(PBYTE8 buf, IReferenceComponentImage *pImage, int nImageType, DWORD32 dwCarID, HV_RECT rcPlate, HV_RECT *rcRedLight, int nRedLightCount)
{
if (!pImage)
{
return buf;
}
HV_COMPONENT_IMAGE imgTemp;
DWORD32 dwTimeLow, dwTimeHigh;
PCI_IMAGE_INFO cImageInfo;
int nImgInfoSize = sizeof(PCI_IMAGE_INFO);
pImage->GetImage(&imgTemp);
ConvertTickToSystemTime(pImage->GetRefTime(), dwTimeLow, dwTimeHigh);
//图片信息大小
memcpy(buf, &nImgInfoSize, sizeof(int));
buf += sizeof(int);
//图片类型
cImageInfo.dwCarID = dwCarID;
cImageInfo.dwImgType = nImageType;
cImageInfo.dwTimeLow = dwTimeLow;
cImageInfo.dwTimeHigh = dwTimeHigh;
cImageInfo.dwImgWidth = ((imgTemp.iHeight & 0x0000FFFF) & (~0x1));
cImageInfo.dwImgHeight = imgTemp.iHeight >> 16;
if (m_pResultSenderParam->iEddyType)
{
cImageInfo.dwEddyType = 1;
}
cImageInfo.rcPlate = rcPlate;
cImageInfo.nRedLightCount = nRedLightCount;
memcpy(cImageInfo.rcRedLightPos, rcRedLight, nRedLightCount*sizeof(HiVideo::CRect));
memcpy(buf, &cImageInfo, sizeof(PCI_IMAGE_INFO));
buf += sizeof(PCI_IMAGE_INFO);
//图片数据大小
memcpy(buf, &imgTemp.iWidth, sizeof(int));
buf += sizeof(int);
//复制图片数据
memcpy(buf, GetHvImageData(&imgTemp, 0), imgTemp.iWidth);
buf += imgTemp.iWidth;
return buf;
}
PBYTE8 CDM6467ResultSender::CopySmallImageToBuffer(PBYTE8 buf, IReferenceComponentImage *pImage, DWORD32 dwTimeMsLow, DWORD32 dwTimeMsHigh, DWORD32 dwCarID)
{
if (!pImage)
{
return buf;
}
HV_COMPONENT_IMAGE imgTemp;
PCI_IMAGE_INFO cImageInfo;
int nImgInfoSize = sizeof(PCI_IMAGE_INFO);
pImage->GetImage(&imgTemp);
unsigned char *pY = GetHvImageData(&imgTemp, 0);
unsigned char *pCb = GetHvImageData(&imgTemp,1);
unsigned char *pCr = GetHvImageData(&imgTemp, 2);
if ((pY == NULL) || (pCb == NULL) || (pCr == NULL))
{
return buf;
}
//图片信息大小
memcpy(buf, &nImgInfoSize, sizeof(int));
buf += sizeof(int);
//图片类型
cImageInfo.dwCarID = dwCarID;
cImageInfo.dwImgType = PCILINK_IMAGE_SMALL_IMAGE;
cImageInfo.dwTimeLow = dwTimeMsLow;
cImageInfo.dwTimeHigh = dwTimeMsHigh;
cImageInfo.dwImgWidth = imgTemp.iWidth & (~0x1);
cImageInfo.dwImgHeight = imgTemp.iHeight;
memcpy(buf, &cImageInfo, sizeof(PCI_IMAGE_INFO));
buf += sizeof(PCI_IMAGE_INFO);
//图片数据大小
DWORD32 dwImgSize = cImageInfo.dwImgWidth * cImageInfo.dwImgHeight * 2;
memcpy(buf, &dwImgSize, sizeof(DWORD32));
buf += sizeof(DWORD32);
int iHeight;
size_t iLineSize = (size_t)cImageInfo.dwImgWidth / 2;
//复制图片数据
unsigned char *pSrc = pY;
for (iHeight = 0; iHeight < imgTemp.iHeight; iHeight++, pSrc += imgTemp.iStrideWidth[0])
{
memcpy(buf, pSrc, cImageInfo.dwImgWidth);
buf += cImageInfo.dwImgWidth;
}
pSrc = pCb;
for (iHeight = 0; iHeight < imgTemp.iHeight; iHeight++, pSrc += (imgTemp.iStrideWidth[0] / 2))
{
memcpy(buf, pSrc, iLineSize);
buf += iLineSize;
}
pSrc = pCr;
for (iHeight = 0; iHeight < imgTemp.iHeight; iHeight++, pSrc += (imgTemp.iStrideWidth[0] / 2))
{
memcpy(buf, pSrc, iLineSize);
buf += iLineSize;
}
return buf;
}
PBYTE8 CDM6467ResultSender::CopyBinImageToBuffer(PBYTE8 buf, IReferenceComponentImage *pImage, DWORD32 dwTimeMsLow, DWORD32 dwTimeMsHigh, DWORD32 dwCarID)
{
if (!pImage)
{
return buf;
}
HV_COMPONENT_IMAGE imgTemp;
PCI_IMAGE_INFO cImageInfo;
int nImgInfoSize = sizeof(PCI_IMAGE_INFO);
pImage->GetImage(&imgTemp);
//图片信息大小
memcpy(buf, &nImgInfoSize, sizeof(int));
buf += sizeof(int);
//图片类型
cImageInfo.dwCarID = dwCarID;
cImageInfo.dwImgType = PCILINK_IMAGE_BIN_IMAGE;
cImageInfo.dwTimeLow = dwTimeMsLow;
cImageInfo.dwTimeHigh = dwTimeMsHigh;
cImageInfo.dwImgWidth = imgTemp.iWidth;
cImageInfo.dwImgHeight = imgTemp.iHeight;
memcpy(buf, &cImageInfo, sizeof(PCI_IMAGE_INFO));
buf += sizeof(PCI_IMAGE_INFO);
//图片数据大小
DWORD32 dwImgSize = (imgTemp.iWidth >> 3) * imgTemp.iHeight;
memcpy(buf, &dwImgSize, sizeof(DWORD32));
buf += sizeof(DWORD32);
//复制图片数据
unsigned char *pSrc = GetHvImageData(&imgTemp, 0);
int iHeight;
int iDestLine = imgTemp.iWidth >> 3;
for (iHeight = 0; iHeight < imgTemp.iHeight; iHeight++, pSrc += iDestLine)
{
memcpy(buf, pSrc, iDestLine);
buf += iDestLine;
}
return buf;
}
|
3e8df5cc171802454a35189e0fa7376202cab9e1 | 2e80a4811d96d3acffe4125646200013ad81373c | /driver_maxon/src/teleop_steering.cpp | 359595ea6d4a5621394078117b4e2036060eede6 | [] | no_license | lardemua/ros-maxon-driver | 6fd1a826ebcaa5d8ff8c7cfa7c43a83a0331cdbc | 567f3f58770f19a404b6fd79c60fc604a3e7bb5c | refs/heads/master | 2022-12-17T20:31:28.647263 | 2020-08-27T10:26:08 | 2020-08-27T10:26:08 | 211,131,789 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,325 | cpp | teleop_steering.cpp | #include <ros/ros.h>
#include <geometry_msgs/Twist.h>
#include <std_msgs/Bool.h>
#include <std_msgs/UInt16.h>
class TeleopSteering
{
public:
TeleopSteering();
private:
ros::NodeHandle nh_;
ros::Subscriber steering_sub_;
ros::Subscriber reset_sub_;
ros::Publisher steering_pub_;
void steeringCallback(const std_msgs::UInt16::ConstPtr &steering);
void resetCallback(const std_msgs::Bool::ConstPtr &reset);
};
TeleopSteering::TeleopSteering()
{
steering_sub_ = nh_.subscribe<std_msgs::UInt16>("teleop_node/cmd_steering", 10, &TeleopSteering::steeringCallback, this);
reset_sub_ = nh_.subscribe<std_msgs::Bool>("teleop_node/cmd_reset", 10, &TeleopSteering::resetCallback, this);
steering_pub_ = nh_.advertise<std_msgs::UInt16>("teleop_node/cmd_steering", 10);
}
void TeleopSteering::resetCallback(const std_msgs::Bool::ConstPtr &reset)
{
std_msgs::UInt16 steering_msg;
steering_msg.data=90;
ROS_INFO("steering reset.");
steering_pub_.publish(steering_msg);
}
void TeleopSteering::steeringCallback(const std_msgs::UInt16::ConstPtr &steering)
{
int angle = steering->data;
ROS_INFO("steering angle: %d", angle);
}
int main(int argc, char **argv)
{
ros::init(argc, argv, "teleop_steering_node");
TeleopSteering teleop_steering_atlas;
ros::spin();
} |
300eb29ad760dd117e10d96da737885e38187791 | 16fe840b2e0985abac9c75ed406d9a58d1373582 | /Pong.cpp | 44d6b183b73d4fac80cda7b6b61605802f13b636 | [] | no_license | gozzarda/CITS4404_Project | fd76c4e2334e76a5a81d76d82c2dcd35207893f0 | 7ad82d1ed27d6784323a93b4115e10285f92960b | refs/heads/master | 2021-01-10T10:52:18.703263 | 2015-10-25T10:36:11 | 2015-10-25T10:36:11 | 43,741,568 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,200 | cpp | Pong.cpp | #include <iostream>
#include <vector>
#include <cassert>
#include <cmath>
#include <utility>
#include <limits>
#include <chrono>
#include <random>
using namespace std;
struct Point {
double x, y;
Point() : x(0), y(0) {}
Point(double x, double y) : x(x), y(y) {}
Point operator+(const Point& rhs) const {
return Point(x + rhs.x, y + rhs.y);
}
Point operator-(const Point& rhs) const {
return Point(x - rhs.x, y - rhs.y);
}
Point operator*(const double rhs) const {
return Point(x * rhs, y * rhs);
}
Point operator/(const double rhs) const {
return Point(x / rhs, y / rhs);
}
double operator*(const Point& rhs) const {
return (x * rhs.x) + (y * rhs.y);
}
double cross(const Point& rhs) const {
return (x * rhs.y) - (y * rhs.x);
}
double length() const {
return sqrt(x*x + y*y);
}
Point perp() const {
return Point(-y, x);
}
Point norm() const {
return Point(x, y) / length();
}
bool operator<(const Point& rhs) const {
if (x == rhs.x) return y < rhs.y;
else return x < rhs.x;
}
bool operator>(const Point& rhs) const {
if (x == rhs.x) return y > rhs.y;
else return x > rhs.x;
}
bool operator==(const Point& rhs) const {
return x == rhs.x && y == rhs.y;
}
bool operator!=(const Point& rhs) const {
return x != rhs.x || y != rhs.y;
}
friend ostream& operator<<(ostream& os, const Point& rhs) {
os << "(" << rhs.x << ", " << rhs.y << ")";
return os;
}
};
enum inter_t {parallel = -3, collinear = -2, projective = -1, real = 0, overlap = 1};
struct Segment {
Point s, e;
Segment(Point s, Point e) : s(s), e(e) {}
Segment(double sx, double sy, double ex, double ey) : s(Point(sx, sy)), e(Point(ex, ey)) {}
pair<Point, inter_t> intersection(const Segment& rhs) const {
Segment l(min(s,e), max(s,e)), r(min(rhs.s,rhs.e), max(rhs.s,rhs.e));
Point lse = l.e - l.s, rse = r.e - r.s;
Point diff = l.s - r.s;
if (lse.x * rse.y == rse.x * lse.y) {
if (diff.x * rse.y == rse.x * diff.y) {
if (l.e.x >= r.s.x && r.e.x >= l.s.x) {
return pair<Point, inter_t>(max(l.s, r.s), overlap);
} else {
return pair<Point, inter_t>(max(l.s, r.s), collinear);
}
} else {
return pair<Point, inter_t>(Point(), parallel);
}
} else {
double lt = (l.s-r.s).cross(rse)/rse.cross(lse);
double rt = (l.s-r.s).cross(lse)/rse.cross(lse);
Point inter = max(l.s + lse * lt, r.s + rse * rt);
bool proj = lt * rt > min(lt, rt) || lt + rt < max(lt, rt);
if (proj) {
return pair<Point, inter_t>(inter, projective);
} else {
return pair<Point, inter_t>(inter, real);
}
}
}
double length() const {
return (e - s).length();
}
bool operator==(const Segment& rhs) const {
return s == rhs.s && e == rhs.e;
}
friend ostream& operator<<(ostream& os, const Segment& rhs) {
os << rhs.s << " - " << rhs.e;
return os;
}
};
struct PlayerController {
virtual vector<double> tick(vector<double> state) = 0;
};
struct PongGame {
const int tickrate = 60; // For animation convenience
int max_score = 1; // Tracked stats and limit
int left_score = 0, right_score = 0;
int left_returns = 0, right_returns = 0;
int left_shots = 0, right_shots = 0;
const double length = 400, width = 300, paddle_width = width/8, paddle_max_vel = width/tickrate; // Dimensions
const Point ball_start_vel = Point(length/tickrate, length/tickrate);
Point ball_pos = Point(0, 0), ball_vel = ball_start_vel; // Ball state
double left_pos = 0, left_vel = 0; // Player states
double right_pos = 0, right_vel = 0;
PlayerController & left, & right; // Player controllers
bool enable_random = true;
default_random_engine generator; // RNG for slight random deflection off paddles
normal_distribution<double> distribution;
PongGame(PlayerController & left, PlayerController & right) : left(left), right(right) {
generator = default_random_engine(chrono::system_clock::now().time_since_epoch().count());
distribution = normal_distribution<double>(0.0, 0.05);
}
void tick() {
// Get left velocity from controller
double left_cont = left.tick(vector<double>({
2*ball_pos.x/length, 2*ball_pos.y/width,
2*ball_vel.x/length, 2*ball_vel.y/width,
2*left_pos/width, 2*left_vel/width,
2*right_pos/width, 2*right_vel/width
})).front() * paddle_max_vel;
// Get right velocity from controller
double right_cont = right.tick(vector<double>({
-2*ball_pos.x/length, -2*ball_pos.y/width,
-2*ball_vel.x/length, -2*ball_vel.y/width,
-2*right_pos/width, -2*right_vel/width,
-2*left_pos/width, -2*left_vel/width
})).front() * -1 * paddle_max_vel;
// Update paddle positions and velocities
left_vel = left_cont;
left_pos += left_vel;
if (left_pos < paddle_width/2 - width/2) {
left_pos = paddle_width/2 - width/2;
left_vel = 0;
}
if (left_pos > width/2 - paddle_width/2) {
left_pos = width/2 - paddle_width/2;
left_vel = 0;
}
right_vel = right_cont;
right_pos += right_vel;
if (right_pos < paddle_width/2 - width/2) {
right_pos = paddle_width/2 - width/2;
right_vel = 0;
}
if (right_pos > width/2 - paddle_width/2) {
right_pos = width/2 - paddle_width/2;
right_vel = 0;
}
// Prepare geometry segments
Segment mvmt(ball_pos, ball_pos + ball_vel);
Segment upr_wall(Point(-length/2, -width/2), Point(length/2, -width/2));
Segment lwr_wall(Point(-length/2, width/2), Point(length/2, width/2));
Segment left_seg(Point(-length/2, left_pos - paddle_width/2), Point(-length/2, left_pos + paddle_width/2));
Segment right_seg(Point(length/2, right_pos - paddle_width/2), Point(length/2, right_pos + paddle_width/2));
// Do all collisions with segments
vector<Segment> collidees = {upr_wall, lwr_wall, left_seg, right_seg};
for (int hit = 0; hit >= 0;) {
hit = -1;
double best = numeric_limits<double>::max(); // Find closest collision first
for (int i = 0; i < collidees.size(); ++i) {
auto inter = mvmt.intersection(collidees[i]);
if (inter.second >= real && inter.first != mvmt.s) {
if ((inter.first - mvmt.s).length() < best) {
best = (inter.first - mvmt.s).length();
hit = i;
}
}
}
if (hit >= 0) { // Handle hit, including left and right paddle special conditions
Segment seg = collidees[hit];
collidees.erase(collidees.begin() + hit);
if (seg == left_seg) ++left_returns;
if (seg == right_seg) ++right_returns;
auto inter = mvmt.intersection(seg);
mvmt.s = inter.first;
Point perpv = (seg.e - seg.s).perp().norm();
mvmt.e = mvmt.e - perpv * 2.0 * (perpv * (mvmt.e - mvmt.s));
ball_vel = ball_vel - perpv * 2.0 * (perpv * ball_vel);
if (seg == left_seg) ball_vel.y += left_vel;
if (seg == right_seg) ball_vel.y += right_vel;
if (enable_random && (seg == left_seg || seg == right_seg)) ball_vel.y += distribution(generator) * ball_start_vel.y;
}
}
ball_pos = mvmt.e; // Update ball position
// Update shot statistics
// A shot is a tick in which the ball is headed to score
if (ball_vel.x < 0) {
double shotpos = ball_pos.y + (-length/2 - ball_pos.x) * ball_vel.y / ball_vel.x;
if (-width/2 <= shotpos && shotpos <= width/2)
if (left_pos - paddle_width/2 > shotpos || left_pos + paddle_width/2 < shotpos)
++right_shots;
} else if (ball_vel.x > 0) {
double shotpos = ball_pos.y + (length/2 - ball_pos.x) * ball_vel.y / ball_vel.x;
if (-width/2 <= shotpos && shotpos <= width/2)
if (right_pos - paddle_width/2 > shotpos || right_pos + paddle_width/2 < shotpos)
++left_shots;
}
// If a point has been scored, process it and reset state as appropriate
if (abs(ball_pos.x) > length/2) {
if (ball_pos.x < 0) {
++right_score;
ball_vel = ball_start_vel * -1;
} else {
++left_score;
ball_vel = ball_start_vel;
}
ball_pos = Point(0, 0);
left_pos = 0;
right_pos = 0;
}
assert(abs(ball_pos.y) <= width/2); // We should now still be inside bounds
}
// Run simulation until score or timelimit
pair<int, int> simulate() {
int timelimit = 2 * 16 * max_score * length / abs(ball_start_vel.x);
while (max(left_score, right_score) < max_score && timelimit > 0) {
tick();
--timelimit;
}
return pair<int, int>(left_score, right_score);
}
}; |
f2ba9e73fe53e74a4b66a1d497e60885b9f3ccbd | 0d9f854d69faf171f39952eb038bc6c2906d5a5c | /main.cpp | 59fc51573c3f4b55bc0b12828ae1f932bdd45f69 | [] | no_license | yarotzckaya/LANDLORD | c3ad3336caaf2902da2d5fe2ae795b9806b22d4c | 22225b9f8e921135f2d5c086ed8421fdd047eb63 | refs/heads/master | 2020-07-06T22:51:19.376899 | 2019-08-19T15:07:26 | 2019-08-19T15:07:26 | 203,163,329 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 397 | cpp | main.cpp | // main.cpp
// LANDLORD
//
// Created by Yuliana on 8/15/19.
// Copyright © 2019 Yuliana. All rights reserved.
//
#include "landlord.hpp"
#include <iostream>
using namespace std;
int main()
{
UserInterface interface; // объявление интерфейса
interface.interact(); // запуск работы интерфейса
return 0;
}
|
bced1bd25f9ee525495b372e2e95e7b6f272d83b | 6ac5d876d15100913048e238b31a771868d35086 | /JustCore/src/TransformComponent.cpp | f8ac6f3d02f43d6095459a066d15516da9d31063 | [] | no_license | emctague/JustCore | f0247b11c5abfb05280b0d02083575d3b04e00f5 | 242964bbc2ad12ddfac5aa2c7b333f1fcac0bc83 | refs/heads/master | 2021-05-22T22:22:47.599781 | 2020-04-14T02:29:56 | 2020-04-14T02:29:56 | 253,123,845 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 97 | cpp | TransformComponent.cpp | // TransformComponent -
//
// Copyright (c) 2020 Ethan McTague
#include "TransformComponent.h"
|
828c4cceb59e9e9a2ca2efa563ded71d276be74b | 7c56a90dc7caea4e67fe0a838ccad57b9ed60195 | /sesion2/digitalWriteRead/digitalWriteRead.ino | 0ae0fdd5a5e918452e83756ea2775ea6aa18a856 | [] | no_license | joseSantorcuato/taller-Arduino-robotica-UDD | 8c1a4564116339245c022cc0e7948b156d6e3f04 | ce81d35b6cd8c5410e21ea835b0c41b0dc73f835 | refs/heads/master | 2021-01-18T21:03:57.633800 | 2017-04-17T23:20:14 | 2017-04-17T23:20:14 | 87,006,390 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 912 | ino | digitalWriteRead.ino | //Modificacion ejemplo boton
//Para trabajar fucniones digitalRead/digitalWrite
const int pinBoton = 2; //pin a conectar boton
const int pinLed = 13; //pin para led
int estadoBoton = 0; //variable que gaurdara el estado del boton (HIGH,LOW,1,0)
void setup() {
pinMode(pinLed, OUTPUT);// seteo de los pines, pueden ser entrada salida, aca, salida
pinMode(pinBoton, INPUT);//seteo de los pines, pueden ser entrada salida, aca, entrada
//funcion pinMode tiene 2 arg, numero y accion
}
void loop() {
//la variable ahora contendra la funcion digitalRead que tiene seteado el 2
estadoBoton = digitalRead(pinBoton);
//estructura de control
//si el estado del boton es == a 1 prende el led
if (estadoBoton == HIGH) {
digitalWrite(pinLed, HIGH);
} else { //si no esta presionado lo apaga
digitalWrite(pinLed, LOW); //funcion digitalWrite tiene 2 arg, numero y accion
}
}
|
822526a782691f53183a5cd5892f3c5cd52ac66a | 727c574f0b5d84ae485b852ccf318063cc51772e | /ZOJ/2482 IP Address.cpp | 2e304d69fd00ef0e3a5a06527922c98bc3980f2d | [] | no_license | cowtony/ACM | 36cf2202e3878a3dac1f15265ba8f902f9f67ac8 | 307707b2b2a37c58bc2632ef872dfccdee3264ce | refs/heads/master | 2023-09-01T01:21:28.777542 | 2023-08-04T03:10:23 | 2023-08-04T03:10:23 | 245,681,952 | 7 | 3 | null | null | null | null | GB18030 | C++ | false | false | 690 | cpp | 2482 IP Address.cpp | /*
把给的32位二进制数转化为IP地址形式输出
读入32位,分成四节分开算
定义niu[]数组可以节省计算2^n的时间
关键词:简单题,进制转换
*/
#include<iostream>
using namespace std;
int main()
{
int n,sum;
char a;
int niu[8]={128,64,32,16,8,4,2,1};
//freopen("aaa.txt","r",stdin);
cin>>n;
while(n--)
{
for(int i=0;i<4;i++)
{
sum=0;
for(int j=0;j<8;j++)
{
cin>>a;
if(a=='1')sum+=niu[j];
}
cout<<sum;
if(i<3)cout<<".";
}
cout<<endl;
}
//while(1);
return 0;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.