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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
36e136f6e1dbf7778446d63377301b04a612daa2 | d1d19bedbb2b92faf97a1a912ca189edd7f41916 | /GPUFilterCore/OpenGLCore/GPUFilterCamera.h | 17b611de46b38fef840a631955a462d1f81c8428 | [
"MIT"
] | permissive | douzhongqiang/GPUFilterEngine | 0eccd54e5ebdca2124facc90fe7f84006755fedb | 8b4a8595440331a0a2ace6cd91db24785a7a8350 | refs/heads/main | 2023-08-14T10:00:19.300152 | 2021-09-27T11:48:10 | 2021-09-27T11:48:26 | 362,427,072 | 6 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 2,191 | h | GPUFilterCamera.h | #ifndef GPUFILTERCAMERA_H
#define GPUFILTERCAMERA_H
#include <QObject>
#include <QOpenGLFunctions_2_0>
#include <QOpenGLFunctions_3_3_Core>
#include <QOpenGLFunctions>
#include <QVector3D>
#include <QKeyEvent>
#include <QMouseEvent>
#include <QWheelEvent>
#include <QMatrix4x4>
#include "GPUFilterCore_global.h"
class GPUFILTERCORE_EXPORT GPUFilterCamera : public QObject
{
Q_OBJECT
public:
GPUFilterCamera(QObject* parent = nullptr);
~GPUFilterCamera();
void setViewport(int width, int height);
void getViewport(int& width, int& height);
void setViewRange(float nNear, float nFar);
void getViewRange(float& nNear, float& nFar);
// operate
void keyPressEvent(QKeyEvent* event);
void mousePressEvent(QMouseEvent* event);
void mouseMoveEvent(QMouseEvent* event);
void mouseReleaseEvent(QMouseEvent* event);
void wheelEvent(QWheelEvent *event);
// Camera Info
void setCameraPostion(const QVector3D& cameraPos);
void setCameraFront(const QVector3D& cameraFront);
void setCameraUp(const QVector3D& cameraUp);
QVector3D getCameraPostion(void);
QVector3D getCameraFront(void);
QVector3D getCameraUp(void);
// Projection Matrix Info
void setPersAngle(float angle);
float getPerAngle(void);
void activeCamera(void);
QMatrix4x4 getVMatrix(void);
QMatrix4x4 getPMatrix(void);
void setCameraEnabled(bool isEnabled);
bool isCameraEnabled(void);
private:
QVector3D m_cameraPos;
QVector3D m_cameraFront;
QVector3D m_cameraUp;
float m_yaw = -90.0f; // yaw
float m_pitch = 0.0f; // pitch
float m_persAngle = 45.0f; // per angle
QMatrix4x4 m_VMat;
QMatrix4x4 m_PMat;
QPoint m_startPos;
bool m_bPressed = false;
int m_nViewportWidth = 0;
int m_nViewportHeight = 0;
float m_nNear = 0.1f;
float m_nFar = 100.0f;
void reSetProjectMatrix(void);
void reSetViewMatrix(void);
bool m_isEnabled = true;
signals:
void cameraPostionChanged(const QVector3D& cameraPos);
void cameraFrontChanged(const QVector3D& front);
void projMatrixAngleChanged(float angle);
};
#endif
|
07156a7829211146ee50a7588dd6d5c0ea22edff | 032064ca629aa84e6ef831e707da7adae5a3c2a0 | /backjoon/dp/2193.cpp | 51b96066e4fc82041e50cce2bd1c985ab9b25af5 | [] | no_license | skfo763/Problem_Solving | 6a53fbb2fa2a575e10401460638231bebb109057 | cdad27b493e941d7938f29baf88ceaae4cbffb87 | refs/heads/master | 2021-08-07T05:29:09.968394 | 2021-07-12T02:37:30 | 2021-07-12T02:37:30 | 205,546,650 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 280 | cpp | 2193.cpp | #include <cstdio>
#include <stdlib.h>
int dp[100][2];
int main(void) {
int i, x;
scanf("%d", &x);
dp[1][0] = 0;
dp[1][1] = 1;
for(i=2; i<=x; i++) {
dp[i][0] = dp[i-1][1] + dp[i-1][0];
dp[i][1] = dp[i-1][0];
}
printf("%d\n", dp[x][0] + dp[x][1]);
return 0;
}
|
24ae3e3df5d882475062e40697e722e21d79a445 | 19eadc134e64ddbe943e61f9d811294a8268215e | /homework 1/C/Student.h | 9333be9437091188d2f938192e4fd3957dfc6f83 | [] | no_license | humuyan/Foundation-of-Object-Oriented-Programming | a54c6dac6f7af5d8801015f3b909f265bdccc587 | a783baa213d46720caba9c323dade5af7e125ee7 | refs/heads/master | 2022-12-10T20:31:35.424136 | 2020-08-23T08:27:26 | 2020-08-23T08:27:26 | 278,371,403 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 264 | h | Student.h | #pragma once
#include <bits/stdc++.h>
using namespace std;
class Student {
private:
string name;
int presentTimes, absentTimes;
public:
Student(string);
Student(string, int, int);
string getName();
int getPresentTimes();
int getAbsentTimes();
};
|
cd7fc4c048b99a269417f509abb3d6cecb7ec1c7 | 23b535fd8bb8154fff6f1eb3cd7ebdf038fbb265 | /libdan2/herramientas/controlador_fps_sdl/controlador_fps_sdl.cpp | 90e9aaa89bbf6f9db6ad08ba297b4fd5d44329b1 | [
"Unlicense"
] | permissive | TheMarlboroMan/platformer-astronaut | 2233d96ce0da3e63f5041789dafb2007641ddaec | 3c3b66cc2dfc6c6643219d0be405a6b81c0a256b | refs/heads/master | 2022-10-02T20:47:02.028286 | 2022-09-13T08:27:37 | 2022-09-13T08:27:37 | 119,827,368 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,183 | cpp | controlador_fps_sdl.cpp | #include "controlador_fps_sdl.h"
using namespace DLibH;
Controlador_fps_SDL::Controlador_fps_SDL(unsigned int p_f):
aplicar(true),
ticks_cuenta(0),
ticks_fin(0),
ticks_inicio(0),
dif(0),
frames_contados(0),
frames_contados_interno(0),
duracion_frame(0),
frames_deseados(p_f),
delta(0),
acumulador_delta(0)
{
this->calcular_duracion_frame();
this->inicializar();
}
Controlador_fps_SDL::~Controlador_fps_SDL()
{
this->vaciar_cronos();
}
void Controlador_fps_SDL::calcular_duracion_frame()
{
this->duracion_frame=1000 / this->frames_deseados;
}
void Controlador_fps_SDL::incrementar_framerate()
{
this->frames_deseados++;
this->establecer_framerate(this->frames_deseados);
}
void Controlador_fps_SDL::decrementar_framerate()
{
this->frames_deseados--;
this->establecer_framerate(this->frames_deseados);
}
void Controlador_fps_SDL::establecer_framerate(unsigned int p_param)
{
this->frames_deseados=p_param;
this->calcular_duracion_frame();
}
void Controlador_fps_SDL::mut_aplicar(bool valor)
{
this->aplicar=valor;
}
void Controlador_fps_SDL::inicializar()
{
this->ticks_cuenta=SDL_GetTicks();
this->ticks_inicio=this->ticks_cuenta;
this->frames_contados_interno=0;
this->frames_contados=0;
}
float Controlador_fps_SDL::obtener_delta_para_tiempo(Uint32 p_ticks) const
{
Uint32 ahora=SDL_GetTicks();
Uint32 dif=ahora - p_ticks;
float delta=dif / 1000.f;
return delta;
}
void Controlador_fps_SDL::turno()
{
if(!this->aplicar) return;
this->ticks_fin=SDL_GetTicks(); //Cortar FPS aquí.
this->frames_contados_interno++;
if( (this->ticks_fin - this->ticks_cuenta) > 1000)
{
this->frames_contados=this->frames_contados_interno;
this->frames_contados_interno=0;
this->ticks_cuenta=SDL_GetTicks();
}
this->dif=this->ticks_fin - this->ticks_inicio;
this->delta=this->dif / 1000.f;
if(this->cronos.size()) this->procesar_cronos();
this->ticks_inicio=SDL_GetTicks();
}
void Controlador_fps_SDL::limitar_fps()
{
if(this->dif < this->duracion_frame) SDL_Delay(this->duracion_frame-this->dif);
}
void Controlador_fps_SDL::procesar_cronos()
{
std::vector<Cronometro_SDL *>::iterator ini=this->cronos.begin(),
fin=this->cronos.end();
while(ini < fin)
{
if((*ini)->es_activo())
{
(*ini)->turno(this->delta);
}
++ini;
}
}
Cronometro_SDL * Controlador_fps_SDL::insertar_crono(Cronometro_SDL & p_crono)
{
return this->insertar_crono(&p_crono);
}
Cronometro_SDL * Controlador_fps_SDL::insertar_crono(Cronometro_SDL * p_crono)
{
std::vector<Cronometro_SDL *>::iterator ini=this->cronos.begin(),
fin=this->cronos.end(),
res;
res=find(ini, fin, p_crono);
if(res==fin) this->cronos.push_back(p_crono);
return p_crono;
}
bool Controlador_fps_SDL::retirar_crono(Cronometro_SDL & p_crono)
{
return this->retirar_crono(&p_crono);
}
bool Controlador_fps_SDL::retirar_crono(Cronometro_SDL * p_crono)
{
std::vector<Cronometro_SDL *>::iterator ini=this->cronos.begin(),
fin=this->cronos.end();
unsigned int cantidad_anterior=cronos.size();
remove(ini, fin, p_crono);
return cantidad_anterior != cronos.size();
}
void Controlador_fps_SDL::vaciar_cronos()
{
this->cronos.clear();
}
|
321fde99a2d6793722ded374b9efe120ad0b4dd4 | ee0c18bcbb35a48cce68d0651e6cd3463ab86446 | /Particle Firmware/src/PailSensor.cpp | 53a457a3030ed3a6804a021c70a1be22298427d6 | [] | no_license | bveenema/MixController | 428871d15ea44defc4d3ae9938f48209c29b6490 | 2c326abb021ec481fbc9597a7f1983aaf7998864 | refs/heads/master | 2021-04-26T22:16:06.235119 | 2019-02-12T09:25:16 | 2019-02-12T09:25:16 | 124,057,312 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,126 | cpp | PailSensor.cpp | #include "PailSensor.h"
pailSensor PailSensor;
pailSensor::pailSensor(){}
void pailSensor::init(){
pinMode(PAIL_SNS_PIN, INPUT);
}
void pailSensor::update(){
// Take readings, reset index and make valid if reading.values is full
readings.values[readings.index++] = this->readSensor();
if(readings.index > readings.length) {
readings.index = 0;
readings.areValid = true;
}
// Calculate Average
if(readings.areValid) {
uint32_t sumOfReadings = 0;
for(int i=0; i<readings.length; i++){
sumOfReadings += readings.values[i];
}
currentReading = sumOfReadings/readings.length;
}
// Evaluate
if(readings.areValid && (currentReading > detectionThreshold)) this->state = true;
else this->state = false;
}
void pailSensor::setDetectionThreshold(uint32_t newThreshold){
if(newThreshold > 4085) return;
detectionThreshold = newThreshold;
}
uint32_t pailSensor::getCurrentReading(){
if(readings.areValid) return this->currentReading;
return 0;
}
bool pailSensor::getState(){
return this->state;
}
uint16_t pailSensor::readSensor(){
return analogRead(PAIL_SNS_PIN);
}
|
0f35100ab95064e953116fbeebfd8ed6e2a89e38 | 43ed832344a737852405a32f989dee86750945c1 | /main.cpp | f0e8408c9b0b01e6f7e3f047b23ab7e22aca7324 | [] | no_license | JerrinWiley/server-threading | 113ff858e03bd065f4d7582d08a88ace2327bde1 | 02d2555ed29154aba02805f60fa2638a7609115a | refs/heads/main | 2023-01-09T06:12:39.378416 | 2020-11-14T06:08:07 | 2020-11-14T06:08:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,348 | cpp | main.cpp | // Please note this is a C program
// It compiles without warnings with gcc
/*The socket templates and fireman function are from professor Rincon source code.
The toBinary() function is from geeksforgeeks*/
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <iostream>
#include <string>
#include <pthread.h>
using namespace std;
#define NOPER 256
int portno, n;
struct sockaddr_in serv_addr;
struct hostent *server;
int num_code = 5;
struct code
{
int sockfd;
int val;
string binary;
string eli;
};
void error(char *msg)
{
perror(msg);
exit(0);
}
void *sendToServer(void *value_void_ptr)
{
struct code *value_ptr = (struct code *)value_void_ptr;
int value = value_ptr->val;
int sockfd;
char buffer[256];
sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (connect(sockfd, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) < 0)
error("ERROR connecting");
n = write(sockfd, &value, sizeof(int));
if (n < 0)
error("ERROR writing to socket");
bzero(buffer, 256);
n = read(sockfd, buffer, 255);
bool flag = true;
for (int i = 0; i < strlen(buffer); i++)
{
if (buffer[i] == ' ')
{
flag = false;
}
if (flag)
{
value_ptr->binary += buffer[i];
}
else.
{
value_ptr->eli += buffer[i];
}
}
if (n < 0)
error("ERROR reading from socket");
close(sockfd);
return NULL;
}
int main(int argc, char *argv[])
{
int sockfd;
char buffer[256];
if (argc < 3)
{
fprintf(stderr, "usage %s hostname port\n", argv[0]);
exit(0);
}
portno = atoi(argv[2]);
sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd < 0)
error("ERROR opening socket");
server = gethostbyname(argv[1]);
if (server == NULL)
{
fprintf(stderr, "ERROR, no such host\n");
exit(0);
}
bzero((char *)&serv_addr, sizeof(serv_addr));
serv_addr.sin_family = AF_INET;
bcopy((char *)server->h_addr,
(char *)&serv_addr.sin_addr.s_addr,
server->h_length);
serv_addr.sin_port = htons(portno);
if (connect(sockfd, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) < 0)
error("ERROR connecting");
//==========
cin >> num_code;
int *values_arr = new int[num_code];
for (int i = 0; i < num_code; i++)
{
cin >> values_arr[i];
}
static struct code operations[NOPER];
pthread_t tid[num_code];
for (int i = 0; i < num_code; i++)
{
operations[i].sockfd = sockfd;
operations[i].val = values_arr[i];
if(pthread_create(&tid[i], NULL, sendToServer, &operations[i]))
{
fprintf(stderr, "Error creating thread\n");
return 1;
}
}
for (int i = 0; i < num_code; i++)
{
pthread_join(tid[i], NULL);
}
for (int i = 0; i < num_code; i++)
{
cout << "Value: " << operations[i].val << ", Binary Code: " << operations[i].binary
<< ", Elias-Gamma code:" << operations[i].eli << endl;
}
delete[] values_arr;
close(sockfd);
return 0;
} |
af134d9a2fc9269b2b06b825c2cc66502e777659 | e1575271bb5a30f435c6b74fcea21c2599a72e62 | /source/SpaceStation.h | cc183270ba6429843beeaad193b07755b789a774 | [] | no_license | EmileSonneveld/SpaceGame | c1f2253d949c352a02dab1a9fdc0bc4e71772608 | c6951a1048d39d28610d491cb10f2b12d4169c02 | refs/heads/master | 2020-06-02T15:46:16.705721 | 2014-10-25T21:52:19 | 2014-10-25T21:52:19 | 14,400,076 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 579 | h | SpaceStation.h | #pragma once
#include "entityBase.h"
class b2Body;
struct b2Vec2;
class RenderTarget;
#include <Box2D/Box2D.h>
//#include <SFML/Graphics/RenderStates.hpp>
#include <SFML/Graphics.hpp>
class SpaceStation : public entityBase
{
public:
SpaceStation(sf::Vector2f pos);
virtual ~SpaceStation();
virtual void Initialize(){};
void Tick(float dt);
virtual void draw(sf::RenderTarget& target, sf::RenderStates states) const;
protected:
b2Vec2 originalPos;
void setTexture(const sf::Texture& texture, int nrOfFrames=1); // bevat extras
sf::VertexArray m_va;
private:
};
|
49c6ee85654d1cc1ffd6e88ae4e785e642a3dc6f | 7cb0b81018c98dae6845cb84ecadaaeea77a8c6d | /CrackingTheCodingInterview/binaryMinimum.cpp | 3204b9eab102b9bbaede38ab06b232be16e5f770 | [] | no_license | canalesb93/ProblemLibrary | c6cefc408924c1aa807a2ae931176a7ecd040ee7 | 4e0bd5b59089edd700b6292ec5ab2a9bf11a19ea | refs/heads/master | 2021-05-16T02:12:23.984757 | 2017-06-03T02:09:01 | 2017-06-03T02:09:01 | 30,946,873 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 666 | cpp | binaryMinimum.cpp | /*
5
3 4 5 1 2
*/
#include <iostream>
#include <cmath>
using namespace std;
// Binary Search Algorithm for minimum broken array
// Requires sorted array
//
int n;
int arr[] = {};
int binarySearch(int start, int end){
int half;
if (start >= end){
return start;
}
else{
half = (start + end) / 2;
if (arr[half] > arr[end])
return(binarySearch(half+1, end));
else
return(binarySearch(start, half));
}
}
int main ()
{
cin >> n;
for(int i = 0; i < n; i++){
cin >> arr[i];
}
for(int i = 0; i < n; i++){
cout << arr[i] << " ";
}
cout << endl;
cout << binarySearch(0,n-1) << endl;
return 0;
} |
1409764a096af2a9ed100b672d9676b924eab2e2 | 641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2 | /blimp/net/engine_connection_manager_unittest.cc | 700231ad3d985787f0a950846b5fa690eb0a4682 | [
"BSD-3-Clause"
] | permissive | massnetwork/mass-browser | 7de0dfc541cbac00ffa7308541394bac1e945b76 | 67526da9358734698c067b7775be491423884339 | refs/heads/master | 2022-12-07T09:01:31.027715 | 2017-01-19T14:29:18 | 2017-01-19T14:29:18 | 73,799,690 | 4 | 4 | BSD-3-Clause | 2022-11-26T11:53:23 | 2016-11-15T09:49:29 | null | UTF-8 | C++ | false | false | 2,787 | cc | engine_connection_manager_unittest.cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "blimp/net/engine_connection_manager.h"
#include <stddef.h>
#include <string>
#include <utility>
#include "base/callback_helpers.h"
#include "base/memory/ptr_util.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "blimp/net/blimp_transport.h"
#include "blimp/net/common.h"
#include "blimp/net/connection_error_observer.h"
#include "blimp/net/tcp_client_transport.h"
#include "blimp/net/tcp_connection.h"
#include "blimp/net/test_common.h"
#include "net/base/completion_callback.h"
#include "net/base/io_buffer.h"
#include "net/base/ip_address.h"
#include "net/base/net_errors.h"
#include "net/base/test_completion_callback.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using testing::_;
using testing::Eq;
using testing::Return;
using testing::SaveArg;
namespace blimp {
class EngineConnectionManagerTest : public testing::Test {
public:
EngineConnectionManagerTest()
: manager_(new EngineConnectionManager(&connection_handler_, nullptr)) {}
~EngineConnectionManagerTest() override {}
protected:
testing::StrictMock<MockConnectionHandler> connection_handler_;
std::unique_ptr<EngineConnectionManager> manager_;
base::MessageLoopForIO message_loop_;
};
TEST_F(EngineConnectionManagerTest, ConnectionSucceeds) {
EXPECT_CALL(connection_handler_, HandleConnectionPtr(_)).Times(1);
net::IPAddress ip_addr(net::IPAddress::IPv4Localhost());
net::IPEndPoint engine_endpoint(ip_addr, 0);
manager_->ConnectTransport(&engine_endpoint,
EngineConnectionManager::EngineTransportType::TCP);
net::TestCompletionCallback connect_callback;
TCPClientTransport client(engine_endpoint, nullptr);
client.Connect(connect_callback.callback());
EXPECT_EQ(net::OK, connect_callback.WaitForResult());
}
TEST_F(EngineConnectionManagerTest, TwoConnectionsSucceed) {
EXPECT_CALL(connection_handler_, HandleConnectionPtr(_)).Times(2);
net::IPAddress ip_addr(net::IPAddress::IPv4Localhost());
net::IPEndPoint engine_endpoint(ip_addr, 0);
manager_->ConnectTransport(&engine_endpoint,
EngineConnectionManager::EngineTransportType::TCP);
net::TestCompletionCallback connect_callback;
TCPClientTransport client(engine_endpoint, nullptr);
client.Connect(connect_callback.callback());
EXPECT_EQ(net::OK, connect_callback.WaitForResult());
std::unique_ptr<BlimpConnection> connection = client.MakeConnection();
client.Connect(connect_callback.callback());
EXPECT_EQ(net::OK, connect_callback.WaitForResult());
}
} // namespace blimp
|
6d23747ba1235d700fa0fefe7804f039f57c328f | 68504fa549b51877e7455939780b25d723dd85c2 | /util/makeFlatNtuples.cxx | 1670cfa2f5802b644e5d68d4eb65115b54167f41 | [] | no_license | alexarmstrongvi/AlexAnalysisPackage | 387fd20cea5b682907e8d1e7cb91e551b14ce525 | 8c91884d4877adb27cedf02dc18ce8f828d36ebf | refs/heads/master | 2021-04-28T02:27:26.844711 | 2018-08-14T14:59:31 | 2018-08-14T14:59:31 | 122,113,744 | 0 | 0 | null | 2018-02-19T22:09:31 | 2018-02-19T20:01:11 | Python | UTF-8 | C++ | false | false | 99,000 | cxx | makeFlatNtuples.cxx | ////////////////////////////////////////////////////////////////////////////////
/// Copyright (c) <2018> by Alex Armstrong with much code borrowed from
/// Aleattin Mete (Alaettin.Serhan.Mete@cern.ch)
///
/// @file makeFlatNtuple.cxx
/// @author Alex Armstrong <alarmstr@cern.ch>
/// @date <May 27th, 2018>
/// @brief Make flat ntuples from SusyNts
///
////////////////////////////////////////////////////////////////////////////////
// TODO:
// - See the effect of adding variables on ntuple production time
// - Fix dilep trigger matching
// - Improve all the variable nameing schemes
#include "AlexAnalysisPackage/makeFlatNtuples.h"
#include "SusyNtuple/KinematicTools.h"
using std::string;
using std::cout;
using std::cerr;
using std::vector;
using std::find;
using kin::getMetRel;
// Various superflow classes
using namespace sflow;
////////////////////////////////////////////////////////////////////////////////
// Declarations
////////////////////////////////////////////////////////////////////////////////
// Useful macros
#define ADD_1LEP_TRIGGER_VAR(trig_name, leptons) { \
*superflow << NewVar(#trig_name" trigger bit"); { \
*superflow << HFTname(#trig_name); \
*superflow << [=](Superlink* sl, var_bool*) -> bool { \
return is_1lep_trig_matched(sl, #trig_name, leptons); \
}; \
*superflow << SaveVar(); \
} \
}
// Trig Matching for dilep triggers is buggy
// so currently not trigger matching
#define ADD_2LEP_TRIGGER_VAR(trig_name, lep0, lep1) { \
*superflow << NewVar(#trig_name" trigger bit"); { \
*superflow << HFTname(#trig_name); \
*superflow << [=](Superlink* sl, var_bool*) -> bool { \
if(!lep0 || ! lep1) return false;\
bool trig_fired = sl->tools->triggerTool().passTrigger(sl->nt->evt()->trigBits, #trig_name); \
return trig_fired;\
if (!trig_fired) return false; \
bool trig_matched = sl->tools->triggerTool().dilepton_trigger_match(sl->nt->evt(), lep0, lep1, #trig_name);\
return trig_matched; }; \
*superflow << SaveVar(); \
} \
}
#define ADD_MULTIPLICITY_VAR(container) { \
*superflow << NewVar("number of "#container); { \
*superflow << HFTname("n_"#container); \
*superflow << [=](Superlink* sl, var_int*) -> int { \
return sl->container->size(); \
}; \
*superflow << SaveVar(); \
} \
}
/// @brief Command line argument parser
struct Args {
////////////////////////////////////////////////////////////////////////////
// Initialize arguments
////////////////////////////////////////////////////////////////////////////
string PROG_NAME; // always required
// Required arguments
string input_name; ///< Input file name
// Optional arguments with defaults
unsigned int n_events = -1; ///< number of events processed
unsigned int n_skipped = 0; ///< number of initila entries to skip
string name_suffix = ""; ///< suffix appended to output name
bool baseline_sel = false; ///< Apply baseline denominator selection
bool baseline_den = false; ///< Apply baseline denominator selection
bool fake_num = false; ///< Apply fake numerator selection
bool fake_den = false; ///< Apply fake denominator selection
bool zll_cr = false; ///< Apply fake denominator selection
bool apply_ff = false; ///< Apply fake factor event weight to denominator events
////////////////////////////////////////////////////////////////////////////
// Print information
////////////////////////////////////////////////////////////////////////////
void print_usage() const {
printf("===========================================================\n");
printf(" %s\n", PROG_NAME.c_str());
printf(" Makeing analysis flat ntuples from SusyNts\n");
printf("===========================================================\n");
printf("Required Parameters:\n");
printf("\t-i, --input Input file name\n");
printf("\nOptional Parameters:\n");
printf("\t-n, --nevents number of events to process\n");
printf("\t-k, --nskipped number of initial entries to skip\n");
printf("\t-s, --suffix suffix appended to output name\n");
printf("\t--baseline_sel use baseline event selection [default selection]\n");
printf("\t--baseline_den use baseline denominator event selection \n");
printf("\t--fake_num use Z+jets numerator event selection \n");
printf("\t--fake_den use Z+jets denominator event selection \n");
printf("\t--zll_cr use Zll CR event selection \n");
printf("\t--apply_ff apply fake factor to denominator events\n");
printf("\t-h, --help print this help message\n");
printf("===========================================================\n");
}
void print() const {
printf("===========================================================\n");
printf(" %s Configuration\n", PROG_NAME.c_str());
printf("===========================================================\n");
printf("\tInput file name : %s\n", input_name.c_str());
printf("\tnevents : %i\n", n_events);
printf("\tnskipped : %i\n", n_skipped);
printf("\tsuffix : %s\n", name_suffix.c_str());
printf("\tbaseline_sel : %i\n", baseline_sel);
printf("\tbaseline_den : %i\n", baseline_den);
printf("\tfake_num : %i\n", fake_num);
printf("\tfake_den : %i\n", fake_den);
printf("\tzll_cr : %i\n", zll_cr);
printf("\tapply_ff : %i\n", apply_ff);
printf("===========================================================\n");
}
////////////////////////////////////////////////////////////////////////////
// Parser
////////////////////////////////////////////////////////////////////////////
bool parse(int argc, char* argv[]) {
PROG_NAME = argv[0];
// Parse arguments
for (int i = 0; i< argc; ++i) {
// Grab arguments
string arg = argv[i];
string arg_value = argc > i+1 ? argv[i+1] : "";
// Skip if arg set to arg value and not arg name
if (arg.at(0) != '-') continue;
// Check for required arguments
if (arg == "-i" || arg == "--input") {
input_name = arg_value;
} else if (arg == "-n" || arg == "--nevents") {
n_events = atoi(arg_value.c_str());
} else if (arg == "-k" || arg == "--nskipped") {
n_skipped = atoi(arg_value.c_str());
} else if (arg == "-s" || arg == "--suffix") {
name_suffix = arg_value;
} else if (arg == "--baseline_sel") {baseline_sel = true;
} else if (arg == "--baseline_den") {baseline_den = true;
} else if (arg == "--fake_num") {fake_num = true;
} else if (arg == "--fake_den") {fake_den = true;
} else if (arg == "--zll_cr") {zll_cr = true;
} else if (arg == "--apply_ff") {
apply_ff = true;
} else if (arg == "-h" || arg == "--help") {
print_usage();
return false;
} else {
cerr << "ERROR :: Unrecognized input argument: "
<< arg << " -> " << arg_value << '\n';
print_usage();
}
}
// Check arguments
if (input_name.size() == 0) {
cerr << "ERROR :: No input source given\n";
return false;
} else if (apply_ff && !(baseline_den || fake_den)) {
cerr << "ERROR :: trying to apply fake factor without using any "
<< "denominator selection options\n";
return false;
}
return true;
}
} args;
////////////////////////////////////////////////////////////////////////////////
/// @brief Main function
///
/// Run with help option (-h, --help) to see available parameters
////////////////////////////////////////////////////////////////////////////////
int main(int argc, char* argv[]) {
cout << "\n====== RUNNING " << argv[0] << " ====== \n";
if (args.parse(argc, argv)) {
// Finished parsing arguments
args.print();
} else {
// Failed to parse arguments or help requested
return 1;
}
m_denominator_selection = args.fake_den || args.baseline_den;
////////////////////////////////////////////////////////////////////////////
// Main implementation
////////////////////////////////////////////////////////////////////////////
// Build list of cutflows to run
setup_chain(m_chain, args.input_name);
printf("makeFlatNtuple :: Total events available : %lli\n",m_chain->GetEntries());
if (args.apply_ff) initialize_fake_factor_tool(m_applyFakeFactorTool);
// Run the chosen cutflows
if (args.baseline_sel) {
cout << "\n\n Running baseline cutflow \n\n";
run_superflow(BASELINE);
}
if (args.baseline_den) {
cout << "\n\n Running baseline denominator cutflow \n\n";
run_superflow(BASE_DEN);
}
if (args.fake_den) {
cout << "\n\n Running Z+jets denominator cutflow \n\n";
run_superflow(FAKE_DEN);
}
if (args.fake_num) {
cout << "\n\n Running Z+jets numerator cutflow \n\n";
run_superflow(FAKE_NUM);
}
if (args.zll_cr) {
cout << "\n\n Running ZLL CR cutflow \n\n";
run_superflow(ZLL_CR);
}
delete m_chain;
cout << "\n====== SUCCESSFULLY RAN " << argv[0] << " ====== \n";
return 0;
}
////////////////////////////////////////////////////////////////////////////////
// FUNCTIONS
////////////////////////////////////////////////////////////////////////////////
void setup_chain(TChain* chain, string iname) {
chain->SetDirectory(0); // Remove ROOT ownership
bool inputIsFile = Susy::utils::endswith(iname, ".root");
bool inputIsList = Susy::utils::endswith(iname, ".txt");
bool inputIsDir = Susy::utils::endswith(iname, "/");
if (inputIsFile) {
ChainHelper::addFile(chain, iname);
} else if (inputIsList) {
// If a list of ROOT files
ChainHelper::addFileList(chain, iname);
} else if (inputIsDir) {
ChainHelper::addFileDir(chain, iname);
} else {
printf("ERROR (initialize_chain) :: Unrecognized input %s", iname.c_str());
}
}
void initialize_fake_factor_tool(ApplyFakeFactor* applyFakeFactorTool) {
//applyFakeFactorTool->set_savedFakeFactorFileName(m_fake_path);
//applyFakeFactorTool->set_saved_elFakeFactorName(m_el_FF_hist);
//applyFakeFactorTool->set_saved_muFakeFactorName(m_mu_FF_hist);
applyFakeFactorTool->set_savedFakeFactorFileName(m_fake2d_path);
applyFakeFactorTool->set_saved_elFakeFactorName_2D(m_el_FF_hist);
applyFakeFactorTool->set_saved_muFakeFactorName_2D(m_mu_FF_hist);
applyFakeFactorTool->initialize().ignore();
}
void run_superflow(Sel sel_type) {
Superflow* sf = get_cutflow(m_chain, sel_type);
m_chain->Process(sf, args.input_name.c_str(), args.n_events, args.n_skipped);
delete sf; sf = 0;
}
Superflow* get_cutflow(TChain* chain, Sel sel_type) {
string name_suffix = determine_suffix(args.name_suffix, sel_type, args.apply_ff);
Superflow* superflow = initialize_superflow(chain, name_suffix);
// How to add cutflow entry:
// Create lambda function that returns bool value of cut.
// Pass that with "<<" into the function CutName("Cut name").
// Pass that with "<<" into the dereferenced cutflow object.
// *IMPORTANT* The order that cuts are added is very important as that is
// order in which cuts are applied and global superflow variables filled
////////////////////////////////////////////////////////////////////////////
// Define helpful variables for use inside superflow variable definitions
add_shortcut_variables(superflow, sel_type);
////////////////////////////////////////////////////////////////////////////
// Add cuts
add_pre_cuts(superflow, sel_type);
add_cleaing_cuts(superflow);
if (sel_type == BASELINE) {
add_baseline_lepton_cuts(superflow);
} else if (sel_type == BASE_DEN) {
add_baseline_den_lepton_cuts(superflow);
} else if (sel_type == FAKE_NUM) {
add_fake_num_lepton_cuts(superflow);
} else if (sel_type == FAKE_DEN) {
add_fake_den_lepton_cuts(superflow);
} else if (sel_type == ZLL_CR) {
add_zll_cr_lepton_cuts(superflow);
}
add_final_cuts(superflow, sel_type);
////////////////////////////////////////////////////////////////////////////
// Add superflow variables
add_event_variables(superflow);
add_trigger_variables(superflow);
add_met_variables(superflow);
//add_prelepton_variables(superflow);
add_baselepton_variables(superflow);
add_signallepton_variables(superflow);
//add_xtau_lepton_variables(superflow);
add_tau_variables(superflow);
add_other_lepton_variables(superflow);
add_jet_variables(superflow);
add_fake_variables(superflow);
////////////////////////////////////////////////////////////////////////////
// Reset helpful variables
add_shortcut_variables_reset(superflow);
return superflow;
}
// TODO: Switch to using references instead of pointers
string determine_suffix(string user_suffix, Sel sel_type, bool apply_ff) {
string full_suffix = user_suffix;
if (user_suffix != "") full_suffix += "_";
if (apply_ff) full_suffix += "fakes_";
if (sel_type == FAKE_NUM) full_suffix += "zjets_num";
else if (sel_type == FAKE_DEN) full_suffix += "zjets_den";
else if (sel_type == BASELINE) full_suffix += "baseline";
else if (sel_type == BASE_DEN) full_suffix += "baseline_den";
else if (sel_type == ZLL_CR) full_suffix += "zll_cr";
return full_suffix;
}
Superflow* initialize_superflow(TChain *chain, string name_suffix) {
// Move run_mode to globals
Superflow* superflow = new Superflow(); // initialize the cutflow
superflow->setAnaName("SuperflowAna"); // arbitrary
superflow->setAnaType(AnalysisType::Ana_HLFV); // analysis type, passed to SusyNt
superflow->setLumi(1.0); // set the MC normalized to X pb-1
superflow->setSampleName(args.input_name); // sample name, check to make sure it's set OK
superflow->setRunMode(m_run_mode); // make configurable via run_mode
superflow->setCountWeights(true); // print the weighted cutflows
if(name_suffix != "") superflow->setFileSuffix(name_suffix);
superflow->setChain(chain);
superflow->nttools().initTriggerTool(ChainHelper::firstFile(args.input_name, 0.));
return superflow;
}
////////////////////////////////////////////////////////////////////////////////
// Add lambda expression to superflow
void add_shortcut_variables(Superflow* superflow, Sel sel_type) {
*superflow << CutName("read in") << [=](Superlink* sl) -> bool {
m_cutflags = sl->nt->evt()->cutFlags[NtSys::NOM];
////////////////////////////////////////////////////////////////////////
// Fake shortcuts
add_fake_shortcut_variables(sl);
// Pick the right set and ordering of leptons for the given selection
// type. Affects trigger matching, dilepton requirements, etc...
//
// The first two leptons in the container are assumed to be those that
// should be used in determining dilepton properties (e.g. MLL, dphi)
// and requirements (e.g. SFOS, DFOS). The third is an additional,
// usually probe lepton.
// TODO: Add grabbing of lepton to its own function for each selection type
if (sel_type == FAKE_DEN || sel_type == FAKE_NUM) {
// Lep0 - leading ID lep matched to Z
// Lep1 - subleading ID lep matched to Z
// Lep2 - leading anti-ID (3-leading ID) lep if DEN (NUM) option
// Lep3+ - all other ID leps ordered by pT
m_selectLeptons = m_Zlep;
for (Susy::Lepton* lep : *sl->leptons) {
if (!isIn(lep, m_Zlep)) {
m_selectLeptons.push_back(lep);
}
}
m_triggerLeptons.push_back(m_Zlep.at(0));
m_triggerLeptons.push_back(m_Zlep.at(1));
} else if (sel_type == BASELINE ) {
// Lep0+ - ID leps ordered by pT
if (sl->leptons->size() > 1) {
m_selectLeptons = *sl->leptons;
m_triggerLeptons.push_back(sl->leptons->at(0));
m_triggerLeptons.push_back(sl->leptons->at(1));
}
} else if (sel_type == BASE_DEN){
// Lep0 - leading ID lep
// Lep1 - leading anti-ID lep
// Lep2+ - all other ID leps ordered by pT
if (sl->leptons->size() > 0) {
m_selectLeptons.push_back(sl->leptons->at(0));
if (m_antiID_lep0) m_selectLeptons.push_back(m_antiID_lep0);
for (Susy::Lepton* lep : *sl->leptons) {
if (!isIn(lep, m_selectLeptons)) {
m_selectLeptons.push_back(lep);
}
}
m_triggerLeptons.push_back(sl->leptons->at(0));
}
} else if (sel_type == ZLL_CR) {
// Lep0 - leading ID lep matched to Z
// Lep1 - subleading ID lep matched to Z
// Lep2+ - all other ID leps ordered by pT
if (sl->leptons->size() > 1) {
m_selectLeptons.push_back(m_Zlep.at(0));
m_selectLeptons.push_back(m_Zlep.at(1));
for (Susy::Lepton* lep : *sl->leptons) {
if (!isIn(lep, m_selectLeptons)) {
m_selectLeptons.push_back(lep);
}
}
m_triggerLeptons.push_back(sl->leptons->at(0));
m_triggerLeptons.push_back(sl->leptons->at(1));
}
} else {
cout << "ERROR :: Region configuration not yet defined\n";
}
// TODO: Add case of baseline denominator
int n_selectleps = 0;
for (Susy::Lepton* lep : m_selectLeptons) {
if (!lep) continue;
n_selectleps++;
// For dilepton trigger matching
if (lep->isEle()) {
if (!m_el0) m_el0 = dynamic_cast<Susy::Electron*>(lep);
else if (!m_el1) m_el1 = dynamic_cast<Susy::Electron*>(lep);
}
else if (lep->isMu()) {
if (!m_mu0) m_mu0 = dynamic_cast<Susy::Muon*>(lep);
else if (!m_mu1) m_mu1 = dynamic_cast<Susy::Muon*>(lep);
}
}
if (m_selectLeptons.size() > 0 and m_selectLeptons.at(0)) {
m_lepton0 = *m_selectLeptons[0];
}
if (m_selectLeptons.size() > 1 and m_selectLeptons.at(1)) {
m_lepton1 = *m_selectLeptons[1];
}
m_dileptonP4 = m_lepton0 + m_lepton1;
////////////////////////////////////////////////////////////////////////
// Jet shortcuts
if (sl->baseJets->size() > 0) {
m_Jet0_TLV = *sl->baseJets->at(0);
if (sl->baseJets->size() > 1) {
m_Jet1_TLV = *sl->baseJets->at(1);
m_Dijet_TLV = m_Jet0_TLV + m_Jet1_TLV;
}
}
// TODO: replace auto with explicit class
for (auto& jet : *sl->baseJets) {
if (sl->tools->jetSelector().isLight(jet)) {
m_lightJets.push_back(jet);
} else if (sl->tools->jetSelector().isB(jet)) {
m_BJets.push_back(jet);
} else if (sl->tools->jetSelector().isForward(jet)) {
m_forwardJets.push_back(jet);
}
}
std::sort(m_lightJets.begin() , m_lightJets.end() , comparePt);
std::sort(m_BJets.begin() , m_BJets.end() , comparePt);
std::sort(m_forwardJets.begin(), m_forwardJets.end(), comparePt);
return true; // All events pass this cut
};
}
// TODO: Replace [=] with only the needed variables to see if it improves performance
void add_pre_cuts(Superflow* /*superflow*/, Sel /*sel_type*/) {
// xTauFW Cut
//if (sel_type == BASELINE || sel_type == BASE_DEN) {
// *superflow << CutName("xTau: 2+ Loose Leptons") << [](Superlink* sl) -> bool {
// uint nLooseLeptons = 0;
// for (const auto* mu : *sl->preMuons) {if (mu->loose) nLooseLeptons++;}
// for (const auto* ele : *sl->preElectrons) {if (ele->looseLLH) nLooseLeptons++;}
// return nLooseLeptons >= 2;
// };
//}
}
void add_cleaing_cuts(Superflow* superflow) {
*superflow << CutName("Pass GRL") << [=](Superlink* sl) -> bool {
return (sl->tools->passGRL(m_cutflags));
};
*superflow << CutName("LAr error") << [=](Superlink* sl) -> bool {
return (sl->tools->passLarErr(m_cutflags));
};
*superflow << CutName("Tile error") << [=](Superlink* sl) -> bool {
return (sl->tools->passTileErr(m_cutflags));
};
*superflow << CutName("TTC veto") << [=](Superlink* sl) -> bool {
return (sl->tools->passTTC(m_cutflags));
};
*superflow << CutName("SCT err") << [=](Superlink* sl) -> bool {
return (sl->tools->passSCTErr(m_cutflags));
};
}
void add_baseline_lepton_cuts(Superflow* superflow) {
//*superflow << CutName("nBaselineLep = nSignalLep") << [](Superlink* sl) -> bool {
// return (sl->leptons->size() == sl->baseLeptons->size());
//};
//*superflow << CutName("2+ leptons") << [](Superlink* sl) -> bool {
// return (sl->leptons->size() >= 2);
//};
*superflow << CutName("2-ID Leptons") << [=](Superlink* /*sl*/) -> bool {
return (m_lepID_n == 2);
};
add_DFOS_lepton_cut(superflow);
}
void add_baseline_den_lepton_cuts(Superflow* superflow) {
*superflow << CutName("1-ID Lepton and 1 Anti-ID Lepton") << [=](Superlink* /*sl*/) -> bool {
return (m_lepID_n == 1 && m_lepAntiID_n >= 1);
};
add_DFOS_lepton_cut(superflow);
}
void add_fake_num_lepton_cuts(Superflow* superflow) {
*superflow << CutName("3-ID Leptons") << [=](Superlink* /*sl*/) -> bool {
return (m_lepID_n == 3);
};
add_SFOS_lepton_cut(superflow);
}
void add_fake_den_lepton_cuts(Superflow* superflow) {
*superflow << CutName("2-ID Leptons and 1+ Anti-ID Lepton") << [=](Superlink* /*sl*/) -> bool {
return (m_lepID_n == 2 && m_lepAntiID_n >= 1);
};
add_SFOS_lepton_cut(superflow);
}
void add_zll_cr_lepton_cuts(Superflow* superflow) {
*superflow << CutName("2-ID Leptons") << [=](Superlink* sl) -> bool {
return (sl->leptons->size() >= 2);
};
add_SFOS_lepton_cut(superflow);
}
void add_final_cuts(Superflow* superflow, Sel sel_type) {
*superflow << CutName("pass good vertex") << [=](Superlink* sl) -> bool {
return (sl->tools->passGoodVtx(m_cutflags));
};
*superflow << CutName("jet cleaning") << [](Superlink* sl) -> bool {
return (sl->tools->passJetCleaning(sl->baseJets));
};
if (sel_type == BASELINE) {
*superflow << CutName("2 leptons") << [](Superlink* sl) -> bool {
return (sl->leptons->size() == 2);
};
}
*superflow << CutName("Tau veto") << [](Superlink* sl) -> bool {
return (sl->taus->size() == 0);
};
}
void add_event_variables(Superflow* superflow) {
*superflow << NewVar("Event run number"); {
*superflow << HFTname("RunNumber");
*superflow << [](Superlink* sl, var_int*) -> int { return sl->nt->evt()->run; };
*superflow << SaveVar();
}
*superflow << NewVar("Event number"); {
*superflow << HFTname("event_number");
*superflow << [](Superlink* sl, var_int*) -> int { return sl->nt->evt()->eventNumber; };
*superflow << SaveVar();
}
*superflow << NewVar("is Monte Carlo"); {
*superflow << HFTname("isMC");
*superflow << [](Superlink* sl, var_bool*) -> bool { return sl->nt->evt()->isMC ? true : false; };
*superflow << SaveVar();
}
*superflow << NewVar("event weight"); {
*superflow << HFTname("eventweight");
*superflow << [=](Superlink* sl, var_double*) -> double {
// TODO: add fake factor tool to superflow
float fakeFactor = 1;
if (args.apply_ff && m_denominator_selection) {
bool probeIsEl = m_antiID_lep0->isEle();
LepEnum::LepType typeOfLep = probeIsEl ? LepEnum::Electron : LepEnum::Muon;
float pt = m_antiID_lep0_TLV.Pt();
//fakeFactor = m_applyFakeFactorTool->apply(pt, typeOfLep);
float eta = fabs(m_antiID_lep0_TLV.Eta());
fakeFactor = m_applyFakeFactorTool->apply(pt, eta, typeOfLep);
}
//print_weight_info(sl, fakeFactor);
return sl->weights->product() * sl->nt->evt()->wPileup * fakeFactor;
};
*superflow << SaveVar();
}
*superflow << NewVar("sample DSID"); {
*superflow << HFTname("dsid");
*superflow << [](Superlink* sl, var_int*) -> int {return sl->nt->evt()->mcChannel;};
*superflow << SaveVar();
}
*superflow << NewVar("treatAsYear"); {
// 15/16 Year ID
*superflow << HFTname("treatAsYear");
*superflow << [](Superlink* sl, var_double*) -> int { return sl->nt->evt()->treatAsYear; };
*superflow << SaveVar();
}
}
void add_trigger_variables(Superflow* superflow) {
////////////////////////////////////////////////////////////////////////////
// Trigger Variables
// ADD_*_TRIGGER_VAR preprocessor defined
////////////////////////////////////////////////////////////////////////////
// 2015
ADD_2LEP_TRIGGER_VAR(HLT_e17_lhloose_mu14, m_el0, m_mu0)
ADD_2LEP_TRIGGER_VAR(HLT_e24_lhmedium_L1EM20VHI_mu8noL1, m_el0, m_mu0)
ADD_2LEP_TRIGGER_VAR(HLT_e7_lhmedium_mu24, m_mu0, m_el0)
ADD_2LEP_TRIGGER_VAR(HLT_2e12_lhloose_L12EM10VH, m_el0, m_el1)
// TODO: Add to SusyNts HLT_2mu10)
// Single Electron Triggers
ADD_1LEP_TRIGGER_VAR(HLT_e24_lhmedium_L1EM20VH, m_triggerLeptons)
ADD_1LEP_TRIGGER_VAR(HLT_e60_lhmedium, m_triggerLeptons)
ADD_1LEP_TRIGGER_VAR(HLT_e120_lhloose, m_triggerLeptons)
// Single Muon Triggers
ADD_1LEP_TRIGGER_VAR(HLT_mu20_iloose_L1MU15, m_triggerLeptons)
ADD_1LEP_TRIGGER_VAR(HLT_mu40, m_triggerLeptons)
////////////////////////////////////////////////////////////////////////////
// 2016
// Dilepton Triggers
ADD_2LEP_TRIGGER_VAR(HLT_e17_lhloose_nod0_mu14, m_el0, m_mu0)
// TODO: Add to SusyNts HLT_e24_lhmedium_nod0_L1EM20VHI_mu8noL1, m_el0, m_mu0)
ADD_2LEP_TRIGGER_VAR(HLT_e7_lhmedium_nod0_mu24, m_mu0, m_el0)
ADD_2LEP_TRIGGER_VAR(HLT_2e17_lhvloose_nod0, m_el0, m_el1)
// TODO: Add to SusyNts HLT_2mu14)
// Single Electron Triggers
ADD_1LEP_TRIGGER_VAR(HLT_e26_lhtight_nod0_ivarloose, m_triggerLeptons)
ADD_1LEP_TRIGGER_VAR(HLT_e60_lhmedium_nod0, m_triggerLeptons)
ADD_1LEP_TRIGGER_VAR(HLT_e140_lhloose_nod0, m_triggerLeptons)
// Single Muon Triggers
ADD_1LEP_TRIGGER_VAR(HLT_mu26_ivarmedium, m_triggerLeptons)
ADD_1LEP_TRIGGER_VAR(HLT_mu50, m_triggerLeptons)
}
void add_met_variables(Superflow* superflow) {
//////////////////////////////////////////////////////////////////////////////
// MET
// Fill MET variable inside Et var
*superflow << NewVar("transverse missing energy (Et)"); {
*superflow << HFTname("MET");
*superflow << [=](Superlink* sl, var_double*) -> double {
m_MET.SetPxPyPzE(sl->met->Et*cos(sl->met->phi),
sl->met->Et*sin(sl->met->phi),
0.,
sl->met->Et);
return m_MET.Pt();
};
*superflow << SaveVar();
}
*superflow << NewVar("transverse missing energy (Phi)"); {
*superflow << HFTname("METPhi");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
return m_MET.Phi();
};
*superflow << SaveVar();
}
}
void add_prelepton_variables(Superflow* superflow) {
ADD_MULTIPLICITY_VAR(preLeptons)
ADD_MULTIPLICITY_VAR(preElectrons)
ADD_MULTIPLICITY_VAR(preMuons)
//////////////////////////////////////////////////////////////////////////////
// PreElectrons
*superflow << NewVar("preElectron E_caloClus"); {
*superflow << HFTname("preEl_EcaloClus");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->preElectrons) {
out.push_back(el->clusE);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("preElectron eta_caloClus"); {
*superflow << HFTname("preEl_etaCaloClus");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->preElectrons) {
out.push_back(el->clusEta);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("preElectron Et"); {
*superflow << HFTname("preEl_Et");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->preElectrons) {
float E_caloClus = el->clusE;
float eta_caloClus = el->clusEta;
out.push_back(E_caloClus / std::cosh(eta_caloClus));
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("preElectron pt"); {
*superflow << HFTname("preEl_pt");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->preElectrons) {out.push_back(el->Pt()); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("preElectron clusterEtaBE"); {
*superflow << HFTname("preEl_clusEtaBE");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->preElectrons) {out.push_back(el->clusEtaBE);}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("preElectron eta"); {
*superflow << HFTname("preEl_eta");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->preElectrons) {out.push_back(el->Eta());}
return out;
};
*superflow << SaveVar();
}
//////////////////////////////////////////////////////////////////////////////
// PreMuons
*superflow << NewVar("preMuon pt"); {
*superflow << HFTname("preMu_pt");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& mu : *sl->preMuons) {out.push_back(mu->Pt()); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("isCaloTagged"); {
*superflow << HFTname("isCaloTagged");
*superflow << [](Superlink* sl, var_int_array*) -> vector<int> {
vector<int> out;
for (auto& mu : *sl->preMuons) { out.push_back(mu->isCaloTagged);}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("PreMuon ID (non-inclusive)"); {
*superflow << HFTname("preMu_ID");
*superflow << [](Superlink* sl, var_int_array*) -> vector<int> {
vector<int> out;
for (auto& mu : *sl->preMuons) {
if (mu->tight) out.push_back(0);
else if (mu->medium) out.push_back(1);
else if (mu->loose) out.push_back(2);
else if (mu->veryLoose) out.push_back(3);
else out.push_back(4);
}
return out;
};
*superflow << SaveVar();
}
}
void add_baselepton_variables(Superflow* superflow) {
ADD_MULTIPLICITY_VAR(baseLeptons)
ADD_MULTIPLICITY_VAR(baseElectrons)
ADD_MULTIPLICITY_VAR(baseMuons)
//////////////////////////////////////////////////////////////////////////////
// Baseline Electrons
*superflow << NewVar("Baseline Electron etconetopo20"); {
*superflow << HFTname("baseEl_etconetopo20");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->baseElectrons) {out.push_back(el->etconetopo20); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Baseline Electron ptvarcone20"); {
*superflow << HFTname("baseEl_ptvarcone20");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->baseElectrons) {out.push_back(el->ptvarcone20); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Baseline Electron ID (non-inclusive)"); {
*superflow << HFTname("baseEl_ID");
*superflow << [](Superlink* sl, var_int_array*) -> vector<int> {
vector<int> out;
for (auto& el : *sl->baseElectrons) {
if (el->tightLLH) out.push_back(0);
else if (el->mediumLLH) out.push_back(1);
else if (el->looseLLHBLayer) out.push_back(2);
else if (el->looseLLH) out.push_back(3);
else if (el->veryLooseLLH) out.push_back(4);
else out.push_back(5);
}
return out;
};
*superflow << SaveVar();
}
//////////////////////////////////////////////////////////////////////////////
// Baseline Muons
*superflow << NewVar("baseline Muon pt"); {
*superflow << HFTname("baseMu_pt");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& mu : *sl->baseMuons) {out.push_back(mu->Pt()); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Baseline Muon eta"); {
*superflow << HFTname("baseMu_eta");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& mu : *sl->baseMuons) {out.push_back(mu->Eta()); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Baseline Muon etconetopo20"); {
*superflow << HFTname("baseMu_etconetopo20");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& mu : *sl->baseMuons) {out.push_back(mu->etconetopo20); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Baseline Muon ptvarcone30"); {
*superflow << HFTname("baseMu_ptvarcone30");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& mu : *sl->baseMuons) {out.push_back(mu->ptvarcone30); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Baseline Muon ID (non-inclusive)"); {
*superflow << HFTname("baseMu_ID");
*superflow << [](Superlink* sl, var_int_array*) -> vector<int> {
vector<int> out;
for (auto& mu : *sl->baseMuons) {
if (mu->tight) out.push_back(0);
else if (mu->medium) out.push_back(1);
else if (mu->loose) out.push_back(2);
else if (mu->veryLoose) out.push_back(3);
else out.push_back(4);
}
return out;
};
*superflow << SaveVar();
}
}
void add_signallepton_variables(Superflow* superflow) {
ADD_MULTIPLICITY_VAR(leptons)
ADD_MULTIPLICITY_VAR(electrons)
ADD_MULTIPLICITY_VAR(muons)
//////////////////////////////////////////////////////////////////////////////
// Signal Electrons
*superflow << NewVar("Electron type"); {
*superflow << HFTname("el_type");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->electrons) {out.push_back(el->mcType); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Electron origin"); {
*superflow << HFTname("el_origin");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->electrons) {out.push_back(el->mcOrigin); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Electron ID (non-inclusive)"); {
*superflow << HFTname("El_ID");
*superflow << [](Superlink* sl, var_int_array*) -> vector<int> {
vector<int> out;
for (auto& el : *sl->electrons) {
if (el->tightLLH) out.push_back(0);
else if (el->mediumLLH) out.push_back(1);
else if (el->looseLLHBLayer) out.push_back(2);
else if (el->looseLLH) out.push_back(3);
else if (el->veryLooseLLH) out.push_back(4);
else out.push_back(5);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Electron d0sigBSCorr"); {
*superflow << HFTname("el_d0sigBSCorr");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->electrons) {out.push_back(el->d0sigBSCorr); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Electron z0SinTheta"); {
*superflow << HFTname("el_z0SinTheta");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& el : *sl->electrons) {out.push_back(el->z0SinTheta()); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("subleading electron track pt"); {
*superflow << HFTname("el1_track_pt");
*superflow << [](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() > 1 && sl->leptons->at(1)->isEle()) {
const Susy::Electron* ele = dynamic_cast<const Susy::Electron*>(sl->leptons->at(1));
return ele ? ele->trackPt : -DBL_MAX;
} else {
return -DBL_MAX;
}
};
*superflow << SaveVar();
}
*superflow << NewVar("subleading electron clus pt"); {
*superflow << HFTname("el1_clus_pt");
*superflow << [](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() > 1 && sl->leptons->at(1)->isEle()) {
const Susy::Electron* ele = dynamic_cast<const Susy::Electron*>(sl->leptons->at(1));
return ele ? ele->clusE : -DBL_MAX;
} else {
return -DBL_MAX;
}
};
*superflow << SaveVar();
}
*superflow << NewVar("Subleading Electron pT track-cluster ratio"); {
*superflow << HFTname("el1pT_trackclus_ratio");
*superflow << [](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() > 1 && sl->leptons->at(1)->isEle()) {
const Susy::Electron* ele = dynamic_cast<const Susy::Electron*>(sl->leptons->at(1));
return ele ? ele->trackPt / ele->clusE : -DBL_MAX;
} else {
return -DBL_MAX;
}
};
*superflow << SaveVar();
}
//////////////////////////////////////////////////////////////////////////////
// Signal Muons
*superflow << NewVar("Muon ID (non-inclusive)"); {
*superflow << HFTname("Mu_ID");
*superflow << [](Superlink* sl, var_int_array*) -> vector<int> {
vector<int> out;
for (auto& mu : *sl->muons) {
if (mu->tight) out.push_back(0);
else if (mu->medium) out.push_back(1);
else if (mu->loose) out.push_back(2);
else if (mu->veryLoose) out.push_back(3);
else if (!mu->veryLoose) out.push_back(4);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Muon type"); {
*superflow << HFTname("mu_type");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& mu : *sl->muons) {out.push_back(mu->mcType); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Muon origin"); {
*superflow << HFTname("mu_origin");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& mu : *sl->muons) {out.push_back(mu->mcOrigin); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Muon d0sigBSCorr"); {
*superflow << HFTname("mu_d0sigBSCorr");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& mu : *sl->muons) {out.push_back(mu->d0sigBSCorr); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Muon z0SinTheta"); {
*superflow << HFTname("mu_z0SinTheta");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& mu : *sl->muons) {out.push_back(mu->z0SinTheta()); }
return out;
};
*superflow << SaveVar();
}
//////////////////////////////////////////////////////////////////////////////
// Signal Leptons
*superflow << NewVar("Lepton is IsoGrad"); {
*superflow << HFTname("l_IsoGrad");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
for (auto& lep : m_selectLeptons) {
if (!lep) continue;
if (lep->isoGradient) out.push_back(0);
else if (lep->isoGradientLoose) out.push_back(1);
else out.push_back(2);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Lepton0 Iso"); {
*superflow << HFTname("l_iso0");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
if (m_selectLeptons.size() > 0 && m_selectLeptons.at(0)) return out;
Susy::Lepton* lep = m_selectLeptons.at(0);
out.push_back(-1); // for tracking all entries and normalizing bins
bool flag = false;
if (lep->isoGradient) { flag=true; out.push_back(0);}
if (lep->isoGradientLoose) { flag=true; out.push_back(1);}
if (lep->isoLoose) { flag=true; out.push_back(2);}
if (lep->isoLooseTrackOnly) { flag=true; out.push_back(3);}
if (lep->isoFixedCutTightTrackOnly) { flag=true; out.push_back(4);}
if (!flag) out.push_back(5);
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Lepton1 Iso"); {
*superflow << HFTname("l_iso1");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
if (m_selectLeptons.size() <= 1 || !m_selectLeptons.at(1)) return out;
Susy::Lepton* lep = m_selectLeptons.at(1);
out.push_back(-1); // for tracking all entries and normalizing bins
bool flag = false;
if (lep->isoGradient) { flag=true; out.push_back(0);}
if (lep->isoGradientLoose) { flag=true; out.push_back(1);}
if (lep->isoLoose) { flag=true; out.push_back(2);}
if (lep->isoLooseTrackOnly) { flag=true; out.push_back(3);}
if (lep->isoFixedCutTightTrackOnly) { flag=true; out.push_back(4);}
if (!flag) out.push_back(5);
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Lepton2 Iso"); {
*superflow << HFTname("l_iso2");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
if (m_selectLeptons.size() <= 2 || !m_selectLeptons.at(2)) return out;
Susy::Lepton* lep = m_selectLeptons.at(2);
out.push_back(-1); // for tracking all entries and normalizing bins
bool flag = false;
if (lep->isoGradient) { flag=true; out.push_back(0);}
if (lep->isoGradientLoose) { flag=true; out.push_back(1);}
if (lep->isoLoose) { flag=true; out.push_back(2);}
if (lep->isoLooseTrackOnly) { flag=true; out.push_back(3);}
if (lep->isoFixedCutTightTrackOnly) { flag=true; out.push_back(4);}
if (!flag) out.push_back(5);
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Lepton ID (non-inclusive)"); {
*superflow << HFTname("l_ID");
*superflow << [](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
for (auto& lep : m_selectLeptons) {
if (!lep) {
out.push_back(-1);
} else if (lep->isMu()) {
const Susy::Muon* mu = dynamic_cast<const Susy::Muon*>(lep);
if (mu->tight) out.push_back(0);
else if (mu->medium) out.push_back(1);
else if (mu->loose) out.push_back(2);
else if (mu->veryLoose) out.push_back(3);
else out.push_back(4);
} else if (lep->isEle()) {
const Susy::Electron* ele = dynamic_cast<const Susy::Electron*>(lep);
if (ele->tightLLH) out.push_back(0);
else if (ele->mediumLLH) out.push_back(1);
else if (ele->looseLLHBLayer) out.push_back(2);
else if (ele->looseLLH) out.push_back(3);
else if (ele->veryLooseLLH) out.push_back(4);
else out.push_back(5);
}
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Lepton Author"); {
*superflow << HFTname("l_author");
*superflow << [](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
for (auto& lep : m_selectLeptons) {
if (!lep) {
out.push_back(-1);
} else if (lep->isMu()) {
out.push_back(-2);
} else if (lep->isEle()) {
const Susy::Electron* ele = dynamic_cast<const Susy::Electron*>(lep);
out.push_back(ele->author);
}
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton pt"); {
*superflow << HFTname("l_pt");
*superflow << [=](Superlink* /*sl*/, var_float_array*) -> vector<double> {
vector<double> out;
for(auto& lepton : m_selectLeptons) {
if (lepton) out.push_back(lepton->Pt());
else out.push_back(-DBL_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton eta"); {
*superflow << HFTname("l_eta");
*superflow << [=](Superlink* /*sl*/, var_float_array*) -> vector<double> {
vector<double> out;
for(auto& lepton : m_selectLeptons) {
if (lepton) out.push_back(lepton->Eta());
else out.push_back(-DBL_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton phi"); {
*superflow << HFTname("l_phi");
*superflow << [=](Superlink* /*sl*/, var_float_array*) -> vector<double> {
vector<double> out;
for(auto& lepton : m_selectLeptons) {
if (lepton) out.push_back(lepton->Phi());
else out.push_back(-DBL_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Lepton d0sigBSCorr"); {
*superflow << HFTname("lep_d0sigBSCorr");
*superflow << [](Superlink* /*sl*/, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& lep : m_selectLeptons) {
if (lep) out.push_back(lep->d0sigBSCorr);
else out.push_back(-DBL_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Lepton z0SinTheta"); {
*superflow << HFTname("lep_z0SinTheta");
*superflow << [](Superlink* /*sl*/, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& lep : m_selectLeptons) {
if (lep) out.push_back(lep->z0SinTheta());
else out.push_back(-DBL_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton flavor (0: e, 1: m)"); {
*superflow << HFTname("l_flav");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
for(auto& lepton : m_selectLeptons) {
if (lepton) out.push_back(lepton->isEle() ? 0 : 1);
else out.push_back(-INT_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton type"); {
*superflow << HFTname("l_type");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
for(auto& lepton : m_selectLeptons) {
if (lepton) out.push_back(lepton->mcType);
else out.push_back(-INT_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton origin"); {
*superflow << HFTname("l_origin");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
for(auto& lepton : m_selectLeptons) {
if (lepton) out.push_back(lepton->mcOrigin);
else out.push_back(-INT_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton charge"); {
*superflow << HFTname("l_q");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
for(auto& lepton : m_selectLeptons) {
if (lepton) out.push_back(lepton->q);
else out.push_back(-INT_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton BkgMotherPdgId"); {
*superflow << HFTname("l_BkgMotherPdgId");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
for(auto& lepton : m_selectLeptons) {
if (lepton) out.push_back(lepton->mcBkgMotherPdgId);
else out.push_back(-INT_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton BkgTruthOrigin"); {
*superflow << HFTname("l_BkgTruthOrigin");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
for(auto& lepton : m_selectLeptons) {
if (lepton) out.push_back(lepton->mcBkgTruthOrigin);
else out.push_back(-INT_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton matched2TruthLepton"); {
*superflow << HFTname("l_matched2TruthLepton");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
for(auto& lepton : m_selectLeptons) {
if (lepton) out.push_back(lepton->matched2TruthLepton);
else out.push_back(-INT_MAX);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton classification"); {
*superflow << HFTname("l_truthClass");
*superflow << [=](Superlink* /*sl*/, var_int_array*) -> vector<int> {
vector<int> out;
for(auto& lepton : m_selectLeptons) {
if(lepton) out.push_back(get_lepton_truth_class(lepton));
else out.push_back(-INT_MAX);
}
return out;
};
*superflow << SaveVar();
}
}
void add_xtau_lepton_variables(Superflow* superflow) {
// xTauFW variable
*superflow << NewVar("leptons sign product"); {
*superflow << HFTname("LepLepSign");
*superflow << [=](Superlink* sl, var_int*) -> int {
if (sl->leptons->size() < 2) return -INT_MAX;
return m_selectLeptons.at(0)->q*m_selectLeptons.at(1)->q;
};
*superflow << SaveVar();
}
// Lepton variables
// xTauFW variable
*superflow << NewVar("Leading lepton pT"); {
*superflow << HFTname("Lep0Pt");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() < 1) return -DBL_MAX;
return m_lepton0.Pt(); };
*superflow << SaveVar();
}
// xTauFW variable
*superflow << NewVar("Subleading lepton pT"); {
*superflow << HFTname("Lep1Pt");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() < 2) return -DBL_MAX;
return m_lepton1.Pt(); };
*superflow << SaveVar();
}
// xTauFW variable
*superflow << NewVar("Leading lepton eta"); {
*superflow << HFTname("Lep0Eta");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() < 1) return -DBL_MAX;
return m_lepton0.Eta(); };
*superflow << SaveVar();
}
// xTauFW variable
*superflow << NewVar("Subleading lepton eta"); {
*superflow << HFTname("Lep1Eta");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() < 2) return -DBL_MAX;
return m_lepton1.Eta(); };
*superflow << SaveVar();
}
// xTauFW variable
*superflow << NewVar("Leading lepton phi"); {
*superflow << HFTname("Lep0Phi");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() < 1) return -DBL_MAX;
return m_lepton0.Phi(); };
*superflow << SaveVar();
}
// xTauFW variable
*superflow << NewVar("Subleading lepton phi"); {
*superflow << HFTname("Lep1Phi");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() < 2) return -DBL_MAX;
return m_lepton1.Phi(); };
*superflow << SaveVar();
}
*superflow << NewVar("Leading lepton invariant mass"); {
*superflow << HFTname("MLep0");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() < 1) return -DBL_MAX;
return m_lepton0.M(); };
*superflow << SaveVar();
}
*superflow << NewVar("Subleading lepton invariant mass"); {
*superflow << HFTname("MLep1");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() < 2) return -DBL_MAX;
return m_lepton1.M(); };
*superflow << SaveVar();
}
*superflow << NewVar("dilepton flavor is e mu"); {
*superflow << HFTname("isEM");
*superflow << [=](Superlink* sl, var_int*) -> int {
if(sl->leptons->size()<2) return -INT_MAX;
return sl->leptons->at(0)->isEle() && sl->leptons->at(1)->isMu(); // e mu case
};
*superflow << SaveVar();
}
*superflow << NewVar("dilepton flavor is mu e"); {
*superflow << HFTname("isME");
*superflow << [=](Superlink* sl, var_int*) -> int {
if(sl->leptons->size()<2) return -INT_MAX;
return sl->leptons->at(0)->isMu() && sl->leptons->at(1)->isEle(); // mu e case
};
*superflow << SaveVar();
}
}
void add_tau_variables(Superflow* superflow) {
ADD_MULTIPLICITY_VAR(preTaus)
ADD_MULTIPLICITY_VAR(baseTaus)
ADD_MULTIPLICITY_VAR(taus)
//////////////////////////////////////////////////////////////////////////////
// PreTaus
*superflow << NewVar("preTau charge"); {
*superflow << HFTname("preTau_q");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& tau : *sl->taus) {out.push_back(tau->q); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("preTau nTracks"); {
*superflow << HFTname("preTau_nTracks");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& tau : *sl->taus) {out.push_back(tau->nTrack); }
return out;
};
*superflow << SaveVar();
}
//////////////////////////////////////////////////////////////////////////////
// Baseline Taus
*superflow << NewVar("Baseline Tau pT"); {
*superflow << HFTname("baseTau_pT");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& tau : *sl->taus) {out.push_back(tau->Pt()); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Baseline Tau eta"); {
*superflow << HFTname("baseTau_eta");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& tau : *sl->taus) {out.push_back(tau->Eta()); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Baseline Tau nTracks"); {
*superflow << HFTname("baseTau_nTracks");
*superflow << [](Superlink* sl, var_int_array*) -> vector<int> {
vector<int> out;
for (auto& tau : *sl->taus) {out.push_back(tau->nTrack); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Baseline Tau ID (non-inclusive)"); {
*superflow << HFTname("baseTau_ID");
*superflow << [](Superlink* sl, var_int_array*) -> vector<int> {
vector<int> out;
for (auto& tau : *sl->taus) {
if (!tau->loose) out.push_back(3);
else if (tau->loose && !tau->medium) out.push_back(2);
else if (tau->medium && !tau->tight) out.push_back(1);
else if (tau->tight) out.push_back(0);
}
return out;
};
*superflow << SaveVar();
}
}
void add_other_lepton_variables(Superflow* superflow) {
//////////////////////////////////////////////////////////////////////////////
// Two-lepton properties
*superflow << NewVar("Delta eta between leptons"); {
*superflow << HFTname("DEtaLL");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 2) return -DBL_MAX;
return fabs(m_lepton0.Eta() - m_lepton1.Eta()); };
*superflow << SaveVar();
}
*superflow << NewVar("Delta phi between leptons"); {
*superflow << HFTname("DphiLL");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 2) return -DBL_MAX;
return fabs(m_lepton0.DeltaPhi(m_lepton1));};
*superflow << SaveVar();
}
*superflow << NewVar("delta R of di-lepton system"); {
*superflow << HFTname("drll");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 2) return -DBL_MAX;
return m_lepton0.DeltaR(m_lepton1); };
*superflow << SaveVar();
}
*superflow << NewVar("dphi between MET and leading lepton"); {
*superflow << HFTname("DphiLep0MET");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 1) return -DBL_MAX;
return fabs(m_lepton0.DeltaPhi(m_MET));
};
*superflow << SaveVar();
}
*superflow << NewVar("dphi between MET and subleading lepton"); {
*superflow << HFTname("DphiLep1MET");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() <= 1) return -DBL_MAX;
return fabs(m_lepton1.DeltaPhi(m_MET));
};
*superflow << SaveVar();
}
*superflow << NewVar("dilepton flavor"); {
*superflow << HFTname("dilep_flav");
*superflow << [=](Superlink* /*sl*/, var_int*) -> int {
if(m_selectLeptons.size()<2) return -INT_MAX;
if(m_selectLeptons.at(0)->isEle() && m_selectLeptons.at(1)->isMu()){return 0;} // e mu case
else if(m_selectLeptons.at(0)->isMu() && m_selectLeptons.at(1)->isEle()){return 1;} // mu e case
else if(m_selectLeptons.at(0)->isEle() && m_selectLeptons.at(1)->isEle()){return 2;} // e e case
else if(m_selectLeptons.at(0)->isMu() && m_selectLeptons.at(1)->isMu()){return 3;} // mu mu case
return 4;
};
*superflow << SaveVar();
}
*superflow << NewVar("collinear mass, M_coll"); {
*superflow << HFTname("MCollASym");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (m_selectLeptons.size() < 2) return -DBL_MAX;
double deta = fabs(m_lepton0.Eta()-m_lepton1.Eta());
double dphi = m_lepton0.DeltaPhi(m_lepton1);
return sqrt(2*m_lepton0.Pt()*(m_lepton1.Pt()+sl->met->Et)*(cosh(deta)-cos(dphi)));
};
*superflow << SaveVar();
}
*superflow << NewVar("mass of di-lepton system, M_ll"); {
*superflow << HFTname("MLL");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 2) return -DBL_MAX;
return m_dileptonP4.M(); };
*superflow << SaveVar();
}
*superflow << NewVar("mass of tri-lepton system, M_lll"); {
*superflow << HFTname("MLLL");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 3) return -DBL_MAX;
return (m_dileptonP4 + m_antiID_lep0_TLV).M(); };
*superflow << SaveVar();
}
*superflow << NewVar("Pt of di-lepton system, Pt_ll"); {
*superflow << HFTname("ptll");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 2) return -DBL_MAX;
return m_dileptonP4.Pt(); };
*superflow << SaveVar();
}
*superflow << NewVar("diff_pt between leading and sub-leading lepton"); {
*superflow << HFTname("dpt_ll");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 2) return -DBL_MAX;
return m_lepton0.Pt() - m_lepton1.Pt();
};
*superflow << SaveVar();
}
*superflow << NewVar("dphi between leading lepton and MET"); {
*superflow << HFTname("DphiLep0MET");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 1) return -DBL_MAX;
return m_lepton0.DeltaPhi(m_MET);
};
*superflow << SaveVar();
}
*superflow << NewVar("lepton mT"); {
*superflow << HFTname("l_mT");
*superflow << [=](Superlink* /*sl*/, var_float_array*) -> vector<double> {
vector<double> out;
for(Susy::Lepton* lepton : m_selectLeptons) {
if (!lepton) continue;
double dphi = lepton->DeltaPhi(m_MET);
double pT2 = lepton->Pt()*m_MET.Pt();
double lep_mT = sqrt(2 * pT2 * ( 1 - cos(dphi) ));
out.push_back(lep_mT);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("dphi between MET and closest baseline lepton"); {
*superflow << HFTname("DphiBaseLepMET");
*superflow << [=](Superlink* sl, var_double*) -> double {
double dPhi = m_selectLeptons.size() ? DBL_MAX : -DBL_MAX;
for (Susy::Lepton* lepton : *sl->baseLeptons) {
float tmp_dphi = fabs(lepton->DeltaPhi(m_MET));
if (tmp_dphi < dPhi) dPhi = tmp_dphi;
}
return dPhi;
};
*superflow << SaveVar();
}
*superflow << NewVar("dphi between MET and closest lepton"); {
*superflow << HFTname("DphiLepMET");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
double dPhi = m_selectLeptons.size() ? DBL_MAX : -DBL_MAX;
for (Susy::Lepton* lepton : m_selectLeptons) {
if (!lepton) continue;
float tmp_dphi = fabs(lepton->DeltaPhi(m_MET));
if (tmp_dphi < dPhi) dPhi = tmp_dphi;
}
return dPhi;
};
*superflow << SaveVar();
}
*superflow << NewVar("dphi between MET and closest jet"); {
*superflow << HFTname("DphiJetMET");
*superflow << [=](Superlink* sl, var_double*) -> double {
double dPhi = sl->jets->size() ? DBL_MAX : -DBL_MAX;
for (Susy::Jet* jet : *sl->jets) {
float tmp_dphi = fabs(jet->DeltaPhi(m_MET));
if (tmp_dphi < dPhi) dPhi = tmp_dphi;
}
return dPhi;
};
*superflow << SaveVar();
}
*superflow << NewVar("dphi between MET and closest base jet"); {
*superflow << HFTname("DphiBaseJetMET");
*superflow << [=](Superlink* sl, var_double*) -> double {
double dPhi = sl->jets->size() ? DBL_MAX : -DBL_MAX;
for (Susy::Jet* jet : *sl->baseJets) {
float tmp_dphi = fabs(jet->DeltaPhi(m_MET));
if (tmp_dphi < dPhi) dPhi = tmp_dphi;
}
return dPhi;
};
*superflow << SaveVar();
}
*superflow << NewVar("dphi between MET and closest lep/jet"); {
*superflow << HFTname("DphiLepJetMET");
*superflow << [=](Superlink* sl, var_double*) -> double {
double dPhi = (sl->jets->size() || m_selectLeptons.size()) ? DBL_MAX : -DBL_MAX;
for (Susy::Jet* jet : *sl->jets) {
float tmp_dphi = fabs(jet->DeltaPhi(m_MET));
if (tmp_dphi < dPhi) dPhi = tmp_dphi;
}
for (Susy::Lepton* lepton : m_selectLeptons) {
if (!lepton) continue;
float tmp_dphi = fabs(lepton->DeltaPhi(m_MET));
if (tmp_dphi < dPhi) dPhi = tmp_dphi;
}
return dPhi;
};
*superflow << SaveVar();
}
*superflow << NewVar("Relative MET with baseline jets/leps"); {
*superflow << HFTname("RelMETbase");
*superflow << [=](Superlink* sl, var_double*) -> double {
return getMetRel(*sl->met, *sl->baseLeptons, *sl->baseJets);
};
*superflow << SaveVar();
}
*superflow << NewVar("Relative MET"); {
*superflow << HFTname("RelMET");
*superflow << [=](Superlink* sl, var_double*) -> double {
LeptonVector no_null_leps;
for (Susy::Lepton* lepton : m_selectLeptons) {
if (lepton) no_null_leps.push_back(lepton);
}
return getMetRel(*sl->met, no_null_leps, *sl->jets);
};
*superflow << SaveVar();
}
//////////////////////////////////////////////////////////////////////////////
// Optimized Region Cuts
*superflow << NewVar("dphi between sub-leading lepton and MET"); {
*superflow << HFTname("DphiLep1MET");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 2) return -DBL_MAX;
return m_lepton1.DeltaPhi(m_MET);
};
*superflow << SaveVar();
}
*superflow << NewVar("transverse mass of leading lepton"); {
*superflow << HFTname("MtLep0");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 1) return -DBL_MAX;
return sqrt( 2*m_lepton0.Pt()*m_MET.Pt()*(1-cos (m_lepton0.DeltaPhi(m_MET)) ) );
};
*superflow << SaveVar();
}
*superflow << NewVar("transverse mass of subleading lepton"); {
*superflow << HFTname("MtLep1");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 2) return -DBL_MAX;
return sqrt( 2*m_lepton1.Pt()*m_MET.Pt()*(1-cos (m_lepton1.DeltaPhi(m_MET)) ) );
};
*superflow << SaveVar();
}
*superflow << NewVar("approximate tau pT"); {
*superflow << HFTname("tau_pT");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 2) return -DBL_MAX;
return (m_MET + m_lepton1).Pt();
};
*superflow << SaveVar();
}
*superflow << NewVar("ratio of tau pT to subleading lepton pT"); {
*superflow << HFTname("taulep1_pT_ratio");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_selectLeptons.size() < 2) return -DBL_MAX;
TLorentzVector tau_estimate = m_MET + m_lepton1;
return tau_estimate.Pt() / m_lepton0.Pt();
};
*superflow << SaveVar();
}
}
void add_jet_variables(Superflow* superflow) {
////////////////////////////////////////////////////////////////////////////
// Multiplicity variables
ADD_MULTIPLICITY_VAR(preJets)
ADD_MULTIPLICITY_VAR(baseJets)
ADD_MULTIPLICITY_VAR(jets)
//xTauFW variable
*superflow << NewVar("number of baseline jets"); {
*superflow << HFTname("JetN");
*superflow << [](Superlink* sl, var_int*) -> int { return sl->baseJets->size(); };
*superflow << SaveVar();
}
//xTauFW variable
*superflow << NewVar("number of baseline jets (2p4Eta25Pt)"); {
*superflow << HFTname("Jet_N2p4Eta25Pt");
*superflow << [](Superlink* sl, var_int*) -> int {
uint nPassedJets = 0;
for (auto& jet : *sl->baseJets) {
if (fabs(jet->Eta()) < 2.4 && jet->Pt() > 25){
nPassedJets += 1;
}
}
return nPassedJets;
};
*superflow << SaveVar();
}
*superflow << NewVar("number of signal jets"); {
*superflow << HFTname("SignalJetN");
*superflow << [](Superlink* sl, var_int*) -> int { return sl->jets->size(); };
*superflow << SaveVar();
}
*superflow << NewVar("number of light jets"); {
*superflow << HFTname("nLJets");
*superflow << [](Superlink* sl, var_int*) -> int { return sl->tools->numberOfLJets(*sl->jets)/*(**sl->baseJets)*/; };
*superflow << SaveVar();
}
*superflow << NewVar("number of b jets"); {
*superflow << HFTname("nBJets");
*superflow << [](Superlink* sl, var_int*) -> int { return sl->tools->numberOfBJets(*sl->jets)/*(**sl->baseJets)*/; };
*superflow << SaveVar();
}
//xTauFW variable
*superflow << NewVar("b-tagged jet"); {
*superflow << HFTname("Btag");
*superflow << [](Superlink* sl, var_bool*) -> bool { return sl->tools->numberOfBJets(*sl->jets) > 0;};
*superflow << SaveVar();
}
*superflow << NewVar("number of forward jets"); {
*superflow << HFTname("nForwardJets");
*superflow << [](Superlink* sl, var_int*) -> int { return sl->tools->numberOfFJets(*sl->jets)/*(**sl->baseJets)*/; };
*superflow << SaveVar();
}
//////////////////////////////////////////////////////////////////////////////
// Pre Jets
*superflow << NewVar("preJet pt"); {
*superflow << HFTname("preJet_pt");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& jet : *sl->preJets) {out.push_back(jet->Pt()); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("preJet eta"); {
*superflow << HFTname("preJet_eta");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& jet : *sl->preJets) {out.push_back(jet->Eta()); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("preJet JVT if eta<=2.4 and pT<60"); {
*superflow << HFTname("preJet_JVT");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& jet : *sl->preJets) {
if (jet->Pt() < 60 && fabs(jet->Eta()) <= 2.4) out.push_back(jet->jvt);
else
out.push_back(-DBL_MAX);
}
return out;
};
*superflow << SaveVar();
}
//////////////////////////////////////////////////////////////////////////////
// Baseline Jets
*superflow << NewVar("Baseline Jet eta"); {
*superflow << HFTname("baseJet_eta");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& jet : *sl->baseJets) {out.push_back(jet->Eta()); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("Baseline Jet mv2c10"); {
*superflow << HFTname("baseJet_mv2c10");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for (auto& jet : *sl->baseJets) {out.push_back(jet->mv2c10); }
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("jet eta"); {
*superflow << HFTname("j_eta");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for(auto& jet : *sl->baseJets) {
out.push_back(jet->Eta());
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("jet JVT"); {
*superflow << HFTname("j_jvt");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for(auto& jet : *sl->baseJets) {
out.push_back(jet->jvt);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("jet JVF"); {
*superflow << HFTname("j_jvf");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for(auto& jet : *sl->baseJets) {
out.push_back(jet->jvf);
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("jet phi"); {
*superflow << HFTname("j_phi");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for(auto& jet : *sl->baseJets) {
out.push_back(jet->Phi());
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("jet flavor (0: NA, 1: L, 2: B, 3: F)"); {
*superflow << HFTname("j_flav");
*superflow << [](Superlink* sl, var_int_array*) -> vector<int> {
vector<int> out; int flav = 0;
for(auto& jet : *sl->baseJets) {
if(sl->tools->jetSelector().isLight(jet)) { flav = 1; }
else if(sl->tools->jetSelector().isB(jet)) { flav = 2; }
else if(sl->tools->jetSelector().isForward(jet)) { flav = 3; }
out.push_back(flav);
flav=0;
}
return out;
};
*superflow << SaveVar();
}
//////////////////////////////////////////////////////////////////////////////
// VBF Region Cuts
*superflow << NewVar("number of jets pT > 30"); {
*superflow << HFTname("JetN_g30");
*superflow << [](Superlink* sl, var_int*) -> int {
uint nJets = 0;
for (auto& jet : *sl->baseJets) {
if (jet->Pt() > 30) nJets++;
}
return nJets;
};
*superflow << SaveVar();
}
*superflow << NewVar("jet pt"); {
*superflow << HFTname("j_pt");
*superflow << [](Superlink* sl, var_float_array*) -> vector<double> {
vector<double> out;
for(auto& jet : *sl->baseJets) {
out.push_back(jet->Pt());
}
return out;
};
*superflow << SaveVar();
}
*superflow << NewVar("dijet mass"); {
*superflow << HFTname("Mjj");
*superflow << [](Superlink* sl, var_double*) -> double {
if (sl->baseJets->size() < 2) return -DBL_MAX;
return m_Dijet_TLV.M();
};
*superflow << SaveVar();
}
*superflow << NewVar("DeltaEta between two leading jets"); {
*superflow << HFTname("DEtaJJ");
*superflow << [](Superlink* sl, var_double*) -> double {
if (sl->baseJets->size() < 2) return -DBL_MAX;
return fabs(m_Jet0_TLV.Eta() - m_Jet1_TLV.Eta());
};
*superflow << SaveVar();
}
}
void add_fake_variables(Superflow* superflow) {
//////////////////////////////////////////////////////////////////////////////
// Fake variables
//////////////////////////////////////////////////////////////////////////////
*superflow << NewVar("Number of ID leptons"); {
*superflow << HFTname("nLepID");
*superflow << [=](Superlink* /*sl*/, var_int*) -> int {
return m_lepID_n;
};
*superflow << SaveVar();
}
*superflow << NewVar("Number of Anti-ID leptons"); {
*superflow << HFTname("nLepAntiID");
*superflow << [=](Superlink* /*sl*/, var_int*) -> int {
return m_lepAntiID_n;
};
*superflow << SaveVar();
}
//////////////////////////////////////////////////////////////////////////////
// 1 antiID lepton case
*superflow << NewVar("Leading anti-ID lepton charge"); {
*superflow << HFTname("aID_Lep0Q");
*superflow << [=](Superlink* /*sl*/, var_int*) -> int {
// TODO: move lepton requirements outside of larger function and
// remove them from the individual lambda expressions
if (m_lepAntiID_n < 1) return -INT_MAX;
return m_antiID_lep0->q;
};
*superflow << SaveVar();
}
*superflow << NewVar("Leading aID-lepton pT"); {
*superflow << HFTname("aID_Lep0Pt");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 1) return -DBL_MAX;
return m_antiID_lep0_TLV.Pt(); };
*superflow << SaveVar();
}
*superflow << NewVar("Leading aID-lepton eta"); {
*superflow << HFTname("aID_Lep0Eta");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 1) return -DBL_MAX;
return m_antiID_lep0_TLV.Eta(); };
*superflow << SaveVar();
}
*superflow << NewVar("Leading aID-lepton invariant mass"); {
*superflow << HFTname("aID_MLep0");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 1) return -DBL_MAX;
return m_antiID_lep0_TLV.M(); };
*superflow << SaveVar();
}
*superflow << NewVar("transverse mass of leading aID-lepton"); {
*superflow << HFTname("aID_MtLep0");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 1) return -DBL_MAX;
return sqrt( 2*m_antiID_lep0_TLV.Pt()*m_MET.Pt()*(1-cos (m_antiID_lep0_TLV.DeltaPhi(m_MET)) ) );
};
*superflow << SaveVar();
}
////////////////////////////////////////////////////////////////////////////
// Z + jets variables
*superflow << NewVar("Z leptons' flavor"); {
*superflow << HFTname("Z_dilep_flav");
*superflow << [=](Superlink* sl, var_int*) -> int {
if(sl->leptons->size() < 2) return -INT_MAX;
if(m_Zlep.at(0)->isEle() && m_Zlep.at(1)->isMu()){return 0;} // e mu case
else if(m_Zlep.at(0)->isMu() && m_Zlep.at(1)->isEle()){return 1;} // mu e case
else if(m_Zlep.at(0)->isEle() && m_Zlep.at(1)->isEle()){return 2;} // e e case
else if(m_Zlep.at(0)->isMu() && m_Zlep.at(1)->isMu()){return 3;} // mu mu case
return 4;
};
*superflow << SaveVar();
}
*superflow << NewVar("Z dilepton sign"); {
*superflow << HFTname("Z_dilep_sign");
*superflow << [=](Superlink* sl, var_int*) -> int {
if(sl->leptons->size() < 2) return -INT_MAX;
return m_Zlep.at(0)->q * m_Zlep.at(1)->q;
};
*superflow << SaveVar();
}
*superflow << NewVar("MLL of closest Z pair"); {
*superflow << HFTname("Z_MLL");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() < 2) return -DBL_MAX;
return (*m_Zlep.at(0)+*m_Zlep.at(1)).M();
};
*superflow << SaveVar();
}
*superflow << NewVar("2nd Z leptons' flavor"); {
*superflow << HFTname("Z2_dilep_flav");
*superflow << [=](Superlink* sl, var_int*) -> int {
if(sl->leptons->size() < 2) return -INT_MAX;
else if (!m_Zlep.at(3) or !m_Zlep.at(4)) return -2;
if(m_Zlep.at(3)->isEle() && m_Zlep.at(4)->isMu()){return 0;} // e mu case
else if(m_Zlep.at(3)->isMu() && m_Zlep.at(4)->isEle()){return 1;} // mu e case
else if(m_Zlep.at(3)->isEle() && m_Zlep.at(4)->isEle()){return 2;} // e e case
else if(m_Zlep.at(3)->isMu() && m_Zlep.at(4)->isMu()){return 3;} // mu mu case
return 4;
};
*superflow << SaveVar();
}
*superflow << NewVar("2nd Z dilepton sign"); {
*superflow << HFTname("Z2_dilep_sign");
*superflow << [=](Superlink* sl, var_int*) -> int {
if(sl->leptons->size() < 2) return -INT_MAX;
else if (!m_Zlep.at(3) or !m_Zlep.at(4)) return -2;
return m_Zlep.at(3)->q * m_Zlep.at(4)->q;
};
*superflow << SaveVar();
}
*superflow << NewVar("MLL of 2nd-closest Z pair"); {
*superflow << HFTname("Z2_MLL");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (sl->leptons->size() < 2) return -DBL_MAX;
else if (!m_Zlep.at(3) or !m_Zlep.at(4)) return -5.0;
return (*m_Zlep.at(3)+*m_Zlep.at(4)).M();
};
*superflow << SaveVar();
}
*superflow << NewVar("DeltaPhi of Fake lep and MET"); {
*superflow << HFTname("Z_Lep2_dPhi_MET");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_Zlep.at(2)) return m_Zlep.at(2)->DeltaPhi(m_MET);
return -DBL_MAX;
};
*superflow << SaveVar();
}
*superflow << NewVar("DeltaR of Fake lep and Zlep0"); {
*superflow << HFTname("dR_ZLep0_Fake");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_Zlep.at(0) && m_Zlep.at(2)) {
return (*m_Zlep.at(2)).DeltaR(*m_Zlep.at(0));
}
return -DBL_MAX;
};
*superflow << SaveVar();
}
*superflow << NewVar("DeltaR of Fake lep and Zlep1"); {
*superflow << HFTname("dR_ZLep1_Fake");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_Zlep.at(1) && m_Zlep.at(2)) {
return (*m_Zlep.at(2)).DeltaR(*m_Zlep.at(1));
}
return -DBL_MAX;
};
*superflow << SaveVar();
}
*superflow << NewVar("DeltaR of Fake lep and Z"); {
*superflow << HFTname("dR_Z_Fake");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_Zlep.at(0) && m_Zlep.at(1) && m_Zlep.at(2)) {
return m_dileptonP4.DeltaR(*m_Zlep.at(2));
}
return -DBL_MAX;
};
*superflow << SaveVar();
}
//////////////////////////////////////////////////////////////////////////////
// 2 antiID lepton case (QCD)
*superflow << NewVar("Subleading anti-ID lepton flavor"); {
*superflow << HFTname("aID_Lep1Flav");
*superflow << [=](Superlink* /*sl*/, var_int*) -> int {
if (m_lepAntiID_n < 2) return -INT_MAX;
return m_antiID_lep1->isEle() ? 0 : 1;
};
*superflow << SaveVar();
}
*superflow << NewVar("Subleading anti-ID lepton charge"); {
*superflow << HFTname("aID_Lep1Q");
*superflow << [=](Superlink* /*sl*/, var_int*) -> int {
if (m_lepAntiID_n < 2) return -INT_MAX;
return m_antiID_lep1->q;
};
*superflow << SaveVar();
}
*superflow << NewVar("Subleading aID-lepton pT"); {
*superflow << HFTname("aID2_Lep1Pt");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 2) return -DBL_MAX;
return m_antiID_lep1_TLV.Pt(); };
*superflow << SaveVar();
}
*superflow << NewVar("Subleading aID-lepton eta"); {
*superflow << HFTname("aID2_Lep1Eta");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 2) return -DBL_MAX;
return m_antiID_lep1_TLV.Eta(); };
*superflow << SaveVar();
}
*superflow << NewVar("Subleading aID-lepton invariant mass"); {
*superflow << HFTname("aID2_MLep1");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 2) return -DBL_MAX;
return m_antiID_lep1_TLV.M(); };
*superflow << SaveVar();
}
*superflow << NewVar("delta R of aID-leptons"); {
*superflow << HFTname("aID2_drll");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 2) return -DBL_MAX;
return m_antiID_lep0_TLV.DeltaR(m_antiID_lep1_TLV); };
*superflow << SaveVar();
}
*superflow << NewVar("aID-dilepton flavor"); {
*superflow << HFTname("aID2_dilep_flav");
*superflow << [=](Superlink* /*sl*/, var_int*) -> int {
if(m_lepAntiID_n < 2) return -INT_MAX;
auto* lep0 = m_antiID_lep0;
auto* lep1 = m_antiID_lep1;
if(lep0->isEle() && lep1->isMu()){return 0;} // e mu case
else if(lep0->isMu() && lep1->isEle()){return 1;} // mu e case
else if(lep0->isEle() && lep1->isEle()){return 2;} // e e case
else if(lep0->isMu() && lep1->isMu()){return 3;} // mu mu case
return 4;
};
*superflow << SaveVar();
}
*superflow << NewVar("aID collinear mass, M_coll"); {
*superflow << HFTname("aID2_MCollASym");
*superflow << [=](Superlink* sl, var_double*) -> double {
if (m_lepAntiID_n < 2) return -DBL_MAX;
double deta = fabs(m_antiID_lep0_TLV.Eta()-m_antiID_lep1_TLV.Eta());
double dphi = m_antiID_lep0_TLV.DeltaPhi(m_antiID_lep1_TLV);
return sqrt(2*m_antiID_lep0_TLV.Pt()*(m_antiID_lep1_TLV.Pt()+sl->met->Et)*(cosh(deta)-cos(dphi)));
};
*superflow << SaveVar();
}
*superflow << NewVar("mass of aID-dilepton system, M_ll"); {
*superflow << HFTname("aID2_MLL");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 2) return -DBL_MAX;
return (m_antiID_lep0_TLV+m_antiID_lep1_TLV).M(); };
*superflow << SaveVar();
}
*superflow << NewVar("Pt of aID-dilepton system, Pt_ll"); {
*superflow << HFTname("aID2_ptll");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 2) return -DBL_MAX;
return (m_antiID_lep0_TLV+m_antiID_lep1_TLV).Pt(); };
*superflow << SaveVar();
}
*superflow << NewVar("diff_pt between aID-leptons"); {
*superflow << HFTname("aID2_dpt_ll");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 2) return -DBL_MAX;
return m_antiID_lep0_TLV.Pt() - m_antiID_lep1_TLV.Pt();
};
*superflow << SaveVar();
}
*superflow << NewVar("transverse mass of subleading aID-lepton"); {
*superflow << HFTname("aID2_MtLep1");
*superflow << [=](Superlink* /*sl*/, var_double*) -> double {
if (m_lepAntiID_n < 2) return -DBL_MAX;
return sqrt( 2*m_antiID_lep1_TLV.Pt()*m_MET.Pt()*(1-cos (m_antiID_lep1_TLV.DeltaPhi(m_MET)) ) );
};
*superflow << SaveVar();
}
}
void add_shortcut_variables_reset(Superflow* superflow) {
*superflow << [=](Superlink* /*sl*/, var_void*) {
m_cutflags = 0;
m_MET = {};
m_lepID_n = m_lepAntiID_n = 0;
m_antiID_lep0 = m_antiID_lep1 = 0;
m_antiID_lep0_TLV = m_antiID_lep1_TLV = {};
std::fill(m_Zlep.begin(), m_Zlep.end(), nullptr);
m_selectLeptons.clear(); m_triggerLeptons.clear();
m_dileptonP4 = m_lepton0 = m_lepton1 = {};
m_el0 = m_el1 = 0;
m_mu0 = m_mu1 = 0;
m_lightJets.clear(); m_BJets.clear(); m_forwardJets.clear();
m_Dijet_TLV = m_Jet1_TLV = m_Jet0_TLV = {};
};
}
////////////////////////////////////////////////////////////////////////////////
// Useful functions
void add_fake_shortcut_variables(Superlink* sl) {
vector<int> lepID_vec, lepAntiID_vec;
// ID Leptons - same as signal leptons
for (Susy::Lepton* lepton : *sl->baseLeptons) {
bool lepID_bool = is_ID_lepton(sl, lepton);
lepID_vec.push_back(lepID_bool);
if (lepID_bool) m_lepID_n++;
}
// Anti-ID Leptons
for (Susy::Lepton* lepton : *sl->baseLeptons) {
bool lepAntiID_bool = is_antiID_lepton(lepton);
lepAntiID_vec.push_back(lepAntiID_bool);
if (lepAntiID_bool) m_lepAntiID_n++;
}
std::vector<int>::iterator begin = lepAntiID_vec.begin();
std::vector<int>::iterator end = lepAntiID_vec.end();
int antiID_idx0 = -1;
int antiID_idx1 = -1;
if (m_lepAntiID_n >= 1) {
antiID_idx0 = std::find(begin, end, true) - begin;
m_antiID_lep0 = sl->baseLeptons->at(antiID_idx0);
m_antiID_lep0_TLV = *m_antiID_lep0;
}
if (m_lepAntiID_n >= 2) {
antiID_idx1 = std::find(begin + antiID_idx0 + 1, end, true) - begin;
m_antiID_lep1 = sl->baseLeptons->at(antiID_idx1);
m_antiID_lep1_TLV = *m_antiID_lep1;
}
// Find ID lepton combination with MLL closest to Z-peak
// TODO: Separate Z matching from anti-ID/ID lep search
// m_Zlep should contain only the first and second matched Z pairs
// while not including leptons marked for fake region studies
float Z_diff = FLT_MAX;
int zlep_idx2 = -1;
for (uint ii = 0; ii < sl->leptons->size(); ++ii) {
Susy::Lepton *lep_ii = sl->leptons->at(ii);
for (uint jj = ii+1; jj < sl->leptons->size(); ++jj) {
Susy::Lepton *lep_jj = sl->leptons->at(jj);
float Z_diff_cf = fabs((*lep_ii+*lep_jj).M() - 91.2);
if (Z_diff_cf < Z_diff) {
Z_diff = Z_diff_cf;
m_Zlep.at(0) = lep_ii;
m_Zlep.at(1) = lep_jj;
zlep_idx2 = ii > 0 ? 0 : jj > 1 ? 1 : 2;
}
}
}
if (sl->leptons->size() == 2 && m_lepAntiID_n >= 1) {
m_Zlep.at(2) = m_antiID_lep0;
} else if (sl->leptons->size() >= 3) {
m_Zlep.at(2) = sl->leptons->at(zlep_idx2);
}
// Find base lepton combination with MLL closest to Z-peak
// Exclude ID leptons already matched with Z
Z_diff = FLT_MAX;
for (uint ii = 0; ii < sl->baseLeptons->size(); ++ii) {
Susy::Lepton *lep_ii = sl->baseLeptons->at(ii);
if (lep_ii == m_Zlep.at(0) || lep_ii == m_Zlep.at(1)) continue;
for (uint jj = ii+1; jj < sl->baseLeptons->size(); ++jj) {
Susy::Lepton *lep_jj = sl->baseLeptons->at(jj);
if (lep_jj == m_Zlep.at(0) || lep_jj == m_Zlep.at(1)) continue;
float Z_diff_cf = fabs((*lep_ii+*lep_jj).M() - 91.2);
if (Z_diff_cf < Z_diff) {
Z_diff = Z_diff_cf;
m_Zlep.at(3) = lep_ii;
m_Zlep.at(4) = lep_jj;
}
}
}
}
bool is_ID_lepton(Superlink* sl, Susy::Lepton* lepton) {
for (Susy::Lepton* sig_lepton : *sl->leptons) {
if (lepton == sig_lepton) {
return true;
}
}
return false;
}
bool is_antiID_lepton(Susy::Lepton* lepton) {
bool pt_pass = 0, eta_pass = 0, iso_pass = 0, id_pass = 0;
bool passID_cuts = 0, passAntiID_cuts = 0;
if (lepton->isEle()) {
const Susy::Electron* ele = dynamic_cast<const Susy::Electron*>(lepton);
float absEtaBE = fabs(ele->clusEtaBE);
pt_pass = ele->pt > 15;
eta_pass = (absEtaBE < 1.37 || 1.52 < absEtaBE) && fabs(ele->eta) < 2.47;
//ip_pass = fabs(ele->d0sigBSCorr) < 5 && fabs(ele->z0SinTheta) < 0.5;
// Is isoFixedCutTightTrackOnly == FixedCutTrackCone40?
//iso_pass = (ele->pt >= 25 || ele->isoFixedCutTightTrackOnly) && (ele->pt < 25 || ele->isoGradient);
iso_pass = ele->isoGradient;
id_pass = ele->mediumLLH;
passID_cuts = iso_pass && id_pass;
passAntiID_cuts = ele->looseLLHBLayer;
} else if (lepton->isMu()) {
const Susy::Muon* mu = dynamic_cast<const Susy::Muon*>(lepton);
pt_pass = mu->pt > 10; //15
eta_pass = fabs(mu->eta) < 2.47;
//ip_pass = fabs(mu->d0sigBSCorr) < 15 && fabs(ele->z0SinTheta) < 0.5;
iso_pass = mu->isoGradient;
id_pass = mu->medium;
passID_cuts = iso_pass && id_pass;
passAntiID_cuts = mu->medium;
}
return pt_pass && eta_pass && passAntiID_cuts && !passID_cuts;
}
bool is_1lep_trig_matched(Superlink* sl, string trig_name, LeptonVector leptons) {
for (Susy::Lepton* lep : leptons) {
if(!lep) continue;
bool trig_fired = sl->tools->triggerTool().passTrigger(sl->nt->evt()->trigBits, trig_name);
if (!trig_fired) continue;
bool trig_matched = sl->tools->triggerTool().lepton_trigger_match(lep, trig_name);
if (trig_matched) return true;
}
return false;
}
void add_SFOS_lepton_cut(Superflow* superflow) {
*superflow << CutName("SFOS leptons") << [=](Superlink* /*sl*/) -> bool {
bool SF = m_selectLeptons.at(0)->isEle() == m_selectLeptons.at(1)->isEle();
bool OS = m_selectLeptons.at(0)->q != m_selectLeptons.at(1)->q;
return SF && OS;
};
}
void add_DFOS_lepton_cut(Superflow* superflow) {
*superflow << CutName("DFOS leptons") << [=](Superlink* /*sl*/) -> bool {
bool DF = m_selectLeptons.at(0)->isEle() != m_selectLeptons.at(1)->isEle();
bool OS = m_selectLeptons.at(0)->q != m_selectLeptons.at(1)->q;
return DF && OS;
};
}
int get_lepton_truth_class(Susy::Lepton* lepton) {
if (lepton==nullptr) return -INT_MAX;
// Get Truth information
int T = lepton->mcType;
int O = lepton->mcOrigin;
int MO = lepton->mcBkgTruthOrigin;
int MT = 0; // Not stored in SusyNt::Lepton
int M_ID = lepton->mcBkgMotherPdgId;
using namespace MCTruthPartClassifier;
bool mother_is_el = fabs(M_ID) == 11;
//bool mother_is_piZero = fabs(M_ID) == 111;
bool bkgEl_from_phoConv = T==BkgElectron && O==PhotonConv;
bool bkgEl_from_EMproc = T==BkgElectron && O==ElMagProc;
bool fromSMBoson = O==WBoson || O==ZBoson || O==Higgs || O==DiBoson;
bool MfromSMBoson = MO==WBoson || MO==ZBoson || MO==Higgs || MO==DiBoson;
//bool noChargeFlip = M_ID*lepton->q < 0;
//bool chargeFlip = M_ID*lepton->q > 0;
// Defs from https://indico.cern.ch/event/725960/contributions/2987219/attachments/1641430/2621432/TruthDef_April242018.pdf
bool promptEl1 = T==IsoElectron; //&& noChargeFlip;
bool promptEl2 = (bkgEl_from_phoConv && mother_is_el); //&& noChargeFlip;
bool promptEl3 = bkgEl_from_EMproc && MT==IsoElectron && (MO==top || MfromSMBoson);
bool promptEl = promptEl1 || promptEl2 || promptEl3;
bool promptEl_from_FSR1 = bkgEl_from_phoConv && MO==FSRPhot;
bool promptEl_from_FSR2 = T==NonIsoPhoton && O==FSRPhot;
bool promptEl_from_FSR = promptEl_from_FSR1 || promptEl_from_FSR2;
//bool promptChargeFlipEl1 = T==IsoElectron && chargeFlip;
//bool promptChargeFlipEl2 = (bkgEl_from_phoConv && mother_is_el) && chargeFlip;
//bool promptChargeFlipEl = promptChargeFlipEl1 || promptChargeFlipEl2;
bool promptMuon = T==IsoMuon && (O==top || fromSMBoson || O==HiggsMSSM || O==MCTruthPartClassifier::SUSY);
bool promptPho1 = T==IsoPhoton && O==PromptPhot;
bool promptPho2 = bkgEl_from_phoConv && MT==IsoPhoton && MO==PromptPhot;
bool promptPho3 = bkgEl_from_EMproc && MT==IsoPhoton && MO==PromptPhot;
bool promptPho4 = bkgEl_from_phoConv && MT==BkgPhoton && MO==UndrPhot;
bool promptPho5 = T==BkgPhoton && O==UndrPhot;
bool promptPho = promptPho1 || promptPho2 || promptPho3 || promptPho4 || promptPho5;
bool hadDecay1 = T==BkgElectron && (O==DalitzDec || O==ElMagProc || O==LightMeson || O==StrangeMeson);
bool hadDecay2 = bkgEl_from_phoConv && MT==BkgPhoton && (MO==PiZero || MO==LightMeson || MO==StrangeMeson);
bool hadDecay3 = bkgEl_from_EMproc && ((MT==BkgElectron && MO==StrangeMeson) || (MT==BkgPhoton && MO==PiZero));
bool hadDecay4 = T==BkgPhoton && (O==LightMeson || O==PiZero);
bool hadDecay5 = T==BkgMuon && (O==LightMeson || O==StrangeMeson || O==PionDecay || O==KaonDecay);
bool hadDecay6 = T==Hadron;
bool hadDecay = hadDecay1 || hadDecay2 || hadDecay3 || hadDecay4 || hadDecay5 || hadDecay6;
bool Mu_as_e1 = (T==NonIsoElectron || T==NonIsoPhoton) && O==Mu;
bool Mu_as_e2 = bkgEl_from_EMproc && MT==NonIsoElectron && MO==Mu;
bool Mu_as_e3 = bkgEl_from_phoConv && MT==NonIsoPhoton && MO==Mu;
bool Mu_as_e = Mu_as_e1 || Mu_as_e2 || Mu_as_e3;
bool HF_tau1 = (T==NonIsoElectron || T==NonIsoPhoton) && O==TauLep;
bool HF_tau2 = bkgEl_from_phoConv && MT==NonIsoPhoton && MO==TauLep;
bool HF_tau3 = T==NonIsoMuon && O==TauLep;
bool HF_tau = HF_tau1 || HF_tau2 || HF_tau3;
bool HF_B1 = T==NonIsoElectron && (O==BottomMeson || O==BBbarMeson || O==BottomBaryon);
bool HF_B2 = T==BkgPhoton && O==BottomMeson;
bool HF_B3 = bkgEl_from_phoConv && MT==BkgPhoton && MO==BottomMeson;
bool HF_B4 = (T==IsoMuon || T==NonIsoMuon) && (O==BottomMeson || O==BBbarMeson || O==BottomBaryon);
bool HF_B = HF_B1 || HF_B2 || HF_B3 || HF_B4;
bool HF_C1 = T==NonIsoElectron && (O==CharmedMeson || O==CharmedBaryon || O==CCbarMeson);
bool HF_C2 = T==BkgElectron && O==CCbarMeson;
bool HF_C3 = T==BkgPhoton && (O==CharmedMeson || O==CCbarMeson);
bool HF_C4 = bkgEl_from_phoConv && MT==BkgPhoton && (MO==CharmedMeson || MO==CCbarMeson);
bool HF_C5 = T==NonIsoMuon && (O==CharmedMeson || O==CharmedBaryon || O==CCbarMeson);
bool HF_C6 = (T==IsoMuon || T==BkgMuon) && (O==CCbarMeson || MO==CCbarMeson);
bool HF_C = HF_C1 || HF_C2 || HF_C3 || HF_C4 || HF_C5 || HF_C6;
if (promptEl) return 1;
else if (promptMuon) return 2;
else if (promptPho) return 3;
else if (promptEl_from_FSR) return 4;
else if (hadDecay) return 5;
else if (Mu_as_e) return 6;
else if (HF_tau) return 7;
else if (HF_B) return 8;
else if (HF_C) return 9;
else if (bkgEl_from_phoConv) return 10;
else if (!(T || O || MT || MO || M_ID)) return -1;
else if (T && O && !(MT || MO || M_ID)) return -2;
else if (T && !O) return -3;
// else if (promptChargeFlipEl) return 2;
else if (T && O && M_ID) {
cout << "Unexpected Truth Class: "
<< "T = " << T << ", "
<< "O = " << O << ", "
<< "MT = " << MT << ", "
<< "MO = " << MO << ", "
<< "M_ID = " << M_ID << endl;
}
return 0;
}
void print_weight_info(Superlink* sl, float /*fakefactor*/) {
cout << "Event weight printout\n";
cout << "\t Run: " << sl->nt->evt()->run << " - Evt: " << sl->nt->evt()->eventNumber << "\n";
//cout << "\t Fake factor = " << fakefactor << "\n";
//cout << "\t Pileup = " << sl->nt->evt()->wPileup << "\n";
cout << "\t Overal event weight = " << sl->weights->susynt << "\n";
//cout << "\t\t Generator event weight = " << sl->nt->evt()->w << "\n";
//cout << "\t Superweight Pileup = " << sl->weights->pileup << "\n";
//cout << "\t Lepton SF = " << sl->weights->lepSf << "\n";
//cout << "\t Trigger SF = " << sl->weights->trigSf << "\n";
//cout << "\t B-tagging SF = " << sl->weights->btagSf << "\n";
//cout << "\t JVT SF = " << sl->weights->jvtSf << "\n";
}
|
bf445e628f2f9968ba66847c5d857a1ad00f4077 | 2e60513923b1a5c527439f824aae68bd22761503 | /src/utils/matcher.cpp | 96b4440eb37d4b0d02cc1ea47404e2431a381a1f | [] | no_license | cogsys-tuebingen/cslibs_vision | 3823e64a9d4cbaedc7666ba59980c6f146dab3c4 | 36c24b2726282dda11eaef63d6b7f471f87076bc | refs/heads/master | 2021-07-23T08:38:03.593674 | 2021-02-14T19:29:30 | 2021-02-14T19:29:30 | 65,333,208 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,162 | cpp | matcher.cpp | /// HEADER
#include <cslibs_vision/utils/matcher.h>
/// PROJECT
#include <cslibs_vision/data/matchable.h>
Matcher::Matcher(bool binary, int min_points, double threshold)
: hamming(binary), threshold(threshold), min_points(min_points)
{
if(binary) {
#if CV_MAJOR_VERSION <= 2 && CV_MINOR_VERSION < 4
descriptor_matcher = new cv::BruteForceMatcher<cv::HammingSse>();
#else
descriptor_matcher = new cv::BFMatcher(cv::NORM_HAMMING);
#endif
} else {
descriptor_matcher = new cv::FlannBasedMatcher();
}
}
double Matcher::matchFiltered(Matchable* a, const Matchable* b,
std::vector<cv::KeyPoint> &filtered_a_keypoints,
std::vector<cv::KeyPoint> &filtered_b_keypoints,
std::vector<std::vector<cv::DMatch> > * match_out) const
{
filtered_a_keypoints.clear();
filtered_b_keypoints.clear();
std::vector<std::vector<cv::DMatch> > &matches = a->last_matches;
matches.clear();
match(a, b, matches);
double min_dist = 200;
double max_dist = -INFINITY;
for(int i=0, n = matches.size(); i < n; ++i) {
if(matches[i].empty())
continue;
double dist = matches[i][0].distance;
if(dist < min_dist) min_dist = dist;
if(dist > max_dist) max_dist = dist;
}
for(int i=0, n = matches.size(); i < n; ++i) {
if(matches[i].empty())
continue;
if(matches[i].size() >= 2) {
double ratio = matches[i][0].distance / matches[i][1].distance;
if(ratio > 0.8) {
continue;
}
}
cv::DMatch& m = matches[i][0];
if(m.distance < 2.0 * min_dist) {
filtered_a_keypoints.push_back(a->keypoints[m.queryIdx]);
filtered_b_keypoints.push_back(b->keypoints[m.trainIdx]);
} else {
matches[i].clear();
}
}
if(match_out) {
match_out->insert(match_out->begin(), matches.begin(), matches.end());
}
double ratio = filtered_a_keypoints.size() / (double) a->keypoints.size();
return ratio;
}
void Matcher::match(const Matchable* a, const Matchable* b, std::vector<std::vector<cv::DMatch> > &out) const
{
int k = std::min(4, std::min(a->descriptors.rows-1, b->descriptors.rows-1));
if(k > 0) {
if(hamming) {
//descriptor_matcher->radiusMatch(a->descriptors, b->descriptors, out, (double) dist);
descriptor_matcher->knnMatch(a->descriptors, b->descriptors, out, k);
} else {
// descriptor_matcher->radiusMatch(a->descriptors, b->descriptors, out, dist / 100.0);
descriptor_matcher->knnMatch(a->descriptors, b->descriptors, out, k);
}
}
/// SIFT:
/// To increase robustness, matches are rejected for those keypoints for which the
/// ratio of the nearest neighbor distance to the second nearest
/// neighbor distance is greater than 0.8. This discards many of the
/// false matches arising from background clutter.
for(std::vector<std::vector<cv::DMatch> >::iterator it = out.begin(); it != out.end();) {
std::vector<cv::DMatch> &matches = *it;
if(matches.size() <= 1) {
it = out.erase(it);
} else {
double ratio = matches[0].distance / matches[1].distance;
if(ratio > threshold) {
it = out.erase(it);
} else {
++it;
// here we drop all matches that are "worse"
// TODO: somehow also use the other matches, if they are not "too bad"
while(matches.size() > 1) {
matches.pop_back();
}
}
}
}
}
namespace
{
template <typename T>
void anti_filter(Matchable* positive, std::deque<unsigned> &delete_indices)
{
unsigned to_be_removed = delete_indices.size();
unsigned orig_size = positive->keypoints.size();
unsigned new_size = orig_size - to_be_removed;
unsigned cols = positive->descriptors.cols;
int type = positive->descriptors.type();
std::vector<cv::KeyPoint> keypoints_output;
keypoints_output.reserve(new_size);
cv::Mat descriptors_output(new_size, cols, type);
// sort the indices asscending
std::sort(delete_indices.begin(), delete_indices.end());
// iterate the original data and copy rows that should not be deleted
unsigned row_output = 0;
for(unsigned row_input = 0; row_input < orig_size; ++row_input) {
if(!delete_indices.empty() && delete_indices.front() == row_input) {
// this row should be deleted
// remove this index from the deque
delete_indices.pop_front();
} else {
// this row should be kept
keypoints_output.push_back(positive->keypoints[row_input]);
for(unsigned col = 0; col < cols; ++col) {
descriptors_output.at<T>(row_output, col) = positive->descriptors.at<T>(row_input, col);
}
row_output++;
}
}
assert(row_output == new_size);
// copy back the new data
positive->keypoints = keypoints_output;
positive->descriptors = descriptors_output;
}
}
void Matcher::matchAntiFilter(Matchable* positive, const Matchable* negative) const
{
std::vector<std::vector<cv::DMatch> > matches;
match(positive, negative, matches);
// find all indices to be deleted
std::deque<unsigned> delete_indices;
for(int i=0, n = matches.size(); i < n; ++i) {
if(matches[i].empty()) {
// doesn't match a negative example -> don't delete
continue;
}
cv::DMatch& m = matches[i][0];
delete_indices.push_back(m.queryIdx);
}
unsigned to_be_removed = delete_indices.size();
if(to_be_removed > 0) {
int type = positive->descriptors.type();
assert(type == CV_8U || type == CV_32F);
if(type ==CV_8U) {
anti_filter<unsigned char>(positive, delete_indices);
} else {
anti_filter<float>(positive, delete_indices);
}
}
}
|
12452bf2f6e38d19cb3d2ccbc43f295a599ad141 | 453a63aabdaa46e372cb8617d30ed6b06faca52d | /lab9/NDvector.h | d9872fce48d321e1f2df8cb9d418f386c0d2ef5e | [] | no_license | alam0/CPP | 5d140806bd304930e551f5c39ebdfa9b956839e1 | a973a04af16a514f9e9cbd5d89d8a7737350d66b | refs/heads/master | 2020-03-18T02:26:51.909882 | 2018-05-20T22:14:14 | 2018-05-20T22:14:14 | 134,191,021 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,651 | h | NDvector.h | #ifndef NDVECTOR_H
#define NDVECTOR_H
#include <vector>
#include <math.h>
#include <iostream>
#include <fstream>
#include <cstdlib>
#include <algorithm>
#include <iterator>
using namespace std;
//Puzzle class definition
template <typename T>
class NDvector{
public:
NDvector(int size = 10); //non-default constructor
NDvector(const NDvector<T> & ); //copy constructor
~NDvector(); //destructor
int getSize() const; //return size
const NDvector &operator=( const NDvector<T> &); //assignment operator
T &operator[](int); //overload []
T pushback(T);
T popback();
T back();
void clear();
private:
int size; //size of pointer based vector
int capacity; //max
T *ptr; // pointer to first element of pointer based vector
};
// NDvector non-default constructor
template <typename T>
NDvector<T>::NDvector(int size){
ptr = new T[size]; //create space for pointer-based vector
}
//copy constructor
template <typename T>
NDvector<T>::NDvector(const NDvector<T> &NDvectorToCopy ) : size( NDvectorToCopy.size ) {
ptr = new T[ size ]; //create space for pointer-based vector
for(int i = 0; i < size; i++)
ptr[i] = NDvectorToCopy.ptr[i]; //copy into object
}
//destructor
template <typename T>
NDvector<T>::~NDvector() {
delete [] ptr; //release pointer-based vector space
}
//function getSize
template <typename T>
int NDvector<T>::getSize() const{
return (size); //number of elements in Vector
}
//function operator=
template <typename T>
const NDvector<T> &NDvector<T>::operator=(const NDvector<T> &right){
if(&right != this){ //avoid self-assignment
if(size != right.size){
delete [] ptr; //release space
size = right.size; //resize object
ptr = new T[size]; //create space for vector copy
} //end inner if
for(int i = 0; i < size; i++)
ptr[i] = right.ptr[i]; //copy vector into object
}
return (*this); //enables x = y = z, for example
}
template <typename T>
T &NDvector<T>::operator[](int element){
T value = ptr[element];
return(value);
}
//push_back
template <typename T>
T NDvector<T>::pushback(T value){
if(size < capacity){
//add it to the back
ptr[size] = value;
size++;
}else if(size == capacity){
//create a new vector with a larger capacity, copy, then add
T *ptrV2;
ptrV2 = new T[size*2];
ptrV2 = NDvector(ptr);
ptr[size] = value;
size++;
}
}
//pop_back, remove from back
template <typename T>
T NDvector<T>::popback(){
ptr[size-1] = NULL;
size--;
}
//back
template <typename T>
T NDvector<T>::back(){
return ptr[size-1];
}
//clear
template <typename T>
void NDvector<T>::clear() {
size = 0;
}
#endif
|
a1d21bbbe1d1ba22fc0a4d998f8b787324cbaf4a | 56b8b3eb6011e54c16b7211224b79f8daa33139a | /Algorithms/Tasks.0501.1000/0706.DesignHashMap/solution.cpp | 442fb7015a442c721959ec4626c4bdf496c4de5c | [
"MIT"
] | permissive | stdstring/leetcode | 98aee82bc080705935d4ce01ff1d4c2f530a766c | 60000e9144b04a2341996419bee51ba53ad879e6 | refs/heads/master | 2023-08-16T16:19:09.269345 | 2023-08-16T05:31:46 | 2023-08-16T05:31:46 | 127,088,029 | 0 | 0 | MIT | 2023-02-25T08:46:17 | 2018-03-28T05:24:34 | C++ | UTF-8 | C++ | false | false | 3,020 | cpp | solution.cpp | #include <algorithm>
#include <list>
#include <vector>
#include "gtest/gtest.h"
namespace
{
class MyHashMap
{
public:
MyHashMap() : _buckets(InitSize)
{
}
void put(int key, int value)
{
std::list<std::pair<int, int>> &bucket(_buckets[hash(key) % _buckets.size()]);
auto const iterator = find(bucket, key);
if (iterator == bucket.end())
bucket.emplace_back(key, value);
else
iterator->second = value;
if (bucket.size() > BucketSize)
split();
}
int get(int key)
{
std::list<std::pair<int, int>> const &bucket(_buckets[hash(key) % _buckets.size()]);
auto const iterator = find(bucket, key);
return iterator == bucket.cend() ? -1 : iterator->second;
}
void remove(int key)
{
std::list<std::pair<int, int>> &bucket(_buckets[hash(key) % _buckets.size()]);
auto const iterator = find(bucket, key);
if (iterator != bucket.end())
bucket.erase(iterator);
}
private:
static constexpr size_t InitSize = 8;
static constexpr size_t BucketSize = 8;
std::vector<std::list<std::pair<int, int>>> _buckets;
std::list<std::pair<int, int>>::iterator find(std::list<std::pair<int, int>> &bucket, int key) const
{
return std::find_if(bucket.begin(), bucket.end(), [key](std::pair<int, int> const &entry){ return entry.first == key; });
}
[[nodiscard]] std::list<std::pair<int, int>>::const_iterator find(std::list<std::pair<int, int>> const &bucket, int key) const
{
return std::find_if(bucket.cbegin(), bucket.cend(), [key](std::pair<int, int> const &entry){ return entry.first == key; });
}
[[nodiscard]] int hash(int key) const
{
return key;
}
void split()
{
const size_t bucketsSize = _buckets.size();
for (size_t index = 0; index < bucketsSize; ++index)
_buckets.emplace_back();
for (size_t index = 0; index < _buckets.size(); ++index)
{
const int bucketKey = static_cast<int>(index);
for (auto iterator = _buckets[index].begin(); iterator != _buckets[index].end();)
{
const int currentKey = static_cast<int>(iterator->first % _buckets.size());
if (currentKey != bucketKey)
{
_buckets[currentKey].emplace_back(iterator->first, iterator->second);
iterator = _buckets[index].erase(iterator);
}
else
++iterator;
}
}
}
};
}
namespace DesignHashMapTask
{
TEST(DesignHashSetTaskTests, Examples)
{
MyHashMap hashMap;
ASSERT_NO_THROW(hashMap.put(1, 1));
ASSERT_NO_THROW(hashMap.put(2, 2));
ASSERT_EQ(1, hashMap.get(1));
ASSERT_EQ(-1, hashMap.get(3));
ASSERT_NO_THROW(hashMap.put(2, 1));
ASSERT_EQ(1, hashMap.get(2));
ASSERT_NO_THROW(hashMap.remove(2));
ASSERT_EQ(-1, hashMap.get(2));
}
} |
ca434d8b51e2f8f65be467735b55a74cdd5c23b0 | 271ef3d39d8c80dc3cf54370c2efcce26a94443f | /src/intIOTcontroller.cpp | c7bce16aeb5bda4e369bd6c3e8d790accc5d87c4 | [] | no_license | hfjg/intIOTcontroller | f885eed3bc9872ec4fb9acfa67c3d719f902d297 | 539d3fadbd4be6e7854b6016e4779a490d8b6477 | refs/heads/main | 2023-04-26T17:56:01.879491 | 2021-05-17T13:55:55 | 2021-05-17T13:55:55 | 368,189,900 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,193 | cpp | intIOTcontroller.cpp | #include <Arduino.h>
#include "intIOTcontroller.h"
// constructor
intIOTcontroller::intIOTcontroller(){
_type = CON_SWITCHING;
_inverted = 0;
_hyst = 0;
_lockup = 200;
_outMin = 0;
_outMax = 255;
_esum = 0;
_devOld = 0;
};
void intIOTcontroller::setup(eControllerType t, uint8_t inverted, int16_t hysteresis){
_type = t;
_inverted = inverted;
_hyst = hysteresis;
}
void intIOTcontroller::setup(eControllerType t, uint8_t inverted, int16_t kp, int16_t ki, int16_t kd ){
_type = t;
_inverted = inverted;
_lockup = 100;
_kp = kp; _ki = ki; _kd = kd;
}
void intIOTcontroller::run(void){
switch(_type){
case CON_SWITCHING:
if (_processValue > _setpoint+_hyst){
_output = (_inverted) ? 1 : 0;
}
else if (_processValue < _setpoint-_hyst){
_output = (_inverted) ? 0 : 1;
}
break;
case CON_PID:
_dev = _setpoint - _processValue;
if (_inverted != 0) _dev = -_dev;
_esum += _dev;
// lock windup
if (_esum >= _lockup)_esum=_lockup;
else if(_esum < -_lockup) _esum=-_lockup;
_output =
(_dev * _kp + _esum * _ki + (_dev-_devOld)*_kd)/100;
_devOld = _dev;
// limit output
if (_output > _outMax)
_output = _outMax;
else if (_output < _outMin)
_output = _outMin;
break;
default:
break;
}
}
void intIOTcontroller::setSetpoint(int16_t setpoint){
_setpoint = setpoint;
}
int16_t intIOTcontroller::getSetpoint(void){
return _setpoint;
}
void intIOTcontroller::setProcessValue(int16_t procVal){
_processValue = procVal;
}
int16_t intIOTcontroller::getProcessValue(void){
return _processValue;
}
void intIOTcontroller::setLockup(int32_t lockup){
_lockup = lockup;
}
int32_t intIOTcontroller::getLockup(void){
return _lockup;
}
int16_t intIOTcontroller::getOutput(void){
return _output;
}
|
0ad6ca095d0c956cfc54ab81f41aa1353b0dcda7 | 4df6ecf1ae07714e4be39c77933ed18e27333659 | /Projekat/artikli.h | addc8a14a4f4978e278ba599dde0724943eb3c34 | [] | no_license | karasalihovicAmela/PJIP_Projekat | 25424123025262ac22d756766f50dd76c0f2b33c | c53ba8b096dfbc73499a9456442cef949a9b8916 | refs/heads/master | 2023-01-04T14:12:33.433625 | 2020-11-04T11:39:40 | 2020-11-04T11:39:40 | 309,984,743 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,248 | h | artikli.h | #ifndef ARTIKLI_H_INCLUDED
#define ARTIKLI_H_INCLUDED
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class Artikal{
private:
float cijena;
string nazivArtikla;
string proizvodjac;
int brojArtikla;
public:
string vrstaArtikla;
Artikal(){};
Artikal(float cj, string nA, string pro, string vA, int bA): cijena(cj), nazivArtikla (nA), proizvodjac (pro), vrstaArtikla(vA), brojArtikla(bA) {};
float getCijena(){
return cijena;
}
string getNaziv(){
return nazivArtikla;
}
string getProizvodjac(){
return proizvodjac;
}
int getBroj(){
return brojArtikla;
}
void setCijena(float iznos){
cijena = iznos;
}
void setNaziv(string noviNaziv){
nazivArtikla = noviNaziv;
}
void setProizvodjac(string noviProizvodjac){
proizvodjac = noviProizvodjac;
}
void setBroj(int noviBroj){
brojArtikla = noviBroj;
}
void unosArtikla(Artikal& a, istream& cin);
void ispisArtikla(Artikal& a);
void izmijeniArtikle(vector<Artikal>& a);
void obrisiArtikle(vector<Artikal>& artikli);
void Artikli(vector<Artikal>& artikli);
};
#endif // ARTIKLI_H_INCLUDED
|
cfec2ceab22f6dbff39294851085bd7ca7a5db06 | 4984b18b6778035cdc90a5052b1ed05cc541b125 | /CS440/CS440/Scenes.cpp | bb5aad5a35c89b982e69b43a89a1c19089fc8011 | [] | no_license | M-a-c/Conquers | aebf1c075421097052b3b6599d4d668c9011232a | a8919d92e6315278c3f5ab2f4f68df2489f89250 | refs/heads/master | 2021-01-20T11:16:29.630857 | 2016-04-18T00:11:50 | 2016-04-18T00:11:50 | 50,860,998 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 492 | cpp | Scenes.cpp | #ifndef SCENE_H
#define SCENE_H
#include <SFML/Graphics.hpp>
#include <string>
#include <iostream>
#include <SFML/Audio.hpp>
#include "Failure.hpp"
using std::string;
class Scene:public Failure
{
public:
void setBackground(string filePath)
{
if (!background.loadFromFile(filePath)){
imageFail_important(filePath);
}
bk.setTexture(background);
}
string name;
sf::Texture background;
sf::Sprite bk;
private:
string getName(){ return name; };
};
#endif |
2c62e6c6d8c86504aa33bc513c94d63840e11b0b | 58acab1a860d568544aa1d4b219b989f638981de | /libs/amount/amount.hpp | efe69e3644c62da84c8419d710918ef19c700ac9 | [
"Apache-2.0"
] | permissive | ertlnagoya/iroha | 591b64d4628d7e8d4dbf98abf0c7c503b1058f68 | 6df2293354ff211ee2002323c7e7a4ed4bc98cdd | refs/heads/master | 2021-05-01T10:01:55.036362 | 2018-02-11T08:28:53 | 2018-02-11T08:28:53 | 121,101,694 | 0 | 1 | null | 2018-02-11T08:19:57 | 2018-02-11T08:19:57 | null | UTF-8 | C++ | false | false | 4,834 | hpp | amount.hpp | /**
* Copyright Soramitsu Co., Ltd. 2017 All Rights Reserved.
* http://soramitsu.co.jp
*
* 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 IROHA_AMOUNT_H
#define IROHA_AMOUNT_H
#include <boost/multiprecision/cpp_dec_float.hpp>
#include <boost/multiprecision/cpp_int.hpp>
#include <cstdint>
#include <nonstd/optional.hpp>
#include <string>
namespace iroha {
using namespace boost::multiprecision;
/**
* Keeps integer and scale values allowing performing math
* operations on them
*/
class Amount {
public:
/**
* Creates Amount with integer = 0 and scale = 0
*/
Amount();
/**
* Amount with integer = amount and scale = 0
* @param amount integer part
*/
Amount(uint256_t amount);
/**
* Amount with provided integer and scale part
* @param amount integer part
* @param precision scale part
*/
Amount(uint256_t amount, uint8_t precision);
Amount(uint64_t first, uint64_t second, uint64_t third, uint64_t fourth);
Amount(uint64_t first,
uint64_t second,
uint64_t third,
uint64_t fourth,
uint8_t precision);
std::vector<uint64_t> to_uint64s();
/**
* Copy constructor
*/
Amount(const Amount &);
Amount &operator=(const Amount &);
/**
* Move constructor
*/
Amount(Amount &&);
Amount &operator=(Amount &&);
uint256_t getIntValue();
uint8_t getPrecision();
static nonstd::optional<Amount> createFromString(std::string str_amount);
/**
* Takes percentage from current amount
* @param percents
* @return
*/
Amount percentage(uint256_t percents) const;
/**
* Takes percentage represented as amount value
* The current scale and scale of percents may differ
* @param percents
* @return
*/
Amount percentage(const Amount &percents) const;
/**
* Sums up two optionals of the amounts.
* Requires to have the same scale.
* Otherwise nullopt is returned
* @param a left term
* @param b right term
* @param optional result
*/
friend nonstd::optional<Amount> operator+(nonstd::optional<Amount> a,
nonstd::optional<Amount> b) {
// check precisions
if (a->precision_ != b->precision_) {
return nonstd::nullopt;
}
auto res = a->add(*b);
// check overflow
if (res.value_ < a->value_ or res.value_ < b->value_) {
return nonstd::nullopt;
}
return res;
}
/**
* Subtracts right term from the left term
* Requires to have the same scale.
* Otherwise nullopt is returned
* @param a left term
* @param b right term
* @param optional result
*/
friend nonstd::optional<Amount> operator-(nonstd::optional<Amount> a,
nonstd::optional<Amount> b) {
// check precisions
if (a->precision_ != b->precision_) {
return nonstd::nullopt;
}
// check if a greater than b
if (a->value_ < b->value_) {
return nonstd::nullopt;
}
return a->subtract(*b);
}
/**
* Comparisons are possible between amounts with different precisions.
*
* @return
*/
bool operator==(const Amount &) const;
bool operator!=(const Amount &) const;
bool operator<(const Amount &) const;
bool operator>(const Amount &) const;
bool operator<=(const Amount &) const;
bool operator>=(const Amount &) const;
std::string to_string() const;
~Amount() = default;
private:
/**
* Support function for comparison operators.
* Returns 0 when equal, -1 when current Amount smaller, and 1 when it is
* greater
* @param other
* @return
*/
int compareTo(const Amount &other) const;
/**
* Sums two amounts.
* @return
*/
Amount add(const Amount &) const;
/**
* Subtracts one amount from another.
* Requires to have the same scale between both amounts.
* Otherwise nullopt is returned
* @return
*/
Amount subtract(const Amount &) const;
boost::multiprecision::uint256_t value_{0};
uint8_t precision_{0};
};
} // namespace iroha
#endif // IROHA_AMOUNT_H
|
44b08b1c0b0f7b7a2a8723099872687fc98e7961 | 9870e11c26c15aec3cc13bc910e711367749a7ff | /ACM/ac_5059.cpp | b533e5eb3a5d0347670fb586dcb73e0e8e6343b2 | [] | no_license | liuq901/code | 56eddb81972d00f2b733121505555b7c7cbc2544 | fcbfba70338d3d10bad2a4c08f59d501761c205a | refs/heads/master | 2021-01-15T23:50:10.570996 | 2016-01-16T16:14:18 | 2016-01-16T16:14:18 | 12,918,517 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 459 | cpp | ac_5059.cpp | #include <cstdio>
typedef long long ll;
ll sg(ll x)
{
if (x==1)
return(0);
if (x%2==0)
return(x/2);
return(sg(x/2));
}
int main()
{
int T;
scanf("%d",&T);
while (T--)
{
int n;
scanf("%d",&n);
ll ans=0;
for (int i=1;i<=n;i++)
{
ll x;
scanf("%lld",&x);
ans^=sg(x);
}
printf("%s\n",ans==0?"NO":"YES");
}
return(0);
}
|
089514a2dd8f46ab6bc7422f9f2ba97f55bc791f | d51acd5bcd82f7b4fc6018748a550a0a3b84e832 | /code/core/include/insieme/core/ir_mapper.h | f9ec4c4fb82168ab56770fea1a938925460fe1ac | [] | no_license | insieme/insieme | 67e7a8f4ca5ac1d7762ccd9e99b22c53b3d117e4 | ee1ee58dfdba40a1ecf204116e7c96e7d13a70d3 | refs/heads/master | 2020-04-03T23:33:26.974364 | 2019-01-25T13:22:43 | 2019-01-25T13:22:43 | 9,626,931 | 31 | 9 | null | 2018-08-06T16:32:56 | 2013-04-23T15:50:23 | C | UTF-8 | C++ | false | false | 5,059 | h | ir_mapper.h | /**
* Copyright (c) 2002-2017 Distributed and Parallel Systems Group,
* Institute of Computer Science,
* University of Innsbruck, Austria
*
* This file is part of the INSIEME Compiler and Runtime System.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*
* If you require different license terms for your intended use of the
* software, e.g. for proprietary commercial or industrial use, please
* contact us at:
* insieme@dps.uibk.ac.at
*
* We kindly ask you to acknowledge the use of this software in any
* publication or other disclosure of results by referring to the
* following citation:
*
* H. Jordan, P. Thoman, J. Durillo, S. Pellegrini, P. Gschwandtner,
* T. Fahringer, H. Moritsch. A Multi-Objective Auto-Tuning Framework
* for Parallel Codes, in Proc. of the Intl. Conference for High
* Performance Computing, Networking, Storage and Analysis (SC 2012),
* IEEE Computer Society Press, Nov. 2012, Salt Lake City, USA.
*/
#pragma once
#include "insieme/utils/unused.h"
#include "insieme/core/forward_decls.h"
#include "insieme/core/ir_pointer.h"
namespace insieme {
namespace core {
/**
* This class constitutes an interface for utility class required for transforming IR nodes.
* Instances of this class represent mappings between nodes. During the transformation process,
* each referenced pointer is replaced by the element it is mapped to.
*/
template <typename Context>
class NodeMapping {
protected:
/**
* Implements the actual mapping operation by mapping the given pointer (and the context information)
* to a new pointer.
*
* @param index the index of the ptr within the parents child list
* @param ptr the pointer to be resolved
* @return the pointer the given pointer is mapped to by this mapper
*/
virtual const NodePtr mapElement(unsigned index, const NodePtr& ptr, Context& c) = 0;
public:
/**
* A virtual destructor of the mapping for a proper cleanup.
*/
virtual ~NodeMapping(){};
/**
* A generic version of the map operation to be applied on a root node.
*/
template <typename T>
inline Pointer<T> map(const Pointer<T>& ptr, Context& c) {
return map<T>(0, ptr, c);
}
/**
* A generic version of the map operation handling pointer types properly.
*/
template <typename T>
inline Pointer<T> map(unsigned index, const Pointer<T>& ptr, Context& c) {
// short-cut for null
if(!ptr) { return Pointer<T>(); }
// map and cast
return mapElement(index, ptr, c).template as<Pointer<T>>();
}
/**
* Obtains a container of pointers referencing clones of nodes referenced by a given
* container of pointers. Thereby, annotations are properly preserved and isolated.
*
* @param container the container including the pointers to be cloned
* @return a new container including pointers referencing clones of the nodes referenced
* by the original container.
*/
NodeList mapAll(const NodeList& container, Context& c) {
NodeList res;
auto first = container.begin();
auto last = container.end();
auto out = inserter(res, res.end());
unsigned counter = 0;
for(auto it = first; it != last; ++it) {
*out = map(counter++, *it, c);
out++;
}
return res;
}
};
class SimpleNodeMapping : public NodeMapping<int> {
public:
virtual const NodePtr mapElement(unsigned index, const NodePtr& ptr, int&) final override {
return mapElement(index, ptr);
}
virtual const NodePtr mapElement(unsigned index, const NodePtr& ptr) = 0;
template <typename T>
inline Pointer<T> map(const Pointer<T>& ptr) {
int ctxt = 0;
return NodeMapping<int>::map<T>(0, ptr, ctxt);
}
template <typename T>
inline Pointer<T> map(unsigned index, const Pointer<T>& ptr) {
int ctxt = 0;
return NodeMapping<int>::map(index, ptr, ctxt);
}
NodeList mapAll(const NodeList& container) {
int ctxt = 0;
return NodeMapping<int>::mapAll(container, ctxt);
}
};
template <typename Lambda>
class LambdaNodeMapper : public SimpleNodeMapping {
Lambda lambda;
public:
LambdaNodeMapper(Lambda lambda) : lambda(lambda){};
const NodePtr mapElement(unsigned index, const NodePtr& ptr) {
return lambda(index, ptr);
}
};
template <typename Lambda>
LambdaNodeMapper<Lambda> makeLambdaMapper(Lambda lambda) {
return LambdaNodeMapper<Lambda>(lambda);
}
} // end namespace core
} // end namespace insieme
|
8f7ab63ad30838c01b2928b616d7624371d937a4 | afefb76c4d19d6a017382e299d6d825fca1e0940 | /enableddelegate.cpp | 34f86db896f57183543b892a70729c93be0203e4 | [] | no_license | FLAME-HPC/flame_visualiser | da9d228346c3e5c4b5dd16fdc828bbacef9335ca | 86f9f589939673bb4594705aaae3062697d1a8f0 | refs/heads/master | 2020-06-28T16:49:41.646166 | 2017-11-20T15:04:34 | 2017-11-20T15:04:34 | 74,488,278 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,273 | cpp | enableddelegate.cpp | /*!
* \file enableddelegate.cpp
* \author Simon Coakley
* \date 2012
* \copyright Copyright (c) 2012 University of Sheffield
* \brief Implementation of enabled delegate
*/
#include <QCheckBox>
#include "./enableddelegate.h"
EnabledDelegate::EnabledDelegate(QObject * parent)
: QItemDelegate(parent) {
}
QWidget *EnabledDelegate::createEditor(QWidget *parent,
const QStyleOptionViewItem &/*option*/,
const QModelIndex &/*index*/) const {
QCheckBox *editor = new QCheckBox(parent);
return editor;
}
void EnabledDelegate::setEditorData(QWidget *editor,
const QModelIndex &index) const {
bool value = index.data().toBool();
QCheckBox *checkBox = static_cast<QCheckBox*>(editor);
emit(checkBox->setChecked(value));
}
void EnabledDelegate::setModelData(QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const {
QCheckBox *checkBox = static_cast<QCheckBox*>(editor);
bool value = checkBox->isChecked();
model->setData(index, value, Qt::EditRole);
}
void EnabledDelegate::updateEditorGeometry(QWidget *editor,
const QStyleOptionViewItem &option, const QModelIndex &/*index*/) const {
editor->setGeometry(option.rect);
}
|
090ce95e0145b97f449a65fff19746f1f0aa920b | b175eddaf939281f164c2fbb39b55f85cfa90be0 | /Solutions/ACBScoreBoard/main.cpp | a2f2f18bace92169e81cfe7cadb67320ef684e87 | [] | no_license | AbdelrhmanKhater/Icons | 96b3f42504157c3089ceeb708b9b92ad89c18c88 | ea43233aab70b6b931efe76e349ee0684410a766 | refs/heads/master | 2020-03-07T01:31:54.176100 | 2018-03-28T19:17:12 | 2018-03-28T19:17:12 | 127,185,831 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,479 | cpp | main.cpp | #include <iostream>
#include <algorithm>
#include <cstdlib>
#include <numeric>
#include <string.h>
#include <string>
#include <vector>
#include <set>
#include <cmath>
#include <stack>
#include <queue>
#include <stdio.h>
using namespace std;
struct sub
{
int st, cid, pid, f;
};
struct contestant
{
int cid, nsp, t;
};
bool cmp(sub i, sub j)
{
if (i.cid != j.cid)
return i.cid < j.cid;
if (i.pid != j.pid)
return i.pid < j.pid;
return i.st < j.st;
}
bool cmp1(contestant i, contestant j)
{
if (i.nsp != j.nsp)
return i.nsp > j.nsp;
if (i.t != j.t)
return i.t < j.t;
return i.cid < j.cid;
}
sub subs[1005], subs1[1005];
contestant contestants[105];
contestant contestants1[105];
int result[15][105], last_result[15][105];
int c, p , s, t;
void Greedy_Solve()
{
int cur_id = subs[0].cid, cur_p = subs[0].pid ;
int cur_sum = 0, cur_f = subs[0].f, cur_nps = 0;
int last_f = 0;
for (int i = 0; i < s; i++)
{
cur_f = subs[i].f;
if (cur_id != subs[i].cid)
{
contestants[cur_id - 1].cid = cur_id;
contestants[cur_id - 1].nsp = cur_nps;
cur_id = subs[i].cid;
cur_p = subs[i].pid;
last_f = 0;
cur_sum = 0;
cur_nps = 0;
}
else if (cur_p != subs[i].pid)
{
cur_p = subs[i].pid;
cur_sum = 0;
last_f = 0;
}
if (!cur_f && !last_f)
cur_sum += 20;
else if(cur_f && !last_f)
{
last_f = 1;
cur_sum += subs[i].st;
contestants[cur_id - 1].t += cur_sum;
cur_nps++;
}
}
contestants[cur_id - 1].cid = cur_id;
contestants[cur_id - 1].nsp = cur_nps;
}
int main()
{
std::ios::sync_with_stdio(false);
cin >> t;
while(t--)
{
cin >> c >> p >> s;
for (int i = 1; i <= c; i++)
{
contestants[i - 1].cid = i;
contestants[i - 1].nsp = 0;
contestants[i - 1].t = 0;
}
for (int i = 0; i < s; i++)
cin >> subs[i].st >> subs[i].cid >> subs[i].pid >> subs[i].f;
sort(subs, subs + s, cmp);
Greedy_Solve();
sort(contestants, contestants + c, cmp1);
for (int i = 0; i < c; i++)
cout << contestants[i].cid << " " << contestants[i].nsp << " " << contestants[i].t << "\n";
}
return 0;
}
|
0f7f6a43d9dec8fa21a6e7ea06dad948adec5499 | 3a1190c8227f299f8281604d063e76f0b7fc69e5 | /Striver SDE Sheet/Day - 2 (Arrays)/Best Time to Buy and Sell Stock - 1.cpp | d2857a3f765b8c41c3416026516cbe148e8696db | [
"MIT"
] | permissive | niraj9504/Striver-Sheets-Resources | a57fe4eefea499a76b31e62e9a2cd8ef6c8916d1 | 80757b212abe479f3975b890398a8d877ebfd41e | refs/heads/main | 2023-07-08T21:28:37.513429 | 2021-08-16T19:01:29 | 2021-08-16T19:01:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 398 | cpp | Best Time to Buy and Sell Stock - 1.cpp | class Solution {
public:
int maxProfit(vector<int>& prices) {
int max_profit = 0, min_price = INT_MAX;
int N = prices.size();
for(int i = 0; i<N; i++){
if(prices[i] < min_price) min_price = prices[i];
else {
max_profit = max(max_profit, prices[i] - min_price);
}
}
return max_profit;
}
};
|
8ce38d2807eacf7cd0de5fc7c7b4b64a3edf39ed | 4352b5c9e6719d762e6a80e7a7799630d819bca3 | /tutorials/eulerVortex.twitch/eulerVortex.cyclic.twitch.test.test/4.05/e | 0cc0f77aa4fcee5aafafacd2453a36c4512a1a5c | [] | 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 | 179,743 | e | /*--------------------------------*- 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 "4.05";
object e;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
22500
(
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.28
1006.28
1006.27
1006.27
1006.27
1006.26
1006.26
1006.26
1006.26
1006.26
1006.26
1006.27
1006.27
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.27
1006.27
1006.26
1006.26
1006.25
1006.25
1006.25
1006.24
1006.24
1006.25
1006.25
1006.25
1006.26
1006.26
1006.27
1006.27
1006.27
1006.28
1006.28
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.27
1006.27
1006.26
1006.25
1006.24
1006.23
1006.23
1006.22
1006.22
1006.22
1006.22
1006.22
1006.22
1006.23
1006.24
1006.24
1006.25
1006.26
1006.26
1006.27
1006.28
1006.28
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.27
1006.26
1006.25
1006.24
1006.23
1006.21
1006.2
1006.19
1006.18
1006.18
1006.17
1006.17
1006.18
1006.19
1006.19
1006.2
1006.22
1006.23
1006.24
1006.25
1006.26
1006.26
1006.27
1006.28
1006.28
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.27
1006.26
1006.24
1006.23
1006.21
1006.19
1006.17
1006.15
1006.14
1006.12
1006.11
1006.11
1006.11
1006.12
1006.13
1006.14
1006.16
1006.17
1006.19
1006.21
1006.22
1006.24
1006.25
1006.26
1006.27
1006.28
1006.28
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.27
1006.25
1006.24
1006.22
1006.2
1006.17
1006.14
1006.11
1006.08
1006.05
1006.03
1006.01
1006
1006.01
1006.02
1006.03
1006.06
1006.08
1006.11
1006.14
1006.17
1006.19
1006.21
1006.23
1006.24
1006.26
1006.27
1006.28
1006.28
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.27
1006.25
1006.24
1006.21
1006.18
1006.15
1006.11
1006.06
1006.01
1005.96
1005.92
1005.88
1005.86
1005.84
1005.85
1005.86
1005.89
1005.93
1005.97
1006.02
1006.06
1006.1
1006.14
1006.17
1006.2
1006.22
1006.24
1006.25
1006.27
1006.28
1006.28
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.28
1006.27
1006.26
1006.24
1006.21
1006.18
1006.13
1006.08
1006.01
1005.94
1005.86
1005.79
1005.72
1005.66
1005.62
1005.6
1005.6
1005.62
1005.67
1005.73
1005.8
1005.87
1005.94
1006.01
1006.06
1006.11
1006.16
1006.19
1006.22
1006.24
1006.25
1006.27
1006.28
1006.29
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.27
1006.26
1006.24
1006.21
1006.17
1006.12
1006.05
1005.97
1005.87
1005.76
1005.64
1005.52
1005.41
1005.32
1005.25
1005.22
1005.23
1005.26
1005.33
1005.42
1005.53
1005.64
1005.76
1005.86
1005.95
1006.03
1006.09
1006.14
1006.18
1006.21
1006.24
1006.25
1006.27
1006.28
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.26
1006.25
1006.22
1006.18
1006.12
1006.04
1005.94
1005.81
1005.66
1005.48
1005.3
1005.12
1004.95
1004.81
1004.71
1004.66
1004.66
1004.72
1004.83
1004.97
1005.14
1005.31
1005.48
1005.64
1005.78
1005.9
1006
1006.08
1006.13
1006.18
1006.21
1006.24
1006.25
1006.27
1006.28
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.29
1006.28
1006.27
1006.25
1006.23
1006.19
1006.13
1006.04
1005.92
1005.77
1005.57
1005.34
1005.09
1004.81
1004.53
1004.28
1004.06
1003.91
1003.83
1003.84
1003.93
1004.09
1004.31
1004.56
1004.82
1005.08
1005.32
1005.54
1005.72
1005.86
1005.98
1006.07
1006.13
1006.18
1006.21
1006.24
1006.26
1006.27
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.26
1006.24
1006.21
1006.15
1006.06
1005.93
1005.75
1005.52
1005.24
1004.9
1004.51
1004.1
1003.68
1003.3
1002.98
1002.75
1002.63
1002.65
1002.78
1003.02
1003.35
1003.72
1004.12
1004.51
1004.87
1005.18
1005.45
1005.67
1005.84
1005.97
1006.06
1006.13
1006.18
1006.22
1006.24
1006.26
1006.28
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.27
1006.26
1006.23
1006.17
1006.08
1005.95
1005.77
1005.51
1005.17
1004.76
1004.26
1003.69
1003.08
1002.47
1001.91
1001.43
1001.1
1000.93
1000.96
1001.16
1001.51
1001.99
1002.54
1003.12
1003.69
1004.22
1004.69
1005.08
1005.4
1005.65
1005.83
1005.97
1006.07
1006.14
1006.19
1006.23
1006.25
1006.27
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.27
1006.24
1006.2
1006.12
1006
1005.81
1005.54
1005.17
1004.69
1004.09
1003.37
1002.55
1001.66
1000.78
999.964
999.285
998.807
998.575
998.608
998.899
999.414
1000.1
1000.9
1001.74
1002.56
1003.32
1004
1004.56
1005.02
1005.38
1005.65
1005.85
1005.99
1006.09
1006.15
1006.2
1006.23
1006.26
1006.27
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.27
1006.26
1006.23
1006.17
1006.06
1005.88
1005.61
1005.23
1004.71
1004.03
1003.17
1002.14
1000.97
999.72
998.467
997.313
996.357
995.686
995.362
995.411
995.823
996.552
997.527
998.656
999.848
1001.02
1002.1
1003.06
1003.86
1004.51
1005.01
1005.4
1005.67
1005.87
1006.01
1006.11
1006.17
1006.21
1006.24
1006.27
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.27
1006.26
1006.21
1006.12
1005.97
1005.72
1005.35
1004.82
1004.09
1003.13
1001.93
1000.49
998.856
997.109
995.369
993.771
992.449
991.521
991.07
991.135
991.704
992.716
994.072
995.646
997.31
998.946
1000.46
1001.8
1002.92
1003.82
1004.53
1005.06
1005.45
1005.72
1005.91
1006.04
1006.13
1006.19
1006.23
1006.25
1006.27
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.28
1006.28
1006.28
1006.27
1006.25
1006.19
1006.06
1005.85
1005.51
1005
1004.27
1003.27
1001.95
1000.3
998.313
996.069
993.684
991.315
989.14
987.338
986.066
985.441
985.518
986.286
987.663
989.515
991.672
993.958
996.208
998.295
1000.13
1001.68
1002.92
1003.89
1004.62
1005.15
1005.53
1005.79
1005.96
1006.08
1006.16
1006.21
1006.24
1006.26
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.28
1006.27
1006.24
1006.15
1005.98
1005.69
1005.23
1004.54
1003.56
1002.21
1000.42
998.179
995.502
992.488
989.295
986.127
983.211
980.783
979.058
978.196
978.28
979.296
981.137
983.624
986.529
989.614
992.659
995.486
997.976
1000.07
1001.76
1003.07
1004.06
1004.77
1005.28
1005.63
1005.86
1006.02
1006.12
1006.18
1006.23
1006.25
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.28
1006.28
1006.28
1006.28
1006.27
1006.23
1006.11
1005.88
1005.49
1004.88
1003.97
1002.66
1000.86
998.482
995.501
991.963
987.997
983.802
979.627
975.768
972.537
970.231
969.07
969.166
970.498
972.923
976.202
980.039
984.122
988.161
991.92
995.237
998.029
1000.28
1002.03
1003.34
1004.29
1004.96
1005.42
1005.73
1005.94
1006.07
1006.15
1006.21
1006.24
1006.27
1006.28
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.28
1006.28
1006.28
1006.28
1006.27
1006.21
1006.05
1005.75
1005.24
1004.44
1003.25
1001.54
999.184
996.079
992.201
987.623
982.503
977.076
971.65
966.612
962.388
959.38
957.88
958.02
959.759
962.904
967.145
972.105
977.389
982.626
987.515
991.843
995.494
998.443
1000.73
1002.45
1003.7
1004.57
1005.17
1005.58
1005.84
1006.01
1006.12
1006.19
1006.23
1006.26
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.28
1006.28
1006.27
1006.28
1006.29
1006.27
1006.19
1005.98
1005.59
1004.93
1003.91
1002.38
1000.19
997.155
993.178
988.241
982.435
975.937
969.019
962.069
955.611
950.227
946.44
944.601
944.846
947.1
951.109
956.483
962.752
969.425
976.051
982.253
987.765
992.433
996.217
999.161
1001.37
1002.97
1004.1
1004.87
1005.39
1005.72
1005.94
1006.07
1006.16
1006.21
1006.25
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.28
1006.27
1006.27
1006.28
1006.3
1006.27
1006.16
1005.9
1005.4
1004.57
1003.29
1001.36
998.583
994.761
989.774
983.618
976.39
968.273
959.584
950.842
942.767
936.122
931.534
929.383
929.794
932.659
937.667
944.34
952.098
960.343
968.526
976.199
983.04
988.861
993.601
997.304
1000.09
1002.11
1003.54
1004.51
1005.16
1005.58
1005.85
1006.02
1006.13
1006.2
1006.24
1006.27
1006.28
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.28
1006.27
1006.27
1006.29
1006.31
1006.28
1006.13
1005.8
1005.18
1004.16
1002.57
1000.18
996.735
992.012
985.892
978.371
969.527
959.542
948.816
938.073
928.272
920.337
914.943
912.468
913.041
916.555
922.666
930.805
940.257
950.277
960.194
969.48
977.768
984.844
990.635
995.183
998.619
1001.12
1002.89
1004.1
1004.9
1005.42
1005.76
1005.97
1006.1
1006.18
1006.23
1006.26
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.28
1006.26
1006.27
1006.3
1006.32
1006.28
1006.1
1005.69
1004.93
1003.69
1001.76
998.853
994.664
988.953
981.599
972.581
961.936
949.855
936.894
924.045
912.5
903.261
896.98
894.036
894.627
898.73
906.008
915.798
927.206
939.278
951.166
962.239
972.088
980.496
987.398
992.847
996.985
1000.02
1002.16
1003.63
1004.61
1005.24
1005.65
1005.9
1006.06
1006.15
1006.21
1006.25
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.27
1006.26
1006.27
1006.3
1006.33
1006.28
1006.07
1005.57
1004.67
1003.19
1000.89
997.411
992.418
985.655
976.996
966.374
953.774
939.435
924.148
909.201
895.932
885.298
877.882
874.137
874.456
878.997
887.473
899.112
912.791
927.273
941.462
954.568
966.129
975.947
983.999
990.373
995.239
998.821
1001.37
1003.12
1004.29
1005.05
1005.53
1005.83
1006.02
1006.13
1006.2
1006.24
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.27
1006.25
1006.27
1006.31
1006.35
1006.29
1006.03
1005.45
1004.4
1002.67
999.971
995.893
990.062
982.22
972.218
959.926
945.274
928.617
911.037
894.075
879.066
866.813
857.862
852.883
852.603
857.42
867.099
880.739
896.963
914.211
931.066
946.509
959.985
971.316
980.552
987.855
993.446
997.582
1000.54
1002.58
1003.95
1004.84
1005.4
1005.76
1005.97
1006.11
1006.18
1006.23
1006.26
1006.28
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.26
1006.25
1006.26
1006.32
1006.37
1006.3
1006
1005.33
1004.13
1002.15
999.044
994.354
987.683
978.771
967.435
953.456
936.743
917.828
898.094
879.221
862.395
848.229
837.365
830.851
829.806
834.825
845.67
861.309
880.151
900.336
920.105
938.146
953.743
966.705
977.165
985.391
991.684
996.353
999.706
1002.03
1003.6
1004.62
1005.27
1005.68
1005.93
1006.08
1006.17
1006.22
1006.26
1006.28
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.32
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.26
1006.24
1006.26
1006.33
1006.39
1006.32
1005.98
1005.23
1003.88
1001.66
998.149
992.859
985.379
975.446
962.829
947.22
928.54
907.54
885.862
865.187
846.464
830.206
817.33
809.341
807.662
812.934
824.829
842.222
863.417
886.364
909.013
929.726
947.553
962.229
973.941
983.07
990.026
995.191
998.911
1001.51
1003.26
1004.41
1005.15
1005.6
1005.88
1006.05
1006.16
1006.22
1006.25
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.32
1006.31
1006.3
1006.3
1006.3
1006.31
1006.29
1006.26
1006.23
1006.25
1006.34
1006.41
1006.34
1005.97
1005.14
1003.66
1001.21
997.33
991.482
983.256
972.392
958.601
941.496
921.047
898.23
874.863
852.522
831.941
813.706
799.138
790.131
788.199
793.836
806.562
825.225
848.179
873.352
898.502
921.687
941.674
958.045
970.99
980.983
988.547
994.15
998.193
1001.03
1002.95
1004.22
1005.03
1005.53
1005.84
1006.03
1006.14
1006.21
1006.25
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.32
1006.31
1006.3
1006.29
1006.3
1006.31
1006.29
1006.25
1006.22
1006.24
1006.34
1006.43
1006.37
1005.98
1005.09
1003.5
1000.85
996.635
990.293
981.417
969.748
954.944
936.558
914.627
890.332
865.573
841.775
819.583
799.813
784.191
774.816
773.063
779.142
792.401
811.738
835.695
862.334
889.353
914.566
936.442
954.356
968.438
979.215
987.309
993.281
997.589
1000.62
1002.68
1004.04
1004.92
1005.47
1005.81
1006.01
1006.13
1006.2
1006.25
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.32
1006.31
1006.3
1006.29
1006.3
1006.31
1006.3
1006.25
1006.21
1006.23
1006.34
1006.45
1006.41
1006.01
1005.08
1003.4
1000.59
996.109
989.361
979.956
967.642
952.036
932.648
909.599
884.215
858.401
833.467
810.1
789.42
773.44
764.249
762.958
769.469
782.974
802.452
826.701
854.028
882.193
908.85
932.197
951.379
966.418
977.85
986.373
992.626
997.13
1000.3
1002.47
1003.9
1004.83
1005.42
1005.77
1005.99
1006.12
1006.2
1006.24
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.32
1006.32
1006.3
1006.29
1006.29
1006.31
1006.31
1006.26
1006.2
1006.22
1006.33
1006.47
1006.45
1006.06
1005.11
1003.38
1000.47
995.79
988.746
978.954
966.18
950.016
929.959
906.204
880.154
853.672
828.012
804.003
783.025
767.194
758.46
757.68
764.533
778.086
797.365
821.396
848.771
877.405
904.889
929.213
949.303
965.048
976.961
985.783
992.219
996.841
1000.09
1002.32
1003.81
1004.77
1005.38
1005.75
1005.98
1006.11
1006.19
1006.24
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.32
1006.32
1006.3
1006.28
1006.29
1006.31
1006.31
1006.26
1006.2
1006.2
1006.31
1006.47
1006.5
1006.14
1005.19
1003.44
1000.49
995.708
988.49
978.468
965.433
948.98
928.617
904.589
878.313
851.583
825.657
801.526
780.715
765.281
756.991
756.562
763.591
777.08
796.031
819.59
846.588
875.141
902.878
927.669
948.262
964.416
976.6
985.571
992.079
996.735
1000.01
1002.26
1003.76
1004.74
1005.36
1005.74
1005.97
1006.11
1006.19
1006.24
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.32
1006.32
1006.3
1006.28
1006.29
1006.31
1006.32
1006.27
1006.2
1006.18
1006.28
1006.47
1006.54
1006.23
1005.32
1003.6
1000.66
995.879
988.623
978.536
965.445
948.973
928.664
904.793
878.728
852.18
826.441
802.631
782.294
767.326
759.317
758.954
765.92
779.248
797.873
820.905
847.302
875.376
902.875
927.644
948.324
964.569
976.792
985.749
992.211
996.817
1000.05
1002.27
1003.76
1004.74
1005.35
1005.74
1005.97
1006.11
1006.19
1006.24
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.32
1006.31
1006.28
1006.28
1006.31
1006.33
1006.29
1006.2
1006.16
1006.24
1006.45
1006.57
1006.33
1005.49
1003.83
1000.98
996.304
989.149
979.168
966.224
949.994
930.08
906.763
881.317
855.358
830.211
807.072
787.425
772.964
765.094
764.523
771.152
784.185
802.486
825.004
850.68
877.983
904.83
929.131
949.494
965.508
977.533
986.308
992.608
997.081
1000.21
1002.37
1003.82
1004.77
1005.37
1005.74
1005.97
1006.11
1006.19
1006.24
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.32
1006.31
1006.28
1006.27
1006.3
1006.33
1006.31
1006.22
1006.14
1006.2
1006.41
1006.59
1006.44
1005.7
1004.14
1001.44
996.967
990.056
980.349
967.743
951.992
932.773
910.36
885.897
860.889
836.673
814.476
795.709
781.864
774.135
773.222
779.301
791.858
809.747
831.694
856.518
882.789
908.618
932.047
951.718
967.191
978.789
987.22
993.247
997.51
1000.49
1002.54
1003.92
1004.82
1005.4
1005.76
1005.98
1006.11
1006.19
1006.24
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.32
1006.32
1006.29
1006.27
1006.29
1006.33
1006.33
1006.24
1006.14
1006.15
1006.35
1006.58
1006.54
1005.92
1004.51
1002.01
997.836
991.307
982.04
969.953
954.884
936.609
915.385
892.214
868.469
845.455
824.41
806.7
793.655
786.219
785.011
790.446
802.341
819.618
840.81
864.579
889.554
914.035
936.237
954.882
969.537
980.498
988.44
994.095
998.08
1000.86
1002.77
1004.06
1004.91
1005.45
1005.79
1006
1006.12
1006.2
1006.24
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.32
1006.31
1006.3
1006.32
1006.32
1006.3
1006.26
1006.28
1006.33
1006.34
1006.27
1006.15
1006.11
1006.27
1006.53
1006.61
1006.15
1004.92
1002.67
998.864
992.842
984.175
972.773
958.558
941.417
921.6
899.967
877.742
856.153
836.423
819.921
807.863
800.939
799.597
804.397
815.475
831.891
852.062
874.525
897.948
920.802
941.482
958.823
972.428
982.577
989.906
995.107
998.761
1001.31
1003.06
1004.24
1005.01
1005.51
1005.83
1006.02
1006.13
1006.2
1006.25
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.32
1006.31
1006.3
1006.31
1006.33
1006.3
1006.27
1006.26
1006.31
1006.35
1006.31
1006.18
1006.09
1006.18
1006.45
1006.63
1006.36
1005.35
1003.37
999.994
994.578
986.658
976.1
962.888
947.017
928.748
908.825
888.319
868.332
850.046
834.852
823.915
817.692
816.39
820.621
830.793
846.139
865.038
885.951
907.592
928.59
947.52
963.344
975.721
984.924
991.548
996.234
999.519
1001.8
1003.37
1004.43
1005.13
1005.58
1005.87
1006.04
1006.15
1006.21
1006.25
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.32
1006.31
1006.3
1006.31
1006.32
1006.32
1006.28
1006.25
1006.29
1006.35
1006.34
1006.22
1006.09
1006.11
1006.33
1006.6
1006.52
1005.76
1004.1
1001.17
996.423
989.367
979.801
967.729
953.229
936.587
918.472
899.813
881.559
864.802
850.966
841.22
835.804
834.658
838.4
847.661
861.823
879.267
898.432
918.104
937.069
954.08
968.236
979.262
987.429
993.289
997.424
1000.32
1002.33
1003.71
1004.65
1005.26
1005.66
1005.91
1006.07
1006.16
1006.22
1006.25
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.32
1006.3
1006.3
1006.32
1006.32
1006.29
1006.25
1006.27
1006.33
1006.36
1006.28
1006.13
1006.06
1006.21
1006.49
1006.59
1006.12
1004.8
1002.33
998.282
992.161
983.709
972.905
959.861
944.889
928.621
911.877
895.43
880.244
867.781
859.24
854.642
853.685
857.017
865.432
878.383
894.249
911.514
929.079
945.893
960.883
973.286
982.895
989.983
995.054
998.627
1001.12
1002.86
1004.05
1004.86
1005.4
1005.74
1005.96
1006.09
1006.18
1006.23
1006.26
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.32
1006.31
1006.3
1006.31
1006.33
1006.3
1006.26
1006.25
1006.3
1006.36
1006.33
1006.19
1006.06
1006.09
1006.34
1006.56
1006.38
1005.43
1003.45
1000.08
994.901
987.633
978.199
966.691
953.42
939.014
924.213
909.594
895.979
884.889
877.525
873.666
872.859
875.853
883.525
895.275
909.473
924.722
940.096
954.711
967.65
978.284
986.473
992.485
996.776
999.796
1001.91
1003.38
1004.39
1005.07
1005.53
1005.82
1006
1006.12
1006.19
1006.24
1006.27
1006.28
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.32
1006.32
1006.3
1006.3
1006.32
1006.32
1006.28
1006.25
1006.27
1006.34
1006.36
1006.26
1006.1
1006.03
1006.17
1006.43
1006.48
1005.93
1004.45
1001.75
997.482
991.399
983.38
973.454
961.902
949.366
936.516
923.701
911.632
901.923
895.673
892.403
891.673
894.417
901.453
911.998
924.445
937.607
950.771
963.207
974.137
983.048
989.865
994.847
998.396
1000.89
1002.64
1003.86
1004.7
1005.27
1005.65
1005.89
1006.05
1006.15
1006.21
1006.25
1006.27
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.32
1006.31
1006.3
1006.31
1006.32
1006.3
1006.26
1006.25
1006.3
1006.36
1006.33
1006.18
1006.04
1006.05
1006.25
1006.43
1006.23
1005.27
1003.23
999.832
994.883
988.25
979.882
970.032
959.372
948.449
937.36
926.815
918.505
913.273
910.412
909.724
912.334
918.806
928.095
938.707
949.765
960.772
971.123
980.147
987.437
992.972
997.003
999.872
1001.89
1003.32
1004.31
1004.99
1005.45
1005.76
1005.96
1006.09
1006.17
1006.22
1006.25
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.32
1006.31
1006.3
1006.3
1006.32
1006.31
1006.28
1006.24
1006.27
1006.33
1006.36
1006.27
1006.11
1006.01
1006.07
1006.26
1006.3
1005.81
1004.42
1001.88
998.008
992.671
985.757
977.552
968.747
959.654
950.168
941.149
934.26
929.903
927.31
926.72
929.317
935.205
943.117
951.835
960.847
969.832
978.254
985.529
991.345
995.727
998.908
1001.17
1002.78
1003.91
1004.7
1005.24
1005.62
1005.86
1006.02
1006.13
1006.19
1006.23
1006.26
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.32
1006.32
1006.31
1006.3
1006.31
1006.32
1006.3
1006.26
1006.25
1006.29
1006.35
1006.33
1006.21
1006.05
1005.99
1006.07
1006.19
1006.03
1005.23
1003.51
1000.68
996.529
990.938
984.315
977.284
969.824
961.808
954.35
948.839
945.171
942.806
942.464
945.092
950.239
956.619
963.463
970.593
977.768
984.468
990.191
994.711
998.092
1000.54
1002.29
1003.54
1004.42
1005.04
1005.46
1005.76
1005.95
1006.08
1006.16
1006.21
1006.25
1006.27
1006.28
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.32
1006.31
1006.3
1006.3
1006.31
1006.31
1006.28
1006.25
1006.26
1006.31
1006.34
1006.29
1006.15
1006.01
1005.96
1006.01
1005.99
1005.62
1004.65
1002.77
999.668
995.324
990.253
984.826
978.735
972.115
966.245
961.947
958.789
956.738
956.774
959.298
963.436
968.205
973.344
978.869
984.501
989.716
994.1
997.518
1000.06
1001.9
1003.22
1004.17
1004.84
1005.32
1005.65
1005.87
1006.02
1006.12
1006.19
1006.23
1006.26
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.32
1006.31
1006.3
1006.3
1006.31
1006.3
1006.27
1006.25
1006.27
1006.31
1006.32
1006.25
1006.11
1005.97
1005.89
1005.84
1005.71
1005.26
1004.11
1001.93
998.827
995.247
991.151
986.224
981.029
976.665
973.291
970.554
968.972
969.35
971.452
974.367
977.656
981.432
985.693
990.053
994.016
997.278
999.787
1001.65
1003
1003.98
1004.69
1005.19
1005.55
1005.8
1005.97
1006.09
1006.16
1006.21
1006.24
1006.26
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.32
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.26
1006.26
1006.28
1006.31
1006.3
1006.21
1006.06
1005.9
1005.78
1005.71
1005.47
1004.74
1003.32
1001.4
999.064
995.987
992.183
988.443
985.314
982.577
980.318
979.282
979.742
981.108
982.851
985.044
987.884
991.194
994.511
997.432
999.78
1001.57
1002.9
1003.87
1004.58
1005.1
1005.47
1005.74
1005.92
1006.05
1006.13
1006.19
1006.23
1006.25
1006.27
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.28
1006.26
1006.26
1006.28
1006.3
1006.27
1006.16
1006.01
1005.87
1005.74
1005.48
1004.94
1004.13
1003.09
1001.54
999.26
996.618
994.156
991.864
989.643
987.982
987.371
987.59
988.18
989.135
990.732
992.985
995.545
997.989
1000.06
1001.69
1002.92
1003.85
1004.54
1005.05
1005.42
1005.69
1005.88
1006.02
1006.11
1006.17
1006.21
1006.24
1006.26
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.28
1006.27
1006.26
1006.27
1006.26
1006.22
1006.14
1006.02
1005.81
1005.5
1005.11
1004.68
1004.02
1002.87
1001.31
999.693
998.073
996.313
994.66
993.59
993.142
993.011
993.147
993.823
995.177
996.994
998.898
1000.61
1002
1003.1
1003.93
1004.57
1005.04
1005.4
1005.67
1005.86
1005.99
1006.09
1006.16
1006.2
1006.23
1006.26
1006.27
1006.28
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.29
1006.28
1006.27
1006.26
1006.25
1006.25
1006.22
1006.11
1005.91
1005.67
1005.43
1005.09
1004.49
1003.63
1002.69
1001.69
1000.49
999.186
998.12
997.438
996.978
996.691
996.803
997.5
998.683
1000.06
1001.37
1002.49
1003.39
1004.11
1004.66
1005.09
1005.42
1005.66
1005.85
1005.98
1006.08
1006.15
1006.19
1006.23
1006.25
1006.27
1006.28
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.29
1006.29
1006.29
1006.28
1006.27
1006.26
1006.26
1006.25
1006.22
1006.14
1006.04
1005.92
1005.72
1005.36
1004.86
1004.32
1003.73
1002.97
1002.05
1001.2
1000.56
1000.04
999.616
999.45
999.73
1000.43
1001.34
1002.27
1003.1
1003.79
1004.36
1004.81
1005.18
1005.47
1005.69
1005.86
1005.98
1006.07
1006.14
1006.19
1006.22
1006.24
1006.26
1006.27
1006.29
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.28
1006.27
1006.25
1006.22
1006.19
1006.15
1006.06
1005.87
1005.59
1005.29
1004.96
1004.48
1003.88
1003.28
1002.78
1002.33
1001.92
1001.66
1001.7
1002.06
1002.61
1003.2
1003.76
1004.24
1004.66
1005.01
1005.31
1005.54
1005.73
1005.88
1005.99
1006.08
1006.14
1006.18
1006.22
1006.24
1006.26
1006.27
1006.28
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.27
1006.25
1006.24
1006.23
1006.19
1006.1
1005.97
1005.84
1005.67
1005.4
1005.02
1004.64
1004.3
1003.97
1003.63
1003.37
1003.3
1003.44
1003.72
1004.06
1004.39
1004.7
1004.98
1005.24
1005.46
1005.64
1005.79
1005.92
1006.01
1006.09
1006.14
1006.18
1006.22
1006.24
1006.25
1006.27
1006.28
1006.29
1006.29
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.29
1006.28
1006.27
1006.27
1006.26
1006.24
1006.2
1006.15
1006.1
1006.02
1005.87
1005.67
1005.45
1005.25
1005.03
1004.78
1004.57
1004.47
1004.5
1004.62
1004.77
1004.94
1005.11
1005.29
1005.46
1005.61
1005.75
1005.87
1005.97
1006.04
1006.1
1006.15
1006.19
1006.22
1006.24
1006.25
1006.27
1006.28
1006.28
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.28
1006.26
1006.24
1006.23
1006.21
1006.17
1006.1
1005.99
1005.89
1005.79
1005.65
1005.49
1005.34
1005.25
1005.24
1005.26
1005.31
1005.38
1005.47
1005.56
1005.67
1005.77
1005.86
1005.95
1006.02
1006.08
1006.13
1006.17
1006.2
1006.22
1006.24
1006.25
1006.26
1006.27
1006.28
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.29
1006.28
1006.27
1006.27
1006.26
1006.26
1006.24
1006.2
1006.15
1006.11
1006.06
1005.98
1005.88
1005.79
1005.74
1005.71
1005.7
1005.69
1005.71
1005.74
1005.79
1005.84
1005.91
1005.97
1006.02
1006.07
1006.12
1006.15
1006.18
1006.21
1006.23
1006.24
1006.26
1006.27
1006.27
1006.28
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.28
1006.27
1006.26
1006.24
1006.23
1006.21
1006.19
1006.14
1006.09
1006.04
1006.01
1005.98
1005.96
1005.94
1005.93
1005.94
1005.96
1005.99
1006.02
1006.06
1006.09
1006.12
1006.15
1006.18
1006.2
1006.22
1006.23
1006.25
1006.26
1006.27
1006.27
1006.28
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.29
1006.29
1006.29
1006.28
1006.27
1006.27
1006.26
1006.26
1006.24
1006.22
1006.19
1006.17
1006.15
1006.13
1006.11
1006.09
1006.08
1006.07
1006.08
1006.09
1006.11
1006.13
1006.15
1006.17
1006.18
1006.2
1006.22
1006.23
1006.24
1006.25
1006.26
1006.27
1006.27
1006.28
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.28
1006.28
1006.28
1006.27
1006.26
1006.25
1006.24
1006.23
1006.22
1006.21
1006.19
1006.18
1006.17
1006.16
1006.16
1006.17
1006.17
1006.18
1006.19
1006.2
1006.21
1006.22
1006.23
1006.24
1006.25
1006.26
1006.27
1006.27
1006.28
1006.28
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.28
1006.28
1006.27
1006.27
1006.26
1006.26
1006.25
1006.24
1006.23
1006.22
1006.22
1006.22
1006.22
1006.22
1006.22
1006.22
1006.23
1006.23
1006.24
1006.25
1006.25
1006.26
1006.26
1006.27
1006.27
1006.28
1006.28
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.28
1006.28
1006.28
1006.27
1006.27
1006.26
1006.26
1006.25
1006.25
1006.25
1006.24
1006.24
1006.24
1006.24
1006.25
1006.25
1006.25
1006.26
1006.26
1006.27
1006.27
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.28
1006.28
1006.28
1006.27
1006.27
1006.27
1006.26
1006.26
1006.26
1006.26
1006.26
1006.26
1006.26
1006.26
1006.27
1006.27
1006.27
1006.27
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.28
1006.28
1006.28
1006.28
1006.28
1006.27
1006.27
1006.27
1006.27
1006.27
1006.27
1006.27
1006.27
1006.27
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.28
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.28
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.31
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.3
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
1006.29
)
;
boundaryField
{
emptyPatches_empt
{
type empty;
}
top_cyc
{
type cyclic;
}
bottom_cyc
{
type cyclic;
}
inlet_cyc
{
type cyclic;
}
outlet_cyc
{
type cyclic;
}
}
// ************************************************************************* //
| |
e77d8da0f85f1fb74ff49577cf4d6176e3459a0a | d1aacb086323f2c91722e8ccbc3597646512161f | /University Programming/3.4_overloading&template/ex9_IV/main.cpp | e4bf7375ec0723ff076404b08c7452a4843b61ce | [] | no_license | Praytic/cpp-basics | 78fc25f934c949cb3d55f838e78715caa25bd8c9 | f909e624bfbbb3ef0391b93dd55909848737200e | refs/heads/master | 2021-01-15T10:53:39.087560 | 2015-07-01T17:00:42 | 2015-07-01T17:00:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 594 | cpp | main.cpp | #include <iostream>
#include <iomanip>
#include <string>
#include <cmath>
#include <vector>
#include <algorithm>
#include <map>
#include <set>
#include <conio.h>
#include <ctype.h>
#include <stdlib.h>
#include <fstream>
#include "math.h"
using namespace std;
#define forn(i,n) for(int i = 0; i < n; i++)
#define ll long long
#define ini(type, n) \
type n; \
cin >> n;
float F(float x) {
return 1/((1+x)*(1+x));
}
void F(float x, float &y) {
y = (x*x-1)*(x*x-1);
}
int main()
{
ini(float, x);
float y;
if (x > 1) y=F(x);
else if (x < 1) F(x, y);
else y = 0;
printf("%.5f\n", y);
} |
3526942f4c65b20bc08d9f7900318c3ca5356229 | ebe2e32534407222915cfdafd58a88ebded711ab | /Utility/Poker/Hand.h | 334b4ff9d68e8f52f748a2e2abbe109ad51a0b8f | [] | no_license | Elegy/ProjectEuler | 5246c34d83836dcc28f481766ebca6eac94bccb4 | 51fe44fa969647054e7d6289659e7c85765550ea | refs/heads/master | 2021-01-19T17:23:16.496093 | 2014-08-25T02:43:54 | 2014-08-25T02:43:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 560 | h | Hand.h | //
// Hand.h
// ProjectEuler
//
#ifndef __ProjectEuler__Hand__
#define __ProjectEuler__Hand__
#include <iostream>
class Hand
{
enum Rank
{
HighCard,
OnePair,
TwoPairs,
ThreeOfAKind,
Straight,
Flush,
FullHouse,
FourOfAKind,
StraightFlush,
RoyalFlush,
};
char suits[4];
char values[15];
Rank rank;
void deterimeRank();
void evalutateCard(const char *str);
public:
Hand();
};
#endif /* defined(__ProjectEuler__Hand__) */
|
86df4d4795e4bfdafd9559cfb32b5fbeaad3edea | 2c60293975163a6337ab03c9497ee78564a8ea78 | /Motortest/Motortest.ino | dfe2d3ddb4ac177a96324adcaef18a7584d55606 | [] | no_license | londonhackspace/Hopper | b6c68414b489efa00b0189f0685e54353fdd6708 | 189d3f82594a5da4b5a0b628319415b65447e7b5 | refs/heads/master | 2021-01-18T12:06:30.742419 | 2014-06-15T20:59:35 | 2014-06-15T20:59:35 | 1,062,038 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,129 | ino | Motortest.ino | #define STROBE (0)
#define DATA (1)
#define CLOCK (2)
#define OE (3)
void setup() {
pinMode(STROBE, OUTPUT);
pinMode(DATA, OUTPUT);
pinMode(CLOCK, OUTPUT);
pinMode(OE, OUTPUT);
digitalWrite(OE, HIGH);
setRegisters(0);
Serial.begin(9600);
while (!Serial) {}
}
void sendBit(uint8_t val) {
digitalWrite(CLOCK, LOW);
digitalWrite(DATA, val);
digitalWrite(CLOCK, HIGH);
}
void setRegisters(int r1) {
digitalWrite(STROBE, LOW);
for (int i = 0; i < 16; i++) {
sendBit(r1 & 0x8000 ? HIGH : LOW);
r1 = r1 << 1;
}
digitalWrite(STROBE, HIGH);
}
void setMotor(int r1) {
if (r1 == 0) {
setRegisters(0);
} else {
r1--;
setRegisters(1 << r1);
}
}
void testMotors() {
static int i = 0;
setMotor(i + 1);
i = (i + 1) % 16;
delay(1000);
}
void loop() {
if (Serial.available()) {
int c = Serial.read();
if (c >= '0' && c <= '9') {
setMotor(c - '0' + 1);
delay(1000);
setMotor(0);
} else if (c >= 'a' && c <= 'f') {
setMotor(c - 'a' + 11);
delay(1000);
setMotor(0);
} else if (c == 't') {
testMotors();
}
}
}
|
6f34f7ea3cea737402d03b7ca99e91c42431f3b6 | b303f7cf16fcb53d148f38808c6a89176ca97b3d | /ss-echo/main.h | 38706a43c04df5addc1b3e3be7be7d480537c035 | [] | no_license | anujkaliaiitd/dumbpipe | 12a54c160db55039e9aa45df531386101bf8000c | c77370cb868edf1796c448b14978508c56938d1b | refs/heads/master | 2022-03-22T11:20:06.976196 | 2019-11-21T05:23:16 | 2019-11-21T05:23:16 | 113,354,217 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,153 | h | main.h | #pragma once
#include <gflags/gflags.h>
#include <stdlib.h>
#include <string.h>
#include <limits>
#include <thread>
#include "libhrd_cpp/hrd.h"
static constexpr size_t kAppNumQPs = 1; // UD QPs used by server for RECVs
static constexpr size_t kAppMaxPostlist = 64;
static constexpr size_t kAppUnsigBatch = 64;
static_assert(is_power_of_two(kAppUnsigBatch), "");
struct thread_params_t {
size_t id;
double* tput;
};
struct req_hdr_t {
size_t stamp; // Increasing counter
uint32_t qpn; // Client QPN
uint32_t slid; // Client LID
};
static_assert(sizeof(req_hdr_t) <= kHrdMaxInline, "");
DEFINE_uint64(machine_id, std::numeric_limits<size_t>::max(), "Machine ID");
DEFINE_uint64(num_client_threads, 0, "Number of client threads/machine");
DEFINE_uint64(num_server_threads, 0, "Number of server threads");
DEFINE_uint64(is_client, 0, "Is this process a client?");
DEFINE_uint64(dual_port, 0, "Use two ports?");
DEFINE_uint64(size, 0, "RDMA size");
DEFINE_uint64(postlist, std::numeric_limits<size_t>::max(), "Postlist size");
/// Return the size of one RECV buffer
size_t recv_mbuf_sz() { return sizeof(struct ibv_grh) + FLAGS_size; }
|
fcafea41c4f91366655595e213d98430ed3fb5a7 | 497ee62b8e9e69624d6865c363a7e49fe5d47c5c | /UVA/Flood Fill/469WetlandsofFlorida.cpp | 62022f58033dcda25baac820e4aa92fc1f2913de | [] | no_license | Dygookada/MeusCodigos | 450ab50d9e743ac6fa2a12ab3fef268dcb8b7b30 | 25b56327f2c75897c739fdabe4ff678775b95720 | refs/heads/master | 2022-06-26T02:11:51.909412 | 2022-05-12T22:24:47 | 2022-05-12T22:24:47 | 246,394,200 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 706 | cpp | 469WetlandsofFlorida.cpp | #include <bits/stdc++.h>
using namespace std;
vector<string> grid;
int x[]={-1,-1,0,1,1,1,0,-1},y[]={0,1,1,1,0,-1,-1,-1},n,tam;
void agua( int i, int j)
{
grid[i][j]='C';
for( int k=0; k<8; k++)
{
int ix=i+x[k],jy=j+y[k];
if( ix>=0 && ix<tam && jy>=0 && jy<tam && grid[ix][jy]=='W')
{
n++;
agua(ix,jy);
}
}
}
int main()
{
int a,b,quest;
string aux;
scanf(" %d",&quest);
for( int i=0; i<quest; i++)
{
cin>>aux;
grid.push_back(aux);
int ta=aux.size();
for( int j=1; j<ta; j++)
{
cin>>aux;
grid.push_back(aux);
}
while( scanf(" %d%d",&a,&b)!=EOF)
{
tam=ta,n=1;
agua(a-1,b-1);
printf("%d\n",n);
}
}
}
|
af612ffaf9d3939d34a0b207617e1584b7864ab4 | 414d720944511da242938e4f3ba0f61db41bd9ef | /point_cloud/package/pcl_demo/src/write_pcd_by_odom.cpp | 9bae7c983e9750491b75b72d3474eab4b6c7180d | [] | no_license | yangdaiyu123/localization | 1e4c493dde244f366b64cb3ef708d6a4cd45c549 | eea5d5f68145576bea86649bcd56ec55dc5ab9ce | refs/heads/master | 2020-05-02T18:09:20.428017 | 2017-03-25T02:08:34 | 2017-03-25T02:08:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,066 | cpp | write_pcd_by_odom.cpp | #include "ros/ros.h"
#include "std_msgs/String.h"
#include "std_msgs/Float64.h"
#include "std_msgs/Int8.h"
#include "std_msgs/Int32.h"
#include "std_msgs/Int8MultiArray.h"
#include "std_msgs/Int32MultiArray.h"
#include "std_msgs/Float64MultiArray.h"
#include <pcl/common/common_headers.h>
#include <pcl/point_types.h>
#include <pcl/visualization/cloud_viewer.h>
#include <pcl/visualization/pcl_visualizer.h>
#include <pcl/io/io.h>
#include <pcl/common/transforms.h>
#include <pcl_conversions/pcl_conversions.h>
#include <pcl/filters/passthrough.h>
#include <sensor_msgs/PointCloud2.h>
#include <sensor_msgs/point_cloud_conversion.h>
#include <tf/tf.h>
#include <tf/transform_listener.h>
#include "tf/transform_datatypes.h"
#include <sstream>
#include <message_filters/subscriber.h>
#include <message_filters/time_synchronizer.h>
#include <message_filters/sync_policies/approximate_time.h>
#include <geometry_msgs/PoseStamped.h>
#include <visualization_msgs/Marker.h>
using namespace std;
pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud_in(new pcl::PointCloud<pcl::PointXYZRGB>);
pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud_out(new pcl::PointCloud<pcl::PointXYZRGB>);
int cnt = 0;
const double ODOMETRY_FACTOR = 0.0210386;
int pulse_sum = 0;
double odom_sum = 0.0;
tf::StampedTransform transform1;
tf::StampedTransform transform2;
tf::StampedTransform transform3;
geometry_msgs::PoseStamped pose;
const int color_red = 0xff0000;
const int color_orange = 0xff8800;
const int color_yellow = 0xffff00;
const int color_green = 0x00ff00;
const int color_blue = 0x0000ff;
const int color_violet = 0xff00ff;
void frontCurbCloudCallback(const sensor_msgs::PointCloud2::ConstPtr& msg)
{
pcl::fromROSMsg(*msg, *cloud_in);
try
{
static tf::TransformListener trf_listener1;
trf_listener1.lookupTransform("map", "base_link", ros::Time(0), transform1);
for (int i=0; i<cloud_in->size(); i++)
{
tf::Vector3 pt(cloud_in->points[i].x, cloud_in->points[i].y, cloud_in->points[i].z);
tf::Vector3 converted = transform1 * pt;
pcl::PointXYZRGB point_in_map;
point_in_map.x = converted.x();
point_in_map.y = converted.y();
point_in_map.z = converted.z();
point_in_map.rgb = color_green;
cloud_out->push_back(point_in_map);
}
}
catch (tf::TransformException ex) {
ROS_INFO("%s", ex.what());
ros::Duration(0.01).sleep();
}
}
void rearCurbCloudCallback(const sensor_msgs::PointCloud2::ConstPtr& msg)
{
pcl::fromROSMsg(*msg, *cloud_in);
try
{
static tf::TransformListener trf_listener2;
trf_listener2.lookupTransform("map", "base_link", ros::Time(0), transform2);
for (int i=0; i<cloud_in->size(); i++)
{
tf::Vector3 pt(cloud_in->points[i].x, cloud_in->points[i].y, cloud_in->points[i].z);
tf::Vector3 converted = transform2 * pt;
pcl::PointXYZRGB point_in_map;
point_in_map.x = converted.x();
point_in_map.y = converted.y();
point_in_map.z = converted.z();
point_in_map.rgb = color_green;
cloud_out->push_back(point_in_map);
}
}
catch (tf::TransformException ex) {
ROS_INFO("%s", ex.what());
ros::Duration(0.01).sleep();
}
}
void signPointsCallback(const sensor_msgs::PointCloud2::ConstPtr& msg)
{
pcl::fromROSMsg(*msg, *cloud_in);
try
{
static tf::TransformListener trf_listener3;
trf_listener3.lookupTransform("map", "base_link", ros::Time(0), transform3);
for (int i=0; i<cloud_in->size(); i++)
{
tf::Vector3 pt(cloud_in->points[i].x, cloud_in->points[i].y, cloud_in->points[i].z);
tf::Vector3 converted = transform3 * pt;
pcl::PointXYZRGB point_in_map;
point_in_map.x = converted.x();
point_in_map.y = converted.y();
point_in_map.z = converted.z();
point_in_map.rgb = color_yellow;
cloud_out->push_back(point_in_map);
}
}
catch (tf::TransformException ex) {
ROS_INFO("%s", ex.what());
ros::Duration(0.01).sleep();
}
}
void pulseCallback(std_msgs::Int8MultiArray pulse_in)
{
pulse_sum += ( pulse_in.data[0] + pulse_in.data[1] );
odom_sum = pulse_sum * ODOMETRY_FACTOR;
// cout<<"odom: "<<odom_sum<<endl;
if(odom_sum > 50)
{
std::stringstream ss;
ss<<cnt++;
pcl::io::savePCDFileASCII ("/home/wlh/point_map/"+ss.str()+".pcd", *cloud_out);
cloud_out->clear();
pulse_sum = 0;
odom_sum = 0;
}
}
int main(int argc, char **argv)
{
ros::init(argc, argv, "write_pcd");
ros::NodeHandle nh;
ros::Subscriber sub_front_curb = nh.subscribe("front_curb_raw",2,frontCurbCloudCallback);
ros::Subscriber sub_rear_curb = nh.subscribe("rear_curb_raw",2,rearCurbCloudCallback);
ros::Subscriber sub_sign = nh.subscribe("sign_points",2,signPointsCallback);
ros::Subscriber sub_pulse = nh.subscribe("pulse",2,pulseCallback);
ros::spin();
return 0;
}
|
3f41c0c12311bde31582cac57eb121db9f35e4bf | e1d2a6f87bbba49387bce6dce02ac9df8bd2eef2 | /Assignment12/CSVListRepository.cpp | 67d07058dfc7c42f6216a12ab2449c5d011c6924 | [] | no_license | hnldx/QtApp | ca015bd8de0a777e4e6691582cdeea3de10b5048 | c5590ed0b37d2ad34b33faf91f039c1f1b44a7aa | refs/heads/main | 2023-03-31T06:34:34.199590 | 2021-03-26T11:15:07 | 2021-03-26T11:15:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,062 | cpp | CSVListRepository.cpp | #include "CSVListRepository.h"
#include <windows.h>
void CSVListRepository::adoptDog(Dog& dog)
{
vector<Dog> dogs = this->getAdoptedDogs();
RepositoryValidator repoValidator{ dogs };
repoValidator.validateAdoption(dog.getName());
dogs.push_back(dog);
this->saveMyListFile(dogs);
}
void CSVListRepository::removeFromMyList(Dog& dog)
{
vector<Dog> dogs = this->getAdoptedDogs();
vector<Dog>::iterator position = find(dogs.begin(), dogs.end(), dog);
dogs.erase(position);
this->saveMyListFile(dogs);
}
void CSVListRepository::loadMyListFile(vector<Dog>& dogs)
{
ifstream file(myListFileName);
Dog dog{};
while (file >> dog)
{
dogs.push_back(dog);
}
file.close();
}
void CSVListRepository::saveMyListFile(vector<Dog> dogs)
{
ofstream file(myListFileName);
Dog dog{};
for (auto dog : dogs)
{
file << dog; // works the same as the main list, because they are already in a CSV format
}
file.close();
}
void CSVListRepository::runDisplayApp()
{
ShellExecuteA(NULL, NULL, "notepad.exe", myListFileName.c_str(), NULL, SW_SHOWMAXIMIZED);
}
|
91f918f0f4307f9a10f66074818c656f72fd0f05 | b15c487b4865ac52bf51a97ba00e7ce556e0b27b | /UVA Solved/10550.cpp | 31d19974c3bd7f7de3cf71aad07dc963aad5b3d3 | [] | no_license | Mehedi32HSTU/UVA-Online-Judge-Code | 52b033c25d913acc5e93db001d5f6d99b583d341 | b34c185c5a1e48cd427b77c5fd9e0c9cfb869650 | refs/heads/master | 2020-08-06T06:01:29.365669 | 2019-10-04T17:02:37 | 2019-10-04T17:02:37 | 212,862,481 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 499 | cpp | 10550.cpp | #include<bits/stdc++.h>
using namespace std;
#define sc scanf
#define pf printf
#define ll long long
int main()
{
int f,a,b,c,sum=0,temp;
while(sc("%d%d%d%d",&f,&a,&b,&c)==4)
{
if(f==0&&a==0&&b==0&&c==0) break;
sum=1080;
temp=f-a;
if(temp<0) temp+=40;
sum+=temp*9;
temp=b-a;
if(temp<0) temp+=40;
sum+=temp*9;
temp=b-c;
if(temp<0) temp+=40;
sum+=temp*9;
pf("%d\n",sum);
}
return 0;
}
|
08eaab05f98e504e4a23fb91eb9aa020ef5a6efb | 3fef24a77e918dbae6e7d36f5776f28eb111f7aa | /src/operator/mkl/mkl_batch_norm-inl.h | b5967f4de294806d3c2ff092599130f8b591a390 | [
"Apache-2.0",
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | Jopyth/BMXNet | db642963c980c79b95476effbb9e98fc370d20a6 | 2d4f7f4553b1103c4309b0f8c4b51d823e234b69 | refs/heads/master | 2020-03-30T01:24:15.004207 | 2018-07-05T12:42:44 | 2018-09-27T11:22:20 | 150,574,165 | 17 | 1 | Apache-2.0 | 2018-09-27T11:09:07 | 2018-09-27T11:09:07 | null | UTF-8 | C++ | false | false | 15,618 | h | mkl_batch_norm-inl.h | /*******************************************************************************
* Copyright 2016 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* \file mkl_batch_norm-inl.h
* \brief
* \author lingyan.guo@intel.com
* zhenlin.luo@intel.com
*
*******************************************************************************/
#ifndef MXNET_OPERATOR_MKL_MKL_BATCH_NORM_INL_H_
#define MXNET_OPERATOR_MKL_MKL_BATCH_NORM_INL_H_
#include <mxnet/storage.h>
#include <dmlc/logging.h>
#include <dmlc/parameter.h>
#include <mxnet/operator.h>
#include <map>
#include <vector>
#include <string>
#include <utility>
#include "../operator_common.h"
#include "../mshadow_op.h"
#include "./mkl_util-inl.h"
namespace mxnet {
namespace op {
template<typename xpu, typename DType>
class MKLBatchNormOp : public Operator {
public:
explicit MKLBatchNormOp(BatchNormParam param) {
this->param_ = param;
fwd_top_data = MKLData<DType>::create();
fwd_bottom_data = MKLData<DType>::create();
bwd_top_diff = MKLData<DType>::create();
bwd_bottom_diff = MKLData<DType>::create();
scaleShift_space.dptr = NULL;
scaleShiftDiff_space.dptr = NULL;
}
virtual ~MKLBatchNormOp() {
if (batchNormFwdInference != NULL) dnnDelete<DType>(batchNormFwdInference);
if (batchNormFwdTraining != NULL) dnnDelete<DType>(batchNormFwdTraining);
if (batchNormBwdScaleShift != NULL) dnnDelete<DType>(batchNormBwdScaleShift);
dnnLayoutDelete<DType>(layout_usr_);
if (scaleShift_space.dptr)
Storage::Get()->Free(scaleShift_space);
if (scaleShiftDiff_space.dptr)
Storage::Get()->Free(scaleShiftDiff_space);
}
static std::string getName() {
return "MKLBatchNormOp";
}
private:
void LayerSetUp(const mshadow::Tensor<xpu, 4, DType> &data,
const mshadow::Tensor<xpu, 4, DType> &out) {
eps_ = param_.eps;
size_t dim = 4, sizes[4], strides[4];
channels_ = data.shape_[1];
height_ = data.shape_[2];
width_ = data.shape_[3];
num_ = data.shape_[0];
sizes[0] = width_;
sizes[1] = height_;
sizes[2] = channels_;
sizes[3] = num_;
strides[0] = 1;
strides[1] = sizes[0];
strides[2] = sizes[0] * sizes[1];
strides[3] = sizes[0] * sizes[1] * sizes[2];
// Names are for debugging only
fwd_bottom_data->name = "fwd_bottom_data @ " + getName();
fwd_top_data->name = "fwd_top_data @ " + getName();
bwd_bottom_diff->name = "bwd_bottom_diff @ " + getName();
bwd_top_diff->name = "bwd_top_diff @ " + getName();
dnnError_t e;
e = dnnLayoutCreate<DType>(&layout_usr_, dim, sizes, strides);
CHECK_EQ(e, E_SUCCESS);
fwd_bottom_data->create_user_layout(dim, sizes, strides);
fwd_top_data->create_user_layout(dim, sizes, strides);
bwd_bottom_diff->create_user_layout(dim, sizes, strides);
bwd_top_diff->create_user_layout(dim, sizes, strides);
// Primitives will be allocated during the first fwd pass
batchNormFwdInference = NULL;
batchNormFwdTraining = NULL;
batchNormBwdScaleShift = NULL;
int scaleShift_size = channels_*2*sizeof(DType);
scaleShift_space = Storage::Get()->Alloc(scaleShift_size, Context::CPU());
scaleShiftDiff_space = Storage::Get()->Alloc(scaleShift_size, Context::CPU());
DType * scaleShift_buf = reinterpret_cast<DType*>(scaleShift_space.dptr);
/*!use_weight_bias_*/
for (int i = 0; i < channels_; i++) {
scaleShift_buf[i] = 1.0;
scaleShift_buf[channels_ + i] = 0;
}
}
public:
virtual void Forward(const OpContext &ctx,
const std::vector<TBlob> &in_data,
const std::vector<OpReqType> &req,
const std::vector<TBlob> &out_data,
const std::vector<TBlob> &aux_states) {
using namespace mshadow;
using namespace mshadow::expr;
CHECK_EQ(in_data.size(), 3);
CHECK_EQ(aux_states.size(), 2);
if (ctx.is_train) {
CHECK_EQ(out_data.size(), 3);
CHECK_EQ(req.size(), 3);
} else {
CHECK_GE(out_data.size(), 1);
CHECK_GE(req.size(), 1);
CHECK_EQ(req[batchnorm::kOut], kWriteTo);
}
Stream<xpu> *s = ctx.get_stream<xpu>();
Tensor<xpu, 4, DType> data;
Tensor<xpu, 4, DType> out;
if (in_data[batchnorm::kData].ndim() == 2) {
Shape<4> dshape = Shape4(in_data[batchnorm::kData].shape_[0],
in_data[batchnorm::kData].shape_[1], 1, 1);
data = mkl_experimental_direct_get_with_shape<xpu, 4, DType>(
in_data[batchnorm::kData], dshape, s);
out = mkl_experimental_direct_get_with_shape<xpu, 4, DType>(
out_data[batchnorm::kOut], dshape, s);
} else {
data = mkl_experimental_direct_get<xpu, 4, DType>(in_data[batchnorm::kData], s);
out = mkl_experimental_direct_get<xpu, 4, DType>(out_data[batchnorm::kOut], s);
}
// const real_t scale = static_cast<real_t>(in_data[batchnorm::kData].shape_[1]) /
// static_cast<real_t>(in_data[batchnorm::kData].shape_.Size());
Tensor<xpu, 1, DType> slope = in_data[batchnorm::kGamma].get<xpu, 1, DType>(s);
Tensor<xpu, 1, DType> bias = in_data[batchnorm::kBeta].get<xpu, 1, DType>(s);
Tensor<xpu, 1, DType> moving_mean = aux_states[batchnorm::kMovingMean].get<xpu, 1, DType>(s);
Tensor<xpu, 1, DType> moving_var = aux_states[batchnorm::kMovingVar].get<xpu, 1, DType>(s);
if (param_.fix_gamma)
slope = 1.f;
dnnError_t e;
if (!init_mkldnn_) {
LayerSetUp(data, out);
init_mkldnn_ = true;
}
void* bottom_data = NULL;
#if MKL_EXPERIMENTAL == 1
bottom_data =
reinterpret_cast<void *>(mkl_prv_data<DType>(in_data[batchnorm::kData]));
#endif
int bwd_flags = dnnUseScaleShift;
if (param_.use_global_stats)
bwd_flags = dnnUseScaleShift | dnnUseInputMeanVariance;
#if MKL_EXPERIMENTAL == 1
if (NULL != bottom_data) {
// Is it the first pass? Create a primitive.
if (batchNormFwdInference == NULL) {
std::shared_ptr<MKLMemHolder> bottom_data_mem = in_data[batchnorm::kData].Mkl_mem_;
std::shared_ptr<PrvMemDescr> bottom_prv_desc = bottom_data_mem->get_prv_descriptor();
CHECK(bottom_prv_desc->get_descr_type() == PrvMemDescr::PRV_DESCR_MKL2017);
std::shared_ptr<MKLData<DType> > mem_descr
= std::static_pointer_cast<MKLData<DType>>(bottom_prv_desc);
CHECK(mem_descr != NULL);
fwd_bottom_data = mem_descr;
e = dnnBatchNormalizationCreateForward_v2<DType>(
&batchNormFwdInference, NULL, mem_descr->layout_int, eps_,
dnnUseInputMeanVariance | dnnUseScaleShift);
CHECK_EQ(e, E_SUCCESS);
e = dnnBatchNormalizationCreateForward_v2<DType>(
&batchNormFwdTraining, NULL, mem_descr->layout_int, eps_,
dnnUseScaleShift);
CHECK_EQ(e, E_SUCCESS);
fwd_top_data->create_internal_layout(batchNormFwdInference, dnnResourceDst);
bwd_top_diff->create_internal_layout(batchNormFwdInference, dnnResourceDst);
bwd_bottom_diff->create_internal_layout(batchNormFwdInference, dnnResourceSrc);
e = dnnBatchNormalizationCreateBackward_v2<DType>(
&batchNormBwdScaleShift, NULL, mem_descr->layout_int, eps_, bwd_flags);
CHECK_EQ(e, E_SUCCESS);
}
}
#endif
if (NULL == bottom_data) {
if (batchNormFwdInference == NULL) {
e = dnnBatchNormalizationCreateForward_v2<DType>(
&batchNormFwdInference, NULL, layout_usr_, eps_,
dnnUseInputMeanVariance | dnnUseScaleShift);
CHECK_EQ(e, E_SUCCESS);
e = dnnBatchNormalizationCreateForward_v2<DType>(
&batchNormFwdTraining, NULL, layout_usr_, eps_, dnnUseScaleShift);
CHECK_EQ(e, E_SUCCESS);
e = dnnBatchNormalizationCreateBackward_v2<DType>(
&batchNormBwdScaleShift, NULL, layout_usr_, eps_, bwd_flags);
CHECK_EQ(e, E_SUCCESS);
}
bottom_data = reinterpret_cast<void *>(data.dptr_);
}
DType * scaleShift_buf = reinterpret_cast<DType*>(scaleShift_space.dptr);
// use_weight_bias_
for (int i = 0; i < channels_; i++) {
scaleShift_buf[i] = (slope.dptr_)[i];
}
for (int i = 0; i < channels_; i++) {
scaleShift_buf[channels_ + i] = (bias.dptr_)[i];
}
void* BatchNorm_res[dnnResourceNumber];
BatchNorm_res[dnnResourceSrc] = bottom_data;
BatchNorm_res[dnnResourceScaleShift] = scaleShift_space.dptr;
BatchNorm_res[dnnResourceDst] = fwd_top_data->get_output_ptr(out.dptr_,
fwd_top_data, out_data[batchnorm::kOut]);
if (ctx.is_train && !param_.use_global_stats) {
Tensor<xpu, 1, DType> mean = out_data[batchnorm::kMean].get<xpu, 1, DType>(s);
Tensor<xpu, 1, DType> var = out_data[batchnorm::kVar].get<xpu, 1, DType>(s);
CHECK(req[batchnorm::kMean] == kNullOp || req[batchnorm::kMean] == kWriteTo);
CHECK(req[batchnorm::kVar] == kNullOp || req[batchnorm::kVar] == kWriteTo);
BatchNorm_res[dnnResourceMean] = mean.dptr_;
BatchNorm_res[dnnResourceVariance] = var.dptr_;
e = dnnExecute<DType>(batchNormFwdTraining, BatchNorm_res);
CHECK_EQ(e, E_SUCCESS);
} else {
BatchNorm_res[dnnResourceMean] = moving_mean.dptr_;
BatchNorm_res[dnnResourceVariance] = moving_var.dptr_;
e = dnnExecute<DType>(batchNormFwdInference, BatchNorm_res);
CHECK_EQ(e, E_SUCCESS);
}
#if MKL_EXPERIMENTAL == 0
if (fwd_top_data->conversion_needed()) {
fwd_top_data->convert_from_prv(out.dptr_);
}
#endif
}
virtual void Backward(const OpContext &ctx,
const std::vector<TBlob> &out_grad,
const std::vector<TBlob> &in_data,
const std::vector<TBlob> &out_data,
const std::vector<OpReqType> &req,
const std::vector<TBlob> &in_grad,
const std::vector<TBlob> &aux_states) {
using namespace mshadow;
using namespace mshadow::expr;
CHECK_EQ(out_grad.size(), 1);
CHECK_EQ(in_data.size(), 3);
CHECK_EQ(out_data.size(), 3);
CHECK_EQ(in_grad.size(), 3);
Stream<xpu> *s = ctx.get_stream<xpu>();
Tensor<xpu, 4, DType> data, grad, grad_in;
if (in_data[batchnorm::kData].ndim() == 2) {
Shape<4> dshape = Shape4(out_grad[batchnorm::kOut].shape_[0],
out_grad[batchnorm::kOut].shape_[1], 1, 1);
data = mkl_experimental_direct_get_with_shape<xpu, 4, DType>(
in_data[batchnorm::kData], dshape, s);
grad = mkl_experimental_direct_get_with_shape<xpu, 4, DType>(
out_grad[batchnorm::kOut], dshape, s);
grad_in = mkl_experimental_direct_get_with_shape<xpu, 4, DType>(
in_grad[batchnorm::kData], dshape, s);
} else {
data = mkl_experimental_direct_get<xpu, 4, DType>(in_data[batchnorm::kData], s);
grad = mkl_experimental_direct_get<xpu, 4, DType>(out_grad[batchnorm::kOut], s);
grad_in = mkl_experimental_direct_get<xpu, 4, DType>(in_grad[batchnorm::kData], s);
}
Tensor<xpu, 1, DType> slope = in_data[batchnorm::kGamma].get<xpu, 1, DType>(s);
Tensor<xpu, 1, DType> gslope = in_grad[batchnorm::kGamma].get<xpu, 1, DType>(s);
Tensor<xpu, 1, DType> gbias = in_grad[batchnorm::kBeta].get<xpu, 1, DType>(s);
Tensor<xpu, 1, DType> mean = out_data[batchnorm::kMean].get<xpu, 1, DType>(s);
Tensor<xpu, 1, DType> var = out_data[batchnorm::kVar].get<xpu, 1, DType>(s);
Tensor<xpu, 1, DType> moving_mean = aux_states[batchnorm::kMovingMean].get<xpu, 1, DType>(s);
Tensor<xpu, 1, DType> moving_var = aux_states[batchnorm::kMovingVar].get<xpu, 1, DType>(s);
if (param_.fix_gamma) slope = 1.f;
void* bottom_data = NULL;
#if MKL_EXPERIMENTAL == 1
bottom_data = reinterpret_cast<void *>(mkl_prv_data<DType>(in_data[batchnorm::kData]));
#endif
if (NULL == bottom_data)
bottom_data = reinterpret_cast<void *>(data.dptr_);
dnnError_t e;
void* BatchNorm_res[dnnResourceNumber];
BatchNorm_res[dnnResourceSrc] = bottom_data;
BatchNorm_res[dnnResourceScaleShift] = scaleShift_space.dptr;
if (ctx.is_train && !param_.use_global_stats) {
int size = mean.size(0); // Tensor<xpu, 1, DType>
float * moving_mean_ptr = reinterpret_cast<float*>(moving_mean.dptr_);
float * mean_ptr = reinterpret_cast<float*>(mean.dptr_);
float * moving_var_ptr = reinterpret_cast<float*>(moving_var.dptr_);
float * var_ptr = reinterpret_cast<float*>(var.dptr_);
float minus_mom = (1 - param_.momentum);
for (int i = 0; i < size; i++) {
moving_mean_ptr[i] = moving_mean_ptr[i] * param_.momentum
+ mean_ptr[i] * minus_mom;
}
for (int i = 0; i < size; i++) {
moving_var_ptr[i] = moving_var_ptr[i] * param_.momentum
+ var_ptr[i] * minus_mom;
}
BatchNorm_res[dnnResourceMean] = mean.dptr_;
BatchNorm_res[dnnResourceVariance] = var.dptr_;
} else {
BatchNorm_res[dnnResourceMean] = moving_mean.dptr_;
BatchNorm_res[dnnResourceVariance] = moving_var.dptr_;
}
BatchNorm_res[dnnResourceDiffSrc] = bwd_bottom_diff->get_output_ptr(grad_in.dptr_,
bwd_bottom_diff, in_grad[batchnorm::kData]);
BatchNorm_res[dnnResourceDiffDst] = bwd_top_diff->get_converted_prv(grad.dptr_,
true, out_grad[batchnorm::kOut]);
BatchNorm_res[dnnResourceDiffScaleShift] = scaleShiftDiff_space.dptr;
e = dnnExecute<DType>(batchNormBwdScaleShift, BatchNorm_res);
CHECK_EQ(e, E_SUCCESS);
#if MKL_EXPERIMENTAL == 0
if (bwd_bottom_diff->conversion_needed()) {
bwd_bottom_diff->convert_from_prv(grad_in.dptr_);
}
#endif
DType * scaleShiftDiff_buf = reinterpret_cast<DType*>(scaleShiftDiff_space.dptr);
if (!param_.fix_gamma) {
// Store ScaleShift blobs
DType* diff_scale = gslope.dptr_;
for (int i = 0; i < channels_; i++) {
diff_scale[i] = scaleShiftDiff_buf[i];
}
} else {
int gslope_size = gslope.size(0);
float * gslope_ptr = reinterpret_cast<float*>(gslope.dptr_);
for (int i = 0; i < gslope_size; i++) {
*gslope_ptr++ = 0.0f;
}
}
DType* diff_shift = gbias.dptr_;
for (int i = 0; i < channels_; i++) {
diff_shift[i] = scaleShiftDiff_buf[channels_ + i];
}
}
private:
BatchNormParam param_;
DType eps_;
bool use_weight_bias_;
int num_;
int channels_;
int height_;
int width_;
bool init_mkldnn_ = false;
std::shared_ptr<MKLData<DType> > fwd_top_data;
std::shared_ptr<MKLData<DType> > fwd_bottom_data;
std::shared_ptr<MKLData<DType> > bwd_top_diff;
std::shared_ptr<MKLData<DType> > bwd_bottom_diff;
dnnPrimitive_t batchNormFwdInference = NULL;
dnnPrimitive_t batchNormFwdTraining = NULL;
dnnPrimitive_t batchNormBwdScaleShift = NULL;
Storage::Handle scaleShift_space;
Storage::Handle scaleShiftDiff_space;
dnnLayout_t layout_usr_ = NULL;
}; // class BatchNormOp
} // namespace op
} // namespace mxnet
#endif // MXNET_OPERATOR_MKL_MKL_BATCH_NORM_INL_H_
|
5e69410a4b534bea6ba492a976608dce9a9c6b8d | 0e6e06da7f4d0001ae0d97367b786a6a3c49f7aa | /Graph/Algorithms/dfs.h | a355c19eb9675b5d9a02407b47710ee814cd4353 | [] | no_license | utec-cs-aed-2021-1/proyecto-de-curso-team-triple-for | 204c65632a0ffe22f85c7647a472ba76dd70a025 | a25bd02b79eebe04a129ffb21e61c50457717858 | refs/heads/main | 2023-07-08T20:30:01.789145 | 2021-08-03T23:04:39 | 2021-08-03T23:04:39 | 377,246,532 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,156 | h | dfs.h | #ifndef DFS
#define DFS
#include "Graph/graph.h"
#include <iostream>
#include <stack>
#include <string>
template <typename TV, typename TE> class Dfs {
public:
Graph<TV, TE> *graph;
string start_id;
Dfs(Graph<TV, TE> *graph, string id) {
this->graph = graph;
this->start_id = id;
}
vector<Vertex<TV, TE> *> apply() {
vector<Vertex<TV, TE> *> result;
unordered_map<Vertex<TV, TE> *, bool> visited;
auto it = this->graph->vertexes.begin();
while (it != this->graph->vertexes.end()) {
visited[it->second] = false;
it++;
}
std::stack<Vertex<TV, TE> *> stack;
stack.push(this->graph->vertexes[this->start_id]);
while (!stack.empty()) {
Vertex<TV, TE> *s = stack.top();
stack.pop();
if (!visited[s]) {
result.push_back(s);
visited[s] = true;
}
for (auto it = s->edges.begin(); it != s->edges.end(); ++it) {
if (!visited[(*it)->vertexes[1]]) {
stack.push((*it)->vertexes[1]);
}
if (!visited[(*it)->vertexes[0]]) {
stack.push((*it)->vertexes[0]);
}
}
}
return result;
}
};
#endif
|
d32d71da9a5c018efa8e051784b836379578124f | 40f151d22fadffd2cdac306fb1c2f70bb9c7a459 | /Pilha_Encadeada/PilhaEnc.hpp | 246c3eea0b7be44800b47110217641df271e92fb | [] | no_license | johnaltan/INE5408 | f80421b8d3adb3a394775435e68f42cd97a594ba | a1fbbcd37e5f6f7138a6e8c25bce3c42f7ea9ef8 | refs/heads/master | 2021-01-18T21:15:53.342632 | 2015-04-21T17:01:12 | 2015-04-21T17:01:12 | 32,540,865 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 515 | hpp | PilhaEnc.hpp | #include "ListaEnc.hpp"
template<typename T>
class PilhaEnc : private ListaEnc<T>{
public:
PilhaEnc() {}
~PilhaEnc() {}
void empilha(const T& dado) {
this->adicionaNoInicio(dado);
}
T desempilha() {
return this->retiraDoInicio();
}
T topo() {
if (PilhaVazia()) throw ERROLISTAVAZIA;
return this->getHead()->getInfo();
}
void limparPilha() {
this->destroiLista();
}
bool PilhaVazia() {
return this->listaVazia();
}
};
|
fbb3dfa054d569f69355c15ba9d675cff8df8620 | 6e3b592de89cb3e7d594993c784e7059bdb2a9ae | /Source/AllProjects/CQCIntf/CQCIntfEd/CQCIntfEd_EditTBarDlg.cpp | d6f42c56639e46bd4a5ba222c0dc2ead7394722d | [
"MIT"
] | permissive | jjzhang166/CQC | 9aae1b5ffeddde2c87fafc3bb4bd6e3c7a98a1c2 | 8933efb5d51b3c0cb43afe1220cdc86187389f93 | refs/heads/master | 2023-08-28T04:13:32.013199 | 2021-04-16T14:41:21 | 2021-04-16T14:41:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,634 | cpp | CQCIntfEd_EditTBarDlg.cpp | //
// FILE NAME: CQCIntfEd_EditTBarDlg.cpp
//
// AUTHOR: Dean Roddey
//
// CREATED: 02/09/2016
//
// COPYRIGHT: Charmed Quark Systems, Ltd @ 2020
//
// This software is copyrighted by 'Charmed Quark Systems, Ltd' and
// the author (Dean Roddey.) It is licensed under the MIT Open Source
// license:
//
// https://opensource.org/licenses/MIT
//
// DESCRIPTION:
//
// This file implements a dialog that let's the user edit the buttons of a tool
// bar widget.
//
// CAVEATS/GOTCHAS:
//
// LOG:
//
// $Log$
//
// ---------------------------------------------------------------------------
// Includes
// ---------------------------------------------------------------------------
#include "CQCIntfEd_.hpp"
#include "CQCIntfEd_EditTBarDlg_.hpp"
// ---------------------------------------------------------------------------
// Do our RTTI macros
// ---------------------------------------------------------------------------
RTTIDecls(TEditTBarDlg, TDlgBox)
// ---------------------------------------------------------------------------
// CLASS: TEditTBarDlg
// PREFIX: dlg
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
// TEditTBarDlg: Constructors and Destructor
// ---------------------------------------------------------------------------
TEditTBarDlg::TEditTBarDlg() :
m_c4NextId(1)
, m_pcivOwner(nullptr)
, m_piwdgEdit(nullptr)
, m_pwndActText(nullptr)
, m_pwndAdd(nullptr)
, m_pwndCancel(nullptr)
, m_pwndClrImg(nullptr)
, m_pwndDel(nullptr)
, m_pwndDown(nullptr)
, m_pwndEdAct(nullptr)
, m_pwndList(nullptr)
, m_pwndImg(nullptr)
, m_pwndImgOp(nullptr)
, m_pwndRevert(nullptr)
, m_pwndSave(nullptr)
, m_pwndSelImg(nullptr)
, m_pwndUp(nullptr)
, m_wstateEdit(L"Edit")
, m_wstateEmpty(L"Empty")
{
}
TEditTBarDlg::~TEditTBarDlg()
{
}
// ---------------------------------------------------------------------------
// TEditTBarDlg: Public, inherited methods
// ---------------------------------------------------------------------------
tCIDLib::TBoolean
TEditTBarDlg::bIPETestCanEdit( const tCIDCtrls::TWndId
, const tCIDLib::TCard4 c4ColInd
, TAttrData& adatFill
, tCIDLib::TBoolean& bValueSet)
{
// Set up the passed attribute data object with the info to edit
if (c4ColInd == 0)
{
adatFill.Set(L"Name", L"Name", tCIDMData::EAttrTypes::String);
// Set the current value as the initial contents to edit
TString strVal;
m_pwndList->QueryColText(c4IPERow(), c4ColInd, strVal);
adatFill.SetString(strVal);
bValueSet = kCIDLib::True;
}
return kCIDLib::True;
}
tCIDLib::TBoolean
TEditTBarDlg::bIPEValidate( const TString& strSrc
, TAttrData& adatTar
, const TString& strNewVal
, TString& strErrMsg
, tCIDLib::TCard8& c8UserId) const
{
//
// Call the base mixin class to do basic validation. If that fails, then
// no need to look further.
//
if (!MIPEIntf::bIPEValidate(strSrc, adatTar, strNewVal, strErrMsg, c8UserId))
return kCIDLib::False;
if (adatTar.strId() == L"Name")
{
// We don't really need to do any validation per se.
adatTar.SetString(strNewVal);
return kCIDLib::True;
}
return kCIDLib::False;
}
tCIDLib::TVoid
TEditTBarDlg::IPEValChanged(const tCIDCtrls::TWndId widSrc
, const TString& strSrc
, const TAttrData& adatNew
, const TAttrData& adatOld
, const tCIDLib::TCard8 )
{
// Store away the new value as the text of the current button
if (adatNew.strId() == L"Name")
{
m_piwdgEdit->tbbAt(c4IPERow()).strText(adatNew.strValue());
m_piwdgEdit->Invalidate();
}
}
// ---------------------------------------------------------------------------
// TEditTBarDlg: Public, non-virtual methods
// ---------------------------------------------------------------------------
tCIDLib::TBoolean
TEditTBarDlg::bRun( const TWindow& wndOwner
, TCQCIntfToolbar* const piwdgEdit
, TCQCIntfEdView* const pcivOwner)
{
// Store incoming stuff for later use
m_pcivOwner = pcivOwner;
m_piwdgEdit = piwdgEdit;
m_iwdgOrg = *piwdgEdit;
const tCIDLib::TCard4 c4Res = c4RunDlg
(
wndOwner, facCQCIntfEd(), kCQCIntfEd::ridDlg_EditTBar
);
// If they saved we are done
if (c4Res == kCQCIntfEd::ridDlg_EditTBar_Save)
return kCIDLib::True;
// Else, copy back the original to overwrite any changes
*piwdgEdit = m_iwdgOrg;
piwdgEdit->Invalidate();
return kCIDLib::False;
}
// ---------------------------------------------------------------------------
// TEditTBarDlg: Protected, inherited methods
// ---------------------------------------------------------------------------
tCIDLib::TBoolean TEditTBarDlg::bCreated()
{
// Call our parent first
const tCIDLib::TBoolean bRet = TParent::bCreated();
// First get typed pointers to the widget we always keep
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_ActText, m_pwndActText);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_Add, m_pwndAdd);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_Cancel, m_pwndCancel);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_ClrImage, m_pwndClrImg);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_Del, m_pwndDel);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_MoveDn, m_pwndDown);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_EditAct, m_pwndEdAct);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_List, m_pwndList);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_Img, m_pwndImg);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_Opacity, m_pwndImgOp);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_Revert, m_pwndRevert);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_Save, m_pwndSave);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_SelImg, m_pwndSelImg);
CastChildWnd(*this, kCQCIntfEd::ridDlg_EditTBar_MoveUp, m_pwndUp);
// Register our handlers
m_pwndAdd->pnothRegisterHandler(this, &TEditTBarDlg::eClickHandler);
m_pwndCancel->pnothRegisterHandler(this, &TEditTBarDlg::eClickHandler);
m_pwndClrImg->pnothRegisterHandler(this, &TEditTBarDlg::eClickHandler);
m_pwndDel->pnothRegisterHandler(this, &TEditTBarDlg::eClickHandler);
m_pwndDown->pnothRegisterHandler(this, &TEditTBarDlg::eClickHandler);
m_pwndEdAct->pnothRegisterHandler(this, &TEditTBarDlg::eClickHandler);
m_pwndImgOp->pnothRegisterHandler(this, &TEditTBarDlg::eSliderHandler);
m_pwndList->pnothRegisterHandler(this, &TEditTBarDlg::eListHandler);
m_pwndRevert->pnothRegisterHandler(this, &TEditTBarDlg::eClickHandler);
m_pwndSave->pnothRegisterHandler(this, &TEditTBarDlg::eClickHandler);
m_pwndSelImg->pnothRegisterHandler(this, &TEditTBarDlg::eClickHandler);
m_pwndUp->pnothRegisterHandler(this, &TEditTBarDlg::eClickHandler);
// Set up our window states
m_wstateEdit.AddWndEnable(kCQCIntfEd::ridDlg_EditTBar_ClrImage);
m_wstateEdit.AddWndEnable(kCQCIntfEd::ridDlg_EditTBar_Del);
m_wstateEdit.AddWndEnable(kCQCIntfEd::ridDlg_EditTBar_Opacity);
m_wstateEdit.AddWndEnable(kCQCIntfEd::ridDlg_EditTBar_MoveDn);
m_wstateEdit.AddWndEnable(kCQCIntfEd::ridDlg_EditTBar_EditAct);
m_wstateEdit.AddWndEnable(kCQCIntfEd::ridDlg_EditTBar_SelImg);
m_wstateEdit.AddWndEnable(kCQCIntfEd::ridDlg_EditTBar_MoveUp);
m_wstateEmpty.AddWndDisable(kCQCIntfEd::ridDlg_EditTBar_ClrImage);
m_wstateEmpty.AddWndDisable(kCQCIntfEd::ridDlg_EditTBar_Del);
m_wstateEmpty.AddWndDisable(kCQCIntfEd::ridDlg_EditTBar_Opacity);
m_wstateEmpty.AddWndDisable(kCQCIntfEd::ridDlg_EditTBar_MoveDn);
m_wstateEmpty.AddWndDisable(kCQCIntfEd::ridDlg_EditTBar_EditAct);
m_wstateEmpty.AddWndDisable(kCQCIntfEd::ridDlg_EditTBar_SelImg);
m_wstateEmpty.AddWndDisable(kCQCIntfEd::ridDlg_EditTBar_MoveUp);
m_wstateEmpty.SetFocus(kCQCIntfEd::ridDlg_EditTBar_Add, kCIDLib::True);
// The column titles aren't shown, but we need to set a placeholder
tCIDLib::TStrList colVals(1);
colVals.objAdd(L"Name");
m_pwndList->SetColumns(colVals);
// Set the range on the opacity slider
m_pwndImgOp->SetRange(0, 255);
// Load up any incoming buttons
const tCIDLib::TCard4 c4Count = m_piwdgEdit->c4ButtonCnt();;
for (tCIDLib::TCard4 c4Index = 0; c4Index < c4Count; c4Index++)
{
const TCQCIntfToolbar::TTBButton& tbbCur = m_piwdgEdit->tbbAt(c4Index);
colVals[0] = tbbCur.strText();
m_pwndList->c4AddItem(colVals, m_c4NextId++);
}
// Install us as the auto-in place editor on the list window
m_pwndList->SetAutoIPE(this);
//
// Select the 0th one (f available) to get its data loaded and set the
// appropriate window state.
//
if (c4Count)
{
m_wstateEdit.ApplyState(*this);
m_pwndList->SelectByIndex(0);
}
else
{
m_wstateEmpty.ApplyState(*this);
}
return bRet;
}
// ---------------------------------------------------------------------------
// TEditTBarDlg: Private, non-virutal methods
// ---------------------------------------------------------------------------
tCIDCtrls::EEvResponses TEditTBarDlg::eClickHandler(TButtClickInfo& wnotEvent)
{
if (wnotEvent.widSource() == kCQCIntfEd::ridDlg_EditTBar_Add)
{
// If the list is currently empty, then we need to move to the edit state
if (!m_piwdgEdit->c4ButtonCnt())
m_wstateEdit.ApplyState(*this);
// Add the button to our list first so it's there when the list index changes
const TString& strDefText(L"New Button");
const tCIDLib::TCard4 c4At = m_piwdgEdit->c4ButtonCnt();
m_piwdgEdit->AddButton(TCQCIntfToolbar::TTBButton(strDefText, m_piwdgEdit));
m_piwdgEdit->Invalidate();
tCIDLib::TStrList colVals(1);
colVals.objAdd(strDefText);
m_pwndList->c4AddItem(colVals, m_c4NextId++, c4At);
// Select this new one
m_pwndList->SelectByIndex(c4At);
}
else if (wnotEvent.widSource() == kCQCIntfEd::ridDlg_EditTBar_Cancel)
{
//
// Note we don't check for changes. We were editing the widget directly. If they
// cancel, the dialog entry point method will put back the original content
// again.
//
EndDlg(kCQCIntfEd::ridDlg_EditTBar_Cancel);
}
else if (wnotEvent.widSource() == kCQCIntfEd::ridDlg_EditTBar_ClrImage)
{
const tCIDLib::TCard4 c4Index = m_pwndList->c4CurItem();
if (c4Index != kCIDLib::c4MaxCard)
{
m_piwdgEdit->tbbAt(c4Index).ClearImage();
m_piwdgEdit->Invalidate();
// Clear the preview window as well
m_pwndImg->Reset();
}
}
else if (wnotEvent.widSource() == kCQCIntfEd::ridDlg_EditTBar_Del)
{
// Delete the selected button
const tCIDLib::TCard4 c4Index = m_pwndList->c4CurItem();
if (c4Index != kCIDLib::c4MaxCard)
{
// Delete it first from the widget
m_piwdgEdit->RemoveButtonAt(c4Index);
// And now from the list
m_pwndList->RemoveAt(c4Index);
// Redraw the widget area to pick up this change
m_piwdgEdit->Invalidate();
}
}
else if (wnotEvent.widSource() == kCQCIntfEd::ridDlg_EditTBar_EditAct)
{
//
// Invoke the command editing dialog on the selected button.
//
const tCIDLib::TCard4 c4Index = m_pwndList->c4CurItem();
if (c4Index != kCIDLib::c4MaxCard)
{
TCQCIntfToolbar::TTBButton& tbbCur = m_piwdgEdit->tbbAt(c4Index);
//
// We need to find all of the targetable widgets to pass in as action targets.
// We also add our owning view.
//
tCQCKit::TCmdTarList colExtra(tCIDLib::EAdoptOpts::NoAdopt);
m_pcivOwner->iwdgBaseTmpl().FindAllTargets(colExtra, kCIDLib::False);
colExtra.Add(m_pcivOwner);
const tCIDLib::TBoolean bRes = facCQCIGKit().bEditAction
(
*this
, tbbCur
, kCIDLib::True
, m_pcivOwner->cuctxToUse()
, &colExtra
, &m_pcivOwner->iwdgBaseTmpl().strTemplateName()
);
if (bRes)
ShowAction(tbbCur);
}
}
else if ((wnotEvent.widSource() == kCQCIntfEd::ridDlg_EditTBar_MoveDn)
|| (wnotEvent.widSource() == kCQCIntfEd::ridDlg_EditTBar_MoveUp))
{
//
// If it's not already at the end, then swap it with the one after
// it. The list window swap will redraw the visible items so it will
// udpate if a visible one was one of the swapped ones.
//
const tCIDLib::TCard4 c4Index = m_pwndList->c4CurItem();
const tCIDLib::TCard4 c4Count = m_pwndList->c4ItemCount();
// Note that this is backwards, up means lower indices below!
const tCIDLib::TBoolean bUp
(
wnotEvent.widSource() == kCQCIntfEd::ridDlg_EditTBar_MoveUp
);
// Make sure there's room in the selected direction
if ((!bUp && (c4Index + 1 < c4Count)) || (bUp && c4Index))
{
// There is so figure out the other index
tCIDLib::TCard4 c4Other = c4Index;
if (bUp)
c4Other--;
else
c4Other++;
//
// And swap first the buttons themselves then the list window items. Tell the
// window to follow the selected item, so it keeps the moved one selected.
//
m_piwdgEdit->SwapButtons(c4Index, c4Other);
m_pwndList->SwapRows(c4Index, c4Other, kCIDLib::True);
// Force a redraw to show the new order
m_piwdgEdit->Invalidate();
}
}
else if (wnotEvent.widSource() == kCQCIntfEd::ridDlg_EditTBar_Revert)
{
// Copy back over the original content
*m_piwdgEdit = m_iwdgOrg;
// And reload the buttons
tCIDLib::TStrList colVals(1);
colVals.objAdd(TString::strEmpty());
m_pwndList->RemoveAll();
const tCIDLib::TCard4 c4Count = m_piwdgEdit->c4ButtonCnt();;
for (tCIDLib::TCard4 c4Index = 0; c4Index < c4Count; c4Index++)
{
const TCQCIntfToolbar::TTBButton& tbbCur = m_piwdgEdit->tbbAt(c4Index);
colVals[0] = tbbCur.strText();
m_pwndList->c4AddItem(colVals, m_c4NextId++);
}
// Force a redraw of the area under the widget
m_piwdgEdit->Invalidate();
// If any buttons select the 0th one
if (m_pwndList->c4ItemCount())
{
m_pwndList->SelectByIndex(0);
m_wstateEdit.ApplyState(*this);
}
}
else if (wnotEvent.widSource() == kCQCIntfEd::ridDlg_EditTBar_Save)
{
EndDlg(kCQCIntfEd::ridDlg_EditTBar_Save);
}
else if (wnotEvent.widSource() == kCQCIntfEd::ridDlg_EditTBar_SelImg)
{
TCQCIntfToolbar::TTBButton& tbbCur = m_piwdgEdit->tbbAt(m_pwndList->c4CurItem());
TString strNewSel;
const tCIDLib::TBoolean bSel = facCQCTreeBrws().bSelectFile
(
*this
, L"Select a Button Image"
, tCQCRemBrws::EDTypes::Image
, tbbCur.strImagePath()
, m_pcivOwner->cuctxToUse()
, tCQCTreeBrws::EFSelFlags::SelectItems
, strNewSel
);
if (bSel)
{
// They selected something, so let's update the button
ShowPreview(strNewSel, tbbCur.c1Opacity());
//
// Set the path as the new image on the target button, and
// ask him to load it up.
//
tbbCur.strImagePath(strNewSel);
tbbCur.LoadImage(*m_pcivOwner);
m_piwdgEdit->Invalidate();
}
}
return tCIDCtrls::EEvResponses::Handled;
}
//
// We have to watch for changes in selection in the button list box and update the
// displayed info.
//
tCIDCtrls::EEvResponses TEditTBarDlg::eListHandler(TListChangeInfo& wnotEvent)
{
if (wnotEvent.eEvent() == tCIDCtrls::EListEvents::SelChanged)
{
const TCQCIntfToolbar::TTBButton& tbbNew = m_piwdgEdit->tbbAt(wnotEvent.c4Index());
// Update the image preview
if (tbbNew.strImagePath().bIsEmpty())
m_pwndImg->Reset();
else
ShowPreview(tbbNew.strImagePath(), tbbNew.c1Opacity());
// If we have an action, format it out and display it
ShowAction(tbbNew);
// Set the opacity slider
m_pwndImgOp->SetValue(tCIDLib::TInt4(tbbNew.c1Opacity()));
}
else if (wnotEvent.eEvent() == tCIDCtrls::EListEvents::Cleared)
{
//
// They've deleted the last one, so clear out all of the controls and
// disable them.
//
m_pwndActText->ClearText();
m_pwndImg->Reset();
m_pwndImgOp->SetValue(0xFF);
m_wstateEmpty.ApplyState(*this);
}
return tCIDCtrls::EEvResponses::Handled;
}
tCIDCtrls::EEvResponses TEditTBarDlg::eSliderHandler(TSliderChangeInfo& wnotEvent)
{
//
// We only have one, which is the image opacity. It should only be enabled if
// there is actually an image for the current button. So we just update the
// opacity of the current button and force a redraw.
//
if ((wnotEvent.eEvent() == tCIDCtrls::ESldrEvents::Change)
|| (wnotEvent.eEvent() == tCIDCtrls::ESldrEvents::EndTrack))
{
TCQCIntfToolbar::TTBButton& tbbCur = m_piwdgEdit->tbbAt(m_pwndList->c4CurItem());
tbbCur.c1Opacity(tCIDLib::TCard1(m_pwndImgOp->i4CurValue()));
m_piwdgEdit->Invalidate();
}
return tCIDCtrls::EEvResponses::Handled;
}
//
// If the passed button has an action, format it out and display it in the
// action text control.
//
tCIDLib::TVoid TEditTBarDlg::ShowAction(const TCQCIntfToolbar::TTBButton& tbbSrc)
{
const tCIDLib::TCard4 c4EvCount = tbbSrc.c4EventCount();
if (c4EvCount)
{
TTextStringOutStream strmFmt(2048UL);
for (tCIDLib::TCard4 c4EvIndex = 0; c4EvIndex < c4EvCount; c4EvIndex++)
{
if (c4EvIndex)
strmFmt << kCIDLib::NewLn;
// Put out an item for the event name
const TCQCActEvInfo& caeiCur = tbbSrc.caeiEventAt(c4EvIndex);
strmFmt << L"[" << caeiCur.m_strName
<< L"]" << kCIDLib::NewLn;
//
// Ask the source to format this event's opcodes. We tell it to
// start at indent level 1, so that the opcodes will be indented
// inwards under each event label.
//
tbbSrc.FormatOpsForEvent(caeiCur.m_strEventId, strmFmt, 1);
}
// Output the accumulated text
strmFmt.Flush();
m_pwndActText->strWndText(strmFmt.strData());
}
else
{
m_pwndActText->ClearText();
}
}
//
// Called when a new button is selected, to show that button's image (if any) in
// the preview control.
//
tCIDLib::TVoid
TEditTBarDlg::ShowPreview( const TString& strImgPath
, const tCIDLib::TCard1 c1Opacity)
{
if (strImgPath.bIsEmpty())
{
m_pwndImg->Reset();
return;
}
try
{
// We need a data server client to get the image
TDataSrvClient dsclSrv;
//
// Make sure the image exists. If not, then clear out the image
// settings so that we know we don't have an image anymore. Else,
// we can get the thumb and set it on our preview windwo.
//
if (dsclSrv.bFileExists(strImgPath, tCQCRemBrws::EDTypes::Image))
{
TPNGImage imgLoad;
tCIDLib::TCard4 c4SerNum = 0;
tCIDLib::TEncodedTime enctLastChange;
tCIDLib::TKVPFList colXMeta;
const tCIDLib::TBoolean bGotIt = dsclSrv.bReadImage
(
strImgPath
, c4SerNum
, enctLastChange
, imgLoad
, colXMeta
, m_pcivOwner->cuctxToUse().sectUser()
);
// Create a bitmap from the loaded content and set it on the preview
if (bGotIt)
{
TBitmap bmpImg(m_pcivOwner->gdevCompat(), imgLoad);
m_pwndImg->SetBitmap(bmpImg, c1Opacity);
}
else
{
m_pwndImg->Reset();
}
}
else
{
m_pwndImg->Reset();
}
}
catch(TError& errToCatch)
{
if (facCQCIntfEd().bShouldLog(errToCatch))
{
errToCatch.AddStackLevel(CID_FILE, CID_LINE);
TModule::LogEventObj(errToCatch);
}
m_pwndImg->Reset();
}
}
|
ecf7dffbd291eaf041b3c5569ec17b9afdcde13f | 5a77b5092acf817ac37a5fafd006feea434dd0d6 | /Doxygen_Graphviz/DesignPatternExample/大話/cpp/flyWeight/WebSiteFactory.cpp | c62e94b2c8d217f22dc541dc1d2fdd9f756f832a | [] | no_license | shihyu/MyTool | dfc94f507b848fb112483a635ef95e6a196c1969 | 3bfd1667ad86b3db63d82424cb4fa447cbe515af | refs/heads/master | 2023-05-27T19:09:10.538570 | 2023-05-17T15:58:18 | 2023-05-17T15:58:18 | 14,722,815 | 33 | 21 | null | null | null | null | UTF-8 | C++ | false | false | 365 | cpp | WebSiteFactory.cpp | #include "WebSiteFactory.h"
namespace flyWeight {
WebSite* WebSiteFactory::getWebSiteCategory(std::string key) {
if (!flyWeights->containsKey(key)) {
flyWeights->put(key, new ConcreteWebSite(key));
}
return flyWeights->get(key);
}
int WebSiteFactory::getWebSiteCount() {
return flyWeights->size();
}
} |
833769d2e5fed58da3b1a89b9cf9ddcce0e79867 | ac77b802d8363825128116301e3d70c8d37a0054 | /libqtgpio/services/sensors/hcsr04sensor.h | f0677602ed75a30372ea54c30a35ffea7d7dbaa6 | [] | no_license | vladest/qtgpio | 5a625fdf5ebfe9debd0d121e3a81aabe75ea0b75 | 3ea4f1d44522faaac0f864985deb2e00427a9e60 | refs/heads/master | 2021-09-28T01:35:09.388231 | 2021-09-25T20:26:15 | 2021-09-25T20:26:15 | 163,994,135 | 5 | 1 | null | 2021-06-22T16:08:43 | 2019-01-03T16:02:13 | C | UTF-8 | C++ | false | false | 1,166 | h | hcsr04sensor.h | #ifndef HCSR04SENSOR_H
#define HCSR04SENSOR_H
#include <QThread>
#include <QPointer>
#include <qgpioport.h>
class HCSR04Sensor : public QThread
{
Q_OBJECT
Q_PROPERTY(float distance READ distance NOTIFY distanceChanged)
public:
/**
* @brief HCSR04Sensor
* @param echoPort
* @param triggerPort
* @param parent
*
* after creating the class instance, need to call start() method to start measuring
*/
explicit HCSR04Sensor(int echoPort, int triggerPort, QObject *parent = nullptr);
virtual ~HCSR04Sensor();
/**
* @brief distance
* @return current distance in centimeters
*/
float distance() const;
/**
* @brief stop: stops measuring
*/
void stop();
int measureRate() const;
void setMeasureRate(int measureRate);
signals:
// connect via queued connection
void distanceChanged(float distance);
protected:
void run() override;
private:
QPointer<QGpioPort> m_echoPort;
QPointer<QGpioPort> m_triggerPort;
float m_distance = -1.0;
int m_measureRate = 10; //times per second
uint64_t m_delay = 100000ULL;
};
#endif // HCSR04SENSOR_H
|
9bf778c099134a16191ce55074e3da6596d788a5 | 12eea12fa9753bb1356a9bad6114ef37c69b64ce | /src/astar.cpp | c1ef9176794aed669b96c1727064df851f877bd5 | [] | no_license | guimafelipe/australian-map-search | 3fd507f97b714fbf140fefaf803822da78e4d19a | 56c70024a6693b50e670c4fb370f834d66d44c46 | refs/heads/master | 2020-03-27T14:28:30.851321 | 2018-08-30T20:16:01 | 2018-08-30T20:16:01 | 146,664,490 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,156 | cpp | astar.cpp | #include <vector>
#include <queue>
#include <algorithm>
#include <iostream>
#include "ausmap.hpp"
#include "graphsearch.hpp"
#include "astar.hpp"
using namespace std;
void printPath(int end, vector<int> & parent){
int curr = end;
while(curr != -1){
cout << curr << " ";
curr = parent[curr];
}
cout << endl;
}
#define EPS 0.0001
double Astar::run(){
vector<int> parent (g->size() +1, -1);
distance[start] = 0.0;
priority_queue<pair<double, int>, vector<pair<double, int> >, greater<pair<double, int> > > pq;
pq.push(make_pair(0.0 ,start));
while(!pq.empty()){
pair<double, int> front = pq.top();
pq.pop();
double cost = front.first;
int u = front.second;
if(cost > distance[u] + heuristica[u]) continue;
if(visited[u]) continue;
visited[u] = true;
if(u == destiny){
return distance[u];
}
vector<int> &currAdj = g->getAdjList(u);
int n = currAdj.size();
for(int i = 0; i < n; i++){
int v = currAdj[i];
double dist = g->dist(u, v);
if(distance[u] + dist < distance[v]){
distance[v] = distance[u] + dist;
pq.push(make_pair(distance[v] + heuristica[v], v));
parent[v] = u;
}
}
}
return -1;
} |
cded672a7ce9c1d62825796e2cfca4819108e01c | 2a5db4d9e51d29445f72d1ffd3f98609523b082d | /media-driver/media_driver/agnostic/common/os/mos_context.h | 3661d1b9f10b51867b5d2e5626b8198f0a2b8986 | [
"BSD-3-Clause",
"MIT"
] | permissive | mintaka33/media | 19f26239aee1d889860867a536024ffc137c2776 | 4ab1435ef3b3269ff9c0fa71072c3f81275a4b9d | refs/heads/master | 2021-05-11T04:01:48.314310 | 2018-02-02T03:43:36 | 2018-02-02T03:43:36 | 117,930,190 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,188 | h | mos_context.h | /*
* Copyright (c) 2017, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
//!
//! \file mos_context.h
//! \brief Container for parameters shared across different GPU contexts of the same device instance
//!
#ifndef __MOS_CONTEXT_H__
#define __MOS_CONTEXT_H__
#include "mos_os.h"
class OsContext
{
public:
enum MOS_S3D_CHANNEL
{
MOS_S3D_NONE, //!< Not in 3D mode
MOS_S3D_LEFT, //!< Left eye channel
MOS_S3D_RIGHT //!< Right eye channel
};
struct MOS_PLANE_OFFSET
{
int iSurfaceOffset; //!< Plane surface offset
int iXOffset; //!< Tile X offset
int iYOffset; //!< Tile Y offset
int iLockSurfaceOffset; //!< Offset in Locked Surface
};
protected:
//!
//! \brief Constructor for the OsContext
//!
OsContext(){};
public:
//!
//! \brief Destructor for the OsContext
//!
virtual ~OsContext(){};
//!
//! \brief Initialzie the OS Context Object
//! \return MOS_STATUS_SUCCESS on success case, MOS error status on fail cases
//!
virtual MOS_STATUS Init(MOS_CONTEXT* osDriverContext) = 0;
private:
//!
//! \brief Destory the OS Context Object, internal function, called by cleanup
//!
virtual void Destroy() = 0;
public:
//!
//! \brief Static entrypoint, get the OS Context Object
//! \return the os specific object for OS context
//!
static class OsContext* GetOsContextObject();
//!
//! \brief Clean up the smartptr
//!
void CleanUp();
#if MOS_COMMAND_BUFFER_DUMP_SUPPORTED
//!
//! \brief Unified dump command buffer initialization
//! \details check if dump command buffer was enabled and create the output directory
//! \return MOS_STATUS
//! Return MOS_STATUS_SUCCESS if successful, otherwise failed
//!
MOS_STATUS CommandBufferDumpInit();
#endif
//!
//! \brief Get the skuTable
//! \return The active SKU Table
//!
MEDIA_FEATURE_TABLE *GetSkuTable() { return &m_skuTable; };
//!
//! \brief Get the waTable
//! \return The active WA table
//!
MEDIA_WA_TABLE *GetWaTable() { return &m_waTable; };
//!
//! \brief Get the platform information string
//! \return value of m_platformInfo
//!
PLATFORM GetPlatformInfo() { return m_platformInfo; };
//!
//! \brief Get the gtSystemInfo string
//! \return value of m_gtSystemInfo
//!
MEDIA_SYSTEM_INFO *GetGtSysInfo() { return &m_gtSystemInfo; };
//!
//! \brief Get MemDecompState
//! \return pointer to m_mediaMemDecompState
//!
void* GetMemDecompState() { return m_mediaMemDecompState; };
//!
//! \brief Check the platform is Atom or not
//! \return true on Atom platform, false on none Atom platform
//!
bool IsAtomSoc() { return m_isAtomSOC; };
//!
//! \brief Set the OS Context valid flag
//! \param [in] isOsContextValid
//! Flag to indicate if the os context is valid.
//!
void SetOsContextValid(bool isOsContextValid) { m_osContextValid = isOsContextValid; };
//!
//! \brief Return the OS Context valid flag
//! \return true if the OS context is valid, false if not valid
//!
bool GetOsContextValid() { return m_osContextValid; };
//!
//! \brief Set slice count to shared memory and KMD
//! \param [in,out] pSliceCount
//! pointer to the slice count. Input the slice count for current
//! context, output the ruling slice count shared by all contexts.
//!
virtual void SetSliceCount(uint32_t *pSliceCount) { MOS_UNUSED(pSliceCount); };
protected:
//! \brief Platform string including product family, chipset family, etc
PLATFORM m_platformInfo = {};
//! \brief sku table
MEDIA_FEATURE_TABLE m_skuTable = {};
//! \brief wa table
MEDIA_WA_TABLE m_waTable = {};
//! \brief GT system information, like EU counter, thread count, etc.
MEDIA_SYSTEM_INFO m_gtSystemInfo = {};
//! \brief Whether the processor is Atom
bool m_isAtomSOC = false;
//! \brief Internal media state for memory decompression
void* m_mediaMemDecompState = nullptr;
//! \brief Flag to mark whether the os context is valid
bool m_osContextValid = false;
//! \brief Whether the current driver is of 64 bit
bool m_64bit = false;
//! \brief Whether or not need deallocation on exit
bool m_deallocateOnExit = false;
//! \brief need KMD to track the media frame or not
bool m_enableKmdMediaFrameTracking = false;
//! \brief need KMD to assist the command buffer parsing
bool m_noParsingAssistanceInKmd = false;
//! \brief how many bytes of the Nal Unit need be included
uint32_t m_numNalUnitBytesIncluded = 0;
//! \brief For GPU Reset Statistics, rest counter
uint32_t m_gpuResetCount = 0;
//! \brief For GPU Reset Statistics, the active batch
uint32_t m_gpuActiveBatch = 0;
//! \brief For GPU Reset Statistics, the pending batch
uint32_t m_gpuPendingBatch = 0;
//! \brief For Resource addressing, whether patch list mode is active
bool m_usesPatchList = false;
//! \brief For Resource addressing, whether GPU address mode is active
bool m_usesGfxAddress = false;
//! \brief For limited GPU VA resource can not be mapped during creation
bool m_mapOnCreate = false;
//! \brief check whether use inline codec status update or seperate BB
bool m_inlineCodecStatusUpdate = false;
//! \brief Component info
MOS_COMPONENT m_component = COMPONENT_UNKNOWN;
//! \brief Flag to indicate if HAS is enabled
bool m_simIsActive = false;
#if MOS_COMMAND_BUFFER_DUMP_SUPPORTED
//! \brief Command buffer dump.
//! \brief Flag to indicate if Dump command buffer is enabled
bool m_dumpCommandBuffer = false;
//! \brief Indicates that the command buffer should be dumped to a file
bool m_dumpCommandBufferToFile = false;
//! \brief Indicates that the command buffer should be dumped via MOS normal messages
bool m_dumpCommandBufferAsMessages = false;
//! \brief Platform name - maximum 4 bytes length
char m_platformName[MOS_COMMAND_BUFFER_PLATFORM_LEN] = {0};
#endif // MOS_COMMAND_BUFFER_DUMP_SUPPORTED
};
#endif // #ifndef __MOS_CONTEXT_H__
|
a1cedc724c00f89f7f2e28386da50be87cce1d0b | 2d690c171ad60b52857f6273337e7d5a298ad29b | /Functions.h | 027d73f5dd53f36f8151c20c910900f67136c067 | [] | no_license | ludioao/servidorHttp | 9e603cac7389c59886abb3c53b5f66defccce76d | 1934c32430ceff07fbb29826c3e7d5b8cefb1977 | refs/heads/master | 2021-03-27T12:47:55.759387 | 2017-03-28T18:03:52 | 2017-03-28T18:03:52 | 79,241,613 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 181 | h | Functions.h | #ifndef __FUNCTION_H__
#define __FUNCTION_H__
#include <iostream>
#include <string>
using namespace std;
void console_log(const string text)
{
cout << text << endl;
}
#endif |
a7bcab719df1d1ad2bbce548f3e29002507f49d6 | 4b868517759ab9e90d49c2107e388087aea8aa63 | /no-category/4948.cpp | 3001b2f07f6974455e591fab516a48d59cfa7df3 | [] | no_license | quddnr153/acmicpc | 546dac1423ff510e1c87b344b08593bc0b0b5873 | dd7f586d0726a41c82c4acdff06fde83984ed65a | refs/heads/master | 2021-01-12T13:01:23.510320 | 2018-04-05T13:56:09 | 2018-04-05T13:56:09 | 70,113,268 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 2,108 | cpp | 4948.cpp | /* Problem Statements
* 베르트랑 공준
한국어 원문
문제집
시간 제한 메모리 제한 제출 정답 맞은 사람 정답 비율
1 초 128 MB 588 312 255 56.291%
문제
베르트랑 공준은 임의의 자연수 n에 대하여, n보다 크고, 2n보다 작거나 같은 소수는 적어도 하나 존재한다는 내용을 담고 있다.
이 명제는 조제프 베르트랑이 1845년에 추측했고, 파프누티 체비쇼프가 1850년에 증명했다.
예를 들어, 10보다 크고, 20보다 작거나 같은 소수는 4개가 있다. (11, 13, 17, 19) 또, 14보다 크고, 28보다 작거나 같은 소수는 3개가 있다. (17,19, 23)
n이 주어졌을 때, n보다 크고, 2n보다 작거나 같은 소수의 개수를 구하는 프로그램을 작성하시오.
입력
입력은 여러 개의 테스트 케이스로 이루어져 있다. 각 케이스는 n을 포함하며, 한 줄로 이루어져 있다. (n ≤ 123456)
입력의 마지막에는 0이 주어진다.
출력
각 테스트 케이스에 대해서, n보다 크고, 2n보다 작거나 같은 소수의 개수를 출력한다.
예제 입력 복사
1
10
13
100
1000
10000
100000
0
예제 출력 복사
1
4
3
21
135
1033
8392
*/
/*
* Author : Byungwook Lee
* Date : 2016/12/20
* E-mail : quddnr153@gmail.com
* Github : github.com/quddnr153
* Filename : 4948.cpp
*/
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string>
#include <string.h>
#define MAX_N (123456 * 2)
using namespace std;
char prime[(MAX_N + 7) /8];
inline bool isPrime(int k) { return prime[k >> 3] & (1 << (k & 7)); }
inline void setComposite(int k) { prime[k >> 3] &= ~(1 << (k & 7)); }
void eratosthenes() {
memset(prime, 255, sizeof(prime));
setComposite(0);
setComposite(1);
for(int i = 2; i * i <= MAX_N; i++)
if(isPrime(i))
for(int j = i * i; j <= MAX_N; j += i)
setComposite(j);
}
int main()
{
int n;
eratosthenes();
cin >> n;
while(n != 0) {
int cnt = 0;
for(int i = n + 1; i <= 2 * n; i++) {
if(isPrime(i)) cnt++;
}
cout << cnt << endl;
cin >> n;
}
return 0;
} |
0c3b98b4875a4166952c83b6fb5df271ca857dae | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/Runtime/Engine/Classes/Particles/ParticleLODLevel.h | be4063525cea8a2afff79e090a303ef417f750c7 | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 4,262 | h | ParticleLODLevel.h | // Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
/**
* ParticleLODLevel
*
*/
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "UObject/Object.h"
#include "ParticleLODLevel.generated.h"
class UInterpCurveEdSetup;
class UParticleModule;
UCLASS(collapsecategories, hidecategories=Object, editinlinenew, MinimalAPI)
class UParticleLODLevel : public UObject
{
GENERATED_UCLASS_BODY()
/** The index value of the LOD level */
UPROPERTY()
int32 Level;
/** True if the LOD level is enabled, meaning it should be updated and rendered. */
UPROPERTY()
uint32 bEnabled:1;
/** The required module for this LOD level */
UPROPERTY(instanced)
class UParticleModuleRequired* RequiredModule;
/** An array of particle modules that contain the adjusted data for the LOD level */
UPROPERTY(instanced)
TArray<class UParticleModule*> Modules;
// Module<SINGULAR> used for emitter type "extension".
UPROPERTY(export)
class UParticleModuleTypeDataBase* TypeDataModule;
/** The SpawnRate/Burst module - required by all emitters. */
UPROPERTY(export)
class UParticleModuleSpawn* SpawnModule;
/** The optional EventGenerator module. */
UPROPERTY(export)
class UParticleModuleEventGenerator* EventGenerator;
/** SpawningModules - These are called to determine how many particles to spawn. */
UPROPERTY(transient, duplicatetransient)
TArray<class UParticleModuleSpawnBase*> SpawningModules;
/** SpawnModules - These are called when particles are spawned. */
UPROPERTY(transient, duplicatetransient)
TArray<class UParticleModule*> SpawnModules;
/** UpdateModules - These are called when particles are updated. */
UPROPERTY(transient, duplicatetransient)
TArray<class UParticleModule*> UpdateModules;
/** OrbitModules
* These are used to do offsets of the sprite from the particle location.
*/
UPROPERTY(transient, duplicatetransient)
TArray<class UParticleModuleOrbit*> OrbitModules;
/** Event receiver modules only! */
UPROPERTY(transient, duplicatetransient)
TArray<class UParticleModuleEventReceiverBase*> EventReceiverModules;
UPROPERTY()
uint32 ConvertedModules:1;
UPROPERTY()
int32 PeakActiveParticles;
//~ Begin UObject Interface
virtual void PostLoad() override;
//~ End UObject Interface
// @todo document
virtual void UpdateModuleLists();
// @todo document
virtual bool GenerateFromLODLevel(UParticleLODLevel* SourceLODLevel, float Percentage, bool bGenerateModuleData = true);
/**
* CalculateMaxActiveParticleCount
* Determine the maximum active particles that could occur with this emitter.
* This is to avoid reallocation during the life of the emitter.
*
* @return The maximum active particle count for the LOD level.
*/
virtual int32 CalculateMaxActiveParticleCount();
/** Update to the new SpawnModule method */
void ConvertToSpawnModule();
/** @return the index of the given module if it is contained in the LOD level */
int32 GetModuleIndex(UParticleModule* InModule);
/** @return the module at the given index if it is contained in the LOD level */
ENGINE_API UParticleModule* GetModuleAtIndex(int32 InIndex);
/**
* Sets the LOD 'Level' to the given value, properly updating the modules LOD validity settings.
* This function assumes that any error-checking of values was done by the caller!
* It also assumes that when inserting an LOD level, indices will be shifted from lowest to highest...
* When removing one, the will go from highest to lowest.
*/
virtual void SetLevelIndex(int32 InLevelIndex);
// For Cascade
void AddCurvesToEditor(UInterpCurveEdSetup* EdSetup);
void RemoveCurvesFromEditor(UInterpCurveEdSetup* EdSetup);
void ChangeEditorColor(FColor& Color, UInterpCurveEdSetup* EdSetup);
/**
* Return true if the given module is editable for this LOD level.
*
* @param InModule The module of interest.
* @return true If it is editable for this LOD level.
* false If it is not.
*/
ENGINE_API bool IsModuleEditable(UParticleModule* InModule);
/**
* Compiles all modules for this LOD level.
* @param EmitterBuildInfo - Where to store emitter information.
*/
void CompileModules( struct FParticleEmitterBuildInfo& EmitterBuildInfo );
};
|
872dc36fa54b5e5c52bb87bdafc8dc1a7f4bf38f | 1e09a2a90e772c24e13234665b724a13a3b64b18 | /Week 07/Code/main.cpp | 500e9be6b34c73ab00dec39165f44fd66e11f81a | [
"MIT"
] | permissive | toby0622/NDHU-Algorithm-Course | 52f9ed2137892a8c84dadf26984afd0039e8af65 | 58c86d370643177c69a809dbdb8ec6b34ecf4d15 | refs/heads/main | 2023-06-04T12:07:30.110357 | 2021-06-26T02:33:57 | 2021-06-26T02:33:57 | 377,765,715 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,078 | cpp | main.cpp | #include <iostream>
#include <string>
#include <vector>
#include <set>
using namespace std;
// Define the maximum possible length of string `X` and `Y`
#define MAX 400
// `lookup[i][j]` stores the length of LCS of substring `X[0…i-1]` and `Y[0…j-1]`
int lookup[MAX][MAX] = {};
// Function to return all LCS of substrings `X[0…m-1]`, `Y[0…n-1]`
vector<string> LCS(string X, string Y, int m, int n)
{
// if the end of either sequence is reached
if (m == 0 || n == 0)
{
// create a vector with 1 empty string and return
vector<string> v(1);
return v;
}
// if the last character of `X` and `Y` matches
if (X[m - 1] == Y[n - 1])
{
// ignore the last characters of `X` and `Y` and find all LCS of substring
// `X[0…m-2]`, `Y[0…n-2]` and store it in a vector
vector<string> lcs = LCS(X, Y, m - 1, n - 1);
// append current character `X[m-1]` or `Y[n-1]` to all LCS of
// substring `X[0…m-2]` and `Y[0…n-2]`
for (string &str: lcs) { // don't remove `&`
str.push_back(X[m - 1]);
}
return lcs;
}
// we reach here when the last character of `X` and `Y` don't match
// if a top cell of the current cell has more value than the left cell,
// then ignore the current character of string `X` and find all LCS of
// substring `X[0…m-2]`, `Y[0…n-1]`
if (lookup[m - 1][n] > lookup[m][n - 1]) {
return LCS(X, Y, m - 1, n);
}
// if a left cell of the current cell has more value than the top cell,
// then ignore the current character of string `Y` and find all LCS of
// substring `X[0…m-1]`, `Y[0…n-2]`
if (lookup[m][n - 1] > lookup[m - 1][n]) {
return LCS(X, Y, m, n - 1);
}
// if the top cell has equal value to the left cell, then consider
// both characters
vector<string> top = LCS(X, Y, m - 1, n);
vector<string> left = LCS(X, Y, m, n - 1);
// merge two vectors and return
top.insert(top.end(), left.begin(), left.end());
// copy(left.begin(), left.end(), back_inserter(top));
return top;
}
// Function to fill the lookup table by finding the length of LCS
// of substring `X[0…m-1]` and `Y[0…n-1]`
void LCSLength(string X, string Y, int m, int n)
{
// first row and first column of the lookup table
// are already 0 as `lookup[][]` is globally declared
// fill the lookup table in a bottom-up manner
for (int i = 1; i <= m; i++)
{
for (int j = 1; j <= n; j++)
{
// if current character of `X` and `Y` matches
if (X[i - 1] == Y[j - 1]) {
lookup[i][j] = lookup[i - 1][j - 1] + 1;
}
// otherwise, if the current character of `X` and `Y` don't match
else {
lookup[i][j] = max(lookup[i - 1][j], lookup[i][j - 1]);
}
}
}
}
// Function to find all LCS of string `X[0…m-1]` and `Y[0…n-1]`
set<string> LCS(string X, string Y)
{
int m = X.length(), n = Y.length();
// fill lookup table
LCSLength(X, Y, m, n);
// find all the longest common sequences
vector<string> v = LCS(X, Y, m, n);
// since a vector can contain duplicates, "convert" it to a set
set<string> lcs(make_move_iterator(v.begin()),
make_move_iterator(v.end()));
// to copy a vector to a set use set<string> lcs(v.begin(), v.end())
// return set containing all LCS
return lcs;
}
int main()
{
string X;
string Y;
while (cin >> X >> Y && !cin.eof()) {
set<string> lcs = LCS(X, Y);
// print set elements
for (string str: lcs) {
if (str.empty()) {
cout << "No common sequence." << endl;
}
else {
cout << str << endl;
}
}
cout << endl;
for (int i = 0; i < MAX; i++) {
for (int j = 0; j < MAX; j++) {
lookup[i][j] = 0;
}
}
}
return 0;
} |
a4bcfe867a4cd5c8dac4db2a7e342cfc373c9e3b | df0e24a1f4f17632a0a2afc5673a8161d4d8f09f | /ScaleSpace/ScaleSpaceFactory.h | 9fc366b831ba3447f2ad0ac5a206039d42a88c31 | [] | no_license | kn65op/ScaleSpace | 2ea4db1024a6caf6ccbb529924b60379501ac9a1 | 6d86af5bf5021dd71c708dd49b159dedd0f80273 | refs/heads/master | 2020-04-06T04:25:44.439363 | 2013-12-10T19:44:30 | 2013-12-10T19:44:30 | 8,165,112 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 577 | h | ScaleSpaceFactory.h | #pragma once
#include "ScaleSpace.h"
#include "ScaleSpaceOpenCL.h"
#include "ScaleSpaceOpenCVCPU.h"
#include "ScaleSpaceOpenCVGPU.h"
class ScaleSpaceFactory
{
public:
/**
* Get ScaleSpace implementation. If processor is unavailable (eg. no GPGPU libraries is available) it throws NoPlatformScaleSpaceException.
* @param processor Procesor used to calculate ScaleSpace.
* @param mode What objects to detect.
* @return Pointer to created ScaleSpace implementation.
*/
static ScaleSpace * getScaleSpace(ScaleSpaceProcessor processor, ScaleSpaceMode mode);
};
|
935936949ab3685d95f892f3a510aa41dd87bc40 | d482ac1260ab75f7cd0e8e94cf5bab1606c69d30 | /Chapter1/Game.cpp | 8ace2ac3a8581c2ef93c95d83e6236d2d768eda7 | [] | no_license | Alessio-Faina/GameProgramming | d1ff6e6a73f934ef92d86b155f4c65fae052f04f | 44156f3f0c6ddda19e033a6ec5ae78228bcf4486 | refs/heads/master | 2020-03-26T04:00:22.531166 | 2018-08-12T17:17:49 | 2018-08-12T17:17:49 | 144,481,476 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,289 | cpp | Game.cpp | #include "Game.h"
Game::Game()
: mWindow(nullptr)
, mRenderer(nullptr)
, mTicksCount(0)
, mIsRunning(true)
, mEndGameWait(true)
{
}
Game::~Game()
{
}
void Game::InitBall(Ball* ball)
{
int diff = rand() % 20 - 10;
int xSpeed = rand() % 2 + 1;
int ySpeed = rand() % 2 + 1;
ball->ballPos.x = WINDOW_WIDTH / 2.0f + 10 * diff;
ball->ballPos.y = WINDOW_HEIGHT / 2.0f + 10 * diff;
ball->ballSpeed.x = -350.0f * (xSpeed == 2 ? -1 : 1) + 10 * diff;
ball->ballSpeed.y = 375.0f * (ySpeed == 2 ? -1 : 1) + 10 * diff;
ball->isBallDead = false;
}
void Game::InitBalls()
{
mRunningBalls = 2;
Ball temp;
for (int i = 0; i < mRunningBalls; i++)
{
InitBall(&temp);
mBalls.push_back(temp);
}
}
bool Game::Initialize()
{
srand(time(NULL));
int sdlResult = SDL_Init(SDL_INIT_VIDEO);
if (sdlResult != 0)
{
SDL_Log("[%s:%i - Can't init SDL: ", __FUNCTION__, __LINE__, SDL_GetError());
return false;
}
mWindow = SDL_CreateWindow(GAME_TITLE, WINDOW_X_COORD, WINDOW_Y_COORD,
WINDOW_WIDTH, WINDOW_HEIGHT, 0);
if (!mWindow)
{
SDL_Log("[%s:%i - Can't create SDL Window: ", __FUNCTION__, __LINE__, SDL_GetError());
return false;
}
mRenderer = SDL_CreateRenderer(mWindow, -1,
SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC);
if (!mRenderer)
{
SDL_Log("[%s:%i - Can't create SDL Renderer!: ", __FUNCTION__, __LINE__, SDL_GetError());
return false;
}
if (TTF_Init() < 0)
{
const char* temp = SDL_GetError();
SDL_Log("[%s:%i - Can't create SDL Renderer!: ", __FUNCTION__, __LINE__, temp);
return false;
}
mFont = TTF_OpenFont(WINDOWS_FONTS_FOLDER, FONT_THICKNESS);
if (!mFont)
{
const char* temp = SDL_GetError();
SDL_Log("[%s:%i - Can't create SDL font: ", __FUNCTION__, __LINE__, temp);
}
mPaddlePosLeft.x = 10.0f;
mPaddlePosLeft.y = WINDOW_HEIGHT / 2.0f;
mPaddlePosRight.x = WINDOW_WIDTH - PADDLE_THICKNESS_W - 10.0f;
mPaddlePosRight.y = WINDOW_HEIGHT / 2.0f;
mPlayerLeftScore = 0;
mPlayerRightScore = 0;
InitBalls();
/*
mBallPos.x = WINDOW_WIDTH / 2.0f;
mBallPos.y = WINDOW_HEIGHT / 2.0f;
mBallSpeed.x = -400.0f;
mBallSpeed.y = 435.0f;
*/
mWallTop.x = 0;
mWallTop.y = 0;
mWallTop.h = WALL_THICKNESS;
mWallTop.w = WINDOW_WIDTH;
/*
mWallRight.x = WINDOW_WIDTH - WALL_THICKNESS;
mWallRight.y = 0;
mWallRight.h = WINDOW_HEIGHT;
mWallRight.w = WALL_THICKNESS;
*/
mWallBottom.x = 0;
mWallBottom.y = WINDOW_HEIGHT - WALL_THICKNESS;
mWallBottom.h = WALL_THICKNESS;
mWallBottom.w = WINDOW_WIDTH;
return true;
}
void Game::RunLoop()
{
while (mIsRunning)
{
ProcessInput();
UpdateGame();
GenerateOutput();
}
while (mEndGameWait)
{
ProcessInput();
}
}
void Game::Shutdown()
{
if (mFont)
{
TTF_CloseFont(mFont);
}
TTF_Quit();
SDL_DestroyRenderer(mRenderer);
SDL_DestroyWindow(mWindow);
SDL_Quit();
}
void Game::ProcessInput()
{
SDL_Event event;
while (SDL_PollEvent(&event))
{
switch (event.type)
{
case SDL_QUIT:
mIsRunning = false;
mEndGameWait = false;
return;
}
}
const Uint8* keybState = SDL_GetKeyboardState(NULL);
if (keybState[SDL_SCANCODE_ESCAPE])
{
mIsRunning = false;
mEndGameWait = false;
return;
}
if (mIsRunning)
{
mPaddleDirLeft = 0;
if (keybState[SDL_SCANCODE_W])
{
mPaddleDirLeft -= 1;
}
if (keybState[SDL_SCANCODE_S])
{
mPaddleDirLeft += 1;
}
mPaddleDirRight = 0;
if (keybState[SDL_SCANCODE_I])
{
mPaddleDirRight -= 1;
}
if (keybState[SDL_SCANCODE_K])
{
mPaddleDirRight += 1;
}
}
}
void Game::movePaddle(int paddleDir, Vector2* paddlePos,
float deltaTime)
{
if (paddleDir != 0)
{
paddlePos->y += paddleDir * 300.0f * deltaTime;
if (paddlePos->y < WALL_THICKNESS)
{
paddlePos->y = WALL_THICKNESS;
}
else if (paddlePos->y >
(WINDOW_HEIGHT - PADDLE_THICKNESS_H - WALL_THICKNESS))
{
paddlePos->y =
WINDOW_HEIGHT - PADDLE_THICKNESS_H - WALL_THICKNESS;
}
}
}
void Game::checkCollisionLeft(Ball* ball)
{
if (ball->isBallDead)
{
return;
}
float diff = ball->ballPos.y - mPaddlePosLeft.y;
if ((diff <= PADDLE_THICKNESS_H && diff > (-BALL_THICKNESS / 2)) &&
(ball->ballPos.x <= 25.0f) &&
(ball->ballSpeed.x < 0.0f)
)
{
ball->ballSpeed.x *= -1;
}
if (ball->ballPos.x < 0.0f )
{
mPlayerRightScore++;
ball->isBallDead = true;
mRunningBalls--;
}
}
void Game::checkCollisionRight(Ball* ball)
{
if (ball->isBallDead)
{
return;
}
float diff = ball->ballPos.y - mPaddlePosRight.y;
if ((diff <= PADDLE_THICKNESS_H && diff >(-BALL_THICKNESS / 2)) &&
(ball->ballPos.x >= WINDOW_WIDTH - 25.0f) &&
(ball->ballSpeed.x > 0.0f)
)
{
ball->ballSpeed.x *= -1;
}
if (ball->ballPos.x > WINDOW_WIDTH)
{
mPlayerLeftScore++;
ball->isBallDead = true;
mRunningBalls--;
}
}
void Game::moveBall(Ball* ball, float deltaTime)
{
ball->ballPos.x += ball->ballSpeed.x * deltaTime;
ball->ballPos.y += ball->ballSpeed.y * deltaTime;
/*
if ((mBallPos.x >= WINDOW_WIDTH - BALL_THICKNESS) && mBallSpeed.x > 0)
{
mBallSpeed.x *= -1;
}
*/
if ((ball->ballPos.y >= WINDOW_HEIGHT - BALL_THICKNESS / 2 - WALL_THICKNESS)
&& ball->ballSpeed.y > 0)
{
ball->ballSpeed.y *= -1;
}
if ((ball->ballPos.y <= BALL_THICKNESS / 2 + WALL_THICKNESS)
&& ball->ballSpeed.y < 0)
{
ball->ballSpeed.y *= -1;
}
}
void Game::UpdateGame()
{
while (!SDL_TICKS_PASSED(SDL_GetTicks(), mTicksCount + 16))
{
}
float deltaTime = (SDL_GetTicks() - mTicksCount) / 1000.0f;
if (deltaTime > 0.05f)
{
deltaTime = 0.05f;
}
mTicksCount = SDL_GetTicks();
movePaddle(mPaddleDirLeft, &mPaddlePosLeft, deltaTime);
movePaddle(mPaddleDirRight, &mPaddlePosRight, deltaTime);
for (std::vector<Ball>::iterator it = mBalls.begin(); it != mBalls.end(); ++it)
{
moveBall(&(*it), deltaTime);
}
for (std::vector<Ball>::iterator it = mBalls.begin(); it != mBalls.end(); ++it)
{
checkCollisionLeft(&(*it));
checkCollisionRight(&(*it));
}
if(mRunningBalls <= 0)
{
mIsRunning = false;
}
}
void Game::writeScore(int playerScore, enum PlayerSide side)
{
if (!mFont)
{
return;
}
std::string ply = "1: ";
if (side == Right)
{
ply = "2: ";
}
std::string score_text = "Player " + ply + std::to_string(playerScore);
SDL_Color textColor = { 255, 0, 0, 0 };
SDL_Surface* textSurface = TTF_RenderText_Solid(mFont,
score_text.c_str(), textColor);
if (!textSurface)
{
const char* temp = SDL_GetError();
SDL_Log("[%s:%i - Can't create SDL textSurface: ", __FUNCTION__, __LINE__, temp);
return;
}
SDL_Texture* text = SDL_CreateTextureFromSurface(mRenderer, textSurface);
if (!text)
{
const char* temp = SDL_GetError();
SDL_Log("[%s:%i - Can't create SDL text: ", __FUNCTION__, __LINE__, temp);
SDL_FreeSurface(textSurface);
return;
}
int text_width = textSurface->w;
int text_height = textSurface->h;
SDL_FreeSurface(textSurface);
SDL_Rect renderQuad = { 20, 50, text_width, text_height };
if (side == Left)
{
renderQuad.x = 20;
renderQuad.y = 0;
}
else
{
renderQuad.x = WINDOW_WIDTH - 100;
renderQuad.y = 0;
}
SDL_RenderCopy(mRenderer, text, NULL, &renderQuad);
SDL_DestroyTexture(text);
}
void Game::GenerateOutput()
{
SDL_SetRenderDrawColor(mRenderer, 0, 0, 255, 255);
SDL_RenderClear(mRenderer);
SDL_SetRenderDrawColor(mRenderer, 0, 255, 0, 255);
//SDL_RenderFillRect(mRenderer, &mWallRight);
SDL_RenderFillRect(mRenderer, &mWallTop);
SDL_RenderFillRect(mRenderer, &mWallBottom);
SDL_SetRenderDrawColor(mRenderer, 255, 255, 255, 255);
SDL_Rect movingObjects{
0, 0, BALL_THICKNESS, BALL_THICKNESS
};
for (std::vector<Ball>::iterator it = mBalls.begin(); it != mBalls.end(); ++it)
{
if (!it->isBallDead)
{
movingObjects.x = static_cast<int>(it->ballPos.x);
movingObjects.y = static_cast<int>(it->ballPos.y);
SDL_RenderFillRect(mRenderer, &movingObjects);
}
}
movingObjects.x = static_cast<int>(mPaddlePosLeft.x);
movingObjects.y = static_cast<int>(mPaddlePosLeft.y);
movingObjects.w = PADDLE_THICKNESS_W;
movingObjects.h = PADDLE_THICKNESS_H;
SDL_RenderFillRect(mRenderer, &movingObjects);
movingObjects.x = static_cast<int>(mPaddlePosRight.x);
movingObjects.y = static_cast<int>(mPaddlePosRight.y);
SDL_RenderFillRect(mRenderer, &movingObjects);
writeScore(mPlayerLeftScore, Left);
writeScore(mPlayerRightScore, Right);
SDL_RenderPresent(mRenderer);
}
|
5d0669085bc9f36c5df070ff26845d275e49d606 | 97e0fdd84ce52d6fcb3355faf8f8f45fd5eb1f96 | /include/pronunciationVoiceAddrByGlosbe.h | d663a95e25c6ed7f730b79772e936ed879e88252 | [] | no_license | barnasm/TranslateLX | a57879110c22b23c1c97be1cc48fa0d28bb35903 | fc7edde79a968dc01ad6e2e1f17f5ffd35a0e751 | refs/heads/master | 2020-05-09T13:52:16.218871 | 2019-04-13T13:47:02 | 2019-04-13T13:47:02 | 181,171,188 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 534 | h | pronunciationVoiceAddrByGlosbe.h | #pragma once
#include <string>
#include <regex>
#include "getWebPageContent.h"
class PronunciationVoiceAddrByGlosbe: public DictionaryDataInterface, GetWebPageContent
{
std::vector<std::string> getData(const std::string &addr){
if(lastAddr == addr)
return res;
lastAddr = addr;
//there are also .mp3 voices
return res = getContent(webInterface->getWebPageCode(addr),
"<span class=\"audioPlayer-container\"><span.+?data-url-ogg=\"(.+?)\".+?class=\"audioPlayer\"></span");
}
};
|
0da5ac080d831990ed3fcd9592f22b13ca00dd2e | 3aa9a68026ab10ced85dec559b6b4dfcb74ae251 | /learning graphs/dfs_bfs.cpp | 4b9ce87da1e8b8b050f7bc1679a507e2be2b7e31 | [] | no_license | kushuu/competitive_programming_all | 10eee29c3ca0656a2ffa37b142df680c3a022f1b | 5edaec66d2179a012832698035bdfb0957dbd806 | refs/heads/master | 2023-08-17T15:09:48.492816 | 2021-10-04T20:09:37 | 2021-10-04T20:09:37 | 334,891,360 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,870 | cpp | dfs_bfs.cpp | /****************************************************************
Author: kushuu File: dfs.cpp Date: Mon Oct 04 2021
****************************************************************/
#include <bits/stdc++.h>
//shorts
#define ll long long int
#define sll stack<long long int>
#define vll vector<long long int>
#define ld long double
#define pb push_back
#define mp make_pair
#define vpll vector<pair<long long int, long long int>>
#define fastIO ios_base::sync_with_stdio(false); cin.tie(NULL);
#define fo(i,x,y) for(long long i = x; i < y; i++)
#define MOD 1000000007
#define endl "\n"
#define F first
#define S second
#define s(a) a.size()
//program specific shorts (if any)
//
using namespace std;
ll getlcm(ll a, ll b) {
return (a*b)/__gcd(a, b);
}
class Graph {
public:
unordered_map<int, bool> vis;
unordered_map<int, vector<int>> adj_list;
void add_node(int v, int w) {
adj_list[v].push_back(w);
}
void dfs(int start) {
vis[start] = true;
cout << start << " " ;
for(auto i : adj_list[start]) {
if(!vis[i]) dfs(i);
}
}
void bfs(int start) {
queue<int> check;
check.push(start);
vis[start] = true;
while(!check.empty()) {
int curr = check.front();
check.pop();
cout << curr << " " ;
for(auto i : adj_list[curr]) {
if(!vis[i]) {
vis[i] = true;
check.push(i);
}
}
}
}
};
int main() {
fastIO;
Graph G;
G.add_node(0, 1);
G.add_node(0, 2);
G.add_node(1, 2);
G.add_node(2, 0);
G.add_node(2, 3);
G.add_node(3, 3);
G.dfs(2); cout << endl;
for(auto &i : G.vis) i.S = false; // resetting vis to false for BFS.
G.bfs(2); cout << endl;
return 0;
} |
107e970e1449cdcb589d42f810a6a41ab4e795d4 | 68fac5700813376b3dbb3fb7a105d696256a3532 | /uberstealth/UberstealthDriversPage.h | b5e030deac0f1146adbfba471d010280a2af80ef | [] | no_license | nihilus/uberstealth | b0a970ed7da6f6641e547f3d1ec16abff3701e39 | ad6576ae582d5345707dfded35d4aeaa87475779 | refs/heads/master | 2016-09-06T14:46:19.223149 | 2014-09-14T00:15:34 | 2014-09-14T00:15:34 | 23,511,166 | 15 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 2,101 | h | UberstealthDriversPage.h | #pragma once
#include <HideDebugger/HideDebuggerProfile.h>
#include "WTLCommon.h"
#include "UberstealthPropertyPage.h"
#include <iostream>
#include "ProfileEventConsumer.h"
#include "resource.h"
namespace uberstealth {
class UberstealthDriversPage : public UberstealthPropertyPage<UberstealthDriversPage, IDD_DIALOG3>
{
public:
UberstealthDriversPage(ConfigProvider* configProvider) :
UberstealthPropertyPage(configProvider) {}
void loadProfile(const uberstealth::HideDebuggerProfile& profile);
void flushProfile(uberstealth::HideDebuggerProfile& profile);
bool isProfileDirty();
protected:
void enableControls(bool enabled);
private:
int uberstealth::UberstealthDriversPage::getRDTSCMode() const;
int uberstealth::UberstealthDriversPage::getRDTSCDelta() const;
WTL::CString uberstealth::UberstealthDriversPage::getRDTSCName() const;
WTL::CString uberstealth::UberstealthDriversPage::getStealthName() const;
typedef UberstealthPropertyPage<UberstealthDriversPage, IDD_DIALOG3> BasePropertyPage;
BEGIN_MSG_MAP(UberstealthDriversPage)
COMMAND_HANDLER(IDC_RDTSC, BN_CLICKED, OnRDTSCClick)
CHAIN_MSG_MAP(CPropertyPageImpl<UberstealthDriversPage>)
CHAIN_MSG_MAP(BasePropertyPage)
END_MSG_MAP()
BEGIN_DDX_MAP(UberstealthDriversPage)
DDX_CHECK(IDC_RDTSC, useRDTSC_)
DDX_RADIO(IDC_RDTSC_ZERO, rdbIndex_)
DDX_CHECK(IDC_UNLOAD_DRIVER, unloadRDTSCDrv_)
DDX_CHECK(IDC_USE_RDTSC_NAME, useRDTSCName_)
DDX_CHECK(IDC_USE_STEALTH_NAME, useStealthName_)
DDX_INT(IDC_RDTSC_DELTA, rdtscDelta_)
DDX_CHECK(IDC_UNLOAD_STEALTH_DRV, unloadStealthDrv_)
DDX_CHECK(IDC_NTSIT_DRV, ntSITDrv_)
DDX_CHECK(IDC_NTQIP_DRV, ntQIPDrv_)
DDX_TEXT(IDC_RDTSC_NAME, rdtscName_)
DDX_TEXT(IDC_STEALTH_NAME, stealthName_)
END_DDX_MAP()
void updateRDBs(HWND hWndCheckBox);
LRESULT OnRDTSCClick(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
bool useRDTSC_;
bool unloadRDTSCDrv_;
bool unloadStealthDrv_;
bool ntSITDrv_;
bool ntQIPDrv_;
bool useRDTSCName_;
bool useStealthName_;
WTL::CString rdtscName_;
WTL::CString stealthName_;
int rdtscDelta_;
int rdbIndex_;
};
} |
2d5e3d439c58603a3aac733bb2bb12f736193862 | 02a3a0fd1d91e248e51aaeb2e5a12c89b2ec5b11 | /labs/lab3.h | 12a3e16c962ae4079c382ed999776155e688817e | [] | no_license | mihanloko/itoi | aac576a4468aa1178e54c964fc52d6c0c7ace0ab | fac7a6c243837184cdf8ab8d52fe63d00983dcc4 | refs/heads/main | 2023-05-25T13:54:30.523227 | 2021-06-06T14:00:12 | 2021-06-07T14:39:18 | 334,977,369 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 265 | h | lab3.h | //
// Created by mikhail on 01.05.2021.
//
#ifndef ITOI_LAB3_H
#define ITOI_LAB3_H
#include <QString>
#include "../image/Image.h"
#include "../points/Harris.h"
#include "../points/Moravec.h"
class lab3 {
public:
static void run();
};
#endif //ITOI_LAB3_H
|
45441cef74e1f64ab0fa4f28c7f878a3485e5090 | dbe55ef54ef7a67823f983f07c38a4acf7d796f3 | /FaceBall/Client/Client/main.cpp | b56ba9ef52d2c7a7d21e520481e870103cef82fc | [] | no_license | zhenxili/face | 0ab321220e1d5e9f50257b19bc812e165cd1e321 | 7aabf2aa604f536d5b0e8a4ce894d6aa75b926b0 | refs/heads/master | 2020-12-24T16:50:06.721628 | 2014-09-25T08:12:05 | 2014-09-25T08:12:05 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 743 | cpp | main.cpp | #include "client.h"
#include <QtWidgets/QApplication>
#include <QtWidgets\qsplashscreen.h>
#include <QtWidgets\qdesktopwidget.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QSplashScreen *splash = new QSplashScreen;
splash->setPixmap(QPixmap(":/Client/Resourses/ing.jpg"));
splash->show();
Qt::Alignment topRight = Qt::AlignRight | Qt::AlignTop;
splash->showMessage(QStringLiteral("游戏启动中......"),
topRight, Qt::white);
Client w;
splash->showMessage(QStringLiteral("控件加载中......"),
topRight, Qt::white);
w.show();
w.move((QApplication::desktop()->width() - w.width())/2,
(QApplication::desktop()->height() - w.height())/2);
splash->finish(&w);
delete splash;
return a.exec();
}
|
583c563e1071747d8ed4a36fbc2610464f228b9f | f01a96563ad306141edc49b7063590bdcc77cae4 | /作业9.cpp | 07aaf98afe61e22d5f95ac4139b3f47b61f58600 | [] | no_license | Ing999/- | 05100fe7de8c802ec9adce093d61eb66bf42abf2 | 3294a97dcc3b2fb998a95021b9a180663b2eae59 | refs/heads/main | 2023-06-03T07:32:41.508690 | 2021-06-23T15:00:05 | 2021-06-23T15:00:05 | 378,055,727 | 1 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 965 | cpp | 作业9.cpp |
#include<iostream>
using namespace std;
int main() {
string a, b;
getline(cin, a);
getline(cin, b);
for (int i = 1; i <= a.length(); i++) {
for (int j = 1; j <= b.length(); j++) {
if (a[i - 1] == b[j - 1]) {
dp[i][j] = dp[i - 1][j - 1] + 1;
} else {
dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]);
}
}
}
cout << dp[a.length()][b.length()] << endl;
return 0;
}
±³°üÎÊÌâ
int knapSack(int W, int wt[], int val[], int n)
{
int i, w;
int K[n+1][W+1];
for (i = 0; i <= n; i++)
{
for (w = 0; w <= W; w++)
{
if (i==0 || w==0)
K[i][w] = 0;
else if (wt[i-1] <= w)
K[i][w] = max(val[i-1] + K[i-1][w-wt[i-1]], K[i-1][w]);
else
K[i][w] = K[i-1][w];
}
}
return K[n][W];
}
|
ea5b78d0b86faa1c909e5a2b0133bd8b67332d3b | ea75299269bdd24d85d6903ca4606b1da887a678 | /Mancala/Game.cpp | 392e6c7b4d3cc028517c295fb92652cf10e73043 | [] | no_license | emilywang886/UCLA-CS32 | 78209d1a75f0db95379459a6373f672c364d718b | 211e8e6e1656c8d34309a441ac2b8f5c7d58364b | refs/heads/master | 2021-02-09T22:33:51.024483 | 2020-03-02T10:11:19 | 2020-03-02T10:11:19 | 244,324,915 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,313 | cpp | Game.cpp | //
// Game.cpp
// CS32 Project 3
//
// Created by Emily Wang on 2019/5/16.
// Copyright © 2019 Emily Wang. All rights reserved.
//
#include "Game.h"
#include <iostream>
using namespace std;
Game:: Game(const Board& b, Player* south, Player* north)
: m_board(b)
{
m_sPlayer = south;
m_nPlayer = north;
m_turn = SOUTH;
}
void Game:: display() const
// Display the game's board in a manner of your choosing, provided you show the names of the players and a reasonable representation of the state of the board.
{
// north's name
for ( int i = 0 ; i <= m_board.holes()*2 - 2 ; i++ ){
cout << " " ;
}
cout << m_nPlayer->name()<< endl;
// north holes
cout << " ";
for ( int i = 1 ; i <= m_board.holes() ; i++ )
{
cout << " " << m_board.beans(NORTH, i);
}
cout << endl;
// north pot + south pot
cout << m_board.beans(NORTH, 0 );
for ( int i = 0 ; i < m_board.holes() ; i++ )
{
cout << " " ;
}
cout << " " << m_board.beans(SOUTH, 0 ) << endl;
// south holes
cout << " ";
for ( int i = 1 ; i <= m_board.holes() ; i++ )
{
cout << " " << m_board.beans(SOUTH, i);
}
cout << endl;
// south's name
for ( int i = 0 ; i <= m_board.holes()*2 - 2 ; i++ ){
cout << " " ;
}
cout << m_sPlayer->name() << endl;
}
void Game:: status(bool& over, bool& hasWinner, Side& winner) const
// If the game isn't over (i.e., more moves are possible), set over to false and do not change anything else. Otherwise, set over to true and hasWinner to true if the game has a winner, or false if it resulted in a tie. If hasWinner is set to false, leave winner unchanged; otherwise, set it to the winning side.
{
if ( m_board.beansInPlay(SOUTH) != 0 && m_board.beansInPlay(NORTH) != 0)
{
over = false;
return;
}
else
over = true;
if ( m_board.beans(NORTH, 0) == m_board.beans(SOUTH, 0))
{
hasWinner = false;
}
else
hasWinner = true;
winner = ( m_board.beans(NORTH, 0) < m_board.beans(SOUTH, 0)) ? SOUTH : NORTH;
}
bool Game:: move()
// If the game is over, return false. Otherwise, make a complete move for the player whose turn it is (so that it becomes the other player's turn) and return true. "Complete" means that the player sows the seeds from a hole and takes any additional turns required or completes a capture. If the player gets an additional turn, you should display the board so someone looking at the screen can follow what's happening.
{
bool over, hasWinner;
Side winner;
status(over , hasWinner, winner);
if (over)
{
return false;
}
Side endSide;
int endHole;
Player* currentPlayer;
int hole;
currentPlayer = ( m_turn == NORTH ) ? m_nPlayer : m_sPlayer;
hole = currentPlayer->chooseMove(m_board, m_turn);
cout << currentPlayer->name() << " chose hole " << hole << endl;
m_board.sow(m_turn, hole, endSide, endHole);
if ( endHole != 0 && endSide == m_turn && m_board.beans(m_turn, endHole) - 1 == 0 && m_board.beans(opponent(m_turn), endHole) != 0 )
// if player can perform a capture
{
m_board.moveToPot(m_turn, endHole, m_turn);
m_board.moveToPot(opponent(m_turn), endHole, m_turn);
}
while ( endHole == 0 && endSide == m_turn )
// if player ends in own pot
{
display();
cout << currentPlayer->name() << " gets another turn." << endl;
hole = currentPlayer->chooseMove(m_board, m_turn);
if ( hole == -1 )
break;
if ( ! m_board.sow(m_turn, hole, endSide, endHole))
break;
cout << currentPlayer->name() << " chose hole " << hole << endl;
}
// if either side clears out first
if ( m_board.beansInPlay(NORTH) == 0 )
{
display();
cout << " Sweeping all beans on " << m_sPlayer->name() << "'s side to pot." << endl;
for ( int i = 0 ; i <= m_board.holes() ; i++ )
{
m_board.moveToPot(m_turn, i, m_turn);
m_board.moveToPot(opponent(m_turn), i, opponent(m_turn));
}
display();
}
else if ( m_board.beansInPlay(SOUTH) == 0 )
{
display();
cout << " Sweeping all beans on " << m_nPlayer->name() << "'s side to pot." << endl;
for ( int i = 0 ; i <= m_board.holes() ; i++ )
{
m_board.moveToPot(m_turn, i, m_turn);
m_board.moveToPot(opponent(m_turn), i, opponent(m_turn));
}
display();
}
m_turn = opponent(m_turn);
return true;
}
void Game:: play()
// Play the game. Display the progress of the game in a manner of your choosing, provided that someone looking at the screen can follow what's happening. If neither player is interactive, then to keep the display from quickly scrolling through the whole game, it would be reasonable periodically to prompt the viewer to press ENTER to continue and not proceed until ENTER is pressed. (The ignore function for input streams is useful here.) Announce the winner at the end of the game. You can apportion to your liking the responsibility for displaying the board between this function and the move function. (Note: If when this function is called, South has no beans in play, so can't make the first move, sweep any beans on the North side into North's pot and act as if the game is thus over.)
{
bool over, hasWinner;
Side winner;
Player* currentPlayer;
while (!over)
{
display();
if ( !m_nPlayer->isInteractive() && !m_sPlayer->isInteractive())
{
cout << " Press ENTER to continue. ";
cin.ignore();
}
move();
status(over, hasWinner, winner);
}
cout << "The game is over." << endl;
if ( hasWinner )
{
currentPlayer = ( winner == NORTH) ? m_nPlayer : m_sPlayer;
cout << "The winner is: " << currentPlayer->name() << endl;
}
else
{
cout << "The game resulted in a tie. " << endl;
}
}
int Game:: beans(Side s, int hole) const
{
if ( hole < 0 || hole >= m_board.holes())
{
return -1;
}
return m_board.beans( s, hole );
}
|
6ca0cc72dae1b66f279cc07f87ba63b654335083 | 41098b8eb7a50a0cbc8ce9973eb7840f5d5fa87e | /Implementation/id_008/id_008.cc | fb111f67da7578f74cd4f74366413552ce88eff3 | [] | no_license | RexusWolf/IS | f119bddc372b25ec3c4dea66e72254097f4a1cb3 | 80e11fde39bfbe72cfae17e77a4af822d582ffd5 | refs/heads/master | 2021-08-04T17:10:14.810359 | 2019-01-10T19:54:18 | 2019-01-10T19:54:18 | 149,256,650 | 14 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 444 | cc | id_008.cc | // ID_008: Add Teacher
#include <iostream>
#include <fstream>
#include "id_008.h"
#include "../classes/teacher.h"
using std::cin;
using std::cout;
using std::ofstream;
void addTeacher(bool coordinator){
Teacher t("", "", "", "", "");
cout << "Introduce the Teacher's data\n";
cin >> t;
cout << "2\n";
t.setCoordinator(coordinator);
ofstream f("teachers.txt", std::ios::out|std::ios::app);
f << t;
f.close();
}
|
a6f31ef6ecb28c624f4a22f9cc61fe6a8838c451 | b79b9307f42e99273500629a41492653cabfba9a | /guslib/guslib/trace/trace.cpp | 40ad61918e880b532d1476f2f1da28a5f00fb6a1 | [
"MIT",
"Zlib"
] | permissive | dezGusty/guslib | ae5a02932ddc1d0ddc4a5df547981a9ffbd03472 | bdc1b9bc204e789862435e1221aa34e2c801704f | refs/heads/master | 2021-01-17T09:22:04.873777 | 2016-11-08T20:50:52 | 2016-11-08T20:50:52 | 23,933,187 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,130 | cpp | trace.cpp | // This file is part of the guslib library, licensed under the terms of the MIT License.
//
// The MIT License
// Copyright (C) 2010-2016 Augustin Preda (thegusty999@gmail.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
// Includes
//
//
// Own header
//
#include <guslib/trace/trace.h>
//
// C++ system headers.
//
#include <fstream>
#include <string>
#if GUSLIB_THREAD_SUPPORT != 1
#pragma message("Warning: Multithreaded synchronization disabled! Define GUSLIB_FLAG_MULTITHREAD to enable it.")
#endif // GUSLIB_FLAG_MULTITHREAD
// ------------------- Implementation ------------------------
#ifndef GUSLIB_NOTRACE
namespace guslib
{
#ifndef GUSLIB_EXPLICIT_INST_TRACE
#define GUSLIB_EXPLICIT_INST_TRACE
GUSLIB_EXPIMP_TEMPLATE template class GUSLIB_EXPORT_SYMBOL guslib::Singleton <guslib::TraceUtil>;
#endif // GUSLIB_EXPLICIT_INST_TRACE
/**
Opaque pointer: implementation of trace utility functions.
*/
class TraceUtil::Impl
{
public:
std::string fileName_;
std::ofstream of_; // the output filestream; used for file operations.
std::ostream customOut_; // the output stream; used for write operations.
Impl():
fileName_(""),
of_(std::ofstream("")),
customOut_(nullptr)
{
}
};
///
/// The constructor.
///
TraceUtil::TraceUtil()
: impl_(new TraceUtil::Impl()),
fileIsOpened(false),
level_(10),
enabled_(true),
encoding_(TraceEncoding::ASCII),
encodingUsed_(TraceEncoding::ASCII)
{
}
///
/// Destructor; simply close the file handle.
///
TraceUtil::~TraceUtil()
{
closeFileHandle();
delete impl_;
}
std::ostream& TraceUtil::operator<<(std::streambuf * ss)
{
impl_->customOut_ << ss;
return impl_->customOut_;
}
///
/// Direct access to the output stream. This can be much quicker than
/// using the writeLine function, if you need to pass something other
/// than plain text.
///
std::ostream& TraceUtil::getOutputStream()
{
return impl_->customOut_;
}
///
/// Close the file handle. Override this if you define a child class with a different stream.
///
void TraceUtil::closeFileHandle()
{
// Close the file stream.
impl_->of_.close();
fileIsOpened = false;
}
///
/// Initialization with the file name to use.
///
void TraceUtil::initialize(const char* fileNameToUse)
{
impl_->fileName_ = fileNameToUse;
// Open the file, deleting its old contents
openFileHandle();
}
void TraceUtil::openFileHandle()
{
try
{
// Open the file stream
impl_->of_.open(impl_->fileName_.c_str());
// Store the file stream's buffer in the output stream
impl_->customOut_.rdbuf(impl_->of_.rdbuf());
encodingUsed_ = encoding_;
// Keep track of the opened status.
fileIsOpened = true;
}
catch (std::exception &)
{
fileIsOpened = false;
}
}
void TraceUtil::setFileName(const char* fileNameToUse)
{
std::string temporaryString(fileNameToUse);
if (temporaryString.length() <= 0)
{
return;
}
// Close the existing file handle if one is already opened.
closeFileHandle();
// Open or reopen the file handle.
impl_->fileName_ = temporaryString;
openFileHandle();
}
///
/// Add a line to write into the log file (using a string).
/// Writes a line to the file. The file is expected to be opened; the text is expected to be non-empty.
///
void inline TraceUtil::writeLine(const char* textToWrite)
{
#if GUSLIB_THREAD_SUPPORT == 1
std::lock_guard<std::recursive_mutex> lg{ writeMutex };
#endif
if (false == fileIsOpened)
{
return;
}
if (false == isEnabled())
{
return;
}
impl_->customOut_ << textToWrite << std::endl;
}
} // namespace guslib
#endif // GUSLIB_NOTRACE
|
6373f819319293fd8763bf0238482cc67383ec5c | 676a7452ef96470e2eef9b561a4baf05454b11d3 | /Examples/ReqRecv.cpp | e019ee4d9da2244ddc47c1f81ed37da81b36e1a4 | [
"MIT"
] | permissive | ExecDevOps/V3DLib | c76dd93e3498705e86bfecaa8553f297b00b874a | 29b4fa6f8397682b48717c61913f28f07ac526bb | refs/heads/main | 2023-02-18T10:07:55.823430 | 2021-01-23T08:22:54 | 2021-01-23T08:22:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 841 | cpp | ReqRecv.cpp | #include "V3DLib.h"
#include "Support/Settings.h"
using namespace V3DLib;
V3DLib::Settings settings;
// Define function that runs on the GPU.
void kernel(Ptr<Int> p) {
Int x, y;
gather(p);
gather(p+16);
receive(x);
receive(y);
*p = x + y;
}
int main(int argc, const char *argv[]) {
auto ret = settings.init(argc, argv);
if (ret != CmdParameters::ALL_IS_WELL) return ret;
int numQpus = 1;
// Construct kernel
auto k = compile(kernel);
k.setNumQPUs(numQpus);
// Allocate and initialise array shared between ARM and GPU
SharedArray<int> array(numQpus*16 + 16);
for (int i = 0; i < (int) array.size(); i++)
array[i] = i;
// Invoke the kernel
k.load(&array);
settings.process(k);
// Display the result
for (int i = 0; i < numQpus*16; i++)
printf("%i: %i\n", i, array[i]);
return 0;
}
|
42f2a75a96a2b5758d25cd4e3fbb91398b06a908 | 5fa325e0dd6d12d8a2fbaa01c792c0130c33cc5a | /include/task_ring_buffer.h | 140f3b8fead7cbc4efe09ab31549040fbec1e7b1 | [
"MIT"
] | permissive | celerity/celerity-runtime | 7fbc830cc8722d92a24188be99f6d6416cf4532c | 0a282f598b3611cff9fc65c37c8bd0cd5efa5a90 | refs/heads/master | 2023-09-03T13:04:00.002793 | 2023-08-28T10:04:32 | 2023-08-29T13:44:21 | 197,273,903 | 123 | 16 | MIT | 2023-09-14T11:04:28 | 2019-07-16T22:03:07 | C++ | UTF-8 | C++ | false | false | 4,848 | h | task_ring_buffer.h | #pragma once
#include <array>
#include <atomic>
#include <memory>
#include "log.h"
#include "task.h"
#include "types.h"
namespace celerity::detail {
constexpr unsigned long task_ringbuffer_size = 1024;
class task_ring_buffer {
friend struct task_ring_buffer_testspy;
public:
// This is an RAII type for ensuring correct handling of task id reservations
// in the presence of exceptions (i.e. revoking the reservation on stack unwinding)
class reservation {
friend class task_ring_buffer;
public:
reservation(task_id tid, task_ring_buffer& buffer) : m_tid(tid), m_buffer(buffer) {}
~reservation() {
if(!m_consumed) {
CELERITY_WARN("Consumed reservation for tid {} in destructor", m_tid);
m_buffer.revoke_reservation(std::move(*this));
}
}
reservation(const reservation&) = delete; // non copyable
reservation& operator=(const reservation&) = delete; // non assignable
reservation(reservation&&) = default; // movable
task_id get_tid() const { return m_tid; }
private:
void consume() {
assert(m_consumed == false);
m_consumed = true;
}
bool m_consumed = false;
task_id m_tid;
task_ring_buffer& m_buffer;
};
bool has_task(task_id tid) const {
return tid >= m_number_of_deleted_tasks.load(std::memory_order_relaxed) // best effort, only reliable from application thread
&& tid < m_next_active_tid.load(std::memory_order_acquire); // synchronizes access to data with put(...)
}
size_t get_total_task_count() const { return m_next_active_tid.load(std::memory_order_relaxed); }
task* find_task(task_id tid) const { return has_task(tid) ? m_data[tid % task_ringbuffer_size].get() : nullptr; }
task* get_task(task_id tid) const {
assert(has_task(tid));
return m_data[tid % task_ringbuffer_size].get();
}
// all member functions beyond this point may *only* be called by the main application thread
size_t get_current_task_count() const { //
return m_next_active_tid.load(std::memory_order_relaxed) - m_number_of_deleted_tasks.load(std::memory_order_relaxed);
}
// the task id passed to the wait callback identifies the lowest in-use TID that the ring buffer is aware of
using wait_callback = std::function<void(task_id)>;
reservation reserve_task_entry(const wait_callback& wc) {
wait_for_available_slot(wc);
reservation ret(m_next_task_id, *this);
m_next_task_id++;
return ret;
}
void revoke_reservation(reservation&& reserve) {
reserve.consume();
assert(reserve.m_tid == m_next_task_id - 1); // this is the only allowed (and extant) pattern
m_next_task_id--;
}
void put(reservation&& reserve, std::unique_ptr<task> task) {
reserve.consume();
assert(m_next_active_tid.load(std::memory_order_relaxed) == reserve.m_tid);
m_data[reserve.m_tid % task_ringbuffer_size] = std::move(task);
m_next_active_tid.store(reserve.m_tid + 1, std::memory_order_release);
}
void delete_up_to(task_id target_tid) {
assert(target_tid >= m_number_of_deleted_tasks.load(std::memory_order_relaxed));
for(task_id tid = m_number_of_deleted_tasks.load(std::memory_order_relaxed); tid < target_tid; ++tid) {
m_data[tid % task_ringbuffer_size].reset();
}
m_number_of_deleted_tasks.store(target_tid, std::memory_order_relaxed);
}
void clear() {
for(auto&& d : m_data) {
d.reset();
}
m_number_of_deleted_tasks.store(m_next_task_id, std::memory_order_relaxed);
}
class task_buffer_iterator {
unsigned long m_id;
const task_ring_buffer& m_buffer;
public:
task_buffer_iterator(unsigned long id, const task_ring_buffer& buffer) : m_id(id), m_buffer(buffer) {}
task* operator*() { return m_buffer.get_task(m_id); }
void operator++() { m_id++; }
bool operator<(task_buffer_iterator other) { return m_id < other.m_id; }
bool operator!=(task_buffer_iterator other) { return &m_buffer != &other.m_buffer || m_id != other.m_id; }
};
task_buffer_iterator begin() const { //
return task_buffer_iterator(m_number_of_deleted_tasks.load(std::memory_order_relaxed), *this);
}
task_buffer_iterator end() const { return task_buffer_iterator(m_next_task_id, *this); }
private:
// the id of the next task that will be reserved
task_id m_next_task_id = 0;
// the next task id that will actually be emplaced
std::atomic<task_id> m_next_active_tid = task_id(0);
// the number of deleted tasks (which is implicitly the start of the active range of the ringbuffer)
std::atomic<size_t> m_number_of_deleted_tasks = 0;
std::array<std::unique_ptr<task>, task_ringbuffer_size> m_data;
void wait_for_available_slot(const wait_callback& wc) const {
if(m_next_task_id - m_number_of_deleted_tasks.load(std::memory_order_relaxed) >= task_ringbuffer_size) {
wc(static_cast<task_id>(m_number_of_deleted_tasks.load(std::memory_order_relaxed)));
}
}
};
} // namespace celerity::detail
|
ca6bfe1300a416fd6aa2410bfa5bdd8afff0db15 | bafe994bda6f940b1ff48201b3396ec2226cf3db | /FileUtils/extsort.h | ceb9ad6b5f83077c7a8b5ce9e0ac6b32ccd805f0 | [] | no_license | jtb/RIVALS | c106733faa83d52092ba6e6513ceecf76d0d3ca4 | 634f9b1ebe6ff2f36b33df9a685ab9131db9b231 | refs/heads/master | 2016-08-04T20:58:27.322463 | 2011-02-06T03:33:41 | 2011-02-06T03:33:41 | 921,846 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,504 | h | extsort.h | /*
* Copyright 2010 Justin T. Brown
* All Rights Reserved
* EMAIL: run.intervals@gmail.com
*
* This file is part of Rivals.
*
* Rivals is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Rivals 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 Rivals. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef EXTERNAL_SORT_H_
#define EXTERNAL_SORT_H_
#include <string>
#include <algorithm>
#include <iostream>
#include <fstream>
#include <sstream>
#include <stack>
#include <memory>
#include "cache.h"
#include "typedef.h"
namespace rivals {
template <class T>
class SortFile
{
public:
SortFile(std::string f, off_t header = 0) : origfile(f), base("ExtSortTemp."), offset(header), head(0) {
file.open(f.c_str(), std::ios::in | std::ios::binary);
if(!file) printf("Could not open %s for reading.\n", f.c_str());
off_t size = 0;
file.seekg(0, std::ios::end);
size = file.tellg();
file.seekg(0, std::ios::beg);
num_elements = (size - offset)/sizeof(T);
#ifdef DEBUG
std::cout << "number of elements is " << num_elements << std::endl;
#endif
head = new char[offset];
file.read(head, offset);
traverseTree();
rename("ExtSortTemp.0", origfile.c_str());
}
~SortFile(){
delete[] head;
head = 0;
}
void traverseTree(){
int num_files = 0;
std::string filename;
Capacity n;
//T * buffer = new T[MEMORY];
//T buffer[MEMORY];
std::auto_ptr<MemBuffer> membuff(new MemBuffer());
for(Capacity first_index = 0; first_index < num_elements; first_index += MEMORY){
//create filename, and sort chunk
std::ostringstream stm;
stm << base << num_files;
filename = stm.str();
n = sortChunk(filename, membuff->buffer, first_index);
Cargo c(n, filename);
while(!fstack.empty() && fstack.top().num <= n){
//do merging
c = fstack.top();
fstack.pop();
//Capacity merge(std::string file1, std::string file2, Capacity siz1, Capacity siz2, std::string fileOut)
c.num = merge(c.filename, filename, c.num, n, c.filename);
n = c.num;
filename = c.filename;
}
fstack.push(c);
num_files++;
}
//clean up
//remove original file
file.close();
remove(origfile.c_str());
//merge until one
if(!fstack.empty()){
Cargo c = fstack.top();
n = c.num;
filename = c.filename;
fstack.pop();
while(!fstack.empty()){
c = fstack.top();
fstack.pop();
c.num = merge(c.filename, filename, c.num, n, c.filename);
n = c.num;
filename = c.filename;
}
}
}
Capacity sortChunk(std::string f, T *buffer, Capacity first_index){
Capacity valid_size = MEMORY;
if(this->num_elements < valid_size + first_index){
valid_size = this->num_elements - first_index;
}
this->file.read((char*)buffer, valid_size*sizeof(T));
assert(this->file);
std::sort(buffer, buffer+valid_size);
std::fstream outfile;
outfile.open(f.c_str(), std::ios::out|std::ios::binary|std::ios::trunc);
outfile.write(head, offset);
outfile.write((char*)buffer, valid_size*sizeof(T));
outfile.close();
return valid_size;
}
Capacity merge(std::string file1, std::string file2, Capacity siz1, Capacity siz2, std::string fileOut){
#ifdef DEBUG
printf("merging %s and %s\n", file1.c_str(), file2.c_str());
#endif
std::fstream out;
out.open("ExtSortTemp.temp", std::ios::out | std::ios::binary | std::ios::trunc);
if(!out) printf("Could not open temp file for writing.\n");
//out.seekg(offset, std::ios::beg);
out.write(head, offset);
//T buffer[CACHE];
std::auto_ptr<CacheBuffer> cachebuff(new CacheBuffer());
Capacity c1 = 0;
Capacity c2 = 0;
ForwardCache<T> cache1(file1);
ForwardCache<T> cache2(file2);
cache1.setRange(offset, 0, siz1);
cache2.setRange(offset, 0, siz2);
bool avalid = (0 < cache1.size());
bool bvalid = (0 < cache2.size());
Capacity count;
do {
for(count = 0; count < CACHE; count++){
if(!avalid && !bvalid) break;
if(avalid && !bvalid || (avalid && bvalid && cache1.at(c1) < cache2.at(c2))){
cachebuff->buffer[count] = cache1.at(c1);
c1++;
avalid = (c1 < cache1.size());
continue;
}
cachebuff->buffer[count] = cache2.at(c2);
c2++;
bvalid = (c2 < cache2.size());
}
if(count){
out.write((char*)&(cachebuff->buffer), count*sizeof(T));
}
}while(count == CACHE);
out.close();
remove(file1.c_str());
remove(file2.c_str());
rename("ExtSortTemp.temp", fileOut.c_str());
return (c1+c2);
}
private:
std::string origfile;
std::string base;
off_t offset; //init to header
char * head;
std::fstream file;
Capacity num_elements;
struct MemBuffer {
T buffer[MEMORY];
};
struct CacheBuffer{
T buffer[CACHE];
};
struct Cargo{
Cargo(Capacity n, std::string file) : num(n), filename(file) {}
Capacity num;
std::string filename;
};
std::stack<Cargo> fstack;
};
}
#endif
|
657b02d2611e5239693226694a9a7d897747418c | 7a779674323b1d8e39eaf7c63cb6640030192dfe | /SniperCommander.hpp | 9ffd02081a57a6d858806944395a2544e5ba8437 | [
"MIT"
] | permissive | DvirTomer/War_Game | 8899e369e170c42b40ba8fc2d347fa7a13b89b98 | e95934cc7217ab243880550787302d19fadafccf | refs/heads/master | 2022-12-02T04:08:07.780981 | 2020-08-23T15:57:36 | 2020-08-23T15:57:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 154 | hpp | SniperCommander.hpp | #include "Soldier.hpp"
class SniperCommander : public Soldier {
public:
SniperCommander(int nop){
this->damage = 100;
this->nop=nop;
this->hp=120;
}
};
|
14e92aab584a13019939beca228060a7473ad7fe | 35c7428e7b4c760aa85efa53222f33aca95ba1aa | /heater_cntrl01.ino | 341143d419fb1b526c8ce2ddf054ac29d9438f86 | [] | no_license | chibaf/HNGN90-chibaf-4ced3-200526.py | 472b27456be3d8fcda012bb734b86b4580417d49 | 77a01cd32c825070e2cb802d8f358e9aef92d723 | refs/heads/master | 2022-08-02T19:18:24.034489 | 2020-05-26T12:37:27 | 2020-05-26T12:37:27 | 267,038,284 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 771 | ino | heater_cntrl01.ino | #include <avr/io.h>
#define PWMPin 10
//unsigned int frq = 440; // 周波数
//float duty = 0.5; // 指定したいデューティ比
unsigned int frq = 16; // 周波数
float duty; // 指定したいデューティ比
byte incomingByte; // for incoming serial data
int dec;
void setup() {
Serial.begin(115200);
pinMode(PWMPin, OUTPUT);
}
void loop() {
// モード指定
TCCR1A = 0b00100001;
TCCR1B = 0b00010010;
// TOP値指定
OCR1A = (unsigned int)(1000000 / frq);
// send data only when you receive data:
if (Serial.available() > 0) {
// read the incoming byte:
incomingByte = Serial.read();
dec = (int)incomingByte;
duty = float(dec)/255.0;
// Duty比指定
OCR1B = (unsigned int)(1000000 / frq * duty);
}
}
|
351389bf4ac5c3e37bcecef7161b2c326e5a9d48 | 369ccb4d8a3a121b164d473482879b09a9478f60 | /src/gbTreeEvaluator.h | ed4b6fb1b383c5c61e1ecd8a1bc036ba86ea3d42 | [] | no_license | liuyushi/miniXGBoost | 3cdd22587ae55ecd7e2548c2391c3a6fda07bbb9 | 2607b007ef9051942da4bf03411bfd5d65bff5e4 | refs/heads/master | 2020-08-29T11:51:08.428781 | 2019-06-20T00:50:03 | 2019-06-20T00:50:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 585 | h | gbTreeEvaluator.h | //
// Created by Haoda Fu on 2019-06-06.
//
#ifndef MINIXGBOOST_SRC_GBTREEEVALUATOR_H_
#define MINIXGBOOST_SRC_GBTREEEVALUATOR_H_
#include "gbTreePredictor.h"
namespace miniXGBoost {
class GBEvaluator : public GBPredictor {
public:
GBEvaluator(const data::DataSet &data, const miniXGBoost::Model &model, const LossFunction &fun)
: GBPredictor(data.X,
model), y_{data.y}, fun_{fun} {}
// return evaluation loss
float getLoss();
private:
const std::vector<float> &y_;
const LossFunction &fun_;
};
}
#endif //MINIXGBOOST_SRC_GBTREEEVALUATOR_H_
|
e7257cd70e3c53ac7ae6126cdf1e0a6b57f3bd5f | 3a0dc1208a65f499c2125346ae0ef9463238f38e | /epoll_ulti.cpp | d9283ed9263392d9643dea0ab6cb0b815cdc4822 | [] | no_license | defined1007/myHttpServer | 028c24d4cb6fbd9f171db0df1991a521843cbce7 | 01530c3964aedcce1a6577f8fd4fd3082b33e64d | refs/heads/master | 2021-03-31T15:17:17.748605 | 2020-04-26T04:07:08 | 2020-04-26T04:07:08 | 248,115,598 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,933 | cpp | epoll_ulti.cpp | #include "epoll_ulti.h"
namespace utility
{
void mlog(pthread_t tid, const char *fileName, int lineNum, const char *func, const char *log_str, ...)
{
va_list vArgList; //定义一个va_list型的变量,这个变量是指向参数的指针.
char buf[1024];
va_start(vArgList, log_str); //用va_start宏初始化变量,这个宏的第二个参数是第一个可变参数的前一个参数,是一个固定的参数
vsnprintf(buf, 1024, log_str, vArgList); //注意,不要漏掉前面的_
va_end(vArgList); //用va_end宏结束可变参数的获取
printf("%lu:%s:%d:%s --> %s\n", tid, fileName, lineNum, func, buf);
}
int setnonblocking(int fd) /* 将文件描述符设置为非阻塞 */
{
int old_option = fcntl(fd, F_GETFL);
int new_option = old_option | O_NONBLOCK;
fcntl(fd, F_SETFL, new_option);
return old_option;
}
void addfd(int epollfd, int fd, bool one_shot)
{
epoll_event event;
event.data.fd = fd;
event.events = EPOLLIN | EPOLLET; /* ET触发 */
if (one_shot) {
event.events |= EPOLLONESHOT; /* 这里特别要注意一下 */
}
epoll_ctl(epollfd, EPOLL_CTL_ADD, fd, &event);
setnonblocking(fd);
}
void removefd(int epollfd, int fd)
{
//mylog("removefd()\n");
epoll_ctl(epollfd, EPOLL_CTL_DEL, fd, 0);
close(fd);
}
void modfd(int epollfd, int fd, int ev, bool oneShot)
{
epoll_event event;
event.data.fd = fd;
event.events = ev | EPOLLET; /* ET触发 */
if (oneShot) {
event.events |= EPOLLONESHOT;
}
epoll_ctl(epollfd, EPOLL_CTL_MOD, fd, &event);
}
int Epoll_create(int size)
{
int rc;
if ((rc = epoll_create(size)) < 0) {
unix_error("epoll_crate failed");
}
return rc; /* 否则的话,返回文件描述符 */
}
int Epoll_wait(int epfd, struct epoll_event* events, int maxevents, int timeout)
{
int rc;
if ((rc = epoll_wait(epfd, events, maxevents, timeout)) == -1) {
unix_error("epoll failed");
}
return rc;
}
}
|
ec80b6b788c79cd0200c67728cb31c79cecd7ea1 | cb0bf01c973cf4b56a65d69e6b31925b8061626b | /Assignments/AVL.h | dc19df0b6a23d8179233bb9a124613f865b7bfe1 | [] | no_license | stagarot/DataAbstraction | 4ed135d9f6d718df9ad1a778b35c651bbcfff8d1 | 905e6dd32241d9c01051ec1a0a9227f36920f49e | refs/heads/master | 2022-05-18T06:08:49.682175 | 2020-05-01T02:20:27 | 2020-05-01T02:20:27 | 260,361,481 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,068 | h | AVL.h | //
// AVL.hpp
// LinkedList
//
// Created by Sara Tagarot on 4/29/20.
// Copyright © 2020 DataAbs. All rights reserved.
//
#include <stdio.h>
template<typename K,typename V>
class AVLMap {
// TODO: Define your Node
struct Node{
std::pair<K, V> data; //nodes
Node* parent; //node to parent
//if parent node has no children then these nodes are nullptr
Node* left;
Node* right;
};
// TODO: specify whatever member data you need.
Node* root = nullptr; //pointer to top node or node - at first there is no root therefore =nullptr
int sz = 0; //size - at first it is empty therefore = 0
public:
typedef K key_type;
typedef V mapped_type;
typedef std::pair<K,V> value_type;
class const_iterator;
class iterator {
// TODO: Iterator data. I keep a Node* and a bool that tells me if it is at end.
public:
friend class const_iterator;
iterator(/*TODO*/)/*:...*/ { /*TODO*/ }
// TODO: Other constructors as needed.
bool operator==(const iterator &i) const { /*TODO*/ }
bool operator!=(const iterator &i) const { return !(*this==i); }
std::pair<K,V> &operator*() { /*TODO*/ }
iterator &operator++() {
// TODO
return *this;
}
iterator &operator--() {
// TODO
return *this;
}
iterator operator++(int) {
iterator tmp(*this);
++(*this);
return tmp;
}
iterator operator--(int) {
iterator tmp(*this);
--(*this);
return tmp;
}
};
class const_iterator {
// TODO: iterator data
public:
friend class BSTMap<K,V>; // You might not need this in your code, but it helped me.
const_iterator(/*TODO*/)/*:...*/ { /*TODO*/ }
// TODO: Other constructors as needed.
const_iterator(const iterator &iter)/*:...*/ {}
bool operator==(const const_iterator &i) const { /*TODO*/ }
bool operator!=(const const_iterator &i) const { /*TODO*/ }
const std::pair<K,V> &operator*() { /*TODO*/ }
const_iterator &operator++() {
// TODO
return *this;
}
const_iterator &operator--() {
// TODO
return *this;
}
const_iterator operator++(int) {
const_iterator tmp(*this);
++(*this);
return tmp;
}
const_iterator operator--(int) {
const_iterator tmp(*this);
--(*this);
return tmp;
}
};
BSTMap() {
// TODO
}
~BSTMap() {
// TODO
}
BSTMap(const BSTMap<K,V> &that) {
// TODO
}
BSTMap &operator=(const BSTMap<K,V> &that) {
// TODO
}
bool empty() const { /*TODO*/ }
unsigned size() const { /*TODO*/ }
iterator find(const key_type& k);
const_iterator find(const key_type& k) const;
unsigned int count(const key_type& k) const;
std::pair<iterator,bool> insert(const value_type& val);
template <class InputIterator>
void insert(InputIterator first, InputIterator last) {
for(auto iter = first; iter!=last; ++iter) {
insert(*iter);
}
}
iterator erase(const_iterator position);
unsigned int erase(const key_type& k);
void clear();
mapped_type &operator[](const K &key){
return (*insert(make_pair(key, V())).first).second;
}
bool operator==(const BSTMap<K,V>& rhs) const;
bool operator!=(const BSTMap<K,V>& rhs) const;
iterator begin() { return iterator(/*TODO*/); }
const_iterator begin() const { return const_iterator(/*TODO*/); }
iterator end() { return iterator(/*TODO*/); }
const_iterator end() const { return const_iterator(/*TODO*/); }
const_iterator cbegin() const { return const_iterator(/*TODO*/); }
const_iterator cend() const { return const_iterator(/*TODO*/); }
};
|
74816c617537123b41113673c2bdded8706a19e7 | e676796b53c2a60dfcc66012f2328feab4febcfb | /c++/main.cpp | 7e6645c1048ac4a3a2c035a66cb06fb09aa2ece8 | [] | no_license | h0tcat/RPN_Integer | fc82c1265c2cf49621599bd71651102318a8970f | c1085a5e213c3845c39332898efcb325c6babfae | refs/heads/master | 2023-04-01T06:05:26.834196 | 2021-04-01T04:51:05 | 2021-04-01T04:51:05 | 351,415,245 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 283 | cpp | main.cpp | #include "RPN.h"
int main(int argc,char** argv){
if(argc!=2){
std::cerr << "Usage: RPNSample evalText" << std::endl;
return -1;
}else{
std::string evalSrc=argv[1];
nori::RPN RPN(evalSrc);
double result=RPN.Calc();
std::cout << result << std::endl;
}
return 0;
}
|
7384f8b91a99492fab7770fbf84ae12e23b79650 | 868cdf275aa810b815d0c268e45a9cca4c8d86b0 | /xplroersito.ino | 19bdffac1eee4ec8c8cda8dcb7619e3c6579fb06 | [] | no_license | FernandoJRR/Roboleague-Botcon | 615e61288396feefc65b7aebfe570a03e651c952 | 004ed3c1ce72003240a491c1a10371b3a99bc034 | refs/heads/main | 2023-06-16T07:29:26.712713 | 2021-07-06T15:30:18 | 2021-07-06T15:30:18 | 380,392,387 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,277 | ino | xplroersito.ino | #include <SoftwareSerial.h>
//Inicializar BT
SoftwareSerial BT1(10,11);
//Comando Recibido
char comando=0;
//Derecho Delantero Adelante
int Pin_Motor_Der_A = 6;
//Derecho Delantero Atras
int Pin_Motor_Der_B = 7;
//Izquierdo Delantero Adelante
int Pin_Motor_Izq_A = 8;
//Izquierdo Delantero Atras
int Pin_Motor_Izq_B = 9;
//Izquierdo Trasero Adelante
int Pin_Motor_DerAt_A = 2;
//Izquierdo Trasero Atras
int Pin_Motor_DerAt_B = 3;
//Derecho Trasero Adelante
int Pin_Motor_IzqAt_A = 4;
//Derecho Trasero Atras
int Pin_Motor_IzqAt_B = 5;
//Derecho Delantero Velocidad
int Pin_Velocidad_Der = 12;
void setup() {
// inicializar la comunicación serial a 9600 bits por segundo:
Serial.begin(9600);
//Se configura BT
BT1.begin(9600); // Iniciamos en 9600 Baudios
//Se configuran motores
pinMode(Pin_Motor_Der_A, OUTPUT);
pinMode(Pin_Motor_Der_B, OUTPUT);
pinMode(Pin_Motor_Izq_A, OUTPUT);
pinMode(Pin_Motor_Izq_B, OUTPUT);
pinMode(Pin_Motor_DerAt_A, OUTPUT);
pinMode(Pin_Motor_DerAt_B, OUTPUT);
pinMode(Pin_Motor_IzqAt_A, OUTPUT);
pinMode(Pin_Motor_IzqAt_B, OUTPUT);
pinMode(Pin_Velocidad_Der, OUTPUT);
}
void loop() {
comando=BT1.read();
//Dependiendo del comando ingresado se iniciara o parara al robot
if(comando=='w'){
Serial.write(comando);
Mover_Adelante();
}else if(comando=='/'){
Serial.write(comando);
Mover_Stop();
}
if(Serial.available()>0){
Serial.write(comando);
}
}
void Mover_Adelante(){
analogWrite(Pin_Velocidad_Der, 255);
digitalWrite(Pin_Motor_Der_A, HIGH);
digitalWrite(Pin_Motor_Der_B, LOW);
digitalWrite(Pin_Motor_Izq_A, LOW);
digitalWrite(Pin_Motor_Izq_B, HIGH);
digitalWrite(Pin_Motor_DerAt_A, LOW);
digitalWrite(Pin_Motor_DerAt_B, HIGH);
digitalWrite(Pin_Motor_IzqAt_A, HIGH);
digitalWrite(Pin_Motor_IzqAt_B, LOW);
}
void Mover_Stop()
{
digitalWrite (Pin_Motor_Der_A, LOW);
digitalWrite (Pin_Motor_Der_B, LOW);
digitalWrite (Pin_Motor_Izq_A, LOW);
digitalWrite (Pin_Motor_Izq_B, LOW);
digitalWrite (Pin_Motor_DerAt_A, LOW);
digitalWrite (Pin_Motor_DerAt_B, LOW);
digitalWrite (Pin_Motor_IzqAt_A, LOW);
digitalWrite (Pin_Motor_IzqAt_B, LOW);
}
|
a8f1b71b4e12f0c6d525e0684de224d8a4003e5d | 1809b5bda803fbbf51dcbc4e2d464c762f3563c1 | /high_card_simulation/high_card_simulation.cpp | 10ecbf44f89598b959507c601eb5c1053c2677b4 | [] | no_license | tnakaicode/jburkardt | 42c5ef74ab88d17afbd188e4ff2b4ecb8a30bb25 | 74eebcbda61423178b96cfdec5d8bb30d6494a33 | refs/heads/master | 2020-12-24T02:23:01.855912 | 2020-02-05T02:10:32 | 2020-02-05T02:10:32 | 237,349,784 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,316 | cpp | high_card_simulation.cpp | # include <cstdlib>
# include <iostream>
# include <iomanip>
# include <cmath>
# include <ctime>
using namespace std;
# include "high_card_simulation.hpp"
//****************************************************************************80
double *high_card_probability ( int n )
//****************************************************************************80
//
// Purpose:
//
// HIGH_CARD_PROBABILITY: winning probabilities for the high card game.
//
// Discussion:
//
// The high card game presents the player with a deck of cards, each
// having an unknown value. The player is allowed to go throught the
// deck once, looking at the cards one at a time. At any time, the player
// may decide to take a particular card, winning that amount and stopping
// the game. If the player continues to the end, by default the last card
// indicates the amount won.
//
// An optimal strategy for selecting the highest card is as follows:
// * look at, but do not select, the first k-1 cards;
// * stop at the first card, from k to n, that is higher than the first
// k-1 cards.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 26 February 2014
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int N, the number of cards.
//
// Output, double P[N]. P[K] is the probability that a strategy
// that skips K cards will win, given that the deck has N cards.
//
{
int i;
int j;
double *p;
double t;
p = new double[n];
for ( i = 0; i < n; i++ )
{
t = 0.0;
for ( j = i + 1; j < n; j++ )
{
t = t + 1.0 / ( double ) ( j );
}
p[i] = ( 1.0 + ( double ) ( i ) * t ) / ( double ) ( n );
}
return p;
}
//****************************************************************************80
int *high_card_shuffle ( int n, int &seed )
//****************************************************************************80
//
// Purpose:
//
// HIGH_CARD_SHUFFLE generates a sequence of numeric "cards" for a game.
//
// Discussion:
//
// In this game, you know that the deck contains N cards. You win by
// choosing the highest card in the deck. You don't know what this card
// is, and you must choose your card by saying "stop" as, one by one,
// the cards of the deck are exposed.
//
// A random guesser would get the high card with probability 1/N.
//
// An intelligent guesser can do much better.
//
// It is the goal of this program so "shuffle" a deck of cards suitable
// for this game. The problem is that we know the highest card in an
// ordinary deck. Let's replace the cards by integers. Then if we know
// in advance the range of the cards (say, they must lie between 1 and
// 1,000), it may be true that we can guess the card that is the maximum.
//
// However, this program produces a sequence of integer card values for
// which no information can be gained from the values. It does this
// by regarding the card values as binary integers between 1 and 2^N - 1.
// We can make a perfectly information-free sequence as follows:
//
// Card 1 sets bit N-1 to 1.
// Card 2 sets bit N-2 to 1, bit N-1 randomly.
// ...
// Card I sets bit N-I to 1, bits N-1 down to N-I+1 randomly.
// ...
// Card N sets bit N-N to 1, bits N-1 down to 1 randomly.
//
// The I-th card has equal probability to fall in any of the I intervals
// defined by the I-1 previous cards. So, knowing the previous cards tells
// you absolutely nothing about where the next card will fall, and each
// card is, at the moment you see it, as good a guess for the maximum as
// the unseen cards.
//
// For example, the command "high_card_shuffle(7)" might yield
//
// 64 96 80 8 4 82 29
// or
// 64 32 16 24 12 58 73
// or
// 64 96 48 8 100 26 93
// or
// 64 96 16 56 76 122 71
//
// in which the highest card is #2, #7, #5, or #6 respectively.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 26 February 2014
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int N, the number of cards. N probably needs to
// be less than 32.
//
// Input/output, int &SEED, a seed for the random
// number generator.
//
// Output, int SEQUENCE[N], a set of N integer values
// that can be used as the cards in the high card guessing game.
//
{
int c;
int i;
int j;
int k;
int *sequence;
if ( 32 <= n )
{
cerr << "\n";
cerr << "HIGH_CARD_SHUFFLE - Fatal error!\n";
cerr << " This program can only handle N < 32.\n";
exit ( 1 );
}
sequence = new int[n];
for ( i = 0; i < n; i++ )
{
c = i4_power ( 2, n - i - 1 );
for ( j = 0; j < i; j++ )
{
k = i4_uniform_ab ( 0, 1, seed );
c = c + k * i4_power ( 2, n - i + j );
}
sequence[i] = c;
}
return sequence;
}
//****************************************************************************80
double high_card_simulation ( int deck_size, int skip_num, int trial_num,
int &seed )
//****************************************************************************80
//
// Purpose:
//
// HIGH_CARD_SIMULATION simulates a game of choosing the highest card in a deck.
//
// Discussion:
//
// You are given a deck of DECK_SIZE cards.
//
// Your goal is to select the high card. For convenience, we can assume
// the cards are a permutation of the integers from 1 to DECK_SIZE, but in
// fact the user mustn't see such values or else it's obvious which is the
// largest card.
//
// However, your choice is made under the following rules: You may turn over
// one card at a time. When a card is turned over, you may declare that to be
// your choice, or else turn over another card. If you have not chosen a card
// by the end, then your choice is the final card.
//
// If you have no idea what to do, and simply decide in advance to pick
// a card "at random", that is, for example, you decide to pick the 15th card
// before having seen any cards, then your probability of winning is
// 1/DECK_SIZE.
//
// The question is, can you do better than that?
//
// Your strategy is as follows: always look at the first SKIP_NUM cards
// without choosing them. Then choose the very next card you encounter
// that is larger than the cards you skipped.
//
// Using this program, you can easily see that skipping 5 cards is much better
// than picking one at random, skipping 10 is even better, and so on.
// Of course, you can't skip too many cards, and in fact, the results seem
// to be best for somewhere around 30 to 35 cards skipped. For problems
// like this, the optimal value is somewhere around 1 / e, where E is the
// base of the natural logarithm system.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 26 February 2014
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int DECK_SIZE, the number of cards in the deck.
// 2 <= DECK_SIZE. Default value is 52;
//
// Input, int SKIP_NUM, the number of initial cards you plan
// to examine but will NOT select. If SKIP_NUM is 0, you don't look at any
// cards first. 0 <= SKIP_NUM < DECK_SIZE.
//
// Input, int TRIAL_NUM, the number of times we will
// simulate this process.
//
// Input/output, int &SEED, a seed for the random
// number generator.
//
// Output, double HIGH_CARD_SIMULATION, the estimated probability that
// your strategy of skipping SKIP_NUM cards and then selecting the next
// card that is bigger, will result in choosing the highest card.
//
{
int card;
int *cards;
int choice;
int correct;
int i4_huge = 2147483647;
double p;
int skip_max;
int trial;
int true_max;
//
// Check values.
//
if ( deck_size < 2 )
{
cerr << "\n";
cerr << "HIGH_CARD_SIMULATION - Fatal error!\n";
cerr << " DECK_SIZE must be at least 2.\n";
cerr << " Your value was %d\n", deck_size;
exit ( 1 );
}
if ( skip_num < 0 )
{
skip_num = 0;
}
if ( deck_size <= skip_num )
{
cerr << "\n";
cerr << "HIGH_CARD_SIMULATION - Fatal error!\n";
cerr << " SKIP_NUM must be less than DECK_SIZE.\n";
cerr << " Your DECK_SIZE = " << deck_size << "\n";
cerr << " Your SKIP_NUM = " << skip_num << "\n";
exit ( 1 );
}
if ( trial_num < 1 )
{
cerr << "\n";
cerr << "HIGH_CARD_SIMULATION - Fatal error!\n";
cerr << " TRIAL_NUM must be at least 1.\n";
cerr << " Your TRIAL_NUM was " << trial_num << "\n";
exit ( 1 );
}
correct = 0;
for ( trial = 1; trial <= trial_num; trial++ )
{
cards = perm_uniform_new ( deck_size, seed );
if ( 1 <= skip_num )
{
skip_max = i4vec_max ( skip_num, cards );
}
else
{
skip_max = - i4_huge;
}
true_max = i4vec_max ( deck_size, cards );
//
// In case you don't encounter a card larger than SKIP_MAX,
// we'll assume you pick the last card in the deck, even though
// you know it's a loser.
//
choice = cards[deck_size-1];
//
// Turn over the remaining cards in the deck, but stop
// immediately when you find one bigger than SKIP_MAX.
//
for ( card = skip_num; card < deck_size; card++ )
{
if ( skip_max < cards[card] )
{
choice = cards[card];
break;
}
}
//
// Record successful choices.
//
if ( choice == true_max )
{
correct = correct + 1;
}
free ( cards );
}
//
// Estimate the probability.
//
p = ( double ) ( correct ) / ( double ) ( trial_num );
return p;
}
//****************************************************************************80
int i4_power ( int i, int j )
//****************************************************************************80
//
// Purpose:
//
// I4_POWER returns the value of I^J.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 01 April 2004
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int I, J, the base and the power. J should be nonnegative.
//
// Output, int I4_POWER, the value of I^J.
//
{
int k;
int value;
if ( j < 0 )
{
if ( i == 1 )
{
value = 1;
}
else if ( i == 0 )
{
cerr << "\n";
cerr << "I4_POWER - Fatal error!\n";
cerr << " I^J requested, with I = 0 and J negative.\n";
exit ( 1 );
}
else
{
value = 0;
}
}
else if ( j == 0 )
{
if ( i == 0 )
{
cerr << "\n";
cerr << "I4_POWER - Fatal error!\n";
cerr << " I^J requested, with I = 0 and J = 0.\n";
exit ( 1 );
}
else
{
value = 1;
}
}
else if ( j == 1 )
{
value = i;
}
else
{
value = 1;
for ( k = 1; k <= j; k++ )
{
value = value * i;
}
}
return value;
}
//****************************************************************************80
int i4_uniform_ab ( int a, int b, int &seed )
//****************************************************************************80
//
// Purpose:
//
// I4_UNIFORM_AB returns a scaled pseudorandom I4 between A and B.
//
// Discussion:
//
// The pseudorandom number should be uniformly distributed
// between A and B.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 02 October 2012
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Paul Bratley, Bennett Fox, Linus Schrage,
// A Guide to Simulation,
// Second Edition,
// Springer, 1987,
// ISBN: 0387964673,
// LC: QA76.9.C65.B73.
//
// Bennett Fox,
// Algorithm 647:
// Implementation and Relative Efficiency of Quasirandom
// Sequence Generators,
// ACM Transactions on Mathematical Software,
// Volume 12, Number 4, December 1986, pages 362-376.
//
// Pierre L'Ecuyer,
// Random Number Generation,
// in Handbook of Simulation,
// edited by Jerry Banks,
// Wiley, 1998,
// ISBN: 0471134031,
// LC: T57.62.H37.
//
// Peter Lewis, Allen Goodman, James Miller,
// A Pseudo-Random Number Generator for the System/360,
// IBM Systems Journal,
// Volume 8, Number 2, 1969, pages 136-143.
//
// Parameters:
//
// Input, int A, B, the limits of the interval.
//
// Input/output, int &SEED, the "seed" value, which should NOT be 0.
// On output, SEED has been updated.
//
// Output, int I4_UNIFORM, a number between A and B.
//
{
int c;
int i4_huge = 2147483647;
int k;
float r;
int value;
if ( seed == 0 )
{
cerr << "\n";
cerr << "I4_UNIFORM_AB - Fatal error!\n";
cerr << " Input value of SEED = 0.\n";
exit ( 1 );
}
//
// Guarantee A <= B.
//
if ( b < a )
{
c = a;
a = b;
b = c;
}
k = seed / 127773;
seed = 16807 * ( seed - k * 127773 ) - k * 2836;
if ( seed < 0 )
{
seed = seed + i4_huge;
}
r = ( float ) ( seed ) * 4.656612875E-10;
//
// Scale R to lie between A-0.5 and B+0.5.
//
r = ( 1.0 - r ) * ( ( float ) a - 0.5 )
+ r * ( ( float ) b + 0.5 );
//
// Use rounding to convert R to an integer between A and B.
//
value = round ( r );
//
// Guarantee A <= VALUE <= B.
//
if ( value < a )
{
value = a;
}
if ( b < value )
{
value = b;
}
return value;
}
//****************************************************************************80
int i4vec_max ( int n, int a[] )
//****************************************************************************80
//
// Purpose:
//
// I4VEC_MAX returns the value of the maximum element in an I4VEC.
//
// Discussion:
//
// An I4VEC is a vector of I4's.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 17 May 2003
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int N, the number of entries in the array.
//
// Input, int A[N], the array to be checked.
//
// Output, int I4VEC_MAX, the value of the maximum element. This
// is set to 0 if N <= 0.
//
{
int i;
int value;
if ( n <= 0 )
{
return 0;
}
value = a[0];
for ( i = 1; i < n; i++ )
{
if ( value < a[i] )
{
value = a[i];
}
}
return value;
}
//****************************************************************************80
void i4vec_print ( int n, int a[], string title )
//****************************************************************************80
//
// Purpose:
//
// I4VEC_PRINT prints an I4VEC.
//
// Discussion:
//
// An I4VEC is a vector of I4's.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 14 November 2003
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int N, the number of components of the vector.
//
// Input, int A[N], the vector to be printed.
//
// Input, string TITLE, a title.
//
{
int i;
cout << "\n";
cout << title << "\n";
cout << "\n";
for ( i = 0; i < n; i++ )
{
cout << " " << setw(8) << i
<< ": " << setw(8) << a[i] << "\n";
}
return;
}
/******************************************************************************/
int *perm_uniform_new ( int n, int &seed )
/******************************************************************************/
//
// Purpose:
//
// PERM_UNIFORM_NEW selects a random permutation of N objects.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 26 February 2014
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Albert Nijenhuis, Herbert Wilf,
// Combinatorial Algorithms,
// Academic Press, 1978, second edition,
// ISBN 0-12-519260-6.
//
// Parameters:
//
// Input, int N, the number of objects to be permuted.
//
// Input/output, int &SEED, a seed for the random number generator.
//
// Output, int PERM_UNIFORM_NEW[N], a permutation of
// (BASE, BASE+1, ..., BASE+N-1).
//
{
int i;
int j;
int k;
int *p;
p = new int[n];
for ( i = 0; i < n; i++ )
{
p[i] = i;
}
for ( i = 0; i < n - 1; i++ )
{
j = i4_uniform_ab ( i, n - 1, seed );
k = p[i];
p[i] = p[j];
p[j] = k;
}
return p;
}
//****************************************************************************80
void timestamp ( )
//****************************************************************************80
//
// Purpose:
//
// TIMESTAMP prints the current YMDHMS date as a time stamp.
//
// Example:
//
// 31 May 2001 09:45:54 AM
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 08 July 2009
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// None
//
{
# define TIME_SIZE 40
static char time_buffer[TIME_SIZE];
const struct std::tm *tm_ptr;
size_t len;
std::time_t now;
now = std::time ( NULL );
tm_ptr = std::localtime ( &now );
len = std::strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm_ptr );
std::cout << time_buffer << "\n";
return;
# undef TIME_SIZE
}
|
4f6eb9b21e236c37907a57f3414b06977d0c5388 | 60968f3269507d95f2191f7bbda5711e11ef8e96 | /main.cpp | 632941a3b036b0d7353216dd4a8d643133f902f7 | [] | no_license | mmoreland/Primes | 5c0b520b48e5d5940f3e0af8a4d94dfabc1dea03 | c3eb8062793af17bfa900ac079b2bc1ea1baeb1c | refs/heads/main | 2022-12-29T21:43:59.707846 | 2020-10-15T19:14:19 | 2020-10-15T19:14:19 | 304,424,783 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 566 | cpp | main.cpp | #include <iostream>
#include <cmath>
using namespace std;
bool otherPrime(long int n){
if (n <= 1)
return false;
// Check from 2 to n-1
for (int i = 2; i < n; i++){
if (n % i == 0)
return false;
}
return true;
}
int main(){
long int twos[60];
for(int i = 0; i < 60; i++){
twos[i] = pow(2, i) - 1;
}
for(int j = 0; j < 60; j++){
bool check = otherPrime(twos[j]);
if(check){
cout << twos[j] << " is PRIME "<< endl;
}
}
}
|
7361775dccd0716f367b560ed63881a93aa8228b | 4f94cbf5c4632294082f2c8fd0bd7916d252c849 | /Attribute.cpp | c38263acd892919ce5f030b77ccbdd8d76677c9e | [] | no_license | aiyer/tinyxmlpp | 87713ac97760cbab1616c9fad3e19e99b556ed14 | 1bdee5506283b9e1bbcab0d77bbecf987e20c40f | refs/heads/master | 2020-12-24T16:23:36.416580 | 2013-04-29T00:34:08 | 2013-04-29T00:34:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,025 | cpp | Attribute.cpp | #include "Attribute.h"
namespace tinyXMLpp {
/**
*Sets the 'name' of the name-value pair of an Attribute
*
*@param name 'name' in the name-value pair
*/
void Attribute::setName (std::string name) {
this->name = name;
}
/**
*Sets the 'value' of the name-value pair of an Attribute
*
*@param value 'value' in the name-value pair
*/
void Attribute::setValue (std::string value) {
this->value = value;
}
/**
*Gets the 'name' of the name-value pair of an Attribute
*/
std::string Attribute::getName () {
return this->name;
}
/**
*Gets the 'value' of the name-value pair of an Attribute
*/
std::string Attribute::getValue () {
return this->value;
}
/**
*Constructor that takes in name and value as parameters
*
*@param name 'name' in the name-value pair
*@param value 'value' in the name-value pair
*/
Attribute::Attribute (const std::string& name, const std::string& value) {
this->name = name;
this->value = value;
}
}
|
f41bd11012e0d4712672f30cb02d56b6683d7eb7 | 22b4f6ba0a9e4c7f70fd3e584c662071f475339f | /src/persistenceservice/adapterfactory.cpp | 6bab2a4d3b07b4a203aa5381b349453ccaffa83c | [
"MIT"
] | permissive | pefoo/MoSer2 | f3ff1cf4e3b758c671991313dfa10c62d09a8197 | f593126112637c9fa3a7e6a66e34e80f515b796b | refs/heads/master | 2021-06-14T22:49:03.240050 | 2021-05-01T11:29:27 | 2021-05-01T11:29:27 | 189,720,705 | 1 | 0 | MIT | 2020-03-04T21:12:11 | 2019-06-01T10:39:37 | C++ | UTF-8 | C++ | false | false | 727 | cpp | adapterfactory.cpp | #include "persistenceservice/adapterfactory.hpp"
#include <memory>
#include <utility>
#include "persistenceservice/AdapterTypes.hpp"
#include "persistenceservice/sqlite/sqliteadapter.hpp"
persistenceservice::AdapterFactory::AdapterFactory(
std::unique_ptr<AdapterSettings> adapter_settings)
: adapter_settings_(std::move(adapter_settings)) {}
std::unique_ptr<persistenceservice::IDataAdapter>
persistenceservice::AdapterFactory::CreateAdapter() const {
switch (this->adapter_settings_->adapter_type()) {
case persistenceservice::AdapterTypes::sqlite:
return std::make_unique<sqlite::SqliteAdapter>(
this->adapter_settings_.get());
}
throw std::runtime_error("Adapter type not supported");
}
|
44da2024cf2254e1e378f2c1106fa36f72fdfc6d | b73e5755231cbff585b0855e09de98ea23b4b813 | /SymulatorSwiata/Roslina.h | 0b8276856a80c08f0509af045df66a1234ba5202 | [] | no_license | DominikKwiatkowski/WorldSimulation | bde25bc5890910ec8df94c78903eab7faa321f26 | 5e1a5851070fe349c339fe1cdfe84db2baa29946 | refs/heads/master | 2020-12-11T17:21:16.389605 | 2020-01-14T18:40:30 | 2020-01-14T18:40:30 | 233,910,579 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 373 | h | Roslina.h | #include "stdafx.h"
class Roslina : public Organizm
{
public:
Roslina(int dataUrodzenia, int sila, int pozycjaX, int pozycjaY, Swiat* swiat, char literka);
virtual void Akcja();
virtual void Kolizja(Organizm& wrog, bool atakujacy) override;
virtual std::pair<int,int> czyAkcja() override;
virtual void MakeChild(int pozycjaX, int pozycjaY) = 0;
virtual ~Roslina();
}; |
7d5d1783fb116cbc173e50d8a58ec059cf8914c2 | de343442c6efcaf1ec61efe2ffeecec65b770d4f | /day4/ForDemo2.cpp | 817710690c51f839562fce35342e442ecc81f6ba | [] | no_license | Rjcoreas/practice-c- | a785925de7758facad782fdfb4f179211c0dc32b | a9fc85864aba4d347a2506cf3a7534b7efe62717 | refs/heads/master | 2021-01-11T16:50:05.149933 | 2017-01-22T10:50:54 | 2017-01-22T10:50:54 | 79,679,117 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 627 | cpp | ForDemo2.cpp | // ForDemo2 - input a loop count. Loop while
// outputting astring arg number of times.
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int nNumberofArgs, char* pszArgs[])
{
// input the loop count
int loopCount;
cout << "Enter loopCount: ";
cin >> loopCount;
// count up to the loop count limit
for (int i = 1; i <= loopCount; i++)
{
cout << "We've finished " << i << " loops\n";
}
// wait until user is ready before terminating program
// to allow the user to see the program results
system("PAUSE");
return 0;
}
|
d611a85bfd5046f6f78fcf66f11137acbc91c15c | 39363dcd2a97bf5bfaf6ffb96befcccc0cffb1d4 | /tests/VectorTest.cpp | 1e266656bc5a475eb70f52dd364f930595432857 | [] | no_license | seregsarn/astrojag | 57dd3769606f8ada7f48a4aa51e6d5b303cae9cf | 1205916d6cb85bc7330a998674c1e0540cbf7361 | refs/heads/master | 2021-01-09T06:05:16.125851 | 2017-03-04T03:06:45 | 2017-03-04T03:06:45 | 62,970,348 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,803 | cpp | VectorTest.cpp | #include "gtest/gtest.h"
#include "astrojag.h"
using namespace astrojag;
TEST(VectorTest, Equals) {
Vector a(1, 2);
Vector b(1, 2);
Vector c(1, 3);
EXPECT_TRUE(a == a);
EXPECT_TRUE(a == b);
EXPECT_TRUE(b == a);
EXPECT_FALSE(a == c);
EXPECT_FALSE(c == a);
EXPECT_FALSE(b == c);
EXPECT_FALSE(c == b);
}
TEST(VectorTest, NotEquals) {
Vector a(1, 2);
Vector b(1, 2);
Vector c(1, 3);
EXPECT_FALSE(a != b);
EXPECT_FALSE(b != a);
EXPECT_TRUE(a != c);
EXPECT_TRUE(c != a);
EXPECT_TRUE(b != c);
EXPECT_TRUE(c != b);
}
TEST(VectorTest, DefaultCtor) {
Vector a;
EXPECT_EQ(Vector(0, 0), a);
}
TEST(VectorTest, CopyCtor) {
Vector a(13, 37);
Vector b(a);
EXPECT_EQ(Vector(13, 37), b);
}
TEST(VectorTest, Assignment) {
Vector a(13, 37);
Vector b(99, 99);
EXPECT_EQ(Vector(13, 37), b = a);
EXPECT_EQ(Vector(13, 37), b);
}
TEST(VectorTest, SelfAssignment) {
Vector a(13, 37);
a = a;
EXPECT_EQ(Vector(13, 37), a);
}
TEST(VectorTest, Components) {
Vector a(13, 37);
EXPECT_EQ(13, a.x);
EXPECT_EQ(37, a.y);
}
TEST(VectorTest, Addition) {
Vector a(7, 11);
Vector b(13, 19);
EXPECT_EQ(Vector(7+13, 11+19), a + b);
}
TEST(VectorTest, Subtraction) {
Vector a(7, 11);
Vector b(13, 19);
EXPECT_EQ(Vector(7-13, 11-19), a - b);
}
/*
TEST(VectorTest, Multiplication) {
Vector a(7, 11);
Vector b(13, 19);
EXPECT_EQ(Vector(7*13, 11*19), a * b);
}
TEST(VectorTest, Division) {
Vector a(100, 15);
Vector b(20, 3);
EXPECT_EQ(Vector(100/20, 15/3), a / b);
}
*/
TEST(VectorTest, ScalarMultiplication) {
Vector a(7, 11);
EXPECT_EQ(Vector(7*5, 11*5), a * 5.0f);
}
TEST(VectorTest, ScalarDivision) {
Vector a(100, 25);
EXPECT_EQ(Vector(100/5, 25/5), a / 5.0f);
}
|
53751888cd71b3eb5fe5ca4218666b90e81448ff | dfd595d5de897f5b978765568f09c55cc365d716 | /lc_main/9_回文数.cpp | f689a8f4b20903c5625f16dc2435b325ea27bc9a | [] | no_license | zgpio/OJ | c1ad6df22e17dc332bcc2b8ba86e36563c22e532 | 63fb1572f19e305f736a27c8380ee57d08eb90a5 | refs/heads/master | 2022-12-25T16:44:30.413796 | 2020-10-06T12:58:49 | 2020-10-06T12:58:49 | 280,862,744 | 2 | 0 | null | 2020-09-03T01:51:24 | 2020-07-19T12:38:07 | C++ | UTF-8 | C++ | false | false | 636 | cpp | 9_回文数.cpp | #include <bits/stdc++.h>
using namespace std;
// 9. Palindrome Number (回文数)
class Solution {
public:
bool isPalindrome(int x)
{
if (x < 0) return false;
long long t = x;
long long res = 0;
while (t > 0) {
res = res * 10 + t % 10;
t /= 10;
}
if (res - x == 0)
return true;
else
return false;
}
};
int main()
{
Solution sol;
assert(sol.isPalindrome(121) == true);
assert(sol.isPalindrome(-121) == false);
assert(sol.isPalindrome(10) == false);
std::cout << "end" << std::endl;
return 0;
}
|
8d6d0a01735508255cf66df84220483fa26f6216 | 5112e450a71a9d7a49ef667816cbd1b4545f046c | /src/87_Add_Binary.cpp | ca3c781e55f9a4401df155bdbe43d6b7f4cb249a | [] | no_license | satanson/leetcode | 7d28ee0f0433867699739861e538fb315ebfa3a6 | c945474897ea39c1f9362f5851b42e0e0b7289db | refs/heads/master | 2021-01-19T04:50:21.963542 | 2014-08-07T16:08:35 | 2014-08-07T16:08:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,277 | cpp | 87_Add_Binary.cpp | #include<cppstdlib.hpp>
class Solution {
public:
string addBinary(string a, string b) {
string rc;
int carry=0;
int i=a.size()-1,j=b.size()-1;
while(i>=0 && j>=0){
if(a[i]=='0' && b[j]=='0' && carry==0)rc.append(1,'0'),carry=0;
else if(a[i]=='0' && b[j]=='1' && carry==0)rc.append(1,'1'),carry=0;
else if(a[i]=='1' && b[j]=='0' && carry==0)rc.append(1,'1'),carry=0;
else if(a[i]=='1' && b[j]=='1' && carry==0)rc.append(1,'0'),carry=1;
else if(a[i]=='0' && b[j]=='0' && carry==1)rc.append(1,'1'),carry=0;
else if(a[i]=='0' && b[j]=='1' && carry==1)rc.append(1,'0'),carry=1;
else if(a[i]=='1' && b[j]=='0' && carry==1)rc.append(1,'0'),carry=1;
else if(a[i]=='1' && b[j]=='1' && carry==1)rc.append(1,'1'),carry=1;
else {}
--i,--j;
}
if (i<0)std::swap(a,b),i=j;
while(i>=0){
if (a[i]=='0' && carry==0)rc.append(1,'0'),carry=0;
else if (a[i]=='0' && carry==1)rc.append(1,'1'),carry=0;
else if (a[i]=='1' && carry==0)rc.append(1,'1'),carry=0;
else if (a[i]=='1' && carry==1)rc.append(1,'0'),carry=1;
else {}
--i;
}
if (carry)rc.append(1,'1');
return string(rc.rbegin(),rc.rend());
}
};
int main(){
Solution so;
string a,b;
while(getline(cin,a)){
getline(cin,b);
cout<<so.addBinary(a,b)<<endl;
}
}
|
2389a6b1da40750e3552f2ea6b294831a814445d | ef82055484ff811e462910872e1a0e6dfff07080 | /jni/mcpe/item/BlockItem.h | f87eec2eda0ff997ace9379283a3defb67b8fd48 | [] | no_license | seanwallawalla-forks/Too-Much-TNT-PE-Addon | 319466e550919fb33da079121a37eeb11fa74d1d | 1f01777e36507ad8abe3615c6978414991578a00 | refs/heads/master | 2021-09-14T21:09:26.328277 | 2018-05-19T21:53:42 | 2018-05-19T21:53:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 635 | h | BlockItem.h | #pragma once
#include "Item.h"
class BlockItem : public Item {
public:
BlockItem(std::string const&, int);
virtual ~BlockItem();
virtual bool isDestructive(int) const;
virtual bool isValidAuxValue(int) const;
virtual std::string buildDescriptionId(const ItemInstance&) const;
virtual bool isEmissive(int) const;
virtual const TextureUVCoordinateSet& getIcon(int, int, bool) const;
virtual int getIconYOffset() const;
virtual bool _calculatePlacePos(ItemInstance&, Entity&, signed char&, BlockPos&) const;
virtual bool _useOn(ItemInstance&, Entity&, BlockPos, signed char, float, float, float, ItemUseCallback*) const;
};
|
1ecefa5cdf95b7ceb4b9d3bed6c3325ac4a38b6e | 7495e64fdc16caa575e8b2822ea42df59b664e5a | /branch/1.0.2/src/monitor/recoverymodule.cc | 10c67dcb5464133cb1d5d6a1485b23f959180834 | [] | no_license | patrickpclee/codfs | dda6a8668c4e157118c7f7773676d88a2d4b0ffe | f3765f148adaecc1c45b132d2453cc74f7a2712f | refs/heads/master | 2021-01-01T20:06:15.538155 | 2015-03-31T09:45:55 | 2015-03-31T09:45:55 | 26,440,466 | 11 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 6,239 | cc | recoverymodule.cc | #include <ctime>
#include <stdio.h>
#include <mutex>
#include <unistd.h>
#include <vector>
#include <set>
#include <thread>
#include <algorithm>
#include "recoverymodule.hh"
#include "../protocol/status/recoverytriggerrequest.hh"
#include "../protocol/status/repairsegmentinfomsg.hh"
using namespace std;
RecoveryModule::RecoveryModule(map<uint32_t, struct OsdStat>& mapRef,
MonitorCommunicator* communicator):
_osdStatMap(mapRef), _communicator(communicator) {
}
void startRecoveryProcedure(RecoveryModule* rm, vector<uint32_t> deadOsdList,
bool dstSpecified, vector<uint32_t> dstSpec) {
string osdListString;
for (auto osdId : deadOsdList) {
osdListString += to_string(osdId) + " ";
}
cout << "Start to recover failure OSD " << osdListString << endl;
rm->executeRecovery(deadOsdList, dstSpecified, dstSpec);
}
// Just sequentially choose one.
// Can use different startegy later.
void RecoveryModule::replaceFailedOsd(struct SegmentLocation& ol,
struct SegmentRepairInfo& ret, map<uint32_t, uint32_t>& mapped) {
lock_guard<mutex> lk(osdStatMapMutex);
ret.segmentId = ol.segmentId;
vector<uint32_t>& ref = ol.osdList;
for (int pos = 0; pos < (int)ref.size(); ++pos) {
if (_osdStatMap[ref[pos]].osdHealth != ONLINE) {
uint32_t deadOsd = ref[pos];
// mapped this dead osd with new replacement
ref[pos] = mapped[deadOsd];
ret.repPos.push_back(pos);
ret.repOsd.push_back(mapped[deadOsd]);
}
}
}
void RecoveryModule::replaceFailedOsd(struct SegmentLocation& ol, struct SegmentRepairInfo& ret) {
// if not specify the dst, just sequential assign
set<uint32_t> used;
for (uint32_t osdid : ol.osdList) {
if (_osdStatMap[osdid].osdHealth == ONLINE) {
used.insert(osdid);
}
}
set<uint32_t> avail;
set<uint32_t> all;
{
lock_guard<mutex> lk(osdStatMapMutex);
for (auto& entry : _osdStatMap) {
if (entry.second.osdHealth == ONLINE) {
all.insert(entry.first);
if (!used.count(entry.first))
avail.insert(entry.first);
}
}
set<uint32_t>::iterator it = avail.begin();
ret.segmentId = ol.segmentId;
vector<uint32_t>& ref = ol.osdList;
for (int pos = 0; pos < (int)ref.size(); ++pos) {
if (_osdStatMap[ref[pos]].osdHealth != ONLINE) {
if (it == avail.end() || it == all.end()) it = all.begin();
if (it != avail.end() && it != all.end()) {
debug_cyan("Faild osd = %" PRIu32 "\n", ref[pos]);
ref[pos] = *it;
ret.repPos.push_back(pos);
ret.repOsd.push_back(*it);
debug_cyan("Replaced with osd = %" PRIu32 "\n", ref[pos]);
it++;
} else {
debug_cyan("%s\n", "[ERROR]: Failed to replace osd");
}
}
}
}
}
void RecoveryModule::executeRecovery(vector<uint32_t>& deadOsdList, bool
dstSpecified, vector<uint32_t> dstSpec) {
// this map used if dstSpecified
map<uint32_t, uint32_t> mapped;
if (dstSpecified) {
// one to one map from dead to dst
sort(deadOsdList.begin(), deadOsdList.end());
sort(dstSpec.begin(), dstSpec.end());
for (int i = 0; i < (int)deadOsdList.size(); i++) {
mapped[deadOsdList[i]] = dstSpec[i%dstSpec.size()];
}
}
debug_yellow("%s\n", "Start Recovery Procedure");
// Request Recovery to Mds
RecoveryTriggerRequestMsg* rtrm = new
RecoveryTriggerRequestMsg(_communicator, _communicator->getMdsSockfd(),
deadOsdList, dstSpecified, dstSpec); // add two fields dstSpec
rtrm->prepareProtocolMsg();
_communicator->addMessage(rtrm, true);
MessageStatus status = rtrm->waitForStatusChange();
if (status == READY) {
vector<struct SegmentLocation> ols = rtrm->getSegmentLocations();
for (struct SegmentLocation ol: ols) {
// Print debug message
debug_cyan("Segment Location id = %" PRIu64 " primary = %" PRIu32 "\n", ol.segmentId,
ol.primaryId);
struct SegmentRepairInfo ori;
if (dstSpecified) {
replaceFailedOsd (ol, ori, mapped);
} else {
replaceFailedOsd (ol, ori);
}
ori.out();
RepairSegmentInfoMsg* roim = new RepairSegmentInfoMsg(_communicator,
_communicator->getSockfdFromId(ol.primaryId), ori.segmentId,
ori.repPos, ori.repOsd);
debug ("sockfd for repair = %" PRIu32 "\n", _communicator->getSockfdFromId(ol.primaryId));
roim->prepareProtocolMsg();
debug ("%s\n", "add repair segment info msg");
_communicator->addMessage(roim);
debug ("%s\n", "added to queue repair segment info msg");
}
} else {
debug("%s\n", "Faided Recovery");
}
}
void RecoveryModule::failureDetection(uint32_t deadPeriod, uint32_t sleepPeriod) {
while (1) {
{
lock_guard<mutex> lk(triggerRecoveryMutex);
uint32_t currentTS = time(NULL);
vector<uint32_t> deadOsdList;
{
lock_guard<mutex> lk(osdStatMapMutex);
for(auto& entry: _osdStatMap) {
//entry.second.out();
if ((currentTS - entry.second.timestamp) > deadPeriod &&
(entry.second.osdHealth != RECOVERING &&
entry.second.osdHealth != ONLINE)) {
// Trigger recovery
debug_yellow("Detect failure OSD = %" PRIu32 "\n", entry.first);
deadOsdList.push_back (entry.first);
entry.second.osdHealth = RECOVERING;
}
}
}
// If has dead Osd, start recovery
if (deadOsdList.size() > 0) {
thread recoveryProcedure(startRecoveryProcedure, this, deadOsdList, false, vector<uint32_t>());
recoveryProcedure.detach();
}
}
sleep(sleepPeriod);
}
}
void RecoveryModule::userTriggerDetection(bool dstSpecified) {
lock_guard<mutex> lk(triggerRecoveryMutex);
vector<uint32_t> deadOsdList;
{
lock_guard<mutex> lk(osdStatMapMutex);
for(auto& entry: _osdStatMap) {
//entry.second.out();
if ((entry.second.osdHealth != RECOVERING &&
entry.second.osdHealth != ONLINE)) {
// Trigger recovery
debug_yellow("Detect failure OSD = %" PRIu32 "\n", entry.first);
deadOsdList.push_back (entry.first);
entry.second.osdHealth = RECOVERING;
}
}
}
// If has dead Osd, start recovery
if (deadOsdList.size() > 0) {
vector<uint32_t> dstSpec;
if (dstSpecified) {
FILE* fp = fopen(RECOVERY_DST, "r");
int osdid;
while (fscanf(fp, "%d", &osdid) != EOF) {
dstSpec.push_back(osdid);
}
}
thread recoveryProcedure(startRecoveryProcedure, this, deadOsdList,
dstSpecified, dstSpec);
recoveryProcedure.detach();
}
}
|
433d4391cd989988fdfd49867afe8395731af9de | 14b024c2140fc8c9cea1b26377b0d2d11ff17e98 | /SortAndOutputThread_test.cpp | 910d08f30c75db72bfe4add0e3ad6f4aa3476c8e | [] | no_license | ElephantTracksProject/elephant-tracks | e4e731dffb6d43502b7835a301c34f755f3c46fb | bcbd977fb2b522c54cc1b59e936802fd37a157fb | refs/heads/master | 2020-03-06T21:47:51.046755 | 2017-07-14T00:36:10 | 2017-07-14T00:36:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,685 | cpp | SortAndOutputThread_test.cpp | #include <jvmti.h>
#include <jni.h>
#include <iostream>
#include "AllocationRecord.h"
#include "DeathRecord.h"
#include "MethodEntryRecord.h"
#include "MethodExitRecord.h"
#include "PointerUpdateRecord.h"
#include "RootRecord.h"
#include "main.h"
#include "SortAndOutputThread.h"
using namespace std;
int main(int argc, char** argv) {
JNIEnv* jni = new JNIEnv();
jvmtiEnv* jvmti = new jvmtiEnv();
Record** records;
int num_records = 5;
for(int i = 0; i < 256; i++) {
wantRecord[i] = 'a';
}
records = new Record*[num_records];
records[0] = new AllocationRecord(1, 1, 1, "FakeType", 1, 'A');
records[1] = new MethodEntryRecord(1, 1, 1);
records[2] = new RootRecord(1,1);
records[3] = new MethodExitRecord(1,1,1,1);
records[4] = new DeathRecord(1,1);
records[0]->setTime(0);
records[1]->setTime(1);
records[2]->setTime(1);
records[3]->setTime(2);
SortAndOutputThread* sortAndOutput = new SortAndOutputThread(jvmti, (std::ostream*)&cerr);
sortAndOutput->initialize(jvmti, jni);
sortAndOutput->doParallelSortAndOutput(records, num_records);
records = new Record*[num_records];
records[0] = new AllocationRecord(2, 2, 2, "FakeType2", 1, 'A');
records[1] = new MethodEntryRecord(1, 2, 1);
records[2] = new RootRecord(2,1);
records[3] = new MethodExitRecord(1, 2, 1, 1);
records[4] = new DeathRecord(2,4);
records[0]->setTime(2);
records[1]->setTime(3);
records[2]->setTime(3);
records[3]->setTime(4);
sortAndOutput->doParallelSortAndOutput(records, num_records);
while(sortAndOutput->getStatus() != WAITING) {
this_thread::yield();
}
delete jni;
delete jvmti;
delete sortAndOutput;
return 0;
}
|
9a849888de6f8132c93474073a277b210121cb75 | 85ecaa1e1040116dd88c49e651a5f3cba4f1680e | /src/DebugStream.h | 0c2d6d24b7c97f90e65b9f38d45582ef8f9057dd | [] | no_license | alcortesm/rotella | 8a1c7e7bd82169b9bd005fd0f9f843b9effc7823 | ea3e9b472688a06d1b27fdd547c53199092b087b | refs/heads/master | 2023-07-07T00:37:56.976534 | 2010-03-30T18:11:13 | 2010-03-30T18:11:13 | 43,781,306 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,034 | h | DebugStream.h | // -*- Mode: c++ -*-
// Stream to use for debugging
//
// It is thread safe, but funny things can happend
// with on().
//
// Example of use:
// #include "DebugStream.h"
// DebugStream debug(std::cout);
// int main() {
// debug << "Debug" << std::endl;
// debug.on() = false;
// debug << "This line will not print" << std::endl;
// return 0;
// }
#ifndef DEBUGSTREAM_H
#define DEBUGSTREAM_H
#include <ostream> // HASA-USES ostream for writting data
class DebugStream {
private:
std::ostream & mrStream;
bool mIsOn;
public:
DebugStream(std::ostream & rStream, bool isOn = true)
: mrStream(rStream), mIsOn(isOn) { };
bool on() const { return mIsOn; };
bool& on() { return mIsOn; };
template <typename T> inline DebugStream & operator<<(const T & t) {
if (mIsOn)
mrStream << t;
return *this;
}
inline DebugStream & operator<<(std::ostream& (*f)(std::ostream &)) {
if (mIsOn)
mrStream << f;
return *this;
}
};
#endif // DEBUGSTREAM_H
|
b6610b7f0a658149db634879c7bdec32aca5371a | e2029872bcf1feead431d3eb155ddc91036d9317 | /Migrator/TypeAvailability.cpp | 34a13f5ad19d69b19dcd148242f751dab9371998 | [
"Artistic-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | FingerLeakers/emojicode | 604d14a11ca7716b0488bc0d3d5ce3f573bfe2a3 | 1e5b1a6f287998639cd43152f37482125ab3d96a | refs/heads/master | 2020-03-12T06:16:48.757828 | 2018-04-09T13:02:51 | 2018-04-09T13:02:51 | 130,481,785 | 2 | 0 | null | 2018-04-21T14:34:08 | 2018-04-21T14:34:08 | null | UTF-8 | C++ | false | false | 468 | cpp | TypeAvailability.cpp | //
// TypeAvailability.cpp
// Emojicode
//
// Created by Theo Weidmann on 13/04/2017.
// Copyright © 2017 Theo Weidmann. All rights reserved.
//
#include "TypeAvailability.hpp"
#include "CompilerError.hpp"
namespace EmojicodeCompiler {
void notStaticError(TypeAvailability t, const SourcePosition &p, const char *name) {
if (!isStatic(t)) {
throw CompilerError(p, "%s cannot be used dynamically.", name);
}
}
} // namespace EmojicodeCompiler
|
7f7e45a98ee3b2c17a0ed41055b21c3862b1efcb | 4703e7ae907292598812704846a97db3533f4dc7 | /VektoriaApp/Connection.cpp | e9a866785e210ed64633cf91c392d15bef632490 | [] | no_license | cutecrait/marsgodgames | 57495692f3a14945c7c504263c8e87f7e99561fa | 6f1a94cc0172a27c0ef7150bb1f023c98fc6a6cd | refs/heads/master | 2023-06-24T11:42:43.377216 | 2021-07-26T09:39:10 | 2021-07-26T09:39:10 | 353,086,425 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 283 | cpp | Connection.cpp | #include "Node.h"
namespace Pathfinding
{
Connection::Connection(Node*& node, int cost)
{
_node = node;
_cost = cost;
}
Node* Connection::GetNode()
{
return _node;
}
int Connection::GetCost()
{
return _cost;
}
}
|
551db3db82d1a6e0b138be3d85d22557bf3f0fe3 | 4b1ebdf8b9f92e167a649a76ee79f99ac5ff705e | /uva00989.cpp | 0834a477fb651bc6b6d5ef428c2cf5c541ca099f | [] | no_license | ngoxuanhuy/Programming-problems | d346fac29fa9e84d9f9159b65bf4e0cd36577070 | 113dfbfa97a786eb5bb48eed12afc85580f3924f | refs/heads/master | 2020-06-13T04:10:12.366664 | 2018-10-07T03:08:18 | 2018-10-07T03:08:18 | 75,448,765 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,807 | cpp | uva00989.cpp | #include <stdio.h>
int N;
int n;
int matrix[15][15];
int numOfZeros;
bool found;
void backtrack(int, int, int);
bool canFillRow(int, int);
bool canFillCol(int, int);
bool canFillSquare(int, int, int, int);
int main()
{
//freopen("input.txt", "r", stdin);
int tc = 0;
while (scanf("%d", &n) == 1)
{
N = n * n;
tc++;
if (tc != 1)
printf("\n");
numOfZeros = 0;
for(int i = 1; i <= N; i++)
{
for (int j = 1; j <= N; j++)
{
scanf("%d", &matrix[i][j]);
if (matrix[i][j] == 0)
numOfZeros++;
}
}
found = false;
backtrack(1, 1, numOfZeros);
if (found == false)
printf("NO SOLUTION\n");
else
{
for(int i = 1; i <= N; i++)
{
printf("%d", matrix[i][1]);
for(int j = 2; j <= N; j++)
printf(" %d", matrix[i][j]);
printf("\n");
}
}
}
return 0;
}
void backtrack(int x, int y, int num)
{
if(found) return;
if (num == 0)
{
found = true;
return;
}
if (y == N+1)
{
y = 1;
x++;
if (x == N+1)
return;
}
if (matrix[x][y] != 0)
{
backtrack(x, y+1, num);
}
else
{
for(int i = 1; i <= N; i++)
{
if (canFillRow(x, i) && canFillCol(y, i) && canFillSquare(x, y, i, n))
{
matrix[x][y] = i;
backtrack(x, y+1, num-1);
if (found == true) return;
matrix[x][y] = 0;
}
}
}
}
bool canFillRow(int x, int value)
{
for(int j = 1; j <= N; j++)
{
if (matrix[x][j] == value)
return false;
}
return true;
}
bool canFillCol(int y, int value)
{
for(int i = 1; i <= N; i++)
{
if (matrix[i][y] == value)
return false;
}
return true;
}
bool canFillSquare(int x, int y, int value, int size)
{
if (size == 1)
return true;
if (size == 2)
{
int remain_x = x % n;
int remain_y = y % n;
if (remain_x == 1)
{
if (remain_y == 1)
{
for(int i = x; i <= x+1; i++)
for(int j = y; j <= y+1; j++)
if (matrix[i][j] == value) return false;
}
else
{
for(int i = x; i <= x+1; i++)
for(int j = y-1; j <= y; j++)
if (matrix[i][j] == value) return false;
}
}
else
{
if (remain_y == 1)
{
for(int i = x-1; i <= x; i++)
for(int j = y; j <= y+1; j++)
if (matrix[i][j] == value) return false;
}
else
{
for(int i = x-1; i <= x; i++)
for(int j = y-1; j <= y; j++)
if (matrix[i][j] == value) return false;
}
}
return true;
}
else
{
int remain_x = x % n;
int remain_y = y % n;
if (remain_x == 1)
{
if (remain_y == 1)
{
for(int i = x; i <= x+2; i++)
for(int j = y; j <= y+2; j++)
if (matrix[i][j] == value) return false;
}
else if (remain_y == 2)
{
for(int i = x; i <= x+2; i++)
for(int j = y-1; j <= y+1; j++)
if (matrix[i][j] == value) return false;
}
else
{
for(int i = x; i <= x+2; i++)
for(int j = y-2; j <= y; j++)
if (matrix[i][j] == value) return false;
}
}
else if (remain_x == 2)
{
if (remain_y == 1)
{
for(int i = x-1; i <= x+1; i++)
for(int j = y; j <= y+2; j++)
if (matrix[i][j] == value) return false;
}
else if (remain_y == 2)
{
for(int i = x-1; i <= x+1; i++)
for(int j = y-1; j <= y+1; j++)
if (matrix[i][j] == value) return false;
}
else
{
for(int i = x-1; i <= x+1; i++)
for(int j = y-2; j <= y; j++)
if (matrix[i][j] == value) return false;
}
}
else
{
if (remain_y == 1)
{
for(int i = x-2; i <= x; i++)
for(int j = y; j <= y+2; j++)
if (matrix[i][j] == value) return false;
}
else if (remain_y == 2)
{
for(int i = x-2; i <= x; i++)
for(int j = y-1; j <= y+1; j++)
if (matrix[i][j] == value) return false;
}
else
{
for(int i = x-2; i <= x; i++)
for(int j = y-2; j <= y; j++)
if (matrix[i][j] == value) return false;
}
}
return true;
}
} |
66ac5c0f905d91543041449ce65a576b1e291682 | 439031649964b9eaaca7a268528eab1e7ae960b5 | /TimerShoot.h | a28931fb3b44b1c0e3029fc9da9a4a7fdf394b34 | [] | no_license | Nekomeshi/NikonRemoteTimer | a7bbbd328da8cd297022558905a7469edf06f8a3 | a535cea90d375954fab89369c4a79cd975bb5a1c | refs/heads/master | 2020-12-10T02:05:20.888364 | 2020-01-12T23:57:47 | 2020-01-12T23:57:47 | 233,477,179 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,221 | h | TimerShoot.h | #ifndef __TIMER_SHOOT_H__
#define __TIMER_SHOOT_H__
#include <Arduino.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include "TimerArea.h"
#include "SettingItem.h"
#include "CaptureCtrl.h"
#include "TimerSetting.h"
class TimerRepeatArea{
private:
Adafruit_SSD1306 *m_pScreen;
int mLeft;
int mBottom;
int mTotalCount;
int mRepeatCount;
public:
TimerRepeatArea(Adafruit_SSD1306 *scrn, int left, int bottom);
void setRepeatCount(int repCount);
int getRepeatCount(void);
void setTotalCount(int totalCount);
void show();
};
class TimerShoot{
private:
Adafruit_SSD1306 *m_pScreen;
CaptureCtrl *m_pCaptureCtrl;
TimerArea *m_pTimerArea;
SettingItem **m_pSettingItems;
TimerRepeatArea *m_pTimerRepeatArea;
TimerSettingData mTimerData;
int mRepeatCount;
int mCurrentItem;
bool mUseAF;
unsigned long mStartTimeMS;
int mRemainingTime;
void show();
void (*onTimerEndCB)(bool isCompleted);
void stopTimer(bool isCompleted);
public:
TimerShoot(Adafruit_SSD1306 *scrn, CaptureCtrl *cap);
virtual ~TimerShoot();
void setTimerData(TimerSettingData timerData);
void startTimer(bool useAF);
void stopTimer();
void updateTimer();
void setOnTimerEnd(void (*cb)(bool));
};
#endif
|
bc0655ab30efb40afd9a80ee34f44f30e8bfd51e | aaeee1eb8617c9aa5826c81e12b75e4ea2286246 | /midi_utility.h | e588a9ea9ac05b913fc49d8ce37ff649fbb435ac | [] | no_license | bigsleep/tsynth | b63958bc5c5c31e874c0d7dca3e29bcb818923aa | 222a3359890cd8ef07520fdcc0dfb596f0442008 | refs/heads/master | 2021-03-12T22:48:52.346289 | 2011-02-10T05:38:46 | 2011-02-10T05:38:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,997 | h | midi_utility.h | #ifndef SYKES_MIDI_UTILITY_H
#define SYKES_MIDI_UTILITY_H
#include <cstdint>
#include <cstddef>
#include <cmath>
namespace sykes{
namespace midi{
extern std::uint8_t const min_note_number;
extern std::uint8_t const max_note_number;
extern std::uint8_t const note_table_size;
extern double const note_table[];
struct message
{
std::uint32_t data;
inline static std::uint8_t channel(message _m)
{ return static_cast<std::uint8_t>(_m.data & 0xFF); }
inline static std::uint8_t status(message _m)
{ return static_cast<std::uint8_t>(_m.data & 0xFF); }
inline static std::uint8_t data1(message _m)
{ return static_cast<std::uint8_t>((_m.data >> 8) & 0xFF); }
inline static std::uint8_t data2(message _m)
{ return static_cast<std::uint8_t>((_m.data >> 16) & 0xFF); }
};
struct channel_voice_message_type
{
static std::uint8_t const NOTE_OFF = 0x80;
static std::uint8_t const NOTE_ON = 0x90;
static std::uint8_t const POLYPHONIC_PRESSURE = 0xA0;
static std::uint8_t const CONTROL_CHANGE = 0xB0;
static std::uint8_t const PROGRAM_CHANGE = 0xC0;
static std::uint8_t const CHANNEL_PRESSURE = 0xD0;
static std::uint8_t const PITCH_BEND = 0xE0;
};
typedef channel_voice_message_type CVMT;
struct channel_mode_message_type
{
static std::uint8_t const ALL_SOUND_OFF = 0x78;
static std::uint8_t const RESET_ALL_CNTROLLERS = 0x79;
static std::uint8_t const LOCAL_CONTROL = 0x7A;
static std::uint8_t const ALL_NOTES_OFF = 0x7B;
static std::uint8_t const OMNI_OFF = 0x7C;
static std::uint8_t const OMNI_ON = 0x7D;
static std::uint8_t const MONO = 0x7E;
static std::uint8_t const POLY = 0x7F;
};
typedef channel_mode_message_type CMMT;
struct system_message_type
{
static std::uint8_t const SYSTEM_EXCLUSIVE = 0xF0;
static std::uint8_t const SONG_POSITION = 0xF2;
static std::uint8_t const SONG_SELECT = 0xF3;
static std::uint8_t const TUNE_REQUEST = 0xF6;
static std::uint8_t const END_OF_EXCLUSIVE = 0xF7;
static std::uint8_t const TIMING_CLOCK = 0xF8;
static std::uint8_t const START = 0xFA;
static std::uint8_t const CONTINUE = 0xFB;
static std::uint8_t const ACCTIVE_SENSING = 0xFE;
static std::uint8_t const RESET = 0xFF;
};
typedef system_message_type SMT;
inline bool is_channel_message(message _m)
{
std::uint8_t stat = message::status(_m);
return ((stat >= 0x80) && (stat < 0xF0));
}
inline bool is_system_message(message _m)
{
std::uint8_t stat = message::status(_m);
return ((stat >= 0xF0) && (stat <= 0xFF));
}
inline message make_message(std::uint8_t _stat, std::uint8_t _d1, std::uint8_t _d2)
{
std::uint32_t i =
((_d2 << 16) & 0xFF0000) |
((_d2 << 8) & 0x00FF00) |
(_stat & 0x0000FF);
return message{i};
}
inline message make_message(std::uint8_t const (&_d)[3])
{
std::uint32_t i =
((_d[2] << 16) & 0xFF0000) |
((_d[1] << 8) & 0x00FF00) |
(_d[0] & 0x0000FF);
return message{i};
}
inline std::uint8_t calc_note_number(double _f)
{
if(_f <= note_table[0]) return 0;
static double const c1 = 1.0 / 440.0;
std::uint8_t num = static_cast<std::uint8_t>(double(69.0 + 12.0 * std::log2(_f * c1) + 0.5));
if(num >= note_table_size)
return (note_table_size - 1);
else
return num;
}
}}//----
#endif
|
20b163456d90d38d439b0efaa6fde4df08ba5b7e | dcbf447ac034efe3f68ada71c8375f932b1e3fe5 | /projects/bemWrapper/bemWrapper.cpp | afd696117cf438dc69489d952e7ef3a3e1cac608 | [] | no_license | alexaschor/QUIJIBO | 19e839e38f751d1d6466da78847239415360a858 | 718abae10f18c6b24d36ddf4e01735bdd15d117d | refs/heads/main | 2023-06-02T20:13:15.398602 | 2021-06-18T16:20:32 | 2021-06-18T16:20:32 | 378,004,853 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,855 | cpp | bemWrapper.cpp | /*
QUIJIBO: Source code for the paper Symposium on Geometry Processing
2015 paper "Quaternion Julia Set Shape Optimization"
Copyright (C) 2015 Theodore Kim
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// This whole project is just a wrapper to call BEM++
// http://www.bempp.org/
#include <cmath>
#include "VEC3.h"
#include "TRIANGLE_MESH.h"
#include "SIMPLE_PARSER.h"
#include "TIMER.h"
#include <cstdio>
///////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////
int main(int argc, char** argv)
{
TIMER functionTimer(__FUNCTION__);
if (argc != 2)
{
cout << endl;
cout << " USAGE: " << argv[0] << " <cfg file> " << endl;
cout << endl;
return 0;
}
SIMPLE_PARSER parser(argv[1]);
string path = parser.getString("path", "./temp/");
char pwd[1024];
getcwd(pwd, 1024);
printf("pwd -> %s\n", pwd);
string fullPath = path;
// strip off the leading "."
fullPath.erase(0,1);
fullPath = string(pwd) + fullPath;
cout << " Full path: " << fullPath.c_str() << endl;
string inputFilename = fullPath + parser.getString("msh filename", "dummy.msh");
string distanceFilename = fullPath + parser.getString("distance field", "distance.field3D");
string outputFilename = fullPath + parser.getString("potential field", "dummy.field3d");
// TODO: If you're trying the advanced version, you will need to modify these
// to activate the proper Python environment (if any) and point to the location
// of solve_potential.py on your disk
string preCall("source ~/bempp-cl/.venv/bin/activate");
string pathToScript("~/QUIJIBO/projects/bemWrapper/solve_potential.py");
// call the BEM solver
char buffer[1024];
sprintf(buffer,"python %s %s %s %s", pathToScript.c_str(), inputFilename.c_str(), distanceFilename.c_str(), outputFilename.c_str());
string bemCall(buffer);
cout << " BEM call: " << bemCall.c_str() << endl;
string concatCall = preCall + string(";") + bemCall;
cout << " Concatenated call: " << concatCall << endl;
TIMER bemTimer("BEM Call");
system(concatCall.c_str());
bemTimer.stop();
TIMER::printTimings();
return 1;
}
|
bdab7def83a2fd01f995c593c53d12aa3a6cbcdb | 33b95f22a5cd1ddfa8e8eab48e00371c89c4be69 | /src/citationdisplaywindow.cpp | 0c026dc1a034cc98b68406393e4a9fa99e6e967f | [
"Apache-2.0"
] | permissive | Joseph-Christman/LibreCite | a67be724ef4ee0799628de3fc9939a3a518e6f9b | bb7f5075d6779ef09cacde862357dbe40468807a | refs/heads/master | 2020-03-21T16:37:48.142372 | 2018-08-14T22:10:41 | 2018-08-14T22:10:41 | 138,782,274 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,016 | cpp | citationdisplaywindow.cpp | /*
Copyright 2018 Joseph W Christman
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
*/
#include <QtWidgets>
#include "citationdisplaywindow.h"
#include "citationdisplaywidget.h"
CitationDisplayWindow::CitationDisplayWindow(QWidget * parent, \
QString citeLocation)
: QMainWindow(parent)
{
CitationDisplayWidget * citationDisplayWidget = \
new CitationDisplayWidget(this, citeLocation);
setCentralWidget(citationDisplayWidget);
}
|
06cba5270c6e3f64f9e5eaad8281edad9de0fc7e | 156c0861ce5650248099d917bc22dfe1b012c7cb | /第3章/第三章/3.32.1.cpp | 3deaf2c85f3634ccf5d8e42b9dc91b4211059ee8 | [] | no_license | bietaixian/cppPrimer5th | ba1309bdf2c0e2be80b8da26e1ee442ead611606 | 82a4866512f770f8e8d7010172db414cdf3911e0 | refs/heads/master | 2020-04-02T05:49:24.490678 | 2016-06-22T02:39:20 | 2016-06-22T02:39:20 | 61,682,696 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 503 | cpp | 3.32.1.cpp | //#include <iostream>
//#include<vector>
//using std::vector;
//using std::cout;
//int main()
//{
// int v[10] = {};
// vector<int> v1;
// for (int i = 0;i != 10;++i) {
// v[i] = i;
// }
// for (decltype(v1.size()) i = 0; i < 10; i++)
// {
// v1.push_back(v[i]);
// }
// for (auto i : v) {
// cout << i << " ";
// }
// cout << std::endl;
// for (auto i : v1) {
// cout << i << " ";
// }
// cout << std::endl;
// system("pause");
//} |
bc3addb89f75fef5bb470e519a9646e3f37b5fda | cb80a8562d90eb969272a7ff2cf52c1fa7aeb084 | /inletTest3/0.025/turbulenceProperties.I | c7d23612c51da1f3064a7185440ddd1cab6f8cf8 | [] | 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 | 154,471 | i | turbulenceProperties.I | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.025";
object turbulenceProperties:I;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField nonuniform List<scalar>
16277
(
0.149982
0.149981
0.149988
0.14999
0.149993
0.149992
0.149993
0.149993
0.149996
0.150002
0.150006
0.150008
0.150007
0.150005
0.150002
0.149999
0.149997
0.149995
0.149993
0.149992
0.149991
0.14999
0.149989
0.149988
0.149988
0.149987
0.149987
0.149986
0.149986
0.149986
0.149985
0.149985
0.149985
0.149985
0.149984
0.149984
0.149984
0.149984
0.149984
0.149984
0.149983
0.149983
0.149983
0.149983
0.149983
0.149983
0.149983
0.149983
0.149983
0.149983
0.149983
0.149983
0.149983
0.149983
0.149983
0.149984
0.149984
0.149984
0.149984
0.149984
0.149984
0.149985
0.149985
0.149985
0.149985
0.149985
0.149986
0.149986
0.149986
0.149986
0.149986
0.149986
0.149986
0.149986
0.149986
0.149985
0.149985
0.149984
0.149983
0.149983
0.149986
0.149995
0.15001
0.150025
0.15003
0.15002
0.150003
0.149984
0.149963
0.149966
0.14998
0.149975
0.149987
0.150006
0.149871
0.149302
0.145056
0.13907
0.145969
0.148738
0.145963
0.139179
0.13326
0.12938
0.135508
0.143796
0.13984
0.129513
0.125345
0.123085
0.127212
0.138166
0.134486
0.122557
0.120431
0.119146
0.121185
0.133228
0.130202
0.117798
0.117391
0.11666
0.117093
0.129328
0.1269
0.114827
0.115493
0.115105
0.114464
0.126274
0.124282
0.11282
0.114289
0.114109
0.112662
0.123846
0.122163
0.111402
0.113506
0.113448
0.111366
0.121853
0.120398
0.110362
0.112985
0.113014
0.110413
0.120189
0.118916
0.109593
0.112653
0.112734
0.109704
0.118783
0.117639
0.109001
0.112427
0.11254
0.109147
0.11756
0.116521
0.108529
0.112276
0.112412
0.108701
0.116486
0.115533
0.108147
0.112177
0.112328
0.108339
0.115534
0.114655
0.107836
0.112116
0.112279
0.108046
0.114688
0.113871
0.107587
0.112084
0.112257
0.107813
0.113931
0.11317
0.10739
0.112076
0.112257
0.107631
0.113256
0.112547
0.107243
0.112089
0.112277
0.107498
0.112658
0.111997
0.10714
0.112121
0.112316
0.107411
0.112134
0.111521
0.107083
0.11217
0.112372
0.10737
0.111681
0.111113
0.10707
0.112235
0.112445
0.107374
0.111298
0.110772
0.107101
0.112317
0.112535
0.107422
0.11098
0.110494
0.107174
0.112416
0.112642
0.107511
0.110725
0.110276
0.107286
0.112531
0.112765
0.107641
0.11053
0.110117
0.107438
0.112662
0.112905
0.10781
0.110393
0.110014
0.107629
0.112809
0.113062
0.108019
0.110314
0.109967
0.107857
0.112972
0.113235
0.108266
0.11029
0.109975
0.108123
0.113151
0.113424
0.108552
0.110322
0.110038
0.108427
0.113346
0.11363
0.108876
0.110409
0.110154
0.108768
0.113557
0.113853
0.109238
0.11055
0.110324
0.109147
0.113785
0.114092
0.10964
0.110746
0.110548
0.109565
0.114028
0.114348
0.110082
0.110996
0.110825
0.110022
0.114288
0.114621
0.110564
0.111302
0.111157
0.110519
0.114563
0.11491
0.111088
0.111662
0.111544
0.111057
0.114854
0.115214
0.111653
0.112077
0.111984
0.111636
0.115158
0.115531
0.11226
0.112547
0.112478
0.112256
0.115475
0.115861
0.112907
0.113069
0.113023
0.112913
0.115801
0.116198
0.11359
0.113642
0.113616
0.113604
0.116133
0.11654
0.114306
0.11426
0.114251
0.114325
0.116465
0.116878
0.115049
0.114918
0.114921
0.115068
0.11679
0.117206
0.115808
0.115606
0.115616
0.115823
0.117098
0.117512
0.116572
0.116312
0.116322
0.116575
0.117378
0.117782
0.117323
0.117019
0.117018
0.117305
0.117614
0.117998
0.118038
0.117704
0.117678
0.117986
0.117786
0.118141
0.118686
0.118336
0.11827
0.118586
0.117873
0.118185
0.119232
0.118879
0.118756
0.119068
0.117847
0.118103
0.119631
0.119293
0.119093
0.119391
0.117688
0.117838
0.119821
0.119534
0.119229
0.119449
0.117373
0.117381
0.119709
0.119532
0.119106
0.119197
0.116877
0.116729
0.119264
0.119247
0.118687
0.118611
0.11623
0.115897
0.118475
0.118652
0.117959
0.117692
0.115412
0.114942
0.117368
0.117757
0.116948
0.116469
0.114403
0.113879
0.115938
0.116556
0.115619
0.11489
0.113207
0.11265
0.114156
0.115039
0.113998
0.112999
0.111913
0.111427
0.112163
0.113313
0.112229
0.110989
0.110698
0.11028
0.110102
0.111478
0.110393
0.10896
0.109589
0.109247
0.108075
0.109617
0.108565
0.107008
0.108615
0.108353
0.106161
0.107794
0.106804
0.105191
0.107792
0.10761
0.104423
0.106065
0.105155
0.103526
0.107127
0.107017
0.102882
0.104483
0.103651
0.102072
0.106616
0.106572
0.101554
0.103059
0.102299
0.100838
0.106254
0.106266
0.100446
0.101811
0.10113
0.0998285
0.106028
0.106086
0.0995569
0.100745
0.100144
0.099037
0.105919
0.106013
0.0988754
0.0998562
0.0993362
0.098443
0.105906
0.106029
0.0983626
0.0991299
0.0986831
0.0980091
0.105972
0.106112
0.0980014
0.0985455
0.098165
0.0977201
0.106098
0.106245
0.0977727
0.0980831
0.0977615
0.0975558
0.106265
0.106411
0.0976549
0.0977211
0.0974498
0.0974933
0.106456
0.106594
0.0976248
0.0974369
0.0972064
0.0975079
0.106657
0.106781
0.0976575
0.0972077
0.0970086
0.0975751
0.106854
0.106962
0.0977304
0.097013
0.0968354
0.0976733
0.10704
0.107121
0.0978242
0.0968402
0.0966723
0.0977848
0.107206
0.107268
0.0979246
0.0966794
0.0965164
0.0978974
0.107356
0.107399
0.0980229
0.0965242
0.0963597
0.0980037
0.107487
0.107523
0.098113
0.0963703
0.0961943
0.0980898
0.107593
0.107624
0.0981889
0.0962056
0.0960179
0.0981569
0.107674
0.107705
0.098247
0.0960284
0.0958293
0.0982064
0.107741
0.107768
0.0982863
0.095837
0.0956263
0.0982369
0.107792
0.107816
0.0983067
0.0956304
0.0954086
0.0982485
0.10783
0.107851
0.0983075
0.0954081
0.0951753
0.0982402
0.107856
0.107872
0.0982882
0.0951697
0.0949262
0.0982121
0.107869
0.107883
0.0982506
0.0949151
0.0946621
0.0981645
0.107873
0.107882
0.0981965
0.0946452
0.094384
0.0980978
0.107866
0.107871
0.098123
0.0943607
0.0940912
0.0980119
0.107847
0.107847
0.0980307
0.0940606
0.0937785
0.0979088
0.107816
0.107809
0.0979084
0.0937333
0.0934216
0.0977509
0.107766
0.107675
0.0977136
0.0933553
0.093063
0.0976477
0.107631
0.107407
0.0972693
0.0928045
0.0925475
0.0971447
0.106967
0.106276
0.0955946
0.0918068
0.0926741
0.095818
0.104152
0.105097
0.0933475
0.0904758
0.0951139
0.10065
0.106824
0.112368
0.116042
0.120442
0.12327
0.125541
0.127123
0.12819
0.128726
0.128766
0.128264
0.127154
0.125391
0.122405
0.120108
0.114963
0.110142
0.104979
0.100325
0.0991305
0.102287
0.116217
0.131628
0.133908
0.117748
0.103147
0.104124
0.119376
0.135631
0.13655
0.120524
0.104829
0.105401
0.12116
0.137397
0.137695
0.121501
0.105624
0.105944
0.121724
0.138008
0.138069
0.121935
0.106059
0.106147
0.122002
0.138098
0.138097
0.122006
0.106239
0.106281
0.122035
0.13809
0.138063
0.122036
0.106372
0.106394
0.122033
0.138039
0.138011
0.122048
0.106489
0.106506
0.122021
0.137972
0.137945
0.122049
0.106602
0.106621
0.122017
0.137902
0.137875
0.122043
0.106716
0.106731
0.122006
0.137825
0.137793
0.122022
0.106829
0.106845
0.122006
0.137748
0.137713
0.122005
0.106947
0.106962
0.121997
0.137668
0.137626
0.121994
0.107065
0.107082
0.121991
0.137585
0.137544
0.121982
0.107188
0.107205
0.12198
0.1375
0.137455
0.121975
0.107313
0.107332
0.121975
0.137414
0.13737
0.121967
0.107443
0.107461
0.121967
0.137326
0.13728
0.121964
0.107575
0.107596
0.121965
0.137238
0.137194
0.12196
0.107713
0.107733
0.121961
0.137148
0.137102
0.121961
0.107854
0.107876
0.121963
0.13706
0.137019
0.121981
0.107998
0.108019
0.121959
0.136967
0.136927
0.121979
0.108145
0.108168
0.121973
0.13688
0.136842
0.122003
0.108295
0.108316
0.121978
0.136788
0.136751
0.122008
0.108446
0.108469
0.122001
0.136703
0.136668
0.122039
0.108598
0.108617
0.122015
0.136614
0.13658
0.122052
0.108749
0.10877
0.122048
0.136533
0.136501
0.122092
0.108898
0.108914
0.122069
0.136449
0.136418
0.122113
0.109042
0.109056
0.12211
0.136373
0.136345
0.122158
0.109178
0.109184
0.122134
0.136295
0.136268
0.122181
0.109302
0.109303
0.122173
0.136226
0.1362
0.12222
0.109406
0.109396
0.12219
0.136153
0.136128
0.122229
0.109488
0.109467
0.122211
0.136086
0.136061
0.122243
0.109535
0.109496
0.122195
0.136013
0.135988
0.12221
0.109542
0.109487
0.122169
0.135945
0.135914
0.122141
0.109497
0.109415
0.122089
0.13587
0.13583
0.122024
0.109386
0.109276
0.121946
0.135786
0.135735
0.121827
0.109193
0.109044
0.121705
0.135681
0.135615
0.12153
0.1089
0.108711
0.121333
0.135547
0.135465
0.121095
0.10851
0.108246
0.120812
0.13537
0.135257
0.120464
0.107993
0.107637
0.120082
0.135132
0.134981
0.119626
0.107322
0.106873
0.119079
0.134806
0.13461
0.118488
0.106498
0.105951
0.117793
0.134376
0.134119
0.117027
0.105506
0.104866
0.116152
0.133818
0.133486
0.115209
0.104358
0.103632
0.114137
0.133104
0.132691
0.11302
0.10306
0.102267
0.111715
0.132221
0.131726
0.110421
0.101646
0.100808
0.108903
0.131158
0.130577
0.107415
0.100138
0.0992863
0.105698
0.12993
0.129252
0.103986
0.0985668
0.0976985
0.101955
0.128344
0.127063
0.10006
0.0969052
0.0961128
0.0984098
0.125621
0.124308
0.0964259
0.0954598
0.0948991
0.0946097
0.123129
0.12192
0.0935201
0.0948935
0.0946103
0.0926022
0.120818
0.119834
0.0912144
0.0949218
0.0949493
0.0904818
0.118742
0.117504
0.0899003
0.0956479
0.0960102
0.0896538
0.116289
0.115391
0.0900751
0.0973197
0.0978829
0.0901218
0.114556
0.113681
0.0913153
0.0995906
0.100736
0.092785
0.112593
0.112671
0.0962511
0.103707
0.105368
0.0991512
0.113836
0.133076
0.0911463
0.0860015
0.0979195
0.0952114
0.126628
0.125966
0.0919965
0.0970603
0.0978862
0.0909338
0.125585
0.124337
0.0895683
0.0973671
0.0987709
0.0893103
0.122883
0.121007
0.0886216
0.0987508
0.101177
0.0895486
0.119188
0.117538
0.0896785
0.101517
0.105043
0.092343
0.116099
0.114819
0.093545
0.106337
0.111697
0.098585
0.11457
0.115375
0.102013
0.114448
0.0887282
0.0892012
0.128701
0.121847
0.0948283
0.106937
0.10767
0.0940923
0.119529
0.117543
0.0969163
0.113302
0.114882
0.0975789
0.116044
0.115307
0.101138
0.119441
0.121623
0.10295
0.114819
0.116427
0.108761
0.127125
0.129062
0.113041
0.119073
0.128193
0.0940449
0.0974235
0.120985
0.101517
0.121377
0.119825
0.101158
0.122497
0.128749
0.106024
0.119517
0.118987
0.107715
0.130386
0.13876
0.11634
0.120344
0.123919
0.123168
0.142543
0.108392
0.0996951
0.12882
0.123037
0.111902
0.138353
0.142076
0.11474
0.121564
0.123096
0.125671
0.153514
0.158534
0.132128
0.125521
0.132056
0.143275
0.16498
0.126879
0.110825
0.13059
0.128401
0.130008
0.162744
0.166997
0.133944
0.128944
0.134789
0.153043
0.18339
0.19094
0.164262
0.141349
0.135708
0.126067
0.153288
0.197387
0.158925
0.138273
0.141816
0.168051
0.207607
0.231633
0.19704
0.15452
0.162862
0.210218
0.242836
0.211657
0.168077
0.152372
0.171987
0.230649
0.269688
0.290496
0.25188
0.186578
0.174822
0.208097
0.268794
0.34947
0.306163
0.214201
0.24799
0.358396
0.403741
0.444509
0.352721
0.239845
0.421006
0.622363
0.661234
0.940561
0.871135
0.525142
1
1
1
0.812697
0.782056
0.499172
0.273062
0.420592
0.467539
0.34049
0.307232
0.212181
0.210736
0.276033
0.288235
0.238825
0.198736
0.171456
0.177502
0.215967
0.232519
0.192391
0.164637
0.149109
0.149544
0.177738
0.198024
0.187022
0.162004
0.141602
0.131873
0.12362
0.147107
0.166134
0.148631
0.136435
0.129105
0.123248
0.138512
0.155565
0.136415
0.127318
0.122429
0.127521
0.148784
0.116498
0.105167
0.122011
0.120751
0.119973
0.139389
0.133632
0.113938
0.117583
0.120054
0.0976711
0.104786
0.127969
0.109897
0.116559
0.114883
0.105767
0.122382
0.0974605
0.0938624
0.119198
0.113826
0.103035
0.119344
0.113323
0.0995667
0.112973
0.118624
0.0906247
0.0915542
0.111519
0.0975493
0.110872
0.110533
0.0941514
0.105877
0.0864798
0.0869964
0.11716
0.10874
0.0931101
0.105281
0.0999176
0.0900313
0.108938
0.116055
0.0842271
0.0826867
0.0997954
0.0889989
0.106322
0.107318
0.0862382
0.0950972
0.079671
0.0817615
0.114861
0.104493
0.0867823
0.0965589
0.0895392
0.0831848
0.105107
0.108775
0.0802524
0.083994
0.0744758
0.0787508
0.118861
0.104301
0.0787246
0.0847043
0.0814539
0.0769463
0.107463
0.11866
0.0755526
0.0711701
0.080891
0.0747257
0.102847
0.106818
0.0746798
0.0778198
0.0694401
0.0748546
0.117187
0.101017
0.0724122
0.0764053
0.0741524
0.0724057
0.104797
0.116672
0.0725225
0.0666668
0.0739408
0.0702414
0.100834
0.104906
0.0710764
0.071789
0.0654168
0.0715176
0.116619
0.0997556
0.0682223
0.0709104
0.0690439
0.0685853
0.104162
0.115523
0.072037
0.0641111
0.0684994
0.0671629
0.0983934
0.103129
0.0671381
0.06675
0.0624238
0.071533
0.114197
0.0974139
0.0650354
0.0653463
0.0638187
0.0647391
0.10294
0.11541
0.0715977
0.0606124
0.063145
0.0644372
0.0991557
0.108886
0.0670363
0.0590585
0.065306
0.0631469
0.0932105
0.0972934
0.0635005
0.0632515
0.060133
0.0685539
0.108255
0.0936213
0.0631944
0.0637926
0.0623856
0.0633956
0.0986309
0.109546
0.0687049
0.0595437
0.0631098
0.0627126
0.0935264
0.0979699
0.0622735
0.0612138
0.0589602
0.0693045
0.109213
0.0940798
0.0614333
0.0603491
0.0590183
0.0609905
0.0994114
0.111016
0.0699389
0.0578005
0.0586876
0.0604691
0.0940485
0.0991963
0.0596673
0.0567762
0.0567361
0.0709529
0.11089
0.0951021
0.0575119
0.056627
0.0549116
0.0652911
0.105839
0.0917401
0.0577171
0.0566008
0.0546579
0.0574371
0.0967565
0.10733
0.0679745
0.0548092
0.0551578
0.0572031
0.0918705
0.0972665
0.0566602
0.0525785
0.0540514
0.0698383
0.108792
0.0931822
0.0544352
0.0526864
0.0519399
0.0635557
0.104149
0.0892717
0.0548126
0.0530093
0.0509423
0.0547179
0.0938249
0.104588
0.0666108
0.0520963
0.0525093
0.0549369
0.0898886
0.0956394
0.0549123
0.050247
0.0523217
0.0689615
0.107301
0.0922909
0.0523286
0.050226
0.0501331
0.0626084
0.10358
0.088574
0.0529906
0.0509449
0.0486475
0.0530845
0.0933448
0.104284
0.0660979
0.0502506
0.0497821
0.0527263
0.0895219
0.0952222
0.0530476
0.0476238
0.0504668
0.0678238
0.10881
0.0926484
0.0493593
0.0473494
0.0480433
0.0617418
0.103698
0.0877918
0.0503897
0.0480626
0.046111
0.0512665
0.0932422
0.104597
0.0672506
0.0491485
0.0462989
0.048869
0.0895237
0.101066
0.0605839
0.0469407
0.0469026
0.0491873
0.0858361
0.091694
0.0499361
0.0450447
0.0484372
0.0667179
0.103782
0.0895165
0.048608
0.0456285
0.0464345
0.0604458
0.100384
0.0845168
0.0484391
0.0461073
0.0443365
0.0495315
0.0903425
0.102594
0.0663309
0.0477523
0.04487
0.0475536
0.0879161
0.0995351
0.0599221
0.0458183
0.0455259
0.047848
0.0845341
0.0906605
0.0492285
0.0438709
0.047671
0.066377
0.102629
0.0880182
0.0473903
0.0445297
0.0454274
0.0595917
0.0988397
0.0843099
0.0472396
0.044831
0.0430716
0.0483575
0.0901225
0.103509
0.0657203
0.0469861
0.043574
0.0457013
0.0886811
0.100326
0.0616922
0.0458519
0.0432626
0.0446361
0.0853933
0.0956812
0.0583357
0.0445416
0.0442478
0.0464936
0.0822536
0.0876777
0.0478656
0.0425678
0.0462743
0.0647848
0.0992277
0.0853535
0.0458788
0.0430199
0.0442845
0.0587546
0.0967079
0.0826843
0.0459887
0.0435685
0.0420149
0.0476566
0.0888019
0.102132
0.0651327
0.0461916
0.042562
0.0449741
0.0880026
0.0997129
0.0610073
0.0451278
0.0422875
0.0437867
0.0854434
0.0946747
0.0572891
0.0434673
0.042772
0.0451028
0.08053
0.0863383
0.0463729
0.0411865
0.0454114
0.0642975
0.09775
0.0845837
0.0449196
0.0419585
0.0443851
0.0593812
0.0965314
0.0827798
0.0426571
0.0415968
0.0430938
0.0569562
0.092465
0.0799812
0.0447464
0.0424493
0.0411566
0.0467518
0.0860806
0.0975699
0.0641394
0.0453395
0.0418017
0.0445984
0.0842247
0.095751
0.0591744
0.0442031
0.0411948
0.0423718
0.0819083
0.0914117
0.0564393
0.0426516
0.0417945
0.04409
0.0784453
0.0840724
0.0457363
0.0404088
0.0446782
0.0632239
0.0955879
0.0830483
0.0441747
0.0412789
0.0438897
0.0587977
0.0945774
0.0818586
0.0424137
0.0409734
0.0425941
0.0565816
0.0910518
0.0781781
0.0439332
0.0415166
0.0401559
0.0456342
0.0840509
0.0953738
0.0630954
0.0446127
0.0410413
0.0439223
0.0833218
0.095159
0.0584187
0.0436765
0.0404206
0.0414106
0.081563
0.0911101
0.0562918
0.0422525
0.0409099
0.0434154
0.0780276
0.0838646
0.0451158
0.0396191
0.0443103
0.0632276
0.0950455
0.0826657
0.0439578
0.0407267
0.0433969
0.0585129
0.0941785
0.08017
0.0410435
0.0399429
0.0423988
0.0560506
0.0900901
0.0779942
0.0407508
0.0394773
0.0414969
0.0552674
0.0873294
0.0754371
0.0424892
0.0401049
0.0390342
0.0446597
0.0811392
0.0933484
0.0621267
0.0437093
0.0400099
0.0428474
0.0817709
0.0933136
0.0576933
0.0428669
0.0395383
0.0409765
0.0806613
0.0903476
0.0559931
0.0420945
0.0390736
0.0404958
0.0775323
0.0865363
0.0550831
0.0411255
0.039554
0.0421185
0.0746674
0.080303
0.0437332
0.0383721
0.0430872
0.0611326
0.0913035
0.0797517
0.0425249
0.0394462
0.0423127
0.0569662
0.0913968
0.0785909
0.040173
0.0389342
0.0415358
0.0549678
0.0881385
0.0762815
0.0399285
0.0385711
0.0407851
0.0546465
0.0852681
0.0741144
0.0418966
0.0391663
0.0381438
0.0436626
0.0795513
0.0901613
0.0608331
0.0429937
0.0390805
0.0423368
0.0790356
0.0906447
0.0565158
0.042062
0.0385211
0.0396722
0.0780413
0.0878528
0.0548661
0.041262
0.0381628
0.0396966
0.076046
0.0850659
0.054261
0.0404121
0.0384905
0.0412253
0.0734053
0.0789463
0.0433463
0.0375605
0.0427468
0.0603939
0.0909238
0.0795706
0.0414195
0.038634
0.0417882
0.0560533
0.0902257
0.0773129
0.0392446
0.0380886
0.0409447
0.0544002
0.0867691
0.0752943
0.0391639
0.0376804
0.0404149
0.053556
0.0847857
0.0738245
0.0391548
0.0374487
0.0397983
0.0531514
0.0824825
0.0719077
0.0408725
0.037873
0.037061
0.0427932
0.0775019
0.0882301
0.0598012
0.0422865
0.0380125
0.041418
0.0774056
0.0889908
0.0556102
0.0414818
0.0375899
0.0388908
0.0766519
0.0860794
0.0539419
0.0405881
0.0371631
0.0386593
0.0744131
0.083517
0.0530212
0.0399061
0.0369016
0.0386982
0.0728754
0.0813759
0.0525285
0.0391715
0.0372426
0.0401329
0.070526
0.0757746
0.0418166
0.0363695
0.0415605
0.0584623
0.086389
0.0751868
0.0404178
0.0374213
0.0408975
0.0546906
0.0860121
0.0741298
0.0385347
0.0370979
0.0400692
0.052887
0.0835627
0.072656
0.0382127
0.0367491
0.0396195
0.0523845
0.0816352
0.0713302
0.0385061
0.0366455
0.0389483
0.0517293
0.0796208
0.0695176
0.0398143
0.0369102
0.0361704
0.0417134
0.0747424
0.0849125
0.0579773
0.0413589
0.0369881
0.0403787
0.0748344
0.0857445
0.054087
0.040545
0.0365272
0.0379685
0.0743289
0.0835929
0.0523551
0.0397661
0.0361456
0.037524
0.0725153
0.0812601
0.051675
0.0391361
0.0359394
0.0376841
0.0708168
0.078794
0.0513454
0.0384559
0.0362926
0.0392112
0.0683651
0.0736319
0.0410833
0.0355652
0.0408024
0.0572203
0.0837551
0.0734379
0.0397305
0.0364096
0.0400591
0.0533363
0.0839261
0.0724937
0.0374214
0.0359605
0.039155
0.0514183
0.0814677
0.0708304
0.0370568
0.0356398
0.0387137
0.0508036
0.0793814
0.0694754
0.0372713
0.035463
0.0380814
0.0505843
0.0774892
0.0675402
0.0387489
0.0357093
0.0351009
0.0408033
0.0730108
0.0831122
0.0568549
0.0405831
0.0358929
0.0393525
0.0729175
0.0835874
0.0531239
0.0398561
0.0353166
0.0370123
0.0720861
0.0809531
0.0510989
0.0388207
0.0349179
0.0365036
0.0704866
0.0790502
0.0503631
0.0382338
0.0347966
0.0365299
0.0690449
0.0773361
0.0499711
0.0379731
0.0347198
0.0366953
0.0675941
0.0753554
0.0495399
0.0372728
0.0349433
0.0378752
0.065432
0.0706832
0.0397637
0.0343175
0.0396544
0.0553279
0.0806823
0.0705674
0.0383932
0.0351928
0.0388557
0.0514875
0.0801771
0.069282
0.0362751
0.0347031
0.0380289
0.0498107
0.0775785
0.0675283
0.0360742
0.0344772
0.037629
0.0492729
0.0755207
0.0661786
0.0364157
0.0344257
0.037079
0.0486886
0.0737036
0.0644195
0.0374369
0.0345336
0.0339911
0.0394063
0.0697957
0.0794988
0.0547842
0.0394411
0.0348478
0.0381505
0.0696287
0.0793264
0.0511643
0.0387203
0.0342791
0.036109
0.0689522
0.0772272
0.0494375
0.0377737
0.0338827
0.0355938
0.0673169
0.0750972
0.0487012
0.0372322
0.033636
0.0356301
0.06566
0.0732444
0.0481752
0.0364746
0.033713
0.0367336
0.0636215
0.0690399
0.0386927
0.0331787
0.038844
0.0542604
0.0787239
0.068642
0.0375679
0.0341097
0.0379642
0.0503216
0.077821
0.0673553
0.0354511
0.033583
0.0371118
0.0486343
0.0752195
0.0655268
0.0350798
0.0332398
0.036555
0.0478126
0.0733183
0.0641693
0.0351047
0.033083
0.0359504
0.0474058
0.0717787
0.0625362
0.036194
0.03315
0.032649
0.0382315
0.0678263
0.0771098
0.0534332
0.038299
0.0336083
0.0370701
0.067458
0.0766699
0.0497648
0.03762
0.0330791
0.0350904
0.0664819
0.0745461
0.048279
0.036779
0.0327594
0.0348019
0.0649433
0.0728322
0.0475561
0.0363077
0.032545
0.0347209
0.0635589
0.071296
0.0470688
0.0355824
0.0325928
0.0357058
0.0620855
0.067294
0.0376151
0.0320765
0.0377742
0.0527416
0.0761288
0.0666104
0.0366391
0.0330922
0.0370298
0.0490356
0.0750943
0.0649046
0.0346131
0.0325798
0.0361426
0.0472518
0.0727501
0.0630143
0.0341608
0.0322013
0.0354473
0.0467144
0.0708779
0.0621505
0.0355386
0.0321765
0.0318022
0.0376393
0.0677315
0.0765173
0.0530973
0.0380158
0.0328703
0.0367236
0.0668621
0.0756957
0.0491897
0.037105
0.0322465
0.0344223
0.0654624
0.0734927
0.0474689
0.0361178
0.0317958
0.0339979
0.0634398
0.0711997
0.0467912
0.0352496
0.0316332
0.0350751
0.0617578
0.0670816
0.0370626
0.0311619
0.0374169
0.0525425
0.0759848
0.0660844
0.0359277
0.0322234
0.0363122
0.0481799
0.0745845
0.063812
0.0334939
0.0315492
0.0354701
0.0466847
0.0720294
0.0627771
0.0335905
0.0313171
0.0349813
0.0464586
0.0707113
0.0615256
0.0349006
0.031241
0.0309402
0.0371192
0.0671435
0.0754684
0.0525224
0.0375087
0.0319039
0.0360404
0.0655242
0.0745975
0.0485211
0.0364542
0.0313776
0.033655
0.0641452
0.0721178
0.0466383
0.0353735
0.0308755
0.0332354
0.062331
0.0702074
0.0459802
0.0344663
0.0306661
0.034246
0.0609728
0.0662386
0.0360934
0.0302103
0.0365829
0.0512062
0.0742505
0.0642676
0.0350299
0.0312791
0.0357861
0.0477814
0.0733118
0.0632627
0.0333666
0.0309685
0.0350208
0.0461735
0.071361
0.0619451
0.0330072
0.0307169
0.0344728
0.0458662
0.0698796
0.0609028
0.0343629
0.0306039
0.0303155
0.036507
0.0663557
0.074594
0.0517956
0.0370419
0.0314362
0.0355269
0.064471
0.0729976
0.0477368
0.0358961
0.0307755
0.0333338
0.0626685
0.0705953
0.0460232
0.0345808
0.0302531
0.0339211
0.0609827
0.0659206
0.0354022
0.0298101
0.0366322
0.0515232
0.0742492
0.0640053
0.0351223
0.0309595
0.035693
0.0476648
0.0727662
0.0628282
0.0331841
0.0306017
0.0347757
0.0460159
0.070972
0.0614405
0.032681
0.0302898
0.0341089
0.0455384
0.0692894
0.0601754
0.0338638
0.0300688
0.0298356
0.0360138
0.0654313
0.0737288
0.0514883
0.0367045
0.0310227
0.0353386
0.0636269
0.0720407
0.0473344
0.0355647
0.0304219
0.0330208
0.0619492
0.0697363
0.0456469
0.0342578
0.0298662
0.0335122
0.059663
0.0648221
0.035406
0.0295486
0.0365352
0.0511789
0.0738008
0.0641089
0.0350503
0.0308685
0.0356052
0.0475614
0.0726125
0.0625258
0.0332311
0.0304204
0.0344474
0.0460181
0.07034
0.0608724
0.0338388
0.0299913
0.0297897
0.0359716
0.0660629
0.0742245
0.0517871
0.0368368
0.0309093
0.0354573
0.063749
0.0720368
0.0477505
0.0354652
0.0301448
0.0340681
0.0617245
0.0668064
0.0357957
0.0297482
0.0367466
0.0514728
0.0748814
0.0635279
0.034648
0.03065
0.0356803
0.047665
0.0723868
0.0626147
0.033247
0.0301441
0.0345559
0.0463237
0.070749
0.0613059
0.0338679
0.0297164
0.0295627
0.0361308
0.0666463
0.0748991
0.0519019
0.0369336
0.0306589
0.0352752
0.0643907
0.0726769
0.047693
0.035377
0.0297023
0.0337393
0.0621697
0.0672625
0.0354643
0.0293753
0.0367305
0.0517646
0.0754829
0.0643729
0.0347808
0.0303649
0.0350967
0.0473552
0.0724205
0.0613342
0.0335279
0.0293047
0.0291064
0.0356553
0.0669071
0.0762096
0.052424
0.0370418
0.0304878
0.0350823
0.0652105
0.0736434
0.0482276
0.0355568
0.0294347
0.0337783
0.0627378
0.0679551
0.0356356
0.0291812
0.0369202
0.0522477
0.0762007
0.0649321
0.0348497
0.0302055
0.035283
0.0477848
0.0732058
0.0623344
0.0335372
0.0291835
0.0288711
0.0353347
0.0674672
0.0757317
0.0518306
0.0365329
0.0297772
0.0337122
0.0628947
0.0716398
0.0472291
0.0349076
0.0287308
0.0332694
0.0616962
0.0672863
0.0351873
0.0286315
0.0365946
0.0520648
0.0761144
0.0649368
0.0346539
0.0298827
0.0349825
0.047587
0.0731471
0.0623383
0.0332757
0.0288661
0.0286273
0.0351232
0.0673544
0.0754749
0.0518263
0.0364239
0.0296343
0.0343646
0.0640023
0.071915
0.047028
0.0345499
0.0283283
0.0326408
0.060332
0.0643109
0.0334137
0.0278348
0.0352306
0.0505124
0.073008
0.0629165
0.0342544
0.0287563
0.0286236
0.0357546
0.068398
0.0772046
0.0527377
0.0369528
0.029858
0.0347455
0.0655032
0.073463
0.0476848
0.0350375
0.0284903
0.032902
0.0622264
0.0668236
0.0346069
0.02822
0.0356836
0.051272
0.0745585
0.0631161
0.0345541
0.0288009
0.028198
0.0345971
0.0672268
0.0754187
0.0514715
0.0358366
0.0285519
0.0343548
0.0638342
0.0694393
0.0353249
0.0283281
0.0369707
0.0530542
0.0784819
0.0660985
0.0345123
0.0295744
0.0349518
0.0478425
0.073883
0.0621488
0.0326805
0.0281533
0.0278892
0.0342762
0.0665268
0.0739245
0.0509173
0.0353099
0.0283019
0.0340503
0.0620957
0.0657573
0.0337901
0.0276556
0.0350444
0.0502024
0.0736449
0.0623335
0.0335347
0.0279202
0.0277586
0.0346738
0.0677043
0.0764206
0.0519384
0.0358265
0.0284419
0.0344751
0.0642411
0.068738
0.035132
0.0281163
0.0359369
0.0518526
0.0764152
0.0637502
0.0341504
0.0282898
0.0277618
0.034532
0.067766
0.0747443
0.0505334
0.0351687
0.0275019
0.0329867
0.0617414
0.0660934
0.0359761
0.0276397
0.0278365
0.0378762
0.0723663
0.0813277
0.0546853
0.0373091
0.0285174
0.0351715
0.0672891
0.0715269
0.0353236
0.0280024
0.0359219
0.0523698
0.0789647
0.0643396
0.0334262
0.0274824
0.0268518
0.0343063
0.0664963
0.070805
0.035932
0.0266567
0.0361695
0.0538292
0.0802837
0.066895
0.0341047
0.0273976
0.0275917
0.0367016
0.0710722
0.0763104
0.0381822
0.0276762
0.0370902
0.0552143
0.083334
0.0657457
0.0339063
0.0273832
0.0267143
0.0349176
0.0681542
0.0728896
0.0363774
0.0264461
0.035951
0.0539138
0.0827023
0.0678914
0.0338258
0.0267748
0.0262481
0.0333545
0.0713638
0.0766759
0.0394471
0.0269379
0.0259803
0.0353
0.0770354
0.0853435
0.0559162
0.0363763
0.0264582
0.0338923
0.0698485
0.0747743
0.0345028
0.0262105
0.0263181
0.0383925
0.0798712
0.082442
0.036008
0.0254031
0.0259314
0.0405312
0.0855187
0.0895056
0.0400207
0.025214
0.0365549
0.0588369
0.0981278
0.0727428
0.0339324
0.025708
0.0252207
0.0337403
0.0753183
0.0804848
0.0377582
0.0252645
0.0252148
0.038231
0.0862401
0.0916754
0.0396792
0.0254838
0.0260094
0.0424164
0.0962465
0.101175
0.0447837
0.0265884
0.0271734
0.0470389
0.105015
0.106999
0.0494033
0.0277509
0.028266
0.0514236
0.108149
0.108827
0.0536637
0.0288668
0.0294481
0.0558862
0.109197
0.109339
0.0584304
0.0302385
0.0309361
0.0609173
0.109388
0.109385
0.0633643
0.0319381
0.0327853
0.0657625
0.109355
0.109324
0.0681192
0.0339487
0.0349345
0.0704246
0.109285
0.109261
0.0726674
0.0362305
0.0374645
0.0747156
0.109242
0.109245
0.0766943
0.0389815
0.0403776
0.078501
0.10926
0.109295
0.0802701
0.0419987
0.0433929
0.0819575
0.109343
0.109414
0.0835998
0.0450104
0.0464026
0.0851535
0.109495
0.109597
0.0866576
0.0480155
0.049408
0.0880664
0.109705
0.109829
0.089421
0.0510174
0.0524116
0.0906751
0.109953
0.110089
0.091874
0.0540133
0.0554068
0.0929692
0.11022
0.110359
0.0940095
0.057004
0.0583881
0.0949466
0.110487
0.110617
0.0958273
0.0599725
0.0613104
0.0966182
0.110733
0.110847
0.0973624
0.0628159
0.0640754
0.0980212
0.110946
0.111042
0.0986404
0.065488
0.0666573
0.0991799
0.111121
0.111196
0.0996865
0.0679692
0.0690384
0.10012
0.111256
0.111309
0.100516
0.0702408
0.0712023
0.100868
0.111347
0.111384
0.10119
0.0722936
0.073146
0.101445
0.111403
0.111419
0.101704
0.0741226
0.0748683
0.101885
0.111423
0.111422
0.102079
0.0757337
0.0763773
0.102201
0.111413
0.111398
0.102336
0.0771356
0.0776832
0.102409
0.111379
0.111352
0.102494
0.0783407
0.0788015
0.102526
0.111325
0.111288
0.10257
0.0793649
0.0797463
0.102569
0.111254
0.11121
0.102578
0.0802251
0.0805395
0.102554
0.111171
0.11112
0.102534
0.0809391
0.081197
0.102491
0.111078
0.111023
0.102449
0.0815259
0.0817391
0.102392
0.110978
0.110919
0.102331
0.0820025
0.0821776
0.102262
0.110871
0.110812
0.102188
0.0823859
0.0825298
0.102112
0.110765
0.110705
0.102028
0.0826849
0.0828034
0.101944
0.110657
0.110599
0.101857
0.0829235
0.0830135
0.101767
0.110551
0.110494
0.101678
0.0831115
0.0831732
0.101585
0.110446
0.110392
0.101498
0.0832494
0.08328
0.101404
0.110346
0.110293
0.101317
0.0833384
0.0833458
0.101223
0.110249
0.110198
0.101135
0.0833914
0.083383
0.101044
0.110156
0.110106
0.100955
0.083418
0.0833985
0.100866
0.110066
0.110018
0.100778
0.0834263
0.0834015
0.100693
0.109981
0.109934
0.100605
0.0834212
0.0833941
0.100525
0.109898
0.109854
0.100439
0.0834085
0.0833849
0.100365
0.109821
0.109779
0.100281
0.0833939
0.0833718
0.100212
0.109747
0.109708
0.100133
0.0833808
0.0833615
0.10007
0.10968
0.109642
0.099995
0.0833698
0.083353
0.0999381
0.109615
0.109579
0.0998676
0.0833622
0.0833503
0.0998167
0.109555
0.109522
0.0997524
0.0833613
0.0833531
0.0997072
0.109501
0.109469
0.0996482
0.0833659
0.0833629
0.0996086
0.109451
0.109421
0.0995555
0.0833782
0.0833795
0.0995213
0.109405
0.109378
0.0994733
0.0833971
0.0834036
0.0994443
0.109364
0.109339
0.0994014
0.0834237
0.0834345
0.0993773
0.109326
0.109304
0.099339
0.0834568
0.0834722
0.0993192
0.109292
0.109272
0.0992854
0.0834976
0.0835151
0.0992689
0.109261
0.109243
0.0992385
0.0835417
0.0835638
0.0992251
0.109232
0.109217
0.0991985
0.0835915
0.0836166
0.099187
0.109206
0.109194
0.0991641
0.0836448
0.083673
0.0991538
0.109182
0.109172
0.0991349
0.0837017
0.083732
0.0991254
0.109161
0.10915
0.0991098
0.0837608
0.0837932
0.0991011
0.109141
0.109131
0.0990887
0.0838221
0.0838557
0.0990804
0.109123
0.109112
0.0990709
0.0838843
0.0839191
0.0990636
0.109107
0.109096
0.0990563
0.0839475
0.0839827
0.0990492
0.109091
0.109081
0.0990421
0.0840104
0.0840463
0.0990371
0.109077
0.109067
0.0990302
0.0840733
0.0841089
0.0990267
0.109064
0.109054
0.0990198
0.084135
0.0841707
0.0990179
0.109051
0.109042
0.0990111
0.0841961
0.0842311
0.0990103
0.109039
0.10903
0.0990033
0.0842553
0.0842899
0.0990036
0.109028
0.109019
0.0989967
0.0843133
0.0843468
0.0989977
0.109018
0.109009
0.0989905
0.0843691
0.0844017
0.0989922
0.109008
0.108999
0.0989848
0.0844229
0.0844541
0.0989868
0.108998
0.108989
0.0989789
0.0844739
0.0845038
0.0989812
0.108988
0.10898
0.0989729
0.0845224
0.0845505
0.0989751
0.108978
0.10897
0.0989662
0.0845676
0.0845941
0.0989684
0.108968
0.10896
0.098959
0.0846099
0.0846344
0.0989609
0.108958
0.10895
0.098951
0.0846488
0.0846715
0.0989527
0.108948
0.10894
0.0989423
0.0846846
0.0847054
0.0989437
0.108938
0.10893
0.0989327
0.084717
0.0847359
0.0989338
0.108928
0.10892
0.0989224
0.0847464
0.0847634
0.0989232
0.108919
0.10891
0.0989113
0.0847725
0.0847878
0.0989117
0.108909
0.108901
0.0988995
0.0847958
0.0848091
0.0988994
0.108899
0.108891
0.0988869
0.0848159
0.0848277
0.0988865
0.108889
0.108881
0.0988737
0.0848334
0.0848433
0.0988727
0.108879
0.108871
0.0988594
0.0848477
0.084856
0.098858
0.108869
0.108861
0.0988443
0.0848593
0.0848657
0.0988422
0.108858
0.10885
0.0988281
0.0848679
0.0848726
0.0988254
0.108848
0.108839
0.0988106
0.0848736
0.0848765
0.0988071
0.108836
0.108827
0.0987917
0.0848763
0.0848775
0.0987875
0.108824
0.108815
0.0987714
0.0848761
0.0848753
0.0987661
0.108812
0.108801
0.0987492
0.0848727
0.0848702
0.098743
0.108798
0.108788
0.0987254
0.0848663
0.0848618
0.098718
0.108784
0.108773
0.0986996
0.0848566
0.0848504
0.0986913
0.108769
0.108757
0.098672
0.0848438
0.0848357
0.0986625
0.108753
0.108741
0.0986427
0.084828
0.0848188
0.0986331
0.108738
0.108726
0.0986131
0.0848104
0.0847998
0.0986031
0.108723
0.108711
0.0985831
0.0847908
0.0847794
0.0985734
0.108708
0.108698
0.0985537
0.08477
0.0847572
0.0985439
0.108695
0.108684
0.0985247
0.0847477
0.0847351
0.0985158
0.108683
0.108672
0.0984968
0.0847241
0.0847131
0.0984886
0.108673
0.108661
0.0984696
0.0847025
0.0846881
0.0984593
0.108658
0.108646
0.0984412
0.0846779
0.0846584
0.0984352
0.108649
0.108636
0.0984158
0.0846498
0.084631
0.0984022
0.108635
0.108613
0.0983772
0.0846132
0.0845979
0.0983606
0.108605
0.108562
0.0983523
0.084608
0.0846406
0.0983351
0.108582
0.108578
0.0983167
0.0847514
0.0845206
0.098103
0.108659
0.108524
0.0976379
0.0839783
0.0837071
0.0974532
0.108324
0.0718714
0.051498
0.0377505
0.0361138
0.0363355
0.0375157
0.0386404
0.0405943
0.0411936
0.0432136
0.0442196
0.0442611
0.0440678
0.0437305
0.043448
0.043281
0.043207
0.0431932
0.043211
0.0432427
0.0432787
0.0433145
0.0433477
0.0433775
0.0434034
0.0434258
0.0434444
0.0434597
0.0434715
0.0434801
0.0434859
0.0434892
0.0434908
0.0434954
0.0435016
0.0435106
0.0435224
0.0435364
0.0435525
0.0435702
0.0435899
0.0436115
0.0436351
0.0436609
0.0436889
0.0437259
0.0437848
0.0438701
0.0439732
0.0440818
0.0441879
0.0442885
0.044383
0.0444719
0.0445558
0.0446352
0.0447108
0.0447831
0.0448528
0.0449205
0.0449872
0.0450539
0.0451215
0.0451913
0.0452643
0.0453418
0.0454248
0.0455145
0.0456122
0.0457193
0.0458371
0.0459672
0.0461111
0.0462705
0.0464473
0.0466433
0.0468602
0.0471003
0.0473653
0.0476571
0.0479777
0.0483285
0.0487113
0.0491275
0.0495779
0.0500639
0.0505857
0.0511441
0.0517388
0.0523702
0.0530375
0.0537409
0.0544788
0.0552513
0.0560565
0.0568942
0.0577625
0.0586607
0.0595872
0.0605406
0.0615201
0.0625238
0.0635504
0.0645992
0.0656679
0.066756
0.0678622
0.0689846
0.0701226
0.0712751
0.0724402
0.0736178
0.0748058
0.0760042
0.0772108
0.0784258
0.079647
0.0808746
0.0821068
0.0833432
0.0845829
0.0858245
0.087068
0.0883117
0.0895557
0.0907982
0.0920394
0.0932779
0.0945129
0.0957446
0.0969711
0.0981927
0.099408
0.100617
0.101819
0.103012
0.104198
0.105375
0.106542
0.107699
0.108846
0.109981
0.111106
0.112219
0.11332
0.114408
0.115484
0.116546
0.117596
0.118631
0.119653
0.120661
0.121654
0.122633
0.123597
0.124546
0.125479
0.126398
0.127301
0.128188
0.12906
0.129915
0.130754
0.131576
0.132382
0.133171
0.133943
0.134697
0.135435
0.136154
0.136857
0.137541
0.138208
0.138856
0.139487
0.140099
0.140694
0.14127
0.141827
0.142366
0.142887
0.143389
0.143872
0.144338
0.144784
0.145213
0.145624
0.146018
0.146394
0.146754
0.147097
0.147424
0.147735
0.14803
0.148308
0.14857
0.148813
0.149037
0.14924
0.149421
0.149576
0.149703
0.149802
0.149873
0.149922
0.149948
0.149963
0.149972
0.149973
0.149972
0.14997
0.149962
0.149949
0.149937
0.149932
0.149933
0.149936
0.149938
0.149936
0.149932
0.149926
0.149919
0.149914
0.149909
0.149905
0.149903
0.149901
0.149899
0.149897
0.149896
0.149895
0.149893
0.149893
0.149892
0.149892
0.149891
0.149891
0.149891
0.149892
0.149892
0.149892
0.149893
0.149893
0.149894
0.149895
0.149896
0.149898
0.149899
0.149901
0.149903
0.149904
0.149907
0.149909
0.149911
0.149914
0.149917
0.149919
0.149922
0.149925
0.149928
0.149931
0.149934
0.149938
0.149941
0.149944
0.149948
0.149951
0.149954
0.149957
0.149961
0.149964
0.149967
0.14997
0.149973
0.149977
0.14998
0.149984
0.149989
0.149993
0.149999
0.150004
0.150011
0.15002
0.150035
0.150059
0.150095
0.15014
0.150178
0.150181
0.150136
0.150057
0.149972
0.149888
0.149783
0.149537
0.148246
0.146024
0.144218
0.143556
0.141728
0.141244
0.139463
0.139116
0.137419
0.137192
0.135558
0.135428
0.133862
0.133824
0.132325
0.132363
0.130915
0.131016
0.129618
0.129776
0.128424
0.128632
0.127333
0.127578
0.126323
0.126602
0.125389
0.125703
0.124535
0.124884
0.12376
0.124144
0.123062
0.123479
0.122438
0.122886
0.121883
0.122362
0.121394
0.121903
0.120969
0.121507
0.120607
0.121174
0.120306
0.120903
0.120066
0.120693
0.119887
0.120544
0.119768
0.120456
0.119709
0.120428
0.119709
0.12046
0.119769
0.120553
0.119889
0.120706
0.120069
0.12092
0.120308
0.121193
0.120605
0.121524
0.12096
0.121913
0.12137
0.122355
0.121831
0.122847
0.12234
0.123382
0.122887
0.123951
0.123461
0.12454
0.12405
0.125132
0.124633
0.125708
0.125188
0.126237
0.125683
0.126685
0.126081
0.127014
0.126343
0.127181
0.126429
0.127151
0.126297
0.126879
0.125912
0.126337
0.125252
0.12553
0.124344
0.124448
0.123159
0.123077
0.121714
0.121531
0.120142
0.119888
0.118502
0.118211
0.116852
0.116552
0.115239
0.114957
0.113708
0.113464
0.112289
0.112099
0.110985
0.110869
0.109826
0.109791
0.108821
0.108863
0.107965
0.108075
0.107244
0.107412
0.10664
0.106851
0.106126
0.10637
0.105683
0.105946
0.10528
0.105557
0.104895
0.105187
0.104528
0.104829
0.104169
0.104473
0.103807
0.104111
0.10344
0.103741
0.103063
0.10336
0.102675
0.102965
0.102274
0.102555
0.101856
0.102128
0.101422
0.101685
0.100972
0.101224
0.100506
0.100746
0.100023
0.100253
0.0995259
0.0997443
0.0990138
0.0992227
0.0984831
0.0986871
0.0979405
0.0981341
0.097397
0.0975033
0.096871
0.0976391
0.0961218
0.100091
0.105633
0.104783
0.103476
0.113238
0.102585
0.104631
0.113717
0.103187
0.105364
0.114606
0.103809
0.106022
0.11547
0.104471
0.106724
0.116356
0.105147
0.107425
0.117241
0.105814
0.108113
0.118112
0.106466
0.108786
0.118971
0.107103
0.109444
0.11982
0.107724
0.110085
0.120657
0.108329
0.110708
0.12148
0.108915
0.111314
0.122287
0.109483
0.111901
0.123078
0.110034
0.112466
0.12385
0.11057
0.113012
0.124603
0.111096
0.11355
0.125335
0.111598
0.114089
0.126055
0.112092
0.114623
0.126779
0.112576
0.115145
0.127523
0.113053
0.115667
0.128271
0.113534
0.116198
0.129031
0.114031
0.116752
0.129811
0.114559
0.117344
0.130623
0.115134
0.117988
0.131478
0.115768
0.118696
0.132367
0.116483
0.119486
0.13328
0.117303
0.120379
0.134279
0.118234
0.121381
0.135342
0.119291
0.122504
0.136505
0.120476
0.123749
0.137769
0.121784
0.125111
0.139142
0.123203
0.126571
0.140613
0.124708
0.128101
0.142149
0.126263
0.129661
0.143688
0.127829
0.131203
0.145182
0.129395
0.132703
0.146719
0.130808
0.134074
0.148039
0.131958
0.135141
0.149027
0.132827
0.135949
0.149764
0.13349
0.136503
0.150226
0.133898
0.1368
0.150405
0.134063
0.136857
0.15032
0.134017
0.136711
0.150021
0.133797
0.136407
0.14956
0.133448
0.135986
0.14898
0.133008
0.135486
0.148324
0.13251
0.134942
0.147627
0.131985
0.134379
0.146914
0.131455
0.133819
0.146205
0.130938
0.133278
0.145517
0.130447
0.132766
0.144863
0.129993
0.132289
0.144251
0.129583
0.13186
0.143687
0.129221
0.131481
0.143174
0.128911
0.131155
0.142715
0.128656
0.130884
0.142311
0.128455
0.130669
0.141963
0.128311
0.13051
0.14167
0.128222
0.130407
0.14143
0.128189
0.13036
0.141241
0.128213
0.130369
0.141105
0.128292
0.130432
0.141019
0.128425
0.130549
0.140982
0.128614
0.13072
0.140993
0.128856
0.130943
0.14105
0.129151
0.131218
0.14115
0.1295
0.131545
0.141292
0.129903
0.131925
0.141474
0.13036
0.132356
0.141694
0.130872
0.132841
0.141949
0.131441
0.133381
0.14224
0.132069
0.133979
0.142563
0.13276
0.134641
0.142915
0.133525
0.13538
0.14329
0.134358
0.136188
0.143693
0.135247
0.137048
0.144132
0.136192
0.137958
0.144602
0.137196
0.13892
0.145102
0.138257
0.139933
0.145628
0.139377
0.140993
0.146172
0.140553
0.142108
0.146738
0.141802
0.143281
0.147323
0.143107
0.14449
0.147913
0.144462
0.14573
0.148496
0.145894
0.146994
0.149058
0.147342
0.149599
0.149363
0.149107
0.148849
0.1486
0.148367
0.14815
0.147951
0.147774
0.147619
0.147488
0.147382
0.147303
0.14725
0.147226
0.147233
0.147271
0.147342
0.147449
0.147594
0.147779
0.148008
0.148282
0.148606
0.14898
0.149409
0.149894
0.150438
0.151042
0.15171
0.15244
0.153231
0.154085
0.155
0.155976
0.157008
0.158088
0.159207
0.16035
0.161498
0.162622
0.163674
0.164598
0.165332
0.165806
0.165946
0.165695
0.165085
0.164115
0.162701
0.16103
0.159337
0.157609
0.15597
0.154451
0.153056
0.151746
0.150505
0.149299
0.148105
0.146963
0.145896
0.144827
0.143775
0.142744
0.141727
0.140719
0.139714
0.138712
0.137711
0.136709
0.135704
0.134696
0.133685
0.132669
0.131651
0.130631
0.129607
0.128591
0.127558
0.126564
0.125497
0.124636
0.123479
0.12326
0.121121
0.115658
0.11226
0.112299
0.115857
0.120759
0.123519
0.123698
0.126233
0.12586
0.12742
0.127734
0.12787
0.128639
0.129832
0.130873
0.132028
0.133147
0.134298
0.135446
0.136606
0.13777
0.138939
0.140112
0.141288
0.142465
0.143643
0.147717
0.146381
0.145051
0.143728
0.142414
0.141109
0.139815
0.138531
0.137265
0.136004
0.134776
0.133524
0.132363
0.131068
0.130098
0.128899
0.12851
0.129048
0.129434
0.129508
0.129103
0.128609
0.129011
0.130257
0.131276
0.132678
0.130254
0.128743
0.127952
0.127777
0.127457
0.125652
0.126015
0.121972
0.122052
0.118714
0.118897
0.120407
0.121272
0.122817
0.124137
0.131522
0.133917
0.135272
0.136599
0.137972
0.135895
0.134405
0.132996
0.125698
0.127165
0.128753
0.117708
0.115134
0.116266
0.113731
0.114873
0.112373
0.113496
0.111038
0.112175
0.109764
0.110795
0.108509
0.109065
0.110115
0.110575
0.111904
0.109086
0.10901
0.1038
0.10419
0.0999356
0.0998061
0.0996264
0.102746
0.102039
0.099757
0.100082
0.10338
0.102509
0.100095
0.100569
0.103849
0.103223
0.100578
0.101177
0.101068
0.100871
0.10068
0.100427
0.100058
0.0998793
0.0994667
0.101386
0.101087
0.104742
0.103609
0.101029
0.10154
0.104993
0.104349
0.101523
0.102038
0.105911
0.104732
0.101966
0.102489
0.106142
0.105492
0.102473
0.102358
0.102286
0.102059
0.101989
0.101763
0.101691
0.101468
0.102582
0.103005
0.107093
0.105884
0.102925
0.103464
0.107327
0.106663
0.103445
0.103994
0.108305
0.107062
0.103906
0.104465
0.108536
0.107861
0.104442
0.103578
0.103502
0.103258
0.103191
0.102958
0.102884
0.102649
0.10382
0.105011
0.109546
0.108273
0.104916
0.105494
0.10978
0.109094
0.105468
0.106057
0.110822
0.109516
0.105955
0.106553
0.111056
0.116569
0.11036
0.106524
0.104882
0.104803
0.104539
0.104471
0.104219
0.104142
0.103887
0.105144
0.107133
0.112133
0.119182
0.130328
0.137387
0.139353
0.14076
0.142183
0.143626
0.142069
0.140479
0.138923
0.131974
0.133644
0.135368
0.137131
0.143684
0.145084
0.146558
0.148044
0.149541
0.148683
0.146995
0.145328
0.138946
0.140801
0.142691
0.130854
0.127924
0.129019
0.12614
0.127246
0.124416
0.125532
0.122749
0.123873
0.121135
0.122264
0.119569
0.120703
0.118049
0.112369
0.110796
0.107024
0.107641
0.107609
0.111663
0.113481
0.112111
0.10812
0.108237
0.105836
0.105566
0.105486
0.105212
0.105904
0.106186
0.108758
0.113718
0.113001
0.108722
0.106266
0.106543
0.10937
0.114866
0.113462
0.109243
0.109901
0.115104
0.114376
0.10986
0.110527
0.116289
0.114849
0.110391
0.111068
0.116528
0.115788
0.11102
0.107686
0.107611
0.107319
0.107257
0.106976
0.106897
0.106608
0.107969
0.111706
0.117753
0.116275
0.111558
0.112254
0.117991
0.117239
0.1122
0.112904
0.119256
0.117742
0.112743
0.113457
0.119498
0.118732
0.113393
0.109047
0.10899
0.108706
0.108662
0.108383
0.108315
0.108024
0.109315
0.114116
0.1208
0.11925
0.113938
0.114671
0.121047
0.120266
0.114594
0.115337
0.12239
0.120803
0.115141
0.115894
0.122647
0.129776
0.12185
0.115804
0.11017
0.110155
0.109907
0.109901
0.109652
0.109613
0.109343
0.110392
0.116569
0.124036
0.132761
0.144619
0.150388
0.151046
0.149056
0.144822
0.146001
0.147181
0.148362
0.149547
0.150741
0.151953
0.153196
0.15448
0.15581
0.157139
0.1585
0.159959
0.161371
0.162783
0.164197
0.171394
0.169876
0.168254
0.166548
0.164918
0.163263
0.161631
0.16007
0.158586
0.157166
0.155789
0.154433
0.153086
0.151742
0.150398
0.152556
0.15407
0.155587
0.155548
0.153824
0.152103
0.146583
0.148565
0.150548
0.152512
0.15726
0.157107
0.158635
0.160191
0.161812
0.162515
0.1607
0.15897
0.154455
0.156399
0.158502
0.148315
0.145111
0.145996
0.142817
0.143673
0.14048
0.141345
0.138157
0.139052
0.135892
0.136849
0.133743
0.134755
0.13171
0.124308
0.122415
0.116352
0.117129
0.117024
0.123495
0.125751
0.124098
0.117577
0.117817
0.110759
0.110571
0.110586
0.110369
0.1107
0.110881
0.118383
0.126045
0.125214
0.11826
0.110831
0.110982
0.11909
0.127548
0.125865
0.118824
0.119668
0.127869
0.127017
0.119525
0.120401
0.129436
0.12772
0.120106
0.121
0.129782
0.128905
0.120836
0.110926
0.111049
0.11092
0.111063
0.110939
0.111028
0.110882
0.111046
0.12177
0.131407
0.129659
0.121446
0.122403
0.131773
0.13087
0.122213
0.12322
0.133447
0.131676
0.122859
0.123888
0.133822
0.132895
0.123665
0.110837
0.110998
0.110808
0.111011
0.110861
0.111008
0.110867
0.111056
0.124752
0.135535
0.133749
0.124335
0.125435
0.135895
0.134914
0.125137
0.126324
0.137631
0.13585
0.125852
0.127243
0.138138
0.147671
0.137363
0.127163
0.111609
0.111599
0.11092
0.111189
0.110866
0.11109
0.110828
0.112739
0.128787
0.140314
0.151147
0.160993
0.164528
0.163546
0.165417
0.167407
0.169475
0.172133
0.169352
0.166807
0.163996
0.167506
0.171498
0.175588
0.175056
0.171578
0.173625
0.175647
0.177606
0.183638
0.180984
0.178075
0.180108
0.184747
0.189449
0.188856
0.185488
0.182316
0.178377
0.175932
0.171828
0.170288
0.16661
0.164859
0.160371
0.159313
0.155206
0.154831
0.150992
0.141498
0.138894
0.12869
0.130658
0.130977
0.14109
0.144269
0.143308
0.133375
0.133048
0.116671
0.114973
0.114459
0.112981
0.117491
0.119486
0.135694
0.146069
0.146054
0.136362
0.120439
0.122648
0.138747
0.149313
0.148848
0.139501
0.142506
0.151846
0.152375
0.144077
0.148086
0.155792
0.155393
0.15651
0.149435
0.136902
0.136518
0.129094
0.126973
0.123886
0.113486
0.11933
0.119046
0.121299
0.139051
0.138372
0.121224
0.124812
0.144309
0.159462
0.162903
0.16742
0.17145
0.158645
0.152115
0.152967
0.146896
0.14828
0.142348
0.124761
0.128966
0.129178
0.133907
0.134755
0.140944
0.143649
0.158902
0.166718
0.177409
0.181659
0.186379
0.190942
0.192646
0.195899
0.193836
0.186319
0.179383
0.172917
0.165739
0.167489
0.169354
0.171328
0.173245
0.174831
0.175848
0.176343
0.176343
0.175822
0.174893
0.173679
0.172279
0.170769
0.169204
0.167643
0.172352
0.174246
0.176178
0.178115
0.180003
0.181744
0.18319
0.184147
0.184414
0.184003
0.182881
0.180996
0.178704
0.176549
0.174622
0.181052
0.182951
0.185263
0.193243
0.190743
0.188616
0.197547
0.201422
0.205056
0.208674
0.196099
0.187778
0.189868
0.190981
0.191176
0.198932
0.199212
0.198301
0.211408
0.211857
0.210088
0.225555
0.230331
0.231528
0.227628
0.22177
0.213936
0.205763
0.200169
0.20002
0.195544
0.190143
0.186188
0.183861
0.179611
0.178019
0.173506
0.17236
0.167029
0.155835
0.154781
0.135684
0.125628
0.136426
0.142966
0.161556
0.163414
0.144908
0.14996
0.168136
0.170442
0.175221
0.17856
0.162633
0.158553
0.152737
0.143002
0.153782
0.173732
0.184121
0.186876
0.192232
0.194706
0.180441
0.176214
0.155944
0.161921
0.164007
0.182197
0.190209
0.200735
0.208957
0.20156
0.192713
0.177963
0.173364
0.192264
0.196288
0.205168
0.211296
0.215542
0.223512
0.220799
0.215658
0.209497
0.204437
0.187972
0.177462
0.172982
0.159233
0.193763
0.203154
0.216561
0.223063
0.225942
0.23255
0.229243
0.237136
0.24389
0.239027
0.229723
0.221633
0.216254
0.198351
0.183027
0.204306
0.217141
0.229086
0.244976
0.248256
0.255435
0.253137
0.242317
0.249526
0.262241
0.266697
0.252132
0.258215
0.261945
0.272324
0.30132
0.292274
0.27983
0.270429
0.264012
0.265621
0.254631
0.243868
0.2321
0.211823
0.261557
0.275722
0.274925
0.284725
0.294359
0.298285
0.268396
0.320187
0.309276
0.32565
0.344505
0.363427
0.334287
0.338907
0.36982
0.425443
0.401028
0.366112
0.322868
0.453693
0.518226
0.718824
0.71689
0.497391
0.412123
0.363125
0.337021
0.301666
0.288643
0.325512
0.332338
0.3536
0.391673
0.438327
0.390527
0.369561
0.340941
0.316694
0.353037
0.362174
0.416228
0.512833
0.580825
1
0.713843
0.504702
0.402528
0.475254
0.358285
0.328874
0.282811
0.297679
0.264695
0.244861
0.234098
0.218419
0.217555
0.208358
0.182193
0.19709
0.178693
0.189387
0.182185
0.159537
0.175952
0.169477
0.14656
0.165248
0.159791
0.136288
0.156581
0.151022
0.127257
0.149335
0.143932
0.12021
0.143212
0.1374
0.113611
0.13793
0.132148
0.108204
0.136666
0.123791
0.115728
0.0952081
0.119314
0.113858
0.090829
0.117365
0.110103
0.0865594
0.113242
0.106986
0.0833437
0.111274
0.103615
0.0797033
0.107563
0.101029
0.0778066
0.1061
0.0975189
0.0740021
0.101606
0.0945944
0.0689253
0.101996
0.0766259
0.106806
0.0977372
0.0728442
0.102847
0.094091
0.0720921
0.0983568
0.0904145
0.0673052
0.0955837
0.0871624
0.0651891
0.092049
0.0799145
0.0606867
0.0877081
0.0642821
0.0914529
0.0789874
0.0598537
0.0871255
0.0719442
0.0561035
0.0830161
0.0594536
0.0898728
0.0758241
0.0571145
0.0836968
0.0675528
0.0536215
0.0771703
0.0565187
0.0824357
0.0668995
0.0527504
0.0758038
0.0612146
0.0505877
0.0703688
0.0523653
0.0790944
0.0613585
0.0498013
0.0681569
0.0510532
0.0756914
0.0592941
0.0487109
0.0667478
0.0500275
0.074739
0.0579971
0.0480186
0.0641663
0.0490932
0.0705454
0.0556446
0.0471796
0.0624349
0.0480919
0.0684595
0.0536333
0.0463682
0.0585872
0.0470312
0.0624742
0.0475888
0.0672621
0.0528645
0.0455024
0.058406
0.0463873
0.06208
0.0498972
0.0448529
0.0545513
0.0454273
0.058252
0.0455772
0.0618134
0.0492143
0.0439927
0.0540856
0.0447503
0.0569352
0.0451054
0.0596297
0.0480543
0.0437519
0.0518096
0.0440306
0.0550062
0.0441514
0.0584316
0.0470191
0.0430723
0.0509928
0.0436446
0.0533834
0.0437155
0.0556232
0.0453707
0.0426152
0.0482777
0.0428127
0.0507798
0.0426708
0.0540088
0.0443202
0.0421362
0.047058
0.0422273
0.0486882
0.0419922
0.0502278
0.0420183
0.0523986
0.0430839
0.0415317
0.0455009
0.0416148
0.0468263
0.0413811
0.0478974
0.0411115
0.0504884
0.0419677
0.0405827
0.044195
0.0408693
0.0455077
0.040691
0.0466595
0.0406194
0.0484391
0.0409611
0.0396894
0.0423842
0.0402493
0.0436147
0.0400883
0.0443202
0.039753
0.0461122
0.0397794
0.0386427
0.0409941
0.0393154
0.0420459
0.03941
0.0427423
0.0392645
0.0432962
0.0391395
0.0442999
0.038747
0.0377377
0.0397584
0.0381624
0.0403571
0.0385478
0.0413412
0.0385662
0.042038
0.0383352
0.0436101
0.0380989
0.0371853
0.0390434
0.037495
0.0396627
0.0379681
0.0403526
0.0381575
0.0409476
0.0379692
0.0417981
0.0372697
0.0365017
0.0379143
0.036483
0.0381005
0.0365384
0.0385803
0.0369763
0.0391696
0.0371189
0.0407337
0.0365112
0.0359102
0.0370301
0.0358228
0.0373473
0.0358576
0.0375859
0.0360579
0.0380034
0.0362996
0.0388871
0.0355119
0.0350625
0.0358368
0.0349556
0.0359768
0.0347671
0.0363053
0.0348708
0.0364469
0.0350155
0.0370205
0.0354343
0.0382535
0.0348269
0.0344808
0.0353424
0.0344433
0.0355721
0.034368
0.0358028
0.0344465
0.0361216
0.0346852
0.0370873
0.0341945
0.0339836
0.0344337
0.0337596
0.034553
0.0336286
0.0345401
0.0334844
0.0349023
0.0335912
0.0357089
0.0331757
0.0331403
0.0335936
0.0330106
0.0336841
0.0328938
0.0338609
0.0329116
0.0341667
0.0329689
0.0348948
0.0325521
0.0325589
0.0327568
0.03233
0.0328667
0.0322439
0.0328958
0.0321557
0.0332855
0.0322423
0.0339877
0.0318808
0.0319596
0.0322248
0.0318179
0.0322892
0.0316979
0.0324476
0.0316308
0.0328537
0.0312172
0.0314352
0.0313583
0.0312142
0.031332
0.0309924
0.0316202
0.0309345
0.0320483
0.030515
0.0307755
0.030731
0.0305757
0.0307538
0.0304814
0.0309317
0.0304435
0.0313023
0.0299132
0.0302771
0.0300276
0.0301033
0.0300449
0.0298981
0.0303364
0.0298278
0.0307685
0.0293819
0.029675
0.0296053
0.0297046
0.029805
0.0297185
0.0300291
0.0296885
0.0304322
0.0291788
0.0295884
0.0293268
0.0294153
0.029388
0.0291348
0.0298695
0.0286757
0.0291478
0.0289113
0.0291079
0.0290651
0.0291213
0.0293041
0.0290717
0.0297858
0.0286686
0.0291425
0.0288365
0.0289541
0.0289349
0.0287519
0.0292512
0.0282453
0.0287778
0.0285894
0.0287985
0.0287788
0.0287486
0.0292242
0.0282954
0.0288602
0.0284502
0.0285095
0.0286925
0.0278334
0.0284687
0.0278494
0.0281799
0.0280427
0.0282016
0.0283719
0.0276087
0.0283284
0.0276769
0.0278275
0.0278841
0.0271806
0.0278609
0.0273212
0.0274877
0.0274401
0.0268277
0.0277945
0.0269693
0.0272912
0.0272578
0.0266179
0.0276002
0.0267928
0.0270896
0.0269154
0.0262281
0.0271501
0.0262149
0.0265167
0.0265665
0.0260071
0.0270963
0.0263437
0.026693
0.0265731
0.0259413
0.0269342
0.02602
0.0261869
0.0262206
0.0255064
0.0261446
0.0260214
0.0254857
0.0268351
0.0257224
0.0260735
0.0260084
0.025363
0.0261039
0.0256602
0.0249012
0.0257619
0.0253038
0.0246896
0.0262551
0.0251546
0.0255527
0.0254447
0.0248201
0.0255366
0.0251851
0.0243944
0.025153
0.0248776
0.0243166
0.02535
0.0248393
0.0242099
0.0252325
0.0246129
0.0238938
0.0248235
0.0241594
0.0237256
0.0234658
0.0248124
0.0238761
0.0232267
0.0243995
0.023669
0.0230458
0.0226075
0.0238916
0.0230389
0.0228358
0.0225284
0.02386
0.0226103
0.0220494
0.0216426
0.0228142
0.0222283
0.0218596
0.0217836
0.0211734
0.0223804
0.0215232
0.0212755
0.0211495
0.0208611
0.0205313
0.0204033
0.0210344
0.0213519
0.0211504
0.0211355
0.0211935
0.0213141
0.0214825
0.0216703
0.0218247
0.0219561
0.022016
0.0220694
0.0220782
0.0221139
0.022115
0.0221602
0.0221745
0.0222404
0.02228
0.0223727
0.0224474
0.0225763
0.0227141
0.0228799
0.0230509
0.0232944
0.0234961
0.0238129
0.0240455
0.0244337
0.0246972
0.0251566
0.0254521
0.0259852
0.0263147
0.0269254
0.0272886
0.0279734
0.0283678
0.0291246
0.029538
0.0303369
0.0307644
0.0315971
0.0320358
0.0328962
0.0333432
0.0342244
0.0346766
0.0355727
0.0360273
0.0369387
0.037379
0.0382952
0.0387473
0.0396618
0.0400964
0.0410137
0.0414421
0.0423493
0.0427713
0.0436621
0.0440898
0.0449669
0.0453736
0.0462387
0.0466479
0.0474912
0.0478896
0.0487176
0.0491047
0.0499147
0.0502892
0.0510805
0.0514413
0.0522104
0.0525566
0.0533039
0.0536357
0.0543591
0.0546758
0.0553768
0.0556792
0.0563601
0.0566384
0.0572968
0.0575695
0.0581988
0.0584567
0.0590634
0.0593077
0.0598917
0.0601218
0.0606832
0.0609001
0.0614404
0.0616441
0.0621621
0.0623531
0.0628511
0.0630298
0.0635072
0.0636743
0.0641334
0.0642895
0.0647299
0.0648755
0.0652988
0.0654339
0.0658397
0.0659651
0.0663551
0.0664709
0.0668446
0.0669518
0.067311
0.0674095
0.0677538
0.0678444
0.0681739
0.0682567
0.0685712
0.068647
0.0689482
0.0690171
0.0693046
0.0693673
0.069643
0.0696994
0.0699627
0.0700136
0.0702662
0.0703116
0.0705529
0.0705933
0.070825
0.0708603
0.0710817
0.0711127
0.0713252
0.0713513
0.0715543
0.071576
0.0717705
0.0717874
0.0719729
0.0719859
0.0721636
0.0721723
0.0723418
0.0723469
0.0725093
0.0725106
0.0726654
0.0726637
0.0728121
0.0728068
0.0729484
0.0729404
0.073076
0.0730649
0.0731942
0.0731807
0.073304
0.0732881
0.0734051
0.0733875
0.0734992
0.0734794
0.0735854
0.073564
0.073665
0.0736415
0.0737371
0.0737121
0.0738032
0.0737761
0.0738621
0.0738336
0.0739153
0.0738848
0.0739618
0.07393
0.074003
0.0739692
0.0740378
0.0740032
0.0740685
0.0740324
0.0740939
0.0740571
0.0741155
0.0740761
0.0741327
0.074089
0.074145
0.0741064
0.0741555
0.0741161
0.0741633
0.0741209
0.0741643
0.0741147
0.074152
0.0741048
0.0741577
0.07419
0.0743019
0.073989
0.0732151
0.0524737
0.0377151
0.0379187
0.0536853
0.0546947
0.0386223
0.03636
0.0361842
0.0360198
0.0374463
0.040535
0.0407918
0.0404178
0.0372405
0.0362135
0.038028
0.0541518
0.0544052
0.0385737
0.0377521
0.0538404
0.0542922
0.0385161
0.0360984
0.0362382
0.0367075
0.0360508
0.0377191
0.0538251
0.0542524
0.0384601
0.0376447
0.0537596
0.054164
0.0383754
0.0359673
0.0363116
0.0391127
0.0392512
0.0367205
0.0358845
0.0375294
0.0536496
0.054049
0.0382643
0.0374241
0.0535295
0.0539244
0.0381558
0.0357798
0.0362904
0.0367322
0.035692
0.037306
0.0533882
0.0537863
0.0380311
0.0371915
0.0532512
0.0536405
0.0379128
0.0355823
0.036327
0.0391086
0.0438412
0.0437796
0.0437883
0.0439798
0.0443875
0.0444395
0.0445644
0.044666
0.044797
0.0439843
0.0392291
0.0367716
0.035494
0.0370689
0.0531034
0.0534889
0.0377846
0.0369489
0.0529473
0.0533301
0.037663
0.0353812
0.0363481
0.036821
0.0352945
0.0368291
0.0527847
0.0531678
0.0375334
0.0367068
0.0526155
0.0529937
0.0374084
0.0351785
0.0363766
0.0393758
0.039529
0.0368756
0.0350933
0.0365835
0.0524396
0.0528167
0.0372745
0.0364574
0.0522546
0.0526261
0.0371454
0.0349741
0.0364095
0.0369344
0.0348904
0.0363315
0.0520619
0.0524318
0.037008
0.036204
0.0518601
0.0522242
0.0368776
0.0347686
0.036447
0.0396834
0.0443931
0.0442579
0.0441054
0.0449045
0.0450294
0.0451422
0.0447864
0.0447053
0.0446182
0.0445418
0.0444488
0.0443748
0.044269
0.0442092
0.0438142
0.0438556
0.0439156
0.0439607
0.0435515
0.0435325
0.043508
0.0434874
0.0432973
0.0433045
0.0433097
0.0433128
0.0433149
0.043571
0.0440116
0.0440559
0.044104
0.0441504
0.0436227
0.0436058
0.0435881
0.0433156
0.0433156
0.0433146
0.0431833
0.0431922
0.0431997
0.043206
0.0432109
0.0432143
0.0432158
0.0432155
0.043199
0.0431978
0.0431947
0.0431901
0.0432096
0.0432131
0.0432155
0.0432162
0.043248
0.0432485
0.0432477
0.0432461
0.0432434
0.0432046
0.0431838
0.0431761
0.043167
0.0431563
0.0431811
0.0431904
0.0431982
0.0432394
0.0432342
0.0432276
0.0432193
0.04317
0.0431439
0.0431728
0.0433126
0.0436398
0.044199
0.0448744
0.0452674
0.0445466
0.0398415
0.0369971
0.0346871
0.0360771
0.0516512
0.0520135
0.0367377
0.035947
0.051433
0.0517889
0.036604
0.034563
0.0364886
0.0370641
0.034484
0.0358171
0.0512067
0.0515603
0.0364594
0.0356848
0.0509705
0.0513176
0.0363243
0.0343566
0.0365352
0.040002
0.0401685
0.0371365
0.0342821
0.0355549
0.0507269
0.0510715
0.0361779
0.0354222
0.050474
0.0508117
0.0360431
0.0341497
0.036587
0.0372148
0.0340825
0.0352916
0.0502134
0.050548
0.0358931
0.0351569
0.0499427
0.0502701
0.0357572
0.0339448
0.036645
0.0403404
0.0449893
0.0448419
0.0446883
0.0453852
0.0455103
0.0456312
0.0457574
0.0451455
0.0405184
0.0373
0.0338856
0.0350257
0.0496641
0.0499879
0.035604
0.0348904
0.0493753
0.0496915
0.0354688
0.0337416
0.0367109
0.0373932
0.0336909
0.0347598
0.0490789
0.0493911
0.0353132
0.034624
0.048772
0.0490762
0.0351789
0.0335408
0.0367851
0.0407022
0.0408918
0.0374946
0.0334989
0.034494
0.0484574
0.048757
0.0350211
0.0343579
0.048132
0.0484231
0.0348878
0.0333423
0.036868
0.0376048
0.0333096
0.0342284
0.0477987
0.0480847
0.0347273
0.0340918
0.0474543
0.0477315
0.0345954
0.033146
0.0369601
0.0410868
0.045615
0.0454576
0.0452986
0.0458818
0.0460097
0.0461367
0.0462656
0.0457763
0.0412876
0.0377244
0.0331227
0.033964
0.0471024
0.047374
0.0344339
0.033829
0.0467396
0.047002
0.0343048
0.0329555
0.0370625
0.0378538
0.032946
0.0337035
0.0463694
0.0466256
0.0341414
0.0335688
0.0459877
0.0462339
0.0340149
0.0327705
0.0371755
0.0414938
0.0417057
0.0379935
0.0327752
0.0334448
0.0455984
0.0458377
0.0338486
0.0333098
0.0451974
0.0454263
0.0337241
0.03259
0.0372994
0.0381443
0.0326093
0.0331867
0.0447892
0.0450108
0.033554
0.0330512
0.0443697
0.0445806
0.0334316
0.0324154
0.0374356
0.0419234
0.0462637
0.0461004
0.0459371
0.0463941
0.0465239
0.0466534
0.0467835
0.0464287
0.0421467
0.0383071
0.0324514
0.0329302
0.0439436
0.0441467
0.0332589
0.0327957
0.0435064
0.0436985
0.0331396
0.032251
0.0375849
0.0384822
0.0323052
0.0326758
0.0430633
0.0432472
0.0329616
0.032537
0.0426098
0.0427825
0.0328382
0.0320978
0.0377481
0.0423754
0.0426092
0.0386702
0.0321716
0.0324104
0.0421515
0.042316
0.0326453
0.0322596
0.0416837
0.0418372
0.032507
0.0319638
0.0379255
0.0388714
0.0320646
0.0321286
0.0412107
0.0413558
0.0323115
0.0319824
0.0407272
0.0408609
0.0321576
0.0318446
0.0381177
0.0428476
0.0469246
0.0467593
0.0465937
0.0469133
0.047043
0.0471721
0.0462678
0.0461706
0.0460736
0.0459768
0.0458806
0.0457848
0.0456896
0.0455953
0.0455014
0.0454089
0.0453167
0.0452264
0.0451362
0.0450487
0.0449597
0.0442473
0.0442969
0.0443464
0.0436886
0.0436727
0.0436563
0.0433094
0.0433049
0.0432991
0.043292
0.0437041
0.0443966
0.0444471
0.0444986
0.0445507
0.0437479
0.0437335
0.043719
0.0432835
0.0432734
0.0432618
0.0430467
0.043071
0.0430932
0.0431131
0.043131
0.0431468
0.0431607
0.0431297
0.0431134
0.0430949
0.0431247
0.043142
0.0431571
0.0432093
0.0431972
0.0431828
0.043166
0.0431049
0.0430741
0.0430507
0.0430248
0.0429963
0.0430289
0.0430572
0.0430824
0.0431464
0.0431239
0.0430983
0.0430693
0.0429976
0.0429648
0.04302
0.0432489
0.0437621
0.0446035
0.0446566
0.0447106
0.0447649
0.0438033
0.0437898
0.043776
0.0432346
0.043219
0.043202
0.0431837
0.0438168
0.0448199
0.0448751
0.0449307
0.0449864
0.0438564
0.0438433
0.0438301
0.0431642
0.0431436
0.0431218
0.0427671
0.0428104
0.0428513
0.0428898
0.0429259
0.0429596
0.042991
0.0429305
0.0428932
0.0428529
0.0428836
0.042925
0.042963
0.0430368
0.0430007
0.0429607
0.0429168
0.0428386
0.0428095
0.0427629
0.042713
0.0426597
0.0426807
0.0427374
0.0427899
0.0428689
0.0428167
0.0427599
0.0428626
0.0429179
0.0429684
0.0430143
0.0430557
0.0430929
0.0431261
0.0431552
0.0431807
0.0432027
0.0432214
0.0432371
0.0432501
0.0432607
0.0432691
0.0432756
0.0432805
0.0432839
0.0432862
0.0432874
0.0432876
0.043287
0.0432861
0.0432842
0.04332
0.043323
0.0433256
0.0433283
0.0433658
0.0433612
0.0433571
0.0433532
0.0433828
0.0433874
0.0433927
0.0433989
0.0434053
0.0433702
0.0433306
0.0433321
0.0433328
0.0433326
0.0433808
0.0433778
0.0433743
0.0434117
0.0434179
0.0434237
0.0434612
0.0434527
0.0434442
0.0434358
0.0434276
0.04342
0.0434138
0.0434087
0.0434308
0.0434362
0.0434433
0.043452
0.0434724
0.0434627
0.043455
0.0434493
0.0434644
0.0434704
0.0434786
0.043489
0.0435009
0.0434832
0.0434616
0.0434718
0.0434824
0.0434933
0.0435204
0.0435074
0.043495
0.0435139
0.0435279
0.0435428
0.0435607
0.0435442
0.0435288
0.0435147
0.043502
0.0434909
0.0434823
0.0434762
0.0434848
0.043491
0.0434999
0.0435114
0.0435176
0.0435057
0.0434967
0.0434905
0.0434938
0.0435
0.0435091
0.043521
0.043535
0.0435314
0.0435248
0.0435398
0.0435561
0.043574
0.0435828
0.043564
0.0435469
0.0435508
0.0435684
0.0435878
0.043609
0.0436033
0.0435934
0.0435786
0.0435587
0.043534
0.0435044
0.0434694
0.043429
0.0433828
0.0433312
0.0433284
0.0433239
0.0433175
0.0433809
0.0433832
0.0433837
0.0434334
0.0434368
0.0434387
0.0434388
0.0433765
0.0433087
0.0432973
0.0432829
0.0432652
0.0433468
0.0433599
0.0433696
0.0434366
0.0434317
0.0434236
0.0434948
0.0434977
0.0434977
0.0434951
0.0434905
0.0434845
0.0434773
0.0435154
0.0435262
0.0435363
0.0435762
0.0435622
0.043548
0.0435754
0.0435928
0.0436105
0.0436281
0.0435896
0.0435453
0.0435527
0.0435579
0.0435604
0.0436208
0.0436124
0.0436019
0.0436452
0.0436622
0.0436819
0.0437102
0.0436292
0.0435592
0.0434883
0.0434118
0.0433301
0.0432439
0.0432187
0.0431893
0.0431557
0.0432548
0.0432843
0.0433094
0.043396
0.0433757
0.0433509
0.0433201
0.0432201
0.0431174
0.0430743
0.0430263
0.0429722
0.0430929
0.0431359
0.0431805
0.0432895
0.0432614
0.0432474
0.0434711
0.0434361
0.0434226
0.0434291
0.0434449
0.0434622
0.0434779
0.0435556
0.0435523
0.0435545
0.0437086
0.0436655
0.0436411
0.0437539
0.0438176
0.0438973
0.0439832
0.0437717
0.0435739
0.0436146
0.0436725
0.0437371
0.0439925
0.0439218
0.0438462
0.0440663
0.0441429
0.0442132
0.044395
0.0443237
0.0442479
0.0441657
0.0440763
0.0439823
0.0438908
0.0438122
0.0437531
0.0437122
0.0436836
0.0436606
0.0436389
0.0436178
0.0435976
0.0436144
0.0436369
0.0436609
0.0436759
0.04365
0.0436257
0.0436322
0.0436575
0.0436849
0.0437196
0.0437065
0.0436867
0.043719
0.0437659
0.0438331
0.0439042
0.0438162
0.0437504
0.0437733
0.0438523
0.0439513
0.0440585
0.0440062
0.0439203
0.0440192
0.0441197
0.044215
0.0443072
0.0442126
0.0441114
0.0441646
0.0442654
0.0443598
0.0444484
0.0443952
0.0443032
0.044385
0.0444617
0.0445348
0.0446305
0.0445559
0.0444778
0.0445318
0.0446109
0.0446862
0.0447583
0.0447021
0.0446053
0.0444633
0.0442792
0.0440575
0.0438003
0.0435191
0.0432537
0.0430536
0.0429162
0.0428026
0.0426984
0.0426197
0.0426029
0.0427216
0.0430991
0.0438693
0.0450421
0.046365
0.0473004
0.0470897
0.0430906
0.0390866
0.0319669
0.0318442
0.040238
0.040362
0.0319844
0.0317023
0.0397388
0.0398519
0.0318394
0.031743
0.0383255
0.039312
0.0318792
0.0315847
0.0392346
0.0393361
0.0316834
0.0314425
0.0387201
0.0388107
0.0315493
0.0316549
0.0385453
0.0433374
0.0435878
0.0395474
0.0318087
0.0313458
0.0382023
0.0382807
0.0314039
0.0312146
0.0376757
0.037743
0.0312823
0.0315835
0.0387761
0.039793
0.0317545
0.0311276
0.0371471
0.0372017
0.0311399
0.0310086
0.036611
0.0366542
0.0310361
0.0315283
0.0390185
0.0438411
0.047578
0.0474169
0.0472539
0.0474276
0.0475532
0.0476768
0.0477978
0.0477366
0.0440965
0.040049
0.0317164
0.0309226
0.0360743
0.0361045
0.0308792
0.0308199
0.0355312
0.0355498
0.0307767
0.0314923
0.0392727
0.0403151
0.0317055
0.0307364
0.0349896
0.0349949
0.0306214
0.0306181
0.0344402
0.034432
0.0305355
0.0314902
0.0395383
0.0443532
0.0446103
0.0405899
0.0317258
0.0305462
0.033894
0.0338678
0.0303873
0.0304399
0.033348
0.033302
0.0303008
0.0315162
0.039814
0.0408723
0.0317782
0.0303667
0.0328017
0.0327434
0.0301441
0.0302538
0.0322583
0.0321868
0.0300464
0.0315824
0.0400988
0.0448665
0.0481892
0.0480431
0.0478919
0.0479155
0.0480293
0.0481383
0.0482414
0.0483288
0.0451197
0.0411587
0.0318771
0.0301692
0.0317232
0.0316348
0.0298662
0.0300347
0.0311914
0.0310918
0.0297356
0.0317032
0.0403892
0.0414447
0.0320362
0.029918
0.0306718
0.0305581
0.0295046
0.0297385
0.0301634
0.0300455
0.029318
0.0318882
0.0406793
0.0453686
0.0456115
0.0417222
0.0322745
0.029583
0.0296753
0.0295496
0.0290429
0.0294038
0.0291998
0.0290712
0.0288708
0.0321468
0.0409602
0.0419832
0.0325286
0.0292981
0.0287417
0.0286043
0.0286581
0.0291847
0.0282986
0.0281534
0.0285758
0.0323895
0.0412228
0.0458463
0.0486939
0.0485829
0.0484605
0.0483374
0.048425
0.0485027
0.0485686
0.0487914
0.0460704
0.0422301
0.0327549
0.0291699
0.0278679
0.0277134
0.0284754
0.029156
0.0274506
0.0272844
0.0284809
0.0325887
0.0414695
0.0424683
0.0329512
0.0292145
0.0270619
0.0268658
0.0284673
0.0292452
0.0267094
0.026478
0.0285254
0.0327872
0.0417058
0.0462808
0.0464733
0.0426974
0.0331615
0.0293207
0.0263872
0.0261395
0.0285328
0.0293694
0.0260735
0.025832
0.0286113
0.0330065
0.0419333
0.0429143
0.0333893
0.0294609
0.0257867
0.0255458
0.0286363
0.0295246
0.0255177
0.0252893
0.0287324
0.0332391
0.0421487
0.0466437
0.0489729
0.0489345
0.0488727
0.0486209
0.048657
0.048674
0.0474729
0.0474551
0.0474215
0.047375
0.0473178
0.0472521
0.0471793
0.0471007
0.0470174
0.0469302
0.0468402
0.0467478
0.0466536
0.0465582
0.0464618
0.0450974
0.0451522
0.0452059
0.0439051
0.043894
0.0438819
0.0430756
0.0430512
0.043026
0.0429997
0.0439149
0.0452581
0.0453082
0.0453553
0.0453988
0.0439283
0.0439275
0.0439226
0.0429721
0.0429426
0.0429102
0.0423536
0.0424091
0.0424648
0.0425195
0.0425727
0.0426241
0.0426738
0.0425425
0.0424788
0.0424119
0.0424094
0.0424839
0.0425541
0.0426309
0.0425572
0.0424801
0.042399
0.0423271
0.042341
0.0422663
0.0421884
0.0421011
0.0420437
0.0421436
0.0422388
0.0423143
0.0422327
0.0421575
0.0420914
0.0419432
0.0420019
0.0422897
0.0428728
0.0439241
0.0454374
0.0454704
0.0454958
0.0455126
0.0438651
0.0438955
0.0439139
0.0428322
0.0427906
0.0427241
0.0426355
0.0438266
0.0455193
0.0455131
0.0454911
0.0454523
0.0435884
0.0437038
0.043777
0.0425157
0.0423704
0.0421956
0.0414021
0.0415587
0.041715
0.0418686
0.0420003
0.042115
0.0422129
0.0418914
0.0417678
0.0416451
0.0416706
0.0417537
0.0418455
0.0420355
0.0419936
0.0419657
0.0419526
0.0415992
0.0415255
0.0414108
0.0413038
0.0412031
0.0414695
0.0414983
0.0415417
0.0419556
0.0419699
0.0419931
0.0420316
0.0414579
0.0411199
0.0412499
0.0419918
0.0434295
0.0453871
0.0474705
0.0486678
0.0489825
0.0467873
0.0431149
0.0336348
0.0296305
0.0252762
0.025061
0.0287726
0.0297078
0.025066
0.0248683
0.0288859
0.0334873
0.0423476
0.0432948
0.0338977
0.0298265
0.024897
0.0247
0.0289388
0.0299165
0.0247495
0.0245533
0.0290699
0.0337521
0.0425257
0.0468963
0.0469632
0.0434509
0.0341715
0.0300488
0.0246242
0.0244285
0.0291367
0.0301509
0.0245157
0.0243174
0.0292824
0.0340251
0.04268
0.0435754
0.0344504
0.0302947
0.0244194
0.0242252
0.0293611
0.0304066
0.0243381
0.0241408
0.0295182
0.0342995
0.0428015
0.0469758
0.0487777
0.0488889
0.0489566
0.0486347
0.0485734
0.0484872
0.0483724
0.0486244
0.0469208
0.0436557
0.0347328
0.0305589
0.0242636
0.0240791
0.0296043
0.0306631
0.024236
0.0240342
0.0297513
0.0345802
0.042873
0.0436635
0.0349966
0.0307866
0.0242391
0.0240258
0.0298056
0.0308551
0.0242661
0.0240495
0.0299097
0.0348344
0.0428593
0.0467791
0.0464989
0.0435621
0.035218
0.030935
0.0243221
0.0241023
0.0299154
0.0309502
0.0244003
0.0241768
0.0299555
0.0350363
0.0427238
0.0433074
0.0353567
0.0309643
0.0244937
0.0242644
0.0298895
0.0308957
0.0245911
0.0243549
0.0298343
0.0351228
0.0423913
0.0459799
0.047263
0.0479797
0.0483997
0.0481524
0.0477338
0.047177
0.0466581
0.0464898
0.0451555
0.0427444
0.0353381
0.0308138
0.024686
0.0244365
0.0296622
0.0306235
0.0247573
0.0244887
0.0294774
0.0350296
0.041733
0.0419233
0.0350959
0.0303885
0.0247787
0.0244663
0.0291227
0.0299628
0.0246928
0.0243305
0.0286506
0.0346414
0.0407858
0.0443393
0.0438987
0.041001
0.0346948
0.0294755
0.0245364
0.0242224
0.0281184
0.0291284
0.0246176
0.0245707
0.0280324
0.0346307
0.0402588
0.040704
0.0355292
0.029284
0.0254064
0.0258826
0.0283118
0.029496
0.0272551
0.0218686
0.022495
0.0276584
0.0289493
0.028314
0.0363124
0.0403078
0.0438121
0.0453858
0.0455847
0.045958
0.0462824
0.0459589
0.0457329
0.0456254
0.0454172
0.0441062
0.0409746
0.0381686
0.0383259
0.0309512
0.0241328
0.0226535
0.0230282
0.0236033
0.0262808
0.0217073
0.0228401
0.0259772
0.032936
0.0413312
0.0340694
0.0286776
0.0237602
0.0251639
0.0286098
0.0310189
0.0273104
0.0224175
0.0237533
0.0247774
0.0316816
0.0260909
0.0228217
0.0241628
0.0252701
0.0294078
0.0356439
0.029316
0.0381539
0.032478
0.0280925
0.0232515
0.0246971
0.0303321
0.033926
0.0324981
0.0259631
0.0277603
0.0241216
0.0263157
0.0288042
0.024081
0.0255172
0.0326006
0.0264608
0.0294772
0.0246974
0.0267651
0.0320841
0.0383275
0.0431691
0.0462373
0.0417503
0.0386399
0.0310587
0.0309529
0.043012
0.0414981
0.0442272
0.0465106
0.0451399
0.0449744
0.0413782
0.0390159
0.0432481
0.037588
0.0304928
0.0290843
0.0454968
0.0447826
0.0457543
0.045637
0.0456246
0.046218
0.0468617
0.0464438
0.0473778
0.0484671
0.0479879
0.0494169
0.0485053
0.045841
0.0417613
0.0361168
0.0300986
0.0251014
0.0273652
0.0300975
0.0251859
0.0271936
0.0329472
0.0383178
0.0340756
0.0365762
0.0430728
0.0369584
0.030672
0.0254913
0.028009
0.0312942
0.0258221
0.0282406
0.0347874
0.0394787
0.0348878
0.037401
0.045737
0.0481585
0.0453667
0.0469341
0.0502687
0.0518657
0.051048
0.0484388
0.0443123
0.0389958
0.0326951
0.0265734
0.0296849
0.0255439
0.0277795
0.031042
0.0258607
0.0280765
0.0380029
0.0314403
0.0263197
0.029088
0.0333816
0.0273802
0.0306388
0.0262184
0.0283663
0.0349464
0.0418132
0.0385308
0.0441482
0.0364048
0.0484624
0.0512297
0.0468558
0.0417179
0.0337621
0.0350303
0.0373997
0.0397198
0.0473921
0.0496525
0.0539949
0.0515379
0.0480399
0.0506563
0.0467758
0.0403568
0.0325212
0.0269322
0.0299508
0.0343209
0.0279079
0.0317715
0.0268481
0.0291786
0.0410497
0.0340928
0.0278464
0.0318954
0.0271683
0.0300828
0.0346712
0.0280453
0.031958
0.027085
0.0294087
0.0425522
0.0381041
0.0445818
0.0377195
0.0413335
0.0474249
0.0397552
0.0542388
0.0498834
0.0439254
0.0370369
0.0381157
0.0413
0.0505602
0.0543199
0.0521114
0.0527159
0.05596
0.0560636
0.054656
0.052985
0.05319
0.0544037
0.0554484
0.053221
0.0532717
0.0527582
0.0518398
0.0506565
0.0502401
0.0494555
0.0479206
0.0479034
0.0474002
0.0453069
0.045518
0.0428726
0.0429889
0.0432818
0.0436463
0.0440728
0.0445277
0.045004
0.0454501
0.0459246
0.046431
0.0468988
0.0471556
0.047311
0.0473964
0.0474448
0.045288
0.0451376
0.044912
0.0427041
0.0429921
0.0432314
0.0417857
0.0415691
0.041326
0.0410709
0.0423663
0.044608
0.0441664
0.04368
0.043231
0.0413408
0.0416495
0.0419866
0.0408349
0.0406245
0.0404658
0.0405396
0.0405387
0.0405816
0.0406665
0.0407774
0.0409378
0.041099
0.0410469
0.0409888
0.0409485
0.0415154
0.0414783
0.0414614
0.0420788
0.0421402
0.0422176
0.0423154
0.0415786
0.0409332
0.0409494
0.0409977
0.0410899
0.0419553
0.0417923
0.0416693
0.0424378
0.0425909
0.0427802
0.0430124
0.0421638
0.041243
0.0405969
0.0403594
0.0410481
0.0428194
0.0424027
0.0420062
0.0416715
0.0405331
0.040582
0.0407748
0.0403367
0.0404101
0.0405966
0.0408966
0.0406173
0.0414225
0.0413357
0.0414416
0.0417369
0.0418455
0.0412845
0.0408773
0.0413061
0.0418149
0.0424392
0.0433727
0.0426548
0.0420531
0.0415702
0.0411848
0.040911
0.0407188
0.0414592
0.0417538
0.0421283
0.0431289
0.0427429
0.0424226
0.0432936
0.0436302
0.0440267
0.0444869
0.0435856
0.0425871
0.0431253
0.0437456
0.0444272
0.0453792
0.044712
0.0441128
0.0450118
0.0456022
0.0462563
0.0469721
0.0461152
0.0451939
0.0441674
0.0431618
0.0425224
0.0422224
0.0429602
0.0432146
0.0450988
0.0449717
0.045294
0.047727
0.0474952
0.050661
0.0504824
0.0501505
0.0500373
0.0485483
0.0479503
0.0475706
0.0463648
0.0456304
0.0452813
0.0444119
0.0437254
0.0436859
0.0428799
0.0432911
0.0440005
0.0449511
0.0441606
0.045098
0.0445908
0.0455641
0.0466195
0.0462721
0.0473367
0.0472299
0.0482633
0.0493911
0.0494487
0.0503782
0.0527066
0.0559757
0.0572604
0.0576348
0.0571787
0.059072
0.0580452
0.0548544
0.0506788
0.0535326
0.0490369
0.0407364
0.0324514
0.0277115
0.0306902
0.0385729
0.0463582
0.0428253
0.0353311
0.0287759
0.0327022
0.0278091
0.0301513
0.0437106
0.0359581
0.0290091
0.0336259
0.0285452
0.0319764
0.0374943
0.0297447
0.0341295
0.0287956
0.0315306
0.0468713
0.0418158
0.0484181
0.0400985
0.0445993
0.0506341
0.0422167
0.0583715
0.0552015
0.0588722
0.0545652
0.0577357
0.0534335
0.0457425
0.036015
0.0297378
0.0344969
0.0290306
0.0322017
0.037583
0.0309467
0.0357924
0.0298266
0.0334244
0.0426111
0.0499965
0.0450646
0.0514942
0.0411245
0.0441277
0.0479929
0.0575536
0.0630906
0.0601909
0.0629374
0.0581078
0.0604919
0.0625197
0.0651784
0.067053
0.0664849
0.0686454
0.067369
0.0638236
0.0602329
0.0537807
0.0440197
0.034589
0.0302285
0.0363854
0.031009
0.0385323
0.0320145
0.0408582
0.048517
0.0545164
0.0468193
0.0496009
0.0514436
0.0559486
0.0496488
0.0603731
0.0414739
0.0320493
0.0379965
0.0313804
0.0367096
0.0304228
0.034552
0.0446205
0.0524198
0.0467078
0.059946
0.0631465
0.0678631
0.0654435
0.0629677
0.0583127
0.0522235
0.0429223
0.0332463
0.0409135
0.0321465
0.0387921
0.0313911
0.0372768
0.0305443
0.0348189
0.0418166
0.0334108
0.0401218
0.0316999
0.0371469
0.0311512
0.0352073
0.0528318
0.0461241
0.0551436
0.0496351
0.0561341
0.0452458
0.0478822
0.0522202
0.0575956
0.0495343
0.0510722
0.0543253
0.0630213
0.0684047
0.0654269
0.0624554
0.0687806
0.0619964
0.0654857
0.0603753
0.0530854
0.042405
0.0332727
0.0408568
0.0325251
0.0389586
0.0318962
0.0372908
0.0455354
0.0347057
0.0423162
0.0340289
0.0413719
0.0324823
0.0382893
0.0320368
0.0363804
0.0559759
0.0461783
0.035056
0.0440563
0.0345586
0.0426898
0.0338633
0.0407125
0.0332357
0.0390946
0.047925
0.0363852
0.0444871
0.0357935
0.0436591
0.0342018
0.0404589
0.033771
0.0387514
0.0591173
0.0494888
0.0374861
0.0478567
0.0370325
0.0465764
0.0362217
0.0441767
0.0354971
0.0424141
0.0524312
0.0394981
0.0492719
0.038835
0.0485618
0.037277
0.0458256
0.0370585
0.0449836
0.0359315
0.0423663
0.0555559
0.064535
0.0564303
0.0655475
0.0585741
0.0662257
0.0547058
0.0609508
0.0670938
0.0582517
0.0626724
0.0672835
0.0592527
0.072669
0.0760572
0.0686087
0.0611591
0.0511706
0.0541315
0.0617607
0.0501903
0.0566309
0.0631586
0.0529571
0.0545361
0.058891
0.0635853
0.055639
0.0691019
0.0754925
0.0720209
0.0748775
0.0691131
0.0651524
0.057829
0.0513124
0.0588245
0.0478702
0.0539077
0.059812
0.0521489
0.0559392
0.0505694
0.0660515
0.069195
0.0659551
0.069654
0.0736149
0.0714231
0.0741277
0.0692749
0.065496
0.0689684
0.0716749
0.0782711
0.0806474
0.0796115
0.0823057
0.0807211
0.0838553
0.0813329
0.0769855
0.0734168
0.0767094
0.0735956
0.0770808
0.0732805
0.0769413
0.073255
0.0772137
0.0718911
0.0645319
0.0544319
0.0412446
0.0533088
0.0400151
0.0510749
0.0392055
0.0498522
0.0381658
0.0469237
0.0374089
0.0450254
0.0558247
0.0419813
0.0528312
0.0413196
0.0520706
0.0397162
0.0493222
0.0395777
0.048535
0.0383161
0.0454801
0.0595029
0.0687381
0.0602106
0.0690387
0.0619213
0.070542
0.0580816
0.0649403
0.0709288
0.0607056
0.0613661
0.0663293
0.0719268
0.0625307
0.0630234
0.0675597
0.0777183
0.0840073
0.0808325
0.0771585
0.0849141
0.0776798
0.0811923
0.0769898
0.0857279
0.0764462
0.0686424
0.058724
0.0443572
0.0578882
0.0431887
0.0557933
0.0423848
0.0547272
0.0413129
0.0519653
0.0402928
0.0490783
0.0612481
0.0457402
0.0585471
0.0450922
0.0578012
0.0434889
0.0555328
0.0434892
0.0552935
0.0414915
0.0515867
0.0408261
0.048597
0.0729783
0.0639105
0.0737577
0.0654381
0.0745658
0.0673206
0.0752737
0.062813
0.0695299
0.0762318
0.0656913
0.0711251
0.0763316
0.0667844
0.0670535
0.0716861
0.0825843
0.0864855
0.0827421
0.086396
0.0830619
0.0870495
0.0827168
0.0869783
0.0829719
0.0874132
0.0821446
0.0869158
0.0818146
0.0726676
0.0614457
0.0461041
0.0609342
0.0452193
0.0586184
0.0442368
0.0567985
0.042754
0.051946
0.0652168
0.0497904
0.0637073
0.0473226
0.0610291
0.047215
0.0604935
0.0452364
0.057089
0.044452
0.0539597
0.077515
0.0677217
0.0507758
0.067587
0.0504327
0.0671056
0.0494875
0.0652795
0.0484204
0.063522
0.046629
0.0579239
0.0714216
0.0547056
0.0699199
0.0519728
0.0675028
0.0514794
0.0669608
0.0490395
0.0631384
0.0479553
0.0591295
0.0839577
0.0749153
0.0846189
0.0765839
0.0855114
0.0789769
0.0864234
0.0734611
0.0746872
0.0807557
0.0870496
0.0768038
0.0817846
0.0868097
0.0781606
0.0930685
0.0969145
0.0880422
0.0792616
0.0684521
0.0709416
0.0793235
0.0729256
0.0810679
0.067809
0.0693319
0.075464
0.0811231
0.0708332
0.0712113
0.0761645
0.0876773
0.0959152
0.0915407
0.0949242
0.0882287
0.0907633
0.0936176
0.0899127
0.0924155
0.0889979
0.0911708
0.0961339
0.0990856
0.0974514
0.100871
0.0989109
0.102531
0.100209
0.104256
0.101652
0.105857
0.102675
0.0979704
0.0939842
0.0977562
0.0943641
0.0985203
0.0938956
0.0985153
0.0942931
0.0990258
0.0934543
0.0984001
0.0930222
0.0837285
0.073597
0.0546784
0.072935
0.0533691
0.0706722
0.0519313
0.0688434
0.0499296
0.0626825
0.0763803
0.0585979
0.0747309
0.0551984
0.0715076
0.0544974
0.0708552
0.0521198
0.065741
0.0806985
0.090006
0.0815771
0.0902905
0.083876
0.092258
0.0783785
0.0799275
0.0863307
0.0922792
0.0814936
0.0819454
0.0870522
0.0992032
0.108065
0.103372
0.106969
0.0998225
0.102545
0.105495
0.101607
0.104121
0.100535
0.109195
0.112905
0.110857
0.114702
0.112394
0.116585
0.114055
0.109194
0.0983733
0.0901741
0.0809667
0.063202
0.0801973
0.0601918
0.0783312
0.0576041
0.0764818
0.0552179
0.0705467
0.0822331
0.066733
0.081525
0.0616387
0.0791378
0.0599161
0.0777936
0.0569871
0.0727185
0.0864229
0.0957475
0.0878635
0.0965697
0.0899839
0.0977674
0.0860548
0.0920787
0.0980348
0.0875638
0.0882874
0.0929918
0.105387
0.110074
0.105519
0.109827
0.105782
0.110535
0.105029
0.109907
0.104566
0.0957344
0.086664
0.0701041
0.085659
0.0666996
0.0837581
0.0633618
0.0819626
0.0599818
0.0762677
0.0870583
0.0721692
0.0857542
0.0661215
0.0833081
0.0622293
0.0783999
0.0994926
0.0899692
0.0740854
0.0897448
0.071633
0.0882966
0.0676163
0.0830328
0.0940302
0.0794612
0.0915484
0.0736022
0.0891865
0.0687156
0.0843721
0.104943
0.0958984
0.0805817
0.0951137
0.0777593
0.093182
0.0733876
0.0879408
0.0990549
0.0846336
0.0957015
0.0784235
0.0928979
0.0731482
0.0877936
0.109487
0.0990642
0.0836126
0.0970962
0.0804466
0.0932278
0.104523
0.0899131
0.100084
0.0858101
0.0984767
0.0794907
0.0930653
0.106507
0.116212
0.108998
0.117749
0.104595
0.111869
0.119013
0.108138
0.130899
0.126292
0.131348
0.125754
0.130409
0.124676
0.115417
0.10648
0.0917584
0.103276
0.0857283
0.0969188
0.109338
0.0938972
0.104462
0.0876348
0.0981386
0.111605
0.12035
0.11496
0.12263
0.110695
0.111841
0.117779
0.129841
0.139701
0.129262
0.120211
0.111579
0.0980073
0.108296
0.092285
0.101545
0.114392
0.0990657
0.108992
0.0928639
0.102102
0.115999
0.124921
0.11973
0.12738
0.115445
0.116514
0.122236
0.135386
0.140204
0.134944
0.13941
0.134144
0.12476
0.115776
0.101808
0.111915
0.095217
0.104494
0.117319
0.0995421
0.107433
0.128131
0.119097
0.104773
0.115138
0.101262
0.109214
0.121833
0.105534
0.113265
0.125743
0.135231
0.121716
0.129799
0.137533
0.126462
0.147855
0.138453
0.131443
0.119132
0.122982
0.120728
0.126865
0.139989
0.146615
0.143317
0.14292
0.14499
0.14911
0.149641
0.146902
0.143509
0.138489
0.134383
0.13686
0.139437
0.135534
0.12981
0.121422
0.110868
0.101743
0.105261
0.113691
0.100722
0.102827
0.108381
0.114278
0.10481
0.120935
0.125211
0.128418
0.121401
0.116271
0.1069
0.100787
0.108034
0.0956287
0.097425
0.102696
0.109014
0.0994186
0.120754
0.109602
0.100763
0.0918101
0.0944603
0.103068
0.0891723
0.0916408
0.0974705
0.103405
0.0938424
0.0986055
0.0931805
0.110377
0.119602
0.110992
0.115244
0.114812
0.118365
0.113962
0.116847
0.112999
0.115256
0.120321
0.121964
0.118324
0.119896
0.122366
0.124194
0.124573
0.123858
0.122055
0.125842
0.123802
0.127843
0.125585
0.129723
0.12683
0.121407
0.116221
0.120966
0.12442
0.116292
0.131849
0.135316
0.133708
0.137414
0.140426
0.140268
0.13818
0.137848
0.135899
0.133294
0.133607
0.131112
0.131264
0.128969
0.128906
0.126782
0.126554
0.125672
0.126766
0.128098
0.129307
0.13052
0.131845
0.13298
0.13435
0.135425
0.136849
0.137915
0.139322
0.140481
0.141807
0.142671
0.142675
0.141632
0.144778
0.145024
0.146743
0.14735
0.149165
0.148004
0.148932
0.150455
0.15155
0.151827
0.1511
0.154018
0.152639
0.148102
0.142133
0.134488
0.125836
0.113385
0.121533
0.106863
0.113843
0.126395
0.109536
0.116649
0.136552
0.12808
0.114601
0.123597
0.109877
0.117108
0.130475
0.143639
0.13857
0.145489
0.13512
0.151364
0.154379
0.147422
0.140688
0.128367
0.131834
0.130167
0.136359
0.147206
0.150796
0.158068
0.155195
0.15169
0.154814
0.150362
0.142109
0.131613
0.117546
0.124054
0.13594
0.148401
0.144102
0.135507
0.119891
0.126011
0.138754
0.146935
0.137803
0.124876
0.131273
0.141727
0.152927
0.148932
0.153941
0.158216
0.160072
0.155339
0.157163
0.16292
0.16122
0.158913
0.161344
0.15847
0.149613
0.127913
0.12215
0.135286
0.129221
0.141557
0.143956
0.139058
0.124947
0.132468
0.143659
0.128002
0.133708
0.153461
0.144143
0.13023
0.137419
0.148409
0.13326
0.138863
0.158208
0.149363
0.135601
0.142783
0.153567
0.138788
0.144097
0.163449
0.154304
0.140413
0.14734
0.157108
0.165453
0.16986
0.16103
0.173551
0.173846
0.169867
0.164508
0.153558
0.158811
0.168012
0.157316
0.162429
0.171029
0.175381
0.168042
0.172104
0.178676
0.176166
0.171948
0.162342
0.167627
0.175226
0.181136
0.178142
0.176129
0.167767
0.172754
0.179276
0.183494
0.1812
0.17414
0.179173
0.184348
0.188173
0.185557
0.184171
0.185998
0.182228
0.187443
0.190593
0.192483
0.192745
0.190565
0.19548
0.195367
0.197092
0.194549
0.200277
0.200581
0.204735
0.208221
0.213553
0.207001
0.217782
0.225123
0.227715
0.243084
0.236759
0.253631
0.253244
0.27574
0.308217
0.353509
0.403146
0.4317
0.363732
0.3261
0.329399
0.301906
0.279436
0.299916
0.293083
0.316178
0.348255
0.320699
0.29258
0.27012
0.267313
0.281506
0.299492
0.282701
0.269118
0.24047
0.253444
0.270239
0.258619
0.24123
0.251737
0.24031
0.222793
0.240365
0.225746
0.219588
0.207913
0.218243
0.209902
0.206259
0.226059
0.222682
0.234461
0.220193
0.210645
0.220878
0.225977
0.223958
0.217599
0.209895
0.202155
0.195149
0.189197
0.19057
0.197463
0.206434
0.217402
0.229943
0.248844
0.27425
0.258072
0.24394
0.267963
0.291923
0.278187
0.251877
0.187292
0.185053
0.189545
0.192449
0.197851
0.193794
0.19004
0.186602
0.18267
0.180281
0.177966
0.175759
0.178501
0.18103
0.183739
0.186607
0.183479
0.180639
0.182209
0.185332
0.188877
0.192946
0.19769
0.203272
0.208134
0.200886
0.202844
0.211446
0.212056
0.203024
0.196282
0.19634
0.195136
0.190476
0.186568
0.18322
0.183664
0.187133
0.191269
0.191131
0.186986
0.183539
0.180592
0.180681
0.1803
0.179431
0.178059
0.176156
0.173671
0.170527
0.166127
0.164672
0.163287
0.161977
0.160746
0.159594
0.158519
0.157519
0.15659
0.155727
0.15493
0.1542
0.153532
0.152925
0.152375
0.151879
0.153895
0.154496
0.155154
0.155872
0.156653
0.157501
0.158417
0.159405
0.160472
0.161623
0.162864
0.164198
0.165629
0.167161
0.168794
0.171711
0.169881
0.168176
0.170134
0.171985
0.173988
0.17571
0.173565
0.1716
0.169794
0.168423
0.16659
0.165116
0.163748
0.162478
0.164015
0.165374
0.16684
0.16813
0.166593
0.165172
0.166019
0.167478
0.169058
0.170773
0.172643
0.174689
0.17694
0.177716
0.175403
0.173314
0.173651
0.175742
0.178066
0.178019
0.175735
0.173684
0.171824
0.171755
0.171414
0.169676
0.168079
0.166606
0.166967
0.168433
0.170023
0.170124
0.168564
0.167124
0.165792
0.165611
0.165244
0.164669
0.163855
0.162755
0.161302
0.160213
0.159205
0.158271
0.159503
0.160506
0.161588
0.162636
0.161505
0.160456
0.159483
0.158573
0.157407
0.156609
0.155874
0.155198
0.156185
0.156918
0.157713
0.158582
0.157747
0.156974
0.157603
0.1584
0.159259
0.160186
0.161184
0.16226
0.163419
0.163982
0.162812
0.161726
0.162107
0.16319
0.164356
0.164556
0.163408
0.16234
0.161347
0.161101
0.160717
0.15978
0.15891
0.158102
0.158486
0.159295
0.160165
0.160421
0.15956
0.158758
0.1589
0.159692
0.16054
0.161448
0.162422
0.163466
0.164586
0.16579
0.167086
0.168483
0.169995
0.171638
0.173432
0.175406
0.177598
0.18006
0.182869
0.186136
0.190036
0.19483
0.201027
0.209212
0.20314
0.197213
0.192474
0.19635
0.200443
0.204121
0.193741
0.194304
0.19174
0.193301
0.198735
0.200337
0.203714
0.19192
0.188421
0.183476
0.189944
0.178102
0.177497
0.176762
0.179389
0.18072
0.181884
0.180504
0.178261
0.175603
0.176543
0.172675
0.171731
0.170284
0.169051
0.165334
0.156057
0.159124
0.16951
0.170981
0.165509
0.167614
0.160716
0.150852
0.153734
0.161631
0.156285
0.146223
0.149103
0.161909
0.1652
0.162812
0.164408
0.167498
0.16603
0.164895
0.16355
0.162451
0.16082
0.160105
0.158483
0.15629
0.156257
0.157731
0.158721
0.159396
0.161128
0.161814
0.162132
0.164246
0.164583
0.166764
0.168707
0.169483
0.169979
0.170253
0.173312
0.173712
0.174099
0.170705
0.170421
0.167426
0.16737
0.167321
0.167159
0.164679
0.164645
0.16458
0.161824
0.161954
0.162097
0.162183
0.159634
0.15975
0.159724
0.157327
0.15731
0.156966
0.156318
0.15534
0.153919
0.152913
0.153894
0.154522
0.152382
0.152054
0.15144
0.149554
0.149857
0.149866
0.149726
0.1524
0.154865
0.154884
0.154751
0.15452
0.157197
0.15698
0.156726
0.159442
0.159235
0.159058
0.15896
0.161752
0.164569
0.164647
0.167609
0.16788
0.171192
0.174811
0.178991
0.184165
0.186398
0.180425
0.175655
0.171627
0.17189
0.175976
0.180727
0.186433
0.185848
0.192303
0.190043
0.187573
0.184966
0.188798
0.192198
0.188112
0.184662
0.181702
0.180088
0.182667
0.185566
0.182502
0.180166
0.178007
0.175633
0.177415
0.179273
0.181144
0.182972
0.184539
0.179694
0.18051
0.175942
0.171942
0.171635
0.175433
0.174731
0.178671
0.177386
0.175991
0.174543
0.173101
0.170512
0.171665
0.172787
0.173825
0.1705
0.171141
0.167884
0.168222
0.168378
0.168297
0.1681
0.164925
0.164762
0.161854
0.161748
0.159002
0.159157
0.159359
0.162021
0.162183
0.165082
0.16518
0.165138
0.164932
0.162263
0.162343
0.162302
0.159713
0.159555
0.157174
0.156927
0.156672
0.156449
0.156314
0.156321
0.156477
0.153773
0.153954
0.15424
0.151453
0.151724
0.15203
0.152267
0.149474
0.149184
0.148945
0.146352
0.146428
0.146612
0.14686
0.147127
0.147278
0.147288
0.147008
0.146397
0.14553
0.14429
0.143017
0.143841
0.144427
0.141996
0.141811
0.141281
0.139162
0.1387
0.13648
0.136087
0.135335
0.133446
0.132765
0.130783
0.130208
0.128107
0.127626
0.1254
0.125029
0.124247
0.123235
0.121826
0.120119
0.117868
0.117869
0.115769
0.115615
0.113672
0.111023
0.10769
0.109224
0.111551
0.113345
0.112485
0.111089
0.109442
0.107289
0.10733
0.105327
0.105166
0.103319
0.103008
0.101316
0.10091
0.0993189
0.0973182
0.0943996
0.0905218
0.0929153
0.0893703
0.0912996
0.0881504
0.0830535
0.080346
0.077363
0.0796324
0.0821257
0.0790224
0.0868664
0.0896268
0.09165
0.0932411
0.0935476
0.0952439
0.09544
0.0972837
0.0966592
0.0954691
0.0944739
0.0932126
0.0922822
0.0911936
0.0896961
0.0878776
0.0854146
0.0860885
0.0877498
0.0891535
0.0880333
0.0870267
0.0858345
0.0842858
0.0838841
0.0824175
0.0818595
0.0805739
0.0789473
0.076839
0.0771592
0.0753022
0.0728076
0.0737308
0.0715551
0.0720392
0.0701247
0.0703241
0.0717369
0.0708333
0.0697555
0.0685989
0.0678757
0.0667718
0.0654181
0.0637641
0.0616986
0.0583689
0.0537111
0.0556381
0.0527659
0.0561778
0.0604457
0.0622319
0.0637488
0.0648671
0.0659115
0.0663766
0.0661846
0.0686726
0.0689475
0.0654391
0.0653363
0.0682788
0.0713239
0.0727923
0.0735927
0.0747401
0.0753965
0.0767684
0.0777952
0.0786789
0.0797868
0.080774
0.0787995
0.0785622
0.0761366
0.0762517
0.0757846
0.0738897
0.0736054
0.0712477
0.0679061
0.0655137
0.0661322
0.0677649
0.0704707
0.0703089
0.0732593
0.0728705
0.0727533
0.0754376
0.0752525
0.0781381
0.0811981
0.0828861
0.0835389
0.0849309
0.0858184
0.0861655
0.0857446
0.0885403
0.090154
0.0909078
0.0911499
0.0906046
0.0936144
0.0933455
0.0960333
0.0976672
0.0987763
0.0998812
0.10081
0.102154
0.103148
0.104434
0.105441
0.10666
0.107745
0.108893
0.110108
0.111084
0.109086
0.108653
0.106489
0.106201
0.103796
0.103721
0.101047
0.101239
0.0982902
0.0987298
0.0984491
0.096076
0.0956001
0.0954352
0.0955462
0.0980918
0.0980592
0.100747
0.100648
0.103429
0.103297
0.106159
0.105999
0.108938
0.11164
0.113476
0.114815
0.115881
0.117161
0.118328
0.119484
0.12079
0.119255
0.117152
0.116737
0.114469
0.114199
0.111723
0.111464
0.111353
0.11423
0.114112
0.117044
0.119787
0.121753
0.122416
0.122659
0.122485
0.119586
0.119685
0.119865
0.116891
0.116834
0.116969
0.114744
0.11433
0.11412
0.111738
0.11145
0.109205
0.108815
0.108652
0.10872
0.105995
0.106241
0.106717
0.107401
0.108244
0.109791
0.110558
0.112242
0.11292
0.111458
0.110293
0.10923
0.108161
0.107052
0.106001
0.105061
0.104294
0.103717
0.103398
0.101262
0.100838
0.09886
0.0983352
0.096525
0.0958827
0.0942532
0.0935261
0.0930558
0.0928502
0.0929648
0.0903258
0.0903602
0.0878802
0.0877687
0.0879284
0.0884989
0.0853351
0.0852241
0.0854806
0.083825
0.0831464
0.0827665
0.0827742
0.0830071
0.0836757
0.080363
0.0809464
0.0778177
0.0753969
0.0758672
0.0777315
0.0781043
0.0802194
0.0804075
0.0808821
0.0817422
0.0828122
0.082128
0.0808919
0.0797387
0.0787624
0.0778179
0.0767371
0.0759652
0.0747965
0.0738039
0.0731263
0.0718457
0.0709482
0.0704206
0.0689534
0.0682582
0.0670907
0.068224
0.0694693
0.0699854
0.0711757
0.0724365
0.0729492
0.074174
0.0754449
0.075117
0.073734
0.073539
0.0720972
0.070749
0.0705452
0.0691385
0.0678202
0.0665494
0.0653312
0.0642438
0.0634522
0.0628415
0.0628994
0.0631075
0.0639233
0.0637191
0.0630675
0.0619055
0.0606517
0.0601504
0.0589636
0.0582319
0.0559415
0.0553497
0.0587119
0.0584569
0.0609918
0.0613681
0.0608332
0.0603396
0.0603477
0.0587705
0.058031
0.0578059
0.0578674
0.0554517
0.055237
0.0534946
0.0528672
0.0526635
0.0509291
0.0518372
0.0529241
0.0528627
0.0516506
0.0504947
0.0505575
0.0517883
0.0530768
0.0544909
0.0541372
0.0541117
0.0543876
0.0554834
0.0560912
0.0570163
0.0581425
0.0579433
0.0566896
0.0566353
0.0553461
0.0554616
0.05598
0.0574569
0.0568991
0.0584217
0.0579855
0.0594507
0.059248
0.0593656
0.0597204
0.0607184
0.0614639
0.0625007
0.0636776
0.0633971
0.0621197
0.0608731
0.0606334
0.0619563
0.0633628
0.0649037
0.0647464
0.0649379
0.0662386
0.0676116
0.0690958
0.0693092
0.067756
0.0661874
0.0664628
0.0679884
0.0695079
0.0697268
0.0682268
0.0667235
0.0652129
0.0636861
0.0621266
0.0606258
0.0609992
0.06252
0.0640169
0.064353
0.0628846
0.061404
0.0599275
0.0603619
0.0589026
0.0593712
0.0579638
0.0565357
0.0551308
0.0536988
0.0522745
0.0508995
0.0496371
0.0484593
0.048948
0.0477316
0.0485312
0.0472981
0.0461472
0.0470966
0.0459961
0.0469642
0.0459783
0.0450523
0.0460158
0.0469045
0.0478425
0.048671
0.0477658
0.0469099
0.0477455
0.048574
0.0494521
0.0503775
0.0496273
0.0488329
0.0479941
0.0490684
0.0482291
0.0493847
0.0505792
0.0497938
0.0510627
0.0502729
0.0516288
0.0529948
0.0543418
0.054958
0.0536481
0.0523464
0.0530312
0.0517887
0.0524944
0.0513238
0.0501775
0.0509365
0.0498642
0.0506237
0.0513444
0.0523511
0.0516622
0.0527328
0.0520423
0.053179
0.0543441
0.0536973
0.0549163
0.0542865
0.0555658
0.0568572
0.0562891
0.0557141
0.0570755
0.0584684
0.0598466
0.060328
0.0589751
0.0576188
0.0581624
0.0594812
0.0608084
0.0612835
0.059982
0.0586964
0.0574191
0.0561621
0.0567425
0.0555314
0.0561252
0.0549679
0.053837
0.0544642
0.0533911
0.0540123
0.053
0.0520217
0.0510815
0.0501828
0.0493289
0.0485229
0.0477685
0.0470684
0.0464254
0.0458412
0.0453169
0.0448518
0.044445
0.0440935
0.0437932
0.0435391
0.0433262
0.0431485
0.0430012
0.0428787
0.0427769
0.0426912
0.0426191
0.042557
0.0425049
0.0424617
0.0424261
0.0424021
0.0423859
0.0423797
0.0423874
0.0424076
0.0424404
0.0424839
0.0425371
0.0425978
0.042666
0.0427347
0.0428616
0.0428126
0.0427781
0.0430364
0.0430279
0.0430318
0.0432782
0.0433118
0.0433486
0.0433865
0.0430516
0.0427561
0.0427439
0.0427417
0.0427505
0.0431337
0.0431005
0.0430731
0.0434266
0.0434695
0.043516
0.0438736
0.0438191
0.0437674
0.0437179
0.0436697
0.0436211
0.0435707
0.0438593
0.0439149
0.043969
0.0442362
0.0441775
0.0441185
0.0443429
0.0444055
0.0444679
0.0445304
0.0442953
0.0440234
0.044079
0.0441367
0.0441968
0.0444816
0.0444174
0.0443556
0.0445937
0.0446584
0.0447255
0.0447959
0.0445488
0.04426
0.0439314
0.0435664
0.0431722
0.0427676
0.0427925
0.0428263
0.0428665
0.0433198
0.0432654
0.0432161
0.0436208
0.0436797
0.0437436
0.0438132
0.0433799
0.0429133
0.0429674
0.0430284
0.0430979
0.0436036
0.0435205
0.0434465
0.0438899
0.0439748
0.0440697
0.044493
0.0443876
0.0442931
0.0442078
0.0441301
0.0440589
0.043993
0.0443269
0.0443986
0.0444761
0.0447794
0.0446965
0.0446201
0.0448708
0.0449513
0.0450387
0.0451343
0.0448699
0.0445606
0.0446535
0.0447565
0.044871
0.0452022
0.0450797
0.0449695
0.0452395
0.0453559
0.045485
0.0457168
0.0455822
0.0454609
0.045351
0.0452513
0.0451601
0.0450762
0.0449984
0.0449254
0.0448562
0.0447895
0.0447243
0.0446598
0.0445952
0.0445298
0.0446736
0.0447404
0.0448062
0.044905
0.0448387
0.0447713
0.0448278
0.0448955
0.0449621
0.0450286
0.0449712
0.0448718
0.0449381
0.0450062
0.0450771
0.0451793
0.0451073
0.0450383
0.045096
0.0451656
0.0452383
0.0453154
0.0452556
0.045152
0.0452321
0.0453186
0.0454126
0.0455215
0.0454255
0.0453373
0.045398
0.0454872
0.0455845
0.0456909
0.0456267
0.0455156
0.045629
0.0457542
0.0458929
0.0460118
0.0458703
0.0457425
0.0458082
0.0459375
0.0460807
0.0462394
0.0461688
0.0460468
0.0458663
0.0456287
0.0453387
0.044999
0.044611
0.0441763
0.0436973
0.043177
0.0432677
0.0433727
0.0434951
0.0440663
0.0439259
0.0438039
0.0442969
0.0444339
0.0445901
0.0447687
0.0442288
0.0436389
0.043808
0.0440072
0.0442408
0.044886
0.0446347
0.0444168
0.0449731
0.0452067
0.0454731
0.0460006
0.0457216
0.0454746
0.0452563
0.0450637
0.0448939
0.0447439
0.0451425
0.0453038
0.0454853
0.0458534
0.0456621
0.0454913
0.045789
0.0459677
0.0461671
0.0463896
0.0460677
0.0456896
0.0459196
0.046178
0.0464675
0.0468735
0.0465753
0.0463075
0.0466375
0.046913
0.0472185
0.047556
0.0472048
0.046791
0.0463146
0.0457757
0.0451751
0.0445138
0.0448306
0.045195
0.0456107
0.046304
0.0458809
0.0455056
0.0461178
0.0465021
0.0469313
0.0474071
0.0467769
0.04608
0.046604
0.0471831
0.0478168
0.048501
0.0478753
0.0473004
0.0479301
0.0485015
0.0491204
0.0496744
0.0490614
0.0484931
0.0479705
0.0474923
0.0470581
0.0466663
0.0471506
0.0475486
0.0479869
0.0484158
0.047974
0.047571
0.0479275
0.0483347
0.0487793
0.0492623
0.0488975
0.0484671
0.0489893
0.049555
0.0501631
0.0505872
0.049983
0.0494195
0.0497841
0.0503459
0.0509468
0.05124
0.0506416
0.0500811
0.0495595
0.0490753
0.0486287
0.0482181
0.0478424
0.0474999
0.0471887
0.046907
0.0466528
0.0464238
0.0462178
0.0460327
0.0462177
0.0464077
0.0466186
0.0467502
0.046536
0.0463428
0.0464153
0.0466104
0.0468265
0.0470658
0.0469875
0.0468525
0.0471115
0.0473977
0.0477131
0.0478572
0.047539
0.0472498
0.04733
0.0476209
0.0479408
0.0482909
0.0482059
0.0480593
0.0484382
0.0488513
0.0492995
0.049451
0.0490017
0.0485868
0.0486732
0.049089
0.049539
0.0500249
0.0499366
0.0497845
0.0503061
0.0508656
0.0514622
0.0516126
0.0510171
0.0504582
0.0505465
0.0511052
0.0517
0.052332
0.0522455
0.0520968
0.0518772
0.0515876
0.0512326
0.0508142
0.0503322
0.0497863
0.0491766
0.0485036
0.0492416
0.0500283
0.050861
0.0514843
0.0506702
0.0499003
0.0504978
0.0512534
0.0520513
0.0528896
0.0523398
0.0517365
0.0526527
0.0536059
0.0545931
0.0551309
0.054166
0.0532348
0.0537658
0.0546778
0.0556229
0.0560673
0.0551395
0.054244
0.0533843
0.0525609
0.051777
0.0510332
0.0515065
0.0522399
0.0530121
0.0534048
0.0526425
0.0519176
0.0522668
0.0529846
0.0537389
0.0545298
0.0542046
0.0538226
0.0546686
0.0555497
0.0564627
0.0568084
0.0559079
0.0550392
0.055355
0.0562133
0.0571037
0.0580247
0.0577401
0.0574073
0.057027
0.0566001
0.0561281
0.055613
0.0550573
0.0561304
0.0555647
0.0566927
0.0578423
0.0573039
0.0585029
0.0579694
0.0592164
0.0604743
0.0617483
0.0621995
0.0609527
0.0597202
0.0602045
0.0590145
0.0595012
0.0583545
0.0572313
0.0577371
0.0566611
0.0571538
0.0576058
0.0586395
0.0582074
0.0592849
0.0588364
0.0599594
0.0611018
0.0606661
0.0618501
0.0614121
0.0626342
0.0638709
0.0634586
0.0630319
0.0625946
0.0621495
0.0616996
0.0612484
0.0608011
0.0622169
0.0618048
0.0632603
0.0647055
0.0661593
0.0658273
0.0655116
0.0669996
0.0684857
0.0699684
0.0702277
0.0687638
0.0672951
0.0676056
0.0690561
0.0705003
0.0719455
0.0716908
0.0714481
0.0712212
0.071015
0.0708347
0.0706741
0.0722118
0.072077
0.0736426
0.0751658
0.0751067
0.0766407
0.076608
0.0767695
0.0772143
0.0784937
0.0790273
0.0802871
0.0815912
0.0813144
0.0798562
0.0797195
0.0781841
0.0781654
0.0781701
0.0796792
0.0796825
0.0812011
0.0812447
0.0827604
0.0828525
0.0829833
0.0833909
0.0840083
0.0847988
0.0860015
0.0868545
0.0882732
0.0889909
0.0906372
0.0912129
0.0899663
0.0891026
0.0879208
0.08716
0.0859379
0.0852537
0.0865407
0.0879111
0.088407
0.0897304
0.0903317
0.0910938
0.0920755
0.0931317
0.0942971
0.0952327
0.0963435
0.0973891
0.098434
0.0996205
0.100583
0.10192
0.102786
0.103807
0.10282
0.101671
0.100754
0.0995741
0.0987244
0.0975234
0.0967476
0.0955044
0.0948244
0.0935246
0.092297
0.0915979
0.092946
0.0943868
0.0958223
0.0962007
0.0976311
0.0980683
0.0994678
0.0999967
0.101335
0.101967
0.103256
0.103988
0.104915
0.106057
0.107233
0.108477
0.109288
0.110476
0.11139
0.112464
0.113738
0.115336
0.117299
0.119662
0.122388
0.125324
0.125201
0.128166
0.128025
0.130981
0.130848
0.133742
0.13368
0.133547
0.136504
0.136353
0.139274
0.13915
0.136206
0.133428
0.133435
0.130743
0.130679
0.130729
0.127936
0.127921
0.125219
0.125138
0.122537
0.122381
0.119893
0.117795
0.11845
0.120308
0.120872
0.122861
0.123336
0.125456
0.125839
0.128085
0.128377
0.128802
0.130946
0.131278
0.13354
0.136125
0.138973
0.14192
0.144666
0.144628
0.144443
0.144213
0.141398
0.141529
0.14172
0.138828
0.138774
0.138828
0.138998
0.141364
0.144012
0.1439
0.143897
0.144019
0.141958
0.141645
0.141445
0.139282
0.139671
0.140151
0.138564
0.137949
0.137399
0.136931
0.136559
0.136296
0.136151
0.133778
0.134134
0.134593
0.132902
0.132273
0.131726
0.129973
0.129341
0.127695
0.126982
0.126355
0.124651
0.123941
0.122353
0.121563
0.120089
0.119221
0.117867
0.116923
0.116069
0.11467
0.115677
0.116715
0.115724
0.114595
0.11352
0.112515
0.113704
0.114923
0.116133
0.116894
0.117778
0.118859
0.11987
0.121026
0.121994
0.12322
0.124134
0.125443
0.126294
0.127178
0.128477
0.129301
0.130679
0.131439
0.132232
0.133595
0.135142
0.135762
0.136438
0.137144
0.135882
0.135093
0.134327
0.13305
0.133905
0.134764
0.133745
0.132844
0.131939
0.131029
0.130152
0.129031
0.128081
0.12704
0.126039
0.125069
0.12402
0.122979
0.122014
0.120927
0.120036
0.118898
0.118074
0.117342
0.118539
0.119246
0.120409
0.121168
0.122296
0.123111
0.124197
0.125067
0.126113
0.127151
0.128043
0.129037
0.129983
0.130936
0.131879
0.132811
0.131949
0.130995
0.130024
0.129187
0.128176
0.127386
0.126339
0.125275
0.124511
0.123411
0.122694
0.12156
0.120889
0.119722
0.119097
0.1179
0.116687
0.115458
0.114219
0.112972
0.111716
0.111045
0.109768
0.109153
0.107841
0.106519
0.105222
0.104603
0.105943
0.107285
0.106799
0.105444
0.104082
0.102718
0.102253
0.100858
0.100449
0.09904
0.0986798
0.0972575
0.0969436
0.0955045
0.0940541
0.0926107
0.0911359
0.0908587
0.0893862
0.0891522
0.0876752
0.0861669
0.0847341
0.0844886
0.0859925
0.0874878
0.0889701
0.0904517
0.0906316
0.0921016
0.0923289
0.093783
0.0935627
0.0933826
0.0919211
0.0917787
0.0903118
0.0888333
0.0873477
0.0858566
0.0843529
0.0842601
0.0857618
0.0872502
0.0871875
0.0857033
0.0842081
0.082708
0.0826929
0.0811932
0.0812165
0.0797127
0.0782053
0.0766915
0.0767708
0.0752542
0.0737412
0.0738672
0.0723545
0.0725227
0.0740213
0.0755173
0.0753734
0.0768769
0.0783702
0.0782738
0.0797752
0.0812667
0.0813399
0.0798604
0.0799648
0.0784887
0.0770063
0.0771552
0.0756809
0.0741986
0.0727138
0.0729238
0.0743939
0.0758603
0.076053
0.0746031
0.0731488
0.0733855
0.0748232
0.0762563
0.0776853
0.0774975
0.0773199
0.0787747
0.0786245
0.0800862
0.0815413
0.0814325
0.0828942
0.0828142
0.0827514
0.0827093
0.084197
0.0841891
0.0856753
0.087153
0.0886206
0.0886642
0.0887337
0.0902059
0.0916678
0.0931182
0.0932361
0.0946808
0.0948332
0.0950174
0.0952389
0.09668
0.098113
0.0983743
0.0997955
0.100098
0.101506
0.101852
0.103242
0.103632
0.105007
0.106369
0.105987
0.104623
0.104281
0.102899
0.102597
0.101204
0.100939
0.0995327
0.0993048
0.0978888
0.0964584
0.0962708
0.0976961
0.0991067
0.100503
0.100707
0.102093
0.10233
0.103705
0.103977
0.105339
0.105645
0.106994
0.107337
0.107717
0.10814
0.108615
0.109935
0.110457
0.111755
0.112327
0.113595
0.113037
0.112533
0.111243
0.110782
0.109469
0.109049
0.110363
0.111659
0.112076
0.113352
0.113807
0.114305
0.114852
0.116094
0.117318
0.118523
0.117995
0.116785
0.115554
0.115061
0.116295
0.117507
0.117055
0.115842
0.114607
0.11419
0.112935
0.112552
0.111277
0.109983
0.108669
0.108324
0.109636
0.110927
0.1122
0.11345
0.113805
0.115038
0.115424
0.116636
0.116248
0.115888
0.11468
0.11435
0.113124
0.111876
0.110607
0.109319
0.108011
0.106684
0.106404
0.105063
0.104816
0.103463
0.103247
0.101883
0.101698
0.100325
0.0989353
0.0975311
0.0961128
0.0959808
0.094556
0.0944552
0.0930255
0.0915835
0.0901289
0.090077
0.0915225
0.0929556
0.0943764
0.0957837
0.0958716
0.0972745
0.0973914
0.098788
0.098663
0.0985581
0.097178
0.0971008
0.0957156
0.0943172
0.0929058
0.0914822
0.0900464
0.0885992
0.0871423
0.0856733
0.0856938
0.0842275
0.0842778
0.0843455
0.0857897
0.0857335
0.0871796
0.087152
0.0885984
0.0900351
0.0914605
0.0928742
0.0928595
0.0914561
0.0900414
0.0886157
0.0886485
0.0872239
0.0872823
0.0858602
0.0844283
0.0829895
0.0830982
0.0816636
0.080222
0.0803699
0.078937
0.0791094
0.0805278
0.0819413
0.0817975
0.0832185
0.0846317
0.0845243
0.0859436
0.0873536
0.0874363
0.0860383
0.0861428
0.0847489
0.0833488
0.0834875
0.0820934
0.080694
0.07929
0.0778813
0.076468
0.0750516
0.0736309
0.0722093
0.0707823
0.0693581
0.0679273
0.0665028
0.0650707
0.0636487
0.0640456
0.0626382
0.0630642
0.0634908
0.0648458
0.0644461
0.0658205
0.0654436
0.0668533
0.0682561
0.0696665
0.0710707
0.0713628
0.0699785
0.0685885
0.0672077
0.067562
0.0661981
0.0665729
0.0652414
0.0639136
0.0643276
0.0656307
0.0669414
0.0673005
0.0660108
0.0647303
0.0651194
0.0663786
0.0676479
0.0689251
0.0685971
0.0682589
0.0679131
0.0692541
0.0689221
0.0702913
0.0716565
0.0719495
0.0706022
0.0709087
0.069581
0.0699002
0.0702096
0.0715006
0.071209
0.0725219
0.0722387
0.0735732
0.0733016
0.0730273
0.0727526
0.0724791
0.0738825
0.0752862
0.0766859
0.0769082
0.0755249
0.0741381
0.0743956
0.0757658
0.077133
0.0785002
0.0782905
0.0780836
0.0794771
0.0808668
0.0822522
0.0824164
0.0810446
0.0796691
0.0798642
0.081226
0.0825846
0.0827552
0.0814094
0.080061
0.078711
0.0773586
0.0760067
0.074653
0.0749082
0.0762458
0.0775831
0.0778047
0.0764811
0.0751592
0.0738396
0.074099
0.0727973
0.0730626
0.0717816
0.0705073
0.0692398
0.0679807
0.0667309
0.0654908
0.064264
0.0630492
0.0634417
0.0622636
0.0626497
0.061508
0.0603864
0.0607798
0.0596975
0.060072
0.0590313
0.0580151
0.0583801
0.0593811
0.0604068
0.0607008
0.0596878
0.0587001
0.0589741
0.0599507
0.060953
0.0619801
0.0617386
0.0614573
0.0611373
0.0622237
0.0618828
0.0630066
0.0641478
0.0638086
0.0649844
0.0646362
0.0658435
0.0670649
0.0682967
0.0685938
0.0673784
0.0661742
0.0664802
0.0653068
0.065601
0.0644571
0.0633314
0.0636227
0.0625292
0.0627981
0.0630294
0.0640996
0.0638792
0.0649796
0.0647346
0.0658653
0.0670115
0.0667599
0.0679344
0.0676687
0.0688694
0.0700818
0.0698202
0.0695387
0.0707902
0.0720495
0.0733157
0.0735546
0.0723022
0.0710565
0.0713045
0.0725373
0.0737774
0.0739824
0.0727532
0.071532
0.0703212
0.0691219
0.0693495
0.0681736
0.068385
0.0672337
0.0660984
0.0662991
0.0651905
0.0653649
0.0642822
0.0632199
0.0621789
0.0611609
0.0601671
0.0591993
0.0582585
0.0573462
0.0564641
0.0556137
0.054796
0.0540121
0.0532641
0.0525517
0.052768
0.0534763
0.0542196
0.0543604
0.0536201
0.0529145
0.0529997
0.0537038
0.0544423
0.0552157
0.0551357
0.0549984
0.0558104
0.0566553
0.057531
0.0576564
0.056785
0.0559438
0.0560217
0.0568606
0.0577297
0.0586292
0.0585583
0.0584369
0.0593712
0.0603324
0.06132
0.0614285
0.0604452
0.0594884
0.0595567
0.0605111
0.0614919
0.0624966
0.0624356
0.0623312
0.0633659
0.0644225
0.0654989
0.0655903
0.0645181
0.0634658
0.0635241
0.064574
0.0656436
0.0667327
0.0666815
0.0665941
0.066466
0.0675848
0.0674255
0.0685677
0.0697249
0.0695508
0.0707295
0.0705375
0.0717376
0.0729486
0.0741682
0.0743335
0.0731221
0.0719203
0.0720785
0.0708957
0.0710336
0.0698699
0.0687197
0.0688366
0.0677074
0.0677911
0.06784
0.0689631
0.0689164
0.0700576
0.0699814
0.0711399
0.0723112
0.0722099
0.0733978
0.0732725
0.0744767
0.0756899
0.0755536
0.0753967
0.0752204
0.0750258
0.0748147
0.0745885
0.0743494
0.0756397
0.0754037
0.0767114
0.0780216
0.0793328
0.079129
0.0789211
0.0802577
0.0815933
0.0829269
0.0830981
0.081776
0.0804528
0.0806445
0.0819561
0.0832672
0.0834326
0.0821317
0.0808311
0.0795308
0.0782317
0.0769346
0.077148
0.0758657
0.0760796
0.0762796
0.0775396
0.0773501
0.0786249
0.0784334
0.0797212
0.0810109
0.0823013
0.0835926
0.0837458
0.0824633
0.0811822
0.0799023
0.0800725
0.0788043
0.0789702
0.0777149
0.0764644
0.0766321
0.0778743
0.0791213
0.0792565
0.0780163
0.0767813
0.0769113
0.0781398
0.0793745
0.0806143
0.0805023
0.0803738
0.0802301
0.0814929
0.0813434
0.082616
0.0838904
0.0840251
0.0827579
0.0828876
0.0816294
0.0817517
0.0818585
0.0831061
0.0830041
0.0842592
0.0841483
0.0854104
0.0852935
0.0851657
0.0850286
0.0848839
0.084733
0.0845774
0.0844188
0.0842587
0.0840987
0.0839401
0.0837845
0.0836332
0.0850077
0.0848747
0.086256
0.0876305
0.087529
0.0889071
0.0888259
0.088755
0.0886954
0.0900986
0.090063
0.0914669
0.0928599
0.0928742
0.0914917
0.0915291
0.0901469
0.0902066
0.0902767
0.0916374
0.091578
0.0929394
0.0929011
0.0942621
0.0942455
0.0942413
0.0942511
0.0942758
0.0956647
0.0970407
0.098403
0.0984719
0.0998294
0.0999239
0.100037
0.10017
0.101536
0.102887
0.103056
0.104396
0.104594
0.105924
0.106151
0.107469
0.107726
0.10903
0.110315
0.110047
0.108767
0.108529
0.107236
0.107025
0.10572
0.105538
0.104221
0.104065
0.102739
0.101396
0.101275
0.10261
0.10393
0.105233
0.105376
0.106668
0.106837
0.108118
0.108313
0.109582
0.109803
0.111058
0.111307
0.111579
0.112823
0.114046
0.115248
0.115556
0.116739
0.117074
0.117436
0.117826
0.118245
0.118696
0.119183
0.119707
0.120274
0.121431
0.122037
0.123164
0.123811
0.124907
0.125594
0.126657
0.127698
0.128415
0.129422
0.130179
0.13115
0.130406
0.129711
0.128717
0.128058
0.127032
0.125981
0.125351
0.12427
0.123677
0.122565
0.122008
0.120869
0.120348
0.119863
0.121007
0.12149
0.122608
0.123124
0.124215
0.124764
0.125827
0.126409
0.127442
0.128449
0.12906
0.130035
0.130679
0.131366
0.132099
0.132883
0.133726
0.134635
0.135622
0.136699
0.137884
0.139219
0.140705
0.142374
0.144265
0.146406
0.148811
0.148812
0.151278
0.151251
0.151378
0.153742
0.153866
0.154103
0.1544
0.154716
0.152714
0.152336
0.151965
0.151631
0.149607
0.149238
0.148961
0.146907
0.146595
0.144623
0.145073
0.145584
0.147314
0.14778
0.148276
0.150027
0.150466
0.150903
0.151314
0.153078
0.155021
0.155296
0.157388
0.157557
0.159822
0.159853
0.159786
0.162078
0.16462
0.167428
0.166873
0.169732
0.168875
0.167967
0.165531
0.16623
0.163771
0.164234
0.161827
0.15965
0.159465
0.161516
0.16115
0.163251
0.16269
0.164796
0.167034
0.169356
0.171691
0.17394
0.176014
0.177782
0.179117
0.176825
0.174768
0.172903
0.172078
0.17381
0.175701
0.174176
0.172475
0.170898
0.16943
0.170484
0.171199
0.169632
0.168185
0.166842
0.166362
0.167639
0.169009
0.168061
0.166781
0.165581
0.164572
0.165682
0.166858
0.168107
0.169433
0.170842
0.172343
0.170331
0.169029
0.167787
0.166035
0.167107
0.168217
0.166098
0.165172
0.164265
0.163384
0.165005
0.166605
0.165483
0.164419
0.16341
0.162173
0.163073
0.164017
0.162531
0.161711
0.160925
0.160172
0.161315
0.162454
0.163524
0.164454
0.165168
0.165594
0.16443
0.163344
0.162329
0.162017
0.163001
0.164049
0.163394
0.162397
0.161458
0.160572
0.161094
0.161379
0.16049
0.159657
0.158876
0.158638
0.159408
0.160225
0.159736
0.158947
0.158201
0.157641
0.158347
0.159093
0.159883
0.160718
0.161601
0.162535
0.161546
0.160687
0.159872
0.158988
0.159724
0.1605
0.159453
0.158767
0.158114
0.157493
0.15829
0.159101
0.158371
0.15768
0.157028
0.156411
0.157002
0.157629
0.156903
0.156343
0.155813
0.155243
0.155713
0.156208
0.156728
0.157273
0.157844
0.158441
0.159064
0.159713
0.160386
0.161082
0.1618
0.16254
0.16329
0.164045
0.162104
0.161503
0.160896
0.159366
0.159834
0.160295
0.160739
0.158942
0.159224
0.157474
0.157596
0.157684
0.15772
0.157674
0.155712
0.155529
0.153696
0.153411
0.151693
0.152044
0.152356
0.153938
0.154143
0.155837
0.155905
0.15592
0.155892
0.154453
0.154402
0.1543
0.152839
0.152622
0.151237
0.150921
0.150563
0.150156
0.149712
0.149248
0.148773
0.14722
0.146676
0.14613
0.14462
0.144023
0.143433
0.142873
0.141314
0.141944
0.142601
0.143268
0.143926
0.145231
0.145833
0.146413
0.147762
0.14828
0.14876
0.149206
0.149608
0.148403
0.147963
0.147483
0.146965
0.14576
0.145177
0.144564
0.143398
0.14273
0.142038
0.14133
0.140612
0.139903
0.138643
0.139411
0.140168
0.139099
0.138312
0.137508
0.136468
0.1373
0.138111
0.1389
0.139866
0.140909
0.141628
0.142322
0.142986
0.144039
0.144648
0.145223
0.146308
0.146819
0.147292
0.147724
0.148802
0.149969
0.150285
0.151506
0.151732
0.153011
0.153136
0.153213
0.154463
0.155824
0.157313
0.157115
0.158634
0.158301
0.157948
0.157583
0.158891
0.160297
0.159706
0.159126
0.15856
0.157476
0.157942
0.158415
0.157211
0.156834
0.156458
0.155503
0.155799
0.156089
0.156369
0.156637
0.156888
0.155587
0.155721
0.154439
0.153256
0.153269
0.154383
0.154299
0.155424
0.155241
0.155042
0.154828
0.154605
0.153759
0.153917
0.154062
0.15419
0.153209
0.153252
0.152275
0.152233
0.152164
0.152062
0.151918
0.150793
0.150559
0.149476
0.14916
0.148117
0.14847
0.148785
0.149752
0.149991
0.150989
0.151148
0.151271
0.151362
0.150507
0.150367
0.150195
0.149306
0.149063
0.148194
0.14788
0.147532
0.147147
0.146723
0.146261
0.145761
0.144778
0.144216
0.143618
0.14266
0.142008
0.141324
0.140609
0.139662
0.140394
0.141096
0.141765
0.142401
0.143278
0.14386
0.144407
0.145303
0.14579
0.146241
0.146655
0.147033
0.146238
0.145832
0.145393
0.144918
0.144099
0.143568
0.143002
0.142196
0.141578
0.140927
0.140242
0.139526
0.138778
0.138
0.137195
0.136363
0.135509
0.134621
0.135493
0.13634
0.13554
0.134681
0.133794
0.133022
0.13392
0.13479
0.135633
0.136372
0.13716
0.137951
0.138712
0.139442
0.138689
0.137947
0.137175
0.136445
0.137228
0.13798
0.137312
0.13655
0.135758
0.134937
0.134086
0.133207
0.132299
0.131621
0.132536
0.133422
0.132798
0.131905
0.130983
0.130383
0.12943
0.128861
0.127876
0.126864
0.126322
0.125281
0.12477
0.123701
0.123221
0.122126
0.121675
0.120556
0.119412
0.118992
0.120135
0.121255
0.120862
0.119743
0.118601
0.118238
0.119378
0.120496
0.121591
0.121958
0.12235
0.122771
0.123842
0.124291
0.125336
0.125813
0.126831
0.127337
0.128325
0.129288
0.129819
0.13075
0.13131
0.132209
0.133081
0.133663
0.134281
0.13511
0.135911
0.136681
0.136087
0.135308
0.1345
0.133923
0.134739
0.135525
0.136283
0.136837
0.137423
0.138044
0.138702
0.139399
0.14014
0.140805
0.141438
0.142038
0.14278
0.14333
0.143847
0.144596
0.145059
0.145489
0.144783
0.144331
0.143644
0.14314
0.142605
0.141922
0.141339
0.140724
0.140078
0.139392
0.140051
0.14068
0.141278
0.141845
0.142474
0.142995
0.143487
0.144116
0.144559
0.145203
0.145886
0.14661
0.147377
0.147689
0.148473
0.14872
0.149517
0.149699
0.149853
0.150618
0.151428
0.15229
0.152282
0.153144
0.15306
0.152961
0.152849
0.153591
0.154376
0.155205
0.156085
0.157019
0.158011
0.15748
0.156967
0.156474
0.155717
0.156138
0.156572
0.155717
0.155354
0.155
0.154655
0.155311
0.156001
0.155547
0.155113
0.154699
0.154179
0.154542
0.154919
0.15432
0.153995
0.153682
0.153205
0.153472
0.153748
0.15403
0.154318
0.154611
0.154907
0.154141
0.153905
0.153668
0.153049
0.153234
0.153415
0.152726
0.152595
0.152458
0.152317
0.152863
0.153433
0.1532
0.152971
0.152747
0.152307
0.15249
0.152676
0.152174
0.152028
0.151883
0.151475
0.151584
0.151691
0.151795
0.151894
0.151986
0.15207
0.152144
0.152206
0.152253
0.15149
0.151469
0.150703
0.149981
0.150084
0.150768
0.150812
0.151491
0.151475
0.151446
0.151405
0.151353
0.150836
0.150849
0.150851
0.150839
0.150234
0.150168
0.149557
0.149436
0.149294
0.149129
0.148938
0.148221
0.147969
0.14726
0.14695
0.146253
0.146591
0.1469
0.147542
0.147797
0.148445
0.148643
0.148819
0.148973
0.148419
0.148234
0.148027
0.147442
0.147183
0.146602
0.146292
0.145957
0.145595
0.144972
0.145358
0.145716
0.145171
0.14479
0.144383
0.143949
0.143372
0.142892
0.142383
0.141804
0.141251
0.140669
0.140058
0.139416
0.138745
0.138134
0.138817
0.13947
0.138915
0.138251
0.137558
0.137014
0.137716
0.13839
0.139037
0.139551
0.140094
0.14069
0.141257
0.141797
0.142329
0.142827
0.143298
0.143826
0.144252
0.144653
0.14503
0.145527
0.14605
0.146359
0.146887
0.147149
0.147677
0.147891
0.148086
0.148584
0.149108
0.149658
0.149742
0.150283
0.150319
0.150341
0.150353
0.150814
0.151294
0.151228
0.151157
0.151082
0.150703
0.150746
0.150783
0.150356
0.15035
0.150338
0.149986
0.14997
0.149945
0.149911
0.149867
0.149811
0.149327
0.149226
0.148732
0.148262
0.148421
0.148863
0.14898
0.149414
0.149488
0.149551
0.149604
0.149648
0.149323
0.149253
0.149174
0.149083
0.148695
0.148565
0.148168
0.147998
0.147813
0.14761
0.14739
0.146912
0.146646
0.146169
0.145859
0.145384
0.145716
0.146026
0.146458
0.146727
0.147158
0.147385
0.147595
0.147789
0.147427
0.14721
0.146977
0.146589
0.146317
0.145927
0.145616
0.145285
0.144933
0.14456
0.144163
0.143743
0.143261
0.142798
0.142311
0.141823
0.141294
0.14074
0.140159
0.139657
0.140251
0.140818
0.141361
0.141878
0.142325
0.142804
0.143258
0.143699
0.144113
0.144505
0.144876
0.145226
0.144855
0.144488
0.144099
0.14369
0.143289
0.142841
0.142371
0.141962
0.141454
0.140923
0.140368
0.139788
0.139183
0.138552
0.137895
0.137211
0.136499
0.135761
0.134995
0.134202
0.13338
0.132531
0.131654
0.131132
0.130223
0.129727
0.128788
0.127822
0.127349
0.126355
0.125909
0.124888
0.124468
0.123422
0.123029
0.122661
0.123708
0.124075
0.125098
0.125491
0.126488
0.126905
0.127875
0.128317
0.12926
0.130175
0.130639
0.131525
0.132013
0.132868
0.133695
0.134495
0.134023
0.133217
0.132384
0.131929
0.131065
0.130633
0.129739
0.12882
0.128407
0.12746
0.12707
0.126097
0.12573
0.124731
0.124388
0.123365
0.122318
0.121248
0.120155
0.119039
0.1179
0.117587
0.116429
0.116142
0.114964
0.113766
0.112547
0.112294
0.113509
0.114703
0.114463
0.113273
0.112063
0.110832
0.110626
0.109382
0.109201
0.107944
0.107788
0.106519
0.106387
0.105108
0.103811
0.1025
0.101172
0.101087
0.0997519
0.0996905
0.0983504
0.0969969
0.09563
0.0956106
0.0969682
0.0983126
0.0996441
0.100962
0.101017
0.102328
0.102406
0.10371
0.103625
0.103555
0.102265
0.102217
0.100921
0.0996115
0.0982886
0.0969532
0.0956052
0.0956127
0.0969514
0.0982776
0.0982787
0.0969611
0.0956317
0.0942906
0.0943301
0.0929885
0.0930475
0.091706
0.0903559
0.088997
0.0890951
0.0877398
0.0863773
0.0865044
0.0851466
0.0852902
0.0866365
0.0879765
0.0878555
0.0892004
0.0905382
0.0904435
0.0917833
0.0931151
0.0931908
0.0918684
0.0919599
0.0906393
0.0893114
0.0894269
0.0881019
0.0867725
0.0854372
0.0855862
0.086911
0.0882305
0.0883606
0.0870506
0.0857358
0.0858845
0.08719
0.0884912
0.089789
0.0896671
0.089546
0.0908553
0.0907453
0.0920571
0.0933621
0.0932733
0.0945787
0.0945045
0.0944378
0.0943794
0.095702
0.0956618
0.096982
0.0982911
0.0995888
0.0995845
0.0995919
0.100893
0.102181
0.103455
0.103498
0.104765
0.104829
0.104907
0.104999
0.106271
0.107528
0.107649
0.108894
0.109039
0.110273
0.11044
0.111661
0.111852
0.113058
0.114244
0.114043
0.112862
0.112684
0.111488
0.111332
0.110122
0.109989
0.108767
0.108655
0.107422
0.106172
0.106087
0.10733
0.108557
0.109768
0.109871
0.111069
0.111192
0.112379
0.112523
0.113696
0.113861
0.115019
0.115205
0.11541
0.115634
0.115877
0.11703
0.117297
0.118432
0.118724
0.119838
0.119543
0.11927
0.118161
0.117911
0.116783
0.116556
0.117681
0.118785
0.119018
0.120103
0.120358
0.120633
0.120929
0.121998
0.123044
0.124067
0.123767
0.122745
0.1217
0.121424
0.122467
0.123488
0.123229
0.122209
0.121167
0.12093
0.119868
0.11965
0.11857
0.117469
0.116348
0.116157
0.117275
0.118373
0.11945
0.120507
0.12071
0.121748
0.121969
0.122988
0.122765
0.122559
0.121544
0.121355
0.120321
0.119267
0.118192
0.117098
0.115983
0.114849
0.114696
0.113547
0.113413
0.11225
0.112136
0.11096
0.110866
0.109679
0.108474
0.107253
0.106017
0.10596
0.104715
0.104678
0.103425
0.102158
0.100878
0.100874
0.102147
0.103407
0.1034
0.102148
0.100882
0.099604
0.0983143
0.0970137
0.0970549
0.0957516
0.0958099
0.0958758
0.0971631
0.097105
0.0983898
0.0983474
0.0996294
0.1009
0.102159
0.103405
0.103421
0.10218
0.100928
0.0996645
0.0997086
0.0984409
0.0984995
0.0972281
0.0959483
0.0946592
0.0947444
0.0934554
0.0921584
0.0922632
0.090968
0.0910819
0.0923696
0.0936513
0.0935522
0.094834
0.0961092
0.0960265
0.0972996
0.0985643
0.0986341
0.097376
0.0974557
0.0961951
0.0949265
0.0950203
0.0937513
0.0924762
0.0911956
0.0899102
0.0886206
0.0873275
0.0860308
0.0861732
0.0874616
0.088747
0.0888692
0.087591
0.08631
0.0864397
0.0877138
0.0889855
0.090255
0.0901448
0.0900293
0.0913077
0.0925817
0.0938506
0.093948
0.0926848
0.0914168
0.0915213
0.0927837
0.0940417
0.0941305
0.0928773
0.0916198
0.0903588
0.0890944
0.0878289
0.086561
0.0866724
0.0879348
0.0891952
0.0892861
0.0880303
0.0867729
0.0855157
0.0856081
0.0843563
0.0844378
0.0831916
0.0819481
0.0807083
0.079473
0.0782432
0.0770198
0.0758037
0.0745961
0.0746882
0.0734946
0.0735611
0.0723806
0.0712129
0.0712557
0.0701021
0.0724214
0.0736001
0.0747887
0.0747514
0.0759524
0.0758918
0.0771035
0.0783233
0.0795492
0.0796016
0.0783785
0.0771611
0.0771951
0.075988
0.078411
0.0796327
0.0808611
0.0808315
0.0807812
0.0820175
0.0832578
0.0845014
0.0845452
0.0833035
0.0820652
0.0820936
0.0833306
0.0845711
0.0858129
0.0857882
0.0857465
0.0856858
0.0869351
0.086861
0.0881142
0.0893662
0.0906177
0.0905413
0.0904546
0.091711
0.092964
0.094213
0.0942882
0.0930428
0.0917936
0.0918665
0.0931122
0.0943548
0.0955928
0.0955289
0.095457
0.0953787
0.0952945
0.0952057
0.0951137
0.0963705
0.0962827
0.0975377
0.0987846
0.0987078
0.0999518
0.0998833
0.0998193
0.0997607
0.101011
0.100966
0.102212
0.103446
0.10348
0.102252
0.102299
0.101064
0.101123
0.101186
0.102411
0.102352
0.103571
0.103522
0.104735
0.104697
0.104668
0.104648
0.104639
0.10464
0.104653
0.105885
0.105916
0.10714
0.10719
0.108405
0.108349
0.108306
0.107103
0.107078
0.105866
0.105859
0.107065
0.108257
0.108275
0.109458
0.109493
0.109542
0.109604
0.110785
0.111951
0.112037
0.11319
0.113294
0.114435
0.114558
0.115684
0.115826
0.116937
0.118028
0.117878
0.11679
0.116659
0.115556
0.115443
0.114326
0.114231
0.113099
0.113023
0.111879
0.110718
0.110665
0.111821
0.11296
0.114082
0.11415
0.115259
0.115344
0.116439
0.116542
0.117623
0.117743
0.118809
0.118947
0.119099
0.120151
0.121183
0.122194
0.122369
0.123361
0.123553
0.12376
0.123985
0.124227
0.124487
0.124766
0.125066
0.125387
0.126362
0.126705
0.127655
0.128019
0.128943
0.129329
0.130225
0.131097
0.1315
0.132343
0.132767
0.133578
0.133159
0.132764
0.131943
0.131567
0.130717
0.129842
0.129483
0.128581
0.128241
0.127313
0.126994
0.126042
0.125742
0.125463
0.126416
0.126695
0.127625
0.127923
0.128829
0.129145
0.130025
0.13036
0.131213
0.132043
0.132392
0.133193
0.133561
0.13395
0.134364
0.134803
0.135268
0.136014
0.136734
0.137427
0.136985
0.136283
0.135556
0.135124
0.135859
0.136568
0.137252
0.137661
0.138094
0.138735
0.139351
0.139943
0.13954
0.138938
0.138312
0.137912
0.138548
0.13916
0.138801
0.13818
0.137535
0.136867
0.136174
0.135458
0.134716
0.134332
0.13508
0.135803
0.135453
0.134724
0.133971
0.13363
0.132848
0.132523
0.131714
0.130881
0.130569
0.129711
0.129416
0.128532
0.128254
0.127346
0.127086
0.126155
0.125202
0.12496
0.125913
0.126844
0.126618
0.125687
0.124734
0.124526
0.125478
0.126409
0.127319
0.127528
0.127753
0.127995
0.128882
0.12914
0.130003
0.130277
0.131115
0.131405
0.132218
0.133008
0.133309
0.134073
0.134388
0.135123
0.135836
0.136159
0.136503
0.137179
0.137832
0.138462
0.138142
0.137503
0.136843
0.136526
0.137194
0.137839
0.137554
0.136902
0.136227
0.135531
0.134813
0.134521
0.133776
0.133497
0.132725
0.131931
0.131663
0.130844
0.13059
0.129747
0.129507
0.128641
0.128417
0.128208
0.129076
0.129284
0.13013
0.130352
0.131175
0.131411
0.132211
0.132459
0.133235
0.133988
0.134246
0.134975
0.135244
0.135946
0.136626
0.137286
0.137033
0.136367
0.135681
0.135433
0.134721
0.134483
0.133746
0.132989
0.132759
0.131978
0.13176
0.130955
0.13075
0.129923
0.129732
0.128883
0.128014
0.127125
0.126215
0.125284
0.124333
0.124155
0.123185
0.123023
0.122034
0.121025
0.119995
0.119855
0.120881
0.121888
0.121757
0.120752
0.119728
0.118685
0.118575
0.117516
0.117424
0.11635
0.116275
0.115188
0.115131
0.114029
0.11291
0.111776
0.110624
0.110597
0.109435
0.109424
0.108251
0.107064
0.105863
0.105877
0.107074
0.108256
0.109425
0.110579
0.110582
0.111725
0.111744
0.112875
0.112852
0.112842
0.111719
0.111723
0.110587
0.109437
0.108272
0.107093
0.105901
0.105934
0.107122
0.108296
0.108329
0.107159
0.105974
0.104779
0.104829
0.103626
0.103684
0.102473
0.101253
0.100023
0.100096
0.0988623
0.0976201
0.0977021
0.0964573
0.0965415
0.097782
0.0990158
0.0989398
0.10017
0.101391
0.101322
0.102538
0.103745
0.103807
0.102603
0.102668
0.10146
0.100242
0.10031
0.0990883
0.097858
0.0966217
0.0966966
0.0979294
0.0991562
0.0992184
0.0979947
0.096765
0.0968258
0.0980528
0.099274
0.100489
0.100435
0.100375
0.101587
0.101525
0.102731
0.103928
0.103868
0.105058
0.104999
0.104941
0.104883
0.106071
0.106021
0.107201
0.108369
0.109524
0.109487
0.109458
0.110605
0.111739
0.112857
0.112844
0.11395
0.113951
0.113964
0.11399
0.115088
0.11617
0.116215
0.117283
0.117346
0.118398
0.118479
0.119517
0.119615
0.120637
0.121639
0.121536
0.120535
0.120449
0.119433
0.119364
0.118332
0.118281
0.117234
0.1172
0.116138
0.115059
0.115044
0.11612
0.11718
0.118223
0.118245
0.119273
0.119311
0.120323
0.120378
0.121374
0.121447
0.122427
0.122517
0.122623
0.122742
0.122876
0.123844
0.123993
0.124942
0.125106
0.126036
0.125871
0.12572
0.124792
0.124656
0.123708
0.123587
0.124533
0.125459
0.125583
0.126491
0.126629
0.126781
0.126946
0.127835
0.128705
0.129554
0.12939
0.12854
0.12767
0.127518
0.128388
0.129239
0.1291
0.12825
0.12738
0.127255
0.126366
0.126256
0.125349
0.124424
0.12348
0.123388
0.12433
0.125254
0.12616
0.127046
0.127143
0.128012
0.128124
0.128975
0.128863
0.128765
0.127915
0.127833
0.126966
0.126079
0.125175
0.124252
0.123311
0.122352
0.122293
0.121317
0.121276
0.120283
0.120258
0.119249
0.11924
0.118215
0.117173
0.116115
0.115041
0.115049
0.11396
0.11398
0.112878
0.111762
0.110632
0.110665
0.111794
0.112907
0.114008
0.115092
0.115067
0.116138
0.116121
0.117178
0.117193
0.117216
0.116162
0.116193
0.115124
0.114041
0.112943
0.111831
0.110705
0.109566
0.108413
0.107249
0.1073
0.106125
0.106181
0.106237
0.107406
0.107352
0.108512
0.108461
0.109611
0.110748
0.111872
0.112982
0.113025
0.111917
0.110794
0.109659
0.109708
0.108563
0.108613
0.107458
0.106292
0.105115
0.105169
0.103985
0.10279
0.102845
0.101644
0.101695
0.102894
0.104084
0.104037
0.105219
0.106392
0.106344
0.107508
0.108661
0.108706
0.107554
0.107596
0.106435
0.105264
0.105303
0.104124
0.102936
0.101739
0.100534
0.0993216
0.0981026
0.0968773
0.0956468
0.094411
0.0931709
0.0919281
0.0906821
0.0894341
0.0881849
0.08824
0.0869934
0.0870335
0.0870572
0.088301
0.0882784
0.089524
0.0894873
0.0907325
0.0919766
0.0932175
0.0944551
0.094486
0.09325
0.0920104
0.0907676
0.0907884
0.0895457
0.0920303
0.0932691
0.0945043
0.0957365
0.0957189
0.0956892
0.0969178
0.0981419
0.099359
0.0993851
0.0981691
0.0969462
0.0969631
0.0981853
0.0994006
0.10061
0.100595
0.10057
0.101774
0.102969
0.104156
0.104178
0.102992
0.101798
0.101812
0.103006
0.104192
0.105369
0.105356
0.105334
0.106503
0.106473
0.107632
0.108782
0.108747
0.109886
0.109846
0.109803
0.109757
0.110888
0.110841
0.111962
0.113069
0.113113
0.112007
0.112051
0.110933
0.110975
0.111013
0.112128
0.112091
0.113195
0.113155
0.114247
0.114206
0.114163
0.114121
0.114079
0.115161
0.116229
0.117282
0.117247
0.118285
0.118255
0.118233
0.118218
0.119242
0.12025
0.120248
0.121239
0.12125
0.122224
0.122251
0.123208
0.123251
0.124191
0.125113
0.125068
0.124147
0.124119
0.12318
0.123169
0.122212
0.122214
0.12124
0.121254
0.120263
0.119256
0.119278
0.120285
0.121276
0.12225
0.122227
0.123184
0.123171
0.12411
0.124108
0.125029
0.125041
0.125944
0.125971
0.126016
0.126902
0.127769
0.128619
0.128683
0.129515
0.129597
0.129695
0.129807
0.129932
0.13007
0.13022
0.130383
0.13056
0.131368
0.131557
0.132343
0.132544
0.133308
0.13352
0.13426
0.13498
0.135199
0.135895
0.136124
0.136795
0.136571
0.136361
0.13568
0.135479
0.134775
0.134051
0.133856
0.13311
0.132925
0.132156
0.131983
0.131193
0.131031
0.130882
0.131675
0.131823
0.132595
0.132754
0.133505
0.133674
0.134404
0.134583
0.135291
0.135979
0.136164
0.136829
0.137022
0.137227
0.137445
0.137678
0.137924
0.138186
0.138464
0.138758
0.13907
0.1394
0.139749
0.140119
0.14051
0.141053
0.141574
0.142072
0.142446
0.142908
0.143349
0.143714
0.144119
0.144504
0.144869
0.145204
0.145556
0.145868
0.14622
0.146495
0.146844
0.147082
0.147305
0.147629
0.147968
0.148323
0.148465
0.148812
0.148917
0.149011
0.148712
0.148594
0.148285
0.148133
0.147816
0.147512
0.147707
0.147989
0.14815
0.148425
0.148554
0.14882
0.149096
0.149384
0.149684
0.149996
0.15032
0.150656
0.151004
0.151365
0.151739
0.152126
0.152528
0.152946
0.15338
0.153832
0.154304
0.154796
0.155311
0.155852
0.156412
0.156975
0.157497
0.157912
0.158143
0.15816
0.158011
0.157735
0.157353
0.156866
0.15626
0.155509
0.154578
0.153347
0.151435
0.151039
0.150689
0.150381
0.150114
0.149883
0.149687
0.149523
0.14939
0.149288
0.149215
0.149169
0.149147
0.14915
0.149176
0.149223
0.149821
0.149854
0.149909
0.149987
0.15009
0.150219
0.150376
0.150563
0.150782
0.151033
0.151317
0.151638
0.151999
0.152402
0.152851
0.15401
0.153492
0.153022
0.153797
0.154318
0.154887
0.155602
0.154997
0.154441
0.153932
0.153323
0.152597
0.152214
0.151873
0.151569
0.152159
0.152506
0.152894
0.153469
0.153047
0.152667
0.153116
0.153518
0.153961
0.154447
0.154978
0.155556
0.156185
0.15666
0.156019
0.155427
0.155796
0.156393
0.157038
0.157317
0.156671
0.156071
0.155514
0.155245
0.154883
0.154384
0.153928
0.153512
0.15384
0.15427
0.154738
0.154996
0.154514
0.154067
0.153649
0.153445
0.153134
0.152755
0.152326
0.151849
0.1513
0.151063
0.150857
0.150681
0.151123
0.151333
0.151575
0.152022
0.151753
0.151516
0.15131
0.150943
0.150532
0.15041
0.15031
0.150231
0.150557
0.150664
0.150791
0.151131
0.150978
0.150846
0.151102
0.151264
0.151446
0.15165
0.15188
0.152139
0.15243
0.152791
0.15248
0.152198
0.152433
0.152745
0.153081
0.153259
0.152893
0.152548
0.152225
0.152144
0.151941
0.151706
0.15149
0.15129
0.15138
0.151619
0.151873
0.151921
0.151633
0.151362
0.151111
0.151154
0.151103
0.150954
0.150731
0.150468
0.150173
0.14981
0.149291
0.149378
0.14948
0.149592
0.149708
0.149809
0.149945
0.149912
0.149874
0.149841
0.149818
0.150133
0.150107
0.15009
0.150284
0.150336
0.150395
0.150629
0.150536
0.150448
0.150357
0.150232
0.150077
0.150067
0.150183
0.150267
0.150295
0.150421
0.150553
0.150684
0.150816
0.150924
0.150751
0.150581
0.150539
0.150734
0.150939
0.150879
0.150665
0.150469
0.150298
0.150361
0.150415
0.150265
0.150211
0.15016
0.150121
0.150244
0.150401
0.150586
0.150792
0.15102
0.151273
0.151551
0.151852
0.152177
0.152525
0.152897
0.153291
0.153707
0.154149
0.154618
0.155117
0.155649
0.156217
0.156822
0.157469
0.157453
0.156804
0.156192
0.155966
0.156578
0.157226
0.156831
0.156203
0.15561
0.155051
0.155387
0.155612
0.155064
0.154548
0.154061
0.153846
0.154328
0.154841
0.154527
0.154035
0.153576
0.153296
0.153723
0.154182
0.154672
0.155196
0.155753
0.156346
0.155832
0.155285
0.154772
0.15436
0.154828
0.155324
0.154837
0.154389
0.153967
0.153569
0.153921
0.15429
0.153839
0.153417
0.153024
0.152765
0.153124
0.15351
0.153195
0.152845
0.152516
0.15221
0.15243
0.152659
0.152899
0.153148
0.153395
0.153604
0.153174
0.152771
0.152395
0.152223
0.152584
0.152975
0.152751
0.152384
0.152046
0.151736
0.15189
0.152046
0.151725
0.151431
0.151164
0.151059
0.151309
0.151586
0.151453
0.151195
0.150963
0.150875
0.15109
0.151328
0.15159
0.151877
0.152191
0.152531
0.15232
0.152006
0.151718
0.151565
0.151831
0.152119
0.151926
0.151662
0.151419
0.151196
0.151321
0.151453
0.151211
0.150991
0.150792
0.150714
0.150897
0.151099
0.150992
0.150807
0.15064
0.15057
0.150721
0.150889
0.151075
0.151278
0.1515
0.15174
0.151999
0.152278
0.152576
0.152893
0.153231
0.15359
0.15397
0.154371
0.153927
0.153569
0.153229
0.152881
0.153183
0.1535
0.15309
0.152812
0.152547
0.152294
0.152595
0.152907
0.152603
0.152316
0.152047
0.151825
0.152067
0.152323
0.152053
0.151825
0.151611
0.151404
0.151592
0.151792
0.152003
0.152224
0.152455
0.152696
0.152316
0.15211
0.151912
0.151611
0.151778
0.15195
0.151596
0.151456
0.151319
0.151186
0.15145
0.151722
0.15154
0.151366
0.151203
0.151007
0.151147
0.151295
0.151058
0.150935
0.150818
0.150708
0.150875
0.151048
0.151226
0.15141
0.151599
0.151796
0.151561
0.151344
0.151143
0.151013
0.151193
0.151389
0.151222
0.151048
0.150887
0.15074
0.150848
0.150959
0.150791
0.150639
0.150503
0.150438
0.15056
0.150697
0.150606
0.150485
0.150376
0.150317
0.150412
0.150518
0.150636
0.150765
0.150907
0.151061
0.150904
0.15077
0.150647
0.150533
0.150638
0.150752
0.150604
0.150509
0.150421
0.150342
0.150437
0.150535
0.150433
0.150341
0.150259
0.150203
0.150272
0.15035
0.15027
0.150206
0.150149
0.150098
0.150142
0.150186
0.150232
0.15028
0.150329
0.150381
0.150435
0.150492
0.150552
0.150615
0.150682
0.150754
0.150834
0.150923
0.150708
0.150515
0.150345
0.150299
0.150455
0.150634
0.15057
0.150404
0.150261
0.150146
0.150172
0.150203
0.150094
0.150075
0.15006
0.150047
0.150124
0.150228
0.150359
0.150512
0.150458
0.150318
0.150198
0.150171
0.150279
0.150407
0.15036
0.150243
0.150146
0.15007
0.150087
0.150105
0.150036
0.150025
0.150015
0.150007
0.150055
0.150122
0.150209
0.150315
0.150272
0.150178
0.150101
0.15008
0.150148
0.150232
0.150194
0.15012
0.150061
0.150016
0.150028
0.150041
0.149999
0.149991
0.149984
0.149978
0.150004
0.150043
0.150093
0.150157
0.150122
0.150068
0.150025
0.150008
0.150043
0.150088
0.150055
0.150019
0.149991
0.14997
0.149981
0.149992
0.149971
0.149965
0.149958
0.149952
0.149959
0.149975
0.149996
0.150023
0.150056
0.150096
0.150141
0.150192
0.150249
0.150313
0.150384
0.150461
0.150544
0.150634
0.150728
0.150827
0.15093
0.151036
0.151145
0.151254
0.150924
0.150843
0.150763
0.150498
0.150552
0.150605
0.150297
0.150271
0.150241
0.15021
0.150442
0.150682
0.150604
0.150528
0.150455
0.150281
0.150333
0.150387
0.150178
0.150145
0.150113
0.14995
0.149963
0.149975
0.149985
0.149993
0.149999
0.15
0.149713
0.149736
0.149754
0.149524
0.149484
0.149438
0.149173
0.149241
0.149302
0.149357
0.149559
0.149768
0.149778
0.149786
0.149793
0.149641
0.149616
0.149589
0.149407
0.149452
0.149494
0.149533
0.149664
0.149799
0.149938
0.150083
0.150232
0.150386
0.150321
0.150262
0.150208
0.150106
0.150144
0.150186
0.150054
0.150029
0.150006
0.149987
0.150072
0.150159
0.150116
0.150078
0.150045
0.149995
0.150017
0.150043
0.149971
0.149958
0.149947
0.149901
0.1499
0.149902
0.149905
0.149911
0.149918
0.149927
0.149804
0.149811
0.149818
0.149728
0.149707
0.149685
0.149571
0.149607
0.149641
0.149675
0.149749
0.149826
0.149835
0.149845
0.149856
0.149812
0.149791
0.149771
0.149708
0.14974
0.149769
0.149728
0.149689
0.149648
0.149604
0.149558
0.14951
0.14946
0.149408
0.149353
0.149294
0.149231
0.149163
0.149088
0.149007
0.148918
0.148673
0.148782
0.148883
0.148686
0.148567
0.148438
0.1483
0.148056
0.147888
0.147636
0.147436
0.147223
0.146996
0.146753
0.14644
0.146162
0.145846
0.145534
0.145216
0.145545
0.145857
0.146141
0.14642
0.146701
0.146947
0.147178
0.147396
0.147167
0.146932
0.146683
0.146432
0.146152
0.145897
0.145586
0.145258
0.144913
0.144551
0.14417
0.143769
0.143438
0.143003
0.142548
0.142207
0.141718
0.141207
0.140674
0.140316
0.14086
0.141382
0.141883
0.142364
0.142675
0.143123
0.143552
0.143853
0.144249
0.144626
0.144986
0.145329
0.145084
0.144727
0.144353
0.143962
0.14369
0.143267
0.142825
0.142543
0.14207
0.141577
0.141065
0.140531
0.139976
0.139656
0.140221
0.140764
0.140481
0.139927
0.139353
0.139067
0.13965
0.140212
0.140755
0.141014
0.141288
0.141791
0.142275
0.14274
0.142997
0.143432
0.143849
0.144094
0.144481
0.144851
0.145205
0.145424
0.145655
0.145965
0.146193
0.146473
0.146697
0.146948
0.147185
0.147388
0.147601
0.147823
0.147999
0.148214
0.14836
0.148497
0.148625
0.148797
0.148976
0.149062
0.149142
0.149217
0.149086
0.148996
0.1489
0.148744
0.148856
0.148961
0.14884
0.148721
0.148594
0.14846
0.148316
0.148163
0.147973
0.147793
0.147596
0.147408
0.147619
0.147792
0.147977
0.148143
0.148302
0.148451
0.148592
0.148724
0.148614
0.148468
0.148314
0.14815
0.148005
0.147818
0.147666
0.147453
0.147228
0.146991
0.146739
0.14654
0.14626
0.146057
0.145748
0.145542
0.145863
0.146169
0.14635
0.146629
0.146805
0.147057
0.147295
0.147521
0.147382
0.147144
0.146893
0.146737
0.14646
0.146299
0.145997
0.145679
0.145345
0.144996
0.14463
0.144248
0.144026
0.143615
0.143187
0.142955
0.142497
0.142022
0.141527
0.141278
0.141782
0.142267
0.142735
0.143184
0.143394
0.143816
0.14422
0.14442
0.144797
0.145158
0.145503
0.145832
0.145676
0.145336
0.14498
0.144608
0.144429
0.144031
0.143616
0.143426
0.142985
0.142526
0.142049
0.141555
0.141042
0.14051
0.139959
0.139388
0.138797
0.138542
0.139141
0.139719
0.139493
0.138907
0.138302
0.138076
0.138688
0.13928
0.139854
0.14006
0.140278
0.140818
0.14134
0.141843
0.141648
0.141137
0.140608
0.140409
0.140945
0.141464
0.14129
0.140764
0.140221
0.139659
0.139079
0.138481
0.137863
0.137663
0.138286
0.138891
0.138713
0.138104
0.137476
0.1373
0.136649
0.136481
0.135807
0.135115
0.134952
0.134238
0.134084
0.133349
0.133205
0.132449
0.132315
0.131539
0.130745
0.130621
0.131416
0.132193
0.132082
0.131305
0.130509
0.130411
0.131207
0.131985
0.132745
0.132842
0.132951
0.133072
0.133811
0.133942
0.134661
0.1348
0.135498
0.135647
0.136324
0.136982
0.137135
0.137772
0.137932
0.138547
0.139143
0.139304
0.139476
0.140044
0.140594
0.141126
0.140971
0.140433
0.139877
0.139721
0.140282
0.140825
0.141351
0.141491
0.14164
0.141798
0.141965
0.142142
0.142329
0.142796
0.143247
0.14368
0.143851
0.144259
0.14465
0.144811
0.145177
0.145526
0.145384
0.145025
0.144881
0.144497
0.144097
0.143943
0.143518
0.143076
0.142618
0.142449
0.142915
0.143365
0.143797
0.144214
0.144352
0.144744
0.14512
0.145249
0.145602
0.145728
0.145861
0.146
0.146146
0.146446
0.146588
0.146862
0.147
0.147249
0.147486
0.147607
0.147734
0.147867
0.148057
0.148182
0.14835
0.148507
0.148656
0.148751
0.14885
0.148952
0.14906
0.149171
0.149287
0.149354
0.149417
0.149478
0.1494
0.149328
0.149252
0.149153
0.149242
0.149326
0.149405
0.149469
0.149535
0.14959
0.149641
0.149688
0.14965
0.149594
0.149533
0.149479
0.149549
0.149613
0.149577
0.149505
0.149427
0.149343
0.149254
0.149159
0.149059
0.148968
0.14908
0.149185
0.149119
0.149003
0.148881
0.148797
0.14893
0.149055
0.149173
0.149227
0.149284
0.149377
0.149463
0.149542
0.149509
0.149423
0.149329
0.149282
0.149384
0.149476
0.149561
0.149587
0.149614
0.149642
0.149671
0.149701
0.149732
0.149764
0.149797
0.149831
0.149866
0.149902
0.149939
0.149977
0.150016
0.149992
0.149973
0.149959
0.149943
0.149951
0.149963
0.149933
0.149929
0.149927
0.149928
0.149938
0.149949
0.149946
0.14994
0.149933
0.149927
0.149918
0.149912
0.149908
0.149905
0.149877
0.149887
0.149897
0.149882
0.149866
0.149849
0.149823
0.149846
0.149868
0.149888
0.149898
0.149908
0.149921
0.149915
0.149909
0.149903
0.149879
0.149853
0.149827
0.149797
0.149772
0.149808
0.14984
0.149826
0.149789
0.149748
0.149724
0.149771
0.149813
0.149851
0.14986
0.149869
0.149897
0.149892
0.149886
0.149881
0.149842
0.1498
0.149753
0.149701
0.149679
0.149736
0.149788
0.149776
0.14972
0.149657
0.149636
0.149704
0.149764
0.149818
0.149826
0.149834
0.149876
0.149871
0.149866
0.149862
0.14981
0.149753
0.149689
0.149616
0.149535
0.149445
0.149346
0.149238
0.14912
0.148994
0.14886
0.148717
0.148566
0.148405
0.148236
0.148127
0.147936
0.147821
0.147711
0.147923
0.148023
0.148214
0.148308
0.148479
0.14864
0.148792
0.148936
0.148879
0.148728
0.148566
0.148395
0.148315
0.148125
0.148039
0.147828
0.147605
0.14737
0.147123
0.147002
0.146731
0.146605
0.14631
0.14618
0.146485
0.146775
0.146886
0.147153
0.147259
0.147504
0.147736
0.147957
0.147878
0.147649
0.147407
0.147315
0.147052
0.146955
0.14667
0.14637
0.146057
0.145939
0.146261
0.146568
0.146472
0.146156
0.145826
0.145481
0.145366
0.144998
0.144614
0.14449
0.144083
0.143659
0.143219
0.142762
0.142289
0.142137
0.142618
0.143081
0.142951
0.142481
0.141995
0.141861
0.142353
0.142828
0.143287
0.143404
0.143528
0.143958
0.144373
0.144771
0.144881
0.145257
0.145617
0.145719
0.146057
0.146379
0.146688
0.146773
0.146862
0.147141
0.147226
0.147484
0.147565
0.147802
0.148027
0.148094
0.148165
0.148239
0.148428
0.148496
0.148665
0.148825
0.148974
0.149021
0.14907
0.149194
0.14931
0.149415
0.149386
0.149275
0.149153
0.149113
0.149241
0.149359
0.149332
0.149209
0.149075
0.148929
0.148773
0.148606
0.148548
0.148362
0.148299
0.148239
0.148439
0.148493
0.148674
0.148723
0.148886
0.149038
0.149178
0.149306
0.149281
0.149147
0.149002
0.148844
0.148803
0.148628
0.148582
0.148388
0.148181
0.147961
0.147729
0.147659
0.147407
0.147332
0.14706
0.146981
0.147261
0.147527
0.147592
0.147838
0.147898
0.148125
0.148338
0.148539
0.148497
0.14829
0.148071
0.148018
0.147779
0.147723
0.147465
0.147193
0.146906
0.146606
0.146291
0.145962
0.145871
0.145519
0.145153
0.145054
0.144666
0.144261
0.143841
0.14373
0.144156
0.144566
0.144472
0.144056
0.143624
0.143177
0.142712
0.142232
0.141734
0.14122
0.140689
0.14014
0.139575
0.138992
0.138391
0.138245
0.137623
0.137484
0.13684
0.136178
0.136044
0.135361
0.135235
0.134532
0.134415
0.133692
0.133584
0.133488
0.134214
0.134308
0.135015
0.13512
0.135807
0.135921
0.136588
0.136709
0.137356
0.137985
0.13811
0.138719
0.13885
0.139438
0.140008
0.140561
0.140442
0.139885
0.13931
0.139192
0.138598
0.138486
0.137871
0.137238
0.13713
0.136477
0.136377
0.135705
0.135612
0.134922
0.134841
0.134132
0.133406
0.132663
0.131903
0.131124
0.130329
0.130264
0.12945
0.129405
0.128573
0.127724
0.126857
0.126829
0.127697
0.128547
0.128538
0.127687
0.126819
0.125933
0.125936
0.125032
0.125047
0.124124
0.124148
0.123207
0.123238
0.12228
0.121306
0.120315
0.119308
0.119342
0.11832
0.118358
0.117321
0.116269
0.115201
0.115243
0.11631
0.117361
0.118398
0.119421
0.119381
0.120388
0.120349
0.121341
0.12138
0.12142
0.120428
0.120469
0.119461
0.118439
0.117402
0.116351
0.115285
0.115326
0.116391
0.117441
0.117479
0.116428
0.115364
0.114286
0.114322
0.113231
0.113263
0.11216
0.111046
0.109919
0.109946
0.108809
0.107661
0.107681
0.106524
0.106536
0.107693
0.10884
0.108829
0.109965
0.11109
0.111072
0.112186
0.113287
0.113304
0.112203
0.112214
0.111101
0.109976
0.113315
0.114403
0.114393
0.114376
0.114352
0.115429
0.115399
0.116463
0.117512
0.118549
0.118515
0.118478
0.119501
0.120508
0.121501
0.121461
0.122438
0.122396
0.122355
0.122316
0.123275
0.124217
0.12418
0.125105
0.125072
0.125979
0.125952
0.126841
0.126823
0.127693
0.128545
0.128565
0.127712
0.127741
0.126869
0.126905
0.126013
0.126054
0.125144
0.125186
0.124258
0.123315
0.123357
0.124301
0.12523
0.126143
0.126097
0.126992
0.126946
0.127822
0.127779
0.128636
0.128597
0.129435
0.129401
0.129379
0.129371
0.129379
0.130193
0.130219
0.131014
0.13106
0.131838
0.131792
0.131768
0.130989
0.130983
0.130186
0.130196
0.130995
0.131776
0.131763
0.132525
0.132529
0.132553
0.132598
0.133341
0.134067
0.134776
0.13473
0.134022
0.133296
0.133272
0.133998
0.134706
0.134704
0.133995
0.133269
0.133285
0.132539
0.132569
0.131804
0.131021
0.13022
0.130255
0.131058
0.131844
0.132611
0.133361
0.133317
0.134047
0.134013
0.134723
0.134759
0.134808
0.134094
0.13415
0.133415
0.132663
0.131892
0.131104
0.130299
0.129476
0.129524
0.128682
0.128731
0.12787
0.127918
0.127039
0.127086
0.126188
0.125274
0.124344
0.123399
0.12344
0.122478
0.122516
0.121538
0.120545
0.119538
0.119571
0.120579
0.121572
0.121601
0.120608
0.1196
0.118578
0.117542
0.116492
0.116516
0.115452
0.115469
0.115479
0.116542
0.116532
0.117582
0.117565
0.118601
0.119623
0.120631
0.121624
0.12164
0.120647
0.119639
0.118617
0.118627
0.117591
0.119648
0.120656
0.121649
0.122628
0.122619
0.122602
0.122579
0.12255
0.123513
0.123478
0.124425
0.124386
0.125317
0.125357
0.125393
0.124461
0.124491
0.123543
0.123566
0.124515
0.125448
0.125424
0.126341
0.12631
0.126273
0.126232
0.127131
0.128013
0.127966
0.128831
0.128781
0.129627
0.129575
0.130402
0.130349
0.131156
0.131947
0.132005
0.131212
0.131269
0.130456
0.13051
0.129679
0.129729
0.128879
0.128924
0.128056
0.127173
0.12721
0.128095
0.128964
0.129816
0.129775
0.130609
0.130562
0.131378
0.131324
0.132122
0.132064
0.132841
0.13278
0.13272
0.133475
0.134213
0.134933
0.134867
0.135567
0.135505
0.135453
0.135415
0.135395
0.135397
0.135421
0.135468
0.135532
0.136207
0.136286
0.136943
0.137032
0.137669
0.137765
0.138383
0.138984
0.139084
0.139665
0.13977
0.140331
0.140229
0.140136
0.139568
0.13948
0.138894
0.13829
0.138205
0.137582
0.137506
0.136865
0.1368
0.136142
0.136096
0.136071
0.136728
0.136753
0.137394
0.137441
0.138066
0.13813
0.138737
0.138811
0.1394
0.139973
0.140051
0.140604
0.140686
0.140776
0.140875
0.140982
0.141097
0.141616
0.142118
0.142604
0.142502
0.142012
0.141505
0.141402
0.141913
0.142407
0.142884
0.142975
0.143073
0.143526
0.143962
0.144383
0.144299
0.143874
0.143433
0.143346
0.143791
0.14422
0.144147
0.143714
0.143265
0.1428
0.142319
0.141821
0.141307
0.14122
0.141737
0.142238
0.142165
0.141661
0.141141
0.141069
0.140529
0.140461
0.139903
0.139328
0.139266
0.138674
0.138626
0.138018
0.13799
0.137367
0.137365
0.136726
0.136069
0.13609
0.136747
0.137386
0.137428
0.136787
0.136129
0.136183
0.136844
0.137486
0.138111
0.138051
0.138008
0.137987
0.138592
0.138597
0.139187
0.139217
0.139792
0.139842
0.140401
0.140944
0.141003
0.141528
0.141591
0.142098
0.142588
0.142652
0.142723
0.143191
0.143643
0.144079
0.144017
0.143578
0.143123
0.143062
0.143519
0.143961
0.14391
0.143466
0.143006
0.14253
0.142037
0.141982
0.141471
0.141422
0.140895
0.140352
0.140318
0.13976
0.139752
0.13918
0.139199
0.138612
0.138656
0.138717
0.139306
0.139243
0.139812
0.139769
0.140322
0.140307
0.140846
0.14086
0.141386
0.141896
0.141934
0.14243
0.142477
0.142956
0.143418
0.143864
0.143822
0.143374
0.142909
0.142871
0.142391
0.142368
0.141876
0.141369
0.141378
0.140858
0.140898
0.140364
0.140428
0.139876
0.139954
0.139382
0.138792
0.138183
0.137556
0.136911
0.136248
0.136319
0.135635
0.135706
0.135001
0.134278
0.133538
0.133602
0.134345
0.13507
0.135137
0.13441
0.133664
0.132902
0.132959
0.132177
0.132228
0.131427
0.131471
0.130652
0.130689
0.129852
0.128998
0.128128
0.127243
0.127268
0.126366
0.126383
0.125465
0.124531
0.123582
0.123592
0.124541
0.125475
0.126393
0.127296
0.127286
0.128173
0.128154
0.129025
0.129044
0.129055
0.128184
0.12991
0.129898
0.129879
0.130717
0.131538
0.131509
0.132313
0.132274
0.133059
0.133012
0.133778
0.133724
0.134471
0.135201
0.13526
0.134528
0.134578
0.133827
0.133869
0.133099
0.133131
0.132343
0.132364
0.131559
0.130737
0.130749
0.131571
0.132376
0.133165
0.133152
0.133924
0.133901
0.134655
0.134621
0.135356
0.135312
0.136028
0.135974
0.135913
0.135847
0.135778
0.136467
0.136393
0.137062
0.136985
0.137633
0.137713
0.137793
0.137139
0.137214
0.13654
0.136608
0.137285
0.137944
0.137871
0.138509
0.138428
0.138345
0.138263
0.138874
0.139467
0.140042
0.140133
0.139556
0.13896
0.139046
0.139644
0.140225
0.140313
0.13973
0.139129
0.139207
0.138584
0.138653
0.13801
0.13735
0.136671
0.136726
0.137407
0.13807
0.138714
0.139341
0.139278
0.139884
0.139811
0.140396
0.140472
0.140539
0.139949
0.140004
0.139394
0.138766
0.13812
0.137455
0.136773
0.136074
0.136109
0.135391
0.135414
0.134678
0.134691
0.133937
0.135428
0.136148
0.136134
0.136835
0.13681
0.137493
0.138158
0.138185
0.137519
0.137534
0.13685
0.138201
0.138849
0.138833
0.138806
0.139435
0.140046
0.140639
0.140595
0.141168
0.14111
0.141041
0.140963
0.140877
0.140786
0.140692
0.140598
0.140508
0.141044
0.140962
0.141479
0.141415
0.141916
0.141881
0.142369
0.142841
0.142845
0.143307
0.143335
0.143783
0.143753
0.14374
0.143298
0.143318
0.142866
0.142399
0.142458
0.141977
0.14206
0.141561
0.141655
0.141136
0.141233
0.141329
0.141854
0.141755
0.142258
0.142156
0.142639
0.142541
0.143004
0.142922
0.143369
0.1438
0.143754
0.144176
0.144168
0.144186
0.144217
0.144254
0.144295
0.144338
0.144386
0.14444
0.144499
0.144564
0.144633
0.144708
0.144787
0.144871
0.14496
0.145339
0.145427
0.145784
0.146126
0.146207
0.146528
0.146835
0.147127
0.147405
0.147347
0.147064
0.146766
0.146453
0.146382
0.146049
0.145702
0.145623
0.145255
0.145176
0.145549
0.145907
0.145976
0.146314
0.146637
0.1467
0.147003
0.147292
0.147566
0.147617
0.147669
0.147919
0.147968
0.148199
0.148244
0.148456
0.148654
0.14869
0.148727
0.148764
0.148934
0.148967
0.149118
0.149256
0.149233
0.14909
0.149062
0.148901
0.14887
0.148839
0.14901
0.149036
0.149188
0.14921
0.149345
0.149363
0.149382
0.149402
0.149422
0.149443
0.149465
0.149488
0.149511
0.149597
0.149674
0.149742
0.149732
0.149659
0.149578
0.14956
0.149646
0.149722
0.149789
0.149796
0.149803
0.149857
0.149853
0.149849
0.149845
0.149783
0.149712
0.149633
0.149543
0.149527
0.14962
0.149703
0.149695
0.149608
0.149511
0.149495
0.149596
0.149686
0.149766
0.149772
0.149777
0.149842
0.149839
0.149836
0.149833
0.149761
0.149679
0.149585
0.14948
0.149466
0.149575
0.149671
0.149664
0.149564
0.149452
0.149327
0.14931
0.149167
0.149146
0.148985
0.148809
0.14862
0.148416
0.148378
0.148155
0.148113
0.147872
0.147826
0.148072
0.148304
0.14834
0.148553
0.148586
0.14878
0.14896
0.149126
0.149106
0.148936
0.148752
0.148724
0.148521
0.14849
0.148269
0.148033
0.147782
0.147518
0.147239
0.146945
0.14689
0.146577
0.146249
0.146188
0.145841
0.145479
0.145101
0.145031
0.145412
0.145779
0.14613
0.146465
0.14652
0.146837
0.147139
0.147188
0.147471
0.14774
0.147994
0.148234
0.148201
0.147958
0.147699
0.147426
0.147383
0.147092
0.146786
0.146738
0.146414
0.146075
0.14572
0.14535
0.144965
0.144903
0.145292
0.145665
0.145614
0.145239
0.144847
0.144796
0.14519
0.145568
0.145931
0.145975
0.146023
0.146366
0.146693
0.147006
0.147048
0.147342
0.147622
0.14766
0.147922
0.148169
0.148402
0.148431
0.14846
0.148671
0.148697
0.14889
0.148913
0.149086
0.149245
0.149261
0.149277
0.149293
0.149426
0.149439
0.149555
0.149658
0.149749
0.149753
0.149757
0.149831
0.149829
0.149827
0.149826
0.149745
0.149652
0.149545
0.149536
0.149414
0.149401
0.149389
0.149519
0.149528
0.14964
0.149646
0.149742
0.149825
0.149824
0.149739
0.149737
0.149635
0.14963
0.149511
0.149378
0.14923
0.149067
0.149048
0.148867
0.148845
0.148645
0.14862
0.148824
0.149012
0.14903
0.1492
0.149215
0.149366
0.149503
0.149625
0.149621
0.149495
0.149354
0.149343
0.149185
0.149171
0.148994
0.148803
0.148596
0.148375
0.148139
0.147888
0.147855
0.147587
0.147304
0.147267
0.146966
0.146651
0.146321
0.146279
0.146612
0.14693
0.147233
0.147521
0.147553
0.147824
0.148081
0.148109
0.148348
0.148573
0.148782
0.148977
0.148961
0.148763
0.14855
0.148323
0.148299
0.148054
0.147795
0.147769
0.147493
0.147202
0.146897
0.146577
0.146242
0.145892
0.145527
0.145147
0.14475
0.144709
0.145107
0.14549
0.145456
0.145071
0.144671
0.144635
0.145037
0.145424
0.145796
0.145826
0.145857
0.146209
0.146546
0.146868
0.146842
0.146519
0.14618
0.146152
0.146493
0.146819
0.146797
0.146468
0.146125
0.145767
0.145394
0.145006
0.144603
0.144582
0.144983
0.145369
0.145358
0.144977
0.144583
0.144615
0.144215
0.144288
0.143877
0.143449
0.143548
0.143103
0.143209
0.142743
0.142848
0.14236
0.142459
0.141951
0.141423
0.141511
0.142041
0.142553
0.142638
0.142124
0.141592
0.141663
0.142197
0.142713
0.14321
0.143133
0.143045
0.14295
0.143422
0.143317
0.143768
0.143657
0.144086
0.143976
0.144385
0.144777
0.144682
0.145061
0.145001
0.145374
0.145734
0.145726
0.145741
0.146099
0.146444
0.146773
0.146752
0.146423
0.146081
0.146081
0.146417
0.146741
0.147053
0.147068
0.147089
0.14711
0.14713
0.147151
0.147175
0.147467
0.147745
0.148008
0.14803
0.148277
0.148509
0.148529
0.148744
0.148945
0.14893
0.148727
0.148712
0.148492
0.148257
0.14824
0.14799
0.147725
0.147445
0.147426
0.147707
0.147974
0.148226
0.148464
0.148477
0.148698
0.148906
0.148917
0.149107
0.149118
0.14913
0.149143
0.149157
0.149321
0.149332
0.149479
0.149487
0.149617
0.149729
0.149731
0.149733
0.149735
0.149822
0.149823
0.149822
0.149821
0.149821
0.149821
0.149727
0.149612
0.149608
0.149472
0.149465
0.149311
0.149301
0.149458
0.1496
0.149604
0.149724
0.149725
0.149821
0.149821
0.149821
0.149722
0.14972
0.149596
0.149451
0.149291
0.149283
0.149445
0.149593
0.14959
0.14944
0.149276
0.149098
0.149091
0.148897
0.148688
0.14868
0.148454
0.148214
0.14796
0.147691
0.147408
0.147389
0.147675
0.147947
0.147932
0.147658
0.14737
0.147353
0.147641
0.147915
0.148177
0.148191
0.148203
0.148445
0.148673
0.148886
0.14889
0.149086
0.149267
0.14927
0.149437
0.149589
0.149719
0.149719
0.149719
0.149822
0.149822
0.149823
0.149825
0.149828
0.149721
0.149589
0.149435
0.149435
0.149266
0.149083
0.149081
0.148881
0.148666
0.148436
0.148424
0.148657
0.148875
0.149078
0.149265
0.149266
0.149437
0.149593
0.14959
0.149724
0.149833
0.149838
0.149729
0.149734
0.149597
0.149438
0.149437
0.149262
0.149072
0.148866
0.148646
0.148412
0.148164
0.147905
0.147633
0.147351
0.147058
0.146754
0.146439
0.146113
0.145776
0.145425
0.145511
0.145152
0.145265
0.14489
0.144497
0.144614
0.1442
0.14431
0.143875
0.143976
0.14352
0.143609
0.143689
0.144149
0.144068
0.144508
0.144414
0.144834
0.144727
0.145126
0.145009
0.145386
0.145745
0.145622
0.145962
0.145855
0.146183
0.146499
0.146803
0.14689
0.146595
0.146286
0.146409
0.146086
0.146212
0.145868
0.145506
0.145619
0.145235
0.145335
0.14493
0.145016
0.144592
0.144662
0.144218
0.143755
0.143275
0.142776
0.142259
0.141723
0.141769
0.141213
0.141244
0.140668
0.140075
0.139463
0.13948
0.140092
0.140686
0.141262
0.141819
0.1418
0.142339
0.142306
0.142825
0.142859
0.142878
0.142358
0.14338
0.14336
0.143325
0.143807
0.144271
0.144716
0.144753
0.144307
0.143843
0.143863
0.144328
0.144775
0.145203
0.145181
0.145143
0.145088
0.145496
0.145422
0.145811
0.145721
0.14609
0.145984
0.146332
0.146661
0.146537
0.146845
0.146715
0.147006
0.147135
0.147265
0.146972
0.147089
0.146774
0.146441
0.146537
0.146183
0.14626
0.145887
0.145945
0.145553
0.145592
0.145614
0.146008
0.145984
0.14636
0.14632
0.146678
0.146616
0.146955
0.146873
0.147192
0.147493
0.147386
0.147665
0.147541
0.147409
0.147281
0.147172
0.147095
0.147377
0.147649
0.147912
0.147952
0.147702
0.147442
0.147543
0.147793
0.148031
0.148259
0.148193
0.148165
0.148408
0.148639
0.148859
0.148862
0.148649
0.148426
0.148478
0.148689
0.14889
0.148953
0.148765
0.148567
0.14836
0.148141
0.147911
0.147667
0.147799
0.148042
0.148269
0.148398
0.148171
0.147927
0.148042
0.147776
0.14787
0.147582
0.147277
0.147343
0.147019
0.147061
0.146719
0.146743
0.146384
0.147086
0.147413
0.147387
0.147697
0.147651
0.147941
0.148215
0.148139
0.148391
0.148289
0.148519
0.14873
0.148609
0.148481
0.148681
0.148869
0.149045
0.149155
0.148986
0.148805
0.148925
0.149104
0.149266
0.149369
0.14921
0.149033
0.148838
0.148624
0.148707
0.14847
0.148524
0.148266
0.14799
0.148018
0.147723
0.148295
0.148556
0.148798
0.148765
0.148985
0.148925
0.149122
0.149299
0.149455
0.149518
0.149363
0.149185
0.149223
0.149021
0.149403
0.149557
0.149686
0.149649
0.14959
0.14951
0.149414
0.14931
0.14921
0.149131
0.149082
0.149064
0.149065
0.149256
0.149434
0.149597
0.149598
0.149738
0.14985
0.149844
0.149853
0.149739
0.149738
0.149595
0.149431
0.149254
0.149264
0.149435
0.149596
0.149737
0.149852
0.149854
0.149852
0.149743
0.14961
0.149459
0.1493
0.149365
0.14951
0.149645
0.149701
0.149582
0.149452
0.149546
0.149664
0.149766
0.149849
0.149802
0.149764
0.14986
0.149881
0.149909
0.149936
0.149893
0.149828
0.14974
0.149634
0.149705
0.1498
0.149873
0.149901
0.14984
0.149756
0.149787
0.149863
0.149915
0.149946
0.149939
0.149924
0.149953
0.14996
0.149962
0.203455
0.186603
0.181667
0.186428
0.189656
0.11901
0.112572
0.129446
0.132948
0.143516
0.111133
0.0975113
0.120154
0.125581
0.131326
0.134855
0.0841857
0.0990709
0.103945
0.0997993
0.0550399
0.0733694
0.0882711
0.0920889
0.0876482
0.0761688
0.0462966
0.0618748
0.0650285
0.0484853
0.069323
0.0721852
0.0687332
0.0571728
0.0338825
0.0442937
0.0628784
0.0654741
0.030311
0.0384157
0.0388913
0.028256
0.0347365
0.0513919
0.0422145
0.0408529
0.146817
0.148689
0.149313
0.148324
0.149119
0.149661
0.149817
0.149891
0.149943
0.149993
0.150045
0.150087
0.1501
0.150081
0.150048
0.150019
0.15
0.14999
0.149985
0.149983
0.149982
0.149981
0.149979
0.149978
0.149976
0.149975
0.149974
0.149973
0.149972
0.149971
0.149969
0.149968
0.149967
0.149965
0.149964
0.149963
0.149961
0.14996
0.149958
0.149957
0.149956
0.149954
0.149953
0.149952
0.149951
0.14995
0.149949
0.149948
0.149947
0.149947
0.149946
0.149945
0.149945
0.149945
0.149944
0.149944
0.149944
0.149944
0.149944
0.149943
0.149943
0.149943
0.149943
0.149943
0.149944
0.149944
0.149944
0.149945
0.149946
0.149947
0.149948
0.149949
0.149951
0.149952
0.149954
0.149956
0.149958
0.149961
0.149965
0.14997
0.149975
0.149981
0.149986
0.149988
0.149987
0.149983
0.149978
0.149975
0.149975
0.149979
0.149981
0.149982
0.149911
0.149891
0.149776
0.149936
)
;
boundaryField
{
bottomEmptyFaces
{
type empty;
}
topEmptyFaces
{
type empty;
}
inlet
{
type calculated;
value nonuniform List<scalar>
95
(
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
0.15
)
;
}
outlet
{
type calculated;
value nonuniform List<scalar>
36
(
0.0434892
0.0434859
0.0434801
0.0434715
0.0434597
0.0434444
0.0434258
0.0434034
0.0433775
0.0433477
0.0433145
0.0432787
0.0432427
0.043211
0.0431932
0.043207
0.043281
0.043448
0.0437305
0.0440678
0.0442611
0.0442196
0.0411936
0.0432136
0.0405943
0.0386404
0.0363355
0.0375157
0.0361138
0.0377505
0.051498
0.0718714
0.108324
0.0974532
0.0837071
0.0434908
)
;
}
walls
{
type calculated;
value uniform 1;
}
rightWall
{
type calculated;
value nonuniform List<scalar>
28
(
0.0991305
0.100325
0.104979
0.110142
0.114963
0.120108
0.122405
0.125391
0.127154
0.128264
0.128766
0.128726
0.12819
0.127123
0.125541
0.12327
0.120442
0.116042
0.112368
0.106824
0.10065
0.0951139
0.105097
0.0933475
0.0904758
0.131628
0.116217
0.102287
)
;
}
symmetryLine
{
type symmetryPlane;
}
}
// ************************************************************************* //
|
e38a4f1afdcbaa1d8d0b477d7863f43f2bbff71d | edd0b3a3164ee8375471159b88b7939d286a439f | /Source/Include/log4cxx_enabler.h | 08305bd5c51fbcf55e0379250eff6f63d968f70e | [] | no_license | alrondo/TripLineGt | 4741bfa280b2649111a2e591555a5397be5b10dc | c58078f1e288983586a8af9236b7348cd31d13f4 | refs/heads/master | 2020-12-02T16:41:53.886303 | 2017-10-18T03:36:46 | 2017-10-18T03:36:46 | 96,568,722 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,360 | h | log4cxx_enabler.h |
#ifdef _MSC_VER
#pragma warning( push )
#pragma warning( disable : 4275 4251 )
#endif
#include <log4cxx/logger.h>
#include <log4cxx/propertyconfigurator.h>
#include <log4cxx/xml/domconfigurator.h>
#include <log4cxx/helpers/exception.h>
#include "log4cxx/basicconfigurator.h"
#include "log4cxx/rollingfileappender.h"
#include "log4cxx/patternlayout.h"
#include "log4cxx/consoleappender.h"
#include <log4cxx/ndc.h>
#include <locale.h>
#include <string>
using namespace log4cxx;
using namespace log4cxx::helpers;
#define DECLARE_LOGGER_PTR(var_name) log4cxx::LoggerPtr var_name
#define GET_LOGGER_BY_NAME(var_name, logger_name) var_name = Logger::getLogger(logger_name)
#define GET_ROOT_LOGGER(var_name) var_name = Logger::getRootLogger()
#ifdef _MSC_VER
#pragma warning( pop )
#endif
namespace Av
{
// Utilitary function to create a default logging scheme.
// The "Default Logging" is this:
// No Console Appender
// Rolling File Appender. 6 files Max, each file is 10MB max.
void configDefaultLogging(const std::string& logFileBaseName, log4cxx::LoggerPtr rootLogger)
{
static const LogString lConvPattern(LOG4CXX_STR("%d{yyyy-MM-dd HH:mm:ss,SSS} %p [%t] %c (%F:%L) %m%n"));
LogString logFilrName(logFileBaseName);
logFilrName += ".log";
log4cxx::PatternLayoutPtr patternLayout = new PatternLayout();
patternLayout->setConversionPattern(lConvPattern);
log4cxx::RollingFileAppenderPtr rollingAppender = new log4cxx::RollingFileAppender();
rollingAppender->setMaximumFileSize(10 * 1024 * 1024);
rollingAppender->setMaxBackupIndex(5);
rollingAppender->setOption(LOG4CXX_STR("append"), LOG4CXX_STR("true"));
rollingAppender->setLayout(patternLayout);
rollingAppender->setOption(LOG4CXX_STR("file"), logFilrName);
log4cxx::helpers::Pool pool;
rollingAppender->activateOptions(pool);
BasicConfigurator::configure(rollingAppender);
rootLogger->log(Level::getInfo(), logFilrName);
}
void addConsoleAppender(log4cxx::LoggerPtr logger)
{
static const LogString lConvPattern(LOG4CXX_STR("%m%n"));
log4cxx::PatternLayoutPtr patternLayout = new PatternLayout();
patternLayout->setConversionPattern(lConvPattern);
log4cxx::ConsoleAppenderPtr consoleApp = new log4cxx::ConsoleAppender(patternLayout);
logger->addAppender(consoleApp);
}
}
|
5b31ad27e9eeec88a9114aa4e4bf0932c911b041 | bc0ba5bc714a8409a5e770731c70fbb4ef974060 | /시도4/cppcheck-1.56/lib/checkobsoletefunctions.cpp | eafc89fec156ad7006a332a800fde0b9dbb96cd4 | [] | no_license | swmaestro2012/somap312_11 | f6282e9da975953d9fa047b190e15b1032cc1a23 | 7c5759313bc29997da494c4796cb9f290e713df7 | refs/heads/master | 2016-09-06T13:49:59.656976 | 2012-11-21T09:59:51 | 2012-11-21T09:59:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,765 | cpp | checkobsoletefunctions.cpp | /*
* Cppcheck - A tool for static C/C++ code analysis
* Copyright (C) 2007-2012 Daniel Marjamäki and Cppcheck team.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//---------------------------------------------------------------------------
// Obsolete functions
//---------------------------------------------------------------------------
#include "checkobsoletefunctions.h"
#include "symboldatabase.h"
//---------------------------------------------------------------------------
// Register this check class (by creating a static instance of it)
namespace {
CheckObsoleteFunctions instance;
}
void CheckObsoleteFunctions::obsoleteFunctions()
{
if (!_settings->isEnabled("style"))
return;
// Don't check C# and Java code
if (_tokenizer->isJavaOrCSharp())
return;
const SymbolDatabase *symbolDatabase = _tokenizer->getSymbolDatabase();
for (const Token *tok = _tokenizer->tokens(); tok; tok = tok->next()) {
if (tok->isName() && tok->varId()==0 && (tok->next() && tok->next()->str() == "(") &&
(!Token::Match(tok->previous(), ".|::|:|,") || Token::simpleMatch(tok->tokAt(-2), "std :: gets"))) {
// c function declaration?
if ((tok->next()->link()->next() && tok->next()->link()->next()->str() == ";") && (tok->previous() && (tok->previous()->str() == "*" || tok->previous()->isName()))) {
continue;
}
// function declaration?
const Function * function = symbolDatabase->findFunctionByToken(tok);
if (function && function->hasBody) {
_obsoleteStandardFunctions.erase(tok->str());
_obsoletePosixFunctions.erase(tok->str());
continue;
}
std::map<std::string,std::string>::const_iterator it = _obsoleteStandardFunctions.find(tok->str());
if (it != _obsoleteStandardFunctions.end()) {
// If checking an old code base it might be uninteresting to update obsolete functions.
// Therefore this is "information"
reportError(tok->next(), Severity::style, "obsoleteFunctions"+it->first, it->second);
} else {
if (_settings->standards.posix) {
it = _obsoletePosixFunctions.find(tok->str());
if (it != _obsoletePosixFunctions.end()) {
// If checking an old code base it might be uninteresting to update obsolete functions.
// Therefore this is "information"
reportError(tok->next(), Severity::style, "obsoleteFunctions"+it->first, it->second);
}
}
if (_settings->standards.c >= Standards::C99) {
it = _obsoleteC99Functions.find(tok->str());
if (it != _obsoleteC99Functions.end()) {
reportError(tok->next(), Severity::style, "obsoleteFunctions"+it->first, it->second);
}
}
}
}
}
}
//---------------------------------------------------------------------------
|
2e9dd4e34e2cf2b12a8199f32efe5f44584f4748 | c7f63783d04104824e175238f45e9e8c6f257b0b | /table.h | 072d6523f54c8e365cc4099bb906ae619ab7897b | [] | no_license | emptyindex/Bloom_Filter | 5ef3d0aaf765ddcccf06ff014f1ce766979e7bba | eaccdafb6c29fec711b76dd5227e29c8b9fbf66b | refs/heads/master | 2020-04-26T15:31:40.693840 | 2019-03-04T00:59:32 | 2019-03-04T00:59:32 | 173,649,533 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 947 | h | table.h | #include <iostream>
#include <string>
using namespace std;
#pragma once
#ifndef TABLE_H
#define TABLE_H
class Hash
{
public:
Hash(int k, int v) //Hash Table constructor with 2 parameters of type int k and v
{
key = k; //sets the value of key equal to parameter k
value = v; //sets the value of value equal to parameter v
}
int key; //variable of type integer named key
int value; //variable of type integer named value
};
class Hash_Table
{
public:
Hash_Table(); //declares constructor
void insert(int, int); //declares insert method with 2 parameters
int search(int); //declares search method with 1 parameter
int hash_Fun(int); //declares the hash function method with 1 parameter
//void remove(int key);
private:
const int size = 100; //instantiates an integer variable with a value of 100
Hash * * table; //declares double pointer of type Hash
};
#endif // !TABLE_H
|
4a1049498a0a8b2557e79cc353e0b0c6420ae8cc | a59cb261cc7481cdebfa1f6b5033ece04d9fbf0c | /Cloud/Cloud_To_Cloud/src/WuLianHttpRequest.cpp | 87ff545621883946d384b6c1497b3cb0611c9de4 | [] | no_license | itliang/IoTEcosystem | f547bd72a7d4b48d6eb8631dc2837cf8bfc1f2a0 | 30b8a546f27b440943d6c96852e75bb7040f3b48 | refs/heads/master | 2020-05-31T22:18:48.446060 | 2017-08-28T06:13:28 | 2017-08-28T06:13:28 | 94,051,393 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,712 | cpp | WuLianHttpRequest.cpp | #include <time.h>
#include <openssl/md5.h>
#include "WuLianHttpRequest.h"
WuLianHttpRequest::WuLianHttpRequest()
{
mBaseUri = "https://v2.wuliancloud.com:52182";
mCmdInit = "cloudinit";
mCmdBindDevice = "bindDevice";
mCmdGetDeviceByUser = "getDeviceByUser";
mCmdCommDeviceCtr = "forward12";
mIsSignIn = false;
//gateway information
mUserId = "iot";
mGWDeviceId = "50294D102871";
mGWDevicePassword = "102871";
mIsDeviceBind = false;
}
size_t WuLianHttpRequest::signInCallback(char *ptr, size_t size, size_t nmemb, void *userdata)
{
int bytesSize = size * nmemb;
if (!ptr || bytesSize <= 0) {
fprintf(stderr, "invalid body is received\n");
return 0;
}
if (!userdata) {
fprintf(stderr, "userdata is invalid\n");
return 0;
}
printf("\nrecv: %s\nlen: %d\n", ptr, bytesSize);
char *bodyMsg = (char *)calloc(1, bytesSize+1);
if (!bodyMsg) {
fprintf(stderr, "failed to calloc memory\n");
return 0;
}
memcpy(bodyMsg, ptr, bytesSize);
Json::Value root;
Json::Reader *pJsonParser = new Json::Reader(Json::Features::strictMode());
if (!pJsonParser->parse(bodyMsg, root)) {
fprintf(stderr, "failed to parse json, because: %s\n", pJsonParser->getFormattedErrorMessages().c_str());
free(pJsonParser);
free(bodyMsg);
return 0;
}
WuLianHttpRequest *pWuLianHttpRequest = (WuLianHttpRequest *)userdata;
pWuLianHttpRequest->mAccessToken = root["token"].asString();
printf("access token: %s\n", pWuLianHttpRequest->mAccessToken.c_str());
pWuLianHttpRequest->mIsSignIn = true;
free(pJsonParser);
free(bodyMsg);
return bytesSize;
}
size_t WuLianHttpRequest::getDeviceListCallback(char *ptr, size_t size, size_t nmemb, void *userdata)
{
int bytesSize = size * nmemb;
if (!ptr || bytesSize <= 0) {
fprintf(stderr, "invalid body is received\n");
return 0;
}
if (!userdata) {
fprintf(stderr, "userdata is invalid\n");
return 0;
}
printf("\nrecv: %s\nlen: %d\n", ptr, bytesSize);
char *bodyMsg = (char *)calloc(1, bytesSize+1);
if (!bodyMsg) {
fprintf(stderr, "failed to calloc memory\n");
return 0;
}
memcpy(bodyMsg, ptr, bytesSize);
Json::Value root;
Json::Reader *pJsonParser = new Json::Reader(Json::Features::strictMode());
if (!pJsonParser->parse(bodyMsg, root)) {
fprintf(stderr, "failed to parse json, because: %s\n", pJsonParser->getFormattedErrorMessages().c_str());
free(pJsonParser);
free(bodyMsg);
return 0;
}
std::list<Device *> *devList = (std::list<Device *> *)userdata;
int num = root["devices"].size();
printf("total of devices: %d\n", num);
for (int i = 0; i < num; i++) {
Json::Value device = root["devices"][i];
int childs_num = device["device_childs"].size();
printf("total of device childs: %d\n", childs_num);
for (int j = 0; j < childs_num; j++) {
Json::Value sub_device = device["device_childs"][j];
std::string device_id = sub_device["device_childId"].asString();
printf("device_id: %s\n", device_id.c_str());
std::string device_type = sub_device["deviceType"].asString();
printf("device_type: %s\n", device_type.c_str());
int device_status = sub_device["status"].asInt();
printf("device_status: %d\n", device_status);
// BaseResource *res = new BaseResource();
// res->setName(device_id);
// res->setType(device_type);
}
}
free(pJsonParser);
free(bodyMsg);
return bytesSize;
}
RSCode WuLianHttpRequest::signIn(const ParamsMap ¶ms, Auth_Type type)
{
if (params.size() != 2) {
fprintf(stderr, "invalid parameters\n");
return RS_INVALID_PARAMETER;
}
std::string username, userpwd;
std::map<std::string, std::string>::const_iterator iter;
iter = params.find("partnerId");
if (params.end() != iter) {
username = iter->second;
}
iter = params.find("partnerPasswd");
if (params.end() != iter) {
userpwd = iter->second;
}
char buffer[512] = {0};
snprintf(buffer, 511, "%s/%s", mBaseUri.c_str(), "AMS/cloud");
char body[512] = {0};
snprintf(body, 511, "{\"partnerId\": \"%s\", \"partnerPasswd\": \"%s\"}",
username.c_str(), userpwd.c_str());
HeadersMap headers;
headers.insert(std::pair<std::string, std::string>("cmd", mCmdInit));
std::string uri(buffer);
std::string postData(body);
int ret = mHttpClient->post(uri, postData, headers, signInCallback, (void *)this);
if (ret != 0) {
fprintf(stderr, "network's error\n");
return RS_NETWORK_ERROR;
}
return RS_OK;
}
RSCode WuLianHttpRequest::bindGateway()
{
if (!mIsSignIn) {
fprintf(stderr, "must sign in at first\n");
return RS_SIGN_IN_ERROR;
}
char buffer[512] = {0};
snprintf(buffer, 511, "%s/%s", mBaseUri.c_str(), "AMS/cloud");
char body[512] = {0};
snprintf(body, 511, "{\"userId\": \"%s\", \"deviceId\": \"%s\", \"devicePasswd\": \"%s\"}",
mUserId.c_str(), mGWDeviceId.c_str(), mGWDevicePassword.c_str());
HeadersMap headers;
headers.insert(std::pair<std::string, std::string>("token", mAccessToken));
headers.insert(std::pair<std::string, std::string>("cmd", mCmdBindDevice));
std::string uri(buffer);
std::string postData(body);
int ret = mHttpClient->post(uri, postData, headers, NULL, NULL);
if (ret != 0) {
fprintf(stderr, "network's error\n");
return RS_NETWORK_ERROR;
}
mIsDeviceBind = true;
return RS_OK;
}
std::list<Device *>* WuLianHttpRequest::getDeviceList()
{
if (!mIsDeviceBind) {
fprintf(stderr, "must bind device at first\n");
return nullptr;
}
char buffer[512] = {0};
snprintf(buffer, 511, "%s/%s", mBaseUri.c_str(), "AMS/cloud");
char body[512] = {0};
snprintf(body, 511, "{\"userId\": \"%s\"}", mUserId.c_str());
HeadersMap headers;
headers.insert(std::pair<std::string, std::string>("token", mAccessToken));
headers.insert(std::pair<std::string, std::string>("cmd", mCmdGetDeviceByUser));
std::string uri(buffer);
std::string postData(body);
int ret = mHttpClient->post(uri, postData, headers, getDeviceListCallback, (void *)this);
if (ret != 0) {
fprintf(stderr, "network's error\n");
return nullptr;
}
return nullptr;
}
RSCode WuLianHttpRequest::controlDevice(Device *dev)
{
if (!mIsDeviceBind) {
fprintf(stderr, "must bind device at first\n");
return RS_BIND_DEVICE_ERROR;
}
char buffer[512] = {0};
snprintf(buffer, 511, "%s/%s", mBaseUri.c_str(), "OMS/cloud");
char body[512] = {0};
// snprintf(body, 511, "{\"cmd\": \"%s\", \"gwID\": \"%s\", \"devID\": \"%s\", " \
// "\"type\": \"%s\", \"ep\": \"%s\", \"epType\": \"%s\", \"epData\": \"%s\"}",
// cmd.c_str(), mGWDeviceId.c_str(), 12, );
HeadersMap headers;
headers.insert(std::pair<std::string, std::string>("token", mAccessToken));
headers.insert(std::pair<std::string, std::string>("userid", mUserId));
headers.insert(std::pair<std::string, std::string>("cmd", mCmdCommDeviceCtr));
std::string uri(buffer);
std::string postData(body);
// int ret = mHttpClient->post(uri, postData, headers, getDeviceListCallback, nullptr);
// if (ret != 0) {
// fprintf(stderr, "network's error\n");
// return RS_NETWORK_ERROR;
// }
return RS_OK;
} |
8229e802ae29bcdeede6f32a26f63687a2c5812b | 50a2b61fb364ee7af6bb91d469c415715d980016 | /src/system/kernel/utilities/TimeoutGuard.cc | 14edab8670bbba58ecc75e9b94afa3bd101d4038 | [
"ISC"
] | permissive | miselin/pedigree | 324d0adbbb0bb44b5ce70d6f628c28316e43d05c | 6c168a1d1288751e065f93f5bdf35fdcc2a8e9ea | refs/heads/develop | 2023-06-19T06:57:50.162898 | 2023-05-29T02:37:39 | 2023-05-29T02:37:39 | 10,308,144 | 52 | 15 | NOASSERTION | 2020-03-07T22:03:33 | 2013-05-27T04:59:23 | C | UTF-8 | C++ | false | false | 4,148 | cc | TimeoutGuard.cc | /*
* Copyright (c) 2008-2014, Pedigree Developers
*
* Please see the CONTRIB file in the root of the source tree for a full
* list of contributors.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "pedigree/kernel/utilities/TimeoutGuard.h"
#include "pedigree/kernel/compiler.h"
#if THREADS
#include "pedigree/kernel/process/Thread.h"
#endif
#include "pedigree/kernel/LockGuard.h"
#include "pedigree/kernel/Log.h"
#include "pedigree/kernel/machine/Machine.h"
#include "pedigree/kernel/machine/Timer.h"
#include "pedigree/kernel/processor/Processor.h"
#include "pedigree/kernel/processor/ProcessorInformation.h"
#include "pedigree/kernel/utilities/new"
static void guardEventFired(uint8_t *pBuffer) NORETURN;
TimeoutGuard::TimeoutGuard(size_t timeoutSecs)
: m_pEvent(0), m_bTimedOut(false),
#if THREADS
m_State(),
#endif
m_nLevel(0), m_Lock()
{
#if THREADS
if (timeoutSecs)
{
Thread *pThread = Processor::information().getCurrentThread();
m_nLevel = pThread->getStateLevel();
m_pEvent = new TimeoutGuardEvent(this, m_nLevel);
Machine::instance().getTimer()->addAlarm(m_pEvent, timeoutSecs);
// Generate the SchedulerState to restore to.
Processor::saveState(m_State);
}
#else
WARNING("TimeoutGuard: TimeoutGuard needs thread support");
#endif
}
TimeoutGuard::~TimeoutGuard()
{
#if THREADS
// Stop any interrupts - now we know that we can't be preempted by
// our own event handler.
LockGuard<Spinlock> guard(m_Lock);
// If the event hasn't fired yet, remove and delete it.
if (m_pEvent)
{
Machine::instance().getTimer()->removeAlarm(m_pEvent);
// Ensure that the event isn't queued.
Processor::information().getCurrentThread()->cullEvent(m_pEvent);
delete m_pEvent;
m_pEvent = 0;
}
#endif
}
void TimeoutGuard::cancel()
{
#if THREADS
// Called by TimeoutGuardEvent.
m_bTimedOut = true;
m_pEvent = 0;
Processor::restoreState(m_State);
#endif
}
static void guardEventFired(uint8_t *pBuffer)
{
#if THREADS
NOTICE("GuardEventFired");
TimeoutGuard::TimeoutGuardEvent e;
if (!TimeoutGuard::TimeoutGuardEvent::unserialize(pBuffer, e))
{
FATAL("guardEventFired: Event is not a TimeoutGuardEvent!");
}
e.m_pTarget->cancel();
NOTICE("Cancel finished");
#endif
}
TimeoutGuard::TimeoutGuardEvent::TimeoutGuardEvent(
TimeoutGuard *pTarget, size_t specificNestingLevel)
: Event(
reinterpret_cast<uintptr_t>(&guardEventFired), true /* Deletable */,
specificNestingLevel),
m_pTarget(pTarget)
{
}
TimeoutGuard::TimeoutGuardEvent::~TimeoutGuardEvent()
{
}
size_t TimeoutGuard::TimeoutGuardEvent::serialize(uint8_t *pBuffer)
{
void *alignedBuffer = ASSUME_ALIGNMENT(pBuffer, sizeof(size_t));
size_t *pBufferSize_t = reinterpret_cast<size_t *>(alignedBuffer);
pBufferSize_t[0] = EventNumbers::TimeoutGuard;
pBufferSize_t[1] = reinterpret_cast<size_t>(m_pTarget);
return 2 * sizeof(size_t);
}
bool TimeoutGuard::TimeoutGuardEvent::unserialize(
uint8_t *pBuffer, TimeoutGuardEvent &event)
{
void *alignedBuffer = ASSUME_ALIGNMENT(pBuffer, sizeof(size_t));
size_t *pBufferSize_t = reinterpret_cast<size_t *>(alignedBuffer);
if (pBufferSize_t[0] != EventNumbers::TimeoutGuard)
return false;
event.m_pTarget = reinterpret_cast<TimeoutGuard *>(pBufferSize_t[1]);
return true;
}
|
b51f3d9c51c9099dc282b8edab966779a6ac9676 | f091beaa217dd58c9d6beaf01a42c5bfc7e1df1a | /Ejercicio4.exe | 5b1216301b7fc478f03503cd1a376b7cf5f245bd | [] | no_license | Miguelmarro/LaboratorioFunda | 04f1187ae64006defe70cb811e722513a67c7802 | 8a5c3315b3fd3130af33d0bde0c4b9d4497b1a19 | refs/heads/master | 2021-04-24T02:28:53.676979 | 2020-07-13T01:27:34 | 2020-07-13T01:27:34 | 250,061,491 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 581 | exe | Ejercicio4.exe | #include<iostream>
#include<string.h>
using namespace std;
int main(){
int longitud;
string palabra;
cout << "Ingresar palabra para verificar si posee 10 caracteres y si es par o impar." << endl;
cin >> palabra;
longitud = palabra.size();
if (longitud >=10){
cout << "La palabra tiene 10 caracteres" << endl;
}else{
cout << "La palabra tiene menos de 10 caracteres"<< endl;
}
if (longitud%2== 0){
cout << "La longitud es par" << endl;
}else{
cout << "La longitud es impar" << endl;
}
return 0;
} |
3ed666fb97e40ea2c0b423e50128e3f5485859d7 | a33aac97878b2cb15677be26e308cbc46e2862d2 | /program_data/PKU_raw/25/838.c | ace5a1b094cd0abf0e76d110282eb887f1152cce | [] | no_license | GabeOchieng/ggnn.tensorflow | f5d7d0bca52258336fc12c9de6ae38223f28f786 | 7c62c0e8427bea6c8bec2cebf157b6f1ea70a213 | refs/heads/master | 2022-05-30T11:17:42.278048 | 2020-05-02T11:33:31 | 2020-05-02T11:33:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 508 | c | 838.c |
int main(){
char ANS[MAX];
memset(ANS,0,sizeof(ANS));
ANS[0]='1';
ANS[1]='\0';
int N;
cin>>N;
for(int i=1;i<=N;i++){
int LEN=strlen(ANS);
int g=0,h=0,k;
for(k=0;g||k<LEN;k++){
int mk=0;
if(k<LEN) mk=ANS[k]-'0';
h=mk*2+g;
g=h/10;
ANS[k]=h%10+'0';
}
ANS[k]='\0';
}
for(int i=0;i<strlen(ANS);i++) cout<<ANS[strlen(ANS)-i-1];
return 0;
}
|
905f626a9dfca9504e226e0235ca528955601d44 | b2156a33fc7667b6c7e8e150591f5df5c01d45f3 | /include/processor.h | 21e29d4ff5dc141845ec120dca63b672f3156340 | [
"MIT"
] | permissive | HARIKABANDARU/CppND_System_Monitor | e322b9d25dbefa525bc5f9a906237b6e2db77ce7 | f19ec89ec1fb6b657d083418cd2006482e0b9040 | refs/heads/master | 2021-05-23T16:58:38.061184 | 2020-04-06T14:52:56 | 2020-04-06T14:52:56 | 253,391,505 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 322 | h | processor.h | #ifndef PROCESSOR_H
#define PROCESSOR_H
#include <string>
using namespace std;
class Processor {
public:
float Utilization(); // TODO: See src/processor.cpp
// TODO: Declare any necessary private members
private:
string cpuName;
int idletime;
int workingtime;
float cpuUtilization;
float totalTime;
};
#endif |
0ec259615cebe3b39ecff8ca5fee2e8368a5ca12 | c291f81e729d070421443a1553892db4a4edd58b | /src/iModTracker/ART.h | 5ed8bd6220173832254a47f187ad501a40a66987 | [] | no_license | lyh458/InteractionModels_DemoCode | 2ed94d96b4453953a2dbcdf8f53b2983f25d6510 | ef46a10245a1e2c002c489b48baca4487ce447a0 | refs/heads/master | 2020-07-15T19:57:58.678927 | 2017-10-20T16:38:56 | 2017-10-20T16:38:56 | 205,638,579 | 1 | 0 | null | 2019-09-01T06:30:33 | 2019-09-01T06:30:32 | null | UTF-8 | C++ | false | false | 3,632 | h | ART.h | /*
* ART.h
*
* Created on: Sep 24, 2013
* Author: ddvogt
*/
#ifndef ART_H_
#define ART_H_
#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <boost/lexical_cast.hpp>
#include <boost/thread.hpp>
#include "DTrackSDK.hpp"
#include "Target.h"
#include "../utils/Configuration.h"
#include "../utils/Timer.h"
namespace iModTracker {
/*!
* A connection class to A.R.T motion capture systems
* */
class ART{
bool _validSQL;
std::string tableName;
typedef std::map<int, TargetPtr> TargetMapT;
TargetMapT targets;
DTrackSDK* dt;
/*!
* Flag if a server connection exists
* */
bool _updateTargets;
/*!
* Define if ART data is converted to meter or kept in cm
*/
int _convertToMeter;
/*!
* Define if ART data is converted to degree or kept in radiant
* */
int _convertToDeree;
/*!
* Stores the local mutex to provide threadsafe container access
*/
boost::mutex mx;
/*!
* Stores the working condition variable
*/
boost::condition_variable _workCondition;
/*!
* Thread for read from ART servers
* */
boost::thread* readTargetsFromServerThread;
/*!
* Definition of how many frames per second are read from the ART system
* */
int _refreshRate;
public:
ART();
virtual ~ART();
/*!
* Register new targets
* This functions reads all target ID from the global configuration file and adds them to the requested ART target list.
*/
virtual void registerTargets();
/*
* Get a target by its ID
* @param name The id of the requested ART target. This parameter is in general the ART ID
*/
TargetPtr getTarget(const int& name);
/*!
* Starts a new thread which updates targets
* */
virtual void start();
/*!
* Stop updating
* */
virtual void stop();
/*!
* Start the ART data recording
*/
void startRecording();
private:
void messages_to_console();
/*!
* Create new SQl database entry for a given target
* @param body The ART Dtrack body
* @param _frameCounter The current frame of the behavior
*/
std::string createSQlTargetString(DTrack_Body_Type_d &body, unsigned int &_frameCounter);
/*!
* Create an SQL string the represents the creation of a new table.
* The table name is created here @see iModTracker::ART::initMySQL
*/
std::string createSQlTableString();
/*!
* Update targets.
* This is a blocking call
* */
void update();
/**
* \brief Prints current tracking data to console.
*/
void output_to_console();
};
typedef std::shared_ptr<ART> ARTPtr;
} /* namespace iModTracker */
extern "C"
{
#ifndef WIN32
extern void NC_InitFunc(void) __attribute__ ((constructor));
extern void NC_TermFunc(void) __attribute__ ((destructor));
#endif
//! Library Constructor
#ifdef WIN32
__declspec(dllexport) void NC_InitFunc(void);
//! Destructor
__declspec(dllexport) void NC_TermFunc(void);
__declspec(dllexport) void NC_getTargetPosition(int id, double& x, double& y, double& z);
__declspec(dllexport) void NC_getTargetRotation(int id, double& x, double& y, double& z, double& x1, double& y1, double& z1, double& x2, double& y2, double& z2);
__declspec(dllexport) void NC_start();
__declspec(dllexport) void NC_stop();
#else
extern void NC_InitFunc(void);
//! Destructor
extern void NC_TermFunc(void);
extern void NC_getTargetPosition(int id, double& x, double& y, double& z);
extern void NC_getTargetRotation(int id, double& x, double& y, double& z, double& x1, double& y1, double& z1, double& x2, double& y2, double& z2);
extern void NC_start();
extern void NC_stop();
#endif
}
#endif /* ART_H_ */
|
f135d4830d693480424f8f20a51fe040675746fe | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/CMake/CMake-gumtree/Kitware_CMake_repos_block_1334.cpp | 606bb1965f4b281e5cb69e3f51e9feb336b2503c | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 217 | cpp | Kitware_CMake_repos_block_1334.cpp | {
(void)buff;/* UNUSED */
(void)size;/* UNUSED */
(void)offset;/* UNUSED */
archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
"zisofs is not supported on this platform.");
return (ARCHIVE_FAILED);
} |
2f17bbabf87433d20aded060486e64d8d3309982 | 6daed33da78218d059cbe056a92c0c494a89bcf7 | /enemy.cpp | 42af3146fa0984f31a609b38fe5fa94ae727df1b | [] | no_license | Kaiyu-Zhang/Tower-Defense-Work | 2a30da6bb89916d07b80b3f086f4963a315f9b62 | 7bba2fcda18927ff36bd8b4e769b992e47476d1a | refs/heads/master | 2022-11-05T03:18:56.424636 | 2020-06-28T16:29:11 | 2020-06-28T16:29:11 | 266,687,593 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,827 | cpp | enemy.cpp | #include "enemy.h"
#include "turnpoint.h"
#include "tower.h"
#include "function.h"
#include "GameWidgetA.h"
#include "musicplayer.h"
#include <QPainter>
#include <QColor>
#include <QDebug>
#include <QMatrix>
#include <QVector2D>
#include <QtMath>
static const int Health_Bar_Width = 20;
const QSize Enemy::ms_fixedSize(52, 52);
Enemy::Enemy(TurnPoint *startTurnPoint, GameWidgetA *game, const QPixmap &sprite/* = QPixmap(":/image/enemy.png")*/)
: QObject(0)
, e_active(false)
, e_maxHp(40)
, e_currentHp(40)
, e_walkingSpeed(1.0)
, e_rotationSprite(0.0)
, e_pos(startTurnPoint->pos())
, e_destinationTurnPoint(startTurnPoint->nextTurnPoint())
, e_game(game)
, e_sprite(sprite)
{
}
Enemy::~Enemy()
{
e_attackedTowersList.clear();
e_destinationTurnPoint = NULL;
e_game = NULL;
}
void Enemy::doActivate()
{
e_active = true;
}
void Enemy::setEnemyData(int t_value)
{
e_maxHp = t_value;
e_currentHp=t_value;
}
void Enemy::setEnemyData(int t_value, qreal t_s)
{
e_maxHp = t_value;
e_currentHp=t_value;
e_walkingSpeed = t_s;
}
void Enemy::setDifficulty(double t_value)
{
e_maxHp=int(e_maxHp*(1+t_value/3));
e_currentHp=e_maxHp;
if(t_value<2)
e_walkingSpeed*=t_value;
else {
e_walkingSpeed*=2;
}
}
void Enemy::move()
{
if (!e_active)
return;
if (Collision(e_pos, 1, e_destinationTurnPoint->pos(), 1))
{
// 敌人抵达了一个航点
if (e_destinationTurnPoint->nextTurnPoint())
{
// 还有下一个航点
e_pos = e_destinationTurnPoint->pos();
e_destinationTurnPoint = e_destinationTurnPoint->nextTurnPoint();
}
else
{
// 表示进入基地
e_game->getHpDamage();
e_game->removedEnemy(this);
return;
}
}
// 还在前往航点的路上
// 目标航点的坐标
QPoint targetPoint = e_destinationTurnPoint->pos();
// 未来修改这个可以添加移动状态,加快,减慢,e_walkingSpeed是基准值
// 向量标准化
qreal movementSpeed = e_walkingSpeed;
QVector2D normalized(targetPoint - e_pos);
normalized.normalize();
e_pos = e_pos + normalized.toPoint() * movementSpeed;
// 确定敌人选择方向
// 默认图片向左,需要修正180度转右
e_rotationSprite = qRadiansToDegrees(qAtan2(normalized.y(), normalized.x())) + 180;
}
void Enemy::draw(QPainter *painter) const
{
if (!e_active)
return;
painter->save();
QPoint healthBarPoint = e_pos + QPoint(-Health_Bar_Width / 2 - 5, -ms_fixedSize.height() / 2);
// 绘制血条
painter->setPen(Qt::NoPen);
painter->setBrush(Qt::red);
QRect healthBarBackRect(healthBarPoint, QSize(Health_Bar_Width, 2));
painter->drawRect(healthBarBackRect);
painter->setBrush(Qt::green);
QRect healthBarRect(healthBarPoint, QSize((double)e_currentHp / e_maxHp * Health_Bar_Width, 2));
painter->drawRect(healthBarRect);
// 绘制偏转坐标,由中心+偏移=左上
static const QPoint offsetPoint(-ms_fixedSize.width() / 2, -ms_fixedSize.height() / 2);
painter->translate(e_pos);
painter->rotate(e_rotationSprite);
// 绘制敌人
painter->drawPixmap(offsetPoint, e_sprite);
painter->restore();
}
void Enemy::getRemoved()
{
if (e_attackedTowersList.empty())
return;
foreach (Tower *attacker, e_attackedTowersList)
attacker->targetKilled();
// 通知game,此敌人已经阵亡
e_game->removedEnemy(this);
}
void Enemy::getDamage(int damage)
{
e_game->musicPlayer()->playSound(LaserShootSound);
e_currentHp -= damage;
// 阵亡,需要移除
if (e_currentHp <= 0)
{
e_game->musicPlayer()->playSound(EnemyDestorySound);
e_game->awardGold(200);
getRemoved();
}
}
void Enemy::getAttacked(Tower *attacker)
{
e_attackedTowersList.push_back(attacker);
}
// 表明敌人已经逃离了攻击范围
void Enemy::gotLostSight(Tower *attacker)
{
e_attackedTowersList.removeOne(attacker);
}
QPoint Enemy::pos() const
{
return e_pos;
}
QEnemyTypeA::QEnemyTypeA(TurnPoint *startTurnPoint, GameWidgetA *game, const QPixmap &sprite): Enemy(startTurnPoint,game,sprite)
{
setEnemyData(40,1.0);
}
QEnemyTypeB::QEnemyTypeB(TurnPoint *startTurnPoint, GameWidgetA *game, const QPixmap &sprite): Enemy(startTurnPoint,game,sprite)
{
setEnemyData(25,2);
}
//强大敌人类
QEnemyTypeC::QEnemyTypeC(TurnPoint *startTurnPoint, GameWidgetA *game, const QPixmap &sprite): Enemy(startTurnPoint,game,sprite)
{
setEnemyData(80,1.2);
}
QEnemyTypeD::QEnemyTypeD(TurnPoint *startTurnPoint, GameWidgetA *game, const QPixmap &sprite): Enemy(startTurnPoint,game,sprite)
{
setEnemyData(50,2);
}
|
56e264111169f993185160dfeb57a5ae34450fad | 8c84e5b561c66ab4e7c65688339b5a1e3f5dd98e | /CCF-2018-03/3.cpp | c186f0219dd172453b3ce7a03a693ac670b22570 | [] | no_license | jy0205/CCF | 7c5dae19b472e450c5fa28fb3401097725930e82 | 89d02c2e364a6fa9d050616d5abeb2cec697334b | refs/heads/master | 2020-04-19T18:50:53.148557 | 2019-02-09T12:54:32 | 2019-02-09T12:54:32 | 168,184,536 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,124 | cpp | 3.cpp | #include <iostream>
#include <string>
#include <vector>
#include <cctype>
using namespace std;
vector<string> role_name;
vector<vector<string>> roles;
vector<vector<string>> https;
vector<string> deal_str(string line){
vector<string> role;
role.push_back("/");
line = line.substr(1);
while(line.size() != 0){
if(line.find('/') == string::npos){
role.push_back(line);
line.clear();
}
else{
int index = line.find('/');
string para = line.substr(0,index);
role.push_back(para);
role.push_back("/");
line = line.substr(index + 1);
}
}
return role;
}
bool isint(string str){
for(int i = 0;i < str.size();i++){
if(isdigit(str[i]))
continue;
else
return false;
}
return true;
}
bool match(int index,vector<string> role,vector<string> http){
vector<string> para;
int i;
for(i = 0;i < http.size();i++){
if(i > role.size() - 1)
return false;
if(role[i] == "<int>"){
if(isint(http[i]))
para.push_back(http[i]);
else
return false;
}
else if(role[i] == "<str>"){
para.push_back(http[i]);
}
else if(role[i] == "<path>"){
string path;
for(int j = i;j < http.size();j++)
path += http[j];
para.push_back(path);
i++;
break;
}
else{
if(role[i] == http[i])
continue;
else
return false;
}
}
if(i != role.size())
return false;
cout << role_name[index] << " ";
for(int j = 0;j < para.size();j++){
if(isint(para[j]))
cout << stoi(para[j],0,10) << " ";
else
cout << para[j] << " ";
}
cout << endl;
return true;
}
void deal(vector<string> http){
for(int i = 0;i < roles.size();i++){
vector<string> role = roles[i];
if(match(i,role,http))
return;
}
cout << "404" << endl;
}
int main(){
int n,m;
string line,name;
cin >> n >> m;
for(int i = 0;i < n;i++){
cin >> line >> name;
role_name.push_back(name);
roles.push_back(deal_str(line));
}
for(int i = 0;i < m;i++){
cin >> line;
https.push_back(deal_str(line));
}
for(int i = 0;i < m;i++)
deal(https[i]);
return 0;
}
|
ba0ad8fdd6939664eef44bda3ac747ed8ddf14f6 | e75dbee79eadab65c5153900aba3e7978814e1c0 | /WirelessNetworkSimulator/Network/Routing/MWISHeuristic.h | 22aac645ebe330b4633bb54a847c74f48bf64dfb | [] | no_license | fabiorjvieira/wireless | a99bdfb5c27bc1725b1816f19323153250b272a5 | 03ad5a634de493999e0896d79cfd015963248e4e | refs/heads/master | 2022-11-05T09:41:24.072744 | 2020-06-26T11:20:49 | 2020-06-26T11:20:49 | 25,263,046 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 861 | h | MWISHeuristic.h | /*
* MWISHeuristic.h
*
* Created on: Feb 7, 2009
* Author: fjimenez
*/
#ifndef MWISHEURISTIC_H_
#define MWISHEURISTIC_H_
#include "AllRoutesDiscover.h"
namespace Networks {
namespace Routing {
namespace Heuristics {
#define MWISscore(score, alfa) ((alfa) * (score[Support::SUM])) + ((1-(alfa)) * (score[Support::MINIMUM]))
class MWISHeuristic {
public:
MWISHeuristic();
virtual ~MWISHeuristic();
static unsigned int * maximumWeightedIndependentSet(Networks::Routing::BucketNextHop * nextHops, Networks::Node ** nodes);
static void scoreHeuristics(double candidatesScore[2], Networks::Routing::NextHop nextHop, bool action);
void routing(Networks::Node ** nodes, Networks::Routing::AllRoutesDiscover * router, unsigned int origin, unsigned int destiny, char * baseFileName);
private:
};
}
}
}
#endif /* MWISHEURISTIC_H_ */
|
dd9b68785c68e26e983076a0e6a9ea14c635cb72 | 6475459339c72d7733721f26e8b08cfc0661083c | /Inzynier.h | 80fd8ffe4abf2864abd34cdb60e99b300e28cc44 | [] | no_license | KrzysztofStamirski/projekt1_ostatecznyv3 | 611ee91f23eaf3a7e3d6803077afe3d1119de319 | 10025b6d4f6ee274c24d72f8fe0593ad3d45b5b2 | refs/heads/master | 2023-03-09T09:36:39.793097 | 2021-02-13T22:56:28 | 2021-02-13T22:56:28 | 338,686,811 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 454 | h | Inzynier.h | #ifndef INZYNIER_H
#define INZYNIER_H
#include "Pracownik.h"
class Inzynier: public Pracownik {
public:
Inzynier();
void print();
virtual ~Inzynier();
static int get_liczba();
static double get_CI();
static const int wynagrodzenie = 6000;
private:
string wydzial;
string listaWydzialow[4] = {"MEiL", "WIM", "AiNS", "WIL" };
static int liczba;
static double CI;
};
#endif /* INZYNIER_H */
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.