blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
aa747c9fe93b5ecc78ce2ad690f80c2439f629dd | 3da1c543033ab5b20de0398395681011ea2c39b5 | /validate_binary_tree.cpp | e47416f9ecdac5d54f6d3c951a331f6ca8dc9845 | [] | no_license | arnabs542/CP | f2a27d6134c10b60eedc5b61aed98d821a4d6126 | 6f585b2f8c540257c2b3605089e4608b63820d1a | refs/heads/master | 2023-06-27T19:18:31.715213 | 2021-04-27T04:46:58 | 2021-04-27T04:46:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,980 | cpp | #include <bits/stdc++.h>
using namespace std;
struct TreeNode
{
int val;
TreeNode *left;
TreeNode *right;
TreeNode() : val(0), left(nullptr), right(nullptr) {}
TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
};
TreeNode *inorderPred(TreeNode *root)
{
root = root->left;
while (root->right)
{
root = root->right;
}
return root;
}
TreeNode *inorderSucc(TreeNode *root)
{
root = root->right;
while (root->left)
{
root = root->left;
}
return root;
}
// O(n.log(n)) - since we traverse each node in O(n) and
// then its inorder succesor and predecessor in O(logn)
bool isValidBST(TreeNode *root)
{
// null root is a valid binary search tree
if (root == NULL)
{
return true;
}
auto leftValid = isValidBST(root->left);
if (leftValid == false)
{
return false;
}
auto rightValid = isValidBST(root->right);
if (rightValid == false)
{
return false;
}
if (root->left)
{
// if root is less than equal to its predecessor - invalid
auto inPre = inorderPred(root);
if (inPre->val >= root->val)
{
return false;
}
}
if (root->right)
{
// if root is greater or equal to its succ - invalid
auto inSucc = inorderSucc(root);
if (root->val >= inSucc->val)
{
return false;
}
}
return true;
}
// O(n) time O(1) space approach
// we pass a lower limit and and a upper limit to a node
// the node's value should be between the uppper and lower limits
bool isValidBST(TreeNode *root, long long int low = -1e17, long long int high = 1e17)
{
if (root == NULL)
{
return true;
}
if (root->val <= low || root->val >= high)
{
return false;
}
// go to left - upper limit is this node itself
if (!isValidBST(root->left, low, root->val))
{
return false;
}
// go to right the lower limit is the root iteself
if (!isValidBST(root->right, root->val, high))
{
return false;
}
return true;
}
vector<int> inorder;
void go(TreeNode *root)
{
if (root)
{
go(root->left);
inorder.push_back(root->val);
go(root->right);
}
}
// O(n) time O(n) space
bool isValidBST(TreeNode *root)
{
inorder.clear();
go(root);
int n = inorder.size();
for (int i = 1; i < n; i++)
{
if (inorder[i] <= inorder[i - 1])
{
return false;
}
}
return true;
}
// Can also be done by inorder travesal using stack
int main()
{
} | [
"harshit02gangwar@gmail.com"
] | harshit02gangwar@gmail.com |
4645413f5beccbb0e9fcfdc9b951261c96b6d7f9 | 85039b54bd99f3269911f790c4a47ea95556360a | /c++11.13_14_15/vector.h | 1b25a3d3d47cc4ccb6e70295b7d3e746b763dd5a | [] | no_license | MissGrass/c_language | 23508c1c1273c7445b5cf508dc2b1d3c1f3cbf00 | ca29f0e3f8a82a91ab4bbbdcf115e1c3b2303783 | refs/heads/master | 2021-09-20T21:54:08.398490 | 2018-08-15T23:46:47 | 2018-08-15T23:46:47 | 86,134,391 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 965 | h | //vector.h--Vector class with << , mode state
#ifndef VECTOR_H_
#define VECTOR_H_
#include <iostream>
namespace VECTOR{
class Vector{
public:
enum Mode {RECT, POL};
private:
double x;
double y;
double mag;
double ang;
Mode mode;
void set_mag();
void set_ang();
void set_x();
void set_y();
public:
Vector();
Vector(double n1, double n2, Mode form = RECT);
void reset(double n1, double n2, Mode form = RECT);
~Vector();
double xval() const {return x;}
double yval() const {return y;}
double magval() const {return mag;}
double angval() const {return ang;}
void polar_mode();
void rect_mode();
Vector operator+(const Vector & b) const;
Vector operator-(const Vector & b) const;
Vector operator-() const;
Vector operator*(double n) const;
friend Vector operator*(double n, const Vector & a);
friend std::ostream & operator<<(std::ostream & os, const Vector & v);
};
}
#endif
| [
"1209784760@qq.com"
] | 1209784760@qq.com |
a09eb8295535d701af647441a885380ef9bbb364 | 1061216c2c33c1ed4ffb33e6211565575957e48f | /cpp-tizen/src/UserBase.cpp | b5f04357f964477300e06883b9e18e580bc9a844 | [] | no_license | MSurfer20/test2 | be9532f54839e8f58b60a8e4587348c2810ecdb9 | 13b35d72f33302fa532aea189e8f532272f1f799 | refs/heads/main | 2023-07-03T04:19:57.548080 | 2021-08-11T19:16:42 | 2021-08-11T19:16:42 | 393,920,506 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,907 | cpp | #include <map>
#include <cstdlib>
#include <glib-object.h>
#include <json-glib/json-glib.h>
#include "Helpers.h"
#include "UserBase.h"
using namespace std;
using namespace Tizen::ArtikCloud;
UserBase::UserBase()
{
//__init();
}
UserBase::~UserBase()
{
//__cleanup();
}
void
UserBase::__init()
{
//email = std::string();
//is_bot = bool(false);
//avatar_url = std::string();
//avatar_version = int(0);
//full_name = std::string();
//is_admin = bool(false);
//is_owner = bool(false);
//is_billing_admin = bool(false);
//role = int(0);
//bot_type = int(0);
//user_id = int(0);
//bot_owner_id = int(0);
//is_active = bool(false);
//is_guest = bool(false);
//timezone = std::string();
//date_joined = std::string();
//delivery_email = std::string();
//new std::map()std::map> profile_data;
}
void
UserBase::__cleanup()
{
//if(email != NULL) {
//
//delete email;
//email = NULL;
//}
//if(is_bot != NULL) {
//
//delete is_bot;
//is_bot = NULL;
//}
//if(avatar_url != NULL) {
//
//delete avatar_url;
//avatar_url = NULL;
//}
//if(avatar_version != NULL) {
//
//delete avatar_version;
//avatar_version = NULL;
//}
//if(full_name != NULL) {
//
//delete full_name;
//full_name = NULL;
//}
//if(is_admin != NULL) {
//
//delete is_admin;
//is_admin = NULL;
//}
//if(is_owner != NULL) {
//
//delete is_owner;
//is_owner = NULL;
//}
//if(is_billing_admin != NULL) {
//
//delete is_billing_admin;
//is_billing_admin = NULL;
//}
//if(role != NULL) {
//
//delete role;
//role = NULL;
//}
//if(bot_type != NULL) {
//
//delete bot_type;
//bot_type = NULL;
//}
//if(user_id != NULL) {
//
//delete user_id;
//user_id = NULL;
//}
//if(bot_owner_id != NULL) {
//
//delete bot_owner_id;
//bot_owner_id = NULL;
//}
//if(is_active != NULL) {
//
//delete is_active;
//is_active = NULL;
//}
//if(is_guest != NULL) {
//
//delete is_guest;
//is_guest = NULL;
//}
//if(timezone != NULL) {
//
//delete timezone;
//timezone = NULL;
//}
//if(date_joined != NULL) {
//
//delete date_joined;
//date_joined = NULL;
//}
//if(delivery_email != NULL) {
//
//delete delivery_email;
//delivery_email = NULL;
//}
//if(profile_data != NULL) {
//profile_data.RemoveAll(true);
//delete profile_data;
//profile_data = NULL;
//}
//
}
void
UserBase::fromJson(char* jsonStr)
{
JsonObject *pJsonObject = json_node_get_object(json_from_string(jsonStr,NULL));
JsonNode *node;
const gchar *emailKey = "email";
node = json_object_get_member(pJsonObject, emailKey);
if (node !=NULL) {
if (isprimitive("std::string")) {
jsonToValue(&email, node, "std::string", "");
} else {
}
}
const gchar *is_botKey = "is_bot";
node = json_object_get_member(pJsonObject, is_botKey);
if (node !=NULL) {
if (isprimitive("bool")) {
jsonToValue(&is_bot, node, "bool", "");
} else {
}
}
const gchar *avatar_urlKey = "avatar_url";
node = json_object_get_member(pJsonObject, avatar_urlKey);
if (node !=NULL) {
if (isprimitive("std::string")) {
jsonToValue(&avatar_url, node, "std::string", "");
} else {
}
}
const gchar *avatar_versionKey = "avatar_version";
node = json_object_get_member(pJsonObject, avatar_versionKey);
if (node !=NULL) {
if (isprimitive("int")) {
jsonToValue(&avatar_version, node, "int", "");
} else {
}
}
const gchar *full_nameKey = "full_name";
node = json_object_get_member(pJsonObject, full_nameKey);
if (node !=NULL) {
if (isprimitive("std::string")) {
jsonToValue(&full_name, node, "std::string", "");
} else {
}
}
const gchar *is_adminKey = "is_admin";
node = json_object_get_member(pJsonObject, is_adminKey);
if (node !=NULL) {
if (isprimitive("bool")) {
jsonToValue(&is_admin, node, "bool", "");
} else {
}
}
const gchar *is_ownerKey = "is_owner";
node = json_object_get_member(pJsonObject, is_ownerKey);
if (node !=NULL) {
if (isprimitive("bool")) {
jsonToValue(&is_owner, node, "bool", "");
} else {
}
}
const gchar *is_billing_adminKey = "is_billing_admin";
node = json_object_get_member(pJsonObject, is_billing_adminKey);
if (node !=NULL) {
if (isprimitive("bool")) {
jsonToValue(&is_billing_admin, node, "bool", "");
} else {
}
}
const gchar *roleKey = "role";
node = json_object_get_member(pJsonObject, roleKey);
if (node !=NULL) {
if (isprimitive("int")) {
jsonToValue(&role, node, "int", "");
} else {
}
}
const gchar *bot_typeKey = "bot_type";
node = json_object_get_member(pJsonObject, bot_typeKey);
if (node !=NULL) {
if (isprimitive("int")) {
jsonToValue(&bot_type, node, "int", "");
} else {
}
}
const gchar *user_idKey = "user_id";
node = json_object_get_member(pJsonObject, user_idKey);
if (node !=NULL) {
if (isprimitive("int")) {
jsonToValue(&user_id, node, "int", "");
} else {
}
}
const gchar *bot_owner_idKey = "bot_owner_id";
node = json_object_get_member(pJsonObject, bot_owner_idKey);
if (node !=NULL) {
if (isprimitive("int")) {
jsonToValue(&bot_owner_id, node, "int", "");
} else {
}
}
const gchar *is_activeKey = "is_active";
node = json_object_get_member(pJsonObject, is_activeKey);
if (node !=NULL) {
if (isprimitive("bool")) {
jsonToValue(&is_active, node, "bool", "");
} else {
}
}
const gchar *is_guestKey = "is_guest";
node = json_object_get_member(pJsonObject, is_guestKey);
if (node !=NULL) {
if (isprimitive("bool")) {
jsonToValue(&is_guest, node, "bool", "");
} else {
}
}
const gchar *timezoneKey = "timezone";
node = json_object_get_member(pJsonObject, timezoneKey);
if (node !=NULL) {
if (isprimitive("std::string")) {
jsonToValue(&timezone, node, "std::string", "");
} else {
}
}
const gchar *date_joinedKey = "date_joined";
node = json_object_get_member(pJsonObject, date_joinedKey);
if (node !=NULL) {
if (isprimitive("std::string")) {
jsonToValue(&date_joined, node, "std::string", "");
} else {
}
}
const gchar *delivery_emailKey = "delivery_email";
node = json_object_get_member(pJsonObject, delivery_emailKey);
if (node !=NULL) {
if (isprimitive("std::string")) {
jsonToValue(&delivery_email, node, "std::string", "");
} else {
}
}
const gchar *profile_dataKey = "profile_data";
node = json_object_get_member(pJsonObject, profile_dataKey);
if (node !=NULL) {
{
JsonObject* json_obj = json_node_get_object(node);
map<string,string> new_map;
json_object_foreach_member(json_obj,helper_func,&new_map);
profile_data = new_map;
}
}
}
UserBase::UserBase(char* json)
{
this->fromJson(json);
}
char*
UserBase::toJson()
{
JsonObject *pJsonObject = json_object_new();
JsonNode *node;
if (isprimitive("std::string")) {
std::string obj = getEmail();
node = converttoJson(&obj, "std::string", "");
}
else {
}
const gchar *emailKey = "email";
json_object_set_member(pJsonObject, emailKey, node);
if (isprimitive("bool")) {
bool obj = getIsBot();
node = converttoJson(&obj, "bool", "");
}
else {
}
const gchar *is_botKey = "is_bot";
json_object_set_member(pJsonObject, is_botKey, node);
if (isprimitive("std::string")) {
std::string obj = getAvatarUrl();
node = converttoJson(&obj, "std::string", "");
}
else {
}
const gchar *avatar_urlKey = "avatar_url";
json_object_set_member(pJsonObject, avatar_urlKey, node);
if (isprimitive("int")) {
int obj = getAvatarVersion();
node = converttoJson(&obj, "int", "");
}
else {
}
const gchar *avatar_versionKey = "avatar_version";
json_object_set_member(pJsonObject, avatar_versionKey, node);
if (isprimitive("std::string")) {
std::string obj = getFullName();
node = converttoJson(&obj, "std::string", "");
}
else {
}
const gchar *full_nameKey = "full_name";
json_object_set_member(pJsonObject, full_nameKey, node);
if (isprimitive("bool")) {
bool obj = getIsAdmin();
node = converttoJson(&obj, "bool", "");
}
else {
}
const gchar *is_adminKey = "is_admin";
json_object_set_member(pJsonObject, is_adminKey, node);
if (isprimitive("bool")) {
bool obj = getIsOwner();
node = converttoJson(&obj, "bool", "");
}
else {
}
const gchar *is_ownerKey = "is_owner";
json_object_set_member(pJsonObject, is_ownerKey, node);
if (isprimitive("bool")) {
bool obj = getIsBillingAdmin();
node = converttoJson(&obj, "bool", "");
}
else {
}
const gchar *is_billing_adminKey = "is_billing_admin";
json_object_set_member(pJsonObject, is_billing_adminKey, node);
if (isprimitive("int")) {
int obj = getRole();
node = converttoJson(&obj, "int", "");
}
else {
}
const gchar *roleKey = "role";
json_object_set_member(pJsonObject, roleKey, node);
if (isprimitive("int")) {
int obj = getBotType();
node = converttoJson(&obj, "int", "");
}
else {
}
const gchar *bot_typeKey = "bot_type";
json_object_set_member(pJsonObject, bot_typeKey, node);
if (isprimitive("int")) {
int obj = getUserId();
node = converttoJson(&obj, "int", "");
}
else {
}
const gchar *user_idKey = "user_id";
json_object_set_member(pJsonObject, user_idKey, node);
if (isprimitive("int")) {
int obj = getBotOwnerId();
node = converttoJson(&obj, "int", "");
}
else {
}
const gchar *bot_owner_idKey = "bot_owner_id";
json_object_set_member(pJsonObject, bot_owner_idKey, node);
if (isprimitive("bool")) {
bool obj = getIsActive();
node = converttoJson(&obj, "bool", "");
}
else {
}
const gchar *is_activeKey = "is_active";
json_object_set_member(pJsonObject, is_activeKey, node);
if (isprimitive("bool")) {
bool obj = getIsGuest();
node = converttoJson(&obj, "bool", "");
}
else {
}
const gchar *is_guestKey = "is_guest";
json_object_set_member(pJsonObject, is_guestKey, node);
if (isprimitive("std::string")) {
std::string obj = getTimezone();
node = converttoJson(&obj, "std::string", "");
}
else {
}
const gchar *timezoneKey = "timezone";
json_object_set_member(pJsonObject, timezoneKey, node);
if (isprimitive("std::string")) {
std::string obj = getDateJoined();
node = converttoJson(&obj, "std::string", "");
}
else {
}
const gchar *date_joinedKey = "date_joined";
json_object_set_member(pJsonObject, date_joinedKey, node);
if (isprimitive("std::string")) {
std::string obj = getDeliveryEmail();
node = converttoJson(&obj, "std::string", "");
}
else {
}
const gchar *delivery_emailKey = "delivery_email";
json_object_set_member(pJsonObject, delivery_emailKey, node);
{
JsonObject* json_obj;
map<string, string> new_list = static_cast<map <string, string> > (getProfileData());
json_obj = json_object_new();
for (map<string, string>::iterator it = new_list.begin(); it != new_list.end(); it++) {
string obj = (*it).first;
string obj2 = (*it).second;
JsonNode* tempnode = json_from_string(obj2.c_str(),NULL);
json_object_set_member(json_obj, obj.c_str(), tempnode);
}
node = json_node_alloc();
json_node_init_object(node, json_obj);
json_object_unref(json_obj);
}
const gchar *profile_dataKey = "profile_data";
json_object_set_member(pJsonObject, profile_dataKey, node);
node = json_node_alloc();
json_node_init(node, JSON_NODE_OBJECT);
json_node_take_object(node, pJsonObject);
char * ret = json_to_string(node, false);
json_node_free(node);
return ret;
}
std::string
UserBase::getEmail()
{
return email;
}
void
UserBase::setEmail(std::string email)
{
this->email = email;
}
bool
UserBase::getIsBot()
{
return is_bot;
}
void
UserBase::setIsBot(bool is_bot)
{
this->is_bot = is_bot;
}
std::string
UserBase::getAvatarUrl()
{
return avatar_url;
}
void
UserBase::setAvatarUrl(std::string avatar_url)
{
this->avatar_url = avatar_url;
}
int
UserBase::getAvatarVersion()
{
return avatar_version;
}
void
UserBase::setAvatarVersion(int avatar_version)
{
this->avatar_version = avatar_version;
}
std::string
UserBase::getFullName()
{
return full_name;
}
void
UserBase::setFullName(std::string full_name)
{
this->full_name = full_name;
}
bool
UserBase::getIsAdmin()
{
return is_admin;
}
void
UserBase::setIsAdmin(bool is_admin)
{
this->is_admin = is_admin;
}
bool
UserBase::getIsOwner()
{
return is_owner;
}
void
UserBase::setIsOwner(bool is_owner)
{
this->is_owner = is_owner;
}
bool
UserBase::getIsBillingAdmin()
{
return is_billing_admin;
}
void
UserBase::setIsBillingAdmin(bool is_billing_admin)
{
this->is_billing_admin = is_billing_admin;
}
int
UserBase::getRole()
{
return role;
}
void
UserBase::setRole(int role)
{
this->role = role;
}
int
UserBase::getBotType()
{
return bot_type;
}
void
UserBase::setBotType(int bot_type)
{
this->bot_type = bot_type;
}
int
UserBase::getUserId()
{
return user_id;
}
void
UserBase::setUserId(int user_id)
{
this->user_id = user_id;
}
int
UserBase::getBotOwnerId()
{
return bot_owner_id;
}
void
UserBase::setBotOwnerId(int bot_owner_id)
{
this->bot_owner_id = bot_owner_id;
}
bool
UserBase::getIsActive()
{
return is_active;
}
void
UserBase::setIsActive(bool is_active)
{
this->is_active = is_active;
}
bool
UserBase::getIsGuest()
{
return is_guest;
}
void
UserBase::setIsGuest(bool is_guest)
{
this->is_guest = is_guest;
}
std::string
UserBase::getTimezone()
{
return timezone;
}
void
UserBase::setTimezone(std::string timezone)
{
this->timezone = timezone;
}
std::string
UserBase::getDateJoined()
{
return date_joined;
}
void
UserBase::setDateJoined(std::string date_joined)
{
this->date_joined = date_joined;
}
std::string
UserBase::getDeliveryEmail()
{
return delivery_email;
}
void
UserBase::setDeliveryEmail(std::string delivery_email)
{
this->delivery_email = delivery_email;
}
std::map<string, string>
UserBase::getProfileData()
{
return profile_data;
}
void
UserBase::setProfileData(std::map <string, string> profile_data)
{
this->profile_data = profile_data;
}
| [
"suyash.mathur@research.iiit.ac.in"
] | suyash.mathur@research.iiit.ac.in |
e63b1abce807e3d7f9211c5814cd42e531bb368e | 8d418bfc471739cfcc2a3f1d27e1b936199e66fe | /src/qt/herbstrings.cpp | 3ab53549010b60b586afa4e34f44b6b79c43e401 | [
"MIT"
] | permissive | danrachita/herb | 6ec2d8c03300b4e6e58f4acda33921aedcf82f1b | 183671eb3ac66b48e6f12835fd643564f582a9a6 | refs/heads/master | 2021-07-12T10:18:40.900936 | 2019-03-17T20:11:41 | 2019-03-17T20:11:41 | 141,052,616 | 0 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 33,275 | cpp |
#include <QtGlobal>
// Automatically generated by extract_strings.py
#ifdef __GNUC__
#define UNUSED __attribute__((unused))
#else
#define UNUSED
#endif
static const char UNUSED* herb_strings[] = {
QT_TRANSLATE_NOOP("herb-core", ""
"(1 = keep tx meta data e.g. account owner and payment request information, 2 "
"= drop tx meta data)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Allow JSON-RPC connections from specified source. Valid for <ip> are a "
"single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or "
"a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times"),
QT_TRANSLATE_NOOP("herb-core", ""
"An error occurred while setting up the RPC address %s port %u for listening: "
"%s"),
QT_TRANSLATE_NOOP("herb-core", ""
"Bind to given address and always listen on it. Use [host]:port notation for "
"IPv6"),
QT_TRANSLATE_NOOP("herb-core", ""
"Bind to given address and whitelist peers connecting to it. Use [host]:port "
"notation for IPv6"),
QT_TRANSLATE_NOOP("herb-core", ""
"Bind to given address to listen for JSON-RPC connections. Use [host]:port "
"notation for IPv6. This option can be specified multiple times (default: "
"bind to all interfaces)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Cannot obtain a lock on data directory %s. HERB Core is probably already "
"running."),
QT_TRANSLATE_NOOP("herb-core", ""
"Change automatic finalized budget voting behavior. mode=auto: Vote for only "
"exact finalized budget match to my generated budget. (string, default: auto)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Continuously rate-limit free transactions to <n>*1000 bytes per minute "
"(default:%u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Create new files with system default permissions, instead of umask 077 (only "
"effective with disabled wallet functionality)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Delete all wallet transactions and only recover those parts of the "
"blockchain through -rescan on startup"),
QT_TRANSLATE_NOOP("herb-core", ""
"Disable all HERB specific functionality (Masternodes, Darksend, InstantX, "
"Budgeting) (0-1, default: %u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Distributed under the MIT software license, see the accompanying file "
"COPYING or <http://www.opensource.org/licenses/mit-license.php>."),
QT_TRANSLATE_NOOP("herb-core", ""
"Enable Instantx, show confirmations for locked transactions (bool, default: "
"%s)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Enable use of automated Darksend for funds stored in this wallet (0-1, "
"default: %u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Enter regression test mode, which uses a special chain in which blocks can "
"be solved instantly."),
QT_TRANSLATE_NOOP("herb-core", ""
"Error: Listening for incoming connections failed (listen returned error %s)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Error: Unsupported argument -socks found. Setting SOCKS version isn't "
"possible anymore, only SOCKS5 proxies are supported."),
QT_TRANSLATE_NOOP("herb-core", ""
"Execute command when a relevant alert is received or we see a really long "
"fork (%s in cmd is replaced by message)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Execute command when a wallet transaction changes (%s in cmd is replaced by "
"TxID)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Execute command when the best block changes (%s in cmd is replaced by block "
"hash)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Fees (in HERB/Kb) smaller than this are considered zero fee for relaying "
"(default: %s)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Fees (in HERB/Kb) smaller than this are considered zero fee for transaction "
"creation (default: %s)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Flush database activity from memory pool to disk log every <n> megabytes "
"(default: %u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Found unconfirmed denominated outputs, will wait till they confirm to "
"continue."),
QT_TRANSLATE_NOOP("herb-core", ""
"How thorough the block verification of -checkblocks is (0-4, default: %u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"If paytxfee is not set, include enough fee so transactions begin "
"confirmation on average within n blocks (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"In this mode -genproclimit controls how many blocks are generated "
"immediately."),
QT_TRANSLATE_NOOP("herb-core", ""
"Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay "
"fee of %s to prevent stuck transactions)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Log transaction priority and fee per kB when mining blocks (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Maintain a full transaction index, used by the getrawtransaction rpc call "
"(default: %u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Maximum size of data in data carrier transactions we relay and mine "
"(default: %u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Maximum total fees to use in a single wallet transaction, setting too low "
"may abort large transactions (default: %s)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Name to construct url for KeePass entry that stores the wallet passphrase"),
QT_TRANSLATE_NOOP("herb-core", ""
"Number of seconds to keep misbehaving peers from reconnecting (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Darksend uses exact denominated amounts to send funds, you might simply "
"need to anonymize some more coins."),
QT_TRANSLATE_NOOP("herb-core", ""
"Output debugging information (default: %u, supplying <category> is optional)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Provide liquidity to Darksend by infrequently mixing coins on a continual "
"basis (0-100, default: %u, 1=very frequent, high fees, 100=very infrequent, "
"low fees)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Query for peer addresses via DNS lookup, if low on addresses (default: 1 "
"unless -connect)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Require high priority for relaying free or low-fee transactions (default:%u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Send trace/debug info to console instead of debug.log file (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Set the number of script verification threads (%u to %d, 0 = auto, <0 = "
"leave that many cores free, default: %d)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Set the number of threads for coin generation if enabled (-1 = all cores, "
"default: %d)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Show N confirmations for a successfully locked transaction (0-9999, default: "
"%u)"),
QT_TRANSLATE_NOOP("herb-core", ""
"InstantX requires inputs with at least 6 confirmations, you might need to "
"wait a few minutes and try again."),
QT_TRANSLATE_NOOP("herb-core", ""
"This is a pre-release test build - use at your own risk - do not use for "
"mining or merchant applications"),
QT_TRANSLATE_NOOP("herb-core", ""
"This product includes software developed by the OpenSSL Project for use in "
"the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software "
"written by Eric Young and UPnP software written by Thomas Bernard."),
QT_TRANSLATE_NOOP("herb-core", ""
"To use herbd, or the -server option to herb-qt, you must set an rpcpassword "
"in the configuration file:\n"
"%s\n"
"It is recommended you use the following random password:\n"
"rpcuser=herbrpc\n"
"rpcpassword=%s\n"
"(you do not need to remember this password)\n"
"The username and password MUST NOT be the same.\n"
"If the file does not exist, create it with owner-readable-only file "
"permissions.\n"
"It is also recommended to set alertnotify so you are notified of problems;\n"
"for example: alertnotify=echo %%s | mail -s \"HERB Alert\" admin@foo.com\n"),
QT_TRANSLATE_NOOP("herb-core", ""
"Unable to bind to %s on this computer. HERB Core is probably already running."),
QT_TRANSLATE_NOOP("herb-core", ""
"Unable to locate enough Darksend denominated funds for this transaction."),
QT_TRANSLATE_NOOP("herb-core", ""
"Unable to locate enough Darksend non-denominated funds for this "
"transaction that are not equal 10000 HERB."),
QT_TRANSLATE_NOOP("herb-core", ""
"Unable to locate enough funds for this transaction that are not equal 10000 "
"HERB."),
QT_TRANSLATE_NOOP("herb-core", ""
"Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: "
"%s)"),
QT_TRANSLATE_NOOP("herb-core", ""
"Warning: -maxtxfee is set very high! Fees this large could be paid on a "
"single transaction."),
QT_TRANSLATE_NOOP("herb-core", ""
"Warning: -paytxfee is set very high! This is the transaction fee you will "
"pay if you send a transaction."),
QT_TRANSLATE_NOOP("herb-core", ""
"Warning: Please check that your computer's date and time are correct! If "
"your clock is wrong HERB Core will not work properly."),
QT_TRANSLATE_NOOP("herb-core", ""
"Warning: The network does not appear to fully agree! Some miners appear to "
"be experiencing issues."),
QT_TRANSLATE_NOOP("herb-core", ""
"Warning: We do not appear to fully agree with our peers! You may need to "
"upgrade, or other nodes may need to upgrade."),
QT_TRANSLATE_NOOP("herb-core", ""
"Warning: error reading wallet.dat! All keys read correctly, but transaction "
"data or address book entries might be missing or incorrect."),
QT_TRANSLATE_NOOP("herb-core", ""
"Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as "
"wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect "
"you should restore from a backup."),
QT_TRANSLATE_NOOP("herb-core", ""
"Whitelist peers connecting from the given netmask or IP address. Can be "
"specified multiple times."),
QT_TRANSLATE_NOOP("herb-core", ""
"Whitelisted peers cannot be DoS banned and their transactions are always "
"relayed, even if they are already in the mempool, useful e.g. for a gateway"),
QT_TRANSLATE_NOOP("herb-core", ""
"You must specify a masternodeprivkey in the configuration. Please see "
"documentation for help."),
QT_TRANSLATE_NOOP("herb-core", "(55500 could be used only on mainnet)"),
QT_TRANSLATE_NOOP("herb-core", "(default: %s)"),
QT_TRANSLATE_NOOP("herb-core", "(default: 1)"),
QT_TRANSLATE_NOOP("herb-core", "(must be 55500 for mainnet)"),
QT_TRANSLATE_NOOP("herb-core", "<category> can be:\n"),
QT_TRANSLATE_NOOP("herb-core", "Accept command line and JSON-RPC commands"),
QT_TRANSLATE_NOOP("herb-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"),
QT_TRANSLATE_NOOP("herb-core", "Accept public REST requests (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Acceptable ciphers (default: %s)"),
QT_TRANSLATE_NOOP("herb-core", "Add a node to connect to and attempt to keep the connection open"),
QT_TRANSLATE_NOOP("herb-core", "Allow DNS lookups for -addnode, -seednode and -connect"),
QT_TRANSLATE_NOOP("herb-core", "Already have that input."),
QT_TRANSLATE_NOOP("herb-core", "Always query for peer addresses via DNS lookup (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Attempt to recover private keys from a corrupt wallet.dat"),
QT_TRANSLATE_NOOP("herb-core", "Block creation options:"),
QT_TRANSLATE_NOOP("herb-core", "Can't denominate: no compatible inputs left."),
QT_TRANSLATE_NOOP("herb-core", "Can't find random Masternode."),
QT_TRANSLATE_NOOP("herb-core", "Can't mix while sync in progress."),
QT_TRANSLATE_NOOP("herb-core", "Cannot downgrade wallet"),
QT_TRANSLATE_NOOP("herb-core", "Cannot resolve -bind address: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "Cannot resolve -externalip address: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "Cannot resolve -whitebind address: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "Cannot write default address"),
QT_TRANSLATE_NOOP("herb-core", "Collateral not valid."),
QT_TRANSLATE_NOOP("herb-core", "Connect only to the specified node(s)"),
QT_TRANSLATE_NOOP("herb-core", "Connect through SOCKS5 proxy"),
QT_TRANSLATE_NOOP("herb-core", "Connect to KeePassHttp on port <port> (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Connect to a node to retrieve peer addresses, and disconnect"),
QT_TRANSLATE_NOOP("herb-core", "Connection options:"),
QT_TRANSLATE_NOOP("herb-core", "Copyright (C) 2009-%i The Bitcoin Core Developers"),
QT_TRANSLATE_NOOP("herb-core", "Copyright (C) 2014-%i The Dash and PIVX Core Developers"),
QT_TRANSLATE_NOOP("herb-core", "Copyright (C) 2015-%i The HERB Core Developers"),
QT_TRANSLATE_NOOP("herb-core", "Corrupted block database detected"),
QT_TRANSLATE_NOOP("herb-core", "Could not parse -rpcbind value %s as network address"),
QT_TRANSLATE_NOOP("herb-core", "Could not parse masternode.conf"),
QT_TRANSLATE_NOOP("herb-core", "Debugging/Testing options:"),
QT_TRANSLATE_NOOP("herb-core", "Disable safemode, override a real safe mode event (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Discover own IP address (default: 1 when listening and no -externalip)"),
QT_TRANSLATE_NOOP("herb-core", "Do not load the wallet and disable wallet RPC calls"),
QT_TRANSLATE_NOOP("herb-core", "Do you want to rebuild the block database now?"),
QT_TRANSLATE_NOOP("herb-core", "Done loading"),
QT_TRANSLATE_NOOP("herb-core", "Enable the client to act as a masternode (0-1, default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Entries are full."),
QT_TRANSLATE_NOOP("herb-core", "Error connecting to Masternode."),
QT_TRANSLATE_NOOP("herb-core", "Error initializing block database"),
QT_TRANSLATE_NOOP("herb-core", "Error initializing wallet database environment %s!"),
QT_TRANSLATE_NOOP("herb-core", "Error loading block database"),
QT_TRANSLATE_NOOP("herb-core", "Error loading wallet.dat"),
QT_TRANSLATE_NOOP("herb-core", "Error loading wallet.dat: Wallet corrupted"),
QT_TRANSLATE_NOOP("herb-core", "Error loading wallet.dat: Wallet requires newer version of HERB Core"),
QT_TRANSLATE_NOOP("herb-core", "Error opening block database"),
QT_TRANSLATE_NOOP("herb-core", "Error reading from database, shutting down."),
QT_TRANSLATE_NOOP("herb-core", "Error recovering public key."),
QT_TRANSLATE_NOOP("herb-core", "Error"),
QT_TRANSLATE_NOOP("herb-core", "Error: A fatal internal error occured, see debug.log for details"),
QT_TRANSLATE_NOOP("herb-core", "Error: Can't select current denominated inputs"),
QT_TRANSLATE_NOOP("herb-core", "Error: Disk space is low!"),
QT_TRANSLATE_NOOP("herb-core", "Error: Unsupported argument -tor found, use -onion."),
QT_TRANSLATE_NOOP("herb-core", "Error: Wallet locked, unable to create transaction!"),
QT_TRANSLATE_NOOP("herb-core", "Error: You already have pending entries in the Darksend pool"),
QT_TRANSLATE_NOOP("herb-core", "Failed to listen on any port. Use -listen=0 if you want this."),
QT_TRANSLATE_NOOP("herb-core", "Failed to read block"),
QT_TRANSLATE_NOOP("herb-core", "Fee (in HERB/kB) to add to transactions you send (default: %s)"),
QT_TRANSLATE_NOOP("herb-core", "Finalizing transaction."),
QT_TRANSLATE_NOOP("herb-core", "Force safe mode (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Found enough users, signing ( waiting %s )"),
QT_TRANSLATE_NOOP("herb-core", "Found enough users, signing ..."),
QT_TRANSLATE_NOOP("herb-core", "Generate coins (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "How many blocks to check at startup (default: %u, 0 = all)"),
QT_TRANSLATE_NOOP("herb-core", "If <category> is not supplied, output all debugging information."),
QT_TRANSLATE_NOOP("herb-core", "Importing..."),
QT_TRANSLATE_NOOP("herb-core", "Imports blocks from external blk000??.dat file"),
QT_TRANSLATE_NOOP("herb-core", "Include IP addresses in debug output (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Incompatible mode."),
QT_TRANSLATE_NOOP("herb-core", "Incompatible version."),
QT_TRANSLATE_NOOP("herb-core", "Incorrect or no genesis block found. Wrong datadir for network?"),
QT_TRANSLATE_NOOP("herb-core", "Information"),
QT_TRANSLATE_NOOP("herb-core", "Initialization sanity check failed. HERB Core is shutting down."),
QT_TRANSLATE_NOOP("herb-core", "Input is not valid."),
QT_TRANSLATE_NOOP("herb-core", "Insufficient funds."),
QT_TRANSLATE_NOOP("herb-core", "Invalid -onion address: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "Invalid -proxy address: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "Invalid amount for -maxtxfee=<amount>: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "Invalid amount for -minrelaytxfee=<amount>: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "Invalid amount for -mintxfee=<amount>: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s)"),
QT_TRANSLATE_NOOP("herb-core", "Invalid amount for -paytxfee=<amount>: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "Invalid amount for -reservebalance=<amount>"),
QT_TRANSLATE_NOOP("herb-core", "Invalid masternodeprivkey. Please see documenation."),
QT_TRANSLATE_NOOP("herb-core", "Invalid netmask specified in -whitelist: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "Invalid port detected in masternode.conf"),
QT_TRANSLATE_NOOP("herb-core", "Invalid private key."),
QT_TRANSLATE_NOOP("herb-core", "Invalid script detected."),
QT_TRANSLATE_NOOP("herb-core", "KeePassHttp id for the established association"),
QT_TRANSLATE_NOOP("herb-core", "KeePassHttp key for AES encrypted communication with KeePass"),
QT_TRANSLATE_NOOP("herb-core", "Keep N HERB anonymized (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Keep at most <n> unconnectable transactions in memory (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Last Darksend was too recent."),
QT_TRANSLATE_NOOP("herb-core", "Last successful Darksend action was too recent."),
QT_TRANSLATE_NOOP("herb-core", "Limit size of signature cache to <n> entries (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Line: %d"),
QT_TRANSLATE_NOOP("herb-core", "Listen for JSON-RPC connections on <port> (default: %u or testnet: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Listen for connections on <port> (default: %u or testnet: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Loading addresses..."),
QT_TRANSLATE_NOOP("herb-core", "Loading block index..."),
QT_TRANSLATE_NOOP("herb-core", "Loading budget cache..."),
QT_TRANSLATE_NOOP("herb-core", "Loading masternode cache..."),
QT_TRANSLATE_NOOP("herb-core", "Loading masternode payment cache..."),
QT_TRANSLATE_NOOP("herb-core", "Loading wallet... (%3.2f %%)"),
QT_TRANSLATE_NOOP("herb-core", "Loading wallet..."),
QT_TRANSLATE_NOOP("herb-core", "Lock is already in place."),
QT_TRANSLATE_NOOP("herb-core", "Lock masternodes from masternode configuration file (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Maintain at most <n> connections to peers (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Masternode options:"),
QT_TRANSLATE_NOOP("herb-core", "Masternode queue is full."),
QT_TRANSLATE_NOOP("herb-core", "Masternode:"),
QT_TRANSLATE_NOOP("herb-core", "Maximum per-connection receive buffer, <n>*1000 bytes (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Maximum per-connection send buffer, <n>*1000 bytes (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Missing input transaction information."),
QT_TRANSLATE_NOOP("herb-core", "Mixing in progress..."),
QT_TRANSLATE_NOOP("herb-core", "Need to specify a port with -whitebind: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "No Masternodes detected."),
QT_TRANSLATE_NOOP("herb-core", "No compatible Masternode found."),
QT_TRANSLATE_NOOP("herb-core", "No funds detected in need of denominating."),
QT_TRANSLATE_NOOP("herb-core", "No matching denominations found for mixing."),
QT_TRANSLATE_NOOP("herb-core", "Node relay options:"),
QT_TRANSLATE_NOOP("herb-core", "Non-standard public key detected."),
QT_TRANSLATE_NOOP("herb-core", "Not compatible with existing transactions."),
QT_TRANSLATE_NOOP("herb-core", "Not enough file descriptors available."),
QT_TRANSLATE_NOOP("herb-core", "Not in the Masternode list."),
QT_TRANSLATE_NOOP("herb-core", "Number of automatic wallet backups (default: 10)"),
QT_TRANSLATE_NOOP("herb-core", "Darksend is idle."),
QT_TRANSLATE_NOOP("herb-core", "Darksend options:"),
QT_TRANSLATE_NOOP("herb-core", "Darksend request complete:"),
QT_TRANSLATE_NOOP("herb-core", "Darksend request incomplete:"),
QT_TRANSLATE_NOOP("herb-core", "Only accept block chain matching built-in checkpoints (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Only connect to nodes in network <net> (ipv4, ipv6 or onion)"),
QT_TRANSLATE_NOOP("herb-core", "Options:"),
QT_TRANSLATE_NOOP("herb-core", "Password for JSON-RPC connections"),
QT_TRANSLATE_NOOP("herb-core", "Prepend debug output with timestamp (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions)"),
QT_TRANSLATE_NOOP("herb-core", "RPC server options:"),
QT_TRANSLATE_NOOP("herb-core", "RPC support for HTTP persistent connections (default: %d)"),
QT_TRANSLATE_NOOP("herb-core", "Randomly drop 1 of every <n> network messages"),
QT_TRANSLATE_NOOP("herb-core", "Randomly fuzz 1 of every <n> network messages"),
QT_TRANSLATE_NOOP("herb-core", "Rebuild block chain index from current blk000??.dat files"),
QT_TRANSLATE_NOOP("herb-core", "Receive and display P2P network alerts (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Relay and mine data carrier transactions (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Relay non-P2SH multisig (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Rescan the block chain for missing wallet transactions"),
QT_TRANSLATE_NOOP("herb-core", "Rescanning..."),
QT_TRANSLATE_NOOP("herb-core", "Run a thread to flush wallet periodically (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Run in the background as a daemon and accept commands"),
QT_TRANSLATE_NOOP("herb-core", "Send transactions as zero-fee transactions if possible (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Server certificate file (default: %s)"),
QT_TRANSLATE_NOOP("herb-core", "Server private key (default: %s)"),
QT_TRANSLATE_NOOP("herb-core", "Session not complete!"),
QT_TRANSLATE_NOOP("herb-core", "Session timed out."),
QT_TRANSLATE_NOOP("herb-core", "Set database cache size in megabytes (%d to %d, default: %d)"),
QT_TRANSLATE_NOOP("herb-core", "Set external address:port to get to this masternode (example: %s)"),
QT_TRANSLATE_NOOP("herb-core", "Set key pool size to <n> (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Set maximum block size in bytes (default: %d)"),
QT_TRANSLATE_NOOP("herb-core", "Set minimum block size in bytes (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Set the masternode private key"),
QT_TRANSLATE_NOOP("herb-core", "Set the number of threads to service RPC calls (default: %d)"),
QT_TRANSLATE_NOOP("herb-core", "Sets the DB_PRIVATE flag in the wallet db environment (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Show all debugging options (usage: --help -help-debug)"),
QT_TRANSLATE_NOOP("herb-core", "Shrink debug.log file on client startup (default: 1 when no -debug)"),
QT_TRANSLATE_NOOP("herb-core", "Signing failed."),
QT_TRANSLATE_NOOP("herb-core", "Signing timed out."),
QT_TRANSLATE_NOOP("herb-core", "Signing transaction failed"),
QT_TRANSLATE_NOOP("herb-core", "Specify configuration file (default: %s)"),
QT_TRANSLATE_NOOP("herb-core", "Specify connection timeout in milliseconds (minimum: 1, default: %d)"),
QT_TRANSLATE_NOOP("herb-core", "Specify data directory"),
QT_TRANSLATE_NOOP("herb-core", "Specify masternode configuration file (default: %s)"),
QT_TRANSLATE_NOOP("herb-core", "Specify pid file (default: %s)"),
QT_TRANSLATE_NOOP("herb-core", "Specify wallet file (within data directory)"),
QT_TRANSLATE_NOOP("herb-core", "Specify your own public address"),
QT_TRANSLATE_NOOP("herb-core", "Spend unconfirmed change when sending transactions (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Stop running after importing blocks from disk (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Submitted following entries to masternode: %u / %d"),
QT_TRANSLATE_NOOP("herb-core", "Submitted to masternode, waiting for more entries ( %u / %d ) %s"),
QT_TRANSLATE_NOOP("herb-core", "Submitted to masternode, waiting in queue %s"),
QT_TRANSLATE_NOOP("herb-core", "InstantX options:"),
QT_TRANSLATE_NOOP("herb-core", "Synchronization failed"),
QT_TRANSLATE_NOOP("herb-core", "Synchronization finished"),
QT_TRANSLATE_NOOP("herb-core", "Synchronization pending..."),
QT_TRANSLATE_NOOP("herb-core", "Synchronizing budgets..."),
QT_TRANSLATE_NOOP("herb-core", "Synchronizing masternode winners..."),
QT_TRANSLATE_NOOP("herb-core", "Synchronizing masternodes..."),
QT_TRANSLATE_NOOP("herb-core", "Synchronizing sporks..."),
QT_TRANSLATE_NOOP("herb-core", "This help message"),
QT_TRANSLATE_NOOP("herb-core", "This is experimental software."),
QT_TRANSLATE_NOOP("herb-core", "This is intended for regression testing tools and app development."),
QT_TRANSLATE_NOOP("herb-core", "This is not a Masternode."),
QT_TRANSLATE_NOOP("herb-core", "Threshold for disconnecting misbehaving peers (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Transaction amount too small"),
QT_TRANSLATE_NOOP("herb-core", "Transaction amounts must be positive"),
QT_TRANSLATE_NOOP("herb-core", "Transaction created successfully."),
QT_TRANSLATE_NOOP("herb-core", "Transaction fees are too high."),
QT_TRANSLATE_NOOP("herb-core", "Transaction not valid."),
QT_TRANSLATE_NOOP("herb-core", "Transaction too large for fee policy"),
QT_TRANSLATE_NOOP("herb-core", "Transaction too large"),
QT_TRANSLATE_NOOP("herb-core", "Transmitting final transaction."),
QT_TRANSLATE_NOOP("herb-core", "Unable to bind to %s on this computer (bind returned error %s)"),
QT_TRANSLATE_NOOP("herb-core", "Unable to sign spork message, wrong key?"),
QT_TRANSLATE_NOOP("herb-core", "Unknown network specified in -onlynet: '%s'"),
QT_TRANSLATE_NOOP("herb-core", "Unknown state: id = %u"),
QT_TRANSLATE_NOOP("herb-core", "Upgrade wallet to latest format"),
QT_TRANSLATE_NOOP("herb-core", "Use KeePass 2 integration using KeePassHttp plugin (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Use N separate masternodes to anonymize funds (2-8, default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Use OpenSSL (https) for JSON-RPC connections"),
QT_TRANSLATE_NOOP("herb-core", "Use UPnP to map the listening port (default: %u)"),
QT_TRANSLATE_NOOP("herb-core", "Use UPnP to map the listening port (default: 1 when listening)"),
QT_TRANSLATE_NOOP("herb-core", "Use the test network"),
QT_TRANSLATE_NOOP("herb-core", "Username for JSON-RPC connections"),
QT_TRANSLATE_NOOP("herb-core", "Value more than Darksend pool maximum allows."),
QT_TRANSLATE_NOOP("herb-core", "Verifying blocks..."),
QT_TRANSLATE_NOOP("herb-core", "Verifying wallet..."),
QT_TRANSLATE_NOOP("herb-core", "Wallet %s resides outside data directory %s"),
QT_TRANSLATE_NOOP("herb-core", "Wallet is locked."),
QT_TRANSLATE_NOOP("herb-core", "Wallet needed to be rewritten: restart HERB Core to complete"),
QT_TRANSLATE_NOOP("herb-core", "Wallet options:"),
QT_TRANSLATE_NOOP("herb-core", "Wallet window title"),
QT_TRANSLATE_NOOP("herb-core", "Warning"),
QT_TRANSLATE_NOOP("herb-core", "Warning: This version is obsolete, upgrade required!"),
QT_TRANSLATE_NOOP("herb-core", "Warning: Unsupported argument -benchmark ignored, use -debug=bench."),
QT_TRANSLATE_NOOP("herb-core", "Warning: Unsupported argument -debugnet ignored, use -debug=net."),
QT_TRANSLATE_NOOP("herb-core", "Will retry..."),
QT_TRANSLATE_NOOP("herb-core", "You need to rebuild the database using -reindex to change -txindex"),
QT_TRANSLATE_NOOP("herb-core", "Your entries added successfully."),
QT_TRANSLATE_NOOP("herb-core", "Your transaction was accepted into the pool!"),
QT_TRANSLATE_NOOP("herb-core", "Zapping all transactions from wallet..."),
QT_TRANSLATE_NOOP("herb-core", "on startup"),
QT_TRANSLATE_NOOP("herb-core", "wallet.dat corrupt, salvage failed"),
};
| [
"39693980+herbcoin@users.noreply.github.com"
] | 39693980+herbcoin@users.noreply.github.com |
ef58e01349602afafd6ad3ff238fa4db6ff1574f | fb0ab8adcf3f600436dbd2ead9e2e839dbb28417 | /LearnOpenGL/mainwindow.cpp | f1e1ec8ad32f6af0468590bb44ffc61355f33c5f | [] | no_license | Gaara-ops/MyOpenglLearn | 43a4686bf73db973bb9c814ca58273a445393c0b | 1fe0cd3c3525d28fbc3bc873cda622d8b29d3322 | refs/heads/master | 2023-02-07T17:25:15.488345 | 2021-01-04T05:49:22 | 2021-01-04T05:49:22 | 181,586,670 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 37,435 | cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
#include <iostream>
//#include "EventProcess.h"
#define STB_IMAGE_IMPLEMENTATION
#include <stb_image.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <learnopengl/filesystem.h>
#include <learnopengl/shader.h>
#include <learnopengl/camera.h>
#include <learnopengl/model.h>
#include <QString>
void framebuffer_size_callback(GLFWwindow* window, int width, int height);
void mouse_callback(GLFWwindow* window, double xpos, double ypos);
void scroll_callback(GLFWwindow* window, double xoffset, double yoffset);
void processInput(GLFWwindow *window);
unsigned int loadTexture(const char *path);
void renderSphere();
void renderCube();
void renderQuad();
// settings
const unsigned int SCR_WIDTH = 1280;
const unsigned int SCR_HEIGHT = 720;
// camera
Camera camera(glm::vec3(0.0f, 0.0f, 3.0f));
float lastX = 800.0f / 2.0;
float lastY = 600.0 / 2.0;
bool firstMouse = true;
// timing
float deltaTime = 0.0f;
float lastFrame = 0.0f;
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
strResource = "F:/opengl/learn/LearnOpenGL/resources/";
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::SetArgInfo(int argc, char *argv[])
{
this->argc = argc;
this->argv = argv;
}
int MainWindow::Init()
{
glfwInit();
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_SAMPLES, 4);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
// glfw window creation
window = glfwCreateWindow(SCR_WIDTH, SCR_HEIGHT, "LearnOpenGL", NULL, NULL);
if (window == NULL)
{
std::cout << "Failed to create GLFW window" << std::endl;
glfwTerminate();
return -1;
}
glfwMakeContextCurrent(window);
glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
glfwSetCursorPosCallback(window, mouse_callback);
glfwSetScrollCallback(window, scroll_callback);
// tell GLFW to capture our mouse
//glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
// glad: load all OpenGL function pointers
if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress))
{
std::cout << "Failed to initialize GLAD" << std::endl;
return -1;
}
return 0;
}
void MainWindow::on_pushButton_clicked()
{
int res = Init();
if(res != 0){
return;
}
glEnable(GL_DEPTH_TEST);
// set depth function to less than AND equal for skybox depth trick.
glDepthFunc(GL_LEQUAL);
// enable seamless cubemap sampling for lower mip levels in the pre-filter map.
glEnable(GL_TEXTURE_CUBE_MAP_SEAMLESS);
QString strshader = strResource + "shader/";
Shader pbrShader(
QString(strshader+"2.2.2.pbr.vs").toStdString().c_str(),
QString(strshader+"2.2.2.pbr.fs").toStdString().c_str());
Shader equirectangularToCubemapShader(
QString(strshader+"2.2.2.cubemap.vs").toStdString().c_str(),
QString(strshader+"2.2.2.equirectangular_to_cubemap.fs").toStdString().c_str());
Shader irradianceShader(
QString(strshader+"2.2.2.cubemap.vs").toStdString().c_str(),
QString(strshader+"2.2.2.irradiance_convolution.fs").toStdString().c_str());
Shader prefilterShader(
QString(strshader+"2.2.2.cubemap.vs").toStdString().c_str(),
QString(strshader+"2.2.2.prefilter.fs").toStdString().c_str());
Shader brdfShader(
QString(strshader+"2.2.2.brdf.vs").toStdString().c_str(),
QString(strshader+"2.2.2.brdf.fs").toStdString().c_str());
Shader backgroundShader(
QString(strshader+"2.2.2.background.vs").toStdString().c_str(),
QString(strshader+"2.2.2.background.fs").toStdString().c_str());
pbrShader.use();
pbrShader.setInt("irradianceMap", 0);
pbrShader.setInt("prefilterMap", 1);
pbrShader.setInt("brdfLUT", 2);
pbrShader.setInt("albedoMap", 3);
pbrShader.setInt("normalMap", 4);
pbrShader.setInt("metallicMap", 5);
pbrShader.setInt("roughnessMap", 6);
pbrShader.setInt("aoMap", 7);
backgroundShader.use();
backgroundShader.setInt("environmentMap", 0);
// load PBR material textures
// --------------------------
// rusted iron
unsigned int ironAlbedoMap = loadTexture(FileSystem::getPath("resources/textures/pbr/rusted_iron/albedo.png").c_str());
unsigned int ironNormalMap = loadTexture(FileSystem::getPath("resources/textures/pbr/rusted_iron/normal.png").c_str());
unsigned int ironMetallicMap = loadTexture(FileSystem::getPath("resources/textures/pbr/rusted_iron/metallic.png").c_str());
unsigned int ironRoughnessMap = loadTexture(FileSystem::getPath("resources/textures/pbr/rusted_iron/roughness.png").c_str());
unsigned int ironAOMap = loadTexture(FileSystem::getPath("resources/textures/pbr/rusted_iron/ao.png").c_str());
// gold
unsigned int goldAlbedoMap = loadTexture(FileSystem::getPath("resources/textures/pbr/gold/albedo.png").c_str());
unsigned int goldNormalMap = loadTexture(FileSystem::getPath("resources/textures/pbr/gold/normal.png").c_str());
unsigned int goldMetallicMap = loadTexture(FileSystem::getPath("resources/textures/pbr/gold/metallic.png").c_str());
unsigned int goldRoughnessMap = loadTexture(FileSystem::getPath("resources/textures/pbr/gold/roughness.png").c_str());
unsigned int goldAOMap = loadTexture(FileSystem::getPath("resources/textures/pbr/gold/ao.png").c_str());
// grass
unsigned int grassAlbedoMap = loadTexture(FileSystem::getPath("resources/textures/pbr/grass/albedo.png").c_str());
unsigned int grassNormalMap = loadTexture(FileSystem::getPath("resources/textures/pbr/grass/normal.png").c_str());
unsigned int grassMetallicMap = loadTexture(FileSystem::getPath("resources/textures/pbr/grass/metallic.png").c_str());
unsigned int grassRoughnessMap = loadTexture(FileSystem::getPath("resources/textures/pbr/grass/roughness.png").c_str());
unsigned int grassAOMap = loadTexture(FileSystem::getPath("resources/textures/pbr/grass/ao.png").c_str());
// plastic
unsigned int plasticAlbedoMap = loadTexture(FileSystem::getPath("resources/textures/pbr/plastic/albedo.png").c_str());
unsigned int plasticNormalMap = loadTexture(FileSystem::getPath("resources/textures/pbr/plastic/normal.png").c_str());
unsigned int plasticMetallicMap = loadTexture(FileSystem::getPath("resources/textures/pbr/plastic/metallic.png").c_str());
unsigned int plasticRoughnessMap = loadTexture(FileSystem::getPath("resources/textures/pbr/plastic/roughness.png").c_str());
unsigned int plasticAOMap = loadTexture(FileSystem::getPath("resources/textures/pbr/plastic/ao.png").c_str());
// wall
unsigned int wallAlbedoMap = loadTexture(FileSystem::getPath("resources/textures/pbr/wall/albedo.png").c_str());
unsigned int wallNormalMap = loadTexture(FileSystem::getPath("resources/textures/pbr/wall/normal.png").c_str());
unsigned int wallMetallicMap = loadTexture(FileSystem::getPath("resources/textures/pbr/wall/metallic.png").c_str());
unsigned int wallRoughnessMap = loadTexture(FileSystem::getPath("resources/textures/pbr/wall/roughness.png").c_str());
unsigned int wallAOMap = loadTexture(FileSystem::getPath("resources/textures/pbr/wall/ao.png").c_str());
// lights
// ------
glm::vec3 lightPositions[] = {
glm::vec3(-10.0f, 10.0f, 10.0f),
glm::vec3( 10.0f, 10.0f, 10.0f),
glm::vec3(-10.0f, -10.0f, 10.0f),
glm::vec3( 10.0f, -10.0f, 10.0f),
};
glm::vec3 lightColors[] = {
glm::vec3(300.0f, 300.0f, 300.0f),
glm::vec3(300.0f, 300.0f, 300.0f),
glm::vec3(300.0f, 300.0f, 300.0f),
glm::vec3(300.0f, 300.0f, 300.0f)
};
int nrRows = 7;
int nrColumns = 7;
float spacing = 2.5;
// pbr: setup framebuffer
// ----------------------
unsigned int captureFBO;
unsigned int captureRBO;
glGenFramebuffers(1, &captureFBO);
glGenRenderbuffers(1, &captureRBO);
glBindFramebuffer(GL_FRAMEBUFFER, captureFBO);
glBindRenderbuffer(GL_RENDERBUFFER, captureRBO);
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT24, 512, 512);
glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, captureRBO);
// pbr: load the HDR environment map
// ---------------------------------
stbi_set_flip_vertically_on_load(true);
int width, height, nrComponents;
float *data = stbi_loadf(FileSystem::getPath("resources/textures/hdr/newport_loft.hdr").c_str(), &width, &height, &nrComponents, 0);
unsigned int hdrTexture;
if (data)
{
glGenTextures(1, &hdrTexture);
glBindTexture(GL_TEXTURE_2D, hdrTexture);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB16F, width, height, 0, GL_RGB, GL_FLOAT, data); // note how we specify the texture's data value to be float
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
stbi_image_free(data);
}
else
{
std::cout << "Failed to load HDR image." << std::endl;
}
// pbr: setup cubemap to render to and attach to framebuffer
// ---------------------------------------------------------
unsigned int envCubemap;
glGenTextures(1, &envCubemap);
glBindTexture(GL_TEXTURE_CUBE_MAP, envCubemap);
for (unsigned int i = 0; i < 6; ++i)
{
glTexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, GL_RGB16F, 512, 512, 0, GL_RGB, GL_FLOAT, nullptr);
}
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_R, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR); // enable pre-filter mipmap sampling (combatting visible dots artifact)
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
// pbr: set up projection and view matrices for capturing data onto the 6 cubemap face directions
// ----------------------------------------------------------------------------------------------
glm::mat4 captureProjection = glm::perspective(glm::radians(90.0f), 1.0f, 0.1f, 10.0f);
glm::mat4 captureViews[] =
{
glm::lookAt(glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3( 1.0f, 0.0f, 0.0f), glm::vec3(0.0f, -1.0f, 0.0f)),
glm::lookAt(glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3(-1.0f, 0.0f, 0.0f), glm::vec3(0.0f, -1.0f, 0.0f)),
glm::lookAt(glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3( 0.0f, 1.0f, 0.0f), glm::vec3(0.0f, 0.0f, 1.0f)),
glm::lookAt(glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3( 0.0f, -1.0f, 0.0f), glm::vec3(0.0f, 0.0f, -1.0f)),
glm::lookAt(glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3( 0.0f, 0.0f, 1.0f), glm::vec3(0.0f, -1.0f, 0.0f)),
glm::lookAt(glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3( 0.0f, 0.0f, -1.0f), glm::vec3(0.0f, -1.0f, 0.0f))
};
// pbr: convert HDR equirectangular environment map to cubemap equivalent
// ----------------------------------------------------------------------
equirectangularToCubemapShader.use();
equirectangularToCubemapShader.setInt("equirectangularMap", 0);
equirectangularToCubemapShader.setMat4("projection", captureProjection);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, hdrTexture);
glViewport(0, 0, 512, 512); // don't forget to configure the viewport to the capture dimensions.
glBindFramebuffer(GL_FRAMEBUFFER, captureFBO);
for (unsigned int i = 0; i < 6; ++i)
{
equirectangularToCubemapShader.setMat4("view", captureViews[i]);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, envCubemap, 0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
renderCube();
}
glBindFramebuffer(GL_FRAMEBUFFER, 0);
// then let OpenGL generate mipmaps from first mip face (combatting visible dots artifact)
glBindTexture(GL_TEXTURE_CUBE_MAP, envCubemap);
glGenerateMipmap(GL_TEXTURE_CUBE_MAP);
// pbr: create an irradiance cubemap, and re-scale capture FBO to irradiance scale.
// --------------------------------------------------------------------------------
unsigned int irradianceMap;
glGenTextures(1, &irradianceMap);
glBindTexture(GL_TEXTURE_CUBE_MAP, irradianceMap);
for (unsigned int i = 0; i < 6; ++i)
{
glTexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, GL_RGB16F, 32, 32, 0, GL_RGB, GL_FLOAT, nullptr);
}
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_R, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glBindFramebuffer(GL_FRAMEBUFFER, captureFBO);
glBindRenderbuffer(GL_RENDERBUFFER, captureRBO);
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT24, 32, 32);
// pbr: solve diffuse integral by convolution to create an irradiance (cube)map.
// -----------------------------------------------------------------------------
irradianceShader.use();
irradianceShader.setInt("environmentMap", 0);
irradianceShader.setMat4("projection", captureProjection);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_CUBE_MAP, envCubemap);
glViewport(0, 0, 32, 32); // don't forget to configure the viewport to the capture dimensions.
glBindFramebuffer(GL_FRAMEBUFFER, captureFBO);
for (unsigned int i = 0; i < 6; ++i)
{
irradianceShader.setMat4("view", captureViews[i]);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, irradianceMap, 0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
renderCube();
}
glBindFramebuffer(GL_FRAMEBUFFER, 0);
// pbr: create a pre-filter cubemap, and re-scale capture FBO to pre-filter scale.
// --------------------------------------------------------------------------------
unsigned int prefilterMap;
glGenTextures(1, &prefilterMap);
glBindTexture(GL_TEXTURE_CUBE_MAP, prefilterMap);
for (unsigned int i = 0; i < 6; ++i)
{
glTexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, GL_RGB16F, 128, 128, 0, GL_RGB, GL_FLOAT, nullptr);
}
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_R, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR); // be sure to set minifcation filter to mip_linear
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
// generate mipmaps for the cubemap so OpenGL automatically allocates the required memory.
glGenerateMipmap(GL_TEXTURE_CUBE_MAP);
// pbr: run a quasi monte-carlo simulation on the environment lighting to create a prefilter (cube)map.
// ----------------------------------------------------------------------------------------------------
prefilterShader.use();
prefilterShader.setInt("environmentMap", 0);
prefilterShader.setMat4("projection", captureProjection);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_CUBE_MAP, envCubemap);
glBindFramebuffer(GL_FRAMEBUFFER, captureFBO);
unsigned int maxMipLevels = 5;
for (unsigned int mip = 0; mip < maxMipLevels; ++mip)
{
// reisze framebuffer according to mip-level size.
unsigned int mipWidth = 128 * std::pow(0.5, mip);
unsigned int mipHeight = 128 * std::pow(0.5, mip);
glBindRenderbuffer(GL_RENDERBUFFER, captureRBO);
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT24, mipWidth, mipHeight);
glViewport(0, 0, mipWidth, mipHeight);
float roughness = (float)mip / (float)(maxMipLevels - 1);
prefilterShader.setFloat("roughness", roughness);
for (unsigned int i = 0; i < 6; ++i)
{
prefilterShader.setMat4("view", captureViews[i]);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, prefilterMap, mip);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
renderCube();
}
}
glBindFramebuffer(GL_FRAMEBUFFER, 0);
// pbr: generate a 2D LUT from the BRDF equations used.
// ----------------------------------------------------
unsigned int brdfLUTTexture;
glGenTextures(1, &brdfLUTTexture);
// pre-allocate enough memory for the LUT texture.
glBindTexture(GL_TEXTURE_2D, brdfLUTTexture);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RG16F, 512, 512, 0, GL_RG, GL_FLOAT, 0);
// be sure to set wrapping mode to GL_CLAMP_TO_EDGE
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
// then re-configure capture framebuffer object and render screen-space quad with BRDF shader.
glBindFramebuffer(GL_FRAMEBUFFER, captureFBO);
glBindRenderbuffer(GL_RENDERBUFFER, captureRBO);
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT24, 512, 512);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, brdfLUTTexture, 0);
glViewport(0, 0, 512, 512);
brdfShader.use();
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
renderQuad();
glBindFramebuffer(GL_FRAMEBUFFER, 0);
// initialize static shader uniforms before rendering
// --------------------------------------------------
glm::mat4 projection = glm::perspective(glm::radians(camera.Zoom), (float)SCR_WIDTH / (float)SCR_HEIGHT, 0.1f, 100.0f);
pbrShader.use();
pbrShader.setMat4("projection", projection);
backgroundShader.use();
backgroundShader.setMat4("projection", projection);
// then before rendering, configure the viewport to the original framebuffer's screen dimensions
int scrWidth, scrHeight;
glfwGetFramebufferSize(window, &scrWidth, &scrHeight);
glViewport(0, 0, scrWidth, scrHeight);
// render loop
// -----------
while (!glfwWindowShouldClose(window))
{
// per-frame time logic
// --------------------
float currentFrame = glfwGetTime();
deltaTime = currentFrame - lastFrame;
lastFrame = currentFrame;
// input
// -----
processInput(window);
// render
// ------
glClearColor(0.2f, 0.3f, 0.3f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
// render scene, supplying the convoluted irradiance map to the final shader.
// ------------------------------------------------------------------------------------------
pbrShader.use();
glm::mat4 model = glm::mat4(1.0f);
glm::mat4 view = camera.GetViewMatrix();
pbrShader.setMat4("view", view);
pbrShader.setVec3("camPos", camera.Position);
// bind pre-computed IBL data
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_CUBE_MAP, irradianceMap);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_CUBE_MAP, prefilterMap);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, brdfLUTTexture);
// rusted iron
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, ironAlbedoMap);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, ironNormalMap);
glActiveTexture(GL_TEXTURE5);
glBindTexture(GL_TEXTURE_2D, ironMetallicMap);
glActiveTexture(GL_TEXTURE6);
glBindTexture(GL_TEXTURE_2D, ironRoughnessMap);
glActiveTexture(GL_TEXTURE7);
glBindTexture(GL_TEXTURE_2D, ironAOMap);
model = glm::mat4(1.0f);
model = glm::translate(model, glm::vec3(-5.0, 0.0, 2.0));
pbrShader.setMat4("model", model);
renderSphere();
// gold
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, goldAlbedoMap);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, goldNormalMap);
glActiveTexture(GL_TEXTURE5);
glBindTexture(GL_TEXTURE_2D, goldMetallicMap);
glActiveTexture(GL_TEXTURE6);
glBindTexture(GL_TEXTURE_2D, goldRoughnessMap);
glActiveTexture(GL_TEXTURE7);
glBindTexture(GL_TEXTURE_2D, goldAOMap);
model = glm::mat4(1.0f);
model = glm::translate(model, glm::vec3(-3.0, 0.0, 2.0));
pbrShader.setMat4("model", model);
renderSphere();
// grass
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, grassAlbedoMap);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, grassNormalMap);
glActiveTexture(GL_TEXTURE5);
glBindTexture(GL_TEXTURE_2D, grassMetallicMap);
glActiveTexture(GL_TEXTURE6);
glBindTexture(GL_TEXTURE_2D, grassRoughnessMap);
glActiveTexture(GL_TEXTURE7);
glBindTexture(GL_TEXTURE_2D, grassAOMap);
model = glm::mat4(1.0f);
model = glm::translate(model, glm::vec3(-1.0, 0.0, 2.0));
pbrShader.setMat4("model", model);
renderSphere();
// plastic
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, plasticAlbedoMap);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, plasticNormalMap);
glActiveTexture(GL_TEXTURE5);
glBindTexture(GL_TEXTURE_2D, plasticMetallicMap);
glActiveTexture(GL_TEXTURE6);
glBindTexture(GL_TEXTURE_2D, plasticRoughnessMap);
glActiveTexture(GL_TEXTURE7);
glBindTexture(GL_TEXTURE_2D, plasticAOMap);
model = glm::mat4(1.0f);
model = glm::translate(model, glm::vec3(1.0, 0.0, 2.0));
pbrShader.setMat4("model", model);
renderSphere();
// wall
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, wallAlbedoMap);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, wallNormalMap);
glActiveTexture(GL_TEXTURE5);
glBindTexture(GL_TEXTURE_2D, wallMetallicMap);
glActiveTexture(GL_TEXTURE6);
glBindTexture(GL_TEXTURE_2D, wallRoughnessMap);
glActiveTexture(GL_TEXTURE7);
glBindTexture(GL_TEXTURE_2D, wallAOMap);
model = glm::mat4(1.0f);
model = glm::translate(model, glm::vec3(3.0, 0.0, 2.0));
pbrShader.setMat4("model", model);
renderSphere();
// render light source (simply re-render sphere at light positions)
// this looks a bit off as we use the same shader, but it'll make their positions obvious and
// keeps the codeprint small.
for (unsigned int i = 0; i < sizeof(lightPositions) / sizeof(lightPositions[0]); ++i)
{
glm::vec3 newPos = lightPositions[i] + glm::vec3(sin(glfwGetTime() * 5.0) * 5.0, 0.0, 0.0);
newPos = lightPositions[i];
pbrShader.setVec3("lightPositions[" + std::to_string(i) + "]", newPos);
pbrShader.setVec3("lightColors[" + std::to_string(i) + "]", lightColors[i]);
model = glm::mat4(1.0f);
model = glm::translate(model, newPos);
model = glm::scale(model, glm::vec3(0.5f));
pbrShader.setMat4("model", model);
renderSphere();
}
// render skybox (render as last to prevent overdraw)
backgroundShader.use();
backgroundShader.setMat4("view", view);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_CUBE_MAP, envCubemap);
//glBindTexture(GL_TEXTURE_CUBE_MAP, irradianceMap); // display irradiance map
//glBindTexture(GL_TEXTURE_CUBE_MAP, prefilterMap); // display prefilter map
renderCube();
// render BRDF map to screen
//brdfShader.Use();
//renderQuad();
// glfw: swap buffers and poll IO events (keys pressed/released, mouse moved etc.)
// -------------------------------------------------------------------------------
glfwSwapBuffers(window);
glfwPollEvents();
}
// glfw: terminate, clearing all previously allocated GLFW resources.
// ------------------------------------------------------------------
glfwTerminate();
}
// process all input: query GLFW whether relevant keys are pressed/released this frame and react accordingly
// ---------------------------------------------------------------------------------------------------------
void processInput(GLFWwindow *window)
{
if (glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS)
glfwSetWindowShouldClose(window, true);
float cameraSpeed = 2.5 * deltaTime;
if (glfwGetKey(window, GLFW_KEY_W) == GLFW_PRESS)
camera.ProcessKeyboard(FORWARD, deltaTime);
if (glfwGetKey(window, GLFW_KEY_S) == GLFW_PRESS)
camera.ProcessKeyboard(BACKWARD, deltaTime);
if (glfwGetKey(window, GLFW_KEY_A) == GLFW_PRESS)
camera.ProcessKeyboard(LEFT, deltaTime);
if (glfwGetKey(window, GLFW_KEY_D) == GLFW_PRESS)
camera.ProcessKeyboard(RIGHT, deltaTime);
}
// glfw: whenever the window size changed (by OS or user resize) this callback function executes
// ---------------------------------------------------------------------------------------------
void framebuffer_size_callback(GLFWwindow* window, int width, int height)
{
// make sure the viewport matches the new window dimensions; note that width and
// height will be significantly larger than specified on retina displays.
glViewport(0, 0, width, height);
}
// glfw: whenever the mouse moves, this callback is called
// -------------------------------------------------------
void mouse_callback(GLFWwindow* window, double xpos, double ypos)
{
if (firstMouse)
{
lastX = xpos;
lastY = ypos;
firstMouse = false;
}
float xoffset = xpos - lastX;
float yoffset = lastY - ypos; // reversed since y-coordinates go from bottom to top
lastX = xpos;
lastY = ypos;
camera.ProcessMouseMovement(xoffset, yoffset);
}
// glfw: whenever the mouse scroll wheel scrolls, this callback is called
// ----------------------------------------------------------------------
void scroll_callback(GLFWwindow* window, double xoffset, double yoffset)
{
camera.ProcessMouseScroll(yoffset);
}
// renders (and builds at first invocation) a sphere
// -------------------------------------------------
unsigned int sphereVAO = 0;
unsigned int indexCount;
void renderSphere()
{
if (sphereVAO == 0)
{
glGenVertexArrays(1, &sphereVAO);
unsigned int vbo, ebo;
glGenBuffers(1, &vbo);
glGenBuffers(1, &ebo);
std::vector<glm::vec3> positions;
std::vector<glm::vec2> uv;
std::vector<glm::vec3> normals;
std::vector<unsigned int> indices;
const unsigned int X_SEGMENTS = 64;
const unsigned int Y_SEGMENTS = 64;
const float PI = 3.14159265359;
for (unsigned int y = 0; y <= Y_SEGMENTS; ++y)
{
for (unsigned int x = 0; x <= X_SEGMENTS; ++x)
{
float xSegment = (float)x / (float)X_SEGMENTS;
float ySegment = (float)y / (float)Y_SEGMENTS;
float xPos = std::cos(xSegment * 2.0f * PI) * std::sin(ySegment * PI);
float yPos = std::cos(ySegment * PI);
float zPos = std::sin(xSegment * 2.0f * PI) * std::sin(ySegment * PI);
positions.push_back(glm::vec3(xPos, yPos, zPos));
uv.push_back(glm::vec2(xSegment, ySegment));
normals.push_back(glm::vec3(xPos, yPos, zPos));
}
}
bool oddRow = false;
for (int y = 0; y < Y_SEGMENTS; ++y)
{
if (!oddRow) // even rows: y == 0, y == 2; and so on
{
for (int x = 0; x <= X_SEGMENTS; ++x)
{
indices.push_back(y * (X_SEGMENTS + 1) + x);
indices.push_back((y + 1) * (X_SEGMENTS + 1) + x);
}
}
else
{
for (int x = X_SEGMENTS; x >= 0; --x)
{
indices.push_back((y + 1) * (X_SEGMENTS + 1) + x);
indices.push_back(y * (X_SEGMENTS + 1) + x);
}
}
oddRow = !oddRow;
}
indexCount = indices.size();
std::vector<float> data;
for (int i = 0; i < positions.size(); ++i)
{
data.push_back(positions[i].x);
data.push_back(positions[i].y);
data.push_back(positions[i].z);
if (uv.size() > 0)
{
data.push_back(uv[i].x);
data.push_back(uv[i].y);
}
if (normals.size() > 0)
{
data.push_back(normals[i].x);
data.push_back(normals[i].y);
data.push_back(normals[i].z);
}
}
glBindVertexArray(sphereVAO);
glBindBuffer(GL_ARRAY_BUFFER, vbo);
glBufferData(GL_ARRAY_BUFFER, data.size() * sizeof(float), &data[0], GL_STATIC_DRAW);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ebo);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, indices.size() * sizeof(unsigned int), &indices[0], GL_STATIC_DRAW);
float stride = (3 + 2 + 3) * sizeof(float);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, stride, (void*)0);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, stride, (void*)(3 * sizeof(float)));
glEnableVertexAttribArray(2);
glVertexAttribPointer(2, 3, GL_FLOAT, GL_FALSE, stride, (void*)(5 * sizeof(float)));
}
glBindVertexArray(sphereVAO);
glDrawElements(GL_TRIANGLE_STRIP, indexCount, GL_UNSIGNED_INT, 0);
}
// renderCube() renders a 1x1 3D cube in NDC.
// -------------------------------------------------
unsigned int cubeVAO = 0;
unsigned int cubeVBO = 0;
void renderCube()
{
// initialize (if necessary)
if (cubeVAO == 0)
{
float vertices[] = {
// back face
-1.0f, -1.0f, -1.0f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f, // bottom-left
1.0f, 1.0f, -1.0f, 0.0f, 0.0f, -1.0f, 1.0f, 1.0f, // top-right
1.0f, -1.0f, -1.0f, 0.0f, 0.0f, -1.0f, 1.0f, 0.0f, // bottom-right
1.0f, 1.0f, -1.0f, 0.0f, 0.0f, -1.0f, 1.0f, 1.0f, // top-right
-1.0f, -1.0f, -1.0f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f, // bottom-left
-1.0f, 1.0f, -1.0f, 0.0f, 0.0f, -1.0f, 0.0f, 1.0f, // top-left
// front face
-1.0f, -1.0f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, // bottom-left
1.0f, -1.0f, 1.0f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f, // bottom-right
1.0f, 1.0f, 1.0f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f, // top-right
1.0f, 1.0f, 1.0f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f, // top-right
-1.0f, 1.0f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, // top-left
-1.0f, -1.0f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, // bottom-left
// left face
-1.0f, 1.0f, 1.0f, -1.0f, 0.0f, 0.0f, 1.0f, 0.0f, // top-right
-1.0f, 1.0f, -1.0f, -1.0f, 0.0f, 0.0f, 1.0f, 1.0f, // top-left
-1.0f, -1.0f, -1.0f, -1.0f, 0.0f, 0.0f, 0.0f, 1.0f, // bottom-left
-1.0f, -1.0f, -1.0f, -1.0f, 0.0f, 0.0f, 0.0f, 1.0f, // bottom-left
-1.0f, -1.0f, 1.0f, -1.0f, 0.0f, 0.0f, 0.0f, 0.0f, // bottom-right
-1.0f, 1.0f, 1.0f, -1.0f, 0.0f, 0.0f, 1.0f, 0.0f, // top-right
// right face
1.0f, 1.0f, 1.0f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, // top-left
1.0f, -1.0f, -1.0f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f, // bottom-right
1.0f, 1.0f, -1.0f, 1.0f, 0.0f, 0.0f, 1.0f, 1.0f, // top-right
1.0f, -1.0f, -1.0f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f, // bottom-right
1.0f, 1.0f, 1.0f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, // top-left
1.0f, -1.0f, 1.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, // bottom-left
// bottom face
-1.0f, -1.0f, -1.0f, 0.0f, -1.0f, 0.0f, 0.0f, 1.0f, // top-right
1.0f, -1.0f, -1.0f, 0.0f, -1.0f, 0.0f, 1.0f, 1.0f, // top-left
1.0f, -1.0f, 1.0f, 0.0f, -1.0f, 0.0f, 1.0f, 0.0f, // bottom-left
1.0f, -1.0f, 1.0f, 0.0f, -1.0f, 0.0f, 1.0f, 0.0f, // bottom-left
-1.0f, -1.0f, 1.0f, 0.0f, -1.0f, 0.0f, 0.0f, 0.0f, // bottom-right
-1.0f, -1.0f, -1.0f, 0.0f, -1.0f, 0.0f, 0.0f, 1.0f, // top-right
// top face
-1.0f, 1.0f, -1.0f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f, // top-left
1.0f, 1.0f , 1.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, // bottom-right
1.0f, 1.0f, -1.0f, 0.0f, 1.0f, 0.0f, 1.0f, 1.0f, // top-right
1.0f, 1.0f, 1.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, // bottom-right
-1.0f, 1.0f, -1.0f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f, // top-left
-1.0f, 1.0f, 1.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f // bottom-left
};
glGenVertexArrays(1, &cubeVAO);
glGenBuffers(1, &cubeVBO);
// fill buffer
glBindBuffer(GL_ARRAY_BUFFER, cubeVBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW);
// link vertex attributes
glBindVertexArray(cubeVAO);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void*)0);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void*)(3 * sizeof(float)));
glEnableVertexAttribArray(2);
glVertexAttribPointer(2, 2, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void*)(6 * sizeof(float)));
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindVertexArray(0);
}
// render Cube
glBindVertexArray(cubeVAO);
glDrawArrays(GL_TRIANGLES, 0, 36);
glBindVertexArray(0);
}
// renderQuad() renders a 1x1 XY quad in NDC
// -----------------------------------------
unsigned int quadVAO = 0;
unsigned int quadVBO;
void renderQuad()
{
if (quadVAO == 0)
{
float quadVertices[] = {
// positions // texture Coords
-1.0f, 1.0f, 0.0f, 0.0f, 1.0f,
-1.0f, -1.0f, 0.0f, 0.0f, 0.0f,
1.0f, 1.0f, 0.0f, 1.0f, 1.0f,
1.0f, -1.0f, 0.0f, 1.0f, 0.0f,
};
// setup plane VAO
glGenVertexArrays(1, &quadVAO);
glGenBuffers(1, &quadVBO);
glBindVertexArray(quadVAO);
glBindBuffer(GL_ARRAY_BUFFER, quadVBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(quadVertices), &quadVertices, GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(float), (void*)0);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(float), (void*)(3 * sizeof(float)));
}
glBindVertexArray(quadVAO);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
glBindVertexArray(0);
}
// utility function for loading a 2D texture from file
// ---------------------------------------------------
unsigned int loadTexture(char const * path)
{
unsigned int textureID;
glGenTextures(1, &textureID);
int width, height, nrComponents;
unsigned char *data = stbi_load(path, &width, &height, &nrComponents, 0);
if (data)
{
GLenum format;
if (nrComponents == 1)
format = GL_RED;
else if (nrComponents == 3)
format = GL_RGB;
else if (nrComponents == 4)
format = GL_RGBA;
glBindTexture(GL_TEXTURE_2D, textureID);
glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, GL_UNSIGNED_BYTE, data);
glGenerateMipmap(GL_TEXTURE_2D);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
stbi_image_free(data);
}
else
{
std::cout << "Texture failed to load at path: " << path << std::endl;
stbi_image_free(data);
}
return textureID;
}
| [
"2219502781@qq.com"
] | 2219502781@qq.com |
48fa10cc3ea8e1fb54466cee7051be0a76c55e58 | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Plugins/Experimental/AlembicImporter/Source/ThirdParty/Alembic/openexr/OpenEXR/exrmaketiled/main.cpp | 72568a8ae7b4049d38b11cbe489cb4131f34defd | [
"BSD-3-Clause",
"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 | 10,951 | cpp | ///////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2012, Industrial Light & Magic, a division of Lucas
// Digital Ltd. LLC
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Industrial Light & Magic nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
///////////////////////////////////////////////////////////////////////////
//-----------------------------------------------------------------------------
//
// exrmaketiled -- program that produces tiled
// multiresolution versions of OpenEXR images.
//
//-----------------------------------------------------------------------------
#include "makeTiled.h"
#include <iostream>
#include <exception>
#include <string>
#include <string.h>
#include <stdlib.h>
#include "namespaceAlias.h"
using namespace IMF;
using namespace std;
namespace {
void
usageMessage (const char argv0[], bool verbose = false)
{
cerr << "usage: " << argv0 << " [options] infile outfile" << endl;
if (verbose)
{
cerr << "\n"
"Reads an OpenEXR image from infile, produces a tiled\n"
"version of the image, and saves the result in outfile.\n"
"\n"
"Options:\n"
"\n"
"-o produces a ONE_LEVEL image (default)\n"
"\n"
"-m produces a MIPMAP_LEVELS multiresolution image\n"
"\n"
"-r produces a RIPMAP_LEVELS multiresolution image\n"
"\n"
"-f c when a MIPMAP_LEVELS or RIPMAP_LEVELS image\n"
" is produced, image channel c will be resampled\n"
" without low-pass filtering. This option can\n"
" be specified multiple times to disable low-pass\n"
" filtering for mutiple channels.\n"
"\n"
"-e x y when a MIPMAP_LEVELS or RIPMAP_LEVELS image\n"
" is produced, low-pass filtering takes samples\n"
" outside the image's data window. This requires\n"
" extrapolating the image. Option -e specifies\n"
" how the image is extrapolated horizontally and\n"
" vertically (black/clamp/periodic/mirror, default\n"
" is clamp).\n"
"\n"
"-t x y sets the tile size in the output image to\n"
" x by y pixels (default is 64 by 64)\n"
"\n"
"-d sets level size rounding to ROUND_DOWN (default)\n"
"\n"
"-u sets level size rounding to ROUND_UP\n"
"\n"
"-z x sets the data compression method to x\n"
" (none/rle/zip/piz/pxr24/b44/b44a/dwaa/dwab,\n"
" default is zip)\n"
"\n"
"-v verbose mode\n"
"\n"
"-h prints this message\n"
"\n"
"Multipart Options:\n"
"\n"
"-p i part number, default is 0\n";
cerr << endl;
}
exit (1);
}
Compression
getCompression (const string &str)
{
Compression c;
if (str == "no" || str == "none" || str == "NO" || str == "NONE")
{
c = NO_COMPRESSION;
}
else if (str == "rle" || str == "RLE")
{
c = RLE_COMPRESSION;
}
else if (str == "zip" || str == "ZIP")
{
c = ZIP_COMPRESSION;
}
else if (str == "piz" || str == "PIZ")
{
c = PIZ_COMPRESSION;
}
else if (str == "pxr24" || str == "PXR24")
{
c = PXR24_COMPRESSION;
}
else if (str == "b44" || str == "B44")
{
c = B44_COMPRESSION;
}
else if (str == "b44a" || str == "B44A")
{
c = B44A_COMPRESSION;
}
else if (str == "dwaa" || str == "DWAA")
{
c = DWAA_COMPRESSION;
}
else if (str == "dwab" || str == "DWAB")
{
c = DWAB_COMPRESSION;
}
else
{
cerr << "Unknown compression method \"" << str << "\"." << endl;
exit (1);
}
return c;
}
Extrapolation
getExtrapolation (const string &str)
{
Extrapolation e;
if (str == "black" || str == "BLACK")
{
e = BLACK;
}
else if (str == "clamp" || str == "CLAMP")
{
e = CLAMP;
}
else if (str == "periodic" || str == "PERIODIC")
{
e = PERIODIC;
}
else if (str == "mirror" || str == "MIRROR")
{
e = MIRROR;
}
else
{
cerr << "Unknown extrapolation method \"" << str << "\"." << endl;
exit (1);
}
return e;
}
void
getPartNum (int argc,
char **argv,
int &i,
int *j)
{
if (i > argc - 2)
usageMessage (argv[0]);
*j = strtol (argv[i + 1], 0, 0);
cout << "part number: "<< *j << endl;
i += 2;
}
} // namespace
int
main(int argc, char **argv)
{
const char *inFile = 0;
const char *outFile = 0;
LevelMode mode = ONE_LEVEL;
LevelRoundingMode roundingMode = ROUND_DOWN;
Compression compression = ZIP_COMPRESSION;
int tileSizeX = 64;
int tileSizeY = 64;
set<string> doNotFilter;
Extrapolation extX = CLAMP;
Extrapolation extY = CLAMP;
bool verbose = false;
//
// Parse the command line.
//
if (argc < 2)
usageMessage (argv[0], true);
int i = 1;
int partnum = 0;
while (i < argc)
{
if (!strcmp (argv[i], "-o"))
{
//
// generate a ONE_LEVEL image
//
mode = ONE_LEVEL;
i += 1;
}
else if (!strcmp (argv[i], "-m"))
{
//
// Generate a MIPMAP_LEVELS image
//
mode = MIPMAP_LEVELS;
i += 1;
}
else if (!strcmp (argv[i], "-r"))
{
//
// Generate a RIPMAP_LEVELS image
//
mode = RIPMAP_LEVELS;
i += 1;
}
else if (!strcmp (argv[i], "-f"))
{
//
// Don't low-pass filter the specified image channel
//
if (i > argc - 2)
usageMessage (argv[0]);
doNotFilter.insert (argv[i + 1]);
i += 2;
}
else if (!strcmp (argv[i], "-e"))
{
//
// Set x and y extrapolation method
//
if (i > argc - 3)
usageMessage (argv[0]);
extX = getExtrapolation (argv[i + 1]);
extY = getExtrapolation (argv[i + 2]);
i += 3;
}
else if (!strcmp (argv[i], "-t"))
{
//
// Set tile size
//
if (i > argc - 3)
usageMessage (argv[0]);
tileSizeX = strtol (argv[i + 1], 0, 0);
tileSizeY = strtol (argv[i + 2], 0, 0);
if (tileSizeX <= 0 || tileSizeY <= 0)
{
cerr << "Tile size must be greater than zero." << endl;
return 1;
}
i += 3;
}
else if (!strcmp (argv[i], "-d"))
{
//
// Round down
//
roundingMode = ROUND_DOWN;
i += 1;
}
else if (!strcmp (argv[i], "-u"))
{
//
// Round down
//
roundingMode = ROUND_UP;
i += 1;
}
else if (!strcmp (argv[i], "-z"))
{
//
// Set compression method
//
if (i > argc - 2)
usageMessage (argv[0]);
compression = getCompression (argv[i + 1]);
i += 2;
}
else if (!strcmp (argv[i], "-v"))
{
//
// Verbose mode
//
verbose = true;
i += 1;
}
else if (!strcmp (argv[i], "-h"))
{
//
// Print help message
//
usageMessage (argv[0], true);
}
else if (!strcmp (argv[i], "-p"))
{
getPartNum (argc, argv, i, &partnum);
}
else
{
//
// Image file name
//
if (inFile == 0)
inFile = argv[i];
else
outFile = argv[i];
i += 1;
}
}
if (inFile == 0 || outFile == 0)
usageMessage (argv[0]);
if (!strcmp (inFile, outFile))
{
cerr << "Input and output cannot be the same file." << endl;
return 1;
}
//
// Load inFile, and save a tiled version in outFile.
//
int exitStatus = 0;
//
// check input
//
{
MultiPartInputFile input (inFile);
int parts = input.parts();
if (partnum < 0 || partnum >= parts){
cerr << "ERROR: you asked for part " << partnum << " in " << inFile;
cerr << ", which only has " << parts << " parts\n";
exit(1);
}
Header h = input.header (partnum);
if (h.type() == DEEPTILE || h.type() == DEEPSCANLINE)
{
cerr << "Cannot make tile for deep data" << endl;
exit(1);
}
}
try
{
makeTiled (inFile, outFile, partnum,
mode, roundingMode, compression,
tileSizeX, tileSizeY,
doNotFilter,
extX, extY,
verbose);
}
catch (const exception &e)
{
cerr << e.what() << endl;
exitStatus = 1;
}
return exitStatus;
}
| [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
8a58e837124b197b7cdb448a89edb7db8ef48422 | ad370e7fba278ff8d921bb651fc12eb620e55018 | /src/loadmspectrum.h | 4831f81911b05895945b00e8697f16cf74861bf8 | [] | no_license | selarch/rTANDEM | 561540657885ca35360cf6e2b735822f5db15d63 | 590ab82b131324ddb5655a975873921230930af0 | refs/heads/master | 2021-01-18T10:59:49.433812 | 2012-06-21T15:27:20 | 2012-06-21T15:27:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,409 | h | /*
Copyright (C) 2003-2004 Ronald C Beavis, all rights reserved
X! tandem
This software is a component of the X! proteomics software
development project
Use of this software governed by the Artistic license, as reproduced here:
The Artistic License for all X! software, binaries and documentation
Preamble
The intent of this document is to state the conditions under which a
Package may be copied, such that the Copyright Holder maintains some
semblance of artistic control over the development of the package,
while giving the users of the package the right to use and distribute
the Package in a more-or-less customary fashion, plus the right to
make reasonable modifications.
Definitions
"Package" refers to the collection of files distributed by the Copyright
Holder, and derivatives of that collection of files created through
textual modification.
"Standard Version" refers to such a Package if it has not been modified,
or has been modified in accordance with the wishes of the Copyright
Holder as specified below.
"Copyright Holder" is whoever is named in the copyright or copyrights
for the package.
"You" is you, if you're thinking about copying or distributing this Package.
"Reasonable copying fee" is whatever you can justify on the basis of
media cost, duplication charges, time of people involved, and so on.
(You will not be required to justify it to the Copyright Holder, but
only to the computing community at large as a market that must bear
the fee.)
"Freely Available" means that no fee is charged for the item itself,
though there may be fees involved in handling the item. It also means
that recipients of the item may redistribute it under the same
conditions they received it.
1. You may make and give away verbatim copies of the source form of the
Standard Version of this Package without restriction, provided that
you duplicate all of the original copyright notices and associated
disclaimers.
2. You may apply bug fixes, portability fixes and other modifications
derived from the Public Domain or from the Copyright Holder. A
Package modified in such a way shall still be considered the Standard
Version.
3. You may otherwise modify your copy of this Package in any way, provided
that you insert a prominent notice in each changed file stating how and
when you changed that file, and provided that you do at least ONE of the
following:
a. place your modifications in the Public Domain or otherwise make them
Freely Available, such as by posting said modifications to Usenet
or an equivalent medium, or placing the modifications on a major
archive site such as uunet.uu.net, or by allowing the Copyright Holder
to include your modifications in the Standard Version of the Package.
b. use the modified Package only within your corporation or organization.
c. rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided, and provide
a separate manual page for each non-standard executable that clearly
documents how it differs from the Standard Version.
d. make other distribution arrangements with the Copyright Holder.
4. You may distribute the programs of this Package in object code or
executable form, provided that you do at least ONE of the following:
a. distribute a Standard Version of the executables and library files,
together with instructions (in the manual page or equivalent) on
where to get the Standard Version.
b. accompany the distribution with the machine-readable source of the
Package with your modifications.
c. give non-standard executables non-standard names, and clearly
document the differences in manual pages (or equivalent), together
with instructions on where to get the Standard Version.
d. make other distribution arrangements with the Copyright Holder.
5. You may charge a reasonable copying fee for any distribution of
this Package. You may charge any fee you choose for support of
this Package. You may not charge a fee for this Package itself.
However, you may distribute this Package in aggregate with other
(possibly commercial) programs as part of a larger (possibly
commercial) software distribution provided that you do not a
dvertise this Package as a product of your own. You may embed this
Package's interpreter within an executable of yours (by linking);
this shall be construed as a mere form of aggregation, provided that
the complete Standard Version of the interpreter is so embedded.
6. The scripts and library files supplied as input to or produced as
output from the programs of this Package do not automatically fall
under the copyright of this Package, but belong to whomever generated
them, and may be sold commercially, and may be aggregated with this
Package. If such scripts or library files are aggregated with this
Package via the so-called "undump" or "unexec" methods of producing
a binary executable image, then distribution of such an image shall
neither be construed as a distribution of this Package nor shall it
fall under the restrictions of Paragraphs 3 and 4, provided that you
do not represent such an executable image as a Standard Version of
this Package.
7. C subroutines (or comparably compiled subroutines in other languages)
supplied by you and linked into this Package in order to emulate
subroutines and variables of the language defined by this Package
shall not be considered part of this Package, but are the equivalent
of input as in Paragraph 6, provided these subroutines do not change
the language in any way that would cause it to fail the regression
tests for the language.
8. Aggregation of this Package with a commercial distribution is always
permitted provided that the use of this Package is embedded; that is,
when no overt attempt is made to make this Package's interfaces visible
to the end user of the commercial distribution. Such use shall not be
construed as a distribution of this Package.
9. The name of the Copyright Holder may not be used to endorse or promote
products derived from this software without specific prior written permission.
10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
The End
*/
#ifndef LOADSPECTRUM_H
#define LOADSPECTRUM_H
// File version: 2004-01-07
/*
loadmspectrum is the base class for deriving classes that take the data from
a file containing one or more ms/ms spectra and load that data into an
mspectrum class for modeling. These derived classes consist of overrides of
the open and get methods that perform file format testing and provide
compatibility with non-standard file formats.
*/
class loadmspectrum
{
public:
loadmspectrum(void) { m_tId = 0; m_cEol = 0x0A; m_tSize = 4096*4096;}
virtual ~loadmspectrum(void) { }
size_t m_tId; // the id number of a spectrum
std::streamsize m_tSize;
string m_strPath; // the path information for the data file
string m_strTest;
virtual bool get() {return true; }
virtual bool get(mspectrum &_m) {return true; } // retrieves a single spectrum from a data file
virtual bool open(string &_s) {return true; } // attaches the data file to m_ifIn and checks formats
virtual bool open_force(string &_s) {return true; } // attaches the data file to m_ifIn and checks formats
int load_test(const char *_p) {
m_ifIn.open(m_strPath.c_str());
if(m_ifIn.fail()) {
cout << "<br>Fatal error: input file could not be opened.<BR>";
return 0;
}
/*
* test for the file extension .mzdata
*/
string strTest = m_strPath;
int (*pf)(int) = tolower;
transform(strTest.begin(), strTest.end(), strTest.begin(), pf);
if(strTest.find(_p) != strTest.npos) {
m_ifIn.close();
return 2;
}
m_strTest.clear();
size_t tBuffer = 128*1024;
char *pLine = new char[tBuffer];
memset((void *)pLine,'\0',tBuffer);
m_ifIn.getline(pLine,tBuffer,'\n');
m_strTest += pLine;
while(m_ifIn.good() && !m_ifIn.eof() && m_strTest.size() < tBuffer) {
memset((void *)pLine,'\0',tBuffer);
m_ifIn.getline(pLine,tBuffer-1,'\n');
m_strTest += pLine;
}
delete pLine;
m_ifIn.close();
cout.flush();
return 1;
}
enum {
I_Y = 0x01,
I_B = 0x02,
I_X = 0x04,
I_A = 0x08,
I_C = 0x10,
I_Z = 0x20,
} ion_type; // enum for referencing information about specific ion types.
protected:
char m_cEol; // the character chosen to mark the end-of-line, 0X0A or 0X0D
ifstream m_ifIn; // the input file stream
};
/*
loaddta is publicly derived from loadmspectrum. It overrides get and open to work with
DTA files. Multiple ms/ms spectra can be placed in a single file by separating the spectra
with at least one blank line. The DTA file format is as follows:
parent charge
mz1 I1
mz2 I2
...
where:
parent = the M+H mass of the parent ion in units
charge = the parent ion charge (1,2,3, etc.)
mzX = the mass-to-charge ratio of the Xth fragment ion
IX = the intensity of the Xth fragment ion
*/
class loaddta : public loadmspectrum
{
public:
loaddta(void);
virtual ~loaddta(void);
virtual bool get(mspectrum &_m);
virtual bool open(string &_s);
virtual bool open_force(string &_s);
};
/*
loadpkl is publicly derived from loadmspectrum. It overrides get and open to work with
PKL files. Multiple ms/ms spectra can be placed in a single file by separating the spectra
with at least one blank line. The PKL file format is as follows:
parent intensity charge
mz1 I1
mz2 I2
...
where:
parent = the mass-to-charge of the parent ion
intensity = the intensity of the parent ion
charge = the parent ion charge (1,2,3, etc.)
mzX = the mass-to-charge ratio of the Xth fragment ion
IX = the intensity of the Xth fragment ion
*/
class loadpkl : public loadmspectrum
{
public:
loadpkl(void);
virtual ~loadpkl(void);
virtual bool get(mspectrum &_m);
virtual bool open(string &_s);
virtual bool open_force(string &_s);
};
/*
loadmatrix is publicly derived from loadmspectrum. It overrides get and open to work with
Matrix Science files. Please see www.matrixscience.com for a definition of this format.
*/
class loadmatrix : public loadmspectrum
{
public:
loadmatrix(void);
virtual ~loadmatrix(void);
virtual bool get(mspectrum &_m);
virtual bool open(string &_s);
virtual bool open_force(string &_s);
};
/*
loadgaml is publicly derived from loadmspectrum. It overrides get and open to work with
the gaml-named nodes in tandem output files. Please see www.gaml.org for a definition of this
format. You can also examine tandem output files to see how this format works.
*/
#include "saxgamlhandler.h"
class loadgaml : public loadmspectrum
{
public:
loadgaml(vector<mspectrum>& _pv, mspectrumcondition& _p, mscore& _m);
virtual ~loadgaml(void);
virtual bool get();
virtual bool open(string &_s);
virtual bool open_force(string &_s);
private:
mspectrum specCurrent;
SAXGamlHandler handler;
};
#ifdef XMLCLASS
#include "saxmzxmlhandler.h"
#include "saxmzdatahandler.h"
#include "saxmzmlhandler.h"
/*
loadmzxml est derive publiquement de loadspectrum. Il redefinit get et open. Voi http://sashimi.sourceforge.net/ pour connaitre le mzxml.
Ajouter par Patrick Lacasse en decembre 2004.
*/
class loadmzxml : public loadmspectrum
{
public:
loadmzxml(vector<mspectrum>& _pv, mspectrumcondition& _p, mscore& _m);
virtual ~loadmzxml(void );
virtual bool get();
virtual bool open(string &_s);
virtual bool open_force(string &_s);
private:
mspectrum specCurrent;
SAXMzxmlHandler handler;
string strLine; // Usage temporaire
};
/*
loadmzdata est derive publiquement de loadspectrum. Il redefinit get et open. Voi http://sashimi.sourceforge.net/ pour connaitre le mzxml.
Ajouter par Patrick Lacasse en janvier 2005.
*/
class loadmzdata : public loadmspectrum
{
public:
loadmzdata(vector<mspectrum>& _pv, mspectrumcondition& _p, mscore& _m);
virtual ~loadmzdata(void );
virtual bool get();
virtual bool open(string &_s);
virtual bool open_force(string &_s);
private:
mspectrum specCurrent;
SAXMzdataHandler handler;
string strLine; // Usage temporaire
};
/*
loadmzml was added as an experimental interface to EBI's mzML format
The initial version was adapted from loadmzdata by Ron Beavis in August 2008.
*/
class loadmzml : public loadmspectrum
{
public:
loadmzml(vector<mspectrum>& _pv, mspectrumcondition& _p, mscore& _m);
virtual ~loadmzml(void );
virtual bool get();
virtual bool open(string &_s);
virtual bool open_force(string &_s);
private:
mspectrum specCurrent;
SAXMzmlHandler handler;
string strLine; // Usage temporaire
};
class loadcmn : public loadmspectrum
{
public:
loadcmn(void);
virtual ~loadcmn(void );
virtual bool get(mspectrum &_m);
virtual bool open(string &_s);
virtual bool open_force(string &_s);
int m_iVersion;
private:
FILE *m_pFile;
mspectrum specCurrent;
};
#endif //ifdef XMLCLASS
#endif //ifdef LOADSPECTRUM_H
| [
"cjbparlant@ls28.genome.ulaval.ca"
] | cjbparlant@ls28.genome.ulaval.ca |
b39a5ec798d109e69d2123f1ba107e369dca1151 | 2c958f648b16a64e2790e79d73e5b2847873d6b3 | /chapter3/primer3.2.2.cpp | 2ae18be595a24808d6ebc0b48ee2e4019dc3f508 | [] | no_license | Ashlyn-star/C-primer | 5c65851ff13dbbe3bbc4db5a1da65f6b3865339b | 23577592f9051567567dfe25386e00468271b138 | refs/heads/main | 2023-07-11T09:27:11.861747 | 2021-08-13T07:20:23 | 2021-08-13T07:20:23 | 361,659,770 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 279 | cpp | #include <iostream>
#include <string>
using std::string;
using std::cin;
using std::cout;
using std::endl;
int main() {
string word;
/*while (cin >> word) {
cout << word << endl;
}*/
while (getline(cin , word)) {
if (!word.empty)
cout << word << endl;
}
return 0;
}
| [
"214625132@qq.com"
] | 214625132@qq.com |
8bb5b10b0121c1a1a81cc6568a52bf2a9d86e1bd | 7d66fdc0434317fc06dbdfedb7ef6e7b24994415 | /CalFp02/src/Sudoku.cpp | 4c92954a8dfcceae1ffc42cdc5960b839890f856 | [] | no_license | filipasenra/FEUP-CAL | ca77502cde5762dd0dfac89b05d36bc8d9b506e3 | 8a1772b53646a95dcf04ac2d6c49c394d28b25d6 | refs/heads/master | 2020-04-25T21:54:40.278904 | 2019-07-27T19:37:06 | 2019-07-27T19:37:06 | 173,094,608 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 4,063 | cpp | /*
* Sudoku.cpp
*
*/
#include "Sudoku.h"
#include <tuple>
#include <vector>
/** Inicia um Sudoku vazio.
*/
Sudoku::Sudoku() {
this->initialize();
}
/**
* Inicia um Sudoku com um conteúdo inicial.
* Lança excepção IllegalArgumentException se os valores
* estiverem fora da gama de 1 a 9 ou se existirem números repetidos
* por linha, coluna ou bloc 3x3.
*
* @param nums matriz com os valores iniciais (0 significa por preencher)
*/
Sudoku::Sudoku(int nums[9][9]) {
this->initialize();
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
if (nums[i][j] != 0) {
int n = nums[i][j];
numbers[i][j] = n;
lineHasNumber[i][n] = true;
columnHasNumber[j][n] = true;
block3x3HasNumber[i / 3][j / 3][n] = true;
countFilled++;
}
}
}
}
void Sudoku::initialize() {
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
for (int n = 0; n < 10; n++) {
numbers[i][j] = 0;
lineHasNumber[i][n] = false;
columnHasNumber[j][n] = false;
block3x3HasNumber[i / 3][j / 3][n] = false;
}
}
}
this->countFilled = 0;
}
/**
* Obtem o conteúdo actual (só para leitura!).
*/
int** Sudoku::getNumbers() {
int** ret = new int*[9];
for (int i = 0; i < 9; i++) {
ret[i] = new int[9];
for (int a = 0; a < 9; a++)
ret[i][a] = numbers[i][a];
}
return ret;
}
/**
* Verifica se o Sudoku já está completamente resolvido
*/
bool Sudoku::isComplete() {
return countFilled == 9 * 9;
}
/*
*@brief Chooses the nextCel with a greedy algorithm:
*@brief the cell with the fewest options
*@brief in case the case of multiple options, returns the first one found
*
*@return returns the cell with the fewest options and
*@return the options for that cell
*/
tuple<int, int, vector<int>> Sudoku::nextCel() {
//let's save the best cell (the cell with the fewest options)
int best_x = 0;
int best_y = 0;
vector<int> vec;
//saves the number of options for the cell above.
int best_n = 9;
for (int i = 0; i < 9; i++)
for (int j = 0; j < 9; j++) {
if (numbers[i][j] == 0) {
int n = 9;
vector<int> vec_tmp;
//checks what numbers are in the column, line or block
for (int a = 1; a <= 9; a++)
if (columnHasNumber[j][a] || lineHasNumber[i][a]
|| block3x3HasNumber[i / 3][j / 3][a])
{
n--;
vec_tmp.push_back(a);
}
//saves the cell with fewest options
if (n < best_n) {
best_n = n;
best_x = i;
best_y = j;
}
if (n == 1)
break;
}
}
return make_tuple(best_x, best_y, vec);
}
/**
*@brief Fills the cell with the coordenates x and y
*@brief with a value and updates everything
*
*/
void Sudoku::fillCel(int x, int y, int value) {
numbers[x][y] = value;
lineHasNumber[x][value] = true;
columnHasNumber[y][value] = true;
block3x3HasNumber[x / 3][y / 3][value] = true;
countFilled++;
}
/**
*@brief Empties the cell with the coordenates x and y
*@brief and updates everything
*
*/
void Sudoku::emptyCel(int x, int y, int value) {
numbers[x][y] = 0;
lineHasNumber[x][value] = false;
columnHasNumber[y][value] = false;
block3x3HasNumber[x / 3][y / 3][value] = false;
countFilled--;
}
/**
*@brief Solves the soduku (recursively)
*@brief Auxiliary function do Solve
*/
bool Sudoku::solveRec(int x, int y, vector<int> vec) {
//Caso base
if (isComplete())
return true;
//Iterar de 1 a 9 (para os valores da celula)
for (unsigned int i = 0; i < vec.size(); i++) {
fillCel(x, y, i);
tuple<int, int, vector<int>> cel = nextCel();
if (solveRec(get<0>(cel), get<1>(cel), get<2>(cel)))
return true;
else
emptyCel(x, y, i);
}
return false;
}
/**
* Resolve o Sudoku.
* Retorna indicação de sucesso ou insucesso (sudoku impossível).
*/
bool Sudoku::solve() {
tuple<int, int, vector<int>> cel = nextCel();
return solveRec(get<0>(cel), get<1>(cel), get<2>(cel));
}
/**
* Imprime o Sudoku.
*/
void Sudoku::print() {
for (int i = 0; i < 9; i++) {
for (int a = 0; a < 9; a++)
cout << this->numbers[i][a] << " ";
cout << endl;
}
}
| [
"filipasenra4@gmail.com"
] | filipasenra4@gmail.com |
b94c22727aa653290403190188ec5de4a8bd180f | c91fe5e19619a52be32920c1a88fc5f4d13a2b9c | /Common files/MORPHO_Image.h | 80fea33e0dd706749bba14d9f316d8d428a52549 | [] | no_license | beracho/tryMorpho | ca09b5b3ce390901491d0f6189173f52e4c96534 | 819e0bb80621aac331311d9ee707a5a5354fdb64 | refs/heads/master | 2020-04-03T19:53:19.051089 | 2018-10-31T10:15:20 | 2018-10-31T10:15:20 | 155,539,005 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,094 | h | /************************************************************/
/**
* @file MORPHO_Image.h
* @brief Definitions of the C_MORPHO_Image class
*
* Copyright © 2011, Morpho
*
* - PROJECT : MorphoSmart&tm;
* - MODULE : Interfaces
*
*/
#ifndef MORPHO_IMAGE_H
#define MORPHO_IMAGE_H
/**
* @brief Helper class to display images from the device.
* This class displays the images received from MorphoSmart&tm;.
*/
class C_MORPHO_Image
{
public:
// Constants
#define MORPHO_LINEAR_INTERPOLATION 0x0001
/**
* Constructor.
* @param[in] i_ul_ImageNbIndex Number of different images to manage.
*/
C_MORPHO_Image(UL i_ul_ImageNbIndex);
/**
* Copy constructor.
* @param[in] i_px_Image source object
*/
C_MORPHO_Image(const C_MORPHO_Image& i_px_Image);
/**
* Default destructor
*/
virtual ~C_MORPHO_Image();
/**
* Assignation operator.
* @param[in] i_px_Image source object
*/
C_MORPHO_Image& operator= (const C_MORPHO_Image& i_px_Image);
/**
* Save and display a new image. This method should be called each time a new image
* is received thanks to MORPHO_CALLBACK_IMAGE_CMD or MORPHO_CALLBACK_LAST_IMAGE_FULL_RES_CMD
* asynchronous events.
*
* @param[in] i_ul_ImageIndex
* - Image index to retrieve and display (first index is index 0).
* @param[in] i_x_Image
* - Image header and image.
* @param[in] i_ul_imageFilter
* - Filter applied on the image. Possibles values are:
* - 0: no specific treatment (better image with a small display)
* - MORPHO_LINEAR_INTERPOLATION: linear interpolation (better image with a big display).
* @param[in] i_p_Cdc
* - Device context object (class is defined in Microsoft MFC) to display the image. A device context is allocated with MFC method CWnd::GetDC() and released with MFC CWnd::ReleaseDC(). For more details, see the given examples.
* @param[in] i_p_Rect
* - Size of the rectangle to display the image.
*
* @retval #MORPHO_OK The execution of the function was successful.
* @retval #MORPHOERR_BADPARAMETER Bad value of i_ul_ImageIndex (maximum value defined in the constructor).
* @retval #MORPHOERR_CORRUPTED_CLASS Class has been corrupted.
*/
I SetImage( UL i_ul_ImageIndex,
T_MORPHO_CALLBACK_IMAGE_STATUS i_x_Image,
UL i_ul_imageFilter,
CDC *i_p_Cdc,
CRect & i_p_Rect);
/**
* Display an image already saved. This method should be called each time a refresh is required.
* We recommend to use this method with the OnPaint() Visual C++ function.
* Fore more details, see the given examples.
*
* @param[in] i_ul_ImageIndex
* - Image index to refresh (first index is index 0).
* @param[in] i_p_Rect
* - Size of the rectangle to display the image.
* @param[in] i_p_Cdc
* - Device context object (class is defined in Microsoft MFC) to display the image.
* A device context is allocated with MFC method CWnd::GetDC() and released with
* MFC CWnd::ReleaseDC(). For more details, see the given examples.
*
* @retval #MORPHO_OK The execution of the function was successful.
* @retval #MORPHOERR_BADPARAMETER Bad value of i_ul_ImageIndex (maximum value defined in the constructor).
* @retval #MORPHOERR_CORRUPTED_CLASS Class has been corrupted.
*/
I RefreshViewer( UL i_ul_ImageIndex,
CRect & i_p_Rect,
CDC* i_p_Cdc);
private:
#ifdef _WIN32_WCE
I MonochromeArrayToDIB( UL i_ul_ImageIndex,
UL i_ul_ImageRow,
UL i_ul_ImageCol,
PUC i_puc_Image,
CDC *i_p_Cdc,
CRect &i_p_Rect);
#else
I MonochromeArrayToDIB( UL i_ul_ImageIndex,
UL i_ul_ImageRow,
UL i_ul_ImageCol,
PUC i_puc_Image,
CDC *i_p_Cdc);
#endif
VOID ZoomImageBilineaire( PUC entree, PUC sortie, UC background,
L larg_entree, L haut_entree, L reso_entree,
L larg_sortie, L haut_sortie, L reso_sortie);
private:
typedef struct
{
HBITMAP *m_pBitmap;
UL m_ul_ImageNbIndex;
PUI m_pui_image8bits;
CStatic *m_p_Static_Viewer;
} T_MORPHO_IMAGE,*PT_MORPHO_IMAGE;
PT_MORPHO_IMAGE m_px_MorphoImage;
};
#endif
| [
"beracho_15@hotmail.com"
] | beracho_15@hotmail.com |
1bc34275a35649b75476ce847e5613ba410aaa23 | ef2906a500ee1a10829c41c42c2f8b4f9df8bbc4 | /VTK/Rendering/vtkTDxInteractorStyle.h | 5b06ac99ee00791e530825e43cd183f3612fba73 | [
"BSD-3-Clause",
"LicenseRef-scancode-paraview-1.2"
] | permissive | jeffery-do/ParaView | 9563c399f27ad499147e1da8188559ec46b7e62b | 805ff3e5273ebf7d7920140801c8016d2ae83480 | refs/heads/master | 2021-05-27T20:35:04.000805 | 2010-02-10T20:09:32 | 2010-02-10T20:09:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,100 | h | /*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile$
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkTDxInteractorStyle - provide 3DConnexion device event-driven interface to the rendering window
// .SECTION Description
// vtkTDxInteractorStyle is an abstract class defining an event-driven
// interface to support 3DConnexion device events send by
// vtkRenderWindowInteractor.
// vtkRenderWindowInteractor forwards events in a platform independent form to
// vtkInteractorStyle which can then delegate some processing to
// vtkTDxInteractorStyle.
// .SECTION See Also
// vtkInteractorStyle vtkRenderWindowInteractor
// vtkTDxInteractorStyleCamera
#ifndef __vtkTDxInteractorStyle_h
#define __vtkTDxInteractorStyle_h
#include "vtkObject.h"
class vtkTDxMotionEventInfo;
class vtkRenderer;
class vtkTDxInteractorStyleSettings;
class VTK_RENDERING_EXPORT vtkTDxInteractorStyle : public vtkObject
{
public:
vtkTypeRevisionMacro(vtkTDxInteractorStyle,vtkObject);
void PrintSelf(ostream& os, vtkIndent indent);
//BTX
// Description:
// Action on motion event. Default implementation is empty.
// \pre: motionInfo_exist: motionInfo!=0
virtual void OnMotionEvent(vtkTDxMotionEventInfo *motionInfo);
// Description:
// Action on button pressed event. Default implementation is empty.
virtual void OnButtonPressedEvent(int button);
// Description:
// Action on button released event. Default implementation is empty.
virtual void OnButtonReleasedEvent(int button);
//ETX
// Description:
// Dispatch the events TDxMotionEvent, TDxButtonPressEvent and
// TDxButtonReleaseEvent to OnMotionEvent(), OnButtonPressedEvent() and
// OnButtonReleasedEvent() respectively.
// It is called by the vtkInteractorStyle.
// This method is virtual for convenient but you should really override
// the On*Event() methods only.
// \pre renderer can be null.
virtual void ProcessEvent(vtkRenderer *renderer,
unsigned long event,
void *calldata);
// Description:
// 3Dconnexion device settings. (sensitivity, individual axis filters).
// Initial object is not null.
vtkGetObjectMacro(Settings,vtkTDxInteractorStyleSettings);
virtual void SetSettings(vtkTDxInteractorStyleSettings *settings);
protected:
vtkTDxInteractorStyle();
virtual ~vtkTDxInteractorStyle();
vtkTDxInteractorStyleSettings *Settings;
vtkRenderer *Renderer;
private:
vtkTDxInteractorStyle(const vtkTDxInteractorStyle&); // Not implemented.
void operator=(const vtkTDxInteractorStyle&); // Not implemented.
};
#endif
| [
"francois.bertel@kitware.com"
] | francois.bertel@kitware.com |
cc8672528c80dda26af9024079f6468b6b31cbdd | b1b9041d85fa6d2808e0f254769e6f9825247fb8 | /arduino/Encendido_de_Luz/Encendido_de_Luz.ino | cda45cf866a87c054e1782b220c7af6a3cc3f8a5 | [] | no_license | diego-prokes/eg_codes | 64875568c0930333fc5ffd19632ceabf9651ea85 | 940708a0d1727dc910b4e77f3715d9791ac4fad3 | refs/heads/main | 2023-08-19T04:28:22.236942 | 2021-10-06T20:19:16 | 2021-10-06T20:19:16 | 379,408,596 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 200 | ino | void setup(){
pinMode(13, OUTPUT);
}
void loop(){
digitalWrite(13, HIGH); //voltaje alto
delay(5000); //delay de 1 seg.
digitalWrite(13, LOW); //voltaje bajo
delay(1000); //delay de 1 seg.
} | [
"diego.prokes@gmail.com"
] | diego.prokes@gmail.com |
1c5c7e09e54dbf4584858a3aa77994bec5a2bbbc | 83bdff7c567494f68b38fa698c02f6ea7c4e2dcd | /new2/inetmanet-3.0/src/inet/applications/udpapp/UDPVideoStreamCli2.cc | 502aa3d1b03acc97c07c96ec9a87b43d7f1e1930 | [] | no_license | keifujunaga/VirtualSpringMesh | 0dc6a7f50f7f37a6edfe2e409a373165fb726b9d | e5c1060988ce0c8f6ddc7e69ddaee30bb08c17d6 | refs/heads/master | 2020-04-08T11:30:39.095298 | 2018-11-27T09:17:26 | 2018-11-27T09:17:26 | 159,308,591 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,331 | cc | //
// Copyright (C) 2005 Andras Varga
// Copyright (C) 2015 A. Ariza (Malaga University)
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program; if not, see <http://www.gnu.org/licenses/>.
//
//
// based on the video streaming app of the similar name by Johnny Lai
//
#include "inet/applications/udpapp/UDPVideoStreamCli2.h"
#include "inet/transportlayer/contract/udp/UDPControlInfo_m.h"
#include "inet/networklayer/common/L3AddressResolver.h"
#include "inet/applications/udpapp/VideoPacket_m.h"
namespace inet {
Define_Module(UDPVideoStreamCli2);
simsignal_t UDPVideoStreamCli2::rcvdPkSignal = registerSignal("rcvdPk");
UDPVideoStreamCli2::UDPVideoStreamCli2()
{
reintentTimer = new cMessage();
timeOutMsg = new cMessage();
selfMsg = new cMessage("UDPVideoStreamStart");
socketOpened = false;
numPframes = 0;
numIframes = 0;
numBframes = 0;
totalBytesI = 0;
totalBytesP = 0;
totalBytesB = 0;
recieved = false;
}
UDPVideoStreamCli2::~UDPVideoStreamCli2()
{
cancelAndDelete(reintentTimer);
cancelAndDelete(timeOutMsg);
cancelAndDelete(selfMsg);
}
void UDPVideoStreamCli2::initialize(int stage)
{
ApplicationBase::initialize(stage);
if (stage == INITSTAGE_LOCAL)
{
// statistics
timeOut = par("timeOut");
limitDelay = par("limitDelay");
}
}
void UDPVideoStreamCli2::finish()
{
recordScalar("Total received", numRecPackets);
if (numPframes != 0 || numIframes != 0 || numBframes != 0)
{
recordScalar("Total I frames received", numIframes);
recordScalar("Total P frames received", numPframes);
recordScalar("Total B frames received", numBframes);
recordScalar("Total I bytes received", totalBytesI);
recordScalar("Total P bytes received", totalBytesP);
recordScalar("Total B bytes received", totalBytesB);
}
}
void UDPVideoStreamCli2::handleMessageWhenUp(cMessage* msg)
{
if (msg->isSelfMessage())
{
if (reintentTimer == msg)
requestStream();
else if (timeOutMsg == msg)
timeOutData();
else
requestStream();
}
else if (msg->getKind() == UDP_I_DATA)
{
// process incoming packet
receiveStream(PK(msg));
}
else if (msg->getKind() == UDP_I_ERROR)
{
EV << "Ignoring UDP error report\n";
delete msg;
}
else
{
error("Unrecognized message (%s)%s", msg->getClassName(), msg->getName());
}
}
void UDPVideoStreamCli2::requestStream()
{
if (recieved && !par("multipleRequest").boolValue())
return;
int svrPort = par("serverPort");
int localPort = par("localPort");
const char *address = par("serverAddress");
L3Address svrAddr = L3AddressResolver().resolve(address);
if (svrAddr.isUnspecified())
{
EV << "Server address is unspecified, skip sending video stream request\n";
return;
}
EV << "Requesting video stream from " << svrAddr << ":" << svrPort << "\n";
if (!socketOpened)
{
socket.setOutputGate(gate("udpOut"));
socket.bind(localPort);
socketOpened = true;
}
lastSeqNum = -1;
cPacket *pk = new cPacket("VideoStrmReq");
socket.sendTo(pk, svrAddr, svrPort);
double reint = par("reintent").longValue();
if (reint > 0)
scheduleAt(simTime()+par("reintent").longValue(),reintentTimer);
}
void UDPVideoStreamCli2::receiveStream(cPacket *pk)
{
if (reintentTimer->isScheduled())
cancelEvent(reintentTimer);
if (timeOutMsg->isScheduled())
cancelEvent(timeOutMsg);
recieved = true;
if (timeOut > 0 && par("multipleRequest").boolValue())
scheduleAt(simTime()+timeOut,timeOutMsg); // only if multiple request is active
if (simTime() - pk->getCreationTime() > limitDelay)
{
delete pk;
return;
}
VideoPacket *vpkt = dynamic_cast<VideoPacket*> (pk->getEncapsulatedPacket());
if (vpkt)
{
do
{
if (vpkt->getSeqNum() > lastSeqNum)
lastSeqNum = vpkt->getSeqNum();
else
{
delete pk;
return;
}
switch(vpkt->getType())
{
case 'P':
numPframes++;
totalBytesP += vpkt->getFrameSize();
break;
case 'B':
numBframes++;
totalBytesB += vpkt->getFrameSize();
break;
case 'I':
numIframes++;
totalBytesI += vpkt->getFrameSize();
break;
}
vpkt = dynamic_cast<VideoPacket*> (vpkt->getEncapsulatedPacket());
} while(vpkt);
}
numRecPackets++;
EV << "Video stream packet: " << UDPSocket::getReceivedPacketInfo(pk) << endl;
emit(rcvdPkSignal, pk);
delete pk;
}
void UDPVideoStreamCli2::timeOutData()
{
double reint = par("reintent").longValue();
if (reint > 0)
scheduleAt(simTime()+par("reintent").longValue(),reintentTimer);
}
bool UDPVideoStreamCli2::handleNodeStart(IDoneCallback *doneCallback)
{
simtime_t startTimePar = par("startTime");
simtime_t startTime = std::max(startTimePar, simTime());
scheduleAt(startTime, selfMsg);
return true;
}
bool UDPVideoStreamCli2::handleNodeShutdown(IDoneCallback *doneCallback)
{
cancelEvent(selfMsg);
cancelEvent(reintentTimer);
cancelEvent(timeOutMsg);
//TODO if(socket.isOpened()) socket.close();
return true;
}
void UDPVideoStreamCli2::handleNodeCrash()
{
cancelEvent(selfMsg);
cancelEvent(reintentTimer);
cancelEvent(timeOutMsg);
}
}
| [
"b1015082@gmail.com"
] | b1015082@gmail.com |
fe85c25e2a22b09a3b6af73c2a0a40e8ce36dd81 | e276303d11773362c146c4a6adbdc92d6dee9b3f | /Classes/Native/mscorlib_System_Runtime_Remoting_Messaging_EnvoyTe3043186997.h | 10499308d9ddaec6713a1bbf7eb0977f4a63de12 | [
"Apache-2.0"
] | permissive | AkishinoShiame/Virtual-Elderly-Chatbot-IOS-Project-IOS-12 | 45d1358bfc7c8b5c5b107b9d50a90b3357dedfe1 | a834966bdb705a2e71db67f9d6db55e7e60065aa | refs/heads/master | 2020-06-14T02:22:06.622907 | 2019-07-02T13:45:08 | 2019-07-02T13:45:08 | 194,865,711 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,405 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_Object2689449295.h"
// System.Runtime.Remoting.Messaging.EnvoyTerminatorSink
struct EnvoyTerminatorSink_t3043186997;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Remoting.Messaging.EnvoyTerminatorSink
struct EnvoyTerminatorSink_t3043186997 : public Il2CppObject
{
public:
public:
};
struct EnvoyTerminatorSink_t3043186997_StaticFields
{
public:
// System.Runtime.Remoting.Messaging.EnvoyTerminatorSink System.Runtime.Remoting.Messaging.EnvoyTerminatorSink::Instance
EnvoyTerminatorSink_t3043186997 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EnvoyTerminatorSink_t3043186997_StaticFields, ___Instance_0)); }
inline EnvoyTerminatorSink_t3043186997 * get_Instance_0() const { return ___Instance_0; }
inline EnvoyTerminatorSink_t3043186997 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(EnvoyTerminatorSink_t3043186997 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier(&___Instance_0, value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"akishinoshiame@icloud.com"
] | akishinoshiame@icloud.com |
be368ab7d51db6898e2fb0ce89e2bda20caaed47 | b603cd07c39d172dbf7ddc414ae921f85e39bbf5 | /libs/chrono/test/test_7868.cpp | 03ebda741403be34876ecd7c271f14d32b172895 | [
"BSL-1.0"
] | permissive | evemu/boost | 94e3fad0d578e2e24da288cf1b4c954a9779872e | 6432e12837ce7956fb8abf8dc61369b59a80ff08 | refs/heads/master | 2020-12-25T04:55:10.388986 | 2013-08-15T21:03:59 | 2013-08-15T21:03:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,856 | cpp | #define BOOST_CHRONO_VERSION 2
//#define BOOST_CHRONO_PROVIDES_DATE_IO_FOR_SYSTEM_CLOCK_TIME_POINT 1
#include <sstream>
#include <iostream>
#include <boost/chrono/chrono_io.hpp>
#include <boost/chrono/floor.hpp>
#include <boost/chrono/round.hpp>
#include <boost/chrono/ceil.hpp>
#include <boost/detail/lightweight_test.hpp>
int main()
{
using namespace boost;
using namespace boost::chrono;
boost::chrono::system_clock::time_point atnow= boost::chrono::system_clock::now();
{
std::stringstream strm;
std::stringstream strm2;
// does not change anything: strm<<time_fmt(boost::chrono::timezone::utc);
// does not change anything: strm2<<time_fmt(boost::chrono::timezone::utc);
boost::chrono::system_clock::time_point atnow2;
strm<<atnow<<std::endl;
std::cout << "A:" << strm.str()<< std::endl;
strm>>atnow2;
strm2<<atnow2<<std::endl;
std::cout << "B:" << strm2.str()<< std::endl;
BOOST_TEST_EQ(atnow.time_since_epoch().count(), atnow2.time_since_epoch().count());
// 1 sec wrong:
std::cout << "diff:" << boost::chrono::duration_cast<microseconds>(atnow2 - atnow).count() <<std::endl;
BOOST_TEST_EQ(boost::chrono::duration_cast<microseconds>(atnow2 - atnow).count(), 0);
std::stringstream formatted;
formatted << time_fmt(boost::chrono::timezone::utc, "%Y-%m-%d %H:%M:%S");
formatted << "actual:"<< atnow <<std::endl;
formatted << "parsed:"<< atnow2 <<std::endl;
std::cout << formatted.str();
std::stringstream formatted1;
formatted1 << time_fmt(boost::chrono::timezone::utc, "%Y-%m-%d %H:%M:%S");
formatted1 << atnow ;
std::stringstream formatted2;
formatted2 << time_fmt(boost::chrono::timezone::utc, "%Y-%m-%d %H:%M:%S");
formatted2 << atnow2 ;
BOOST_TEST_EQ(formatted1.str(), formatted2.str());
}
{
std::cout << "FORMATTED" << std::endl;
std::stringstream strm;
std::stringstream strm2;
boost::chrono::system_clock::time_point atnow2;
// the final second mark is always parsed as 01
strm<<time_fmt(boost::chrono::timezone::utc, "%Y-%m-%d %H:%M:%S");
strm2<<time_fmt(boost::chrono::timezone::utc, "%Y-%m-%d %H:%M:%S");
strm<<atnow<<std::endl;
std::cout << "actual:" << strm.str()<< std::endl;
strm>>atnow2;
strm2<<atnow2<<std::endl;
// the final second mark is always parsed as 01
std::cout << "parsed:" << strm2.str()<< std::endl;
//BOOST_TEST_EQ(atnow, atnow2); // fails because the pattern doesn't contains nanoseconds
//BOOST_TEST_EQ(atnow.time_since_epoch().count(), atnow2.time_since_epoch().count()); // fails because the pattern doesn't contains nanoseconds
BOOST_TEST_EQ(boost::chrono::duration_cast<seconds>(atnow2 - atnow).count(), 0);
}
return boost::report_errors();
}
| [
"viboes@b8fc166d-592f-0410-95f2-cb63ce0dd405"
] | viboes@b8fc166d-592f-0410-95f2-cb63ce0dd405 |
259cf4252f720cb472aebb0742c5543125daec49 | b8039275ab56563c5c17f1ac110fc774aead8f99 | /buffer/PoolByteBuf.h | 913128ca7199c2ee673a3ec85be9f87a8291d387 | [] | no_license | gzpscuter/DuoDuo | 0cf6cea1dec41878f2fabed5f4f97258a5a11c51 | 3070db559b9022173798c678716d2909551e9749 | refs/heads/master | 2023-03-18T06:14:47.666086 | 2021-03-10T03:35:37 | 2021-03-10T03:35:37 | 345,526,295 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,276 | h | //
// Created by gzp on 2021/2/13.
//
#ifndef LONGADDR_POOLBYTEBUF_H
#define LONGADDR_POOLBYTEBUF_H
#include <vector>
#include "commons.h"
#include "Recycler.h"
namespace buffer {
class PoolByteBufAllocator;
class PoolChunk;
class PoolThreadCache;
class PoolArena;
class PoolByteBufRecycler;
class PoolByteBuf {
void init0(PoolChunk *chunk, const char * buffer, long handle, int offset, int length, int maxLength,
PoolThreadCache *cache);
void setIndex0(int readerIndex, int writerIndex);
// Handle<PoolByteBuf *> *m_recyclerHandle;
PoolByteBufAllocator *m_allocator;
int m_maxCapacity;
// m_recycler是PoolByteBuf的回收站,第一次创建PoolByteBuf时需要New一片区域,后面释放该PoolByteBuf后会进入回收站,
// 当再次申请PoolByteBuf时会从该回收站直接返回,避免再次new一片新区域,减少new系统调用次数
static Recycler<PoolByteBuf> * m_recycler;
protected:
//m_chunk指向申请该PoolByteBuf的chunk,用于该PoolByteBuf的内存分配
PoolChunk *m_chunk;
long m_handle;
//m_memory指向m_chunk的m_memory成员,也就是m_chunk全部空间,16mb
char *m_memory;
//m_offset是m_tmpBuf在m_memory指针后面的距离,是PoolByteBuf可读写区域的最开始,writerIndex和readerIndex都是指m_tmpBuf为0时候后面的索引
int m_offset;
//m_length是写入m_tmpBuf的有效字节数
int m_length;
//m_maxLength是PoolByteBuf分配到的内存单元,也是PoolByteBuf(num)中num所申请的字节数
int m_maxLength;
PoolThreadCache *m_cache;
char *m_tmpBuf;
char *internalBuffer();
char * newInternalBuffer(const char *memory);
// void deallocate();
inline int idx(int index) {
return m_offset + index;
}
char *internalBuffer0(int index, int length, bool duplicate);
void reuse(int maxCapacity);
inline void setMaxCapacity(int maxCapacity);
void checkIndexBounds(const int& readerIdx, const int& writerIdx, const int& capacity);
void checkNewCapacity(int newCapacity);
void checkReadableBytes(PoolByteBuf * src, int length);
public:
int m_readerIndex;
int m_writerIndex;
explicit PoolByteBuf(int maxCapacity);
~PoolByteBuf() {
deallocate();
};
void init(PoolChunk *chunk, const char *buffer, long handle, int offset, int length, int maxLength,
PoolThreadCache *cache);
void initUnpool(PoolChunk *chunk, int length);
inline const int capacity() const{
return m_length;
}
inline PoolByteBufAllocator *alloc();
void recycle();
char *duplicateInternalBuffer(int index, int length);
char *internalBuffer(int index, int length);
inline int maxCapacity() {
return m_maxCapacity;
}
inline int length() {
return m_length;
}
inline char * memory() {
return m_memory;
}
inline long handle() {
return m_handle;
}
inline int offset() {
return m_offset;
}
inline int maxLength() {
return m_maxLength;
}
inline char * tmpBuf() {
return m_tmpBuf;
}
inline PoolChunk * chunk() {
return m_chunk;
}
inline PoolThreadCache * cache() {
return m_cache;
}
static PoolByteBuf * newInstance(int maxCapacity);
char _getByte(int index);
PoolByteBuf * setReaderIdx(const int& readerIdx);
inline const int readableBytes() const{
return m_writerIndex - m_readerIndex;
}
inline const int writableBytes() const {
return capacity() - m_writerIndex;
}
inline const char * peek() const {
return m_tmpBuf + m_readerIndex;
}
int maxWritableBytes();
void retrieve(size_t len);
void retrieveAll();
std::string retrieveAllAsString();
std::string retrieveAsString(size_t len);
// PoolByteBuf * writeBytes(const char* data, int srcIndex, int length);
PoolByteBuf * writeBytes(const char* data, int srcIndex, int length);
PoolByteBuf * writeBytes(const char* data, int length) ;
// PoolByteBuf * writeBytes(const PoolByteBuf* byteBuf);
// PoolByteBuf * writeBytes(PoolByteBuf * src, int length);
// PoolByteBuf * writeBytes(PoolByteBuf * src, int srcIndex, int length);
PoolByteBuf * ensureWritable(int minWritableBytes);
// void ensureWritable0(int minWritableBytes);
PoolByteBuf * capacity(int newCapacity);
PoolByteBuf * setBytes(int index, const char* src, int srcIndex, int length);
PoolByteBuf * clear();
void deallocate();
void trimIndicesToCapacity(int newCapacity);
};
class PoolByteBufRecycler : public Recycler<PoolByteBuf> {
PoolByteBuf * newObject() override;
};
}
#endif //LONGADDR_POOLBYTEBUF_H
| [
"2229849851@qq.com"
] | 2229849851@qq.com |
3eaf9ecea86faba3420001be775ccb2970a1fd4d | 1ab2048c5b89ae5705d7159a28dd4ce3a7ac9906 | /GaiaUDP/Endpoint.hpp | 585ba2268b5b2801776631a079e3e968523e75d3 | [
"MIT"
] | permissive | GaiaCommittee/GaiaUDP | cef6a96f26f83e23ae370cd46d9d7235c6db22df | a674de73a1eee43d0b5f18f0224c8c6584b201d5 | refs/heads/main | 2023-04-11T23:13:47.829986 | 2021-04-27T16:04:27 | 2021-04-27T16:04:27 | 349,892,389 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 530 | hpp | #pragma once
#include <boost/asio.hpp>
namespace Gaia::UDP
{
/// Represents the information of a socket, contains ip, port and other information.
using Endpoint = boost::asio::ip::udp::endpoint;
/**
* @brief Make an endpoint object according the given ip address and port.
* @param ip Text of IP. Be cautious that hostname such as 'localhost' is not allowed here.
* @param port Port number.
* @return Endpoint object of the given IP and port.
*/
Endpoint MakeEndpoint(const std::string& ip, unsigned int port);
}
| [
"rumble.vecent@outlook.com"
] | rumble.vecent@outlook.com |
0de2c12f46055014c58590b7e497e91db0372b9b | 4fd1ba6e06f3526555707ead7315f387b5e42b80 | /include/stream.hpp | 0465896dea201e9cc0a4b3419d73cb3ae5e1df76 | [
"BSD-2-Clause"
] | permissive | GenomicsNX/variantstore | b25125736291073a0b9853e7d53b7174bdccdba0 | 138419f09b1c45292c3a76a3ca1558ff3cfd3eac | refs/heads/master | 2023-06-17T20:54:34.942454 | 2021-07-09T16:28:07 | 2021-07-09T16:28:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,814 | hpp | #ifndef STREAM_H
#define STREAM_H
// from http://www.mail-archive.com/protobuf@googlegroups.com/msg03417.html
#include <cassert>
#include <iostream>
#include <fstream>
#include <functional>
#include <vector>
#include <list>
#include "google/protobuf/stubs/common.h"
#include "google/protobuf/io/zero_copy_stream.h"
#include "google/protobuf/io/zero_copy_stream_impl.h"
#include "google/protobuf/io/gzip_stream.h"
#include "google/protobuf/io/coded_stream.h"
namespace stream {
// write objects
// count should be equal to the number of objects to write
// but if it is 0, it is not written
// if not all objects are written, return false, otherwise true
template <typename T>
bool write(std::ostream& out, uint64_t id, std::function<T(uint64_t)>& lambda) {
::google::protobuf::io::ZeroCopyOutputStream *raw_out =
new ::google::protobuf::io::OstreamOutputStream(&out);
::google::protobuf::io::GzipOutputStream *gzip_out =
new ::google::protobuf::io::GzipOutputStream(raw_out);
::google::protobuf::io::CodedOutputStream *coded_out =
new ::google::protobuf::io::CodedOutputStream(gzip_out);
uint64_t count = 1;
// prefix the chunk with the number of objects
coded_out->WriteVarint64(count);
std::string s;
uint64_t written = 0;
for (uint64_t n = 0; n < count; ++n, ++written) {
lambda(id).SerializeToString(&s);
// and prefix each object with its size
coded_out->WriteVarint32(s.size());
coded_out->WriteRaw(s.data(), s.size());
}
delete coded_out;
delete gzip_out;
delete raw_out;
return !count || written == count;
}
template <typename T>
bool write_buffered(std::ostream& out, std::vector<T>& buffer, uint64_t buffer_limit) {
bool wrote = false;
if (buffer.size() >= buffer_limit) {
std::function<T(uint64_t)> lambda = [&buffer](uint64_t n) { return buffer.at(n); };
#pragma omp critical (stream_out)
wrote = write(out, buffer.size(), lambda);
buffer.clear();
}
return wrote;
}
// deserialize the input stream into the objects
// count containts the count read
// takes a callback function to be called on the objects
template <typename T>
bool for_each(std::istream& in, uint32_t index,
std::function<void(T&, uint32_t)>& lambda,
std::function<void(uint64_t)>& handle_count) {
::google::protobuf::io::ZeroCopyInputStream *raw_in =
new ::google::protobuf::io::IstreamInputStream(&in);
::google::protobuf::io::GzipInputStream *gzip_in =
new ::google::protobuf::io::GzipInputStream(raw_in);
::google::protobuf::io::CodedInputStream *coded_in =
new ::google::protobuf::io::CodedInputStream(gzip_in);
uint64_t count;
coded_in->ReadVarint64((::google::protobuf::uint64*) &count);
// this loop handles a chunked file with many pieces
// such as we might write in a multithreaded process
if (!count) return !count;
do {
handle_count(count);
std::string s;
for (uint64_t i = 0; i < count; ++i) {
uint32_t msgSize = 0;
delete coded_in;
coded_in = new ::google::protobuf::io::CodedInputStream(gzip_in);
// the messages are prefixed by their size
coded_in->ReadVarint32(&msgSize);
if ((msgSize > 0) &&
(coded_in->ReadString(&s, msgSize))) {
T object;
object.ParseFromString(s);
lambda(object, index);
}
}
} while (coded_in->ReadVarint64((::google::protobuf::uint64*) &count));
delete coded_in;
delete gzip_in;
delete raw_in;
return !count;
}
template <typename T>
bool for_each(std::istream& in, uint32_t index,
std::function<void(T&, uint32_t)>& lambda) {
std::function<void(uint64_t)> noop = [](uint64_t) { };
return for_each(in, index, lambda, noop);
}
template <typename T>
bool for_each_parallel(std::istream& in,
std::function<void(T&)>& lambda,
std::function<void(uint64_t)>& handle_count) {
::google::protobuf::io::ZeroCopyInputStream *raw_in =
new ::google::protobuf::io::IstreamInputStream(&in);
::google::protobuf::io::GzipInputStream *gzip_in =
new ::google::protobuf::io::GzipInputStream(raw_in);
::google::protobuf::io::CodedInputStream *coded_in =
new ::google::protobuf::io::CodedInputStream(gzip_in);
uint64_t count;
bool more_input = coded_in->ReadVarint64((::google::protobuf::uint64*) &count);
bool more_objects = false;
// this loop handles a chunked file with many pieces
// such as we might write in a multithreaded process
std::list<T> objects;
int64_t object_count = 0;
int64_t read_threshold = 5000;
if (!count) return !count;
#pragma omp parallel shared(more_input, more_objects, objects, count, in, lambda, handle_count, raw_in, gzip_in, coded_in)
do {
bool has_object = false;
T object;
#pragma omp critical (objects)
{
if (!objects.empty()) {
object = objects.back();
objects.pop_back();
--object_count;
has_object = true;
}
}
if (has_object) {
lambda(object);
}
#pragma omp master
{
while (more_input && object_count < read_threshold) {
handle_count(count);
std::string s;
for (uint64_t i = 0; i < count; ++i) {
uint32_t msgSize = 0;
// the messages are prefixed by their size
delete coded_in;
coded_in = new ::google::protobuf::io::CodedInputStream(gzip_in);
coded_in->ReadVarint32(&msgSize);
if ((msgSize > 0) &&
(coded_in->ReadString(&s, msgSize))) {
T object;
object.ParseFromString(s);
#pragma omp critical (objects)
{
objects.push_front(object);
++object_count;
}
}
}
more_input = coded_in->ReadVarint64((::google::protobuf::uint64*) &count);
}
}
#pragma omp critical (objects)
more_objects = (object_count > 0);
} while (more_input || more_objects);
delete coded_in;
delete gzip_in;
delete raw_in;
return !count;
}
template <typename T>
bool for_each_parallel(std::istream& in,
std::function<void(T&)>& lambda) {
std::function<void(uint64_t)> noop = [](uint64_t) { };
return for_each_parallel(in, lambda, noop);
}
}
#endif
| [
"prashant.prashn@gmail.com"
] | prashant.prashn@gmail.com |
b171a392504e73c0ac48e2dca505da3490686113 | 32bbe238d3e561e22a219403e645603f9e3ceafd | /DMOJ/dmpg18s5.cpp | 4fff1f4b005d82e37f9b21c5b97d2c741e2de056 | [] | no_license | KennethRuan/competitive-programming | 02fae63934b943051d7d400d901af2c73b8f5622 | be880387bdf2a14444d9d1520d7ab2dc866b5220 | refs/heads/master | 2021-09-19T16:13:18.904749 | 2021-08-14T02:43:46 | 2021-08-14T02:43:46 | 237,291,590 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,046 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
const int mn = 2e5+5;
const int sqr = 448;
int n, q, arr[mn], blk[sqr][mn], blksz = 1;
int main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n >> q;
blksz = sqrt(n);
for (int i = 0; i < n; i++){
cin >> arr[i];
int blkidx = i / blksz;
for (int j = 1; j < sqrt(arr[i]); j++){
if (arr[i] % j == 0){
blk[blkidx][j]++;
blk[blkidx][arr[i]/j]++;
}
}
if (pow((int) sqrt(arr[i]),2) == arr[i]){
blk[blkidx][(int) sqrt(arr[i])]++;
}
}
for (int i = 0; i < q; i++){
int op;
cin >> op;
if (op == 1){
int l,r,x, ans = 0;
cin >> l >> r >> x;
l--;r--;
int lblk = l/blksz, rblk = r/blksz;
for (int j = lblk + 1; j < rblk; j++){
ans += blk[j][x];
}
for (int j = (lblk+1)*blksz-1; j >= l; j--){
if (arr[j] % x == 0) ans++;
}
for (int j = rblk*blksz; j <= r; j++){
if (arr[j] % x == 0) ans++;
}
cout << ans << "\n";
}
else{
int u, v;
cin >> u >> v;
u--;
int ublk = u / blksz;
for (int j = 1; j < sqrt(arr[u]); j++){
if (arr[u] % j == 0){
blk[ublk][j]--;
blk[ublk][arr[u]/j]--;
}
}
if (pow((int) sqrt(arr[u]),2) == arr[u]){
blk[ublk][(int) sqrt(arr[u])]--;
}
arr[u] = v;
for (int j = 1; j < sqrt(v); j++){
if (v % j == 0){
blk[ublk][j]++;
blk[ublk][v/j]++;
}
}
if (pow((int) sqrt(arr[u]),2) == arr[u]){
blk[ublk][(int) sqrt(arr[u])]++;
}
}
}
} | [
"kennethjruan@gmail.com"
] | kennethjruan@gmail.com |
e4cfbd4825a423ebb4d635a1810a835acfa01a4a | ca71a8028ae57cac5e8f9b10fa0db3333efec086 | /ACC sharedmemory exposer/SDK/ACC_WDG_SetupPresetButton_functions.cpp | 254b5675798848b855188fcb437c6e4d807819e7 | [] | no_license | Sparten/ACC | 42d08b17854329c245d9543e5184888d119251c1 | 3ee1e5c032dcd508e5913539feb575f42d74365e | refs/heads/master | 2020-03-28T20:47:48.649504 | 2018-10-19T20:47:39 | 2018-10-19T20:47:39 | 149,102,523 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,409 | cpp | // Assetto Corsa Competizione (0.1.0) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ACC_WDG_SetupPresetButton_parameters.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
// Function WDG_SetupPresetButton.WDG_SetupPresetButton_C.BP_MouseLeave
// (Event, Public, BlueprintEvent)
void UWDG_SetupPresetButton_C::BP_MouseLeave()
{
static auto fn = UObject::FindObject<UFunction>("Function WDG_SetupPresetButton.WDG_SetupPresetButton_C.BP_MouseLeave");
UWDG_SetupPresetButton_C_BP_MouseLeave_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function WDG_SetupPresetButton.WDG_SetupPresetButton_C.BP_MouseOver
// (Event, Public, BlueprintEvent)
void UWDG_SetupPresetButton_C::BP_MouseOver()
{
static auto fn = UObject::FindObject<UFunction>("Function WDG_SetupPresetButton.WDG_SetupPresetButton_C.BP_MouseOver");
UWDG_SetupPresetButton_C_BP_MouseOver_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function WDG_SetupPresetButton.WDG_SetupPresetButton_C.Construct
// (BlueprintCosmetic, Event, Public, BlueprintEvent)
void UWDG_SetupPresetButton_C::Construct()
{
static auto fn = UObject::FindObject<UFunction>("Function WDG_SetupPresetButton.WDG_SetupPresetButton_C.Construct");
UWDG_SetupPresetButton_C_Construct_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function WDG_SetupPresetButton.WDG_SetupPresetButton_C.ExecuteUbergraph_WDG_SetupPresetButton
// ()
// Parameters:
// int EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData)
void UWDG_SetupPresetButton_C::ExecuteUbergraph_WDG_SetupPresetButton(int EntryPoint)
{
static auto fn = UObject::FindObject<UFunction>("Function WDG_SetupPresetButton.WDG_SetupPresetButton_C.ExecuteUbergraph_WDG_SetupPresetButton");
UWDG_SetupPresetButton_C_ExecuteUbergraph_WDG_SetupPresetButton_Params params;
params.EntryPoint = EntryPoint;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"sportcorp@hotmail.com"
] | sportcorp@hotmail.com |
37138581a30627e9d57ee860fba76054673f0c2c | de5b5133c69111fec0f4d8974d7e018e4d8867eb | /RecoCTPPS/TotemRPLocal/interface/TotemTimingTrackRecognition.h | cdd1ae36f740af6cddca4f7d1fefa68a27f80ab8 | [
"Apache-2.0"
] | permissive | simonecid/cmssw | 86396e31d41a003a179690f8c322e82e250e33b2 | 9889a6a7ef69c9391efea8a2156c405c1148b81d | refs/heads/master | 2021-08-15T23:25:02.901905 | 2019-03-18T21:52:26 | 2019-03-18T21:52:26 | 176,462,898 | 0 | 1 | Apache-2.0 | 2019-03-19T08:30:28 | 2019-03-19T08:30:24 | null | UTF-8 | C++ | false | false | 1,472 | h | /****************************************************************************
*
* This is a part of CTPPS offline software.
* Authors:
* Laurent Forthomme (laurent.forthomme@cern.ch)
* Nicola Minafra (nicola.minafra@cern.ch)
* Mateusz Szpyrka (mateusz.szpyrka@cern.ch)
*
****************************************************************************/
#ifndef RecoCTPPS_TotemRPLocal_TotemTimingTrackRecognition
#define RecoCTPPS_TotemRPLocal_TotemTimingTrackRecognition
#include "DataFormats/Common/interface/DetSet.h"
#include "DataFormats/CTPPSReco/interface/TotemTimingRecHit.h"
#include "DataFormats/CTPPSReco/interface/TotemTimingLocalTrack.h"
#include "RecoCTPPS/TotemRPLocal/interface/CTPPSTimingTrackRecognition.h"
/**
* Class intended to perform general CTPPS timing detectors track recognition,
* as well as construction of specialized classes (for now CTPPSDiamond and TotemTiming local tracks).
**/
class TotemTimingTrackRecognition : public CTPPSTimingTrackRecognition<TotemTimingLocalTrack, TotemTimingRecHit>
{
public:
TotemTimingTrackRecognition( const edm::ParameterSet& iConfig );
// Adds new hit to the set from which the tracks are reconstructed.
void addHit( const TotemTimingRecHit& recHit ) override;
/// Produces a collection of tracks for the current station, given its hits collection
int produceTracks( edm::DetSet<TotemTimingLocalTrack>& tracks ) override;
private:
float tolerance_;
};
#endif
| [
"laurent.forthomme@cern.ch"
] | laurent.forthomme@cern.ch |
52efce35035ecd63e424833bd24dc903baed1756 | 7df60cff2293ef347835be310ff94bb4339c8507 | /Day 10/ex00/Sorcerer.hpp | 9bcfb9e8d5dea8b0c52547caefc96ec4cf6a1ffc | [] | no_license | halil28450/PoolCPP | e9ca42e2adf8a3e2333e2519a33b4cce1a5d92fc | b74387e9cf7bdf853dca86be984bb196f2e0558a | refs/heads/main | 2023-03-18T19:04:33.014416 | 2021-02-15T12:14:57 | 2021-02-15T12:14:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 675 | hpp | /*
** EPITECH PROJECT, 2021
** B-CPP-300-STG-3-1-CPPD10-arthur.robine
** File description:
** Exercice 00
*/
#ifndef B_CPP_300_STG_3_1_CPPD10_ARTHUR_ROBINE_SORCERER_HPP
#define B_CPP_300_STG_3_1_CPPD10_ARTHUR_ROBINE_SORCERER_HPP
#include <iostream>
#include "Victim.hpp"
class Sorcerer {
public:
Sorcerer(std::string name, std::string title);
~Sorcerer();
std::string getName() const;
std::string getTitle() const;
void polymorph(const Victim &victim) const;
private:
std::string _name;
std::string _title;
};
std::ostream &operator<<(std::ostream &out, const Sorcerer &sorcerer);
#endif //B_CPP_300_STG_3_1_CPPD10_ARTHUR_ROBINE_SORCERER_HPP
| [
"arthur.robine@epitech.eu"
] | arthur.robine@epitech.eu |
f78e351e9fc0b0b03096af613a23fac723b83720 | 30ca78f8abdb79d75bea2bd9b0502ae85d92d16f | /Data_structures_projects/tp1/src/tp1.h | 3ff62265ab7d30eade5181aed6f53f45d0aa8634 | [] | no_license | henrany/BCC | 80d2c98676b1fe2555cd8849073b52bce695b875 | 44119d8cf26f9d408985df2063615c9b2e4c7770 | refs/heads/master | 2022-05-10T06:15:15.667037 | 2022-05-04T22:48:16 | 2022-05-04T22:48:16 | 213,296,081 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,174 | h | #ifndef TP1_H
#define TP1_H
#include<iostream>
#include<string>
#include<iomanip>
#include<cstdlib>
#include<cmath>
//struct node for the data, next and count
struct Node{
Node *next;
int data;
int count;
};
class Rick{
private:
Node *_head;
Node *_tail;
int _count;
int _container;
public:
Rick();
Rick(int container,int count);
Node *get_head();//getting the head of th list
Node *get_tail();//getting the tail of the list
int get_container();//the containers to be used
int get_count(); // getting the total number of insertion
void set_container(int container);//setting the container
void set_head(Node* head);
void set_tail(Node* tail);
void insert_container(int container);//funciton to create a new list
void insert_new_container(int container, int count); //the function for the insertion of containers
void remove_container(int container); //funciton for the removal of a container from the list
int operations(int container); // function for th minimum operation
void print();//function to print the list
~Rick();//destructor to free the memory
};
#endif//TP1_H | [
"tmkhenry@gmail.com"
] | tmkhenry@gmail.com |
ae544d700a66581db9b0721a3386d78ed0d47c7e | 794aa11356f60837429d371dcbce9de4680b713c | /Source/Core/LibIpc/Ipc.h | aa3519c24bc607ea4d36ec71da30d8b276491ab3 | [
"MIT"
] | permissive | dzik143/tegenaria | bbe7d83f85229671d8e80001321f4aff23518583 | a6c138633ab14232a2229d7498875d9d869d25a9 | refs/heads/main | 2023-01-02T09:57:50.399630 | 2020-10-26T04:30:39 | 2020-10-26T04:30:39 | 305,517,473 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,210 | h | /******************************************************************************/
/* */
/* Copyright (c) 2010, 2014 Sylwester Wysocki <sw143@wp.pl> */
/* */
/* 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. */
/* */
/******************************************************************************/
#ifndef Tegenaria_Core_Ipc_H
#define Tegenaria_Core_Ipc_H
#ifdef WIN32
# include <io.h>
# include <windows.h>
#endif
#ifdef __linux__
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#endif
#include <stdarg.h>
#include <Tegenaria/Thread.h>
namespace Tegenaria
{
//
// Defines.
//
#define IPC_DEFAULT_TIMEOUT 1000
#define IPC_LEN_MAX (1024 * 256)
//
// Typedef.
//
typedef int (*IpcWorkerProto)(int fd, void *ctx);
struct IpcJob
{
const char *pipeName_;
IpcWorkerProto callback_;
int ready_;
void *ctx_;
};
//
// Exported functions.
//
int IpcServerLoop(const char *name, IpcWorkerProto callback,
void *ctx = NULL, int *ready = NULL);
int IpcServerCreate(const char *name, IpcWorkerProto callback, void *ctx = NULL);
int IpcServerKill(const char *name);
int IpcServerMarkLastRequest(const char *name);
int IpcOpen(const char *name, int timeout = IPC_DEFAULT_TIMEOUT);
int IpcRequest(const char *pipeName, int *serverCode,
char *serverMsg, int serverMsgSize, const char *fmt, ...);
int IpcSendAnswer(int fd, int code, const char *msg);
} /* namespace Tegenaria */
#endif /* Tegenaria_Core_Ipc_H */
| [
"sw143@wp.pl"
] | sw143@wp.pl |
f467c38cbbb7e421c28b7fc0b15fe0edbc4bcb66 | 827405b8f9a56632db9f78ea6709efb137738b9d | /CodingWebsites/CodeForces/Practice/CF 5/486B.cpp | c8f3abbbab207d630d10a514bd798d46653dbbe9 | [] | no_license | MingzhenY/code-warehouse | 2ae037a671f952201cf9ca13992e58718d11a704 | d87f0baa6529f76e41a448b8056e1f7ca0ab3fe7 | refs/heads/master | 2020-03-17T14:59:30.425939 | 2019-02-10T17:12:36 | 2019-02-10T17:12:36 | 133,694,119 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,096 | cpp | #include <iostream>
#include <cstdio>
#include <cmath>
using namespace std;
bool A[101][101];
bool B[101][101];
int n,m;
bool H(int k){bool ANS=0;for(int j=0;j<n;++j)ANS=ANS||A[k][j];return ANS;}
bool L(int k){bool ANS=0;for(int i=0;i<m;++i) ANS=ANS||A[i][k];return ANS;}
void setH(int k){for(int j=0;j<n;++j) A[k][j]=false;}
void setL(int k){for(int i=0;i<m;++i) A[i][k]=false;}
int main(void)
{
freopen("486B.txt","r",stdin);
scanf("%d%d",&m,&n);
for(int i=0;i<m;++i)
for(int j=0;j<n;++j)
A[i][j]=true;
for(int i=0;i<m;++i){
for(int j=0;j<n;++j){
scanf("%d",&B[i][j]);
if(!B[i][j]){setH(i);setL(j);}
}
}
bool T=1;
for(int i=0;i<m;++i){
for(int j=0;j<n;++j){
//printf("(%d,%d): H(i)||L(j)=%d B[i][j]=%d\n",i,j,H(i)||L(j),B[i][j]);
if((H(i)||L(j))!=B[i][j]) T=false;
}
}
if(T){
printf("YES\n");
for(int i=0;i<m;++i){
for(int j=0;j<n;++j){
printf("%d",A[i][j]);
if(j==n-1) printf("\n");
else printf(" ");
}
}
}
else printf("NO\n");
return 0;
}
| [
"mingzhenyan@yahoo.com"
] | mingzhenyan@yahoo.com |
1272dbf31798f72c690d10973c0a112be6a9df6c | da1b2b1a92fca77e4c1ed91af8019e5c5672393e | /include/Joints.hpp | aa7e716d33dc0216d716fb2187cc344bea0ddc4e | [
"BSD-3-Clause"
] | permissive | cyhap/ENPM808X_Midterm | d1ec3b37472e958c36d94976e8b2935a54573710 | 2db6b9440617ce93af27840afb7de902a9488d0c | refs/heads/master | 2020-08-09T11:55:49.123613 | 2019-10-14T20:52:36 | 2019-10-14T20:52:36 | 214,081,862 | 0 | 0 | BSD-3-Clause | 2019-10-14T23:02:36 | 2019-10-10T03:52:52 | C++ | UTF-8 | C++ | false | false | 4,084 | hpp | /* Copyright (c) 2019, Acme Robotics, Ethan Quist, Corbyn Yhap
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the <organization> nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* @file Joints.hpp
*
* @brief Interface/Abstract Joint Class (Defines required functions)
*
* @author Corbyn Yhap (Driver)
*
* @copyright Acme Robotics, Ethan Quist, Corbyn Yhap
*/
#pragma once
#include <memory>
class IJoint {
public:
/**
* @brief Destructor for Joint Interface
* @param None.
* @return None
*/
virtual ~IJoint();
/**
* @brief Method to retrieve current joint configuration
* @param None.
* @return double
*/
virtual double getConfig() = 0;
/**
* @brief Method to set current joint configuration
* @param double the joint configuration value
* @return None.
*/
virtual void setConfig(double) = 0;
};
// Typedef the pointer for easy external polymorphic use.
typedef std::shared_ptr<IJoint> JointPtr;
class PrismaticJoint : public IJoint {
public:
/**
* @brief Prismatic Joint Constructor (Length Initialized to 0)
* @param None
* @return None.
*/
PrismaticJoint();
/**
* @brief Alternate Prismatic Joint Constructor
* @param double Sets the length of the Prismatic joint
* @return None.
*/
PrismaticJoint(double);
/**
* @brief Prismatic Joint Destructor
* @param None
* @return None.
*/
virtual ~PrismaticJoint();
/**
* @brief Method to retrieve Prismatic Joint Length (Meters)
* @param None.
* @return double Current Prismatic Joint length.
*/
double getConfig();
/**
* @brief Method to set current joint configuration
* @param double The current length of the Prismatic joint. (Meters)
* @return None.
*/
void setConfig(double);
private:
double length;
};
class RevoluteJoint : public IJoint {
public:
/**
* @brief Revolute Joint Constructor (Angle Initialized to 0)
* @param None
* @return None.
*/
RevoluteJoint();
/**
* @brief Alternate Prismatic Joint Constructor
* @param double Sets the angle of the Revolute joint
* @return None.
*/
RevoluteJoint(double);
/**
* @brief Revolute Joint Destructor
* @param None
* @return None.
*/
virtual ~RevoluteJoint();
/**
* @brief Method to retrieve Revolute Joint Angle (Degrees)
* @param None.
* @return double Current Revolute Joint angle.
*/
double getConfig();
/**
* @brief Method to set current joint configuration
* @param double The current angle of the Revolute joint. (Degrees)
* @return None.
*/
void setConfig(double);
private:
double angle;
};
| [
"cyhap12@gmail.com"
] | cyhap12@gmail.com |
a47e0ae8356b52e0917c636c622e49c4838813b0 | cf0cbb4a18c05dd097e99566c4733fef0137fe0c | /corelib/src/SensorData.cpp | c2fede2bc0b4449e69f6628c6f23b4a9215c18cd | [] | no_license | qinhuaping/rtabmap | ec45407cf4f2d56187bd1825a8854570ebb800c0 | 44e51a948cecb4e9e4c8b09f318196e5fe64de6a | refs/heads/master | 2021-01-15T12:49:33.629118 | 2017-08-09T03:05:50 | 2017-08-09T03:05:50 | 99,658,749 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,972 | cpp | /*
Copyright (c) 2010-2016, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the Universite de Sherbrooke nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "rtabmap/core/SensorData.h"
#include "rtabmap/core/Compression.h"
#include "rtabmap/utilite/ULogger.h"
#include <rtabmap/utilite/UMath.h>
#include <rtabmap/utilite/UConversion.h>
#include <pcl/io/pcd_io.h>
#include <pcl/io/ply_io.h>
#include <pcl/common/transforms.h>
namespace rtabmap
{
// empty constructor
SensorData::SensorData() :
_id(0),
_stamp(0.0),
_cellSize(0.0f)
{
}
// Appearance-only constructor
SensorData::SensorData(
const cv::Mat & image,
int id,
double stamp,
const cv::Mat & userData) :
_id(id),
_stamp(stamp),
_cellSize(0.0f)
{
if(image.rows == 1)
{
UASSERT(image.type() == CV_8UC1); // Bytes
_imageCompressed = image;
}
else if(!image.empty())
{
UASSERT(image.type() == CV_8UC1 || // Mono
image.type() == CV_8UC3); // RGB
_imageRaw = image;
}
if(userData.type() == CV_8UC1 && userData.rows == 1 && userData.cols > int(3*sizeof(int))) // Bytes
{
_userDataCompressed = userData; // assume compressed
}
else
{
_userDataRaw = userData;
}
}
// Mono constructor
SensorData::SensorData(
const cv::Mat & image,
const CameraModel & cameraModel,
int id,
double stamp,
const cv::Mat & userData) :
_id(id),
_stamp(stamp),
_cameraModels(std::vector<CameraModel>(1, cameraModel)),
_cellSize(0.0f)
{
if(image.rows == 1)
{
UASSERT(image.type() == CV_8UC1); // Bytes
_imageCompressed = image;
}
else if(!image.empty())
{
UASSERT(image.type() == CV_8UC1 || // Mono
image.type() == CV_8UC3); // RGB
_imageRaw = image;
}
if(userData.type() == CV_8UC1 && userData.rows == 1 && userData.cols > int(3*sizeof(int))) // Bytes
{
_userDataCompressed = userData; // assume compressed
}
else
{
_userDataRaw = userData;
}
}
// RGB-D constructor
SensorData::SensorData(
const cv::Mat & rgb,
const cv::Mat & depth,
const CameraModel & cameraModel,
int id,
double stamp,
const cv::Mat & userData) :
_id(id),
_stamp(stamp),
_cameraModels(std::vector<CameraModel>(1, cameraModel)),
_cellSize(0.0f)
{
if(rgb.rows == 1)
{
UASSERT(rgb.type() == CV_8UC1); // Bytes
_imageCompressed = rgb;
}
else if(!rgb.empty())
{
UASSERT(rgb.type() == CV_8UC1 || // Mono
rgb.type() == CV_8UC3); // RGB
_imageRaw = rgb;
}
if(depth.rows == 1)
{
UASSERT(depth.type() == CV_8UC1); // Bytes
_depthOrRightCompressed = depth;
}
else if(!depth.empty())
{
UASSERT(depth.type() == CV_32FC1 || // Depth in meter
depth.type() == CV_16UC1); // Depth in millimetre
_depthOrRightRaw = depth;
}
if(userData.type() == CV_8UC1 && userData.rows == 1 && userData.cols > int(3*sizeof(int))) // Bytes
{
_userDataCompressed = userData; // assume compressed
}
else
{
_userDataRaw = userData;
}
}
//qhp add pcl constructor + laser scan
SensorData::SensorData(
const cv::Mat & laserScan,
const LaserScanInfo & laserScanInfo,
const pcl::PointCloud<pcl::PointXYZRGB> & cloud,
const CameraModel & cameraModel,
int id,
double stamp,
const cv::Mat & userData) :
_id(id),
_stamp(stamp),
_cameraModels(std::vector<CameraModel>(1, cameraModel)),
_laserScanInfo(laserScanInfo),
_cellSize(0.0f)
{
if(laserScan.type() == CV_32FC2 || laserScan.type() == CV_32FC3 || laserScan.type() == CV_32FC(4) || laserScan.type() == CV_32FC(6))
{
_laserScanRaw = laserScan;
}
else if(!laserScan.empty())
{
UASSERT(laserScan.type() == CV_8UC1); // Bytes
_laserScanCompressed = laserScan;
}
if(userData.type() == CV_8UC1 && userData.rows == 1 && userData.cols > int(3*sizeof(int))) // Bytes
{
_userDataCompressed = userData; // assume compressed
}
else
{
_userDataRaw = userData;
}
if(cloud.size())
{
_cloudRaw=cloud;
}
}
// RGB-D constructor + laser scan
SensorData::SensorData(
const cv::Mat & laserScan,
const LaserScanInfo & laserScanInfo,
const cv::Mat & rgb,
const cv::Mat & depth,
const CameraModel & cameraModel,
int id,
double stamp,
const cv::Mat & userData) :
_id(id),
_stamp(stamp),
_cameraModels(std::vector<CameraModel>(1, cameraModel)),
_laserScanInfo(laserScanInfo),
_cellSize(0.0f)
{
if(rgb.rows == 1)
{
UASSERT(rgb.type() == CV_8UC1); // Bytes
_imageCompressed = rgb;
}
else if(!rgb.empty())
{
UASSERT(rgb.type() == CV_8UC1 || // Mono
rgb.type() == CV_8UC3); // RGB
_imageRaw = rgb;
}
if(depth.rows == 1)
{
UASSERT(depth.type() == CV_8UC1); // Bytes
_depthOrRightCompressed = depth;
}
else if(!depth.empty())
{
UASSERT(depth.type() == CV_32FC1 || // Depth in meter
depth.type() == CV_16UC1); // Depth in millimetre
_depthOrRightRaw = depth;
}
if(laserScan.type() == CV_32FC2 || laserScan.type() == CV_32FC3 || laserScan.type() == CV_32FC(4) || laserScan.type() == CV_32FC(6))
{
_laserScanRaw = laserScan;
}
else if(!laserScan.empty())
{
UASSERT(laserScan.type() == CV_8UC1); // Bytes
_laserScanCompressed = laserScan;
}
if(userData.type() == CV_8UC1 && userData.rows == 1 && userData.cols > int(3*sizeof(int))) // Bytes
{
_userDataCompressed = userData; // assume compressed
}
else
{
_userDataRaw = userData;
}
}
// Multi-cameras RGB-D constructor
SensorData::SensorData(
const cv::Mat & rgb,
const cv::Mat & depth,
const std::vector<CameraModel> & cameraModels,
int id,
double stamp,
const cv::Mat & userData) :
_id(id),
_stamp(stamp),
_cameraModels(cameraModels),
_cellSize(0.0f)
{
if(rgb.rows == 1)
{
UASSERT(rgb.type() == CV_8UC1); // Bytes
_imageCompressed = rgb;
}
else if(!rgb.empty())
{
UASSERT(rgb.type() == CV_8UC1 || // Mono
rgb.type() == CV_8UC3); // RGB
_imageRaw = rgb;
}
if(depth.rows == 1)
{
UASSERT(depth.type() == CV_8UC1); // Bytes
_depthOrRightCompressed = depth;
}
else if(!depth.empty())
{
UASSERT(depth.type() == CV_32FC1 || // Depth in meter
depth.type() == CV_16UC1); // Depth in millimetre
_depthOrRightRaw = depth;
}
if(userData.type() == CV_8UC1 && userData.rows == 1 && userData.cols > int(3*sizeof(int))) // Bytes
{
_userDataCompressed = userData; // assume compressed
}
else
{
_userDataRaw = userData;
}
}
// Multi-cameras RGB-D constructor + laser scan
SensorData::SensorData(
const cv::Mat & laserScan,
const LaserScanInfo & laserScanInfo,
const cv::Mat & rgb,
const cv::Mat & depth,
const std::vector<CameraModel> & cameraModels,
int id,
double stamp,
const cv::Mat & userData) :
_id(id),
_stamp(stamp),
_cameraModels(cameraModels),
_laserScanInfo(laserScanInfo),
_cellSize(0.0f)
{
if(rgb.rows == 1)
{
UASSERT(rgb.type() == CV_8UC1); // Bytes
_imageCompressed = rgb;
}
else if(!rgb.empty())
{
UASSERT(rgb.type() == CV_8UC1 || // Mono
rgb.type() == CV_8UC3); // RGB
_imageRaw = rgb;
}
if(depth.rows == 1)
{
UASSERT(depth.type() == CV_8UC1); // Bytes
_depthOrRightCompressed = depth;
}
else if(!depth.empty())
{
UASSERT(depth.type() == CV_32FC1 || // Depth in meter
depth.type() == CV_16UC1); // Depth in millimetre
_depthOrRightRaw = depth;
}
if(laserScan.type() == CV_32FC2 || laserScan.type() == CV_32FC3 || laserScan.type() == CV_32FC(4) || laserScan.type() == CV_32FC(6))
{
_laserScanRaw = laserScan;
}
else if(!laserScan.empty())
{
UASSERT(laserScan.type() == CV_8UC1); // Bytes
_laserScanCompressed = laserScan;
}
if(userData.type() == CV_8UC1 && userData.rows == 1 && userData.cols > int(3*sizeof(int))) // Bytes
{
_userDataCompressed = userData; // assume compressed
}
else
{
_userDataRaw = userData;
}
}
// Stereo constructor
SensorData::SensorData(
const cv::Mat & left,
const cv::Mat & right,
const StereoCameraModel & cameraModel,
int id,
double stamp,
const cv::Mat & userData):
_id(id),
_stamp(stamp),
_stereoCameraModel(cameraModel),
_cellSize(0.0f)
{
if(left.rows == 1)
{
UASSERT(left.type() == CV_8UC1); // Bytes
_imageCompressed = left;
}
else if(!left.empty())
{
UASSERT(left.type() == CV_8UC1 || // Mono
left.type() == CV_8UC3 || // RGB
left.type() == CV_16UC1); // IR
_imageRaw = left;
}
if(right.rows == 1)
{
UASSERT(right.type() == CV_8UC1); // Bytes
_depthOrRightCompressed = right;
}
else if(!right.empty())
{
UASSERT(right.type() == CV_8UC1 || // Mono
right.type() == CV_16UC1); // IR
_depthOrRightRaw = right;
}
if(userData.type() == CV_8UC1 && userData.rows == 1 && userData.cols > int(3*sizeof(int))) // Bytes
{
_userDataCompressed = userData; // assume compressed
}
else
{
_userDataRaw = userData;
}
}
// Stereo constructor + 2d laser scan
SensorData::SensorData(
const cv::Mat & laserScan,
const LaserScanInfo & laserScanInfo,
const cv::Mat & left,
const cv::Mat & right,
const StereoCameraModel & cameraModel,
int id,
double stamp,
const cv::Mat & userData) :
_id(id),
_stamp(stamp),
_stereoCameraModel(cameraModel),
_laserScanInfo(laserScanInfo),
_cellSize(0.0f)
{
if(left.rows == 1)
{
UASSERT(left.type() == CV_8UC1); // Bytes
_imageCompressed = left;
}
else if(!left.empty())
{
UASSERT(left.type() == CV_8UC1 || // Mono
left.type() == CV_8UC3); // RGB
_imageRaw = left;
}
if(right.rows == 1)
{
UASSERT(right.type() == CV_8UC1); // Bytes
_depthOrRightCompressed = right;
}
else if(!right.empty())
{
UASSERT(right.type() == CV_8UC1); // Mono
_depthOrRightRaw = right;
}
if(laserScan.type() == CV_32FC2 || laserScan.type() == CV_32FC3 || laserScan.type() == CV_32FC(4) || laserScan.type() == CV_32FC(6))
{
_laserScanRaw = laserScan;
}
else if(!laserScan.empty())
{
UASSERT(laserScan.type() == CV_8UC1); // Bytes
_laserScanCompressed = laserScan;
}
if(userData.type() == CV_8UC1 && userData.rows == 1 && userData.cols > int(3*sizeof(int))) // Bytes
{
_userDataCompressed = userData; // assume compressed
}
else
{
_userDataRaw = userData;
}
}
void SensorData::setUserDataRaw(const cv::Mat & userDataRaw)
{
if(!userDataRaw.empty() && !_userDataRaw.empty())
{
UWARN("Cannot write new user data (%d bytes) over existing user "
"data (%d bytes, %d compressed). Set user data of %d to null "
"before setting a new one.",
int(userDataRaw.total()*userDataRaw.elemSize()),
int(_userDataRaw.total()*_userDataRaw.elemSize()),
_userDataCompressed.cols,
this->id());
return;
}
_userDataRaw = userDataRaw;
}
void SensorData::setUserData(const cv::Mat & userData)
{
if(!userData.empty() && (!_userDataCompressed.empty() || !_userDataRaw.empty()))
{
UWARN("Cannot write new user data (%d bytes) over existing user "
"data (%d bytes, %d compressed). Set user data of %d to null "
"before setting a new one.",
int(userData.total()*userData.elemSize()),
int(_userDataRaw.total()*_userDataRaw.elemSize()),
_userDataCompressed.cols,
this->id());
return;
}
_userDataRaw = cv::Mat();
_userDataCompressed = cv::Mat();
if(!userData.empty())
{
if(userData.type() == CV_8UC1 && userData.rows == 1 && userData.cols > int(3*sizeof(int))) // Bytes
{
_userDataCompressed = userData; // assume compressed
}
else
{
_userDataRaw = userData;
_userDataCompressed = compressData2(userData);
}
}
}
void SensorData::setOccupancyGrid(
const cv::Mat & ground,
const cv::Mat & obstacles,
float cellSize,
const cv::Point3f & viewPoint)
{
UDEBUG("ground=%d obstacles=%d", ground.cols, obstacles.cols);
if((!ground.empty() && (!_groundCellsCompressed.empty() || !_groundCellsRaw.empty())) ||
(!obstacles.empty() && (!_obstacleCellsCompressed.empty() || !_obstacleCellsRaw.empty())))
{
UWARN("Occupancy grid cannot be overwritten! id=%d", this->id());
return;
}
_groundCellsRaw = cv::Mat();
_groundCellsCompressed = cv::Mat();
_obstacleCellsRaw = cv::Mat();
_obstacleCellsCompressed = cv::Mat();
CompressionThread ctGround(ground);
CompressionThread ctObstacles(obstacles);
if(!ground.empty())
{
if(ground.type() == CV_32FC2 || ground.type() == CV_32FC3 || ground.type() == CV_32FC(4) || ground.type() == CV_32FC(6))
{
_groundCellsRaw = ground;
ctGround.start();
}
else if(ground.type() == CV_8UC1)
{
UASSERT(ground.type() == CV_8UC1); // Bytes
_groundCellsCompressed = ground;
}
}
if(!obstacles.empty())
{
if(obstacles.type() == CV_32FC2 || obstacles.type() == CV_32FC3 || obstacles.type() == CV_32FC(4) || obstacles.type() == CV_32FC(6))
{
_obstacleCellsRaw = obstacles;
ctObstacles.start();
}
else if(obstacles.type() == CV_8UC1)
{
UASSERT(obstacles.type() == CV_8UC1); // Bytes
_obstacleCellsCompressed = obstacles;
}
}
ctGround.join();
ctObstacles.join();
if(!_groundCellsRaw.empty())
{
_groundCellsCompressed = ctGround.getCompressedData();
}
if(!_obstacleCellsRaw.empty())
{
_obstacleCellsCompressed = ctObstacles.getCompressedData();
}
_cellSize = cellSize;
_viewPoint = viewPoint;
}
void SensorData::uncompressData()
{
cv::Mat tmpA, tmpB, tmpC, tmpD, tmpE, tmpF;
uncompressData(_imageCompressed.empty()?0:&tmpA,
_depthOrRightCompressed.empty()?0:&tmpB,
_laserScanCompressed.empty()?0:&tmpC,
_userDataCompressed.empty()?0:&tmpD,
_groundCellsCompressed.empty()?0:&tmpE,
_obstacleCellsCompressed.empty()?0:&tmpF);
}
void SensorData::uncompressData(
cv::Mat * imageRaw,
cv::Mat * depthRaw,
cv::Mat * laserScanRaw,
cv::Mat * userDataRaw,
cv::Mat * groundCellsRaw,
cv::Mat * obstacleCellsRaw)
{
UDEBUG("%d data(%d,%d,%d,%d,%d)", this->id(), imageRaw?1:0, depthRaw?1:0, laserScanRaw?1:0, userDataRaw?1:0, groundCellsRaw?1:0, obstacleCellsRaw?1:0);
if(imageRaw == 0 &&
depthRaw == 0 &&
laserScanRaw == 0 &&
userDataRaw == 0 &&
groundCellsRaw == 0 &&
obstacleCellsRaw == 0)
{
return;
}
uncompressDataConst(
imageRaw,
depthRaw,
laserScanRaw,
userDataRaw,
groundCellsRaw,
obstacleCellsRaw);
if(imageRaw && !imageRaw->empty() && _imageRaw.empty())
{
_imageRaw = *imageRaw;
//backward compatibility, set image size in camera model if not set
if(!_imageRaw.empty() && _cameraModels.size())
{
cv::Size size(_imageRaw.cols/_cameraModels.size(), _imageRaw.rows);
for(unsigned int i=0; i<_cameraModels.size(); ++i)
{
if(_cameraModels[i].fx() && _cameraModels[i].fy() && _cameraModels[i].imageWidth() == 0)
{
_cameraModels[i].setImageSize(size);
}
}
}
}
if(depthRaw && !depthRaw->empty() && _depthOrRightRaw.empty())
{
_depthOrRightRaw = *depthRaw;
}
if(laserScanRaw && !laserScanRaw->empty() && _laserScanRaw.empty())
{
_laserScanRaw = *laserScanRaw;
}
if(userDataRaw && !userDataRaw->empty() && _userDataRaw.empty())
{
_userDataRaw = *userDataRaw;
}
if(groundCellsRaw && !groundCellsRaw->empty() && _groundCellsRaw.empty())
{
_groundCellsRaw = *groundCellsRaw;
}
if(obstacleCellsRaw && !obstacleCellsRaw->empty() && _obstacleCellsRaw.empty())
{
_obstacleCellsRaw = *obstacleCellsRaw;
}
}
void SensorData::uncompressDataConst(
cv::Mat * imageRaw,
cv::Mat * depthRaw,
cv::Mat * laserScanRaw,
cv::Mat * userDataRaw,
cv::Mat * groundCellsRaw,
cv::Mat * obstacleCellsRaw) const
{
if(imageRaw)
{
*imageRaw = _imageRaw;
}
if(depthRaw)
{
*depthRaw = _depthOrRightRaw;
}
if(laserScanRaw)
{
*laserScanRaw = _laserScanRaw;
}
if(userDataRaw)
{
*userDataRaw = _userDataRaw;
}
if(groundCellsRaw)
{
*groundCellsRaw = _groundCellsRaw;
}
if(obstacleCellsRaw)
{
*obstacleCellsRaw = _obstacleCellsRaw;
}
if( (imageRaw && imageRaw->empty()) ||
(depthRaw && depthRaw->empty()) ||
(laserScanRaw && laserScanRaw->empty()) ||
(userDataRaw && userDataRaw->empty()) ||
(groundCellsRaw && groundCellsRaw->empty()) ||
(obstacleCellsRaw && obstacleCellsRaw->empty()))
{
rtabmap::CompressionThread ctImage(_imageCompressed, true);
rtabmap::CompressionThread ctDepth(_depthOrRightCompressed, true);
rtabmap::CompressionThread ctLaserScan(_laserScanCompressed, false);
rtabmap::CompressionThread ctUserData(_userDataCompressed, false);
rtabmap::CompressionThread ctGroundCells(_groundCellsCompressed, false);
rtabmap::CompressionThread ctObstacleCells(_obstacleCellsCompressed, false);
if(imageRaw && imageRaw->empty() && !_imageCompressed.empty())
{
UASSERT(_imageCompressed.type() == CV_8UC1);
ctImage.start();
}
if(depthRaw && depthRaw->empty() && !_depthOrRightCompressed.empty())
{
UASSERT(_depthOrRightCompressed.type() == CV_8UC1);
ctDepth.start();
}
if(laserScanRaw && laserScanRaw->empty() && !_laserScanCompressed.empty())
{
UASSERT(_laserScanCompressed.type() == CV_8UC1);
ctLaserScan.start();
}
if(userDataRaw && userDataRaw->empty() && !_userDataCompressed.empty())
{
UASSERT(_userDataCompressed.type() == CV_8UC1);
ctUserData.start();
}
if(groundCellsRaw && groundCellsRaw->empty() && !_groundCellsCompressed.empty())
{
UASSERT(_groundCellsCompressed.type() == CV_8UC1);
ctGroundCells.start();
}
if(obstacleCellsRaw && obstacleCellsRaw->empty() && !_obstacleCellsCompressed.empty())
{
UASSERT(_obstacleCellsCompressed.type() == CV_8UC1);
ctObstacleCells.start();
}
ctImage.join();
ctDepth.join();
ctLaserScan.join();
ctUserData.join();
ctGroundCells.join();
ctObstacleCells.join();
if(imageRaw && imageRaw->empty())
{
*imageRaw = ctImage.getUncompressedData();
if(imageRaw->empty())
{
if(_imageCompressed.empty())
{
UWARN("Requested raw image data, but the sensor data (%d) doesn't have image.", this->id());
}
else
{
UERROR("Requested image data, but failed to uncompress (%d).", this->id());
}
}
}
if(depthRaw && depthRaw->empty())
{
*depthRaw = ctDepth.getUncompressedData();
if(depthRaw->empty())
{
if(_depthOrRightCompressed.empty())
{
UWARN("Requested depth/right image data, but the sensor data (%d) doesn't have depth/right image.", this->id());
}
else
{
UERROR("Requested depth/right image data, but failed to uncompress (%d).", this->id());
}
}
}
if(laserScanRaw && laserScanRaw->empty())
{
*laserScanRaw = ctLaserScan.getUncompressedData();
if(laserScanRaw->empty())
{
if(_laserScanCompressed.empty())
{
UWARN("Requested laser scan data, but the sensor data (%d) doesn't have laser scan.", this->id());
}
else
{
UERROR("Requested laser scan data, but failed to uncompress (%d).", this->id());
}
}
}
if(userDataRaw && userDataRaw->empty())
{
*userDataRaw = ctUserData.getUncompressedData();
if(userDataRaw->empty())
{
if(_userDataCompressed.empty())
{
UWARN("Requested user data, but the sensor data (%d) doesn't have user data.", this->id());
}
else
{
UERROR("Requested user data, but failed to uncompress (%d).", this->id());
}
}
}
if(groundCellsRaw && groundCellsRaw->empty())
{
*groundCellsRaw = ctGroundCells.getUncompressedData();
}
if(obstacleCellsRaw && obstacleCellsRaw->empty())
{
*obstacleCellsRaw = ctObstacleCells.getUncompressedData();
}
}
}
void SensorData::setFeatures(const std::vector<cv::KeyPoint> & keypoints, const std::vector<cv::Point3f> & keypoints3D, const cv::Mat & descriptors)
{
UASSERT_MSG(keypoints3D.empty() || keypoints.size() == keypoints3D.size(), uFormat("keypoints=%d keypoints3D=%d", (int)keypoints.size(), (int)keypoints3D.size()).c_str());
UASSERT_MSG(descriptors.empty() || (int)keypoints.size() == descriptors.rows, uFormat("keypoints=%d descriptors=%d", (int)keypoints.size(), descriptors.rows).c_str());
_keypoints = keypoints;
_keypoints3D = keypoints3D;
_descriptors = descriptors;
}
long SensorData::getMemoryUsed() const // Return memory usage in Bytes
{
return _imageCompressed.total()*_imageCompressed.elemSize() +
_imageRaw.total()*_imageRaw.elemSize() +
_depthOrRightCompressed.total()*_depthOrRightCompressed.elemSize() +
_depthOrRightRaw.total()*_depthOrRightRaw.elemSize() +
_userDataCompressed.total()*_userDataCompressed.elemSize() +
_userDataRaw.total()*_userDataRaw.elemSize() +
_laserScanCompressed.total()*_laserScanCompressed.elemSize() +
_laserScanRaw.total()*_laserScanRaw.elemSize() +
_groundCellsCompressed.total()*_groundCellsCompressed.elemSize() +
_groundCellsRaw.total()*_groundCellsRaw.elemSize() +
_obstacleCellsCompressed.total()*_obstacleCellsCompressed.elemSize() +
_obstacleCellsRaw.total()*_obstacleCellsRaw.elemSize();
}
} // namespace rtabmap
| [
"you@example.com"
] | you@example.com |
250a05245c2cbe86e1efab66529e58d410436ae3 | da02c22f1bab353b37fc5294facccf7ebdb24337 | /2017/10b.cpp | be85fe612e7d8227ffc90f51d40aba5faff639e5 | [] | no_license | Frontier789/AdventOfCode | ea527138eaa2752ef1dff6f102ac8ca7390b0db2 | e9081107c04942cbed530f64021624a8b3d710a2 | refs/heads/master | 2021-10-07T20:04:50.757025 | 2018-12-04T22:33:10 | 2018-12-04T22:33:10 | 114,530,666 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,102 | cpp | #include <algorithm>
#include <iostream>
#include <sstream>
#include <fstream>
#include <cmath>
#include <map>
#include <set>
using namespace std;
#define N 256
//#define N 10
int main()
{
string lens = "206,63,255,131,65,80,238,157,254,24,133,2,16,0,1,3";
lens += (char)17;
lens += (char)31;
lens += (char)73;
lens += (char)47;
lens += (char)23;
int ls[N];
for (int i=0;i<N;++i)
ls[i] = i;
int p = 0;
int skip = 0;
for (int db = 0;db < 64;++db)
{
for (int l : lens)
{
//for (int i : ls) cout << i << " "; cout << endl;
for (int i=0;i<l/2;++i)
{
int a = (p + i) % N;
int b = (p + l - i - 1) % N;
swap(ls[a],ls[b]);
}
/*
for (int i : ls) cout << i << " "; cout << endl;
cout << endl;
cout << endl;
*/
p += l + skip;
p %= N;
skip++;
}
}
string hex = "0123456789abcdef";
//for (int i : ls) cout << i << " "; cout << endl;
for (int i=0;i<16;++i)
{
int xored = ls[i*16 + 0];
for (int j=1;j<16;++j)
{
xored = xored ^ ls[i*16 + j];
}
cout << hex[xored / 16] << hex[xored % 16];
}
}
| [
"fr0nt13r789@gmail.com"
] | fr0nt13r789@gmail.com |
20a3814b7d84543068f6224cfd70f7c8640dc2f1 | 256c5b875be2fd45614130ba002c3362c788f484 | /exam3-4-5.cpp | c9a6e94b66073eb03caccc62cf78697f001b3d98 | [] | no_license | Gxsghsn/acm | 58ef6702522fbe89d9c456637fc7f7f70c79de8e | 511a39c4b42c1975feea49133741c41307994ba5 | refs/heads/master | 2021-01-22T06:54:06.025306 | 2014-11-07T00:30:13 | 2014-11-07T00:30:13 | 20,996,780 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 415 | cpp | #include<stdio.h>
#include<time.h>
#include<string.h>
#define MINLEN 10000000
char s[MINLEN];
int main()
{
int len,i=0,tot=0;
while(strlen(s)<1000000)
{
s[i]='a';
s[i+1]='1';
i++;
i++;
}
for(int j=0;j<strlen(s);j++)
{
if(s[j]=='1')
tot++;
}
printf("%d\n",tot);
printf("%f",(double)clock()/CLOCKS_PER_SEC);
return 0;
}
| [
"646546851@qq.com"
] | 646546851@qq.com |
1fce30ec964ae9e22de1a52794382d8677fa1bc1 | 7a9a5518467074e741744230b8ea0e124afd3e4e | /Logs/N2_norep_bruteforce_num/test_investigate.cpp | 00d9f3636867042387c5e3eb84d90405786c5cdd | [] | no_license | vidarsko/Project3 | 9eafb744fb222f0752211c9ed399e6b3fa389b24 | 006757d1b6224266d8a2c13b4e8e44462a37ba15 | refs/heads/master | 2021-01-20T10:55:23.717810 | 2014-12-07T21:05:08 | 2014-12-07T21:05:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 620 | cpp | #include <iostream>
#include <armadillo>
#include "project3lib.h"
using namespace std;
using namespace arma;
int main(){
// omega N R
QuantumDots QD (1.0, 2, 0);
// alpha0 alphastep alpham beta0 betas betamax system
Investigate inv(0.0, 0.05, 1.5, 0.0, 0.1, 0.1, QD );
// MCS jastrow ana. LE imp. samp. ana. QF delta_t
inv.find_minimum(pow(10,7), 0, 0, 0, 0, 0.1 );
inv.print_energies_to_file("energies.csv");
inv.print_variances_to_file("variances.csv");
inv.print_alpha_meshgrid_to_file("alpha.csv");
inv.print_beta_meshgrid_to_file("beta.csv");
}
| [
"vidarsko@gmail.com"
] | vidarsko@gmail.com |
12089f2c5c0a1c78c29203e1e83ff62231f0cd53 | 39b5de131d9a0f89429715656135f728f83b1dc6 | /src/PID.h | df6e9ca0f8c0a1a83d916abd1c207c592dfefec4 | [] | no_license | octopuscabbage/2015-2016-AVC | 12744a9652635953bf1cd72ba3f0193973803d56 | 1c9a7fa802feb29771fc2abbef39e5f10d6242ad | refs/heads/master | 2021-01-20T06:49:51.976744 | 2016-04-08T08:57:45 | 2016-04-08T08:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,158 | h | #ifndef PID_H
#define PID_H
#include <chrono>
typedef long double bigfloat;
typedef std::chrono::high_resolution_clock pid_clock;
typedef std::chrono::time_point<pid_clock> time_point;
typedef std::chrono::duration<bigfloat> duration;
template<class T> class PID{
private:
time_point prev_time;
duration dt; //fuck your continuous math
bigfloat integral;
bigfloat derivative;
T prev_error;
bigfloat integral_gain;
bigfloat derivative_gain;
bigfloat proportional_gain;
time_point currentTime();
public:
//Constructors set previous time so start calling the calculation soon
PID();
PID(bigfloat p_gain, bigfloat i_gain, bigfloat d_gain);
/*
* Performs a PID control calculation. The output value is where you should put as the input to your system
* see: https://en.wikipedia.org/wiki/PID_controller
*
* @param measured_value: The value you are currently measuring.
* @param set_point: The value you would ideally be at.
*/
T calculate(T measured_value, T set_point);
/*
* Sweet gains bro
*/
void setGains(bigfloat p_gain, bigfloat i_gain, bigfloat d_gain);
void setPrevTimeNow();
};
#endif
| [
"octopuscabbage@gmail.com"
] | octopuscabbage@gmail.com |
83b95b7fe0665bbb81e1f13ac794cf541c80aff9 | 4387adc458a01517dc765044548e5cb3c694d632 | /2. doodle/두들낙서/80_/84-4_2.cpp | e837b8d6d0d5510bef2913f63c2dd52dbfd40f5b | [] | no_license | seonghyun-code/C-Cpp | 2c064bdd021f1f4f904fa4d7f8b4cdae56ce16de | 319ebdb3cccd6dc9b6c325f70a794010f02f4a8d | refs/heads/main | 2023-07-25T13:35:01.864590 | 2021-09-09T17:17:56 | 2021-09-09T17:17:56 | 367,944,607 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,047 | cpp | #include <iostream>
using namespace std;
class Base { // 다형 클래스
public:
virtual void f() {}
int x;
};
class Derived : public Base {
public:
void f() {}
int y;
};
int main() {
cout << sizeof(Base) << endl; // 4 + 4 = 8
cout << sizeof(Derived) << endl; // 8 + 4 = 12
return 0;
}
// 4byte의 역할은? : 각 class들에 관한 정보가 담겨있음.
// Base [포인터][x] = 8byte
// Derived [포인터][x][y] = 12byte
// 포인터들은 뭘 가리킬까?
// Base -> [*], Dervied -> [@]라고 하면
/*
Base* b = new Derived;일 때
b는 Base를 가리키는 포인터이기 떄문에 [포인터][x]까지만 가리킬 수 있음. ... 10분 그림
그러나 b 안에 포인터를 확인해보면 [@]를 가리키고 있음.
이걸 보고 aㅏ 얘가 Derived구나 하고 판별 ... (RTTI의 원리)
*/
// 결론
// dynamic_cast를 해주려면 Base 클래스는 하나 이상의 가상함수를 가진 다형 클래스여야 함.
// 다형 클래스만 RTTI를 지원하기 때문! | [
"za1idom@gmail.com"
] | za1idom@gmail.com |
b6e619c599eb0f1494b732e8b2fa5e56f137ba65 | 9a1fa988e63335a698ee1cd2fbe495278b34ed98 | /ACM/7-18/dfs_iris.cpp | f264dfb1f059a5d73075278c9303302c521f1422 | [] | no_license | dexfire/ccode | aabaf1eea90a57ba46295b5389ae18d2432fdb17 | 67d503ee3699d4e7c7c1c8be23fee8532926a7a4 | refs/heads/master | 2020-03-23T02:57:45.942395 | 2018-07-30T04:06:43 | 2018-07-30T04:06:43 | 141,001,690 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,306 | cpp | #include <iostream>
#include <stdio.h>
using namespace std;
// char G[105][105];
int ans, n, m;
char G[105][105] = {"............", ".W........WW..", "..WWW.....WWW.",
".....WW...WW..", "..........WW..", "..........W...",
"...W......W...", "..W.W.....WW..", ".W.W.W.....W..",
"..W.W......W..", "...W.......W..", "............"};
////int LeftRight[9] = { 0,0,1,1,1,0,-1,-1,-1 }, UpDown[9] = {
/// 0,1,1,0,-1,-1,-1,0,1 };
// char W = 'W';
// char F = '.';
void DFS(int i, int j) {
if (i < 1 || j < 1 || i > n || j > m)
return;
if (G[i][j] == 'W')
G[i][j] = '.';
for (int k = -1; k < 2; k++) {
DFS(i + 1, j + k);
DFS(i - 1, j + k);
}
DFS(i, j - 1);
DFS(i, j + 1);
return;
}
int main() {
cin >> n >> m;
// for (int i = 0; i < n; i++)
// for (int j = 0; j < m; j++)
// cin >> G[i][j];
for (int i = 0; i < n; i++)
G[i][0] = G[i][m + 1] = '.';
for (int i = 0; i < m; i++)
G[0][i] = G[n + 1][i] = '.';
for (int i = 0; i < n; i++)
for (int j = 0; j < m; j++)
if (G[i][j] == 'W') {
DFS(i, j);
ans++;
}
cout << ans << endl;
system("pause");
return 0;
}
| [
"275176629@qq.com"
] | 275176629@qq.com |
4bc8c9bacb7a9ede2449a8b853890b22aa5a470f | 274099a586f8ddf323abb1ed77b2c08ca35fad43 | /include/dtgrid/Algorithms/Math/HeaderFiles/BasicMath.h | 422b5fc55c03245b1cffd7e4c59cbbf04482b5cd | [
"BSD-3-Clause"
] | permissive | yunteng/CubicaPlus | 912ac8dede855d8b85d0f87b28cb7ec4e751c394 | 3b5d60b863e54c6c880cb853c96d09cc7ca1caae | refs/heads/master | 2021-01-19T06:36:31.994916 | 2016-05-31T19:50:31 | 2016-05-31T19:50:31 | 60,118,935 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,274 | h | /*************************************************************************************************
*
* Copyright (c) 2009, Michael Bang Nielsen (nielsenmb@gmail.com), Aarhus University, Denmark.
* All rights reserved.
*
*************************************************************************************************/
#ifndef _math_basicmath_h
#define _math_basicmath_h
#define _USE_MATH_DEFINES // M_PI etc in math.h
#include <stdlib.h>
#include <math.h>
namespace Math
{
template<typename Type>
struct MathToolsBinSearchDummyTransform
{
Type operator()(const Type& t) const { return t; }
};
template<typename Array, typename Type>
int binarySearch(const Array& a, int start, int end, Type t)
{
MathToolsBinSearchDummyTransform<Type> transform;
return binarySearch(a, start, end, t, transform);
}
/*! \brief Logarithmic search in the array, a, delimited by the indices [start;end).
* If element t exists in a, the index of t in a is returned.
* If t does not exist in a, and t lies within the range of the elements in a,
* the index of the smallest element that is larger
* than t is returned.
* Otherwise the index of the closest boundary (start or end) is returned.
*/
template<typename Array, typename Transform, typename Type>
int binarySearch(const Array& a, int start, int end, Type t, const Transform& transform)
{
int in1, in2, it;
if ( start == end )
{
return end;
}
if ( transform(a[end-1]) < t )
{
return end;
}
if ( transform(a[start]) > t )
{
return start;
}
in1 = 0;
in2 = end-start-1;
// binary search
while (in2 > in1)
{
it = (in1+in2)>>1;
if (t < transform(a[it+start]))
{
in2 = it-1;
}
else if (t > transform(a[it+start]))
{
in1 = it+1;
}
else
{
in1 = it;
break;
}
}
if (t > transform(a[in1+start]))
{
// this is safe as we know that t is within the limits of the array
in1++;
}
return in1+start;
}
inline unsigned int getSmallestPowerOfTwoLargerThanOrEqualTo(unsigned int x)
{
unsigned int xOrig = x;
unsigned int xLog = 0;
unsigned int y;
x = (x >> 1);
while(x > 0) { x = (x >> 1); xLog++; }
y = (1<<xLog);
if ( y < xOrig ) { y = (y<<1); }
return y;
}
template<typename Scalar>
inline Scalar computeOrientation(Scalar v1x, Scalar v1y, Scalar v2x, Scalar v2y)
{
Scalar value = v1x * v2y - v1y * v2x;
return (Scalar)(sign3(value));
}
template<typename Scalar>
inline int sign3(Scalar s)
{
return ( s<0 ? -1 : ( s>0 ? 1 : 0 ) );
}
template<typename Scalar>
inline Scalar sign(Scalar s)
{
return ((s)<=0 ? Scalar(-1) : Scalar(1));
}
template<typename Scalar>
inline Scalar fabs2(Scalar a, int *sign)
{
if (a<0)
{
*sign = -1;
return -a;
}
else
{
*sign = 1;
return a;
}
}
template<typename Scalar>
inline Scalar pow2(Scalar s)
{
return s*s;
}
template<typename Scalar>
inline Scalar pow3(Scalar s)
{
return s*s*s;
}
template<typename Scalar>
inline Scalar log2(Scalar s)
{
return log10(s) * ( 1.0 / 0.30102999566398 ); // log10(s) / log10(2)
}
template<typename Scalar>
inline double dist2D(Scalar p1[2], Scalar p2[2])
{
return sqrt( (double)( pow2(p2[0]-p1[0]) + pow2(p2[1]-p1[1]) ) );
}
template<typename Scalar>
inline double dist2DSquared(Scalar p1[2], Scalar p2[2])
{
return (double)(pow2(p2[0]-p1[0]) + pow2(p2[1]-p1[1]));
}
template<typename Scalar>
inline bool solveQuadraticEquation(Scalar A, Scalar B, Scalar C, Scalar *alpha, Scalar *beta)
{
Scalar D;
D = pow2(B) - 4*A*C;
if ( D >= 0 )
{
*alpha = (-B + sqrt(D))/(2*A);
*beta = (-B - sqrt(D))/(2*A);
return true;
}
else
{
return false;
}
}
inline bool isEven(int i)
{
return i%2 == 0;
}
inline double rand0to1()
{
return (double)rand()/RAND_MAX;
}
template<typename Scalar>
inline Scalar length(Scalar x, Scalar y, Scalar z)
{
return sqrt( pow2(x) + pow2(y) + pow2(z) );
}
template<typename Scalar>
inline Scalar length2(Scalar x, Scalar y, Scalar z)
{
return pow2(x) + pow2(y) + pow2(z);
}
template<typename Scalar>
inline void normalize(Scalar *x, Scalar *y, Scalar *z)
{
Scalar len = length(*x, *y, *z);
*x = *x / len;
*y = *y / len;
*z = *z / len;
}
template<typename Scalar>
inline void normalize(Scalar n[3])
{
Scalar len = length(n[0], n[1], n[2]);
n[0] = n[0] / len;
n[1] = n[1] / len;
n[2] = n[2] / len;
}
template<typename Scalar>
inline Scalar fround(Scalar s)
{
return floor(s+Scalar(0.5));
}
template<typename Scalar>
inline void crossVec(Scalar x1, Scalar y1, Scalar z1, Scalar x2, Scalar y2, Scalar z2, Scalar *xn, Scalar *yn, Scalar *zn)
{
*xn = y1 * z2 - z1 * y2;
*yn = z1 * x2 - x1 * z2;
*zn = x1 * y2 - y1 * x2;
}
}
#endif
| [
"yunteng.cs@engineering.ucsb.edu"
] | yunteng.cs@engineering.ucsb.edu |
641769fb2df798752eb3a6d68700cd86231bb95f | 78918391a7809832dc486f68b90455c72e95cdda | /boost_lib/boost/fusion/container/deque/front_extended_deque.hpp | 8869ba36507a60700376a35b4c2b34d248b4ef48 | [
"BSL-1.0",
"MIT"
] | permissive | kyx0r/FA_Patcher | 50681e3e8bb04745bba44a71b5fd04e1004c3845 | 3f539686955249004b4483001a9e49e63c4856ff | refs/heads/master | 2022-03-28T10:03:28.419352 | 2020-01-02T09:16:30 | 2020-01-02T09:16:30 | 141,066,396 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,764 | hpp | /*=============================================================================
Copyright (c) 2005-2012 Joel de Guzman
Copyright (c) 2005-2006 Dan Marsden
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#if !defined(BOOST_FUSION_FRONT_EXTENDED_DEQUE_26112006_2209)
#define BOOST_FUSION_FRONT_EXTENDED_DEQUE_26112006_2209
#include <boost/fusion/support/config.hpp>
#include <boost/mpl/int.hpp>
#include <boost/fusion/support/sequence_base.hpp>
#include <boost/fusion/sequence/intrinsic/size.hpp>
#include <boost/fusion/container/deque/detail/keyed_element.hpp>
namespace boost
{
namespace fusion
{
template <typename Deque, typename T>
struct front_extended_deque
: detail::keyed_element<typename Deque::next_down, T, Deque>
, sequence_base<front_extended_deque<Deque, T> >
{
typedef detail::keyed_element<typename Deque::next_down, T, Deque> base;
typedef mpl::int_<(Deque::next_down::value - 1)> next_down;
typedef typename Deque::next_up next_up;
typedef mpl::int_<(result_of::size<Deque>::value + 1)> size;
template <typename Arg>
BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
front_extended_deque(Deque const& deque, Arg const& val)
: base(val, deque)
{}
#if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
template <typename Arg>
BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
front_extended_deque(Deque const& deque, Arg& val)
: base(val, deque)
{}
#else
template <typename Arg>
BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
front_extended_deque(Deque const& deque, Arg&& val)
: base(BOOST_FUSION_FWD_ELEM(Arg, val), deque)
{}
#endif
};
}
}
#endif
| [
"k.melekhin@gmail.com"
] | k.melekhin@gmail.com |
83b5a6065331da920784957e904674fe357f34da | fd88bf8bf77affc30af4fbd9b2e3916bdaa0789b | /ref-impl/src/com-api/CAAFModule.cpp | 0e2c481de607425ff479d38455aebf4467d2f627 | [] | no_license | jhliberty/AAF | 6e6a7d898d42e6e91690c76afbc4cf581cc716fc | af8c9d43461ab556bd6cf8d98b0f001eb7b87cfe | refs/heads/master | 2021-01-08T11:37:10.299319 | 2016-08-16T02:49:39 | 2016-08-16T02:49:39 | 65,782,219 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 46,099 | cpp |
//=---------------------------------------------------------------------=
//
// This file was GENERATED for the AAF SDK
//
// $Id: CAAFModule.cpp,v 1.22 2012/06/26 20:54:41 jptrainor Exp $ $Name: V116 $
//
// The contents of this file are subject to the AAF SDK Public Source
// License Agreement Version 2.0 (the "License"); You may not use this
// file except in compliance with the License. The License is available
// in AAFSDKPSL.TXT, or you may obtain a copy of the License from the
// Advanced Media Workflow Association, Inc., or its successor.
//
// Software distributed under the License is distributed on an "AS IS"
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
// the License for the specific language governing rights and limitations
// under the License. Refer to Section 3.3 of the License for proper use
// of this Exhibit.
//
// WARNING: Please contact the Advanced Media Workflow Association,
// Inc., for more information about any additional licenses to
// intellectual property covering the AAF Standard that may be required
// to create and distribute AAF compliant products.
// (http://www.amwa.tv/policies).
//
// Copyright Notices:
// The Original Code of this file is Copyright 1998-2012, licensor of the
// Advanced Media Workflow Association. All rights reserved.
//
// The Initial Developer of the Original Code of this file and the
// licensor of the Advanced Media Workflow Association is
// Avid Technology.
// All rights reserved.
//
//=---------------------------------------------------------------------=
#include "ImplAAFModule.h"
#include "AAFResult.h"
#include "OMAssertions.h"
#include "OMExceptions.h"
#include <assert.h>
STDAPI
AAFLoad (const char * dllname)
{
HRESULT hr;
try
{
hr = ImplAAFLoad
(dllname);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFFileOpenExistingRead (aafCharacter_constptr pFileName,
aafUInt32 modeFlags,
IAAFFile ** ppFile)
{
HRESULT hr;
//
// set up for ppFile
//
ImplAAFFile * internalppFile = NULL;
ImplAAFFile ** pinternalppFile = NULL;
if (ppFile)
{
pinternalppFile = &internalppFile;
}
try
{
hr = ImplAAFFileOpenExistingRead
(pFileName,
modeFlags,
pinternalppFile);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppFile
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppFile)
{
pUnknown = static_cast<IUnknown *> (internalppFile->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFFile, (void **)ppFile);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppFile->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFFileOpenExistingModify (aafCharacter_constptr pFileName,
aafUInt32 modeFlags,
aafProductIdentification_t * pIdent,
IAAFFile ** ppFile)
{
HRESULT hr;
//
// set up for ppFile
//
ImplAAFFile * internalppFile = NULL;
ImplAAFFile ** pinternalppFile = NULL;
if (ppFile)
{
pinternalppFile = &internalppFile;
}
try
{
hr = ImplAAFFileOpenExistingModify
(pFileName,
modeFlags,
pIdent,
pinternalppFile);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppFile
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppFile)
{
pUnknown = static_cast<IUnknown *> (internalppFile->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFFile, (void **)ppFile);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppFile->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFFileOpenNewModify (aafCharacter_constptr pFileName,
aafUInt32 modeFlags,
aafProductIdentification_t * pIdent,
IAAFFile ** ppFile)
{
HRESULT hr;
//
// set up for ppFile
//
ImplAAFFile * internalppFile = NULL;
ImplAAFFile ** pinternalppFile = NULL;
if (ppFile)
{
pinternalppFile = &internalppFile;
}
try
{
hr = ImplAAFFileOpenNewModify
(pFileName,
modeFlags,
pIdent,
pinternalppFile);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppFile
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppFile)
{
pUnknown = static_cast<IUnknown *> (internalppFile->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFFile, (void **)ppFile);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppFile->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFFileOpenNewModifyEx (aafCharacter_constptr pFileName,
aafUID_constptr pFileKind,
aafUInt32 modeFlags,
aafProductIdentification_t * pIdent,
IAAFFile ** ppFile)
{
HRESULT hr;
//
// set up for ppFile
//
ImplAAFFile * internalppFile = NULL;
ImplAAFFile ** pinternalppFile = NULL;
if (ppFile)
{
pinternalppFile = &internalppFile;
}
try
{
hr = ImplAAFFileOpenNewModifyEx
(pFileName,
pFileKind,
modeFlags,
pIdent,
pinternalppFile);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppFile
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppFile)
{
pUnknown = static_cast<IUnknown *> (internalppFile->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFFile, (void **)ppFile);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppFile->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFFileOpenTransient (aafProductIdentification_t * pIdent,
IAAFFile ** ppFile)
{
HRESULT hr;
//
// set up for ppFile
//
ImplAAFFile * internalppFile = NULL;
ImplAAFFile ** pinternalppFile = NULL;
if (ppFile)
{
pinternalppFile = &internalppFile;
}
try
{
hr = ImplAAFFileOpenTransient
(pIdent,
pinternalppFile);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppFile
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppFile)
{
pUnknown = static_cast<IUnknown *> (internalppFile->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFFile, (void **)ppFile);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppFile->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFFileIsAAFFile (aafCharacter_constptr pFileName,
aafUID_t * pAAFFileKind,
aafBool * pFileIsAAFFile)
{
HRESULT hr;
try
{
hr = ImplAAFFileIsAAFFile
(pFileName,
pAAFFileKind,
pFileIsAAFFile);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFRawStorageIsAAFFile (IAAFRawStorage * pRawStorage,
aafUID_t * pAAFFileKind,
aafBool * pRawStorageIsAAFFile)
{
HRESULT hr;
try
{
hr = ImplAAFRawStorageIsAAFFile
(pRawStorage,
pAAFFileKind,
pRawStorageIsAAFFile);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFFileIsAAFFileKind (aafCharacter_constptr pFileName,
aafUID_constptr pAAFFileKind,
aafBool * pFileIsAAFFile)
{
HRESULT hr;
try
{
hr = ImplAAFFileIsAAFFileKind
(pFileName,
pAAFFileKind,
pFileIsAAFFile);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFRawStorageIsAAFFileKind (IAAFRawStorage * pRawStorage,
aafUID_constptr pAAFFileKind,
aafBool * pRawStorageIsAAFFile)
{
HRESULT hr;
try
{
hr = ImplAAFRawStorageIsAAFFileKind
(pRawStorage,
pAAFFileKind,
pRawStorageIsAAFFile);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFGetPluginManager (IAAFPluginManager ** ppPluginManager)
{
HRESULT hr;
//
// set up for ppPluginManager
//
ImplAAFPluginManager * internalppPluginManager = NULL;
ImplAAFPluginManager ** pinternalppPluginManager = NULL;
if (ppPluginManager)
{
pinternalppPluginManager = &internalppPluginManager;
}
try
{
hr = ImplAAFGetPluginManager
(pinternalppPluginManager);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppPluginManager
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppPluginManager)
{
pUnknown = static_cast<IUnknown *> (internalppPluginManager->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFPluginManager, (void **)ppPluginManager);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppPluginManager->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFCreateRawStorageMemory (aafFileAccess_t access,
IAAFRawStorage ** ppNewRawStorage)
{
HRESULT hr;
//
// set up for ppNewRawStorage
//
ImplAAFRawStorage * internalppNewRawStorage = NULL;
ImplAAFRawStorage ** pinternalppNewRawStorage = NULL;
if (ppNewRawStorage)
{
pinternalppNewRawStorage = &internalppNewRawStorage;
}
try
{
hr = ImplAAFCreateRawStorageMemory
(access,
pinternalppNewRawStorage);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppNewRawStorage
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppNewRawStorage)
{
pUnknown = static_cast<IUnknown *> (internalppNewRawStorage->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFRawStorage, (void **)ppNewRawStorage);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppNewRawStorage->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFCreateRawStorageDisk (aafCharacter_constptr pFilename,
aafFileExistence_t existence,
aafFileAccess_t access,
IAAFRawStorage ** ppNewRawStorage)
{
HRESULT hr;
//
// set up for ppNewRawStorage
//
ImplAAFRawStorage * internalppNewRawStorage = NULL;
ImplAAFRawStorage ** pinternalppNewRawStorage = NULL;
if (ppNewRawStorage)
{
pinternalppNewRawStorage = &internalppNewRawStorage;
}
try
{
hr = ImplAAFCreateRawStorageDisk
(pFilename,
existence,
access,
pinternalppNewRawStorage);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppNewRawStorage
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppNewRawStorage)
{
pUnknown = static_cast<IUnknown *> (internalppNewRawStorage->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFRawStorage, (void **)ppNewRawStorage);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppNewRawStorage->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFCreateRawStorageCachedDisk (aafCharacter_constptr pFilename,
aafFileExistence_t existence,
aafFileAccess_t access,
aafUInt32 pageCount,
aafUInt32 pageSize,
IAAFRawStorage ** ppNewRawStorage)
{
HRESULT hr;
//
// set up for ppNewRawStorage
//
ImplAAFRawStorage * internalppNewRawStorage = NULL;
ImplAAFRawStorage ** pinternalppNewRawStorage = NULL;
if (ppNewRawStorage)
{
pinternalppNewRawStorage = &internalppNewRawStorage;
}
try
{
hr = ImplAAFCreateRawStorageCachedDisk
(pFilename,
existence,
access,
pageCount,
pageSize,
pinternalppNewRawStorage);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppNewRawStorage
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppNewRawStorage)
{
pUnknown = static_cast<IUnknown *> (internalppNewRawStorage->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFRawStorage, (void **)ppNewRawStorage);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppNewRawStorage->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFCreateRawStorageCached (IAAFRawStorage * pRawStorage,
aafUInt32 pageCount,
aafUInt32 pageSize,
IAAFRawStorage ** ppNewRawStorage)
{
HRESULT hr;
//
// set up for ppNewRawStorage
//
ImplAAFRawStorage * internalppNewRawStorage = NULL;
ImplAAFRawStorage ** pinternalppNewRawStorage = NULL;
if (ppNewRawStorage)
{
pinternalppNewRawStorage = &internalppNewRawStorage;
}
try
{
hr = ImplAAFCreateRawStorageCached
(pRawStorage,
pageCount,
pageSize,
pinternalppNewRawStorage);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppNewRawStorage
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppNewRawStorage)
{
pUnknown = static_cast<IUnknown *> (internalppNewRawStorage->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFRawStorage, (void **)ppNewRawStorage);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppNewRawStorage->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFCreateRawStorageCached2 (IAAFRawStorage * pRawStorage,
aafUInt32 pageCount,
aafUInt32 pageSize,
IAAFCachePageAllocator* pCachePageAllocator,
IAAFRawStorage ** ppNewRawStorage)
{
HRESULT hr;
//
// set up for ppNewRawStorage
//
ImplAAFRawStorage * internalppNewRawStorage = NULL;
ImplAAFRawStorage ** pinternalppNewRawStorage = NULL;
if (ppNewRawStorage)
{
pinternalppNewRawStorage = &internalppNewRawStorage;
}
try
{
hr = ImplAAFCreateRawStorageCached2
(pRawStorage,
pageCount,
pageSize,
pCachePageAllocator,
pinternalppNewRawStorage);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppNewRawStorage
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppNewRawStorage)
{
pUnknown = static_cast<IUnknown *> (internalppNewRawStorage->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFRawStorage, (void **)ppNewRawStorage);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppNewRawStorage->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFCreateAAFFileOnRawStorage (IAAFRawStorage * pRawStorage,
aafFileExistence_t existence,
aafFileAccess_t access,
aafUID_constptr pFileKind,
aafUInt32 modeFlags,
aafProductIdentification_constptr pIdent,
IAAFFile ** ppNewFile)
{
HRESULT hr;
//
// set up for ppNewFile
//
ImplAAFFile * internalppNewFile = NULL;
ImplAAFFile ** pinternalppNewFile = NULL;
if (ppNewFile)
{
pinternalppNewFile = &internalppNewFile;
}
try
{
hr = ImplAAFCreateAAFFileOnRawStorage
(pRawStorage,
existence,
access,
pFileKind,
modeFlags,
pIdent,
pinternalppNewFile);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppNewFile
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppNewFile)
{
pUnknown = static_cast<IUnknown *> (internalppNewFile->GetContainer());
hStat = pUnknown->QueryInterface(IID_IAAFFile, (void **)ppNewFile);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppNewFile->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFSetProgressCallback (IAAFProgress* pProgress)
{
HRESULT hr;
try
{
hr = ImplAAFSetProgressCallback
(pProgress);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFGetFileEncodings (IEnumAAFFileEncodings ** ppFileEncodings)
{
HRESULT hr;
//
// set up for ppFileEncodings
//
ImplEnumAAFFileEncodings * internalppFileEncodings = NULL;
ImplEnumAAFFileEncodings ** pinternalppFileEncodings = NULL;
if (ppFileEncodings)
{
pinternalppFileEncodings = &internalppFileEncodings;
}
try
{
hr = ImplAAFGetFileEncodings
(pinternalppFileEncodings);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
//
// cleanup for ppFileEncodings
//
if (SUCCEEDED(hr))
{
IUnknown *pUnknown;
HRESULT hStat;
if (internalppFileEncodings)
{
pUnknown = static_cast<IUnknown *> (internalppFileEncodings->GetContainer());
hStat = pUnknown->QueryInterface(IID_IEnumAAFFileEncodings, (void **)ppFileEncodings);
assert (SUCCEEDED (hStat));
//pUnknown->Release();
internalppFileEncodings->ReleaseReference(); // We are through with this pointer.
}
}
return hr;
}
STDAPI
AAFSetDiagnosticOutput (IAAFDiagnosticOutput* pOutput)
{
HRESULT hr;
try
{
hr = ImplAAFSetDiagnosticOutput
(pOutput);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFGetLibraryVersion (aafProductVersion_t * pVersion)
{
HRESULT hr;
try
{
hr = ImplAAFGetLibraryVersion
(pVersion);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFGetStaticLibraryVersion (aafProductVersion_t * pVersion)
{
HRESULT hr;
try
{
hr = ImplAAFGetStaticLibraryVersion
(pVersion);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFGetLibraryPathNameBufLen (aafUInt32 * pBufSize)
{
HRESULT hr;
try
{
hr = ImplAAFGetLibraryPathNameBufLen
(pBufSize);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFGetLibraryPathName (aafCharacter * pLibraryPathName,
aafUInt32 bufSize)
{
HRESULT hr;
try
{
hr = ImplAAFGetLibraryPathName
(pLibraryPathName,
bufSize);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFResultToTextBufLen (AAFRESULT result,
aafUInt32 * pResultTextSize)
{
HRESULT hr;
try
{
hr = ImplAAFResultToTextBufLen
(result,
pResultTextSize);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
STDAPI
AAFResultToText (AAFRESULT result,
aafCharacter * pResultText,
aafUInt32 resultTextSize)
{
HRESULT hr;
try
{
hr = ImplAAFResultToText
(result,
pResultText,
resultTextSize);
}
catch (OMException& e)
{
// OMExceptions should be handled by the impl code. However, if an
// unhandled OMException occurs, control reaches here. We must not
// allow the unhandled exception to reach the client code, so we
// turn it into a failure status code.
//
// If the OMException contains an HRESULT, it is returned to the
// client, if not, AAFRESULT_UHANDLED_EXCEPTION is returned.
//
hr = OMExceptionToResult(e, AAFRESULT_UNHANDLED_EXCEPTION);
}
catch (OMAssertionViolation &)
{
// Control reaches here if there is a programming error in the
// impl code that was detected by an assertion violation.
// We must not allow the assertion to reach the client code so
// here we turn it into a failure status code.
//
hr = AAFRESULT_ASSERTION_VIOLATION;
}
catch (...)
{
// We CANNOT throw an exception out of a COM interface method!
// Return a reasonable exception code.
//
hr = AAFRESULT_UNEXPECTED_EXCEPTION;
}
return hr;
}
| [
"johnhenry.liberty@gmail.com"
] | johnhenry.liberty@gmail.com |
2d0143d8e48faf7b55c212753d505d17275aa6a8 | 99249e222a2f35ac11a7fd93bff10a3a13f6f948 | /ros2_mod_ws/build/lifecycle_msgs/rosidl_typesupport_c/lifecycle_msgs/srv/get_available_states__response__type_support.cpp | c20518bed72bfed939940c5efbfd28dbf03a6067 | [
"Apache-2.0"
] | permissive | mintforpeople/robobo-ros2-ios-port | 87aec17a0c89c3fc5a42411822a18f08af8a5b0f | 1a5650304bd41060925ebba41d6c861d5062bfae | refs/heads/master | 2020-08-31T19:41:01.124753 | 2019-10-31T16:01:11 | 2019-10-31T16:01:11 | 218,764,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 934 | cpp | // generated from rosidl_typesupport_c/resource/msg__type_support.cpp.em
// generated code does not contain a copyright notice
#include <cstddef>
#include "rosidl_generator_c/message_type_support_struct.h"
#include "lifecycle_msgs/msg/rosidl_typesupport_c__visibility_control.h"
#include "lifecycle_msgs/srv/get_available_states__response__struct.h"
#include "rosidl_typesupport_c/visibility_control.h"
#include "lifecycle_msgs/srv/get_available_states__response__rosidl_typesupport_introspection_c.h"
#ifdef __cplusplus
extern "C"
{
#endif
ROSIDL_TYPESUPPORT_C_EXPORT_lifecycle_msgs
const rosidl_message_type_support_t *
ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_c, lifecycle_msgs, srv, GetAvailableStates_Response)() {
return ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, lifecycle_msgs, srv, GetAvailableStates_Response)();
}
#ifdef __cplusplus
}
#endif
| [
"lfllamas93@gmail.com"
] | lfllamas93@gmail.com |
40c51381a2cae85b57c914d6bd31dd569709c04b | 532a1553507266ec015fa94aa514195826914d28 | /Assignment1/DirectionalScript.h | 692bd0162f3cd250e5e752ecfae7cdcbce454beb | [] | no_license | Xeltide/DX9Engine | 5abb43edd3e3df8d32c34f2bb7322c24b1ac8c4b | 766ccce8deed4940a63bc499e2270afe5ea79f91 | refs/heads/master | 2021-04-28T08:23:27.331996 | 2018-02-28T19:11:11 | 2018-02-28T19:11:11 | 122,248,680 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 277 | h | #pragma once
#include "ObjectScript.h"
class DirectionalScript : public ObjectScript
{
public:
DirectionalScript(ObjectState* state);
virtual ~DirectionalScript() = default;
void Update(double deltaTime);
private:
bool mLightEnabled = true;
bool mWasReleased = false;
}; | [
"joshua.t.abe@gmail.com"
] | joshua.t.abe@gmail.com |
cb76f9acdc952524d6aec2298a9cce61fa7c1071 | 245dd5a6961a888355a725481065c567b71da738 | /LMS6002D/lms-suite/src/gui_src/lms6/dlgFreqVsCap.cpp | 6165e585e9bd07d1adb96dce2b4c79f36649a4d5 | [
"Apache-2.0"
] | permissive | serojik91/lms-suite | 17edcee1715d1f32ba221d335b69541713606b63 | 41c3e7e40a76d2520478e9f57bcd01d904907425 | refs/heads/master | 2020-12-24T06:36:35.535434 | 2015-05-04T12:45:46 | 2015-05-04T12:45:46 | 73,470,252 | 1 | 0 | null | 2016-11-11T10:55:06 | 2016-11-11T10:55:06 | null | UTF-8 | C++ | false | false | 18,118 | cpp | #include "dlgFreqVsCap.h"
//(*InternalHeaders(dlgFreqVsCap)
#include <wx/intl.h>
#include <wx/string.h>
//*)
#include "LMS6002_MainControl.h"
#include <wx/filedlg.h>
#include "PLL.h"
//(*IdInit(dlgFreqVsCap)
const long dlgFreqVsCap::ID_SPINCTRL1 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON1 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON2 = wxNewId();
const long dlgFreqVsCap::ID_GRID1 = wxNewId();
const long dlgFreqVsCap::ID_PANEL1 = wxNewId();
const long dlgFreqVsCap::ID_SPINCTRL2 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON3 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON4 = wxNewId();
const long dlgFreqVsCap::ID_GRID2 = wxNewId();
const long dlgFreqVsCap::ID_PANEL2 = wxNewId();
const long dlgFreqVsCap::ID_SPINCTRL3 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON5 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON6 = wxNewId();
const long dlgFreqVsCap::ID_GRID3 = wxNewId();
const long dlgFreqVsCap::ID_PANEL3 = wxNewId();
const long dlgFreqVsCap::ID_SPINCTRL4 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON7 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON8 = wxNewId();
const long dlgFreqVsCap::ID_GRID4 = wxNewId();
const long dlgFreqVsCap::ID_PANEL4 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON9 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON10 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON11 = wxNewId();
const long dlgFreqVsCap::ID_BUTTON12 = wxNewId();
//*)
using namespace lms6;
BEGIN_EVENT_TABLE(dlgFreqVsCap,wxDialog)
//(*EventTable(dlgFreqVsCap)
//*)
END_EVENT_TABLE()
dlgFreqVsCap::dlgFreqVsCap(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size)
{
lmsControl = NULL;
m_Rx = false;
BuildContent(parent,id,pos,size);
}
void dlgFreqVsCap::BuildContent(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size)
{
//(*Initialize(dlgFreqVsCap)
wxFlexGridSizer* FlexGridSizer4;
wxFlexGridSizer* FlexGridSizer3;
wxFlexGridSizer* FlexGridSizer5;
wxFlexGridSizer* FlexGridSizer9;
wxFlexGridSizer* FlexGridSizer2;
wxBoxSizer* BoxSizer2;
wxFlexGridSizer* FlexGridSizer7;
wxFlexGridSizer* FlexGridSizer8;
wxBoxSizer* BoxSizer1;
wxFlexGridSizer* FlexGridSizer6;
wxFlexGridSizer* FlexGridSizer1;
Create(parent, id, _("Frequency vs Capacitance"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE, _T("id"));
SetClientSize(wxDefaultSize);
Move(wxDefaultPosition);
FlexGridSizer1 = new wxFlexGridSizer(3, 2, 0, 0);
Panel1 = new wxPanel(this, ID_PANEL1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("ID_PANEL1"));
FlexGridSizer2 = new wxFlexGridSizer(2, 1, 0, 0);
FlexGridSizer3 = new wxFlexGridSizer(0, 3, 0, 0);
txtVCO1Pts = new wxSpinCtrl(Panel1, ID_SPINCTRL1, _T("3"), wxDefaultPosition, wxSize(49,21), 0, 0, 100, 3, _T("ID_SPINCTRL1"));
txtVCO1Pts->SetValue(_T("3"));
FlexGridSizer3->Add(txtVCO1Pts, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
btnSetVCO1_RFCnt = new wxButton(Panel1, ID_BUTTON1, _("Set VCO1 Value Count"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON1"));
FlexGridSizer3->Add(btnSetVCO1_RFCnt, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
btnViewGrphVCO1 = new wxButton(Panel1, ID_BUTTON2, _("Graph"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON2"));
btnViewGrphVCO1->Disable();
FlexGridSizer3->Add(btnViewGrphVCO1, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
FlexGridSizer2->Add(FlexGridSizer3, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
grdVco1 = new wxGrid(Panel1, ID_GRID1, wxDefaultPosition, wxDefaultSize, 0, _T("ID_GRID1"));
grdVco1->CreateGrid(3,2);
grdVco1->EnableEditing(true);
grdVco1->EnableGridLines(true);
grdVco1->SetRowLabelSize(48);
grdVco1->SetDefaultColSize(100, true);
grdVco1->SetColLabelValue(0, _("Vco1 Freq. GHz"));
grdVco1->SetColLabelValue(1, _("Vco1 Cap "));
grdVco1->SetDefaultCellFont( grdVco1->GetFont() );
grdVco1->SetDefaultCellTextColour( grdVco1->GetForegroundColour() );
FlexGridSizer2->Add(grdVco1, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
Panel1->SetSizer(FlexGridSizer2);
FlexGridSizer2->Fit(Panel1);
FlexGridSizer2->SetSizeHints(Panel1);
FlexGridSizer1->Add(Panel1, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
Panel2 = new wxPanel(this, ID_PANEL2, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("ID_PANEL2"));
FlexGridSizer4 = new wxFlexGridSizer(2, 1, 0, 0);
FlexGridSizer5 = new wxFlexGridSizer(0, 3, 0, 0);
txtVCO2Pts = new wxSpinCtrl(Panel2, ID_SPINCTRL2, _T("3"), wxDefaultPosition, wxSize(49,21), 0, 0, 100, 3, _T("ID_SPINCTRL2"));
txtVCO2Pts->SetValue(_T("3"));
FlexGridSizer5->Add(txtVCO2Pts, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
btnSetVCO2_RFCnt = new wxButton(Panel2, ID_BUTTON3, _("Set VCO2 Value Count"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON3"));
FlexGridSizer5->Add(btnSetVCO2_RFCnt, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
btnViewGrphVCO2 = new wxButton(Panel2, ID_BUTTON4, _("Graph"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON4"));
btnViewGrphVCO2->Disable();
FlexGridSizer5->Add(btnViewGrphVCO2, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
FlexGridSizer4->Add(FlexGridSizer5, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
grdVco2 = new wxGrid(Panel2, ID_GRID2, wxDefaultPosition, wxDefaultSize, 0, _T("ID_GRID2"));
grdVco2->CreateGrid(3,2);
grdVco2->EnableEditing(true);
grdVco2->EnableGridLines(true);
grdVco2->SetRowLabelSize(48);
grdVco2->SetDefaultColSize(100, true);
grdVco2->SetColLabelValue(0, _("Vco2 Freq. GHz"));
grdVco2->SetColLabelValue(1, _("Vco2 Cap "));
grdVco2->SetDefaultCellFont( grdVco2->GetFont() );
grdVco2->SetDefaultCellTextColour( grdVco2->GetForegroundColour() );
FlexGridSizer4->Add(grdVco2, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
Panel2->SetSizer(FlexGridSizer4);
FlexGridSizer4->Fit(Panel2);
FlexGridSizer4->SetSizeHints(Panel2);
FlexGridSizer1->Add(Panel2, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
Panel3 = new wxPanel(this, ID_PANEL3, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("ID_PANEL3"));
FlexGridSizer6 = new wxFlexGridSizer(2, 1, 0, 0);
FlexGridSizer7 = new wxFlexGridSizer(0, 3, 0, 0);
txtVCO3Pts = new wxSpinCtrl(Panel3, ID_SPINCTRL3, _T("3"), wxDefaultPosition, wxSize(49,21), 0, 0, 100, 3, _T("ID_SPINCTRL3"));
txtVCO3Pts->SetValue(_T("3"));
FlexGridSizer7->Add(txtVCO3Pts, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
btnSetVCO3_RFCnt = new wxButton(Panel3, ID_BUTTON5, _("Set VCO3 Value Count"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON5"));
FlexGridSizer7->Add(btnSetVCO3_RFCnt, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
btnViewGrphVCO3 = new wxButton(Panel3, ID_BUTTON6, _("Graph"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON6"));
btnViewGrphVCO3->Disable();
FlexGridSizer7->Add(btnViewGrphVCO3, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
FlexGridSizer6->Add(FlexGridSizer7, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
grdVco3 = new wxGrid(Panel3, ID_GRID3, wxDefaultPosition, wxDefaultSize, 0, _T("ID_GRID3"));
grdVco3->CreateGrid(3,2);
grdVco3->EnableEditing(true);
grdVco3->EnableGridLines(true);
grdVco3->SetRowLabelSize(48);
grdVco3->SetDefaultColSize(100, true);
grdVco3->SetColLabelValue(0, _("Vco3 Freq. GHz"));
grdVco3->SetColLabelValue(1, _("Vco3 Cap "));
grdVco3->SetDefaultCellFont( grdVco3->GetFont() );
grdVco3->SetDefaultCellTextColour( grdVco3->GetForegroundColour() );
FlexGridSizer6->Add(grdVco3, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
Panel3->SetSizer(FlexGridSizer6);
FlexGridSizer6->Fit(Panel3);
FlexGridSizer6->SetSizeHints(Panel3);
FlexGridSizer1->Add(Panel3, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
Panel4 = new wxPanel(this, ID_PANEL4, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("ID_PANEL4"));
FlexGridSizer8 = new wxFlexGridSizer(2, 1, 0, 0);
FlexGridSizer9 = new wxFlexGridSizer(0, 3, 0, 0);
txtVCO4Pts = new wxSpinCtrl(Panel4, ID_SPINCTRL4, _T("3"), wxDefaultPosition, wxSize(49,21), 0, 0, 100, 3, _T("ID_SPINCTRL4"));
txtVCO4Pts->SetValue(_T("3"));
FlexGridSizer9->Add(txtVCO4Pts, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
btnSetVCO4_RFCnt = new wxButton(Panel4, ID_BUTTON7, _("Set VCO4 Value Count"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON7"));
FlexGridSizer9->Add(btnSetVCO4_RFCnt, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
btnViewGrphVCO4 = new wxButton(Panel4, ID_BUTTON8, _("Graph"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON8"));
btnViewGrphVCO4->Disable();
FlexGridSizer9->Add(btnViewGrphVCO4, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
FlexGridSizer8->Add(FlexGridSizer9, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
grdVco4 = new wxGrid(Panel4, ID_GRID4, wxDefaultPosition, wxDefaultSize, 0, _T("ID_GRID4"));
grdVco4->CreateGrid(3,2);
grdVco4->EnableEditing(true);
grdVco4->EnableGridLines(true);
grdVco4->SetRowLabelSize(48);
grdVco4->SetDefaultColSize(100, true);
grdVco4->SetColLabelValue(0, _("Vco4 Freq. GHz"));
grdVco4->SetColLabelValue(1, _("Vco4 Cap "));
grdVco4->SetDefaultCellFont( grdVco4->GetFont() );
grdVco4->SetDefaultCellTextColour( grdVco4->GetForegroundColour() );
FlexGridSizer8->Add(grdVco4, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
Panel4->SetSizer(FlexGridSizer8);
FlexGridSizer8->Fit(Panel4);
FlexGridSizer8->SetSizeHints(Panel4);
FlexGridSizer1->Add(Panel4, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
BoxSizer1 = new wxBoxSizer(wxHORIZONTAL);
OKBtn = new wxButton(this, ID_BUTTON9, _("Ok"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON9"));
BoxSizer1->Add(OKBtn, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
CancelBtn = new wxButton(this, ID_BUTTON10, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON10"));
BoxSizer1->Add(CancelBtn, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
FlexGridSizer1->Add(BoxSizer1, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
BoxSizer2 = new wxBoxSizer(wxHORIZONTAL);
btnLoad = new wxButton(this, ID_BUTTON11, _("Load"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON11"));
BoxSizer2->Add(btnLoad, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
btnSave = new wxButton(this, ID_BUTTON12, _("Save"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON12"));
BoxSizer2->Add(btnSave, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
FlexGridSizer1->Add(BoxSizer2, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
SetSizer(FlexGridSizer1);
FlexGridSizer1->Fit(this);
FlexGridSizer1->SetSizeHints(this);
Connect(ID_BUTTON1,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&dlgFreqVsCap::OnbtnSetVCO1_RFCntClick);
Connect(ID_BUTTON2,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&dlgFreqVsCap::OnbtnViewGrphVCO1Click);
Connect(ID_BUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&dlgFreqVsCap::OnbtnSetVCO2_RFCntClick);
Connect(ID_BUTTON5,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&dlgFreqVsCap::OnbtnSetVCO3_RFCntClick);
Connect(ID_BUTTON7,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&dlgFreqVsCap::OnbtnSetVCO4_RFCntClick);
Connect(ID_BUTTON9,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&dlgFreqVsCap::OKBtnClick);
Connect(ID_BUTTON10,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&dlgFreqVsCap::OnCancelBtnClick);
Connect(ID_BUTTON11,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&dlgFreqVsCap::btnLoadClick);
Connect(ID_BUTTON12,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&dlgFreqVsCap::btnSaveClick);
//*)
}
dlgFreqVsCap::~dlgFreqVsCap()
{
//(*Destroy(dlgFreqVsCap)
//*)
}
void dlgFreqVsCap::SetTblRws(int Cnt, wxGrid *grd)
{
if (Cnt > grd->GetRows())
{
for (int i = grd->GetRows(); i < Cnt; i++)
{
grd->AppendRows(1);
grd->SetCellValue(i, 0, "");
grd->SetCellValue(i, 1, "");
}
}
else
{
for (int i = grd->GetRows()-1; i >= Cnt; i--)
{
grd->DeleteRows(i);
}
}
};
// ---------------------------------------------------------------------------
void dlgFreqVsCap::btnSaveClick(wxCommandEvent& event)
{
wxFileDialog saveFileDialog(this, _("Save file"), "", "", "VCO Values (*.txt)|*.txt", wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
if (saveFileDialog.ShowModal() == wxID_OK)
{
PLL *ppll;
if(m_Rx)
ppll = &lmsControl->m_RxPLL;
else
ppll = &lmsControl->m_TxPLL;
sVcoVsCap *sVco = new sVcoVsCap();
ConstructValues(sVco, grdVco1, txtVCO1Pts);
ppll->setVcoCap(0, sVco);
DestroyValues(sVco);
sVco = new sVcoVsCap();
ConstructValues(sVco, grdVco2, txtVCO2Pts);
ppll->setVcoCap(1, sVco);
DestroyValues(sVco);
sVco = new sVcoVsCap();
ConstructValues(sVco, grdVco3, txtVCO3Pts);
ppll->setVcoCap(2, sVco);
DestroyValues(sVco);
sVco = new sVcoVsCap();
ConstructValues(sVco, grdVco4, txtVCO4Pts);
ppll->setVcoCap(3, sVco);
DestroyValues(sVco);
ppll->SaveToFile(saveFileDialog.GetPath().ToStdString().c_str());
};
}
// ---------------------------------------------------------------------------
void dlgFreqVsCap::btnLoadClick(wxCommandEvent& event)
{
wxFileDialog *openFileDialog = new wxFileDialog(this, _("Open file"), "", "", "VCO Values (*.txt)|*.txt", wxFD_OPEN|wxFD_FILE_MUST_EXIST);
if (openFileDialog->ShowModal() == wxID_CANCEL)
return;
PLL *ppll;
if(m_Rx)
ppll = &lmsControl->m_RxPLL;
else
ppll = &lmsControl->m_TxPLL;
ppll->LoadFromFile(openFileDialog->GetPath().ToStdString().c_str());
Initialize(lmsControl, m_Rx);
}
// ---------------------------------------------------------------------------
void dlgFreqVsCap::ConstructValues(sVcoVsCap *Vco, wxGrid *grdVco, wxSpinCtrl *VCOPts)
{
Vco->iRef = VCOPts->GetValue();
Vco->dFreq = new double[Vco->iRef];
Vco->iCap = new double[Vco->iRef];
for (int i = 0; i < Vco->iRef; i++)
{
Vco->dFreq[i] = 1000.0*atof((grdVco->GetCellValue(i, 0).ToStdString().c_str()));
Vco->iCap[i] = atof((grdVco->GetCellValue(i, 1).ToStdString().c_str()));
};
};
// ---------------------------------------------------------------------------
void dlgFreqVsCap::FormDestroy(wxCommandEvent& event)
{
}
// ---------------------------------------------------------------------------
void dlgFreqVsCap::OKBtnClick(wxCommandEvent& event)
{
PLL *ppll;
if(m_Rx)
ppll = &lmsControl->m_RxPLL;
else
ppll = &lmsControl->m_TxPLL;
sVcoVsCap *sVco = new sVcoVsCap();
ConstructValues(sVco, grdVco1, txtVCO1Pts);
ppll->setVcoCap(0, sVco);
DestroyValues(sVco);
sVco = new sVcoVsCap();
ConstructValues(sVco, grdVco2, txtVCO2Pts);
ppll->setVcoCap(1, sVco);
DestroyValues(sVco);
sVco = new sVcoVsCap();
ConstructValues(sVco, grdVco3, txtVCO3Pts);
ppll->setVcoCap(2, sVco);
DestroyValues(sVco);
sVco = new sVcoVsCap();
ConstructValues(sVco, grdVco4, txtVCO4Pts);
ppll->setVcoCap(3, sVco);
DestroyValues(sVco);
EndModal(wxID_OK);
}
// ---------------------------------------------------------------------------
void dlgFreqVsCap::Initialize(LMS6002_MainControl *pControl, bool Rx)
{
lmsControl = pControl;
m_Rx = Rx;
PLL *ppll;
if(Rx)
ppll = &lmsControl->m_RxPLL;
else
ppll = &lmsControl->m_TxPLL;
ShowVCOValues(ppll->getVcoCap(0), grdVco1, txtVCO1Pts);
ShowVCOValues(ppll->getVcoCap(1), grdVco2, txtVCO2Pts);
ShowVCOValues(ppll->getVcoCap(2), grdVco3, txtVCO3Pts);
ShowVCOValues(ppll->getVcoCap(3), grdVco4, txtVCO4Pts);
};
// ---------------------------------------------------------------------------
void dlgFreqVsCap::ShowVCOValues(const sVcoVsCap *Vco, wxGrid *grdVco, wxSpinCtrl *VCOPts)
{
VCOPts->SetValue(Vco->iRef);
SetTblRws(Vco->iRef, grdVco);
for (int i = 0; i < Vco->iRef; i++)
{
grdVco->SetCellValue(i, 0, wxString::Format("%f", Vco->dFreq[i]/1000.0));
grdVco->SetCellValue(i, 1, wxString::Format("%.0f", Vco->iCap[i]));
};
};
void dlgFreqVsCap::OnbtnSetVCO1_RFCntClick(wxCommandEvent& event)
{
SetTblRws( txtVCO1Pts->GetValue(), grdVco1);
}
void dlgFreqVsCap::OnbtnSetVCO2_RFCntClick(wxCommandEvent& event)
{
SetTblRws( txtVCO2Pts->GetValue(), grdVco2);
}
void dlgFreqVsCap::OnbtnSetVCO3_RFCntClick(wxCommandEvent& event)
{
SetTblRws( txtVCO3Pts->GetValue(), grdVco3);
}
void dlgFreqVsCap::OnbtnSetVCO4_RFCntClick(wxCommandEvent& event)
{
SetTblRws( txtVCO4Pts->GetValue(), grdVco4);
}
void dlgFreqVsCap::OnbtnViewGrphVCO1Click(wxCommandEvent& event)
{
}
void dlgFreqVsCap::OnbtnViewGrphVCO2Click(wxCommandEvent& event)
{
}
void dlgFreqVsCap::OnbtnViewGrphVCO3Click(wxCommandEvent& event)
{
}
void dlgFreqVsCap::OnbtnViewGrphVCO4Click(wxCommandEvent& event)
{
}
void dlgFreqVsCap::OnCancelBtnClick(wxCommandEvent& event)
{
EndModal(wxID_CANCEL);
}
// ---------------------------------------------------------------------------
void dlgFreqVsCap::DestroyValues(sVcoVsCap *Vco)
{
if (Vco->iRef)
{
Vco->iRef = 0;
delete[]Vco->dFreq;
Vco->dFreq = NULL;
delete[]Vco->iCap;
Vco->iCap = NULL;
};
};
| [
"arback@computer.org"
] | arback@computer.org |
4b80b5c153b7fde6678ef0a2b91d817bb9508b42 | 00efed2379b62b0a108f17532475530d7d3fd53f | /CutVarAnalysis/cutVarFDsub/AliHFCutVarFDsubAnalysisManagerDplus.cxx | 7caad46641571556b1971bab01979dc1dbf01950 | [] | no_license | fgrosa/ALICE_code_dev | 9f92074a1b6954d50555010c8641bb70a7f77222 | 7755906dac4bb15bdb553dcaf28257428a26da4c | refs/heads/master | 2021-01-13T12:44:27.176947 | 2016-11-17T08:15:47 | 2016-11-17T08:15:47 | 72,528,839 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,901 | cxx | #include "AliHFCutVarFDsubAnalysisManagerDplus.h"
#include <iostream>
#include <vector>
#include "TH1F.h"
#include "TList.h"
#include "TFile.h"
#include "AliNormalizationCounter.h"
#include "AliHFCutVarFDsubAxis.h"
#include "AliHFCutVarFDsubCut.h"
#include "AliHFCutVarFDsubCutSet.h"
/// \cond CLASSIMP
ClassImp(AliHFCutVarFDsubAnalysisManagerDplus);
/// \endcond
using std::cerr;
using std::cout;
using std::endl;
using std::vector;
AliHFCutVarFDsubAnalysisManagerDplus::AliHFCutVarFDsubAnalysisManagerDplus()
: AliHFCutVarFDsubAnalysisManager()
, fNevents(0.)
, fPID(kTRUE)
, fPIDAxis(3)
{
/// Default constructor
}
//_________________________________________________________________________________________________
AliHFCutVarFDsubAnalysisManagerDplus::~AliHFCutVarFDsubAnalysisManagerDplus() {
/// Destructor
}
//_________________________________________________________________________________________________
Int_t AliHFCutVarFDsubAnalysisManagerDplus::GetTHnSparses(const TString strFileMC,
const TString strFileData,
const TString strDirMC,
const TString strDirData,
const TString strListMC,
const TString strListData,
Bool_t MConly) {
/// Retrieve the input data
//------------------------------------------------------------------------------------------------
//MC THnSparses
TFile *infileMC = TFile::Open(strFileMC.Data(),"READ");//open MC file
if (!infileMC) {cerr << "File " << strFileMC << " not found!" << endl; return 1;}
TDirectoryFile *DplusDirMC = (TDirectoryFile*)infileMC->Get(strDirMC.Data());//open MC directory
if (!DplusDirMC) {cerr << "Directory " << strDirMC << " not found!" << endl; return 2;}
TList *ListMC = (TList*)DplusDirMC->Get(strListMC.Data());//get MC list
if (!ListMC) {cerr << "List " << strListMC << " not found!" << endl; return 3;}
//get THnSparses
fMCafterCuts[kPrompt] = (THnSparseF*)ListMC->FindObject("hMassPtImpParPrompt");
if (!fMCafterCuts[kPrompt]) { cerr << "THnSparseF hMassPtImpParPrompt not found!" << endl; return 4; }
fMCafterCuts[kFD] = (THnSparseF*)ListMC->FindObject("hMassPtImpParBfeed");
if (!fMCafterCuts[kFD]) { cerr << "THnSparseF hMassPtImpParBfeed not found!" << endl; return 5; }
fMCgenLevel[kPrompt] = (THnSparseF*)ListMC->FindObject("hMCAccPrompt");
if (!fMCgenLevel[kPrompt]) { cerr << "THnSparseF hMCAccPrompt not found!" << endl; return 6; }
fMCgenLevel[kFD] = (THnSparseF*)ListMC->FindObject("hMCAccBFeed");
if (!fMCgenLevel[kFD]) { cerr << "THnSparseF hMCAccBFeed not found!" << endl; return 7; }
//-------------------------------------------------------------------------------------------------
//Real Data
TString normobj=strListData;
normobj.ReplaceAll("coutputDplus","coutputDplusNorm");
if(MConly) {
//get THnSparse from MC file
fData = (THnSparseF*)ListMC->FindObject("hMassPtImpParAll");
if (!fData) { cerr << "THnSparseF hMassPtImpParAll not found!" << endl; return 8; }
//Dummy number of events in case of MC
fNevents = 1;
}
else {
TFile *infileData = TFile::Open(strFileData.Data(),"READ");//open Data file
if (!infileData) {cerr << "File " << strFileData << " not found!" << endl; return 10;}
TDirectoryFile *DplusDirData = (TDirectoryFile*)infileData->Get(strDirData.Data());//open Data directory
if (!DplusDirData) {cerr << "Directory " << strDirData << " not found!" << endl; return 11;}
TList *ListData = (TList*)DplusDirData->Get(strListData.Data());//get Data list
if (!ListData) {cerr << "List " << strListData << " not found!" << endl; return 12;}
//get THnSparse from Data file
fData = (THnSparseF*)ListData->FindObject("hMassPtImpParAll");
if (!fData) { cerr << "THnSparseF hMassPtImpParAll not found!" << endl; return 8; }
//Number of events from normalization counter
AliNormalizationCounter* nc=(AliNormalizationCounter*)DplusDirData->Get(normobj.Data());
fNevents = nc->GetNEventsForNorm();
}
return 0;
}
//_________________________________________________________________________________________________
void AliHFCutVarFDsubAnalysisManagerDplus::GetCuts(Double_t*** cutslowset,
Double_t*** cutshighset,
Double_t** means,
Double_t** sigmas,
Int_t Rebin,
Int_t fsig,
Int_t fbkg,
Double_t min,
Double_t max,
Int_t nSets,
Int_t nPtBins,
Int_t nCutVariables) {
/// Prepare the cuts
if (fCuts) {
delete fCuts;
fCuts = 0x0;
}
fCuts= new TList();
fCuts->SetOwner(0);
TList *ptBin = 0x0;
AliHFCutVarFDsubCutSet **cutset = new AliHFCutVarFDsubCutSet*[nSets];
for(Int_t iPt=0; iPt<nPtBins; iPt++) {
ptBin = new TList();
ptBin->SetOwner(0);
for(Int_t iSet=0; iSet<nSets; iSet++) {
cutset[iSet] = new AliHFCutVarFDsubCutSet(1.72,2.05,means[iSet][iPt],sigmas[iSet][iPt],Rebin,fbkg,fsig,0);
for(Int_t iCutVar=0; iCutVar<nCutVariables; iCutVar++) {
cutset[iSet]->AddCut(new AliHFCutVarFDsubCut(iCutVar,cutslowset[iSet][iPt][iCutVar],cutshighset[iSet][iPt][iCutVar]));
}
if(fPID) {
cutset[iSet]->AddCut(new AliHFCutVarFDsubCut(nCutVariables,1.51,2.49));
}
ptBin->Add((TObject*)cutset[iSet]);
}
fCuts->Add((TObject*)ptBin);
}
}
//_________________________________________________________________________________________________
void AliHFCutVarFDsubAnalysisManagerDplus::GetAxes(UInt_t* dataAxesNo, UInt_t* MCGenAxesNo, UInt_t* MCCutAxesNo, TString* axesName, Int_t nAxes, Bool_t *isCutSymm=0x0) {
if (fAxes) {
delete fAxes;
fAxes = 0x0;
}
fAxes = new TList();
fAxes->SetOwner();
// -1 means axis is not existent (or not used)
//
// On the generator level, one doesn't want to cut on the variation variables, but one would
// like to select e.g. pt bins. In order to be to use the same cut for this, variables on
// which one doesn't what to cut at generator level have the corresponding axes set to -1
for(Int_t iAxis=0; iAxis<nAxes; iAxis++) {
if(dataAxesNo[iAxis]==fPIDAxis)
continue; /// PID axis set with SetPID();
if(isCutSymm)
fAxes->Add((TObject*)new AliHFCutVarFDsubAxis(dataAxesNo[iAxis],MCGenAxesNo[iAxis],MCCutAxesNo[iAxis],axesName[iAxis],isCutSymm[iAxis]));
else
fAxes->Add((TObject*)new AliHFCutVarFDsubAxis(dataAxesNo[iAxis],MCGenAxesNo[iAxis],MCCutAxesNo[iAxis],axesName[iAxis],kFALSE));
}
if(fPID) {
fAxes->Add((TObject*)new AliHFCutVarFDsubAxis(fPIDAxis,(UInt_t)-1,fPIDAxis,"PID",kFALSE));
}
}
//_________________________________________________________________________________________________
TH1F* AliHFCutVarFDsubAnalysisManagerDplus::CalculateCrossSection(TString AccFilePath,
TString GenLimAccHistoName,
TString GenAccHistoName,
Int_t PromptOrFD,
Double_t BR,
Double_t sigma) {
if(!fCorrYieldPrompt || !fCorrYieldFD) {
cerr << "Minimisation needed before calculate cross section" << endl;
return 0x0;
}
else if(AccFilePath=="") {
cerr << "The Acceptance Factor needed to calculate the cross section" << endl;
return 0x0;
}
else {
TFile *AccFile = TFile::Open(AccFilePath.Data(),"READ");
if (!AccFile) {
cerr << "File " << AccFilePath << " not found!" << endl;
return 0x0;
}
else {
TH1F* hPtGenLimAcc = (TH1F*)AccFile->Get(GenLimAccHistoName.Data());
TH1F* hPtGenAcc = (TH1F*)AccFile->Get(GenAccHistoName.Data());
hPtGenAcc->SetDirectory(0);
hPtGenLimAcc->SetDirectory(0);
AccFile->Close();
TAxis* PtAxis = (TAxis*)fCorrYieldPrompt->GetXaxis();
TArrayD* PtBinsArray = (TArrayD*)PtAxis->GetXbins();
Double_t* PtLims = (Double_t*)PtBinsArray->GetArray();
Int_t nPtBins = PtBinsArray->GetSize()-1;
TH1F* hPtGenLimAccReb = (TH1F*)hPtGenLimAcc->Rebin(nPtBins, "hPtGenLimAccReb", PtLims);
TH1F* hPtGenAccReb = (TH1F*)hPtGenAcc->Rebin(nPtBins,"hPtGenAccReb", PtLims);
hPtGenLimAccReb->Sumw2();
hPtGenAccReb->Sumw2();
TH1F* hPtAcc = new TH1F("hPtAcc","",nPtBins,PtLims);
hPtAcc->Divide(hPtGenAccReb,hPtGenLimAccReb,1.,1.,"B");
TString crosssectype="Prompt";
if(PromptOrFD==kFD) crosssectype="FD";
TH1F* hCrossSec = new TH1F(Form("hCrossSec%s",crosssectype.Data()),"",nPtBins,PtLims);
for(Int_t iBin=0; iBin<nPtBins; iBin++) {
Double_t CrossSec;
Double_t CrossSecError;
if(PromptOrFD==kPrompt) {
//cross section in mubarn
CrossSec = 1./hPtAcc->GetBinContent(iBin+1)*fCorrYieldPrompt->GetBinContent(iBin+1)*sigma*1000000./(2*(PtLims[iBin+1]-PtLims[iBin])*fNevents*BR);
CrossSecError = TMath::Sqrt((fCorrYieldPrompt->GetBinError(iBin+1)/fCorrYieldPrompt->GetBinContent(iBin+1))*(fCorrYieldPrompt->GetBinError(iBin+1)/fCorrYieldPrompt->GetBinContent(iBin+1))+(hPtAcc->GetBinError(iBin+1)/hPtAcc->GetBinContent(iBin+1))*(hPtAcc->GetBinError(iBin+1)/hPtAcc->GetBinContent(iBin+1)))*CrossSec;
}
else {
CrossSec = 1./hPtAcc->GetBinContent(iBin+1)*fCorrYieldFD->GetBinContent(iBin+1)*sigma*1000000./(2*(PtLims[iBin+1]-PtLims[iBin])*fNevents*BR);
CrossSecError = TMath::Sqrt((fCorrYieldFD->GetBinError(iBin+1)/fCorrYieldFD->GetBinContent(iBin+1))*(fCorrYieldFD->GetBinError(iBin+1)/fCorrYieldFD->GetBinContent(iBin+1))+(hPtAcc->GetBinError(iBin+1)/hPtAcc->GetBinContent(iBin+1))*(hPtAcc->GetBinError(iBin+1)/hPtAcc->GetBinContent(iBin+1)))*CrossSec;
}
hCrossSec->SetBinContent(iBin+1,CrossSec);
hCrossSec->SetBinError(iBin+1,CrossSecError);
}
hCrossSec->GetXaxis()->SetTitle("#it{p}_{T} (GeV/c)");
hCrossSec->GetYaxis()->SetTitle("#frac{d#sigma}{d#it{p}_{T}} (#mub c/GeV)");
hCrossSec->GetYaxis()->SetTitleOffset(1.1);
delete hPtAcc;
hPtAcc = 0x0;
return hCrossSec;
}
}
}
//_________________________________________________________________________________________________
AliHFCutVarFDsubAnalysisManagerDplus::AliHFCutVarFDsubAnalysisManagerDplus(const AliHFCutVarFDsubAnalysisManagerDplus& am)
: AliHFCutVarFDsubAnalysisManager(am)
, fNevents(am.fNevents)
, fPID(am.fPID)
, fPIDAxis(am.fPIDAxis)
{
/// Copy constructor
// TODO: do proper deep copies
Printf("Do not use this copy constructor!");
}
AliHFCutVarFDsubAnalysisManagerDplus& AliHFCutVarFDsubAnalysisManagerDplus::operator=(const AliHFCutVarFDsubAnalysisManagerDplus& am)
{
/// Assignment operator
// TODO: do proper deep copies
Printf("Do not use this assignment operator!");
if (this != &am) {
AliHFCutVarFDsubAnalysisManager::operator=(am);
fNevents = am.fNevents;
fPID = am.fPID;
fPIDAxis = am.fPIDAxis;
}
return *this;
}
| [
"noreply@github.com"
] | noreply@github.com |
9aa1434df3a202da01d5930a29cc53246c311067 | 485156ab080907777c4dca48e1ca9c2cf0770d52 | /Olymp/Open/2019/qualification/F/optimal.cpp | 2ba10655685f940f06da3fc5e99d5d0b1b103313 | [] | no_license | AleksanderKirintsev/study | 33957bcf1c911a00bcac585f644440ef8311e9a1 | 70e1be6171d08b7faed184254db4b0d9a661c45f | refs/heads/master | 2022-02-04T09:08:56.162788 | 2020-04-21T16:16:15 | 2020-04-21T16:16:15 | 141,019,743 | 0 | 0 | null | 2022-01-22T14:13:28 | 2018-07-15T10:54:45 | C++ | UTF-8 | C++ | false | false | 1,419 | cpp | #include <iostream>
#include <bitset>
#include <map>
#include <algorithm>
using namespace std;
#define X first
#define Y second
const int NLIM = 1e6;
int n;
int *a,*b;
bool optimal() {
map<int,int> m;
bitset<NLIM> bs;
bs.set();
int *d = new int[n];
for(int i = bs._Find_first(); i < n; i = bs._Find_first()) {
int ind = -1;
int q = 0;
d[q++] = i;
ind = (a[i] == b[i] ? 0 : ind);
bs[i] = 0;
for(int j = a[i]; j != i; d[q++] = j,j = a[j]) {
ind = (j == b[i] ? q : ind);
bs[j] = 0;
}
if(ind == -1)
return 0;
pair<int,int> pr[q];
for(int j = 0; j < q; j++) {
pr[j].X = d[j];
pr[j].Y = d[(j + ind) % q];
}
sort(pr.begin(),pr.end());
for(int j = 0; j < q; j++)
if(px[j].Y != b[px[j].X])
return 0;
if(m[q] == 0 || m[q] == ind+1)
m[q] == ind+1;
else
return 0;
for(int j = 0; j < q; j++)
cout << d[j] << " ";
cout << endl;
}
for(auto i : m)
return 1;
}
int main() {
freopen("tests/08","r",stdin);
cin >> n;
a = new int[n];
for (int i = 0; i < n; a[i++]--)
cin >> a[i];
b = new int[n];
for (int i = 0; i < n; b[i++]--)
cin >> b[i];
cout << (optimal() ? "Yes" : "No");
return 0;
}
| [
"kirintsev00@mail.ru"
] | kirintsev00@mail.ru |
4ec2ac46b568e8cdfe01b11e9b604570bbde0d53 | bb75a19ff099868094ef5ed0b9cf9d4e341fde7c | /sdk/storage/azure-storage-blobs/src/blob_container_client.cpp | 59d6dd62c778fb1c511e0186f150ebc240a9f60f | [
"MIT",
"LicenseRef-scancode-generic-cla",
"BSD-3-Clause",
"Apache-2.0",
"curl",
"LGPL-2.1-or-later"
] | permissive | d-winsor/azure-sdk-for-cpp | 624a33e79d11826a1e39d5c4e9c266ac6436d014 | 7f6930678ca6dce3cd1fe75428a465388b7314e8 | refs/heads/main | 2023-06-29T08:34:26.546288 | 2021-08-04T17:33:29 | 2021-08-04T17:33:29 | 392,803,794 | 0 | 0 | MIT | 2021-08-04T19:45:58 | 2021-08-04T19:24:05 | null | UTF-8 | C++ | false | false | 16,768 | cpp | // Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include "azure/storage/blobs/blob_container_client.hpp"
#include <azure/core/http/policies/policy.hpp>
#include <azure/storage/common/internal/constants.hpp>
#include <azure/storage/common/internal/shared_key_policy.hpp>
#include <azure/storage/common/internal/storage_per_retry_policy.hpp>
#include <azure/storage/common/internal/storage_service_version_policy.hpp>
#include <azure/storage/common/internal/storage_switch_to_secondary_policy.hpp>
#include <azure/storage/common/storage_common.hpp>
#include "azure/storage/blobs/append_blob_client.hpp"
#include "azure/storage/blobs/block_blob_client.hpp"
#include "azure/storage/blobs/page_blob_client.hpp"
#include "private/package_version.hpp"
namespace Azure { namespace Storage { namespace Blobs {
BlobContainerClient BlobContainerClient::CreateFromConnectionString(
const std::string& connectionString,
const std::string& blobContainerName,
const BlobClientOptions& options)
{
auto parsedConnectionString = _internal::ParseConnectionString(connectionString);
auto blobContainerUrl = std::move(parsedConnectionString.BlobServiceUrl);
blobContainerUrl.AppendPath(_internal::UrlEncodePath(blobContainerName));
if (parsedConnectionString.KeyCredential)
{
return BlobContainerClient(
blobContainerUrl.GetAbsoluteUrl(), parsedConnectionString.KeyCredential, options);
}
else
{
return BlobContainerClient(blobContainerUrl.GetAbsoluteUrl(), options);
}
}
BlobContainerClient::BlobContainerClient(
const std::string& blobContainerUrl,
std::shared_ptr<StorageSharedKeyCredential> credential,
const BlobClientOptions& options)
: BlobContainerClient(blobContainerUrl, options)
{
BlobClientOptions newOptions = options;
newOptions.PerRetryPolicies.emplace_back(
std::make_unique<_internal::SharedKeyPolicy>(credential));
std::vector<std::unique_ptr<Azure::Core::Http::Policies::HttpPolicy>> perRetryPolicies;
std::vector<std::unique_ptr<Azure::Core::Http::Policies::HttpPolicy>> perOperationPolicies;
perRetryPolicies.emplace_back(std::make_unique<_internal::StorageSwitchToSecondaryPolicy>(
m_blobContainerUrl.GetHost(), newOptions.SecondaryHostForRetryReads));
perRetryPolicies.emplace_back(std::make_unique<_internal::StoragePerRetryPolicy>());
perOperationPolicies.emplace_back(
std::make_unique<_internal::StorageServiceVersionPolicy>(newOptions.ApiVersion));
m_pipeline = std::make_shared<Azure::Core::Http::_internal::HttpPipeline>(
newOptions,
_internal::BlobServicePackageName,
_detail::PackageVersion::ToString(),
std::move(perRetryPolicies),
std::move(perOperationPolicies));
}
BlobContainerClient::BlobContainerClient(
const std::string& blobContainerUrl,
std::shared_ptr<Core::Credentials::TokenCredential> credential,
const BlobClientOptions& options)
: BlobContainerClient(blobContainerUrl, options)
{
std::vector<std::unique_ptr<Azure::Core::Http::Policies::HttpPolicy>> perRetryPolicies;
std::vector<std::unique_ptr<Azure::Core::Http::Policies::HttpPolicy>> perOperationPolicies;
perRetryPolicies.emplace_back(std::make_unique<_internal::StorageSwitchToSecondaryPolicy>(
m_blobContainerUrl.GetHost(), options.SecondaryHostForRetryReads));
perRetryPolicies.emplace_back(std::make_unique<_internal::StoragePerRetryPolicy>());
{
Azure::Core::Credentials::TokenRequestContext tokenContext;
tokenContext.Scopes.emplace_back(_internal::StorageScope);
perRetryPolicies.emplace_back(
std::make_unique<Azure::Core::Http::Policies::_internal::BearerTokenAuthenticationPolicy>(
credential, tokenContext));
}
perOperationPolicies.emplace_back(
std::make_unique<_internal::StorageServiceVersionPolicy>(options.ApiVersion));
m_pipeline = std::make_shared<Azure::Core::Http::_internal::HttpPipeline>(
options,
_internal::BlobServicePackageName,
_detail::PackageVersion::ToString(),
std::move(perRetryPolicies),
std::move(perOperationPolicies));
}
BlobContainerClient::BlobContainerClient(
const std::string& blobContainerUrl,
const BlobClientOptions& options)
: m_blobContainerUrl(blobContainerUrl), m_customerProvidedKey(options.CustomerProvidedKey),
m_encryptionScope(options.EncryptionScope)
{
std::vector<std::unique_ptr<Azure::Core::Http::Policies::HttpPolicy>> perRetryPolicies;
std::vector<std::unique_ptr<Azure::Core::Http::Policies::HttpPolicy>> perOperationPolicies;
perRetryPolicies.emplace_back(std::make_unique<_internal::StorageSwitchToSecondaryPolicy>(
m_blobContainerUrl.GetHost(), options.SecondaryHostForRetryReads));
perRetryPolicies.emplace_back(std::make_unique<_internal::StoragePerRetryPolicy>());
perOperationPolicies.emplace_back(
std::make_unique<_internal::StorageServiceVersionPolicy>(options.ApiVersion));
m_pipeline = std::make_shared<Azure::Core::Http::_internal::HttpPipeline>(
options,
_internal::BlobServicePackageName,
_detail::PackageVersion::ToString(),
std::move(perRetryPolicies),
std::move(perOperationPolicies));
}
BlobClient BlobContainerClient::GetBlobClient(const std::string& blobName) const
{
auto blobUrl = m_blobContainerUrl;
blobUrl.AppendPath(_internal::UrlEncodePath(blobName));
return BlobClient(std::move(blobUrl), m_pipeline, m_customerProvidedKey, m_encryptionScope);
}
BlockBlobClient BlobContainerClient::GetBlockBlobClient(const std::string& blobName) const
{
return GetBlobClient(blobName).AsBlockBlobClient();
}
AppendBlobClient BlobContainerClient::GetAppendBlobClient(const std::string& blobName) const
{
return GetBlobClient(blobName).AsAppendBlobClient();
}
PageBlobClient BlobContainerClient::GetPageBlobClient(const std::string& blobName) const
{
return GetBlobClient(blobName).AsPageBlobClient();
}
Azure::Response<Models::CreateBlobContainerResult> BlobContainerClient::Create(
const CreateBlobContainerOptions& options,
const Azure::Core::Context& context) const
{
_detail::BlobRestClient::BlobContainer::CreateBlobContainerOptions protocolLayerOptions;
protocolLayerOptions.AccessType = options.AccessType;
protocolLayerOptions.Metadata = options.Metadata;
protocolLayerOptions.DefaultEncryptionScope = options.DefaultEncryptionScope;
protocolLayerOptions.PreventEncryptionScopeOverride = options.PreventEncryptionScopeOverride;
return _detail::BlobRestClient::BlobContainer::Create(
*m_pipeline, m_blobContainerUrl, protocolLayerOptions, context);
}
Azure::Response<Models::CreateBlobContainerResult> BlobContainerClient::CreateIfNotExists(
const CreateBlobContainerOptions& options,
const Azure::Core::Context& context) const
{
try
{
return Create(options, context);
}
catch (StorageException& e)
{
if (e.StatusCode == Core::Http::HttpStatusCode::Conflict
&& e.ErrorCode == "ContainerAlreadyExists")
{
Models::CreateBlobContainerResult ret;
ret.Created = false;
return Azure::Response<Models::CreateBlobContainerResult>(
std::move(ret), std::move(e.RawResponse));
}
throw;
}
}
Azure::Response<Models::DeleteBlobContainerResult> BlobContainerClient::Delete(
const DeleteBlobContainerOptions& options,
const Azure::Core::Context& context) const
{
_detail::BlobRestClient::BlobContainer::DeleteBlobContainerOptions protocolLayerOptions;
protocolLayerOptions.LeaseId = options.AccessConditions.LeaseId;
protocolLayerOptions.IfModifiedSince = options.AccessConditions.IfModifiedSince;
protocolLayerOptions.IfUnmodifiedSince = options.AccessConditions.IfUnmodifiedSince;
return _detail::BlobRestClient::BlobContainer::Delete(
*m_pipeline, m_blobContainerUrl, protocolLayerOptions, context);
}
Azure::Response<Models::DeleteBlobContainerResult> BlobContainerClient::DeleteIfExists(
const DeleteBlobContainerOptions& options,
const Azure::Core::Context& context) const
{
try
{
return Delete(options, context);
}
catch (StorageException& e)
{
if (e.StatusCode == Core::Http::HttpStatusCode::NotFound
&& e.ErrorCode == "ContainerNotFound")
{
Models::DeleteBlobContainerResult ret;
ret.Deleted = false;
return Azure::Response<Models::DeleteBlobContainerResult>(
std::move(ret), std::move(e.RawResponse));
}
throw;
}
}
Azure::Response<Models::BlobContainerProperties> BlobContainerClient::GetProperties(
const GetBlobContainerPropertiesOptions& options,
const Azure::Core::Context& context) const
{
_detail::BlobRestClient::BlobContainer::GetBlobContainerPropertiesOptions protocolLayerOptions;
protocolLayerOptions.LeaseId = options.AccessConditions.LeaseId;
return _detail::BlobRestClient::BlobContainer::GetProperties(
*m_pipeline,
m_blobContainerUrl,
protocolLayerOptions,
_internal::WithReplicaStatus(context));
}
Azure::Response<Models::SetBlobContainerMetadataResult> BlobContainerClient::SetMetadata(
Metadata metadata,
SetBlobContainerMetadataOptions options,
const Azure::Core::Context& context) const
{
_detail::BlobRestClient::BlobContainer::SetBlobContainerMetadataOptions protocolLayerOptions;
protocolLayerOptions.Metadata = metadata;
protocolLayerOptions.LeaseId = options.AccessConditions.LeaseId;
protocolLayerOptions.IfModifiedSince = options.AccessConditions.IfModifiedSince;
return _detail::BlobRestClient::BlobContainer::SetMetadata(
*m_pipeline, m_blobContainerUrl, protocolLayerOptions, context);
}
ListBlobsPagedResponse BlobContainerClient::ListBlobs(
const ListBlobsOptions& options,
const Azure::Core::Context& context) const
{
_detail::BlobRestClient::BlobContainer::ListBlobsOptions protocolLayerOptions;
protocolLayerOptions.Prefix = options.Prefix;
if (options.ContinuationToken.HasValue() && !options.ContinuationToken.Value().empty())
{
protocolLayerOptions.ContinuationToken = options.ContinuationToken;
}
protocolLayerOptions.MaxResults = options.PageSizeHint;
protocolLayerOptions.Include = options.Include;
auto response = _detail::BlobRestClient::BlobContainer::ListBlobs(
*m_pipeline,
m_blobContainerUrl,
protocolLayerOptions,
_internal::WithReplicaStatus(context));
for (auto& i : response.Value.Items)
{
if (i.Details.AccessTier.HasValue() && !i.Details.IsAccessTierInferred.HasValue())
{
i.Details.IsAccessTierInferred = false;
}
if (i.VersionId.HasValue() && !i.IsCurrentVersion.HasValue())
{
i.IsCurrentVersion = false;
}
if (i.BlobType == Models::BlobType::AppendBlob && !i.Details.IsSealed)
{
i.Details.IsSealed = false;
}
if (i.Details.CopyStatus.HasValue() && !i.Details.IsIncrementalCopy.HasValue())
{
i.Details.IsIncrementalCopy = false;
}
}
ListBlobsPagedResponse pagedResponse;
pagedResponse.ServiceEndpoint = std::move(response.Value.ServiceEndpoint);
pagedResponse.BlobContainerName = std::move(response.Value.BlobContainerName);
pagedResponse.Prefix = std::move(response.Value.Prefix);
pagedResponse.Blobs = std::move(response.Value.Items);
pagedResponse.m_blobContainerClient = std::make_shared<BlobContainerClient>(*this);
pagedResponse.m_operationOptions = options;
pagedResponse.CurrentPageToken = options.ContinuationToken.ValueOr(std::string());
pagedResponse.NextPageToken = response.Value.ContinuationToken;
pagedResponse.RawResponse = std::move(response.RawResponse);
return pagedResponse;
}
ListBlobsByHierarchyPagedResponse BlobContainerClient::ListBlobsByHierarchy(
const std::string& delimiter,
const ListBlobsOptions& options,
const Azure::Core::Context& context) const
{
_detail::BlobRestClient::BlobContainer::ListBlobsByHierarchyOptions protocolLayerOptions;
protocolLayerOptions.Prefix = options.Prefix;
protocolLayerOptions.Delimiter = delimiter;
if (options.ContinuationToken.HasValue() && !options.ContinuationToken.Value().empty())
{
protocolLayerOptions.ContinuationToken = options.ContinuationToken;
}
protocolLayerOptions.MaxResults = options.PageSizeHint;
protocolLayerOptions.Include = options.Include;
auto response = _detail::BlobRestClient::BlobContainer::ListBlobsByHierarchy(
*m_pipeline,
m_blobContainerUrl,
protocolLayerOptions,
_internal::WithReplicaStatus(context));
for (auto& i : response.Value.Items)
{
if (i.Details.AccessTier.HasValue() && !i.Details.IsAccessTierInferred.HasValue())
{
i.Details.IsAccessTierInferred = false;
}
if (i.VersionId.HasValue() && !i.IsCurrentVersion.HasValue())
{
i.IsCurrentVersion = false;
}
if (i.BlobType == Models::BlobType::AppendBlob && !i.Details.IsSealed)
{
i.Details.IsSealed = false;
}
if (i.Details.CopyStatus.HasValue() && !i.Details.IsIncrementalCopy.HasValue())
{
i.Details.IsIncrementalCopy = false;
}
}
ListBlobsByHierarchyPagedResponse pagedResponse;
pagedResponse.ServiceEndpoint = std::move(response.Value.ServiceEndpoint);
pagedResponse.BlobContainerName = std::move(response.Value.BlobContainerName);
pagedResponse.Prefix = std::move(response.Value.Prefix);
pagedResponse.Delimiter = std::move(response.Value.Delimiter);
pagedResponse.Blobs = std::move(response.Value.Items);
pagedResponse.BlobPrefixes = std::move(response.Value.BlobPrefixes);
pagedResponse.m_blobContainerClient = std::make_shared<BlobContainerClient>(*this);
pagedResponse.m_operationOptions = options;
pagedResponse.m_delimiter = delimiter;
pagedResponse.CurrentPageToken = options.ContinuationToken.ValueOr(std::string());
pagedResponse.NextPageToken = response.Value.ContinuationToken;
pagedResponse.RawResponse = std::move(response.RawResponse);
return pagedResponse;
}
Azure::Response<Models::BlobContainerAccessPolicy> BlobContainerClient::GetAccessPolicy(
const GetBlobContainerAccessPolicyOptions& options,
const Azure::Core::Context& context) const
{
_detail::BlobRestClient::BlobContainer::GetBlobContainerAccessPolicyOptions
protocolLayerOptions;
protocolLayerOptions.LeaseId = options.AccessConditions.LeaseId;
return _detail::BlobRestClient::BlobContainer::GetAccessPolicy(
*m_pipeline,
m_blobContainerUrl,
protocolLayerOptions,
_internal::WithReplicaStatus(context));
}
Azure::Response<Models::SetBlobContainerAccessPolicyResult> BlobContainerClient::SetAccessPolicy(
const SetBlobContainerAccessPolicyOptions& options,
const Azure::Core::Context& context) const
{
_detail::BlobRestClient::BlobContainer::SetBlobContainerAccessPolicyOptions
protocolLayerOptions;
protocolLayerOptions.AccessType = options.AccessType;
protocolLayerOptions.SignedIdentifiers = options.SignedIdentifiers;
protocolLayerOptions.LeaseId = options.AccessConditions.LeaseId;
protocolLayerOptions.IfModifiedSince = options.AccessConditions.IfModifiedSince;
protocolLayerOptions.IfUnmodifiedSince = options.AccessConditions.IfUnmodifiedSince;
return _detail::BlobRestClient::BlobContainer::SetAccessPolicy(
*m_pipeline, m_blobContainerUrl, protocolLayerOptions, context);
}
Azure::Response<Models::DeleteBlobResult> BlobContainerClient::DeleteBlob(
const std::string& blobName,
const DeleteBlobOptions& options,
const Azure::Core::Context& context) const
{
auto blobClient = GetBlobClient(blobName);
return blobClient.Delete(options, context);
}
Azure::Response<BlockBlobClient> BlobContainerClient::UploadBlob(
const std::string& blobName,
Azure::Core::IO::BodyStream& content,
const UploadBlockBlobOptions& options,
const Azure::Core::Context& context) const
{
auto blockBlobClient = GetBlockBlobClient(blobName);
auto response = blockBlobClient.Upload(content, options, context);
return Azure::Response<BlockBlobClient>(
std::move(blockBlobClient), std::move(response.RawResponse));
}
}}} // namespace Azure::Storage::Blobs
| [
"noreply@github.com"
] | noreply@github.com |
16df3a1c4989e2c694d938706a8e16268862c9a6 | 0a2357ad0098bbb7b74528cb01d6decaab928ed8 | /aoj/0538.cpp | 6830a1aefa1ee374a3e03a7c04f3b8a4f81e7832 | [] | no_license | touyou/CompetitiveProgramming | 12af9e18f4fe9ce9f08f0a0f2750bcb5d1fc9ce7 | 419f310ccb0f24ff08d3599e5147e5a614071926 | refs/heads/master | 2021-06-18T09:19:01.767323 | 2020-07-16T03:40:08 | 2020-07-16T03:40:08 | 90,118,147 | 0 | 0 | null | 2020-10-13T04:32:19 | 2017-05-03T06:57:58 | C++ | UTF-8 | C++ | false | false | 545 | cpp | #include <iostream>
using namespace std;
typedef long long ll;
ll comb(int a, int b) {
if (a<b) return 0;
return a-b+1;
}
int main() {
int n, m;
string str;
while (cin>>n&&n!=0) {
cin>>m>>str;
ll res=0;
int cnt=0;
for (int i=0; i<m-1; i++) {
if (str[i]=='I') {
if (str[i+1]=='O'&&str[i+2]=='I') cnt++;
else {
res += comb(cnt,n);
cnt=0;
}
}
}
if (str[m-3]=='I'&&str[m-2]&&'O'&&str[m-1]=='I') {
res += comb(cnt,n);
} else if (str[m-3]=='O') {
res += comb(cnt,n);
}
cout << res << endl;
}
} | [
"fujiyou1121@gmail.com"
] | fujiyou1121@gmail.com |
2d8c8cf6dd7ac2cd5978f6b8ff3089f79be8bb17 | 8fc2e907468f81ffc58d8075cd4b0d7a54caa4cd | /src/ui/touch/menu_key_widget.cpp | f5b5745d4c9e92a9f6504b92c29d5919389b1363 | [] | no_license | TSYJwct/QtFaceRecognitionTerminal | 31c6cdd43692615b325422b658bb353827c23240 | 386b147ae26d60145b89b865fa97349c44647b10 | refs/heads/master | 2023-02-02T15:25:04.178996 | 2020-12-24T05:07:13 | 2020-12-24T05:07:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,773 | cpp | #include "menu_key_widget.hpp"
#include <QPushButton>
#include <QStackedWidget>
#include <QVBoxLayout>
using namespace suanzi;
MenuKeyWidget::MenuKeyWidget(int width, int height, QWidget *parent)
: QWidget(parent) {
// TODO: 支持动态Size
QPushButton *ppb_qrcode = new QPushButton(this);
ppb_qrcode->setFixedSize(100, 100);
ppb_qrcode->setStyleSheet(
"QPushButton {border-image: url(:asserts/qrcode.png);}");
ppb_qrcode->setFocusPolicy(Qt::NoFocus);
QPushButton *ppb_intercom = new QPushButton(this);
ppb_intercom->setFixedSize(100, 100);
ppb_intercom->setStyleSheet(
"QPushButton {border-image: url(:asserts/intercom.png);}");
ppb_intercom->setFocusPolicy(Qt::NoFocus);
QPushButton *ppb_password = new QPushButton(this);
ppb_password->setFixedSize(100, 100);
ppb_password->setStyleSheet(
"QPushButton {border-image: url(:asserts/password.png);}");
ppb_password->setFocusPolicy(Qt::NoFocus);
QVBoxLayout *pv_layout = new QVBoxLayout;
pv_layout->addStretch();
pv_layout->addWidget(ppb_qrcode);
pv_layout->addWidget(ppb_intercom);
pv_layout->addWidget(ppb_password);
pv_layout->addStretch();
setLayout(pv_layout);
// TODO: 暂时禁用二维码和语音对讲
// connect(ppb_qrcode, SIGNAL(pressed()), this, SLOT(clicked_qrcode()));
// connect(ppb_intercom, SIGNAL(pressed()), this, SLOT(clicked_intercom()));
connect(ppb_password, SIGNAL(pressed()), this, SLOT(clicked_password()));
}
MenuKeyWidget::~MenuKeyWidget() {}
void MenuKeyWidget::clicked_qrcode() { emit switch_stacked_widget(1); }
void MenuKeyWidget::clicked_intercom() {
emit tx_menu_type(1);
emit switch_stacked_widget(2);
}
void MenuKeyWidget::clicked_password() {
emit tx_menu_type(2);
emit switch_stacked_widget(2);
}
| [
"niyayu@suanzi.ai"
] | niyayu@suanzi.ai |
d393c4e0eb47e28e611060e9856cca94a03ad94b | bc62fef73c32417ed4b71c193ab8b6ed712a73f1 | /nd4j/nd4j-backends/nd4j-api-parent/nd4j-api/src/main/protobuf/tf/google/protobuf/compiler/javanano/javanano_file.cc | 17f7386e77d5de07087b6f1aed5799a8005f2641 | [
"Apache-2.0",
"MIT",
"BSD-3-Clause"
] | permissive | deeplearning4j/deeplearning4j | 0a1af00abc2fe7a843b50650b72c8200364b53bf | 91131d0e1e2cf37002658764df29ae5c0e1f577b | refs/heads/master | 2023-08-17T08:20:54.290807 | 2023-07-30T10:04:23 | 2023-07-30T10:04:23 | 14,734,876 | 13,626 | 4,793 | Apache-2.0 | 2023-09-11T06:54:25 | 2013-11-27T02:03:28 | Java | UTF-8 | C++ | false | false | 9,860 | cc | // Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// http://code.google.com/p/protobuf/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Author: kenton@google.com (Kenton Varda)
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include <iostream>
#include <google/protobuf/compiler/javanano/javanano_file.h>
#include <google/protobuf/compiler/javanano/javanano_enum.h>
#include <google/protobuf/compiler/javanano/javanano_extension.h>
#include <google/protobuf/compiler/javanano/javanano_helpers.h>
#include <google/protobuf/compiler/javanano/javanano_message.h>
#include <google/protobuf/compiler/code_generator.h>
#include <google/protobuf/io/printer.h>
#include <google/protobuf/io/zero_copy_stream.h>
#include <google/protobuf/descriptor.pb.h>
#include <google/protobuf/stubs/strutil.h>
namespace google {
namespace protobuf {
namespace compiler {
namespace javanano {
namespace {
// Recursively searches the given message to see if it contains any extensions.
bool UsesExtensions(const Message& message) {
const Reflection* reflection = message.GetReflection();
// We conservatively assume that unknown fields are extensions.
if (reflection->GetUnknownFields(message).field_count() > 0) return true;
vector<const FieldDescriptor*> fields;
reflection->ListFields(message, &fields);
for (int i = 0; i < fields.size(); i++) {
if (fields[i]->is_extension()) return true;
if (fields[i]->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
if (fields[i]->is_repeated()) {
int size = reflection->FieldSize(message, fields[i]);
for (int j = 0; j < size; j++) {
const Message& sub_message =
reflection->GetRepeatedMessage(message, fields[i], j);
if (UsesExtensions(sub_message)) return true;
}
} else {
const Message& sub_message = reflection->GetMessage(message, fields[i]);
if (UsesExtensions(sub_message)) return true;
}
}
}
return false;
}
} // namespace
FileGenerator::FileGenerator(const FileDescriptor* file, const Params& params)
: file_(file),
params_(params),
java_package_(FileJavaPackage(params, file)),
classname_(FileClassName(params, file)) {}
FileGenerator::~FileGenerator() {}
bool FileGenerator::Validate(string* error) {
// Check for extensions
FileDescriptorProto file_proto;
file_->CopyTo(&file_proto);
if (UsesExtensions(file_proto) && !params_.store_unknown_fields()) {
error->assign(file_->name());
error->append(
": Java NANO_RUNTIME only supports extensions when the "
"'store_unknown_fields' generator option is 'true'.");
return false;
}
if (file_->service_count() != 0 && !params_.ignore_services()) {
error->assign(file_->name());
error->append(
": Java NANO_RUNTIME does not support services\"");
return false;
}
if (!IsOuterClassNeeded(params_, file_)) {
return true;
}
// Check whether legacy javanano generator would omit the outer class.
if (!params_.has_java_outer_classname(file_->name())
&& file_->message_type_count() == 1
&& file_->enum_type_count() == 0 && file_->extension_count() == 0) {
std::cout << "INFO: " << file_->name() << ":" << std::endl;
std::cout << "Javanano generator has changed to align with java generator. "
"An outer class will be created for this file and the single message "
"in the file will become a nested class. Use java_multiple_files to "
"skip generating the outer class, or set an explicit "
"java_outer_classname to suppress this message." << std::endl;
}
// Check that no class name matches the file's class name. This is a common
// problem that leads to Java compile errors that can be hard to understand.
// It's especially bad when using the java_multiple_files, since we would
// end up overwriting the outer class with one of the inner ones.
bool found_conflict = false;
for (int i = 0; !found_conflict && i < file_->message_type_count(); i++) {
if (file_->message_type(i)->name() == classname_) {
found_conflict = true;
}
}
if (params_.java_enum_style()) {
for (int i = 0; !found_conflict && i < file_->enum_type_count(); i++) {
if (file_->enum_type(i)->name() == classname_) {
found_conflict = true;
}
}
}
if (found_conflict) {
error->assign(file_->name());
error->append(
": Cannot generate Java output because the file's outer class name, \"");
error->append(classname_);
error->append(
"\", matches the name of one of the types declared inside it. "
"Please either rename the type or use the java_outer_classname "
"option to specify a different outer class name for the .proto file.");
return false;
}
return true;
}
void FileGenerator::Generate(io::Printer* printer) {
// We don't import anything because we refer to all classes by their
// fully-qualified names in the generated source.
printer->Print(
"// Generated by the protocol buffer compiler. DO NOT EDIT!\n");
if (!java_package_.empty()) {
printer->Print(
"\n"
"package $package$;\n",
"package", java_package_);
}
// Note: constants (from enums, emitted in the loop below) may have the same names as constants
// in the nested classes. This causes Java warnings, but is not fatal, so we suppress those
// warnings here in the top-most class declaration.
printer->Print(
"\n"
"@SuppressWarnings(\"hiding\")\n"
"public interface $classname$ {\n",
"classname", classname_);
printer->Indent();
// -----------------------------------------------------------------
// Extensions.
for (int i = 0; i < file_->extension_count(); i++) {
ExtensionGenerator(file_->extension(i), params_).Generate(printer);
}
// Enums.
for (int i = 0; i < file_->enum_type_count(); i++) {
EnumGenerator(file_->enum_type(i), params_).Generate(printer);
}
// Messages.
if (!params_.java_multiple_files(file_->name())) {
for (int i = 0; i < file_->message_type_count(); i++) {
MessageGenerator(file_->message_type(i), params_).Generate(printer);
}
}
// Static variables.
for (int i = 0; i < file_->message_type_count(); i++) {
// TODO(kenton): Reuse MessageGenerator objects?
MessageGenerator(file_->message_type(i), params_).GenerateStaticVariables(printer);
}
printer->Outdent();
printer->Print(
"}\n");
}
template<typename GeneratorClass, typename DescriptorClass>
static void GenerateSibling(const string& package_dir,
const string& java_package,
const DescriptorClass* descriptor,
GeneratorContext* output_directory,
vector<string>* file_list,
const Params& params) {
string filename = package_dir + descriptor->name() + ".java";
file_list->push_back(filename);
scoped_ptr<io::ZeroCopyOutputStream> output(
output_directory->Open(filename));
io::Printer printer(output.get(), '$');
printer.Print(
"// Generated by the protocol buffer compiler. DO NOT EDIT!\n");
if (!java_package.empty()) {
printer.Print(
"\n"
"package $package$;\n",
"package", java_package);
}
GeneratorClass(descriptor, params).Generate(&printer);
}
void FileGenerator::GenerateSiblings(const string& package_dir,
GeneratorContext* output_directory,
vector<string>* file_list) {
if (params_.java_multiple_files(file_->name())) {
for (int i = 0; i < file_->message_type_count(); i++) {
GenerateSibling<MessageGenerator>(package_dir, java_package_,
file_->message_type(i),
output_directory, file_list, params_);
}
if (params_.java_enum_style()) {
for (int i = 0; i < file_->enum_type_count(); i++) {
GenerateSibling<EnumGenerator>(package_dir, java_package_,
file_->enum_type(i),
output_directory, file_list, params_);
}
}
}
}
} // namespace javanano
} // namespace compiler
} // namespace protobuf
} // namespace google
| [
"34909009+skymindops@users.noreply.github.com"
] | 34909009+skymindops@users.noreply.github.com |
18c241cd6dc6c605581976f64ff3018329f50b6e | b1014bb9ea1bbd8c5fa1849055316e571ef52fe5 | /Classes/MPLayer.cpp | 8c0f1e9ce672e6d0f68e466ef5167003fc4b5b02 | [] | no_license | csusbdt/multiproj | c772eeddc66eb1fa4a806adff0e8f79b7c781a12 | cc77b9f78fb9ff0621bef5b8ccb105143b819273 | refs/heads/master | 2016-08-08T04:49:35.729811 | 2013-04-15T14:20:51 | 2013-04-15T14:20:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,640 | cpp | #include "stdafx.h"
#include "MPLayer.h"
#include "MPScenes.h"
#include "MPMacros.h"
USING_NS_CC;
//void MPLayer::addBackButton()
//{
//}
bool MPLayer::init(){
/*
CCSize visibleSize = CCDirector::sharedDirector()->getVisibleSize();
CCPoint origin = CCDirector::sharedDirector()->getVisibleOrigin();
// Exit button
CCMenuItemImage *backItem = CCMenuItemImage::create(
"CloseNormal.png",
"CloseSelected.png",
this,
menu_selector(MPMapLayer::titleCallback));
backItem->setPosition(ccp(origin.x + visibleSize.width - backItem->getContentSize().width/2 ,
origin.y + backItem->getContentSize().height/2));
CCMenu* menu = CCMenu::create(backItem, NULL);
menu->setPosition(CCPointZero);
this->addChild(menu, 1);
// Screen Title
CCLabelTTF* label = CCLabelTTF::create("A Map Scene", "Arial", TITLE_FONT_SIZE);
label->setPosition(ccp(origin.x + visibleSize.width/2,
origin.y + visibleSize.height - label->getContentSize().height));
this->addChild(label, 1);
// Tile Map
// CCTMXTiledMap *map = CCTMXTiledMap::create("MP_map/desert.tmx");
CCTMXTiledMap *map = CCTMXTiledMap::create("andrew_map/andrew_tilemap.tmx");
this->addChild(map, 0);
MPMapLayer::antiAliasMap(map);
map->setAnchorPoint(ccp(.5, .5));
map->setPosition(ccp(visibleSize.width * .5, visibleSize.height * .5));
map->setScale(.5);
CCTMXLayer* layer = map->layerNamed("Background");
assert(layer != NULL);
CCTMXObjectGroup *objectGroup = map->objectGroupNamed("SpawnPointLayer");
assert(objectGroup != NULL);
CCSize mapSize = map->getContentSize();
float mapHeight = mapSize.height;
float mapWidth = mapSize.width;
player = CCSprite::create("andrew_map/Player.png");
CCDictionary *spawnPoint = objectGroup->objectNamed("SpawnPoint");
map->addChild(player,1);
const CCString *positionX = spawnPoint->valueForKey("x");
const CCString *positionY = spawnPoint->valueForKey("y");
const CCString *objectName = spawnPoint->valueForKey("name");
std::cout << positionX->getCString() << std::endl;
std::cout << mapHeight - positionY->intValue() % 32 << std::endl;
std::cout << objectName->getCString() << std::endl;
// player->setPosition(ccp(positionX,positionY));
*/
/*
CCSprite *tile = layer->tileAt(ccp(5,6));
assert(tile != NULL);
layer->removeTileAt(ccp(5, 6));
CCActionInterval* actionBy = CCMoveBy::create(2, ccp(visibleSize.width * .5, visibleSize.height * .5));
map->runAction(actionBy);
CCActionInterval* action = CCScaleBy::create(2, 2);
map->runAction(action);
*/
/*
CCSize s = layer->getLayerSize();
for (int x = 2; x < s.width; x++) {
for (int y = 0; y < s.height; y++) {
layer->removeTileAt(ccp(x, y));
}
}
*/
return true;
}
void MPLayer::antiAliasMap(CCTMXTiledMap * map)
{
CCArray * pChildrenArray = map->getChildren();
CCSpriteBatchNode* child = NULL;
CCObject* pObject = NULL;
CCARRAY_FOREACH(pChildrenArray, pObject)
{
child = (CCSpriteBatchNode*)pObject;
if(!child)
break;
child->getTexture()->setAntiAliasTexParameters();
}
}
//void MPLayer::titleCallback(CCObject* pSender)
//{
// CCDirector::sharedDirector()->replaceScene(MPScenes::createTitleScene());
//}
| [
"csusbdt@gmail.com"
] | csusbdt@gmail.com |
7b54ad00302b008706484c922f34c6538de35454 | 89982147b08ac2576e2f5b9b7a8862ef2baaae10 | /mega_opt/path.h | d88b06a05e85c97d602fe30fe3e5601454dd9c3f | [
"MIT"
] | permissive | edwardpku/travelling-santa | a6ff86834c6a93aad392dc2bd37a26cb3304b373 | 17ff1919d6a7118b95342a5865b08bf25613aa46 | refs/heads/master | 2020-12-01T01:07:28.904152 | 2013-01-28T19:15:00 | 2013-01-28T19:15:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,655 | h | #ifndef PATH_H__
#define PATH_H__
#include "utility.h"
#include <vector>
#include <tr1/unordered_map>
using namespace std;
struct Move2OptWith3Opt {
double improv;
pair<int, int> opt2;
vector<int> opt3;
Move2OptWith3Opt(double i, pair<int, int> o2, vector<int> o3) :
improv(i), opt2(o2), opt3(o3) {}
};
struct Move3OptWith3Opt {
double improv;
vector<int> opt3;
vector<int> kick3;
Move3OptWith3Opt(double i, vector<int> o3, vector<int> k3) :
improv(i), opt3(o3), kick3(k3) {}
};
struct KOptMove {
double improv;
bool valid;
vector<pair<int, int> > in;
vector<pair<int, int> > out;
vector<pair<int, int> > kicked;
vector<pair<int, int> > kick_in, kick_out;
bool non_seq;
KOptMove() : improv(-1), valid(false), non_seq(false) {}
};
class Path {
public:
vector<int> next_, prev_;
vector<int> p_; // Path
vector<int> ip_; // Inverse mapping (id -> path index)
vector<pair<int, int> > allowed_, banned_;
Path(vector<int> p) : next_(p.size(), -1), prev_(p.size(), -1), p_(p), ip_(p.size()),
allowed_(3, make_pair(-1,-1)), banned_(3, make_pair(-1,-1)) {
for (int i = 1; i < p.size(); i++) {
prev_[p[i]] = p[i-1];
next_[p[i-1]] = p[i];
ip_[p[i]] = i;
}
ip_[p[0]] = 0;
}
void ClearAllowedBanned() {
allowed_.resize(3, make_pair(-1, -1));
banned_.resize(3, make_pair(-1, -1));
}
vector<int> OutputPathToVector() const {
return p_;
}
bool HasEdge(int a, int b) const {
for (int i = 0; i < allowed_.size(); i++) {
if (allowed_[i] == make_pair(a, b) || allowed_[i] == make_pair(b, a)) return false;
}
for (int i = 0; i < banned_.size(); i++) {
if (banned_[i] == make_pair(a, b) || banned_[i] == make_pair(b, a)) return true;
}
if (next_[a] == b) return true;
if (next_[b] == a) return true;
return false;
}
void Reverse(int p1, int p2) {
int ip1 = ip_[p1];
int ip2 = ip_[p2]+1;
reverse(p_.begin() + ip1, p_.begin() + ip2);
for (int i = ip1; i < ip2; i++) {
ip_[p_[i]] = i;
if (i > 0) {
prev_[p_[i]] = p_[i-1];
next_[p_[i-1]] = p_[i];
}
if (i + 1 < p_.size()) {
prev_[p_[i+1]] = p_[i];
next_[p_[i]] = p_[i+1];
}
}
next_[p_.back()] = -1;
}
double GetLength(const vector<pair<double, double> >& points) const {
double ret = 0;
for (int i = 1; i < p_.size(); i++)
ret += CalcDist(points[p_[i]], points[p_[i-1]]);
return ret;
}
// Return best 2-opt move starting with kicking edge p1-p2
// return pair<improvemt, <p1, p3> >
pair<double, pair<int, int> > GetBest2OptMove(const Path& blocking_path, int p1, int p2,
const vector<vector<int> >& closest,
const vector<pair<double, double> >& points) const;
void Make2OptMove(pair<int, int> p1p3);
pair<double, vector<int> > GetBest3OptMove(const Path& blocking_path, int p1, int p2,
const vector<vector<int> >& closest,
const vector<pair<double, double> >&points) const;
void Make3OptMove(vector<int> pp);
KOptMove GetKOptMove(const Path& blocking_path, int p1, int p2,
const vector<vector<int> >& closest,
const vector<pair<double, double> >& points, int Klim, double allowed_badness);
void GetKOptMoveExpandY(const Path& blocking_path, int pb, int p,
const vector<vector<int> >& closest,
const vector<pair<double, double> >& points, int Klim, KOptMove& move,
double allowed_badness, unordered_map<int, int>& dist);
void GetKOptMoveExpandX(const Path& blocking_path, int pb, int p,
const vector<vector<int> >& closest,
const vector<pair<double, double> >& points, int Klim, KOptMove& move,
double allowed_badness, unordered_map<int, int>& dist);
pair<double, vector<pair<int, int> > > GetBestPatch(const Path& blocking_path,
vector<pair<int, int> >& kicked, const vector<vector<int> >& closest,
const vector<pair<double, double> >&points, double lower_bound) const;
void PatchNonSeqMove(const Path& blocking_path, const vector<vector<int> >& closest,
const vector<pair<double, double> >& points, int Klim, KOptMove& move,
double allowed_badness);
void ExecuteMove(const KOptMove& move);
void ExecuteMove(const vector<pair<int, int> >& in, const vector<pair<int, int> >& out);
bool IsValidMove(const KOptMove& move) const;
vector<pair<vector<int>, int> > GetCycles(const KOptMove& move) const;
void GetVertexesInDistance(int start, int dist_lim, const vector<vector<int> >& closest,
unordered_map<int, int>& dist) const;
};
void PrintPaths(const Path& p1, const Path& p2, string filename);
#endif
| [
"usama@ksp.sk"
] | usama@ksp.sk |
f23a32535ecca1b0f048b1eaf5ca791e708547de | 8ed70d1f703a8d512aed63d53acbca16c90dc9c8 | /src/server/connection_manager.cpp | 52029bb0dbeacf99faf17691cb3531dbfb19c3fe | [
"MIT"
] | permissive | malasiot/ws | 9c1ae76984f33ba296f82304ebae4fc8b421176a | 2889746ad8c9615e77cf6e553489affe01768141 | refs/heads/master | 2021-01-11T16:07:45.025637 | 2018-04-12T12:15:10 | 2018-04-12T12:15:10 | 80,009,972 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,020 | cpp | //
// connection_manager.cpp
// ~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2013 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#include <wspp/server/detail/connection_manager.hpp>
#include <wspp/server/detail/connection.hpp>
namespace wspp { namespace server {
ConnectionManager::ConnectionManager()
{
}
void ConnectionManager::start(ConnectionPtr c)
{
boost::unique_lock<boost::mutex> lock(mutex_) ;
connections_.insert(c);
c->start();
}
void ConnectionManager::stop(ConnectionPtr c)
{
boost::unique_lock<boost::mutex> lock(mutex_) ;
if ( connections_.count(c) )
connections_.erase(c);
c->stop();
}
void ConnectionManager::stop_all()
{
boost::unique_lock<boost::mutex> lock(mutex_) ;
for (auto c: connections_)
c->stop();
connections_.clear();
}
} // namespace server
} // namespace wspp
| [
"malasiot@iti.gr"
] | malasiot@iti.gr |
c03be57f6f9d38479d930fc81ff1ba9839b861b3 | f26360b99a471d466af83f037a02ccc4667db913 | /3rdparty/leveldb/util/env_dfs.cc | f4c6a22015a55d48923915c7b7dc566be645aa78 | [
"MIT",
"BSD-3-Clause"
] | permissive | gitkeidy/opencvr | 80646520b8099485edb6c666750808f876fabf97 | 9bd570ff30c407cf149acdaf483f22f0ebefa72e | refs/heads/master | 2021-01-18T08:56:04.463604 | 2016-02-08T05:10:18 | 2016-02-08T05:10:18 | 50,656,483 | 3 | 1 | null | 2016-02-08T05:10:20 | 2016-01-29T10:44:57 | Makefile | UTF-8 | C++ | false | false | 13,017 | cc | // Copyright (c) 2015, Baidu.com, Inc. All Rights Reserved
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.
#include <errno.h>
#include <stdio.h>
#ifdef LEVELDB_PLATFORM_POSIX
#include <sys/time.h>
#endif
#ifdef LEVELDB_PLATFORM_WINDOWS
#include <time.h>
#endif
#include <time.h>
#include <algorithm>
#include <set>
#include <iostream>
#include <sstream>
#include "hdfstera.h"
#include "timer.h"
#include "leveldb/env.h"
#include "leveldb/status.h"
#include "leveldb/env_dfs.h"
//#include "leveldb/table_utils.h"
#include "nfstera.h"
#include "util/mutexlock.h"
#include "counter.h"
namespace leveldb {
tera::Counter dfs_read_size_counter;
tera::Counter dfs_write_size_counter;
tera::Counter dfs_read_delay_counter;
tera::Counter dfs_write_delay_counter;
tera::Counter dfs_read_counter;
tera::Counter dfs_write_counter;
tera::Counter dfs_sync_counter;
tera::Counter dfs_flush_counter;
tera::Counter dfs_list_counter;
tera::Counter dfs_other_counter;
tera::Counter dfs_exists_counter;
tera::Counter dfs_open_counter;
tera::Counter dfs_close_counter;
tera::Counter dfs_delete_counter;
tera::Counter dfs_tell_counter;
tera::Counter dfs_info_counter;
tera::Counter dfs_read_hang_counter;
tera::Counter dfs_write_hang_counter;
tera::Counter dfs_sync_hang_counter;
tera::Counter dfs_flush_hang_counter;
tera::Counter dfs_list_hang_counter;
tera::Counter dfs_other_hang_counter;
tera::Counter dfs_exists_hang_counter;
tera::Counter dfs_open_hang_counter;
tera::Counter dfs_close_hang_counter;
tera::Counter dfs_delete_hang_counter;
tera::Counter dfs_tell_hang_counter;
tera::Counter dfs_info_hang_counter;
bool split_filename(const std::string filename,
std::string* path, std::string* file)
{
size_t pos = filename.rfind('/');
if (pos == std::string::npos) {
return false;
}
*path = filename.substr(0, pos);
*file = filename.substr(pos + 1);
return true;
}
char* get_time_str(char* p, size_t len)
{
const uint64_t thread_id = DfsEnv::gettid();
struct timeval now_tv;
#ifdef LEVELDB_PLATFORM_WINDOWS
tera::gettimeofday(&now_tv, NULL);
#endif
#ifdef LEVELDB_PLATFORM_POSIX
gettimeofday(&now_tv, NULL);
#endif
const time_t seconds = now_tv.tv_sec;
struct tm t;
#ifdef LEVELDB_PLATFORM_POSIX
localtime_r(&seconds, &t);
#endif
#ifdef LEVELDB_PLATFORM_WINDOWS
memcpy(&t, localtime(&seconds), sizeof(t));
#endif
p += snprintf(p, len,
"%04d/%02d/%02d-%02d:%02d:%02d.%06d %llu",
t.tm_year + 1900,
t.tm_mon + 1,
t.tm_mday,
t.tm_hour,
t.tm_min,
t.tm_sec,
static_cast<int>(now_tv.tv_usec),
static_cast<long long unsigned int>(thread_id));
return p;
}
// Log error message
static Status IOError(const std::string& context, int err_number)
{
return Status::IOError(context, strerror(err_number));
}
class DfsReadableFile: virtual public SequentialFile, virtual public RandomAccessFile {
private:
Dfs* fs_;
std::string filename_;
DfsFile* file_;
mutable ssize_t now_pos;
//mutable port::Mutex mu_;
public:
DfsReadableFile(Dfs* fs, const std::string& fname)
: fs_(fs), filename_(fname), file_(NULL),
now_pos(-1) {
file_ = fs->OpenFile(filename_, RDONLY);
// assert(hfile_ != NULL);
if (file_ == NULL) {
fprintf(stderr, "[env_dfs]: open file fail: %s\n", filename_.c_str());
}
now_pos = 0;
}
virtual ~DfsReadableFile() {
if (file_) {
file_->CloseFile();
}
delete file_;
file_ = NULL;
}
bool isValid() {
return (file_ != NULL);
}
virtual Status Read(size_t n, Slice* result, char* scratch) {
now_pos = -1;
Status s;
int32_t bytes_read = file_->Read(scratch, (int32_t)n);
*result = Slice(scratch, (bytes_read < 0) ? 0 : bytes_read);
if (bytes_read < static_cast<int32_t>(n)) {
if (feof()) {
// end of the file
} else {
s = IOError(filename_, errno);
}
}
dfs_read_size_counter.Add(bytes_read);
return Status::OK();
}
virtual Status Read(uint64_t offset, size_t n, Slice* result, char* scratch) const {
Status s;
int32_t bytes_read = file_->Pread(offset, scratch, n);
*result = Slice(scratch, (bytes_read < 0) ? 0 : bytes_read);
if (bytes_read < 0) {
s = IOError(filename_, errno);
}
dfs_read_size_counter.Add(bytes_read);
return s;
}
virtual Status Skip(uint64_t n) {
int64_t current = file_->Tell();
if (current < 0) {
return IOError(filename_, errno);
}
// seek to new offset
int64_t newoffset = current + n;
int val = file_->Seek(newoffset);
if (val < 0) {
return IOError(filename_, errno);
}
return Status::OK();
}
private:
// at the end of file ?
bool feof() {
if (file_ && file_->Tell() == fileSize()) {
return true;
}
return false;
}
// file size
int64_t fileSize() {
uint64_t size = 0;
fs_->GetFileSize(filename_, &size);
return size;
}
};
// WritableFile
class DfsWritableFile: public WritableFile {
private:
Dfs* fs_;
std::string filename_;
DfsFile* file_;
public:
DfsWritableFile(Dfs* fs, const std::string& fname)
: fs_(fs), filename_(fname) , file_(NULL) {
fs_->Delete(filename_);
file_ = fs_->OpenFile(filename_, WRONLY);
if (file_ == NULL) {
fprintf(stderr, "[env_dfs]: open file for write fail: %s\n", fname.c_str());
}
}
virtual ~DfsWritableFile() {
if (file_ != NULL) {
file_->CloseFile();
}
delete file_;
}
bool isValid() {
return file_ != NULL;
}
const std::string& getName() {
return filename_;
}
virtual Status Append(const Slice& data) {
const char* src = data.data();
size_t left = data.size();
int32_t ret = file_->Write(src, left);
if (ret != static_cast<int32_t>(left)) {
return IOError(filename_, errno);
}
dfs_write_size_counter.Add(ret);
return Status::OK();
}
virtual Status Flush() {
// dfs flush efficiency is too low, close it
//if (file_->Flush() != 0) {
// return IOError(filename_, errno);
//}
return Status::OK();
}
virtual Status Sync() {
Status s;
uint64_t n = EnvDfs()->NowMicros();
if (file_->Sync() == -1) {
fprintf(stderr, "hdfs sync fail: %s\n", filename_.c_str());
s = IOError(filename_, errno);
}
uint64_t diff = EnvDfs()->NowMicros() - n;
if (diff > 2000000) {
char buf[128];
get_time_str(buf, 128);
fprintf(stderr, "%s hdfs sync for %s use %.2fms\n",
buf, filename_.c_str(), diff / 1000.0);
}
return s;
}
virtual Status Close() {
Status result;
if (file_ != NULL && file_->CloseFile() != 0) {
result = IOError(filename_, errno);
}
delete file_;
file_ = NULL;
return result;
}
};
DfsEnv::DfsEnv(Dfs* dfs)
: EnvWrapper(Env::Default()), hdfs_(dfs) {
}
DfsEnv::~DfsEnv()
{
}
// SequentialFile
Status DfsEnv::NewSequentialFile(const std::string& fname, SequentialFile** result)
{
DfsReadableFile* f = new DfsReadableFile(hdfs_, fname);
if (!f->isValid()) {
delete f;
*result = NULL;
return IOError(fname, errno);
}
*result = dynamic_cast<SequentialFile*>(f);
return Status::OK();
}
// random read file
Status DfsEnv::NewRandomAccessFile(const std::string& fname, RandomAccessFile** result)
{
DfsReadableFile* f = new DfsReadableFile(hdfs_, fname);
if (f == NULL || !f->isValid()) {
delete f;
*result = NULL;
return IOError(fname, errno);
}
*result = dynamic_cast<RandomAccessFile*>(f);
return Status::OK();
}
// writable
Status DfsEnv::NewWritableFile(const std::string& fname,
WritableFile** result)
{
Status s;
DfsWritableFile* f = new DfsWritableFile(hdfs_, fname);
if (f == NULL || !f->isValid()) {
delete f;
*result = NULL;
return IOError(fname, errno);
}
*result = dynamic_cast<WritableFile*>(f);
return Status::OK();
}
// FileExists
bool DfsEnv::FileExists(const std::string& fname)
{
return (0 == hdfs_->Exists(fname));
}
Status DfsEnv::CopyFile(const std::string& from, const std::string& to) {
std::cerr << "HdfsEnv: " << from << " --> " << to << std::endl;
if (from != to && hdfs_->Copy(from, to) != 0) {
return Status::IOError("HDFS Copy", from);
}
return Status::OK();
}
Status DfsEnv::GetChildren(const std::string& path,
std::vector<std::string>* result)
{
if (0 != hdfs_->Exists(path)) {
fprintf(stderr, "GetChildren call with path not exists.\n");
abort();
} else if (0 != hdfs_->ListDirectory(path, result)) {
abort();
}
return Status::OK();
}
bool DfsEnv::CheckDelete(const std::string& fname, std::vector<std::string>* flags)
{
std::string path, file;
bool r = split_filename(fname, &path, &file);
assert(r);
std::string prefix = file + "_del_";
std::vector<std::string> files;
hdfs_->ListDirectory(path, &files);
size_t max_len = 0;
size_t value = 0;
for (size_t i = 0; i < files.size(); i++) {
if (files[i].compare(0, prefix.size(), prefix) != 0) {
continue;
}
flags->push_back(path + "/" + files[i]);
std::string id_str = files[i].substr(prefix.size());
if (id_str.size() > 64) {
return false;
}
if (max_len < id_str.size()) {
value <<= (id_str.size() - max_len);
value ++;
max_len = id_str.size();
} else {
value += (1ULL << (max_len - id_str.size()));
}
}
return (value == (1ULL << max_len));
}
Status DfsEnv::DeleteFile(const std::string& fname)
{
if (hdfs_->Delete(fname) == 0) {
return Status::OK();
}
return IOError(fname, errno);
};
Status DfsEnv::CreateDir(const std::string& name)
{
if (hdfs_->CreateDirectoryHdfs(name) == 0) {
return Status::OK();
}
return IOError(name, errno);
};
Status DfsEnv::DeleteDir(const std::string& name)
{
if (hdfs_->DeleteDirectory(name) == 0) {
return Status::OK();
}
return IOError(name, errno);
};
Status DfsEnv::ListDir(const std::string& name,
std::vector<std::string>* result) {
hdfs_->ListDirectory(name, result);
return Status::OK();
}
Status DfsEnv::GetFileSize(const std::string& fname, uint64_t* size)
{
*size = 0L;
if (0 != hdfs_->GetFileSize(fname, size)) {
return IOError(fname, errno);
} else {
return Status::OK();
}
}
///
Status DfsEnv::RenameFile(const std::string& src, const std::string& target)
{
DeleteFile(target);
if (hdfs_->Rename(src, target) == 0) {
}
Status result;
return result;
}
Status DfsEnv::LockFile(const std::string& fname, FileLock** lock)
{
*lock = NULL;
return Status::OK();
}
Status DfsEnv::UnlockFile(FileLock* lock)
{
return Status::OK();
}
Status DfsEnv::NewLogger(const std::string& fname, Logger** result)
{
return IOError(fname, errno);
}
static bool inited = false;
static port::Mutex mutex;
//static pthread_once_t once = PTHREAD_ONCE_INIT;
static Env* dfs_env;
void InitHdfsEnv()
{
MutexLock l(&mutex);
if (inited) {
return;
}
Dfs* dfs = new Hdfs();
dfs_env = new DfsEnv(dfs);
inited = true;
}
void InitHdfs2Env(const std::string& namenode_list)
{
MutexLock l(&mutex);
if (inited) {
return;
}
Dfs* dfs = new Hdfs2(namenode_list);
dfs_env = new DfsEnv(dfs);
inited = true;
}
void InitNfsEnv(const std::string& mountpoint,
const std::string& conf_path)
{
MutexLock l(&mutex);
if (inited) {
return;
}
#ifndef LEVELDB_PLATFORM_POSIX
dfs_env = NULL;
#else
Nfs::Init(mountpoint, conf_path);
Dfs* dfs = Nfs::GetInstance();
dfs_env = new DfsEnv(dfs);
#endif
inited = true;
}
Env* NewDfsEnv(Dfs* dfs)
{
return new DfsEnv(dfs);
}
Env* EnvDfs()
{
MutexLock l(&mutex);
if (inited) {
return dfs_env;
}
Dfs* dfs = new Hdfs();
dfs_env = new DfsEnv(dfs);
inited = true;
return dfs_env;
}
} // namespace leveldb
| [
"xsmart@163.com"
] | xsmart@163.com |
05bcd6235ff7c1aa83e4b4bdda75a54b8bb576c3 | 33b65ead157ad2d9d489a2d4042e16b5aea3ff0d | /assignment_package/src/scene/biome.h | 707874bb383a0cdef41ba01e22906d1a737b2daf | [] | no_license | JocelynWSJ/MiniMinecraft | 850fa17d079cc45e7bb794b16ebfdba6bc1910c3 | 25922915fb2501e852ce47f0cec0891cd8800991 | refs/heads/master | 2020-12-26T13:40:16.911646 | 2020-08-14T06:15:16 | 2020-08-14T06:15:16 | 237,527,844 | 4 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 685 | h | #ifndef BIOME_H
#define BIOME_H
#include "noise.h"
enum BiomeType : unsigned char
{
PLAIN, DARK, DESERT, FROZEN, JUNGLE, TUNDRA, MOUNTAIN
};
class Biome
{
private:
int x;
int z;
float moisture;
float temperature;
BiomeType type;
private:
static noise::fbmParams darkPars;
static noise::fbmParams desertPars;
static noise::fbmParams frozenPars;
static noise::fbmParams junglePars;
static noise::fbmParams moisturePars;
static noise::fbmParams temperaturePars;
public:
Biome(int _x, int _z);
BiomeType getBiome() const;
BiomeType getBiome(int &height) const;
public:
static void InitializeParams();
};
#endif // BIOME_H
| [
"wangshj9@seas.upenn.edu"
] | wangshj9@seas.upenn.edu |
7cdf2d62491c58d44d58c4494043d3d7953f916b | c2676cde2354c24ea64a27ccbf7b69c6211ef187 | /modules/bm_sim/include/bm_sim/phv.h | 9cb54954b36c55a2208394d6d135f623c74c314a | [
"Apache-2.0"
] | permissive | DavideSanvito/behavioral-model | 1629bdc5cf2f6f33be9156524e871991938d6e81 | 25a388e6c62ab71c139ebedb2c37eb6d8e710c73 | refs/heads/master | 2020-12-28T20:20:05.338435 | 2015-10-20T20:06:37 | 2015-10-20T20:06:37 | 44,120,186 | 0 | 0 | null | 2015-10-12T16:36:46 | 2015-10-12T16:36:46 | null | UTF-8 | C++ | false | false | 8,596 | h | /* Copyright 2013-present Barefoot Networks, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Antonin Bas (antonin@barefootnetworks.com)
*
*/
#ifndef _BM_PHV_H_
#define _BM_PHV_H_
#include <vector>
#include <unordered_map>
#include <string>
#include <functional>
#include <set>
#include <map>
#include <memory>
#include <cassert>
#include "fields.h"
#include "headers.h"
#include "header_stacks.h"
#include "named_p4object.h"
typedef p4object_id_t header_id_t;
// forward declaration
class PHVFactory;
class PHV
{
public:
friend class PHVFactory;
private:
typedef std::reference_wrapper<Header> HeaderRef;
typedef std::reference_wrapper<Field> FieldRef;
public:
PHV() {}
PHV(size_t num_headers, size_t num_header_stacks)
: capacity(num_headers), capacity_stacks(num_header_stacks) {
// this is needed, otherwise our references will not be valid anymore
headers.reserve(num_headers);
header_stacks.reserve(num_header_stacks);
}
Header &get_header(header_id_t header_index) {
return headers[header_index];
}
const Header &get_header(header_id_t header_index) const {
return headers[header_index];
}
Header &get_header(const std::string &header_name) {
return headers_map.at(header_name);
}
const Header &get_header(const std::string &header_name) const {
return headers_map.at(header_name);
}
bool has_header(const std::string &header_name) const {
auto it = headers_map.find(header_name);
return (it != headers_map.end());
}
Field &get_field(header_id_t header_index, int field_offset) {
return headers[header_index].get_field(field_offset);
}
const Field &get_field(header_id_t header_index, int field_offset) const {
return headers[header_index].get_field(field_offset);
}
Field &get_field(const std::string &field_name) {
return fields_map.at(field_name);
}
const Field &get_field(const std::string &field_name) const {
return fields_map.at(field_name);
}
bool has_field(const std::string &field_name) const {
auto it = fields_map.find(field_name);
return (it != fields_map.end());
}
HeaderStack &get_header_stack(header_stack_id_t header_stack_index) {
return header_stacks[header_stack_index];
}
const HeaderStack &get_header_stack(header_stack_id_t header_stack_index) const {
return header_stacks[header_stack_index];
}
void reset(); // mark all headers as invalid
void reset_header_stacks();
void reset_metadata();
PHV(const PHV &other) = delete;
PHV &operator=(const PHV &other) = delete;
PHV(PHV &&other) = default;
PHV &operator=(PHV &&other) = default;
void copy_headers(const PHV &src) {
for(unsigned int h = 0; h < headers.size(); h++) {
headers[h].valid = src.headers[h].valid;
headers[h].metadata = src.headers[h].metadata;
if(headers[h].valid || headers[h].metadata)
headers[h].fields = src.headers[h].fields;
}
}
private:
// To be used only by PHVFactory
// all headers need to be pushed back in order (according to header_index) !!!
// TODO: remove this constraint?
void push_back_header(
const std::string &header_name,
header_id_t header_index,
const HeaderType &header_type,
const std::set<int> &arith_offsets,
const bool metadata
) {
assert(header_index < (int) capacity);
assert(header_index == (int) headers.size());
headers.push_back(
Header(header_name, header_index, header_type, arith_offsets, metadata)
);
headers_map.emplace(header_name, get_header(header_index));
for(int i = 0; i < header_type.get_num_fields(); i++) {
const std::string name = header_name + "." + header_type.get_field_name(i);
// std::cout << header_index << " " << i << " " << name << std::endl;
fields_map.emplace(name, get_field(header_index, i));
}
}
void push_back_header_stack(
const std::string &header_stack_name,
header_stack_id_t header_stack_index,
const HeaderType &header_type,
const std::vector<header_id_t> &header_ids
) {
assert(header_stack_index < (int) capacity_stacks);
assert(header_stack_index == (int) header_stacks.size());
HeaderStack header_stack(header_stack_name, header_stack_index, header_type);
for(header_id_t header_id : header_ids) {
header_stack.set_next_header(get_header(header_id));
}
header_stacks.push_back(std::move(header_stack));
}
private:
std::vector<Header> headers{};
std::vector<HeaderStack> header_stacks{};
std::unordered_map<std::string, HeaderRef> headers_map{};
std::unordered_map<std::string, FieldRef> fields_map{};
size_t capacity{0};
size_t capacity_stacks{0};
};
class PHVFactory
{
private:
struct HeaderDesc {
const std::string name;
header_id_t index;
const HeaderType &header_type;
std::set<int> arith_offsets{};
bool metadata;
HeaderDesc(const std::string &name, const header_id_t index,
const HeaderType &header_type, const bool metadata)
: name(name), index(index), header_type(header_type), metadata(metadata) {
for(int offset = 0; offset < header_type.get_num_fields(); offset++) {
arith_offsets.insert(offset);
}
}
};
struct HeaderStackDesc {
const std::string name;
header_stack_id_t index;
const HeaderType &header_type;
std::vector<header_id_t> headers;
HeaderStackDesc(const std::string &name, const header_stack_id_t index,
const HeaderType &header_type,
const std::vector<header_id_t> &headers)
: name(name), index(index), header_type(header_type), headers(headers) { }
};
public:
void push_back_header(const std::string &header_name,
const header_id_t header_index,
const HeaderType &header_type,
const bool metadata = false) {
HeaderDesc desc = HeaderDesc(header_name, header_index, header_type, metadata);
// cannot use operator[] because it requires default constructibility
header_descs.insert(std::make_pair(header_index, desc));
}
void push_back_header_stack(const std::string &header_stack_name,
const header_stack_id_t header_stack_index,
const HeaderType &header_type,
const std::vector<header_id_t> &headers) {
HeaderStackDesc desc = HeaderStackDesc(
header_stack_name, header_stack_index, header_type, headers
);
// cannot use operator[] because it requires default constructibility
header_stack_descs.insert(std::make_pair(header_stack_index, desc));
}
const HeaderType &get_header_type(header_id_t header_id) const {
return header_descs.at(header_id).header_type;
}
void enable_field_arith(header_id_t header_id, int field_offset) {
HeaderDesc &desc = header_descs.at(header_id);
desc.arith_offsets.insert(field_offset);
}
void enable_all_field_arith(header_id_t header_id) {
HeaderDesc &desc = header_descs.at(header_id);
for(int offset = 0; offset < desc.header_type.get_num_fields(); offset++) {
desc.arith_offsets.insert(offset);
}
}
void disable_field_arith(header_id_t header_id, int field_offset) {
HeaderDesc &desc = header_descs.at(header_id);
desc.arith_offsets.erase(field_offset);
}
void disable_all_field_arith(header_id_t header_id) {
HeaderDesc &desc = header_descs.at(header_id);
desc.arith_offsets.clear();
}
std::unique_ptr<PHV> create() const {
std::unique_ptr<PHV> phv(new PHV(header_descs.size(),
header_stack_descs.size()));
for(const auto &e : header_descs) {
const HeaderDesc &desc = e.second;
phv->push_back_header(desc.name, desc.index,
desc.header_type, desc.arith_offsets,
desc.metadata);
}
for(const auto &e : header_stack_descs) {
const HeaderStackDesc &desc = e.second;
phv->push_back_header_stack(desc.name, desc.index,
desc.header_type, desc.headers);
}
return phv;
}
private:
std::map<header_id_t, HeaderDesc> header_descs{}; // sorted by header id
std::map<header_stack_id_t, HeaderStackDesc> header_stack_descs{};
};
#endif
| [
"antonin@barefootnetworks.com"
] | antonin@barefootnetworks.com |
b38481666054b43acf5e68070fba59bf0ec96ae1 | 7de42d95b5904480e6e46be40ae72707077668ae | /locale/Source.cpp | 5439a8a976574105d55f1826939d52442ab5bfa4 | [] | no_license | kzGarifullin/cpp-projects | e09828f4ff9086ff2f49c58494b56a43faab57bf | a214898e8a707e0a44acb30d642cdc4231d655e0 | refs/heads/master | 2023-06-06T20:07:19.037960 | 2021-07-03T09:52:33 | 2021-07-03T09:52:33 | 339,001,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 89 | cpp | #include<iostream>
#include<locale>
#include<boost/typeof/std/locale.hpp>
int main() {} | [
"kamil_20.03@mail.ru"
] | kamil_20.03@mail.ru |
1b966b3589dfa0408373c2bb917f7e9478271af5 | 4c5ceb224165de5b09a06897292aa2a8676c9bcb | /Engine/Shader.cpp | f596e400255e5e03996044efc8d911ba6ad309cb | [] | no_license | sansam41/DirectX_Study | 48e443a35139399b16f4a7fdd4ac7d0b783b8206 | 5fcb26f6f8859c960163e52b3cbedcbdd6587ed2 | refs/heads/master | 2023-07-13T13:02:47.974106 | 2021-08-22T11:36:33 | 2021-08-22T11:36:33 | 389,612,409 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,078 | cpp | #include "pch.h"
#include "Shader.h"
#include "Engine.h"
Shader::Shader() : Object(OBJECT_TYPE::SHADER)
{
}
Shader::~Shader()
{
}
void Shader::CreateGraphicsShader(const wstring& path, ShaderInfo info, ShaderArg arg)
{
_info = info;
CreateVertexShader(path, arg.vs, "vs_5_0");
CreatePixelShader(path, arg.ps, "ps_5_0");
if (arg.hs.empty() == false)
CreateHullShader(path, arg.hs, "hs_5_0");
if (arg.ds.empty() == false)
CreateDomainShader(path, arg.ds, "ds_5_0");
if (arg.gs.empty() == false)
CreateGeometryShader(path, arg.gs, "gs_5_0");
D3D12_INPUT_ELEMENT_DESC desc[] =
{
{ "POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 0, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0 },
{ "TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 0, 12, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0 },
{ "NORMAL", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 20, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0 },
{ "TANGENT", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 32, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0 },
{ "WEIGHT", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 0, 44, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0 },
{ "INDICES", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 0, 60, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0 },
{ "W", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 0, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
{ "W", 1, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 16, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
{ "W", 2, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 32, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
{ "W", 3, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 48, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
{ "WV", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 64, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
{ "WV", 1, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 80, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
{ "WV", 2, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 96, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
{ "WV", 3, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 112, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
{ "WVP", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 128, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
{ "WVP", 1, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 144, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
{ "WVP", 2, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 160, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
{ "WVP", 3, DXGI_FORMAT_R32G32B32A32_FLOAT, 1, 176, D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA, 1},
};
_graphicsPipelineDesc.InputLayout = { desc, _countof(desc) };
_graphicsPipelineDesc.pRootSignature = GRAPHICS_ROOT_SIGNATURE.Get();
_graphicsPipelineDesc.RasterizerState = CD3DX12_RASTERIZER_DESC(D3D12_DEFAULT);
_graphicsPipelineDesc.BlendState = CD3DX12_BLEND_DESC(D3D12_DEFAULT);
_graphicsPipelineDesc.DepthStencilState = CD3DX12_DEPTH_STENCIL_DESC(D3D12_DEFAULT);
_graphicsPipelineDesc.SampleMask = UINT_MAX;
_graphicsPipelineDesc.PrimitiveTopologyType = GetTopologyType(info.topology);
_graphicsPipelineDesc.NumRenderTargets = 1;
_graphicsPipelineDesc.RTVFormats[0] = DXGI_FORMAT_R8G8B8A8_UNORM;
_graphicsPipelineDesc.SampleDesc.Count = 1;
_graphicsPipelineDesc.DSVFormat = DXGI_FORMAT_D32_FLOAT;
switch (info.shaderType)
{
case SHADER_TYPE::DEFERRED:
_graphicsPipelineDesc.NumRenderTargets = RENDER_TARGET_G_BUFFER_GROUP_MEMBER_COUNT;
_graphicsPipelineDesc.RTVFormats[0] = DXGI_FORMAT_R32G32B32A32_FLOAT; // POSITION
_graphicsPipelineDesc.RTVFormats[1] = DXGI_FORMAT_R32G32B32A32_FLOAT; // NORMAL
_graphicsPipelineDesc.RTVFormats[2] = DXGI_FORMAT_R8G8B8A8_UNORM; // COLOR
break;
case SHADER_TYPE::FORWARD:
_graphicsPipelineDesc.NumRenderTargets = 1;
_graphicsPipelineDesc.RTVFormats[0] = DXGI_FORMAT_R8G8B8A8_UNORM;
break;
case SHADER_TYPE::LIGHTING:
_graphicsPipelineDesc.NumRenderTargets = 2;
_graphicsPipelineDesc.RTVFormats[0] = DXGI_FORMAT_R8G8B8A8_UNORM;
_graphicsPipelineDesc.RTVFormats[1] = DXGI_FORMAT_R8G8B8A8_UNORM;
break;
case SHADER_TYPE::PARTICLE:
_graphicsPipelineDesc.NumRenderTargets = 1;
_graphicsPipelineDesc.RTVFormats[0] = DXGI_FORMAT_R8G8B8A8_UNORM;
break;
case SHADER_TYPE::COMPUTE:
_graphicsPipelineDesc.NumRenderTargets = 0;
break;
case SHADER_TYPE::SHADOW:
_graphicsPipelineDesc.NumRenderTargets = 1;
_graphicsPipelineDesc.RTVFormats[0] = DXGI_FORMAT_R32_FLOAT;
break;
}
switch (info.rasterizerType)
{
case RASTERIZER_TYPE::CULL_BACK:
_graphicsPipelineDesc.RasterizerState.FillMode = D3D12_FILL_MODE_SOLID;
_graphicsPipelineDesc.RasterizerState.CullMode = D3D12_CULL_MODE_BACK;
break;
case RASTERIZER_TYPE::CULL_FRONT:
_graphicsPipelineDesc.RasterizerState.FillMode = D3D12_FILL_MODE_SOLID;
_graphicsPipelineDesc.RasterizerState.CullMode = D3D12_CULL_MODE_FRONT;
break;
case RASTERIZER_TYPE::CULL_NONE:
_graphicsPipelineDesc.RasterizerState.FillMode = D3D12_FILL_MODE_SOLID;
_graphicsPipelineDesc.RasterizerState.CullMode = D3D12_CULL_MODE_NONE;
break;
case RASTERIZER_TYPE::WIREFRAME:
_graphicsPipelineDesc.RasterizerState.FillMode = D3D12_FILL_MODE_WIREFRAME;
_graphicsPipelineDesc.RasterizerState.CullMode = D3D12_CULL_MODE_NONE;
break;
}
switch (info.depthStencilType)
{
case DEPTH_STENCIL_TYPE::LESS:
_graphicsPipelineDesc.DepthStencilState.DepthEnable = TRUE;
_graphicsPipelineDesc.DepthStencilState.DepthFunc = D3D12_COMPARISON_FUNC_LESS;
break;
case DEPTH_STENCIL_TYPE::LESS_EQUAL:
_graphicsPipelineDesc.DepthStencilState.DepthEnable = TRUE;
_graphicsPipelineDesc.DepthStencilState.DepthFunc = D3D12_COMPARISON_FUNC_LESS_EQUAL;
break;
case DEPTH_STENCIL_TYPE::GREATER:
_graphicsPipelineDesc.DepthStencilState.DepthEnable = TRUE;
_graphicsPipelineDesc.DepthStencilState.DepthFunc = D3D12_COMPARISON_FUNC_GREATER;
break;
case DEPTH_STENCIL_TYPE::GREATER_EQUAL:
_graphicsPipelineDesc.DepthStencilState.DepthEnable = TRUE;
_graphicsPipelineDesc.DepthStencilState.DepthFunc = D3D12_COMPARISON_FUNC_GREATER_EQUAL;
break;
case DEPTH_STENCIL_TYPE::NO_DEPTH_TEST:
_graphicsPipelineDesc.DepthStencilState.DepthEnable = FALSE;
_graphicsPipelineDesc.DepthStencilState.DepthFunc = D3D12_COMPARISON_FUNC_LESS;
break;
case DEPTH_STENCIL_TYPE::NO_DEPTH_TEST_NO_WRITE:
_graphicsPipelineDesc.DepthStencilState.DepthEnable = FALSE;
_graphicsPipelineDesc.DepthStencilState.DepthWriteMask = D3D12_DEPTH_WRITE_MASK_ZERO;
break;
case DEPTH_STENCIL_TYPE::LESS_NO_WRITE:
_graphicsPipelineDesc.DepthStencilState.DepthEnable = TRUE;
_graphicsPipelineDesc.DepthStencilState.DepthFunc = D3D12_COMPARISON_FUNC_LESS;
_graphicsPipelineDesc.DepthStencilState.DepthWriteMask = D3D12_DEPTH_WRITE_MASK_ZERO;
break;
}
D3D12_RENDER_TARGET_BLEND_DESC& rt = _graphicsPipelineDesc.BlendState.RenderTarget[0];
// SrcBlend = Pixel Shader
// DestBlend = Render Target
switch (info.blendType)
{
case BLEND_TYPE::DEFAULT:
rt.BlendEnable = FALSE;
rt.LogicOpEnable = FALSE;
rt.SrcBlend = D3D12_BLEND_ONE;
rt.DestBlend = D3D12_BLEND_ZERO;
break;
case BLEND_TYPE::ALPHA_BLEND:
rt.BlendEnable = TRUE;
rt.LogicOpEnable = FALSE;
rt.SrcBlend = D3D12_BLEND_SRC_ALPHA;
rt.DestBlend = D3D12_BLEND_INV_SRC_ALPHA;
break;
case BLEND_TYPE::ONE_TO_ONE_BLEND:
rt.BlendEnable = TRUE;
rt.LogicOpEnable = FALSE;
rt.SrcBlend = D3D12_BLEND_ONE;
rt.DestBlend = D3D12_BLEND_ONE;
break;
}
DEVICE->CreateGraphicsPipelineState(&_graphicsPipelineDesc, IID_PPV_ARGS(&_pipelineState));
}
void Shader::CreateComputeShader(const wstring& path, const string& name, const string& version)
{
_info.shaderType = SHADER_TYPE::COMPUTE;
CreateShader(path, name, version, _csBlob, _computePipelineDesc.CS);
_computePipelineDesc.pRootSignature = COMPUTE_ROOT_SIGNATURE.Get();
HRESULT hr = DEVICE->CreateComputePipelineState(&_computePipelineDesc, IID_PPV_ARGS(&_pipelineState));
assert(SUCCEEDED(hr));
}
void Shader::Update()
{
if (GetShaderType() == SHADER_TYPE::COMPUTE)
COMPUTE_CMD_LIST->SetPipelineState(_pipelineState.Get());
else
{
GRAPHICS_CMD_LIST->IASetPrimitiveTopology(_info.topology);
GRAPHICS_CMD_LIST->SetPipelineState(_pipelineState.Get());
}
}
void Shader::CreateShader(const wstring& path, const string& name, const string& version, ComPtr<ID3DBlob>& blob, D3D12_SHADER_BYTECODE& shaderByteCode)
{
uint32 compileFlag = 0;
#ifdef _DEBUG
compileFlag = D3DCOMPILE_DEBUG | D3DCOMPILE_SKIP_OPTIMIZATION;
#endif
if (FAILED(::D3DCompileFromFile(path.c_str(), nullptr, D3D_COMPILE_STANDARD_FILE_INCLUDE
, name.c_str(), version.c_str(), compileFlag, 0, &blob, &_errBlob)))
{
::MessageBoxA(nullptr, "Shader Create Failed !", nullptr, MB_OK);
}
shaderByteCode = { blob->GetBufferPointer(), blob->GetBufferSize() };
}
void Shader::CreateVertexShader(const wstring& path, const string& name, const string& version)
{
CreateShader(path, name, version, _vsBlob, _graphicsPipelineDesc.VS);
}
void Shader::CreateHullShader(const wstring& path, const string& name, const string& version)
{
CreateShader(path, name, version, _hsBlob, _graphicsPipelineDesc.HS);
}
void Shader::CreateDomainShader(const wstring& path, const string& name, const string& version)
{
CreateShader(path, name, version, _dsBlob, _graphicsPipelineDesc.DS);
}
void Shader::CreateGeometryShader(const wstring& path, const string& name, const string& version)
{
CreateShader(path, name, version, _gsBlob, _graphicsPipelineDesc.GS);
}
void Shader::CreatePixelShader(const wstring& path, const string& name, const string& version)
{
CreateShader(path, name, version, _psBlob, _graphicsPipelineDesc.PS);
}
D3D12_PRIMITIVE_TOPOLOGY_TYPE Shader::GetTopologyType(D3D_PRIMITIVE_TOPOLOGY topology)
{
switch (topology)
{
case D3D_PRIMITIVE_TOPOLOGY_POINTLIST:
return D3D12_PRIMITIVE_TOPOLOGY_TYPE_POINT;
case D3D_PRIMITIVE_TOPOLOGY_LINELIST:
case D3D_PRIMITIVE_TOPOLOGY_LINESTRIP:
case D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ:
case D3D_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ:
case D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ:
case D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ:
return D3D12_PRIMITIVE_TOPOLOGY_TYPE_LINE;
case D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST:
case D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP:
return D3D12_PRIMITIVE_TOPOLOGY_TYPE_TRIANGLE;
case D3D_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_2_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_5_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_6_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_7_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_8_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_9_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_10_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_11_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_12_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_13_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_14_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_15_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_16_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_17_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_18_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_19_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_20_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_21_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_22_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_23_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_24_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_25_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_26_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_27_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_28_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_29_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_30_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_31_CONTROL_POINT_PATCHLIST:
case D3D_PRIMITIVE_TOPOLOGY_32_CONTROL_POINT_PATCHLIST:
return D3D12_PRIMITIVE_TOPOLOGY_TYPE_PATCH;
default:
return D3D12_PRIMITIVE_TOPOLOGY_TYPE_UNDEFINED;
}
}
| [
"sansam41@gmail.com"
] | sansam41@gmail.com |
fd7ab7ebed7bb19d4cca3855b9e1d5a5f6373889 | b1f475245f859009aa36b7a173350c392bf8a62a | /hw9/hw9_q2/hw9_q2.cpp | a034914c5e470f02b9491cffce6084aee2491b4f | [] | no_license | NaveganteX/NYU-Bridge | 98e55bd4520aab4e8c1d3e51a3392e03bb101dde | 869e1be7ca30113d1522b90597967ae3bed083af | refs/heads/master | 2022-07-08T06:24:42.543523 | 2020-05-17T16:24:57 | 2020-05-17T16:24:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,642 | cpp | #include <iostream>
#include <string>
using namespace std;
int numberOfLetters(char letter, string text);
int main() {
const string ABC = "abcdefghijklmnopqrstuvwxyz";
string inputOne, inputTwo, outputOne, outputTwo;
int letterSumOne = 0, letterSumTwo = 0;
cout << "Enter first text:" << endl;
getline(cin, inputOne);
cout << endl;
for (int i = 0; i < ABC.length(); i++) {
int letterAmount = numberOfLetters(ABC[i], inputOne);
if (letterAmount != 0) {
outputOne += ABC[i];
letterSumOne += ABC[i];
letterSumOne *= letterAmount;
}
}
cout << "Enter second text:" << endl;
getline(cin, inputTwo);
cout << endl;
for (int i = 0; i < ABC.length(); i++) {
int letterAmount = numberOfLetters(ABC[i], inputTwo);
if (letterAmount != 0) {
outputTwo += ABC[i];
letterSumTwo += ABC[i];
letterSumTwo *= letterAmount;
}
}
if ((outputOne == outputTwo) && (letterSumOne == letterSumTwo)) {
cout << "True! \"" << inputOne << "\" and \"" << inputTwo << "\" are anagrams." << endl;
} else {
cout << "False! \"" << inputOne << "\" and \"" << inputTwo << "\" are not anagrams." << endl;
}
return 0;
}
int numberOfLetters(char letter, string text) {
int letterCount = 0;
for (int i = 0; i < text.length(); i++) {
int textCode = text[i], letterCode = letter;
if ((letterCode == textCode) || ((letterCode + 32) == textCode) || ((letterCode - 32) == textCode)) {
letterCount++;
}
}
return letterCount;
}
| [
"lhon001@gmail.com"
] | lhon001@gmail.com |
a5829d0c974975ed0e958ad4b274e89ff0d877d5 | 8b8bcfc5f7e1d82f80349972e1948358f54fd3a0 | /SocketTestClient/SocketTestClient.cpp | 79dd33668ac513584a9a25fecd6082cd6ccc098b | [] | no_license | sharperM/mspCode | 0387138d20b4a94e50c1cb672fc857938f4d7d29 | 186d7d0e41b357214adcbfcd4cba3c857ffcf40a | refs/heads/master | 2021-01-17T13:13:49.244420 | 2016-06-07T09:58:43 | 2016-06-07T09:58:43 | 16,302,156 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 5,800 | cpp | // SocketTestClient.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#pragma comment (lib, "Ws2_32.lib")
//#define SHOW_INFO
// Description:
// This sample is the echo client. It connects to the TCP server,
// sends data, and reads data back from the server.
//
// Command Line Options:
// client [-p:x] [-s:IP] [-n:x] [-o]
// -p:x Remote port to send to
// -s:IP Server's IP address or hostname
// -n:x Number of times to send message
// -o Send messages only; don't receive
//
// Link to ws2_32.lib
#include <winsock2.h>
#include <stdio.h>
#include <stdlib.h>
#define DEFAULT_COUNT 20
#define DEFAULT_PORT 5150
#define DEFAULT_BUFFER 2048
#define DEFAULT_MESSAGE "\'A test message from client\'"
char szServer[128], // Server to connect to
szMessage[1024]; // Message to send to sever
int iPort = DEFAULT_PORT; // Port on server to connect to
DWORD dwCount = DEFAULT_COUNT; // Number of times to send message
BOOL bSendOnly = FALSE; // Send data only; don't receive
// Function: usage:
// Description: Print usage information and exit
void usage()
{
printf("Chapter5TestClient: client [-p:x] [-s:IP] [-n:x] [-o]\n\n");
printf(" -p:x Remote port to send to\n");
printf(" -s:IP Server's IP address or hostname\n");
printf(" -n:x Number of times to send message\n");
printf(" -o Send messages only; don't receive\n");
printf("\n");
}
// Function: ValidateArgs
// Description:
// Parse the command line arguments, and set some global flags
// to indicate what actions to perform
void ValidateArgs(int argc, char **argv)
{
int i;
for (i = 1; i < argc; i++)
{
if ((argv[i][0] == '-') || (argv[i][0] == '/'))
{
switch (tolower(argv[i][1]))
{
case 'p': // Remote port
if (strlen(argv[i]) > 3)
iPort = atoi(&argv[i][3]);
break;
case 's': // Server
if (strlen(argv[i]) > 3)
strcpy_s(szServer, sizeof(szServer), &argv[i][3]);
break;
case 'n': // Number of times to send message
if (strlen(argv[i]) > 3)
dwCount = atol(&argv[i][3]);
break;
case 'o': // Only send message; don't receive
bSendOnly = TRUE;
break;
default:
usage();
break;
}
}
}
}
// Function: main
// Description:
// Main thread of execution. Initialize Winsock, parse the
// command line arguments, create a socket, connect to the
// server, and then send and receive data.
int main(int argc, char **argv)
{
WSADATA wsd;
SOCKET sClient;
char szBuffer[DEFAULT_BUFFER];
int ret, i;
struct sockaddr_in server;
struct hostent *host = NULL;
if (argc < 2)
{
usage();
exit(1);
}
// Parse the command line and load Winsock
ValidateArgs(argc, argv);
if (WSAStartup(MAKEWORD(2, 2), &wsd) != 0)
{
printf("Failed to load Winsock library! Error %d\n", WSAGetLastError());
return 1;
}
else
#ifdef SHOW_INFO
printf("Winsock library loaded successfully!\n");
#else
;
#endif
strcpy_s(szMessage, sizeof(szMessage), DEFAULT_MESSAGE);
// Create the socket, and attempt to connect to the server
sClient = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (sClient == INVALID_SOCKET)
{
printf("socket() failed with error code %d\n", WSAGetLastError());
return 1;
}
else
#ifdef SHOW_INFO
printf("socket() looks fine!\n");
#else
;
#endif
server.sin_family = AF_INET;
server.sin_port = htons(iPort);
server.sin_addr.s_addr = inet_addr(szServer);
// If the supplied server address wasn't in the form
// "aaa.bbb.ccc.ddd" it's a hostname, so try to resolve it
if (server.sin_addr.s_addr == INADDR_NONE)
{
host = gethostbyname(szServer);
if (host == NULL)
{
printf("Unable to resolve server %s\n", szServer);
return 1;
}
else
#ifdef SHOW_INFO
printf("The hostname resolved successfully!\n");
#else
;
#endif
CopyMemory(&server.sin_addr, host->h_addr_list[0], host->h_length);
}
if (connect(sClient, (struct sockaddr *)&server, sizeof(server)) == SOCKET_ERROR)
{
printf("connect() failed with error code %d\n", WSAGetLastError());
return 1;
}
else
#ifdef SHOW_INFO
printf("connect() is pretty damn fine!\n");
// Send and receive data
printf("Sending and receiving data if any...\n");
#else
;
#endif
for (i = 0; i < (int)dwCount; i++)
{
ret = send(sClient, szMessage, strlen(szMessage), 0);
if (ret == 0)
break;
else if (ret == SOCKET_ERROR)
{
printf("send() failed with error code %d\n", WSAGetLastError());
break;
}
#ifdef SHOW_INFO
printf("send() should be fine. Send %d bytes\n", ret);
#else
;
#endif
if (!bSendOnly)
{
ret = recv(sClient, szBuffer, DEFAULT_BUFFER, 0);
if (ret == 0) // Graceful close
{
#ifdef SHOW_INFO
printf("It is a graceful close!\n");
#else
;
#endif
break;
}
else if (ret == SOCKET_ERROR)
{
printf("recv() failed with error code %d\n", WSAGetLastError());
break;
}
szBuffer[ret] = '\0';
#ifdef SHOW_INFO
printf("recv() is OK. Received %d bytes: %s\n", ret, szBuffer);
#else
;
#endif
}
}
if (closesocket(sClient) == 0)
#ifdef SHOW_INFO
printf("closesocket() is OK!\n");
#else
;
#endif
else
printf("closesocket() failed with error code %d\n", WSAGetLastError());
if (WSACleanup() == 0)
#ifdef SHOW_INFO
printf("WSACleanup() is fine!\n");
#else
;
#endif
else
printf("WSACleanup() failed with error code %d\n", WSAGetLastError());
return 0;
}
| [
"soldier-fox@hotmail.com"
] | soldier-fox@hotmail.com |
8519d6d617a6b203fa028d44d8994f51a3a730ae | 63ea75c1cd144db8434e7b84ab5b3d1baa986ac7 | /run/tutorials/multiphase/interFoam/laminar/capillaryRise/constant/polyMesh/points | 493e1a08dcd589cf9beb6d80a5c2578af7e3aeb4 | [] | no_license | houkensjtu/interFOAM | 86a3f88891db4d47eb6ac033515b51bf2a63e069 | 8040064d075718d4259a207a30c216974bf8a8af | refs/heads/master | 2016-09-06T15:02:08.625024 | 2013-03-11T12:40:10 | 2013-03-11T12:40:10 | 8,702,790 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 346,507 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.x |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class vectorField;
location "constant/polyMesh";
object points;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
16842
(
(0 0 0)
(5e-05 0 0)
(0.0001 0 0)
(0.00015 0 0)
(0.0002 0 0)
(0.00025 0 0)
(0.0003 0 0)
(0.00035 0 0)
(0.0004 0 0)
(0.00045 0 0)
(0.0005 0 0)
(0.00055 0 0)
(0.0006 0 0)
(0.00065 0 0)
(0.0007 0 0)
(0.00075 0 0)
(0.0008 0 0)
(0.00085 0 0)
(0.0009 0 0)
(0.00095 0 0)
(0.001 0 0)
(0 5e-05 0)
(5e-05 5e-05 0)
(0.0001 5e-05 0)
(0.00015 5e-05 0)
(0.0002 5e-05 0)
(0.00025 5e-05 0)
(0.0003 5e-05 0)
(0.00035 5e-05 0)
(0.0004 5e-05 0)
(0.00045 5e-05 0)
(0.0005 5e-05 0)
(0.00055 5e-05 0)
(0.0006 5e-05 0)
(0.00065 5e-05 0)
(0.0007 5e-05 0)
(0.00075 5e-05 0)
(0.0008 5e-05 0)
(0.00085 5e-05 0)
(0.0009 5e-05 0)
(0.00095 5e-05 0)
(0.001 5e-05 0)
(0 0.0001 0)
(5e-05 0.0001 0)
(0.0001 0.0001 0)
(0.00015 0.0001 0)
(0.0002 0.0001 0)
(0.00025 0.0001 0)
(0.0003 0.0001 0)
(0.00035 0.0001 0)
(0.0004 0.0001 0)
(0.00045 0.0001 0)
(0.0005 0.0001 0)
(0.00055 0.0001 0)
(0.0006 0.0001 0)
(0.00065 0.0001 0)
(0.0007 0.0001 0)
(0.00075 0.0001 0)
(0.0008 0.0001 0)
(0.00085 0.0001 0)
(0.0009 0.0001 0)
(0.00095 0.0001 0)
(0.001 0.0001 0)
(0 0.00015 0)
(5e-05 0.00015 0)
(0.0001 0.00015 0)
(0.00015 0.00015 0)
(0.0002 0.00015 0)
(0.00025 0.00015 0)
(0.0003 0.00015 0)
(0.00035 0.00015 0)
(0.0004 0.00015 0)
(0.00045 0.00015 0)
(0.0005 0.00015 0)
(0.00055 0.00015 0)
(0.0006 0.00015 0)
(0.00065 0.00015 0)
(0.0007 0.00015 0)
(0.00075 0.00015 0)
(0.0008 0.00015 0)
(0.00085 0.00015 0)
(0.0009 0.00015 0)
(0.00095 0.00015 0)
(0.001 0.00015 0)
(0 0.0002 0)
(5e-05 0.0002 0)
(0.0001 0.0002 0)
(0.00015 0.0002 0)
(0.0002 0.0002 0)
(0.00025 0.0002 0)
(0.0003 0.0002 0)
(0.00035 0.0002 0)
(0.0004 0.0002 0)
(0.00045 0.0002 0)
(0.0005 0.0002 0)
(0.00055 0.0002 0)
(0.0006 0.0002 0)
(0.00065 0.0002 0)
(0.0007 0.0002 0)
(0.00075 0.0002 0)
(0.0008 0.0002 0)
(0.00085 0.0002 0)
(0.0009 0.0002 0)
(0.00095 0.0002 0)
(0.001 0.0002 0)
(0 0.00025 0)
(5e-05 0.00025 0)
(0.0001 0.00025 0)
(0.00015 0.00025 0)
(0.0002 0.00025 0)
(0.00025 0.00025 0)
(0.0003 0.00025 0)
(0.00035 0.00025 0)
(0.0004 0.00025 0)
(0.00045 0.00025 0)
(0.0005 0.00025 0)
(0.00055 0.00025 0)
(0.0006 0.00025 0)
(0.00065 0.00025 0)
(0.0007 0.00025 0)
(0.00075 0.00025 0)
(0.0008 0.00025 0)
(0.00085 0.00025 0)
(0.0009 0.00025 0)
(0.00095 0.00025 0)
(0.001 0.00025 0)
(0 0.0003 0)
(5e-05 0.0003 0)
(0.0001 0.0003 0)
(0.00015 0.0003 0)
(0.0002 0.0003 0)
(0.00025 0.0003 0)
(0.0003 0.0003 0)
(0.00035 0.0003 0)
(0.0004 0.0003 0)
(0.00045 0.0003 0)
(0.0005 0.0003 0)
(0.00055 0.0003 0)
(0.0006 0.0003 0)
(0.00065 0.0003 0)
(0.0007 0.0003 0)
(0.00075 0.0003 0)
(0.0008 0.0003 0)
(0.00085 0.0003 0)
(0.0009 0.0003 0)
(0.00095 0.0003 0)
(0.001 0.0003 0)
(0 0.00035 0)
(5e-05 0.00035 0)
(0.0001 0.00035 0)
(0.00015 0.00035 0)
(0.0002 0.00035 0)
(0.00025 0.00035 0)
(0.0003 0.00035 0)
(0.00035 0.00035 0)
(0.0004 0.00035 0)
(0.00045 0.00035 0)
(0.0005 0.00035 0)
(0.00055 0.00035 0)
(0.0006 0.00035 0)
(0.00065 0.00035 0)
(0.0007 0.00035 0)
(0.00075 0.00035 0)
(0.0008 0.00035 0)
(0.00085 0.00035 0)
(0.0009 0.00035 0)
(0.00095 0.00035 0)
(0.001 0.00035 0)
(0 0.0004 0)
(5e-05 0.0004 0)
(0.0001 0.0004 0)
(0.00015 0.0004 0)
(0.0002 0.0004 0)
(0.00025 0.0004 0)
(0.0003 0.0004 0)
(0.00035 0.0004 0)
(0.0004 0.0004 0)
(0.00045 0.0004 0)
(0.0005 0.0004 0)
(0.00055 0.0004 0)
(0.0006 0.0004 0)
(0.00065 0.0004 0)
(0.0007 0.0004 0)
(0.00075 0.0004 0)
(0.0008 0.0004 0)
(0.00085 0.0004 0)
(0.0009 0.0004 0)
(0.00095 0.0004 0)
(0.001 0.0004 0)
(0 0.00045 0)
(5e-05 0.00045 0)
(0.0001 0.00045 0)
(0.00015 0.00045 0)
(0.0002 0.00045 0)
(0.00025 0.00045 0)
(0.0003 0.00045 0)
(0.00035 0.00045 0)
(0.0004 0.00045 0)
(0.00045 0.00045 0)
(0.0005 0.00045 0)
(0.00055 0.00045 0)
(0.0006 0.00045 0)
(0.00065 0.00045 0)
(0.0007 0.00045 0)
(0.00075 0.00045 0)
(0.0008 0.00045 0)
(0.00085 0.00045 0)
(0.0009 0.00045 0)
(0.00095 0.00045 0)
(0.001 0.00045 0)
(0 0.0005 0)
(5e-05 0.0005 0)
(0.0001 0.0005 0)
(0.00015 0.0005 0)
(0.0002 0.0005 0)
(0.00025 0.0005 0)
(0.0003 0.0005 0)
(0.00035 0.0005 0)
(0.0004 0.0005 0)
(0.00045 0.0005 0)
(0.0005 0.0005 0)
(0.00055 0.0005 0)
(0.0006 0.0005 0)
(0.00065 0.0005 0)
(0.0007 0.0005 0)
(0.00075 0.0005 0)
(0.0008 0.0005 0)
(0.00085 0.0005 0)
(0.0009 0.0005 0)
(0.00095 0.0005 0)
(0.001 0.0005 0)
(0 0.00055 0)
(5e-05 0.00055 0)
(0.0001 0.00055 0)
(0.00015 0.00055 0)
(0.0002 0.00055 0)
(0.00025 0.00055 0)
(0.0003 0.00055 0)
(0.00035 0.00055 0)
(0.0004 0.00055 0)
(0.00045 0.00055 0)
(0.0005 0.00055 0)
(0.00055 0.00055 0)
(0.0006 0.00055 0)
(0.00065 0.00055 0)
(0.0007 0.00055 0)
(0.00075 0.00055 0)
(0.0008 0.00055 0)
(0.00085 0.00055 0)
(0.0009 0.00055 0)
(0.00095 0.00055 0)
(0.001 0.00055 0)
(0 0.0006 0)
(5e-05 0.0006 0)
(0.0001 0.0006 0)
(0.00015 0.0006 0)
(0.0002 0.0006 0)
(0.00025 0.0006 0)
(0.0003 0.0006 0)
(0.00035 0.0006 0)
(0.0004 0.0006 0)
(0.00045 0.0006 0)
(0.0005 0.0006 0)
(0.00055 0.0006 0)
(0.0006 0.0006 0)
(0.00065 0.0006 0)
(0.0007 0.0006 0)
(0.00075 0.0006 0)
(0.0008 0.0006 0)
(0.00085 0.0006 0)
(0.0009 0.0006 0)
(0.00095 0.0006 0)
(0.001 0.0006 0)
(0 0.00065 0)
(5e-05 0.00065 0)
(0.0001 0.00065 0)
(0.00015 0.00065 0)
(0.0002 0.00065 0)
(0.00025 0.00065 0)
(0.0003 0.00065 0)
(0.00035 0.00065 0)
(0.0004 0.00065 0)
(0.00045 0.00065 0)
(0.0005 0.00065 0)
(0.00055 0.00065 0)
(0.0006 0.00065 0)
(0.00065 0.00065 0)
(0.0007 0.00065 0)
(0.00075 0.00065 0)
(0.0008 0.00065 0)
(0.00085 0.00065 0)
(0.0009 0.00065 0)
(0.00095 0.00065 0)
(0.001 0.00065 0)
(0 0.0007 0)
(5e-05 0.0007 0)
(0.0001 0.0007 0)
(0.00015 0.0007 0)
(0.0002 0.0007 0)
(0.00025 0.0007 0)
(0.0003 0.0007 0)
(0.00035 0.0007 0)
(0.0004 0.0007 0)
(0.00045 0.0007 0)
(0.0005 0.0007 0)
(0.00055 0.0007 0)
(0.0006 0.0007 0)
(0.00065 0.0007 0)
(0.0007 0.0007 0)
(0.00075 0.0007 0)
(0.0008 0.0007 0)
(0.00085 0.0007 0)
(0.0009 0.0007 0)
(0.00095 0.0007 0)
(0.001 0.0007 0)
(0 0.00075 0)
(5e-05 0.00075 0)
(0.0001 0.00075 0)
(0.00015 0.00075 0)
(0.0002 0.00075 0)
(0.00025 0.00075 0)
(0.0003 0.00075 0)
(0.00035 0.00075 0)
(0.0004 0.00075 0)
(0.00045 0.00075 0)
(0.0005 0.00075 0)
(0.00055 0.00075 0)
(0.0006 0.00075 0)
(0.00065 0.00075 0)
(0.0007 0.00075 0)
(0.00075 0.00075 0)
(0.0008 0.00075 0)
(0.00085 0.00075 0)
(0.0009 0.00075 0)
(0.00095 0.00075 0)
(0.001 0.00075 0)
(0 0.0008 0)
(5e-05 0.0008 0)
(0.0001 0.0008 0)
(0.00015 0.0008 0)
(0.0002 0.0008 0)
(0.00025 0.0008 0)
(0.0003 0.0008 0)
(0.00035 0.0008 0)
(0.0004 0.0008 0)
(0.00045 0.0008 0)
(0.0005 0.0008 0)
(0.00055 0.0008 0)
(0.0006 0.0008 0)
(0.00065 0.0008 0)
(0.0007 0.0008 0)
(0.00075 0.0008 0)
(0.0008 0.0008 0)
(0.00085 0.0008 0)
(0.0009 0.0008 0)
(0.00095 0.0008 0)
(0.001 0.0008 0)
(0 0.00085 0)
(5e-05 0.00085 0)
(0.0001 0.00085 0)
(0.00015 0.00085 0)
(0.0002 0.00085 0)
(0.00025 0.00085 0)
(0.0003 0.00085 0)
(0.00035 0.00085 0)
(0.0004 0.00085 0)
(0.00045 0.00085 0)
(0.0005 0.00085 0)
(0.00055 0.00085 0)
(0.0006 0.00085 0)
(0.00065 0.00085 0)
(0.0007 0.00085 0)
(0.00075 0.00085 0)
(0.0008 0.00085 0)
(0.00085 0.00085 0)
(0.0009 0.00085 0)
(0.00095 0.00085 0)
(0.001 0.00085 0)
(0 0.0009 0)
(5e-05 0.0009 0)
(0.0001 0.0009 0)
(0.00015 0.0009 0)
(0.0002 0.0009 0)
(0.00025 0.0009 0)
(0.0003 0.0009 0)
(0.00035 0.0009 0)
(0.0004 0.0009 0)
(0.00045 0.0009 0)
(0.0005 0.0009 0)
(0.00055 0.0009 0)
(0.0006 0.0009 0)
(0.00065 0.0009 0)
(0.0007 0.0009 0)
(0.00075 0.0009 0)
(0.0008 0.0009 0)
(0.00085 0.0009 0)
(0.0009 0.0009 0)
(0.00095 0.0009 0)
(0.001 0.0009 0)
(0 0.00095 0)
(5e-05 0.00095 0)
(0.0001 0.00095 0)
(0.00015 0.00095 0)
(0.0002 0.00095 0)
(0.00025 0.00095 0)
(0.0003 0.00095 0)
(0.00035 0.00095 0)
(0.0004 0.00095 0)
(0.00045 0.00095 0)
(0.0005 0.00095 0)
(0.00055 0.00095 0)
(0.0006 0.00095 0)
(0.00065 0.00095 0)
(0.0007 0.00095 0)
(0.00075 0.00095 0)
(0.0008 0.00095 0)
(0.00085 0.00095 0)
(0.0009 0.00095 0)
(0.00095 0.00095 0)
(0.001 0.00095 0)
(0 0.001 0)
(5e-05 0.001 0)
(0.0001 0.001 0)
(0.00015 0.001 0)
(0.0002 0.001 0)
(0.00025 0.001 0)
(0.0003 0.001 0)
(0.00035 0.001 0)
(0.0004 0.001 0)
(0.00045 0.001 0)
(0.0005 0.001 0)
(0.00055 0.001 0)
(0.0006 0.001 0)
(0.00065 0.001 0)
(0.0007 0.001 0)
(0.00075 0.001 0)
(0.0008 0.001 0)
(0.00085 0.001 0)
(0.0009 0.001 0)
(0.00095 0.001 0)
(0.001 0.001 0)
(0 0.00105 0)
(5e-05 0.00105 0)
(0.0001 0.00105 0)
(0.00015 0.00105 0)
(0.0002 0.00105 0)
(0.00025 0.00105 0)
(0.0003 0.00105 0)
(0.00035 0.00105 0)
(0.0004 0.00105 0)
(0.00045 0.00105 0)
(0.0005 0.00105 0)
(0.00055 0.00105 0)
(0.0006 0.00105 0)
(0.00065 0.00105 0)
(0.0007 0.00105 0)
(0.00075 0.00105 0)
(0.0008 0.00105 0)
(0.00085 0.00105 0)
(0.0009 0.00105 0)
(0.00095 0.00105 0)
(0.001 0.00105 0)
(0 0.0011 0)
(5e-05 0.0011 0)
(0.0001 0.0011 0)
(0.00015 0.0011 0)
(0.0002 0.0011 0)
(0.00025 0.0011 0)
(0.0003 0.0011 0)
(0.00035 0.0011 0)
(0.0004 0.0011 0)
(0.00045 0.0011 0)
(0.0005 0.0011 0)
(0.00055 0.0011 0)
(0.0006 0.0011 0)
(0.00065 0.0011 0)
(0.0007 0.0011 0)
(0.00075 0.0011 0)
(0.0008 0.0011 0)
(0.00085 0.0011 0)
(0.0009 0.0011 0)
(0.00095 0.0011 0)
(0.001 0.0011 0)
(0 0.00115 0)
(5e-05 0.00115 0)
(0.0001 0.00115 0)
(0.00015 0.00115 0)
(0.0002 0.00115 0)
(0.00025 0.00115 0)
(0.0003 0.00115 0)
(0.00035 0.00115 0)
(0.0004 0.00115 0)
(0.00045 0.00115 0)
(0.0005 0.00115 0)
(0.00055 0.00115 0)
(0.0006 0.00115 0)
(0.00065 0.00115 0)
(0.0007 0.00115 0)
(0.00075 0.00115 0)
(0.0008 0.00115 0)
(0.00085 0.00115 0)
(0.0009 0.00115 0)
(0.00095 0.00115 0)
(0.001 0.00115 0)
(0 0.0012 0)
(5e-05 0.0012 0)
(0.0001 0.0012 0)
(0.00015 0.0012 0)
(0.0002 0.0012 0)
(0.00025 0.0012 0)
(0.0003 0.0012 0)
(0.00035 0.0012 0)
(0.0004 0.0012 0)
(0.00045 0.0012 0)
(0.0005 0.0012 0)
(0.00055 0.0012 0)
(0.0006 0.0012 0)
(0.00065 0.0012 0)
(0.0007 0.0012 0)
(0.00075 0.0012 0)
(0.0008 0.0012 0)
(0.00085 0.0012 0)
(0.0009 0.0012 0)
(0.00095 0.0012 0)
(0.001 0.0012 0)
(0 0.00125 0)
(5e-05 0.00125 0)
(0.0001 0.00125 0)
(0.00015 0.00125 0)
(0.0002 0.00125 0)
(0.00025 0.00125 0)
(0.0003 0.00125 0)
(0.00035 0.00125 0)
(0.0004 0.00125 0)
(0.00045 0.00125 0)
(0.0005 0.00125 0)
(0.00055 0.00125 0)
(0.0006 0.00125 0)
(0.00065 0.00125 0)
(0.0007 0.00125 0)
(0.00075 0.00125 0)
(0.0008 0.00125 0)
(0.00085 0.00125 0)
(0.0009 0.00125 0)
(0.00095 0.00125 0)
(0.001 0.00125 0)
(0 0.0013 0)
(5e-05 0.0013 0)
(0.0001 0.0013 0)
(0.00015 0.0013 0)
(0.0002 0.0013 0)
(0.00025 0.0013 0)
(0.0003 0.0013 0)
(0.00035 0.0013 0)
(0.0004 0.0013 0)
(0.00045 0.0013 0)
(0.0005 0.0013 0)
(0.00055 0.0013 0)
(0.0006 0.0013 0)
(0.00065 0.0013 0)
(0.0007 0.0013 0)
(0.00075 0.0013 0)
(0.0008 0.0013 0)
(0.00085 0.0013 0)
(0.0009 0.0013 0)
(0.00095 0.0013 0)
(0.001 0.0013 0)
(0 0.00135 0)
(5e-05 0.00135 0)
(0.0001 0.00135 0)
(0.00015 0.00135 0)
(0.0002 0.00135 0)
(0.00025 0.00135 0)
(0.0003 0.00135 0)
(0.00035 0.00135 0)
(0.0004 0.00135 0)
(0.00045 0.00135 0)
(0.0005 0.00135 0)
(0.00055 0.00135 0)
(0.0006 0.00135 0)
(0.00065 0.00135 0)
(0.0007 0.00135 0)
(0.00075 0.00135 0)
(0.0008 0.00135 0)
(0.00085 0.00135 0)
(0.0009 0.00135 0)
(0.00095 0.00135 0)
(0.001 0.00135 0)
(0 0.0014 0)
(5e-05 0.0014 0)
(0.0001 0.0014 0)
(0.00015 0.0014 0)
(0.0002 0.0014 0)
(0.00025 0.0014 0)
(0.0003 0.0014 0)
(0.00035 0.0014 0)
(0.0004 0.0014 0)
(0.00045 0.0014 0)
(0.0005 0.0014 0)
(0.00055 0.0014 0)
(0.0006 0.0014 0)
(0.00065 0.0014 0)
(0.0007 0.0014 0)
(0.00075 0.0014 0)
(0.0008 0.0014 0)
(0.00085 0.0014 0)
(0.0009 0.0014 0)
(0.00095 0.0014 0)
(0.001 0.0014 0)
(0 0.00145 0)
(5e-05 0.00145 0)
(0.0001 0.00145 0)
(0.00015 0.00145 0)
(0.0002 0.00145 0)
(0.00025 0.00145 0)
(0.0003 0.00145 0)
(0.00035 0.00145 0)
(0.0004 0.00145 0)
(0.00045 0.00145 0)
(0.0005 0.00145 0)
(0.00055 0.00145 0)
(0.0006 0.00145 0)
(0.00065 0.00145 0)
(0.0007 0.00145 0)
(0.00075 0.00145 0)
(0.0008 0.00145 0)
(0.00085 0.00145 0)
(0.0009 0.00145 0)
(0.00095 0.00145 0)
(0.001 0.00145 0)
(0 0.0015 0)
(5e-05 0.0015 0)
(0.0001 0.0015 0)
(0.00015 0.0015 0)
(0.0002 0.0015 0)
(0.00025 0.0015 0)
(0.0003 0.0015 0)
(0.00035 0.0015 0)
(0.0004 0.0015 0)
(0.00045 0.0015 0)
(0.0005 0.0015 0)
(0.00055 0.0015 0)
(0.0006 0.0015 0)
(0.00065 0.0015 0)
(0.0007 0.0015 0)
(0.00075 0.0015 0)
(0.0008 0.0015 0)
(0.00085 0.0015 0)
(0.0009 0.0015 0)
(0.00095 0.0015 0)
(0.001 0.0015 0)
(0 0.00155 0)
(5e-05 0.00155 0)
(0.0001 0.00155 0)
(0.00015 0.00155 0)
(0.0002 0.00155 0)
(0.00025 0.00155 0)
(0.0003 0.00155 0)
(0.00035 0.00155 0)
(0.0004 0.00155 0)
(0.00045 0.00155 0)
(0.0005 0.00155 0)
(0.00055 0.00155 0)
(0.0006 0.00155 0)
(0.00065 0.00155 0)
(0.0007 0.00155 0)
(0.00075 0.00155 0)
(0.0008 0.00155 0)
(0.00085 0.00155 0)
(0.0009 0.00155 0)
(0.00095 0.00155 0)
(0.001 0.00155 0)
(0 0.0016 0)
(5e-05 0.0016 0)
(0.0001 0.0016 0)
(0.00015 0.0016 0)
(0.0002 0.0016 0)
(0.00025 0.0016 0)
(0.0003 0.0016 0)
(0.00035 0.0016 0)
(0.0004 0.0016 0)
(0.00045 0.0016 0)
(0.0005 0.0016 0)
(0.00055 0.0016 0)
(0.0006 0.0016 0)
(0.00065 0.0016 0)
(0.0007 0.0016 0)
(0.00075 0.0016 0)
(0.0008 0.0016 0)
(0.00085 0.0016 0)
(0.0009 0.0016 0)
(0.00095 0.0016 0)
(0.001 0.0016 0)
(0 0.00165 0)
(5e-05 0.00165 0)
(0.0001 0.00165 0)
(0.00015 0.00165 0)
(0.0002 0.00165 0)
(0.00025 0.00165 0)
(0.0003 0.00165 0)
(0.00035 0.00165 0)
(0.0004 0.00165 0)
(0.00045 0.00165 0)
(0.0005 0.00165 0)
(0.00055 0.00165 0)
(0.0006 0.00165 0)
(0.00065 0.00165 0)
(0.0007 0.00165 0)
(0.00075 0.00165 0)
(0.0008 0.00165 0)
(0.00085 0.00165 0)
(0.0009 0.00165 0)
(0.00095 0.00165 0)
(0.001 0.00165 0)
(0 0.0017 0)
(5e-05 0.0017 0)
(0.0001 0.0017 0)
(0.00015 0.0017 0)
(0.0002 0.0017 0)
(0.00025 0.0017 0)
(0.0003 0.0017 0)
(0.00035 0.0017 0)
(0.0004 0.0017 0)
(0.00045 0.0017 0)
(0.0005 0.0017 0)
(0.00055 0.0017 0)
(0.0006 0.0017 0)
(0.00065 0.0017 0)
(0.0007 0.0017 0)
(0.00075 0.0017 0)
(0.0008 0.0017 0)
(0.00085 0.0017 0)
(0.0009 0.0017 0)
(0.00095 0.0017 0)
(0.001 0.0017 0)
(0 0.00175 0)
(5e-05 0.00175 0)
(0.0001 0.00175 0)
(0.00015 0.00175 0)
(0.0002 0.00175 0)
(0.00025 0.00175 0)
(0.0003 0.00175 0)
(0.00035 0.00175 0)
(0.0004 0.00175 0)
(0.00045 0.00175 0)
(0.0005 0.00175 0)
(0.00055 0.00175 0)
(0.0006 0.00175 0)
(0.00065 0.00175 0)
(0.0007 0.00175 0)
(0.00075 0.00175 0)
(0.0008 0.00175 0)
(0.00085 0.00175 0)
(0.0009 0.00175 0)
(0.00095 0.00175 0)
(0.001 0.00175 0)
(0 0.0018 0)
(5e-05 0.0018 0)
(0.0001 0.0018 0)
(0.00015 0.0018 0)
(0.0002 0.0018 0)
(0.00025 0.0018 0)
(0.0003 0.0018 0)
(0.00035 0.0018 0)
(0.0004 0.0018 0)
(0.00045 0.0018 0)
(0.0005 0.0018 0)
(0.00055 0.0018 0)
(0.0006 0.0018 0)
(0.00065 0.0018 0)
(0.0007 0.0018 0)
(0.00075 0.0018 0)
(0.0008 0.0018 0)
(0.00085 0.0018 0)
(0.0009 0.0018 0)
(0.00095 0.0018 0)
(0.001 0.0018 0)
(0 0.00185 0)
(5e-05 0.00185 0)
(0.0001 0.00185 0)
(0.00015 0.00185 0)
(0.0002 0.00185 0)
(0.00025 0.00185 0)
(0.0003 0.00185 0)
(0.00035 0.00185 0)
(0.0004 0.00185 0)
(0.00045 0.00185 0)
(0.0005 0.00185 0)
(0.00055 0.00185 0)
(0.0006 0.00185 0)
(0.00065 0.00185 0)
(0.0007 0.00185 0)
(0.00075 0.00185 0)
(0.0008 0.00185 0)
(0.00085 0.00185 0)
(0.0009 0.00185 0)
(0.00095 0.00185 0)
(0.001 0.00185 0)
(0 0.0019 0)
(5e-05 0.0019 0)
(0.0001 0.0019 0)
(0.00015 0.0019 0)
(0.0002 0.0019 0)
(0.00025 0.0019 0)
(0.0003 0.0019 0)
(0.00035 0.0019 0)
(0.0004 0.0019 0)
(0.00045 0.0019 0)
(0.0005 0.0019 0)
(0.00055 0.0019 0)
(0.0006 0.0019 0)
(0.00065 0.0019 0)
(0.0007 0.0019 0)
(0.00075 0.0019 0)
(0.0008 0.0019 0)
(0.00085 0.0019 0)
(0.0009 0.0019 0)
(0.00095 0.0019 0)
(0.001 0.0019 0)
(0 0.00195 0)
(5e-05 0.00195 0)
(0.0001 0.00195 0)
(0.00015 0.00195 0)
(0.0002 0.00195 0)
(0.00025 0.00195 0)
(0.0003 0.00195 0)
(0.00035 0.00195 0)
(0.0004 0.00195 0)
(0.00045 0.00195 0)
(0.0005 0.00195 0)
(0.00055 0.00195 0)
(0.0006 0.00195 0)
(0.00065 0.00195 0)
(0.0007 0.00195 0)
(0.00075 0.00195 0)
(0.0008 0.00195 0)
(0.00085 0.00195 0)
(0.0009 0.00195 0)
(0.00095 0.00195 0)
(0.001 0.00195 0)
(0 0.002 0)
(5e-05 0.002 0)
(0.0001 0.002 0)
(0.00015 0.002 0)
(0.0002 0.002 0)
(0.00025 0.002 0)
(0.0003 0.002 0)
(0.00035 0.002 0)
(0.0004 0.002 0)
(0.00045 0.002 0)
(0.0005 0.002 0)
(0.00055 0.002 0)
(0.0006 0.002 0)
(0.00065 0.002 0)
(0.0007 0.002 0)
(0.00075 0.002 0)
(0.0008 0.002 0)
(0.00085 0.002 0)
(0.0009 0.002 0)
(0.00095 0.002 0)
(0.001 0.002 0)
(0 0.00205 0)
(5e-05 0.00205 0)
(0.0001 0.00205 0)
(0.00015 0.00205 0)
(0.0002 0.00205 0)
(0.00025 0.00205 0)
(0.0003 0.00205 0)
(0.00035 0.00205 0)
(0.0004 0.00205 0)
(0.00045 0.00205 0)
(0.0005 0.00205 0)
(0.00055 0.00205 0)
(0.0006 0.00205 0)
(0.00065 0.00205 0)
(0.0007 0.00205 0)
(0.00075 0.00205 0)
(0.0008 0.00205 0)
(0.00085 0.00205 0)
(0.0009 0.00205 0)
(0.00095 0.00205 0)
(0.001 0.00205 0)
(0 0.0021 0)
(5e-05 0.0021 0)
(0.0001 0.0021 0)
(0.00015 0.0021 0)
(0.0002 0.0021 0)
(0.00025 0.0021 0)
(0.0003 0.0021 0)
(0.00035 0.0021 0)
(0.0004 0.0021 0)
(0.00045 0.0021 0)
(0.0005 0.0021 0)
(0.00055 0.0021 0)
(0.0006 0.0021 0)
(0.00065 0.0021 0)
(0.0007 0.0021 0)
(0.00075 0.0021 0)
(0.0008 0.0021 0)
(0.00085 0.0021 0)
(0.0009 0.0021 0)
(0.00095 0.0021 0)
(0.001 0.0021 0)
(0 0.00215 0)
(5e-05 0.00215 0)
(0.0001 0.00215 0)
(0.00015 0.00215 0)
(0.0002 0.00215 0)
(0.00025 0.00215 0)
(0.0003 0.00215 0)
(0.00035 0.00215 0)
(0.0004 0.00215 0)
(0.00045 0.00215 0)
(0.0005 0.00215 0)
(0.00055 0.00215 0)
(0.0006 0.00215 0)
(0.00065 0.00215 0)
(0.0007 0.00215 0)
(0.00075 0.00215 0)
(0.0008 0.00215 0)
(0.00085 0.00215 0)
(0.0009 0.00215 0)
(0.00095 0.00215 0)
(0.001 0.00215 0)
(0 0.0022 0)
(5e-05 0.0022 0)
(0.0001 0.0022 0)
(0.00015 0.0022 0)
(0.0002 0.0022 0)
(0.00025 0.0022 0)
(0.0003 0.0022 0)
(0.00035 0.0022 0)
(0.0004 0.0022 0)
(0.00045 0.0022 0)
(0.0005 0.0022 0)
(0.00055 0.0022 0)
(0.0006 0.0022 0)
(0.00065 0.0022 0)
(0.0007 0.0022 0)
(0.00075 0.0022 0)
(0.0008 0.0022 0)
(0.00085 0.0022 0)
(0.0009 0.0022 0)
(0.00095 0.0022 0)
(0.001 0.0022 0)
(0 0.00225 0)
(5e-05 0.00225 0)
(0.0001 0.00225 0)
(0.00015 0.00225 0)
(0.0002 0.00225 0)
(0.00025 0.00225 0)
(0.0003 0.00225 0)
(0.00035 0.00225 0)
(0.0004 0.00225 0)
(0.00045 0.00225 0)
(0.0005 0.00225 0)
(0.00055 0.00225 0)
(0.0006 0.00225 0)
(0.00065 0.00225 0)
(0.0007 0.00225 0)
(0.00075 0.00225 0)
(0.0008 0.00225 0)
(0.00085 0.00225 0)
(0.0009 0.00225 0)
(0.00095 0.00225 0)
(0.001 0.00225 0)
(0 0.0023 0)
(5e-05 0.0023 0)
(0.0001 0.0023 0)
(0.00015 0.0023 0)
(0.0002 0.0023 0)
(0.00025 0.0023 0)
(0.0003 0.0023 0)
(0.00035 0.0023 0)
(0.0004 0.0023 0)
(0.00045 0.0023 0)
(0.0005 0.0023 0)
(0.00055 0.0023 0)
(0.0006 0.0023 0)
(0.00065 0.0023 0)
(0.0007 0.0023 0)
(0.00075 0.0023 0)
(0.0008 0.0023 0)
(0.00085 0.0023 0)
(0.0009 0.0023 0)
(0.00095 0.0023 0)
(0.001 0.0023 0)
(0 0.00235 0)
(5e-05 0.00235 0)
(0.0001 0.00235 0)
(0.00015 0.00235 0)
(0.0002 0.00235 0)
(0.00025 0.00235 0)
(0.0003 0.00235 0)
(0.00035 0.00235 0)
(0.0004 0.00235 0)
(0.00045 0.00235 0)
(0.0005 0.00235 0)
(0.00055 0.00235 0)
(0.0006 0.00235 0)
(0.00065 0.00235 0)
(0.0007 0.00235 0)
(0.00075 0.00235 0)
(0.0008 0.00235 0)
(0.00085 0.00235 0)
(0.0009 0.00235 0)
(0.00095 0.00235 0)
(0.001 0.00235 0)
(0 0.0024 0)
(5e-05 0.0024 0)
(0.0001 0.0024 0)
(0.00015 0.0024 0)
(0.0002 0.0024 0)
(0.00025 0.0024 0)
(0.0003 0.0024 0)
(0.00035 0.0024 0)
(0.0004 0.0024 0)
(0.00045 0.0024 0)
(0.0005 0.0024 0)
(0.00055 0.0024 0)
(0.0006 0.0024 0)
(0.00065 0.0024 0)
(0.0007 0.0024 0)
(0.00075 0.0024 0)
(0.0008 0.0024 0)
(0.00085 0.0024 0)
(0.0009 0.0024 0)
(0.00095 0.0024 0)
(0.001 0.0024 0)
(0 0.00245 0)
(5e-05 0.00245 0)
(0.0001 0.00245 0)
(0.00015 0.00245 0)
(0.0002 0.00245 0)
(0.00025 0.00245 0)
(0.0003 0.00245 0)
(0.00035 0.00245 0)
(0.0004 0.00245 0)
(0.00045 0.00245 0)
(0.0005 0.00245 0)
(0.00055 0.00245 0)
(0.0006 0.00245 0)
(0.00065 0.00245 0)
(0.0007 0.00245 0)
(0.00075 0.00245 0)
(0.0008 0.00245 0)
(0.00085 0.00245 0)
(0.0009 0.00245 0)
(0.00095 0.00245 0)
(0.001 0.00245 0)
(0 0.0025 0)
(5e-05 0.0025 0)
(0.0001 0.0025 0)
(0.00015 0.0025 0)
(0.0002 0.0025 0)
(0.00025 0.0025 0)
(0.0003 0.0025 0)
(0.00035 0.0025 0)
(0.0004 0.0025 0)
(0.00045 0.0025 0)
(0.0005 0.0025 0)
(0.00055 0.0025 0)
(0.0006 0.0025 0)
(0.00065 0.0025 0)
(0.0007 0.0025 0)
(0.00075 0.0025 0)
(0.0008 0.0025 0)
(0.00085 0.0025 0)
(0.0009 0.0025 0)
(0.00095 0.0025 0)
(0.001 0.0025 0)
(0 0.00255 0)
(5e-05 0.00255 0)
(0.0001 0.00255 0)
(0.00015 0.00255 0)
(0.0002 0.00255 0)
(0.00025 0.00255 0)
(0.0003 0.00255 0)
(0.00035 0.00255 0)
(0.0004 0.00255 0)
(0.00045 0.00255 0)
(0.0005 0.00255 0)
(0.00055 0.00255 0)
(0.0006 0.00255 0)
(0.00065 0.00255 0)
(0.0007 0.00255 0)
(0.00075 0.00255 0)
(0.0008 0.00255 0)
(0.00085 0.00255 0)
(0.0009 0.00255 0)
(0.00095 0.00255 0)
(0.001 0.00255 0)
(0 0.0026 0)
(5e-05 0.0026 0)
(0.0001 0.0026 0)
(0.00015 0.0026 0)
(0.0002 0.0026 0)
(0.00025 0.0026 0)
(0.0003 0.0026 0)
(0.00035 0.0026 0)
(0.0004 0.0026 0)
(0.00045 0.0026 0)
(0.0005 0.0026 0)
(0.00055 0.0026 0)
(0.0006 0.0026 0)
(0.00065 0.0026 0)
(0.0007 0.0026 0)
(0.00075 0.0026 0)
(0.0008 0.0026 0)
(0.00085 0.0026 0)
(0.0009 0.0026 0)
(0.00095 0.0026 0)
(0.001 0.0026 0)
(0 0.00265 0)
(5e-05 0.00265 0)
(0.0001 0.00265 0)
(0.00015 0.00265 0)
(0.0002 0.00265 0)
(0.00025 0.00265 0)
(0.0003 0.00265 0)
(0.00035 0.00265 0)
(0.0004 0.00265 0)
(0.00045 0.00265 0)
(0.0005 0.00265 0)
(0.00055 0.00265 0)
(0.0006 0.00265 0)
(0.00065 0.00265 0)
(0.0007 0.00265 0)
(0.00075 0.00265 0)
(0.0008 0.00265 0)
(0.00085 0.00265 0)
(0.0009 0.00265 0)
(0.00095 0.00265 0)
(0.001 0.00265 0)
(0 0.0027 0)
(5e-05 0.0027 0)
(0.0001 0.0027 0)
(0.00015 0.0027 0)
(0.0002 0.0027 0)
(0.00025 0.0027 0)
(0.0003 0.0027 0)
(0.00035 0.0027 0)
(0.0004 0.0027 0)
(0.00045 0.0027 0)
(0.0005 0.0027 0)
(0.00055 0.0027 0)
(0.0006 0.0027 0)
(0.00065 0.0027 0)
(0.0007 0.0027 0)
(0.00075 0.0027 0)
(0.0008 0.0027 0)
(0.00085 0.0027 0)
(0.0009 0.0027 0)
(0.00095 0.0027 0)
(0.001 0.0027 0)
(0 0.00275 0)
(5e-05 0.00275 0)
(0.0001 0.00275 0)
(0.00015 0.00275 0)
(0.0002 0.00275 0)
(0.00025 0.00275 0)
(0.0003 0.00275 0)
(0.00035 0.00275 0)
(0.0004 0.00275 0)
(0.00045 0.00275 0)
(0.0005 0.00275 0)
(0.00055 0.00275 0)
(0.0006 0.00275 0)
(0.00065 0.00275 0)
(0.0007 0.00275 0)
(0.00075 0.00275 0)
(0.0008 0.00275 0)
(0.00085 0.00275 0)
(0.0009 0.00275 0)
(0.00095 0.00275 0)
(0.001 0.00275 0)
(0 0.0028 0)
(5e-05 0.0028 0)
(0.0001 0.0028 0)
(0.00015 0.0028 0)
(0.0002 0.0028 0)
(0.00025 0.0028 0)
(0.0003 0.0028 0)
(0.00035 0.0028 0)
(0.0004 0.0028 0)
(0.00045 0.0028 0)
(0.0005 0.0028 0)
(0.00055 0.0028 0)
(0.0006 0.0028 0)
(0.00065 0.0028 0)
(0.0007 0.0028 0)
(0.00075 0.0028 0)
(0.0008 0.0028 0)
(0.00085 0.0028 0)
(0.0009 0.0028 0)
(0.00095 0.0028 0)
(0.001 0.0028 0)
(0 0.00285 0)
(5e-05 0.00285 0)
(0.0001 0.00285 0)
(0.00015 0.00285 0)
(0.0002 0.00285 0)
(0.00025 0.00285 0)
(0.0003 0.00285 0)
(0.00035 0.00285 0)
(0.0004 0.00285 0)
(0.00045 0.00285 0)
(0.0005 0.00285 0)
(0.00055 0.00285 0)
(0.0006 0.00285 0)
(0.00065 0.00285 0)
(0.0007 0.00285 0)
(0.00075 0.00285 0)
(0.0008 0.00285 0)
(0.00085 0.00285 0)
(0.0009 0.00285 0)
(0.00095 0.00285 0)
(0.001 0.00285 0)
(0 0.0029 0)
(5e-05 0.0029 0)
(0.0001 0.0029 0)
(0.00015 0.0029 0)
(0.0002 0.0029 0)
(0.00025 0.0029 0)
(0.0003 0.0029 0)
(0.00035 0.0029 0)
(0.0004 0.0029 0)
(0.00045 0.0029 0)
(0.0005 0.0029 0)
(0.00055 0.0029 0)
(0.0006 0.0029 0)
(0.00065 0.0029 0)
(0.0007 0.0029 0)
(0.00075 0.0029 0)
(0.0008 0.0029 0)
(0.00085 0.0029 0)
(0.0009 0.0029 0)
(0.00095 0.0029 0)
(0.001 0.0029 0)
(0 0.00295 0)
(5e-05 0.00295 0)
(0.0001 0.00295 0)
(0.00015 0.00295 0)
(0.0002 0.00295 0)
(0.00025 0.00295 0)
(0.0003 0.00295 0)
(0.00035 0.00295 0)
(0.0004 0.00295 0)
(0.00045 0.00295 0)
(0.0005 0.00295 0)
(0.00055 0.00295 0)
(0.0006 0.00295 0)
(0.00065 0.00295 0)
(0.0007 0.00295 0)
(0.00075 0.00295 0)
(0.0008 0.00295 0)
(0.00085 0.00295 0)
(0.0009 0.00295 0)
(0.00095 0.00295 0)
(0.001 0.00295 0)
(0 0.003 0)
(5e-05 0.003 0)
(0.0001 0.003 0)
(0.00015 0.003 0)
(0.0002 0.003 0)
(0.00025 0.003 0)
(0.0003 0.003 0)
(0.00035 0.003 0)
(0.0004 0.003 0)
(0.00045 0.003 0)
(0.0005 0.003 0)
(0.00055 0.003 0)
(0.0006 0.003 0)
(0.00065 0.003 0)
(0.0007 0.003 0)
(0.00075 0.003 0)
(0.0008 0.003 0)
(0.00085 0.003 0)
(0.0009 0.003 0)
(0.00095 0.003 0)
(0.001 0.003 0)
(0 0.00305 0)
(5e-05 0.00305 0)
(0.0001 0.00305 0)
(0.00015 0.00305 0)
(0.0002 0.00305 0)
(0.00025 0.00305 0)
(0.0003 0.00305 0)
(0.00035 0.00305 0)
(0.0004 0.00305 0)
(0.00045 0.00305 0)
(0.0005 0.00305 0)
(0.00055 0.00305 0)
(0.0006 0.00305 0)
(0.00065 0.00305 0)
(0.0007 0.00305 0)
(0.00075 0.00305 0)
(0.0008 0.00305 0)
(0.00085 0.00305 0)
(0.0009 0.00305 0)
(0.00095 0.00305 0)
(0.001 0.00305 0)
(0 0.0031 0)
(5e-05 0.0031 0)
(0.0001 0.0031 0)
(0.00015 0.0031 0)
(0.0002 0.0031 0)
(0.00025 0.0031 0)
(0.0003 0.0031 0)
(0.00035 0.0031 0)
(0.0004 0.0031 0)
(0.00045 0.0031 0)
(0.0005 0.0031 0)
(0.00055 0.0031 0)
(0.0006 0.0031 0)
(0.00065 0.0031 0)
(0.0007 0.0031 0)
(0.00075 0.0031 0)
(0.0008 0.0031 0)
(0.00085 0.0031 0)
(0.0009 0.0031 0)
(0.00095 0.0031 0)
(0.001 0.0031 0)
(0 0.00315 0)
(5e-05 0.00315 0)
(0.0001 0.00315 0)
(0.00015 0.00315 0)
(0.0002 0.00315 0)
(0.00025 0.00315 0)
(0.0003 0.00315 0)
(0.00035 0.00315 0)
(0.0004 0.00315 0)
(0.00045 0.00315 0)
(0.0005 0.00315 0)
(0.00055 0.00315 0)
(0.0006 0.00315 0)
(0.00065 0.00315 0)
(0.0007 0.00315 0)
(0.00075 0.00315 0)
(0.0008 0.00315 0)
(0.00085 0.00315 0)
(0.0009 0.00315 0)
(0.00095 0.00315 0)
(0.001 0.00315 0)
(0 0.0032 0)
(5e-05 0.0032 0)
(0.0001 0.0032 0)
(0.00015 0.0032 0)
(0.0002 0.0032 0)
(0.00025 0.0032 0)
(0.0003 0.0032 0)
(0.00035 0.0032 0)
(0.0004 0.0032 0)
(0.00045 0.0032 0)
(0.0005 0.0032 0)
(0.00055 0.0032 0)
(0.0006 0.0032 0)
(0.00065 0.0032 0)
(0.0007 0.0032 0)
(0.00075 0.0032 0)
(0.0008 0.0032 0)
(0.00085 0.0032 0)
(0.0009 0.0032 0)
(0.00095 0.0032 0)
(0.001 0.0032 0)
(0 0.00325 0)
(5e-05 0.00325 0)
(0.0001 0.00325 0)
(0.00015 0.00325 0)
(0.0002 0.00325 0)
(0.00025 0.00325 0)
(0.0003 0.00325 0)
(0.00035 0.00325 0)
(0.0004 0.00325 0)
(0.00045 0.00325 0)
(0.0005 0.00325 0)
(0.00055 0.00325 0)
(0.0006 0.00325 0)
(0.00065 0.00325 0)
(0.0007 0.00325 0)
(0.00075 0.00325 0)
(0.0008 0.00325 0)
(0.00085 0.00325 0)
(0.0009 0.00325 0)
(0.00095 0.00325 0)
(0.001 0.00325 0)
(0 0.0033 0)
(5e-05 0.0033 0)
(0.0001 0.0033 0)
(0.00015 0.0033 0)
(0.0002 0.0033 0)
(0.00025 0.0033 0)
(0.0003 0.0033 0)
(0.00035 0.0033 0)
(0.0004 0.0033 0)
(0.00045 0.0033 0)
(0.0005 0.0033 0)
(0.00055 0.0033 0)
(0.0006 0.0033 0)
(0.00065 0.0033 0)
(0.0007 0.0033 0)
(0.00075 0.0033 0)
(0.0008 0.0033 0)
(0.00085 0.0033 0)
(0.0009 0.0033 0)
(0.00095 0.0033 0)
(0.001 0.0033 0)
(0 0.00335 0)
(5e-05 0.00335 0)
(0.0001 0.00335 0)
(0.00015 0.00335 0)
(0.0002 0.00335 0)
(0.00025 0.00335 0)
(0.0003 0.00335 0)
(0.00035 0.00335 0)
(0.0004 0.00335 0)
(0.00045 0.00335 0)
(0.0005 0.00335 0)
(0.00055 0.00335 0)
(0.0006 0.00335 0)
(0.00065 0.00335 0)
(0.0007 0.00335 0)
(0.00075 0.00335 0)
(0.0008 0.00335 0)
(0.00085 0.00335 0)
(0.0009 0.00335 0)
(0.00095 0.00335 0)
(0.001 0.00335 0)
(0 0.0034 0)
(5e-05 0.0034 0)
(0.0001 0.0034 0)
(0.00015 0.0034 0)
(0.0002 0.0034 0)
(0.00025 0.0034 0)
(0.0003 0.0034 0)
(0.00035 0.0034 0)
(0.0004 0.0034 0)
(0.00045 0.0034 0)
(0.0005 0.0034 0)
(0.00055 0.0034 0)
(0.0006 0.0034 0)
(0.00065 0.0034 0)
(0.0007 0.0034 0)
(0.00075 0.0034 0)
(0.0008 0.0034 0)
(0.00085 0.0034 0)
(0.0009 0.0034 0)
(0.00095 0.0034 0)
(0.001 0.0034 0)
(0 0.00345 0)
(5e-05 0.00345 0)
(0.0001 0.00345 0)
(0.00015 0.00345 0)
(0.0002 0.00345 0)
(0.00025 0.00345 0)
(0.0003 0.00345 0)
(0.00035 0.00345 0)
(0.0004 0.00345 0)
(0.00045 0.00345 0)
(0.0005 0.00345 0)
(0.00055 0.00345 0)
(0.0006 0.00345 0)
(0.00065 0.00345 0)
(0.0007 0.00345 0)
(0.00075 0.00345 0)
(0.0008 0.00345 0)
(0.00085 0.00345 0)
(0.0009 0.00345 0)
(0.00095 0.00345 0)
(0.001 0.00345 0)
(0 0.0035 0)
(5e-05 0.0035 0)
(0.0001 0.0035 0)
(0.00015 0.0035 0)
(0.0002 0.0035 0)
(0.00025 0.0035 0)
(0.0003 0.0035 0)
(0.00035 0.0035 0)
(0.0004 0.0035 0)
(0.00045 0.0035 0)
(0.0005 0.0035 0)
(0.00055 0.0035 0)
(0.0006 0.0035 0)
(0.00065 0.0035 0)
(0.0007 0.0035 0)
(0.00075 0.0035 0)
(0.0008 0.0035 0)
(0.00085 0.0035 0)
(0.0009 0.0035 0)
(0.00095 0.0035 0)
(0.001 0.0035 0)
(0 0.00355 0)
(5e-05 0.00355 0)
(0.0001 0.00355 0)
(0.00015 0.00355 0)
(0.0002 0.00355 0)
(0.00025 0.00355 0)
(0.0003 0.00355 0)
(0.00035 0.00355 0)
(0.0004 0.00355 0)
(0.00045 0.00355 0)
(0.0005 0.00355 0)
(0.00055 0.00355 0)
(0.0006 0.00355 0)
(0.00065 0.00355 0)
(0.0007 0.00355 0)
(0.00075 0.00355 0)
(0.0008 0.00355 0)
(0.00085 0.00355 0)
(0.0009 0.00355 0)
(0.00095 0.00355 0)
(0.001 0.00355 0)
(0 0.0036 0)
(5e-05 0.0036 0)
(0.0001 0.0036 0)
(0.00015 0.0036 0)
(0.0002 0.0036 0)
(0.00025 0.0036 0)
(0.0003 0.0036 0)
(0.00035 0.0036 0)
(0.0004 0.0036 0)
(0.00045 0.0036 0)
(0.0005 0.0036 0)
(0.00055 0.0036 0)
(0.0006 0.0036 0)
(0.00065 0.0036 0)
(0.0007 0.0036 0)
(0.00075 0.0036 0)
(0.0008 0.0036 0)
(0.00085 0.0036 0)
(0.0009 0.0036 0)
(0.00095 0.0036 0)
(0.001 0.0036 0)
(0 0.00365 0)
(5e-05 0.00365 0)
(0.0001 0.00365 0)
(0.00015 0.00365 0)
(0.0002 0.00365 0)
(0.00025 0.00365 0)
(0.0003 0.00365 0)
(0.00035 0.00365 0)
(0.0004 0.00365 0)
(0.00045 0.00365 0)
(0.0005 0.00365 0)
(0.00055 0.00365 0)
(0.0006 0.00365 0)
(0.00065 0.00365 0)
(0.0007 0.00365 0)
(0.00075 0.00365 0)
(0.0008 0.00365 0)
(0.00085 0.00365 0)
(0.0009 0.00365 0)
(0.00095 0.00365 0)
(0.001 0.00365 0)
(0 0.0037 0)
(5e-05 0.0037 0)
(0.0001 0.0037 0)
(0.00015 0.0037 0)
(0.0002 0.0037 0)
(0.00025 0.0037 0)
(0.0003 0.0037 0)
(0.00035 0.0037 0)
(0.0004 0.0037 0)
(0.00045 0.0037 0)
(0.0005 0.0037 0)
(0.00055 0.0037 0)
(0.0006 0.0037 0)
(0.00065 0.0037 0)
(0.0007 0.0037 0)
(0.00075 0.0037 0)
(0.0008 0.0037 0)
(0.00085 0.0037 0)
(0.0009 0.0037 0)
(0.00095 0.0037 0)
(0.001 0.0037 0)
(0 0.00375 0)
(5e-05 0.00375 0)
(0.0001 0.00375 0)
(0.00015 0.00375 0)
(0.0002 0.00375 0)
(0.00025 0.00375 0)
(0.0003 0.00375 0)
(0.00035 0.00375 0)
(0.0004 0.00375 0)
(0.00045 0.00375 0)
(0.0005 0.00375 0)
(0.00055 0.00375 0)
(0.0006 0.00375 0)
(0.00065 0.00375 0)
(0.0007 0.00375 0)
(0.00075 0.00375 0)
(0.0008 0.00375 0)
(0.00085 0.00375 0)
(0.0009 0.00375 0)
(0.00095 0.00375 0)
(0.001 0.00375 0)
(0 0.0038 0)
(5e-05 0.0038 0)
(0.0001 0.0038 0)
(0.00015 0.0038 0)
(0.0002 0.0038 0)
(0.00025 0.0038 0)
(0.0003 0.0038 0)
(0.00035 0.0038 0)
(0.0004 0.0038 0)
(0.00045 0.0038 0)
(0.0005 0.0038 0)
(0.00055 0.0038 0)
(0.0006 0.0038 0)
(0.00065 0.0038 0)
(0.0007 0.0038 0)
(0.00075 0.0038 0)
(0.0008 0.0038 0)
(0.00085 0.0038 0)
(0.0009 0.0038 0)
(0.00095 0.0038 0)
(0.001 0.0038 0)
(0 0.00385 0)
(5e-05 0.00385 0)
(0.0001 0.00385 0)
(0.00015 0.00385 0)
(0.0002 0.00385 0)
(0.00025 0.00385 0)
(0.0003 0.00385 0)
(0.00035 0.00385 0)
(0.0004 0.00385 0)
(0.00045 0.00385 0)
(0.0005 0.00385 0)
(0.00055 0.00385 0)
(0.0006 0.00385 0)
(0.00065 0.00385 0)
(0.0007 0.00385 0)
(0.00075 0.00385 0)
(0.0008 0.00385 0)
(0.00085 0.00385 0)
(0.0009 0.00385 0)
(0.00095 0.00385 0)
(0.001 0.00385 0)
(0 0.0039 0)
(5e-05 0.0039 0)
(0.0001 0.0039 0)
(0.00015 0.0039 0)
(0.0002 0.0039 0)
(0.00025 0.0039 0)
(0.0003 0.0039 0)
(0.00035 0.0039 0)
(0.0004 0.0039 0)
(0.00045 0.0039 0)
(0.0005 0.0039 0)
(0.00055 0.0039 0)
(0.0006 0.0039 0)
(0.00065 0.0039 0)
(0.0007 0.0039 0)
(0.00075 0.0039 0)
(0.0008 0.0039 0)
(0.00085 0.0039 0)
(0.0009 0.0039 0)
(0.00095 0.0039 0)
(0.001 0.0039 0)
(0 0.00395 0)
(5e-05 0.00395 0)
(0.0001 0.00395 0)
(0.00015 0.00395 0)
(0.0002 0.00395 0)
(0.00025 0.00395 0)
(0.0003 0.00395 0)
(0.00035 0.00395 0)
(0.0004 0.00395 0)
(0.00045 0.00395 0)
(0.0005 0.00395 0)
(0.00055 0.00395 0)
(0.0006 0.00395 0)
(0.00065 0.00395 0)
(0.0007 0.00395 0)
(0.00075 0.00395 0)
(0.0008 0.00395 0)
(0.00085 0.00395 0)
(0.0009 0.00395 0)
(0.00095 0.00395 0)
(0.001 0.00395 0)
(0 0.004 0)
(5e-05 0.004 0)
(0.0001 0.004 0)
(0.00015 0.004 0)
(0.0002 0.004 0)
(0.00025 0.004 0)
(0.0003 0.004 0)
(0.00035 0.004 0)
(0.0004 0.004 0)
(0.00045 0.004 0)
(0.0005 0.004 0)
(0.00055 0.004 0)
(0.0006 0.004 0)
(0.00065 0.004 0)
(0.0007 0.004 0)
(0.00075 0.004 0)
(0.0008 0.004 0)
(0.00085 0.004 0)
(0.0009 0.004 0)
(0.00095 0.004 0)
(0.001 0.004 0)
(0 0.00405 0)
(5e-05 0.00405 0)
(0.0001 0.00405 0)
(0.00015 0.00405 0)
(0.0002 0.00405 0)
(0.00025 0.00405 0)
(0.0003 0.00405 0)
(0.00035 0.00405 0)
(0.0004 0.00405 0)
(0.00045 0.00405 0)
(0.0005 0.00405 0)
(0.00055 0.00405 0)
(0.0006 0.00405 0)
(0.00065 0.00405 0)
(0.0007 0.00405 0)
(0.00075 0.00405 0)
(0.0008 0.00405 0)
(0.00085 0.00405 0)
(0.0009 0.00405 0)
(0.00095 0.00405 0)
(0.001 0.00405 0)
(0 0.0041 0)
(5e-05 0.0041 0)
(0.0001 0.0041 0)
(0.00015 0.0041 0)
(0.0002 0.0041 0)
(0.00025 0.0041 0)
(0.0003 0.0041 0)
(0.00035 0.0041 0)
(0.0004 0.0041 0)
(0.00045 0.0041 0)
(0.0005 0.0041 0)
(0.00055 0.0041 0)
(0.0006 0.0041 0)
(0.00065 0.0041 0)
(0.0007 0.0041 0)
(0.00075 0.0041 0)
(0.0008 0.0041 0)
(0.00085 0.0041 0)
(0.0009 0.0041 0)
(0.00095 0.0041 0)
(0.001 0.0041 0)
(0 0.00415 0)
(5e-05 0.00415 0)
(0.0001 0.00415 0)
(0.00015 0.00415 0)
(0.0002 0.00415 0)
(0.00025 0.00415 0)
(0.0003 0.00415 0)
(0.00035 0.00415 0)
(0.0004 0.00415 0)
(0.00045 0.00415 0)
(0.0005 0.00415 0)
(0.00055 0.00415 0)
(0.0006 0.00415 0)
(0.00065 0.00415 0)
(0.0007 0.00415 0)
(0.00075 0.00415 0)
(0.0008 0.00415 0)
(0.00085 0.00415 0)
(0.0009 0.00415 0)
(0.00095 0.00415 0)
(0.001 0.00415 0)
(0 0.0042 0)
(5e-05 0.0042 0)
(0.0001 0.0042 0)
(0.00015 0.0042 0)
(0.0002 0.0042 0)
(0.00025 0.0042 0)
(0.0003 0.0042 0)
(0.00035 0.0042 0)
(0.0004 0.0042 0)
(0.00045 0.0042 0)
(0.0005 0.0042 0)
(0.00055 0.0042 0)
(0.0006 0.0042 0)
(0.00065 0.0042 0)
(0.0007 0.0042 0)
(0.00075 0.0042 0)
(0.0008 0.0042 0)
(0.00085 0.0042 0)
(0.0009 0.0042 0)
(0.00095 0.0042 0)
(0.001 0.0042 0)
(0 0.00425 0)
(5e-05 0.00425 0)
(0.0001 0.00425 0)
(0.00015 0.00425 0)
(0.0002 0.00425 0)
(0.00025 0.00425 0)
(0.0003 0.00425 0)
(0.00035 0.00425 0)
(0.0004 0.00425 0)
(0.00045 0.00425 0)
(0.0005 0.00425 0)
(0.00055 0.00425 0)
(0.0006 0.00425 0)
(0.00065 0.00425 0)
(0.0007 0.00425 0)
(0.00075 0.00425 0)
(0.0008 0.00425 0)
(0.00085 0.00425 0)
(0.0009 0.00425 0)
(0.00095 0.00425 0)
(0.001 0.00425 0)
(0 0.0043 0)
(5e-05 0.0043 0)
(0.0001 0.0043 0)
(0.00015 0.0043 0)
(0.0002 0.0043 0)
(0.00025 0.0043 0)
(0.0003 0.0043 0)
(0.00035 0.0043 0)
(0.0004 0.0043 0)
(0.00045 0.0043 0)
(0.0005 0.0043 0)
(0.00055 0.0043 0)
(0.0006 0.0043 0)
(0.00065 0.0043 0)
(0.0007 0.0043 0)
(0.00075 0.0043 0)
(0.0008 0.0043 0)
(0.00085 0.0043 0)
(0.0009 0.0043 0)
(0.00095 0.0043 0)
(0.001 0.0043 0)
(0 0.00435 0)
(5e-05 0.00435 0)
(0.0001 0.00435 0)
(0.00015 0.00435 0)
(0.0002 0.00435 0)
(0.00025 0.00435 0)
(0.0003 0.00435 0)
(0.00035 0.00435 0)
(0.0004 0.00435 0)
(0.00045 0.00435 0)
(0.0005 0.00435 0)
(0.00055 0.00435 0)
(0.0006 0.00435 0)
(0.00065 0.00435 0)
(0.0007 0.00435 0)
(0.00075 0.00435 0)
(0.0008 0.00435 0)
(0.00085 0.00435 0)
(0.0009 0.00435 0)
(0.00095 0.00435 0)
(0.001 0.00435 0)
(0 0.0044 0)
(5e-05 0.0044 0)
(0.0001 0.0044 0)
(0.00015 0.0044 0)
(0.0002 0.0044 0)
(0.00025 0.0044 0)
(0.0003 0.0044 0)
(0.00035 0.0044 0)
(0.0004 0.0044 0)
(0.00045 0.0044 0)
(0.0005 0.0044 0)
(0.00055 0.0044 0)
(0.0006 0.0044 0)
(0.00065 0.0044 0)
(0.0007 0.0044 0)
(0.00075 0.0044 0)
(0.0008 0.0044 0)
(0.00085 0.0044 0)
(0.0009 0.0044 0)
(0.00095 0.0044 0)
(0.001 0.0044 0)
(0 0.00445 0)
(5e-05 0.00445 0)
(0.0001 0.00445 0)
(0.00015 0.00445 0)
(0.0002 0.00445 0)
(0.00025 0.00445 0)
(0.0003 0.00445 0)
(0.00035 0.00445 0)
(0.0004 0.00445 0)
(0.00045 0.00445 0)
(0.0005 0.00445 0)
(0.00055 0.00445 0)
(0.0006 0.00445 0)
(0.00065 0.00445 0)
(0.0007 0.00445 0)
(0.00075 0.00445 0)
(0.0008 0.00445 0)
(0.00085 0.00445 0)
(0.0009 0.00445 0)
(0.00095 0.00445 0)
(0.001 0.00445 0)
(0 0.0045 0)
(5e-05 0.0045 0)
(0.0001 0.0045 0)
(0.00015 0.0045 0)
(0.0002 0.0045 0)
(0.00025 0.0045 0)
(0.0003 0.0045 0)
(0.00035 0.0045 0)
(0.0004 0.0045 0)
(0.00045 0.0045 0)
(0.0005 0.0045 0)
(0.00055 0.0045 0)
(0.0006 0.0045 0)
(0.00065 0.0045 0)
(0.0007 0.0045 0)
(0.00075 0.0045 0)
(0.0008 0.0045 0)
(0.00085 0.0045 0)
(0.0009 0.0045 0)
(0.00095 0.0045 0)
(0.001 0.0045 0)
(0 0.00455 0)
(5e-05 0.00455 0)
(0.0001 0.00455 0)
(0.00015 0.00455 0)
(0.0002 0.00455 0)
(0.00025 0.00455 0)
(0.0003 0.00455 0)
(0.00035 0.00455 0)
(0.0004 0.00455 0)
(0.00045 0.00455 0)
(0.0005 0.00455 0)
(0.00055 0.00455 0)
(0.0006 0.00455 0)
(0.00065 0.00455 0)
(0.0007 0.00455 0)
(0.00075 0.00455 0)
(0.0008 0.00455 0)
(0.00085 0.00455 0)
(0.0009 0.00455 0)
(0.00095 0.00455 0)
(0.001 0.00455 0)
(0 0.0046 0)
(5e-05 0.0046 0)
(0.0001 0.0046 0)
(0.00015 0.0046 0)
(0.0002 0.0046 0)
(0.00025 0.0046 0)
(0.0003 0.0046 0)
(0.00035 0.0046 0)
(0.0004 0.0046 0)
(0.00045 0.0046 0)
(0.0005 0.0046 0)
(0.00055 0.0046 0)
(0.0006 0.0046 0)
(0.00065 0.0046 0)
(0.0007 0.0046 0)
(0.00075 0.0046 0)
(0.0008 0.0046 0)
(0.00085 0.0046 0)
(0.0009 0.0046 0)
(0.00095 0.0046 0)
(0.001 0.0046 0)
(0 0.00465 0)
(5e-05 0.00465 0)
(0.0001 0.00465 0)
(0.00015 0.00465 0)
(0.0002 0.00465 0)
(0.00025 0.00465 0)
(0.0003 0.00465 0)
(0.00035 0.00465 0)
(0.0004 0.00465 0)
(0.00045 0.00465 0)
(0.0005 0.00465 0)
(0.00055 0.00465 0)
(0.0006 0.00465 0)
(0.00065 0.00465 0)
(0.0007 0.00465 0)
(0.00075 0.00465 0)
(0.0008 0.00465 0)
(0.00085 0.00465 0)
(0.0009 0.00465 0)
(0.00095 0.00465 0)
(0.001 0.00465 0)
(0 0.0047 0)
(5e-05 0.0047 0)
(0.0001 0.0047 0)
(0.00015 0.0047 0)
(0.0002 0.0047 0)
(0.00025 0.0047 0)
(0.0003 0.0047 0)
(0.00035 0.0047 0)
(0.0004 0.0047 0)
(0.00045 0.0047 0)
(0.0005 0.0047 0)
(0.00055 0.0047 0)
(0.0006 0.0047 0)
(0.00065 0.0047 0)
(0.0007 0.0047 0)
(0.00075 0.0047 0)
(0.0008 0.0047 0)
(0.00085 0.0047 0)
(0.0009 0.0047 0)
(0.00095 0.0047 0)
(0.001 0.0047 0)
(0 0.00475 0)
(5e-05 0.00475 0)
(0.0001 0.00475 0)
(0.00015 0.00475 0)
(0.0002 0.00475 0)
(0.00025 0.00475 0)
(0.0003 0.00475 0)
(0.00035 0.00475 0)
(0.0004 0.00475 0)
(0.00045 0.00475 0)
(0.0005 0.00475 0)
(0.00055 0.00475 0)
(0.0006 0.00475 0)
(0.00065 0.00475 0)
(0.0007 0.00475 0)
(0.00075 0.00475 0)
(0.0008 0.00475 0)
(0.00085 0.00475 0)
(0.0009 0.00475 0)
(0.00095 0.00475 0)
(0.001 0.00475 0)
(0 0.0048 0)
(5e-05 0.0048 0)
(0.0001 0.0048 0)
(0.00015 0.0048 0)
(0.0002 0.0048 0)
(0.00025 0.0048 0)
(0.0003 0.0048 0)
(0.00035 0.0048 0)
(0.0004 0.0048 0)
(0.00045 0.0048 0)
(0.0005 0.0048 0)
(0.00055 0.0048 0)
(0.0006 0.0048 0)
(0.00065 0.0048 0)
(0.0007 0.0048 0)
(0.00075 0.0048 0)
(0.0008 0.0048 0)
(0.00085 0.0048 0)
(0.0009 0.0048 0)
(0.00095 0.0048 0)
(0.001 0.0048 0)
(0 0.00485 0)
(5e-05 0.00485 0)
(0.0001 0.00485 0)
(0.00015 0.00485 0)
(0.0002 0.00485 0)
(0.00025 0.00485 0)
(0.0003 0.00485 0)
(0.00035 0.00485 0)
(0.0004 0.00485 0)
(0.00045 0.00485 0)
(0.0005 0.00485 0)
(0.00055 0.00485 0)
(0.0006 0.00485 0)
(0.00065 0.00485 0)
(0.0007 0.00485 0)
(0.00075 0.00485 0)
(0.0008 0.00485 0)
(0.00085 0.00485 0)
(0.0009 0.00485 0)
(0.00095 0.00485 0)
(0.001 0.00485 0)
(0 0.0049 0)
(5e-05 0.0049 0)
(0.0001 0.0049 0)
(0.00015 0.0049 0)
(0.0002 0.0049 0)
(0.00025 0.0049 0)
(0.0003 0.0049 0)
(0.00035 0.0049 0)
(0.0004 0.0049 0)
(0.00045 0.0049 0)
(0.0005 0.0049 0)
(0.00055 0.0049 0)
(0.0006 0.0049 0)
(0.00065 0.0049 0)
(0.0007 0.0049 0)
(0.00075 0.0049 0)
(0.0008 0.0049 0)
(0.00085 0.0049 0)
(0.0009 0.0049 0)
(0.00095 0.0049 0)
(0.001 0.0049 0)
(0 0.00495 0)
(5e-05 0.00495 0)
(0.0001 0.00495 0)
(0.00015 0.00495 0)
(0.0002 0.00495 0)
(0.00025 0.00495 0)
(0.0003 0.00495 0)
(0.00035 0.00495 0)
(0.0004 0.00495 0)
(0.00045 0.00495 0)
(0.0005 0.00495 0)
(0.00055 0.00495 0)
(0.0006 0.00495 0)
(0.00065 0.00495 0)
(0.0007 0.00495 0)
(0.00075 0.00495 0)
(0.0008 0.00495 0)
(0.00085 0.00495 0)
(0.0009 0.00495 0)
(0.00095 0.00495 0)
(0.001 0.00495 0)
(0 0.005 0)
(5e-05 0.005 0)
(0.0001 0.005 0)
(0.00015 0.005 0)
(0.0002 0.005 0)
(0.00025 0.005 0)
(0.0003 0.005 0)
(0.00035 0.005 0)
(0.0004 0.005 0)
(0.00045 0.005 0)
(0.0005 0.005 0)
(0.00055 0.005 0)
(0.0006 0.005 0)
(0.00065 0.005 0)
(0.0007 0.005 0)
(0.00075 0.005 0)
(0.0008 0.005 0)
(0.00085 0.005 0)
(0.0009 0.005 0)
(0.00095 0.005 0)
(0.001 0.005 0)
(0 0.00505 0)
(5e-05 0.00505 0)
(0.0001 0.00505 0)
(0.00015 0.00505 0)
(0.0002 0.00505 0)
(0.00025 0.00505 0)
(0.0003 0.00505 0)
(0.00035 0.00505 0)
(0.0004 0.00505 0)
(0.00045 0.00505 0)
(0.0005 0.00505 0)
(0.00055 0.00505 0)
(0.0006 0.00505 0)
(0.00065 0.00505 0)
(0.0007 0.00505 0)
(0.00075 0.00505 0)
(0.0008 0.00505 0)
(0.00085 0.00505 0)
(0.0009 0.00505 0)
(0.00095 0.00505 0)
(0.001 0.00505 0)
(0 0.0051 0)
(5e-05 0.0051 0)
(0.0001 0.0051 0)
(0.00015 0.0051 0)
(0.0002 0.0051 0)
(0.00025 0.0051 0)
(0.0003 0.0051 0)
(0.00035 0.0051 0)
(0.0004 0.0051 0)
(0.00045 0.0051 0)
(0.0005 0.0051 0)
(0.00055 0.0051 0)
(0.0006 0.0051 0)
(0.00065 0.0051 0)
(0.0007 0.0051 0)
(0.00075 0.0051 0)
(0.0008 0.0051 0)
(0.00085 0.0051 0)
(0.0009 0.0051 0)
(0.00095 0.0051 0)
(0.001 0.0051 0)
(0 0.00515 0)
(5e-05 0.00515 0)
(0.0001 0.00515 0)
(0.00015 0.00515 0)
(0.0002 0.00515 0)
(0.00025 0.00515 0)
(0.0003 0.00515 0)
(0.00035 0.00515 0)
(0.0004 0.00515 0)
(0.00045 0.00515 0)
(0.0005 0.00515 0)
(0.00055 0.00515 0)
(0.0006 0.00515 0)
(0.00065 0.00515 0)
(0.0007 0.00515 0)
(0.00075 0.00515 0)
(0.0008 0.00515 0)
(0.00085 0.00515 0)
(0.0009 0.00515 0)
(0.00095 0.00515 0)
(0.001 0.00515 0)
(0 0.0052 0)
(5e-05 0.0052 0)
(0.0001 0.0052 0)
(0.00015 0.0052 0)
(0.0002 0.0052 0)
(0.00025 0.0052 0)
(0.0003 0.0052 0)
(0.00035 0.0052 0)
(0.0004 0.0052 0)
(0.00045 0.0052 0)
(0.0005 0.0052 0)
(0.00055 0.0052 0)
(0.0006 0.0052 0)
(0.00065 0.0052 0)
(0.0007 0.0052 0)
(0.00075 0.0052 0)
(0.0008 0.0052 0)
(0.00085 0.0052 0)
(0.0009 0.0052 0)
(0.00095 0.0052 0)
(0.001 0.0052 0)
(0 0.00525 0)
(5e-05 0.00525 0)
(0.0001 0.00525 0)
(0.00015 0.00525 0)
(0.0002 0.00525 0)
(0.00025 0.00525 0)
(0.0003 0.00525 0)
(0.00035 0.00525 0)
(0.0004 0.00525 0)
(0.00045 0.00525 0)
(0.0005 0.00525 0)
(0.00055 0.00525 0)
(0.0006 0.00525 0)
(0.00065 0.00525 0)
(0.0007 0.00525 0)
(0.00075 0.00525 0)
(0.0008 0.00525 0)
(0.00085 0.00525 0)
(0.0009 0.00525 0)
(0.00095 0.00525 0)
(0.001 0.00525 0)
(0 0.0053 0)
(5e-05 0.0053 0)
(0.0001 0.0053 0)
(0.00015 0.0053 0)
(0.0002 0.0053 0)
(0.00025 0.0053 0)
(0.0003 0.0053 0)
(0.00035 0.0053 0)
(0.0004 0.0053 0)
(0.00045 0.0053 0)
(0.0005 0.0053 0)
(0.00055 0.0053 0)
(0.0006 0.0053 0)
(0.00065 0.0053 0)
(0.0007 0.0053 0)
(0.00075 0.0053 0)
(0.0008 0.0053 0)
(0.00085 0.0053 0)
(0.0009 0.0053 0)
(0.00095 0.0053 0)
(0.001 0.0053 0)
(0 0.00535 0)
(5e-05 0.00535 0)
(0.0001 0.00535 0)
(0.00015 0.00535 0)
(0.0002 0.00535 0)
(0.00025 0.00535 0)
(0.0003 0.00535 0)
(0.00035 0.00535 0)
(0.0004 0.00535 0)
(0.00045 0.00535 0)
(0.0005 0.00535 0)
(0.00055 0.00535 0)
(0.0006 0.00535 0)
(0.00065 0.00535 0)
(0.0007 0.00535 0)
(0.00075 0.00535 0)
(0.0008 0.00535 0)
(0.00085 0.00535 0)
(0.0009 0.00535 0)
(0.00095 0.00535 0)
(0.001 0.00535 0)
(0 0.0054 0)
(5e-05 0.0054 0)
(0.0001 0.0054 0)
(0.00015 0.0054 0)
(0.0002 0.0054 0)
(0.00025 0.0054 0)
(0.0003 0.0054 0)
(0.00035 0.0054 0)
(0.0004 0.0054 0)
(0.00045 0.0054 0)
(0.0005 0.0054 0)
(0.00055 0.0054 0)
(0.0006 0.0054 0)
(0.00065 0.0054 0)
(0.0007 0.0054 0)
(0.00075 0.0054 0)
(0.0008 0.0054 0)
(0.00085 0.0054 0)
(0.0009 0.0054 0)
(0.00095 0.0054 0)
(0.001 0.0054 0)
(0 0.00545 0)
(5e-05 0.00545 0)
(0.0001 0.00545 0)
(0.00015 0.00545 0)
(0.0002 0.00545 0)
(0.00025 0.00545 0)
(0.0003 0.00545 0)
(0.00035 0.00545 0)
(0.0004 0.00545 0)
(0.00045 0.00545 0)
(0.0005 0.00545 0)
(0.00055 0.00545 0)
(0.0006 0.00545 0)
(0.00065 0.00545 0)
(0.0007 0.00545 0)
(0.00075 0.00545 0)
(0.0008 0.00545 0)
(0.00085 0.00545 0)
(0.0009 0.00545 0)
(0.00095 0.00545 0)
(0.001 0.00545 0)
(0 0.0055 0)
(5e-05 0.0055 0)
(0.0001 0.0055 0)
(0.00015 0.0055 0)
(0.0002 0.0055 0)
(0.00025 0.0055 0)
(0.0003 0.0055 0)
(0.00035 0.0055 0)
(0.0004 0.0055 0)
(0.00045 0.0055 0)
(0.0005 0.0055 0)
(0.00055 0.0055 0)
(0.0006 0.0055 0)
(0.00065 0.0055 0)
(0.0007 0.0055 0)
(0.00075 0.0055 0)
(0.0008 0.0055 0)
(0.00085 0.0055 0)
(0.0009 0.0055 0)
(0.00095 0.0055 0)
(0.001 0.0055 0)
(0 0.00555 0)
(5e-05 0.00555 0)
(0.0001 0.00555 0)
(0.00015 0.00555 0)
(0.0002 0.00555 0)
(0.00025 0.00555 0)
(0.0003 0.00555 0)
(0.00035 0.00555 0)
(0.0004 0.00555 0)
(0.00045 0.00555 0)
(0.0005 0.00555 0)
(0.00055 0.00555 0)
(0.0006 0.00555 0)
(0.00065 0.00555 0)
(0.0007 0.00555 0)
(0.00075 0.00555 0)
(0.0008 0.00555 0)
(0.00085 0.00555 0)
(0.0009 0.00555 0)
(0.00095 0.00555 0)
(0.001 0.00555 0)
(0 0.0056 0)
(5e-05 0.0056 0)
(0.0001 0.0056 0)
(0.00015 0.0056 0)
(0.0002 0.0056 0)
(0.00025 0.0056 0)
(0.0003 0.0056 0)
(0.00035 0.0056 0)
(0.0004 0.0056 0)
(0.00045 0.0056 0)
(0.0005 0.0056 0)
(0.00055 0.0056 0)
(0.0006 0.0056 0)
(0.00065 0.0056 0)
(0.0007 0.0056 0)
(0.00075 0.0056 0)
(0.0008 0.0056 0)
(0.00085 0.0056 0)
(0.0009 0.0056 0)
(0.00095 0.0056 0)
(0.001 0.0056 0)
(0 0.00565 0)
(5e-05 0.00565 0)
(0.0001 0.00565 0)
(0.00015 0.00565 0)
(0.0002 0.00565 0)
(0.00025 0.00565 0)
(0.0003 0.00565 0)
(0.00035 0.00565 0)
(0.0004 0.00565 0)
(0.00045 0.00565 0)
(0.0005 0.00565 0)
(0.00055 0.00565 0)
(0.0006 0.00565 0)
(0.00065 0.00565 0)
(0.0007 0.00565 0)
(0.00075 0.00565 0)
(0.0008 0.00565 0)
(0.00085 0.00565 0)
(0.0009 0.00565 0)
(0.00095 0.00565 0)
(0.001 0.00565 0)
(0 0.0057 0)
(5e-05 0.0057 0)
(0.0001 0.0057 0)
(0.00015 0.0057 0)
(0.0002 0.0057 0)
(0.00025 0.0057 0)
(0.0003 0.0057 0)
(0.00035 0.0057 0)
(0.0004 0.0057 0)
(0.00045 0.0057 0)
(0.0005 0.0057 0)
(0.00055 0.0057 0)
(0.0006 0.0057 0)
(0.00065 0.0057 0)
(0.0007 0.0057 0)
(0.00075 0.0057 0)
(0.0008 0.0057 0)
(0.00085 0.0057 0)
(0.0009 0.0057 0)
(0.00095 0.0057 0)
(0.001 0.0057 0)
(0 0.00575 0)
(5e-05 0.00575 0)
(0.0001 0.00575 0)
(0.00015 0.00575 0)
(0.0002 0.00575 0)
(0.00025 0.00575 0)
(0.0003 0.00575 0)
(0.00035 0.00575 0)
(0.0004 0.00575 0)
(0.00045 0.00575 0)
(0.0005 0.00575 0)
(0.00055 0.00575 0)
(0.0006 0.00575 0)
(0.00065 0.00575 0)
(0.0007 0.00575 0)
(0.00075 0.00575 0)
(0.0008 0.00575 0)
(0.00085 0.00575 0)
(0.0009 0.00575 0)
(0.00095 0.00575 0)
(0.001 0.00575 0)
(0 0.0058 0)
(5e-05 0.0058 0)
(0.0001 0.0058 0)
(0.00015 0.0058 0)
(0.0002 0.0058 0)
(0.00025 0.0058 0)
(0.0003 0.0058 0)
(0.00035 0.0058 0)
(0.0004 0.0058 0)
(0.00045 0.0058 0)
(0.0005 0.0058 0)
(0.00055 0.0058 0)
(0.0006 0.0058 0)
(0.00065 0.0058 0)
(0.0007 0.0058 0)
(0.00075 0.0058 0)
(0.0008 0.0058 0)
(0.00085 0.0058 0)
(0.0009 0.0058 0)
(0.00095 0.0058 0)
(0.001 0.0058 0)
(0 0.00585 0)
(5e-05 0.00585 0)
(0.0001 0.00585 0)
(0.00015 0.00585 0)
(0.0002 0.00585 0)
(0.00025 0.00585 0)
(0.0003 0.00585 0)
(0.00035 0.00585 0)
(0.0004 0.00585 0)
(0.00045 0.00585 0)
(0.0005 0.00585 0)
(0.00055 0.00585 0)
(0.0006 0.00585 0)
(0.00065 0.00585 0)
(0.0007 0.00585 0)
(0.00075 0.00585 0)
(0.0008 0.00585 0)
(0.00085 0.00585 0)
(0.0009 0.00585 0)
(0.00095 0.00585 0)
(0.001 0.00585 0)
(0 0.0059 0)
(5e-05 0.0059 0)
(0.0001 0.0059 0)
(0.00015 0.0059 0)
(0.0002 0.0059 0)
(0.00025 0.0059 0)
(0.0003 0.0059 0)
(0.00035 0.0059 0)
(0.0004 0.0059 0)
(0.00045 0.0059 0)
(0.0005 0.0059 0)
(0.00055 0.0059 0)
(0.0006 0.0059 0)
(0.00065 0.0059 0)
(0.0007 0.0059 0)
(0.00075 0.0059 0)
(0.0008 0.0059 0)
(0.00085 0.0059 0)
(0.0009 0.0059 0)
(0.00095 0.0059 0)
(0.001 0.0059 0)
(0 0.00595 0)
(5e-05 0.00595 0)
(0.0001 0.00595 0)
(0.00015 0.00595 0)
(0.0002 0.00595 0)
(0.00025 0.00595 0)
(0.0003 0.00595 0)
(0.00035 0.00595 0)
(0.0004 0.00595 0)
(0.00045 0.00595 0)
(0.0005 0.00595 0)
(0.00055 0.00595 0)
(0.0006 0.00595 0)
(0.00065 0.00595 0)
(0.0007 0.00595 0)
(0.00075 0.00595 0)
(0.0008 0.00595 0)
(0.00085 0.00595 0)
(0.0009 0.00595 0)
(0.00095 0.00595 0)
(0.001 0.00595 0)
(0 0.006 0)
(5e-05 0.006 0)
(0.0001 0.006 0)
(0.00015 0.006 0)
(0.0002 0.006 0)
(0.00025 0.006 0)
(0.0003 0.006 0)
(0.00035 0.006 0)
(0.0004 0.006 0)
(0.00045 0.006 0)
(0.0005 0.006 0)
(0.00055 0.006 0)
(0.0006 0.006 0)
(0.00065 0.006 0)
(0.0007 0.006 0)
(0.00075 0.006 0)
(0.0008 0.006 0)
(0.00085 0.006 0)
(0.0009 0.006 0)
(0.00095 0.006 0)
(0.001 0.006 0)
(0 0.00605 0)
(5e-05 0.00605 0)
(0.0001 0.00605 0)
(0.00015 0.00605 0)
(0.0002 0.00605 0)
(0.00025 0.00605 0)
(0.0003 0.00605 0)
(0.00035 0.00605 0)
(0.0004 0.00605 0)
(0.00045 0.00605 0)
(0.0005 0.00605 0)
(0.00055 0.00605 0)
(0.0006 0.00605 0)
(0.00065 0.00605 0)
(0.0007 0.00605 0)
(0.00075 0.00605 0)
(0.0008 0.00605 0)
(0.00085 0.00605 0)
(0.0009 0.00605 0)
(0.00095 0.00605 0)
(0.001 0.00605 0)
(0 0.0061 0)
(5e-05 0.0061 0)
(0.0001 0.0061 0)
(0.00015 0.0061 0)
(0.0002 0.0061 0)
(0.00025 0.0061 0)
(0.0003 0.0061 0)
(0.00035 0.0061 0)
(0.0004 0.0061 0)
(0.00045 0.0061 0)
(0.0005 0.0061 0)
(0.00055 0.0061 0)
(0.0006 0.0061 0)
(0.00065 0.0061 0)
(0.0007 0.0061 0)
(0.00075 0.0061 0)
(0.0008 0.0061 0)
(0.00085 0.0061 0)
(0.0009 0.0061 0)
(0.00095 0.0061 0)
(0.001 0.0061 0)
(0 0.00615 0)
(5e-05 0.00615 0)
(0.0001 0.00615 0)
(0.00015 0.00615 0)
(0.0002 0.00615 0)
(0.00025 0.00615 0)
(0.0003 0.00615 0)
(0.00035 0.00615 0)
(0.0004 0.00615 0)
(0.00045 0.00615 0)
(0.0005 0.00615 0)
(0.00055 0.00615 0)
(0.0006 0.00615 0)
(0.00065 0.00615 0)
(0.0007 0.00615 0)
(0.00075 0.00615 0)
(0.0008 0.00615 0)
(0.00085 0.00615 0)
(0.0009 0.00615 0)
(0.00095 0.00615 0)
(0.001 0.00615 0)
(0 0.0062 0)
(5e-05 0.0062 0)
(0.0001 0.0062 0)
(0.00015 0.0062 0)
(0.0002 0.0062 0)
(0.00025 0.0062 0)
(0.0003 0.0062 0)
(0.00035 0.0062 0)
(0.0004 0.0062 0)
(0.00045 0.0062 0)
(0.0005 0.0062 0)
(0.00055 0.0062 0)
(0.0006 0.0062 0)
(0.00065 0.0062 0)
(0.0007 0.0062 0)
(0.00075 0.0062 0)
(0.0008 0.0062 0)
(0.00085 0.0062 0)
(0.0009 0.0062 0)
(0.00095 0.0062 0)
(0.001 0.0062 0)
(0 0.00625 0)
(5e-05 0.00625 0)
(0.0001 0.00625 0)
(0.00015 0.00625 0)
(0.0002 0.00625 0)
(0.00025 0.00625 0)
(0.0003 0.00625 0)
(0.00035 0.00625 0)
(0.0004 0.00625 0)
(0.00045 0.00625 0)
(0.0005 0.00625 0)
(0.00055 0.00625 0)
(0.0006 0.00625 0)
(0.00065 0.00625 0)
(0.0007 0.00625 0)
(0.00075 0.00625 0)
(0.0008 0.00625 0)
(0.00085 0.00625 0)
(0.0009 0.00625 0)
(0.00095 0.00625 0)
(0.001 0.00625 0)
(0 0.0063 0)
(5e-05 0.0063 0)
(0.0001 0.0063 0)
(0.00015 0.0063 0)
(0.0002 0.0063 0)
(0.00025 0.0063 0)
(0.0003 0.0063 0)
(0.00035 0.0063 0)
(0.0004 0.0063 0)
(0.00045 0.0063 0)
(0.0005 0.0063 0)
(0.00055 0.0063 0)
(0.0006 0.0063 0)
(0.00065 0.0063 0)
(0.0007 0.0063 0)
(0.00075 0.0063 0)
(0.0008 0.0063 0)
(0.00085 0.0063 0)
(0.0009 0.0063 0)
(0.00095 0.0063 0)
(0.001 0.0063 0)
(0 0.00635 0)
(5e-05 0.00635 0)
(0.0001 0.00635 0)
(0.00015 0.00635 0)
(0.0002 0.00635 0)
(0.00025 0.00635 0)
(0.0003 0.00635 0)
(0.00035 0.00635 0)
(0.0004 0.00635 0)
(0.00045 0.00635 0)
(0.0005 0.00635 0)
(0.00055 0.00635 0)
(0.0006 0.00635 0)
(0.00065 0.00635 0)
(0.0007 0.00635 0)
(0.00075 0.00635 0)
(0.0008 0.00635 0)
(0.00085 0.00635 0)
(0.0009 0.00635 0)
(0.00095 0.00635 0)
(0.001 0.00635 0)
(0 0.0064 0)
(5e-05 0.0064 0)
(0.0001 0.0064 0)
(0.00015 0.0064 0)
(0.0002 0.0064 0)
(0.00025 0.0064 0)
(0.0003 0.0064 0)
(0.00035 0.0064 0)
(0.0004 0.0064 0)
(0.00045 0.0064 0)
(0.0005 0.0064 0)
(0.00055 0.0064 0)
(0.0006 0.0064 0)
(0.00065 0.0064 0)
(0.0007 0.0064 0)
(0.00075 0.0064 0)
(0.0008 0.0064 0)
(0.00085 0.0064 0)
(0.0009 0.0064 0)
(0.00095 0.0064 0)
(0.001 0.0064 0)
(0 0.00645 0)
(5e-05 0.00645 0)
(0.0001 0.00645 0)
(0.00015 0.00645 0)
(0.0002 0.00645 0)
(0.00025 0.00645 0)
(0.0003 0.00645 0)
(0.00035 0.00645 0)
(0.0004 0.00645 0)
(0.00045 0.00645 0)
(0.0005 0.00645 0)
(0.00055 0.00645 0)
(0.0006 0.00645 0)
(0.00065 0.00645 0)
(0.0007 0.00645 0)
(0.00075 0.00645 0)
(0.0008 0.00645 0)
(0.00085 0.00645 0)
(0.0009 0.00645 0)
(0.00095 0.00645 0)
(0.001 0.00645 0)
(0 0.0065 0)
(5e-05 0.0065 0)
(0.0001 0.0065 0)
(0.00015 0.0065 0)
(0.0002 0.0065 0)
(0.00025 0.0065 0)
(0.0003 0.0065 0)
(0.00035 0.0065 0)
(0.0004 0.0065 0)
(0.00045 0.0065 0)
(0.0005 0.0065 0)
(0.00055 0.0065 0)
(0.0006 0.0065 0)
(0.00065 0.0065 0)
(0.0007 0.0065 0)
(0.00075 0.0065 0)
(0.0008 0.0065 0)
(0.00085 0.0065 0)
(0.0009 0.0065 0)
(0.00095 0.0065 0)
(0.001 0.0065 0)
(0 0.00655 0)
(5e-05 0.00655 0)
(0.0001 0.00655 0)
(0.00015 0.00655 0)
(0.0002 0.00655 0)
(0.00025 0.00655 0)
(0.0003 0.00655 0)
(0.00035 0.00655 0)
(0.0004 0.00655 0)
(0.00045 0.00655 0)
(0.0005 0.00655 0)
(0.00055 0.00655 0)
(0.0006 0.00655 0)
(0.00065 0.00655 0)
(0.0007 0.00655 0)
(0.00075 0.00655 0)
(0.0008 0.00655 0)
(0.00085 0.00655 0)
(0.0009 0.00655 0)
(0.00095 0.00655 0)
(0.001 0.00655 0)
(0 0.0066 0)
(5e-05 0.0066 0)
(0.0001 0.0066 0)
(0.00015 0.0066 0)
(0.0002 0.0066 0)
(0.00025 0.0066 0)
(0.0003 0.0066 0)
(0.00035 0.0066 0)
(0.0004 0.0066 0)
(0.00045 0.0066 0)
(0.0005 0.0066 0)
(0.00055 0.0066 0)
(0.0006 0.0066 0)
(0.00065 0.0066 0)
(0.0007 0.0066 0)
(0.00075 0.0066 0)
(0.0008 0.0066 0)
(0.00085 0.0066 0)
(0.0009 0.0066 0)
(0.00095 0.0066 0)
(0.001 0.0066 0)
(0 0.00665 0)
(5e-05 0.00665 0)
(0.0001 0.00665 0)
(0.00015 0.00665 0)
(0.0002 0.00665 0)
(0.00025 0.00665 0)
(0.0003 0.00665 0)
(0.00035 0.00665 0)
(0.0004 0.00665 0)
(0.00045 0.00665 0)
(0.0005 0.00665 0)
(0.00055 0.00665 0)
(0.0006 0.00665 0)
(0.00065 0.00665 0)
(0.0007 0.00665 0)
(0.00075 0.00665 0)
(0.0008 0.00665 0)
(0.00085 0.00665 0)
(0.0009 0.00665 0)
(0.00095 0.00665 0)
(0.001 0.00665 0)
(0 0.0067 0)
(5e-05 0.0067 0)
(0.0001 0.0067 0)
(0.00015 0.0067 0)
(0.0002 0.0067 0)
(0.00025 0.0067 0)
(0.0003 0.0067 0)
(0.00035 0.0067 0)
(0.0004 0.0067 0)
(0.00045 0.0067 0)
(0.0005 0.0067 0)
(0.00055 0.0067 0)
(0.0006 0.0067 0)
(0.00065 0.0067 0)
(0.0007 0.0067 0)
(0.00075 0.0067 0)
(0.0008 0.0067 0)
(0.00085 0.0067 0)
(0.0009 0.0067 0)
(0.00095 0.0067 0)
(0.001 0.0067 0)
(0 0.00675 0)
(5e-05 0.00675 0)
(0.0001 0.00675 0)
(0.00015 0.00675 0)
(0.0002 0.00675 0)
(0.00025 0.00675 0)
(0.0003 0.00675 0)
(0.00035 0.00675 0)
(0.0004 0.00675 0)
(0.00045 0.00675 0)
(0.0005 0.00675 0)
(0.00055 0.00675 0)
(0.0006 0.00675 0)
(0.00065 0.00675 0)
(0.0007 0.00675 0)
(0.00075 0.00675 0)
(0.0008 0.00675 0)
(0.00085 0.00675 0)
(0.0009 0.00675 0)
(0.00095 0.00675 0)
(0.001 0.00675 0)
(0 0.0068 0)
(5e-05 0.0068 0)
(0.0001 0.0068 0)
(0.00015 0.0068 0)
(0.0002 0.0068 0)
(0.00025 0.0068 0)
(0.0003 0.0068 0)
(0.00035 0.0068 0)
(0.0004 0.0068 0)
(0.00045 0.0068 0)
(0.0005 0.0068 0)
(0.00055 0.0068 0)
(0.0006 0.0068 0)
(0.00065 0.0068 0)
(0.0007 0.0068 0)
(0.00075 0.0068 0)
(0.0008 0.0068 0)
(0.00085 0.0068 0)
(0.0009 0.0068 0)
(0.00095 0.0068 0)
(0.001 0.0068 0)
(0 0.00685 0)
(5e-05 0.00685 0)
(0.0001 0.00685 0)
(0.00015 0.00685 0)
(0.0002 0.00685 0)
(0.00025 0.00685 0)
(0.0003 0.00685 0)
(0.00035 0.00685 0)
(0.0004 0.00685 0)
(0.00045 0.00685 0)
(0.0005 0.00685 0)
(0.00055 0.00685 0)
(0.0006 0.00685 0)
(0.00065 0.00685 0)
(0.0007 0.00685 0)
(0.00075 0.00685 0)
(0.0008 0.00685 0)
(0.00085 0.00685 0)
(0.0009 0.00685 0)
(0.00095 0.00685 0)
(0.001 0.00685 0)
(0 0.0069 0)
(5e-05 0.0069 0)
(0.0001 0.0069 0)
(0.00015 0.0069 0)
(0.0002 0.0069 0)
(0.00025 0.0069 0)
(0.0003 0.0069 0)
(0.00035 0.0069 0)
(0.0004 0.0069 0)
(0.00045 0.0069 0)
(0.0005 0.0069 0)
(0.00055 0.0069 0)
(0.0006 0.0069 0)
(0.00065 0.0069 0)
(0.0007 0.0069 0)
(0.00075 0.0069 0)
(0.0008 0.0069 0)
(0.00085 0.0069 0)
(0.0009 0.0069 0)
(0.00095 0.0069 0)
(0.001 0.0069 0)
(0 0.00695 0)
(5e-05 0.00695 0)
(0.0001 0.00695 0)
(0.00015 0.00695 0)
(0.0002 0.00695 0)
(0.00025 0.00695 0)
(0.0003 0.00695 0)
(0.00035 0.00695 0)
(0.0004 0.00695 0)
(0.00045 0.00695 0)
(0.0005 0.00695 0)
(0.00055 0.00695 0)
(0.0006 0.00695 0)
(0.00065 0.00695 0)
(0.0007 0.00695 0)
(0.00075 0.00695 0)
(0.0008 0.00695 0)
(0.00085 0.00695 0)
(0.0009 0.00695 0)
(0.00095 0.00695 0)
(0.001 0.00695 0)
(0 0.007 0)
(5e-05 0.007 0)
(0.0001 0.007 0)
(0.00015 0.007 0)
(0.0002 0.007 0)
(0.00025 0.007 0)
(0.0003 0.007 0)
(0.00035 0.007 0)
(0.0004 0.007 0)
(0.00045 0.007 0)
(0.0005 0.007 0)
(0.00055 0.007 0)
(0.0006 0.007 0)
(0.00065 0.007 0)
(0.0007 0.007 0)
(0.00075 0.007 0)
(0.0008 0.007 0)
(0.00085 0.007 0)
(0.0009 0.007 0)
(0.00095 0.007 0)
(0.001 0.007 0)
(0 0.00705 0)
(5e-05 0.00705 0)
(0.0001 0.00705 0)
(0.00015 0.00705 0)
(0.0002 0.00705 0)
(0.00025 0.00705 0)
(0.0003 0.00705 0)
(0.00035 0.00705 0)
(0.0004 0.00705 0)
(0.00045 0.00705 0)
(0.0005 0.00705 0)
(0.00055 0.00705 0)
(0.0006 0.00705 0)
(0.00065 0.00705 0)
(0.0007 0.00705 0)
(0.00075 0.00705 0)
(0.0008 0.00705 0)
(0.00085 0.00705 0)
(0.0009 0.00705 0)
(0.00095 0.00705 0)
(0.001 0.00705 0)
(0 0.0071 0)
(5e-05 0.0071 0)
(0.0001 0.0071 0)
(0.00015 0.0071 0)
(0.0002 0.0071 0)
(0.00025 0.0071 0)
(0.0003 0.0071 0)
(0.00035 0.0071 0)
(0.0004 0.0071 0)
(0.00045 0.0071 0)
(0.0005 0.0071 0)
(0.00055 0.0071 0)
(0.0006 0.0071 0)
(0.00065 0.0071 0)
(0.0007 0.0071 0)
(0.00075 0.0071 0)
(0.0008 0.0071 0)
(0.00085 0.0071 0)
(0.0009 0.0071 0)
(0.00095 0.0071 0)
(0.001 0.0071 0)
(0 0.00715 0)
(5e-05 0.00715 0)
(0.0001 0.00715 0)
(0.00015 0.00715 0)
(0.0002 0.00715 0)
(0.00025 0.00715 0)
(0.0003 0.00715 0)
(0.00035 0.00715 0)
(0.0004 0.00715 0)
(0.00045 0.00715 0)
(0.0005 0.00715 0)
(0.00055 0.00715 0)
(0.0006 0.00715 0)
(0.00065 0.00715 0)
(0.0007 0.00715 0)
(0.00075 0.00715 0)
(0.0008 0.00715 0)
(0.00085 0.00715 0)
(0.0009 0.00715 0)
(0.00095 0.00715 0)
(0.001 0.00715 0)
(0 0.0072 0)
(5e-05 0.0072 0)
(0.0001 0.0072 0)
(0.00015 0.0072 0)
(0.0002 0.0072 0)
(0.00025 0.0072 0)
(0.0003 0.0072 0)
(0.00035 0.0072 0)
(0.0004 0.0072 0)
(0.00045 0.0072 0)
(0.0005 0.0072 0)
(0.00055 0.0072 0)
(0.0006 0.0072 0)
(0.00065 0.0072 0)
(0.0007 0.0072 0)
(0.00075 0.0072 0)
(0.0008 0.0072 0)
(0.00085 0.0072 0)
(0.0009 0.0072 0)
(0.00095 0.0072 0)
(0.001 0.0072 0)
(0 0.00725 0)
(5e-05 0.00725 0)
(0.0001 0.00725 0)
(0.00015 0.00725 0)
(0.0002 0.00725 0)
(0.00025 0.00725 0)
(0.0003 0.00725 0)
(0.00035 0.00725 0)
(0.0004 0.00725 0)
(0.00045 0.00725 0)
(0.0005 0.00725 0)
(0.00055 0.00725 0)
(0.0006 0.00725 0)
(0.00065 0.00725 0)
(0.0007 0.00725 0)
(0.00075 0.00725 0)
(0.0008 0.00725 0)
(0.00085 0.00725 0)
(0.0009 0.00725 0)
(0.00095 0.00725 0)
(0.001 0.00725 0)
(0 0.0073 0)
(5e-05 0.0073 0)
(0.0001 0.0073 0)
(0.00015 0.0073 0)
(0.0002 0.0073 0)
(0.00025 0.0073 0)
(0.0003 0.0073 0)
(0.00035 0.0073 0)
(0.0004 0.0073 0)
(0.00045 0.0073 0)
(0.0005 0.0073 0)
(0.00055 0.0073 0)
(0.0006 0.0073 0)
(0.00065 0.0073 0)
(0.0007 0.0073 0)
(0.00075 0.0073 0)
(0.0008 0.0073 0)
(0.00085 0.0073 0)
(0.0009 0.0073 0)
(0.00095 0.0073 0)
(0.001 0.0073 0)
(0 0.00735 0)
(5e-05 0.00735 0)
(0.0001 0.00735 0)
(0.00015 0.00735 0)
(0.0002 0.00735 0)
(0.00025 0.00735 0)
(0.0003 0.00735 0)
(0.00035 0.00735 0)
(0.0004 0.00735 0)
(0.00045 0.00735 0)
(0.0005 0.00735 0)
(0.00055 0.00735 0)
(0.0006 0.00735 0)
(0.00065 0.00735 0)
(0.0007 0.00735 0)
(0.00075 0.00735 0)
(0.0008 0.00735 0)
(0.00085 0.00735 0)
(0.0009 0.00735 0)
(0.00095 0.00735 0)
(0.001 0.00735 0)
(0 0.0074 0)
(5e-05 0.0074 0)
(0.0001 0.0074 0)
(0.00015 0.0074 0)
(0.0002 0.0074 0)
(0.00025 0.0074 0)
(0.0003 0.0074 0)
(0.00035 0.0074 0)
(0.0004 0.0074 0)
(0.00045 0.0074 0)
(0.0005 0.0074 0)
(0.00055 0.0074 0)
(0.0006 0.0074 0)
(0.00065 0.0074 0)
(0.0007 0.0074 0)
(0.00075 0.0074 0)
(0.0008 0.0074 0)
(0.00085 0.0074 0)
(0.0009 0.0074 0)
(0.00095 0.0074 0)
(0.001 0.0074 0)
(0 0.00745 0)
(5e-05 0.00745 0)
(0.0001 0.00745 0)
(0.00015 0.00745 0)
(0.0002 0.00745 0)
(0.00025 0.00745 0)
(0.0003 0.00745 0)
(0.00035 0.00745 0)
(0.0004 0.00745 0)
(0.00045 0.00745 0)
(0.0005 0.00745 0)
(0.00055 0.00745 0)
(0.0006 0.00745 0)
(0.00065 0.00745 0)
(0.0007 0.00745 0)
(0.00075 0.00745 0)
(0.0008 0.00745 0)
(0.00085 0.00745 0)
(0.0009 0.00745 0)
(0.00095 0.00745 0)
(0.001 0.00745 0)
(0 0.0075 0)
(5e-05 0.0075 0)
(0.0001 0.0075 0)
(0.00015 0.0075 0)
(0.0002 0.0075 0)
(0.00025 0.0075 0)
(0.0003 0.0075 0)
(0.00035 0.0075 0)
(0.0004 0.0075 0)
(0.00045 0.0075 0)
(0.0005 0.0075 0)
(0.00055 0.0075 0)
(0.0006 0.0075 0)
(0.00065 0.0075 0)
(0.0007 0.0075 0)
(0.00075 0.0075 0)
(0.0008 0.0075 0)
(0.00085 0.0075 0)
(0.0009 0.0075 0)
(0.00095 0.0075 0)
(0.001 0.0075 0)
(0 0.00755 0)
(5e-05 0.00755 0)
(0.0001 0.00755 0)
(0.00015 0.00755 0)
(0.0002 0.00755 0)
(0.00025 0.00755 0)
(0.0003 0.00755 0)
(0.00035 0.00755 0)
(0.0004 0.00755 0)
(0.00045 0.00755 0)
(0.0005 0.00755 0)
(0.00055 0.00755 0)
(0.0006 0.00755 0)
(0.00065 0.00755 0)
(0.0007 0.00755 0)
(0.00075 0.00755 0)
(0.0008 0.00755 0)
(0.00085 0.00755 0)
(0.0009 0.00755 0)
(0.00095 0.00755 0)
(0.001 0.00755 0)
(0 0.0076 0)
(5e-05 0.0076 0)
(0.0001 0.0076 0)
(0.00015 0.0076 0)
(0.0002 0.0076 0)
(0.00025 0.0076 0)
(0.0003 0.0076 0)
(0.00035 0.0076 0)
(0.0004 0.0076 0)
(0.00045 0.0076 0)
(0.0005 0.0076 0)
(0.00055 0.0076 0)
(0.0006 0.0076 0)
(0.00065 0.0076 0)
(0.0007 0.0076 0)
(0.00075 0.0076 0)
(0.0008 0.0076 0)
(0.00085 0.0076 0)
(0.0009 0.0076 0)
(0.00095 0.0076 0)
(0.001 0.0076 0)
(0 0.00765 0)
(5e-05 0.00765 0)
(0.0001 0.00765 0)
(0.00015 0.00765 0)
(0.0002 0.00765 0)
(0.00025 0.00765 0)
(0.0003 0.00765 0)
(0.00035 0.00765 0)
(0.0004 0.00765 0)
(0.00045 0.00765 0)
(0.0005 0.00765 0)
(0.00055 0.00765 0)
(0.0006 0.00765 0)
(0.00065 0.00765 0)
(0.0007 0.00765 0)
(0.00075 0.00765 0)
(0.0008 0.00765 0)
(0.00085 0.00765 0)
(0.0009 0.00765 0)
(0.00095 0.00765 0)
(0.001 0.00765 0)
(0 0.0077 0)
(5e-05 0.0077 0)
(0.0001 0.0077 0)
(0.00015 0.0077 0)
(0.0002 0.0077 0)
(0.00025 0.0077 0)
(0.0003 0.0077 0)
(0.00035 0.0077 0)
(0.0004 0.0077 0)
(0.00045 0.0077 0)
(0.0005 0.0077 0)
(0.00055 0.0077 0)
(0.0006 0.0077 0)
(0.00065 0.0077 0)
(0.0007 0.0077 0)
(0.00075 0.0077 0)
(0.0008 0.0077 0)
(0.00085 0.0077 0)
(0.0009 0.0077 0)
(0.00095 0.0077 0)
(0.001 0.0077 0)
(0 0.00775 0)
(5e-05 0.00775 0)
(0.0001 0.00775 0)
(0.00015 0.00775 0)
(0.0002 0.00775 0)
(0.00025 0.00775 0)
(0.0003 0.00775 0)
(0.00035 0.00775 0)
(0.0004 0.00775 0)
(0.00045 0.00775 0)
(0.0005 0.00775 0)
(0.00055 0.00775 0)
(0.0006 0.00775 0)
(0.00065 0.00775 0)
(0.0007 0.00775 0)
(0.00075 0.00775 0)
(0.0008 0.00775 0)
(0.00085 0.00775 0)
(0.0009 0.00775 0)
(0.00095 0.00775 0)
(0.001 0.00775 0)
(0 0.0078 0)
(5e-05 0.0078 0)
(0.0001 0.0078 0)
(0.00015 0.0078 0)
(0.0002 0.0078 0)
(0.00025 0.0078 0)
(0.0003 0.0078 0)
(0.00035 0.0078 0)
(0.0004 0.0078 0)
(0.00045 0.0078 0)
(0.0005 0.0078 0)
(0.00055 0.0078 0)
(0.0006 0.0078 0)
(0.00065 0.0078 0)
(0.0007 0.0078 0)
(0.00075 0.0078 0)
(0.0008 0.0078 0)
(0.00085 0.0078 0)
(0.0009 0.0078 0)
(0.00095 0.0078 0)
(0.001 0.0078 0)
(0 0.00785 0)
(5e-05 0.00785 0)
(0.0001 0.00785 0)
(0.00015 0.00785 0)
(0.0002 0.00785 0)
(0.00025 0.00785 0)
(0.0003 0.00785 0)
(0.00035 0.00785 0)
(0.0004 0.00785 0)
(0.00045 0.00785 0)
(0.0005 0.00785 0)
(0.00055 0.00785 0)
(0.0006 0.00785 0)
(0.00065 0.00785 0)
(0.0007 0.00785 0)
(0.00075 0.00785 0)
(0.0008 0.00785 0)
(0.00085 0.00785 0)
(0.0009 0.00785 0)
(0.00095 0.00785 0)
(0.001 0.00785 0)
(0 0.0079 0)
(5e-05 0.0079 0)
(0.0001 0.0079 0)
(0.00015 0.0079 0)
(0.0002 0.0079 0)
(0.00025 0.0079 0)
(0.0003 0.0079 0)
(0.00035 0.0079 0)
(0.0004 0.0079 0)
(0.00045 0.0079 0)
(0.0005 0.0079 0)
(0.00055 0.0079 0)
(0.0006 0.0079 0)
(0.00065 0.0079 0)
(0.0007 0.0079 0)
(0.00075 0.0079 0)
(0.0008 0.0079 0)
(0.00085 0.0079 0)
(0.0009 0.0079 0)
(0.00095 0.0079 0)
(0.001 0.0079 0)
(0 0.00795 0)
(5e-05 0.00795 0)
(0.0001 0.00795 0)
(0.00015 0.00795 0)
(0.0002 0.00795 0)
(0.00025 0.00795 0)
(0.0003 0.00795 0)
(0.00035 0.00795 0)
(0.0004 0.00795 0)
(0.00045 0.00795 0)
(0.0005 0.00795 0)
(0.00055 0.00795 0)
(0.0006 0.00795 0)
(0.00065 0.00795 0)
(0.0007 0.00795 0)
(0.00075 0.00795 0)
(0.0008 0.00795 0)
(0.00085 0.00795 0)
(0.0009 0.00795 0)
(0.00095 0.00795 0)
(0.001 0.00795 0)
(0 0.008 0)
(5e-05 0.008 0)
(0.0001 0.008 0)
(0.00015 0.008 0)
(0.0002 0.008 0)
(0.00025 0.008 0)
(0.0003 0.008 0)
(0.00035 0.008 0)
(0.0004 0.008 0)
(0.00045 0.008 0)
(0.0005 0.008 0)
(0.00055 0.008 0)
(0.0006 0.008 0)
(0.00065 0.008 0)
(0.0007 0.008 0)
(0.00075 0.008 0)
(0.0008 0.008 0)
(0.00085 0.008 0)
(0.0009 0.008 0)
(0.00095 0.008 0)
(0.001 0.008 0)
(0 0.00805 0)
(5e-05 0.00805 0)
(0.0001 0.00805 0)
(0.00015 0.00805 0)
(0.0002 0.00805 0)
(0.00025 0.00805 0)
(0.0003 0.00805 0)
(0.00035 0.00805 0)
(0.0004 0.00805 0)
(0.00045 0.00805 0)
(0.0005 0.00805 0)
(0.00055 0.00805 0)
(0.0006 0.00805 0)
(0.00065 0.00805 0)
(0.0007 0.00805 0)
(0.00075 0.00805 0)
(0.0008 0.00805 0)
(0.00085 0.00805 0)
(0.0009 0.00805 0)
(0.00095 0.00805 0)
(0.001 0.00805 0)
(0 0.0081 0)
(5e-05 0.0081 0)
(0.0001 0.0081 0)
(0.00015 0.0081 0)
(0.0002 0.0081 0)
(0.00025 0.0081 0)
(0.0003 0.0081 0)
(0.00035 0.0081 0)
(0.0004 0.0081 0)
(0.00045 0.0081 0)
(0.0005 0.0081 0)
(0.00055 0.0081 0)
(0.0006 0.0081 0)
(0.00065 0.0081 0)
(0.0007 0.0081 0)
(0.00075 0.0081 0)
(0.0008 0.0081 0)
(0.00085 0.0081 0)
(0.0009 0.0081 0)
(0.00095 0.0081 0)
(0.001 0.0081 0)
(0 0.00815 0)
(5e-05 0.00815 0)
(0.0001 0.00815 0)
(0.00015 0.00815 0)
(0.0002 0.00815 0)
(0.00025 0.00815 0)
(0.0003 0.00815 0)
(0.00035 0.00815 0)
(0.0004 0.00815 0)
(0.00045 0.00815 0)
(0.0005 0.00815 0)
(0.00055 0.00815 0)
(0.0006 0.00815 0)
(0.00065 0.00815 0)
(0.0007 0.00815 0)
(0.00075 0.00815 0)
(0.0008 0.00815 0)
(0.00085 0.00815 0)
(0.0009 0.00815 0)
(0.00095 0.00815 0)
(0.001 0.00815 0)
(0 0.0082 0)
(5e-05 0.0082 0)
(0.0001 0.0082 0)
(0.00015 0.0082 0)
(0.0002 0.0082 0)
(0.00025 0.0082 0)
(0.0003 0.0082 0)
(0.00035 0.0082 0)
(0.0004 0.0082 0)
(0.00045 0.0082 0)
(0.0005 0.0082 0)
(0.00055 0.0082 0)
(0.0006 0.0082 0)
(0.00065 0.0082 0)
(0.0007 0.0082 0)
(0.00075 0.0082 0)
(0.0008 0.0082 0)
(0.00085 0.0082 0)
(0.0009 0.0082 0)
(0.00095 0.0082 0)
(0.001 0.0082 0)
(0 0.00825 0)
(5e-05 0.00825 0)
(0.0001 0.00825 0)
(0.00015 0.00825 0)
(0.0002 0.00825 0)
(0.00025 0.00825 0)
(0.0003 0.00825 0)
(0.00035 0.00825 0)
(0.0004 0.00825 0)
(0.00045 0.00825 0)
(0.0005 0.00825 0)
(0.00055 0.00825 0)
(0.0006 0.00825 0)
(0.00065 0.00825 0)
(0.0007 0.00825 0)
(0.00075 0.00825 0)
(0.0008 0.00825 0)
(0.00085 0.00825 0)
(0.0009 0.00825 0)
(0.00095 0.00825 0)
(0.001 0.00825 0)
(0 0.0083 0)
(5e-05 0.0083 0)
(0.0001 0.0083 0)
(0.00015 0.0083 0)
(0.0002 0.0083 0)
(0.00025 0.0083 0)
(0.0003 0.0083 0)
(0.00035 0.0083 0)
(0.0004 0.0083 0)
(0.00045 0.0083 0)
(0.0005 0.0083 0)
(0.00055 0.0083 0)
(0.0006 0.0083 0)
(0.00065 0.0083 0)
(0.0007 0.0083 0)
(0.00075 0.0083 0)
(0.0008 0.0083 0)
(0.00085 0.0083 0)
(0.0009 0.0083 0)
(0.00095 0.0083 0)
(0.001 0.0083 0)
(0 0.00835 0)
(5e-05 0.00835 0)
(0.0001 0.00835 0)
(0.00015 0.00835 0)
(0.0002 0.00835 0)
(0.00025 0.00835 0)
(0.0003 0.00835 0)
(0.00035 0.00835 0)
(0.0004 0.00835 0)
(0.00045 0.00835 0)
(0.0005 0.00835 0)
(0.00055 0.00835 0)
(0.0006 0.00835 0)
(0.00065 0.00835 0)
(0.0007 0.00835 0)
(0.00075 0.00835 0)
(0.0008 0.00835 0)
(0.00085 0.00835 0)
(0.0009 0.00835 0)
(0.00095 0.00835 0)
(0.001 0.00835 0)
(0 0.0084 0)
(5e-05 0.0084 0)
(0.0001 0.0084 0)
(0.00015 0.0084 0)
(0.0002 0.0084 0)
(0.00025 0.0084 0)
(0.0003 0.0084 0)
(0.00035 0.0084 0)
(0.0004 0.0084 0)
(0.00045 0.0084 0)
(0.0005 0.0084 0)
(0.00055 0.0084 0)
(0.0006 0.0084 0)
(0.00065 0.0084 0)
(0.0007 0.0084 0)
(0.00075 0.0084 0)
(0.0008 0.0084 0)
(0.00085 0.0084 0)
(0.0009 0.0084 0)
(0.00095 0.0084 0)
(0.001 0.0084 0)
(0 0.00845 0)
(5e-05 0.00845 0)
(0.0001 0.00845 0)
(0.00015 0.00845 0)
(0.0002 0.00845 0)
(0.00025 0.00845 0)
(0.0003 0.00845 0)
(0.00035 0.00845 0)
(0.0004 0.00845 0)
(0.00045 0.00845 0)
(0.0005 0.00845 0)
(0.00055 0.00845 0)
(0.0006 0.00845 0)
(0.00065 0.00845 0)
(0.0007 0.00845 0)
(0.00075 0.00845 0)
(0.0008 0.00845 0)
(0.00085 0.00845 0)
(0.0009 0.00845 0)
(0.00095 0.00845 0)
(0.001 0.00845 0)
(0 0.0085 0)
(5e-05 0.0085 0)
(0.0001 0.0085 0)
(0.00015 0.0085 0)
(0.0002 0.0085 0)
(0.00025 0.0085 0)
(0.0003 0.0085 0)
(0.00035 0.0085 0)
(0.0004 0.0085 0)
(0.00045 0.0085 0)
(0.0005 0.0085 0)
(0.00055 0.0085 0)
(0.0006 0.0085 0)
(0.00065 0.0085 0)
(0.0007 0.0085 0)
(0.00075 0.0085 0)
(0.0008 0.0085 0)
(0.00085 0.0085 0)
(0.0009 0.0085 0)
(0.00095 0.0085 0)
(0.001 0.0085 0)
(0 0.00855 0)
(5e-05 0.00855 0)
(0.0001 0.00855 0)
(0.00015 0.00855 0)
(0.0002 0.00855 0)
(0.00025 0.00855 0)
(0.0003 0.00855 0)
(0.00035 0.00855 0)
(0.0004 0.00855 0)
(0.00045 0.00855 0)
(0.0005 0.00855 0)
(0.00055 0.00855 0)
(0.0006 0.00855 0)
(0.00065 0.00855 0)
(0.0007 0.00855 0)
(0.00075 0.00855 0)
(0.0008 0.00855 0)
(0.00085 0.00855 0)
(0.0009 0.00855 0)
(0.00095 0.00855 0)
(0.001 0.00855 0)
(0 0.0086 0)
(5e-05 0.0086 0)
(0.0001 0.0086 0)
(0.00015 0.0086 0)
(0.0002 0.0086 0)
(0.00025 0.0086 0)
(0.0003 0.0086 0)
(0.00035 0.0086 0)
(0.0004 0.0086 0)
(0.00045 0.0086 0)
(0.0005 0.0086 0)
(0.00055 0.0086 0)
(0.0006 0.0086 0)
(0.00065 0.0086 0)
(0.0007 0.0086 0)
(0.00075 0.0086 0)
(0.0008 0.0086 0)
(0.00085 0.0086 0)
(0.0009 0.0086 0)
(0.00095 0.0086 0)
(0.001 0.0086 0)
(0 0.00865 0)
(5e-05 0.00865 0)
(0.0001 0.00865 0)
(0.00015 0.00865 0)
(0.0002 0.00865 0)
(0.00025 0.00865 0)
(0.0003 0.00865 0)
(0.00035 0.00865 0)
(0.0004 0.00865 0)
(0.00045 0.00865 0)
(0.0005 0.00865 0)
(0.00055 0.00865 0)
(0.0006 0.00865 0)
(0.00065 0.00865 0)
(0.0007 0.00865 0)
(0.00075 0.00865 0)
(0.0008 0.00865 0)
(0.00085 0.00865 0)
(0.0009 0.00865 0)
(0.00095 0.00865 0)
(0.001 0.00865 0)
(0 0.0087 0)
(5e-05 0.0087 0)
(0.0001 0.0087 0)
(0.00015 0.0087 0)
(0.0002 0.0087 0)
(0.00025 0.0087 0)
(0.0003 0.0087 0)
(0.00035 0.0087 0)
(0.0004 0.0087 0)
(0.00045 0.0087 0)
(0.0005 0.0087 0)
(0.00055 0.0087 0)
(0.0006 0.0087 0)
(0.00065 0.0087 0)
(0.0007 0.0087 0)
(0.00075 0.0087 0)
(0.0008 0.0087 0)
(0.00085 0.0087 0)
(0.0009 0.0087 0)
(0.00095 0.0087 0)
(0.001 0.0087 0)
(0 0.00875 0)
(5e-05 0.00875 0)
(0.0001 0.00875 0)
(0.00015 0.00875 0)
(0.0002 0.00875 0)
(0.00025 0.00875 0)
(0.0003 0.00875 0)
(0.00035 0.00875 0)
(0.0004 0.00875 0)
(0.00045 0.00875 0)
(0.0005 0.00875 0)
(0.00055 0.00875 0)
(0.0006 0.00875 0)
(0.00065 0.00875 0)
(0.0007 0.00875 0)
(0.00075 0.00875 0)
(0.0008 0.00875 0)
(0.00085 0.00875 0)
(0.0009 0.00875 0)
(0.00095 0.00875 0)
(0.001 0.00875 0)
(0 0.0088 0)
(5e-05 0.0088 0)
(0.0001 0.0088 0)
(0.00015 0.0088 0)
(0.0002 0.0088 0)
(0.00025 0.0088 0)
(0.0003 0.0088 0)
(0.00035 0.0088 0)
(0.0004 0.0088 0)
(0.00045 0.0088 0)
(0.0005 0.0088 0)
(0.00055 0.0088 0)
(0.0006 0.0088 0)
(0.00065 0.0088 0)
(0.0007 0.0088 0)
(0.00075 0.0088 0)
(0.0008 0.0088 0)
(0.00085 0.0088 0)
(0.0009 0.0088 0)
(0.00095 0.0088 0)
(0.001 0.0088 0)
(0 0.00885 0)
(5e-05 0.00885 0)
(0.0001 0.00885 0)
(0.00015 0.00885 0)
(0.0002 0.00885 0)
(0.00025 0.00885 0)
(0.0003 0.00885 0)
(0.00035 0.00885 0)
(0.0004 0.00885 0)
(0.00045 0.00885 0)
(0.0005 0.00885 0)
(0.00055 0.00885 0)
(0.0006 0.00885 0)
(0.00065 0.00885 0)
(0.0007 0.00885 0)
(0.00075 0.00885 0)
(0.0008 0.00885 0)
(0.00085 0.00885 0)
(0.0009 0.00885 0)
(0.00095 0.00885 0)
(0.001 0.00885 0)
(0 0.0089 0)
(5e-05 0.0089 0)
(0.0001 0.0089 0)
(0.00015 0.0089 0)
(0.0002 0.0089 0)
(0.00025 0.0089 0)
(0.0003 0.0089 0)
(0.00035 0.0089 0)
(0.0004 0.0089 0)
(0.00045 0.0089 0)
(0.0005 0.0089 0)
(0.00055 0.0089 0)
(0.0006 0.0089 0)
(0.00065 0.0089 0)
(0.0007 0.0089 0)
(0.00075 0.0089 0)
(0.0008 0.0089 0)
(0.00085 0.0089 0)
(0.0009 0.0089 0)
(0.00095 0.0089 0)
(0.001 0.0089 0)
(0 0.00895 0)
(5e-05 0.00895 0)
(0.0001 0.00895 0)
(0.00015 0.00895 0)
(0.0002 0.00895 0)
(0.00025 0.00895 0)
(0.0003 0.00895 0)
(0.00035 0.00895 0)
(0.0004 0.00895 0)
(0.00045 0.00895 0)
(0.0005 0.00895 0)
(0.00055 0.00895 0)
(0.0006 0.00895 0)
(0.00065 0.00895 0)
(0.0007 0.00895 0)
(0.00075 0.00895 0)
(0.0008 0.00895 0)
(0.00085 0.00895 0)
(0.0009 0.00895 0)
(0.00095 0.00895 0)
(0.001 0.00895 0)
(0 0.009 0)
(5e-05 0.009 0)
(0.0001 0.009 0)
(0.00015 0.009 0)
(0.0002 0.009 0)
(0.00025 0.009 0)
(0.0003 0.009 0)
(0.00035 0.009 0)
(0.0004 0.009 0)
(0.00045 0.009 0)
(0.0005 0.009 0)
(0.00055 0.009 0)
(0.0006 0.009 0)
(0.00065 0.009 0)
(0.0007 0.009 0)
(0.00075 0.009 0)
(0.0008 0.009 0)
(0.00085 0.009 0)
(0.0009 0.009 0)
(0.00095 0.009 0)
(0.001 0.009 0)
(0 0.00905 0)
(5e-05 0.00905 0)
(0.0001 0.00905 0)
(0.00015 0.00905 0)
(0.0002 0.00905 0)
(0.00025 0.00905 0)
(0.0003 0.00905 0)
(0.00035 0.00905 0)
(0.0004 0.00905 0)
(0.00045 0.00905 0)
(0.0005 0.00905 0)
(0.00055 0.00905 0)
(0.0006 0.00905 0)
(0.00065 0.00905 0)
(0.0007 0.00905 0)
(0.00075 0.00905 0)
(0.0008 0.00905 0)
(0.00085 0.00905 0)
(0.0009 0.00905 0)
(0.00095 0.00905 0)
(0.001 0.00905 0)
(0 0.0091 0)
(5e-05 0.0091 0)
(0.0001 0.0091 0)
(0.00015 0.0091 0)
(0.0002 0.0091 0)
(0.00025 0.0091 0)
(0.0003 0.0091 0)
(0.00035 0.0091 0)
(0.0004 0.0091 0)
(0.00045 0.0091 0)
(0.0005 0.0091 0)
(0.00055 0.0091 0)
(0.0006 0.0091 0)
(0.00065 0.0091 0)
(0.0007 0.0091 0)
(0.00075 0.0091 0)
(0.0008 0.0091 0)
(0.00085 0.0091 0)
(0.0009 0.0091 0)
(0.00095 0.0091 0)
(0.001 0.0091 0)
(0 0.00915 0)
(5e-05 0.00915 0)
(0.0001 0.00915 0)
(0.00015 0.00915 0)
(0.0002 0.00915 0)
(0.00025 0.00915 0)
(0.0003 0.00915 0)
(0.00035 0.00915 0)
(0.0004 0.00915 0)
(0.00045 0.00915 0)
(0.0005 0.00915 0)
(0.00055 0.00915 0)
(0.0006 0.00915 0)
(0.00065 0.00915 0)
(0.0007 0.00915 0)
(0.00075 0.00915 0)
(0.0008 0.00915 0)
(0.00085 0.00915 0)
(0.0009 0.00915 0)
(0.00095 0.00915 0)
(0.001 0.00915 0)
(0 0.0092 0)
(5e-05 0.0092 0)
(0.0001 0.0092 0)
(0.00015 0.0092 0)
(0.0002 0.0092 0)
(0.00025 0.0092 0)
(0.0003 0.0092 0)
(0.00035 0.0092 0)
(0.0004 0.0092 0)
(0.00045 0.0092 0)
(0.0005 0.0092 0)
(0.00055 0.0092 0)
(0.0006 0.0092 0)
(0.00065 0.0092 0)
(0.0007 0.0092 0)
(0.00075 0.0092 0)
(0.0008 0.0092 0)
(0.00085 0.0092 0)
(0.0009 0.0092 0)
(0.00095 0.0092 0)
(0.001 0.0092 0)
(0 0.00925 0)
(5e-05 0.00925 0)
(0.0001 0.00925 0)
(0.00015 0.00925 0)
(0.0002 0.00925 0)
(0.00025 0.00925 0)
(0.0003 0.00925 0)
(0.00035 0.00925 0)
(0.0004 0.00925 0)
(0.00045 0.00925 0)
(0.0005 0.00925 0)
(0.00055 0.00925 0)
(0.0006 0.00925 0)
(0.00065 0.00925 0)
(0.0007 0.00925 0)
(0.00075 0.00925 0)
(0.0008 0.00925 0)
(0.00085 0.00925 0)
(0.0009 0.00925 0)
(0.00095 0.00925 0)
(0.001 0.00925 0)
(0 0.0093 0)
(5e-05 0.0093 0)
(0.0001 0.0093 0)
(0.00015 0.0093 0)
(0.0002 0.0093 0)
(0.00025 0.0093 0)
(0.0003 0.0093 0)
(0.00035 0.0093 0)
(0.0004 0.0093 0)
(0.00045 0.0093 0)
(0.0005 0.0093 0)
(0.00055 0.0093 0)
(0.0006 0.0093 0)
(0.00065 0.0093 0)
(0.0007 0.0093 0)
(0.00075 0.0093 0)
(0.0008 0.0093 0)
(0.00085 0.0093 0)
(0.0009 0.0093 0)
(0.00095 0.0093 0)
(0.001 0.0093 0)
(0 0.00935 0)
(5e-05 0.00935 0)
(0.0001 0.00935 0)
(0.00015 0.00935 0)
(0.0002 0.00935 0)
(0.00025 0.00935 0)
(0.0003 0.00935 0)
(0.00035 0.00935 0)
(0.0004 0.00935 0)
(0.00045 0.00935 0)
(0.0005 0.00935 0)
(0.00055 0.00935 0)
(0.0006 0.00935 0)
(0.00065 0.00935 0)
(0.0007 0.00935 0)
(0.00075 0.00935 0)
(0.0008 0.00935 0)
(0.00085 0.00935 0)
(0.0009 0.00935 0)
(0.00095 0.00935 0)
(0.001 0.00935 0)
(0 0.0094 0)
(5e-05 0.0094 0)
(0.0001 0.0094 0)
(0.00015 0.0094 0)
(0.0002 0.0094 0)
(0.00025 0.0094 0)
(0.0003 0.0094 0)
(0.00035 0.0094 0)
(0.0004 0.0094 0)
(0.00045 0.0094 0)
(0.0005 0.0094 0)
(0.00055 0.0094 0)
(0.0006 0.0094 0)
(0.00065 0.0094 0)
(0.0007 0.0094 0)
(0.00075 0.0094 0)
(0.0008 0.0094 0)
(0.00085 0.0094 0)
(0.0009 0.0094 0)
(0.00095 0.0094 0)
(0.001 0.0094 0)
(0 0.00945 0)
(5e-05 0.00945 0)
(0.0001 0.00945 0)
(0.00015 0.00945 0)
(0.0002 0.00945 0)
(0.00025 0.00945 0)
(0.0003 0.00945 0)
(0.00035 0.00945 0)
(0.0004 0.00945 0)
(0.00045 0.00945 0)
(0.0005 0.00945 0)
(0.00055 0.00945 0)
(0.0006 0.00945 0)
(0.00065 0.00945 0)
(0.0007 0.00945 0)
(0.00075 0.00945 0)
(0.0008 0.00945 0)
(0.00085 0.00945 0)
(0.0009 0.00945 0)
(0.00095 0.00945 0)
(0.001 0.00945 0)
(0 0.0095 0)
(5e-05 0.0095 0)
(0.0001 0.0095 0)
(0.00015 0.0095 0)
(0.0002 0.0095 0)
(0.00025 0.0095 0)
(0.0003 0.0095 0)
(0.00035 0.0095 0)
(0.0004 0.0095 0)
(0.00045 0.0095 0)
(0.0005 0.0095 0)
(0.00055 0.0095 0)
(0.0006 0.0095 0)
(0.00065 0.0095 0)
(0.0007 0.0095 0)
(0.00075 0.0095 0)
(0.0008 0.0095 0)
(0.00085 0.0095 0)
(0.0009 0.0095 0)
(0.00095 0.0095 0)
(0.001 0.0095 0)
(0 0.00955 0)
(5e-05 0.00955 0)
(0.0001 0.00955 0)
(0.00015 0.00955 0)
(0.0002 0.00955 0)
(0.00025 0.00955 0)
(0.0003 0.00955 0)
(0.00035 0.00955 0)
(0.0004 0.00955 0)
(0.00045 0.00955 0)
(0.0005 0.00955 0)
(0.00055 0.00955 0)
(0.0006 0.00955 0)
(0.00065 0.00955 0)
(0.0007 0.00955 0)
(0.00075 0.00955 0)
(0.0008 0.00955 0)
(0.00085 0.00955 0)
(0.0009 0.00955 0)
(0.00095 0.00955 0)
(0.001 0.00955 0)
(0 0.0096 0)
(5e-05 0.0096 0)
(0.0001 0.0096 0)
(0.00015 0.0096 0)
(0.0002 0.0096 0)
(0.00025 0.0096 0)
(0.0003 0.0096 0)
(0.00035 0.0096 0)
(0.0004 0.0096 0)
(0.00045 0.0096 0)
(0.0005 0.0096 0)
(0.00055 0.0096 0)
(0.0006 0.0096 0)
(0.00065 0.0096 0)
(0.0007 0.0096 0)
(0.00075 0.0096 0)
(0.0008 0.0096 0)
(0.00085 0.0096 0)
(0.0009 0.0096 0)
(0.00095 0.0096 0)
(0.001 0.0096 0)
(0 0.00965 0)
(5e-05 0.00965 0)
(0.0001 0.00965 0)
(0.00015 0.00965 0)
(0.0002 0.00965 0)
(0.00025 0.00965 0)
(0.0003 0.00965 0)
(0.00035 0.00965 0)
(0.0004 0.00965 0)
(0.00045 0.00965 0)
(0.0005 0.00965 0)
(0.00055 0.00965 0)
(0.0006 0.00965 0)
(0.00065 0.00965 0)
(0.0007 0.00965 0)
(0.00075 0.00965 0)
(0.0008 0.00965 0)
(0.00085 0.00965 0)
(0.0009 0.00965 0)
(0.00095 0.00965 0)
(0.001 0.00965 0)
(0 0.0097 0)
(5e-05 0.0097 0)
(0.0001 0.0097 0)
(0.00015 0.0097 0)
(0.0002 0.0097 0)
(0.00025 0.0097 0)
(0.0003 0.0097 0)
(0.00035 0.0097 0)
(0.0004 0.0097 0)
(0.00045 0.0097 0)
(0.0005 0.0097 0)
(0.00055 0.0097 0)
(0.0006 0.0097 0)
(0.00065 0.0097 0)
(0.0007 0.0097 0)
(0.00075 0.0097 0)
(0.0008 0.0097 0)
(0.00085 0.0097 0)
(0.0009 0.0097 0)
(0.00095 0.0097 0)
(0.001 0.0097 0)
(0 0.00975 0)
(5e-05 0.00975 0)
(0.0001 0.00975 0)
(0.00015 0.00975 0)
(0.0002 0.00975 0)
(0.00025 0.00975 0)
(0.0003 0.00975 0)
(0.00035 0.00975 0)
(0.0004 0.00975 0)
(0.00045 0.00975 0)
(0.0005 0.00975 0)
(0.00055 0.00975 0)
(0.0006 0.00975 0)
(0.00065 0.00975 0)
(0.0007 0.00975 0)
(0.00075 0.00975 0)
(0.0008 0.00975 0)
(0.00085 0.00975 0)
(0.0009 0.00975 0)
(0.00095 0.00975 0)
(0.001 0.00975 0)
(0 0.0098 0)
(5e-05 0.0098 0)
(0.0001 0.0098 0)
(0.00015 0.0098 0)
(0.0002 0.0098 0)
(0.00025 0.0098 0)
(0.0003 0.0098 0)
(0.00035 0.0098 0)
(0.0004 0.0098 0)
(0.00045 0.0098 0)
(0.0005 0.0098 0)
(0.00055 0.0098 0)
(0.0006 0.0098 0)
(0.00065 0.0098 0)
(0.0007 0.0098 0)
(0.00075 0.0098 0)
(0.0008 0.0098 0)
(0.00085 0.0098 0)
(0.0009 0.0098 0)
(0.00095 0.0098 0)
(0.001 0.0098 0)
(0 0.00985 0)
(5e-05 0.00985 0)
(0.0001 0.00985 0)
(0.00015 0.00985 0)
(0.0002 0.00985 0)
(0.00025 0.00985 0)
(0.0003 0.00985 0)
(0.00035 0.00985 0)
(0.0004 0.00985 0)
(0.00045 0.00985 0)
(0.0005 0.00985 0)
(0.00055 0.00985 0)
(0.0006 0.00985 0)
(0.00065 0.00985 0)
(0.0007 0.00985 0)
(0.00075 0.00985 0)
(0.0008 0.00985 0)
(0.00085 0.00985 0)
(0.0009 0.00985 0)
(0.00095 0.00985 0)
(0.001 0.00985 0)
(0 0.0099 0)
(5e-05 0.0099 0)
(0.0001 0.0099 0)
(0.00015 0.0099 0)
(0.0002 0.0099 0)
(0.00025 0.0099 0)
(0.0003 0.0099 0)
(0.00035 0.0099 0)
(0.0004 0.0099 0)
(0.00045 0.0099 0)
(0.0005 0.0099 0)
(0.00055 0.0099 0)
(0.0006 0.0099 0)
(0.00065 0.0099 0)
(0.0007 0.0099 0)
(0.00075 0.0099 0)
(0.0008 0.0099 0)
(0.00085 0.0099 0)
(0.0009 0.0099 0)
(0.00095 0.0099 0)
(0.001 0.0099 0)
(0 0.00995 0)
(5e-05 0.00995 0)
(0.0001 0.00995 0)
(0.00015 0.00995 0)
(0.0002 0.00995 0)
(0.00025 0.00995 0)
(0.0003 0.00995 0)
(0.00035 0.00995 0)
(0.0004 0.00995 0)
(0.00045 0.00995 0)
(0.0005 0.00995 0)
(0.00055 0.00995 0)
(0.0006 0.00995 0)
(0.00065 0.00995 0)
(0.0007 0.00995 0)
(0.00075 0.00995 0)
(0.0008 0.00995 0)
(0.00085 0.00995 0)
(0.0009 0.00995 0)
(0.00095 0.00995 0)
(0.001 0.00995 0)
(0 0.01 0)
(5e-05 0.01 0)
(0.0001 0.01 0)
(0.00015 0.01 0)
(0.0002 0.01 0)
(0.00025 0.01 0)
(0.0003 0.01 0)
(0.00035 0.01 0)
(0.0004 0.01 0)
(0.00045 0.01 0)
(0.0005 0.01 0)
(0.00055 0.01 0)
(0.0006 0.01 0)
(0.00065 0.01 0)
(0.0007 0.01 0)
(0.00075 0.01 0)
(0.0008 0.01 0)
(0.00085 0.01 0)
(0.0009 0.01 0)
(0.00095 0.01 0)
(0.001 0.01 0)
(0 0.01005 0)
(5e-05 0.01005 0)
(0.0001 0.01005 0)
(0.00015 0.01005 0)
(0.0002 0.01005 0)
(0.00025 0.01005 0)
(0.0003 0.01005 0)
(0.00035 0.01005 0)
(0.0004 0.01005 0)
(0.00045 0.01005 0)
(0.0005 0.01005 0)
(0.00055 0.01005 0)
(0.0006 0.01005 0)
(0.00065 0.01005 0)
(0.0007 0.01005 0)
(0.00075 0.01005 0)
(0.0008 0.01005 0)
(0.00085 0.01005 0)
(0.0009 0.01005 0)
(0.00095 0.01005 0)
(0.001 0.01005 0)
(0 0.0101 0)
(5e-05 0.0101 0)
(0.0001 0.0101 0)
(0.00015 0.0101 0)
(0.0002 0.0101 0)
(0.00025 0.0101 0)
(0.0003 0.0101 0)
(0.00035 0.0101 0)
(0.0004 0.0101 0)
(0.00045 0.0101 0)
(0.0005 0.0101 0)
(0.00055 0.0101 0)
(0.0006 0.0101 0)
(0.00065 0.0101 0)
(0.0007 0.0101 0)
(0.00075 0.0101 0)
(0.0008 0.0101 0)
(0.00085 0.0101 0)
(0.0009 0.0101 0)
(0.00095 0.0101 0)
(0.001 0.0101 0)
(0 0.01015 0)
(5e-05 0.01015 0)
(0.0001 0.01015 0)
(0.00015 0.01015 0)
(0.0002 0.01015 0)
(0.00025 0.01015 0)
(0.0003 0.01015 0)
(0.00035 0.01015 0)
(0.0004 0.01015 0)
(0.00045 0.01015 0)
(0.0005 0.01015 0)
(0.00055 0.01015 0)
(0.0006 0.01015 0)
(0.00065 0.01015 0)
(0.0007 0.01015 0)
(0.00075 0.01015 0)
(0.0008 0.01015 0)
(0.00085 0.01015 0)
(0.0009 0.01015 0)
(0.00095 0.01015 0)
(0.001 0.01015 0)
(0 0.0102 0)
(5e-05 0.0102 0)
(0.0001 0.0102 0)
(0.00015 0.0102 0)
(0.0002 0.0102 0)
(0.00025 0.0102 0)
(0.0003 0.0102 0)
(0.00035 0.0102 0)
(0.0004 0.0102 0)
(0.00045 0.0102 0)
(0.0005 0.0102 0)
(0.00055 0.0102 0)
(0.0006 0.0102 0)
(0.00065 0.0102 0)
(0.0007 0.0102 0)
(0.00075 0.0102 0)
(0.0008 0.0102 0)
(0.00085 0.0102 0)
(0.0009 0.0102 0)
(0.00095 0.0102 0)
(0.001 0.0102 0)
(0 0.01025 0)
(5e-05 0.01025 0)
(0.0001 0.01025 0)
(0.00015 0.01025 0)
(0.0002 0.01025 0)
(0.00025 0.01025 0)
(0.0003 0.01025 0)
(0.00035 0.01025 0)
(0.0004 0.01025 0)
(0.00045 0.01025 0)
(0.0005 0.01025 0)
(0.00055 0.01025 0)
(0.0006 0.01025 0)
(0.00065 0.01025 0)
(0.0007 0.01025 0)
(0.00075 0.01025 0)
(0.0008 0.01025 0)
(0.00085 0.01025 0)
(0.0009 0.01025 0)
(0.00095 0.01025 0)
(0.001 0.01025 0)
(0 0.0103 0)
(5e-05 0.0103 0)
(0.0001 0.0103 0)
(0.00015 0.0103 0)
(0.0002 0.0103 0)
(0.00025 0.0103 0)
(0.0003 0.0103 0)
(0.00035 0.0103 0)
(0.0004 0.0103 0)
(0.00045 0.0103 0)
(0.0005 0.0103 0)
(0.00055 0.0103 0)
(0.0006 0.0103 0)
(0.00065 0.0103 0)
(0.0007 0.0103 0)
(0.00075 0.0103 0)
(0.0008 0.0103 0)
(0.00085 0.0103 0)
(0.0009 0.0103 0)
(0.00095 0.0103 0)
(0.001 0.0103 0)
(0 0.01035 0)
(5e-05 0.01035 0)
(0.0001 0.01035 0)
(0.00015 0.01035 0)
(0.0002 0.01035 0)
(0.00025 0.01035 0)
(0.0003 0.01035 0)
(0.00035 0.01035 0)
(0.0004 0.01035 0)
(0.00045 0.01035 0)
(0.0005 0.01035 0)
(0.00055 0.01035 0)
(0.0006 0.01035 0)
(0.00065 0.01035 0)
(0.0007 0.01035 0)
(0.00075 0.01035 0)
(0.0008 0.01035 0)
(0.00085 0.01035 0)
(0.0009 0.01035 0)
(0.00095 0.01035 0)
(0.001 0.01035 0)
(0 0.0104 0)
(5e-05 0.0104 0)
(0.0001 0.0104 0)
(0.00015 0.0104 0)
(0.0002 0.0104 0)
(0.00025 0.0104 0)
(0.0003 0.0104 0)
(0.00035 0.0104 0)
(0.0004 0.0104 0)
(0.00045 0.0104 0)
(0.0005 0.0104 0)
(0.00055 0.0104 0)
(0.0006 0.0104 0)
(0.00065 0.0104 0)
(0.0007 0.0104 0)
(0.00075 0.0104 0)
(0.0008 0.0104 0)
(0.00085 0.0104 0)
(0.0009 0.0104 0)
(0.00095 0.0104 0)
(0.001 0.0104 0)
(0 0.01045 0)
(5e-05 0.01045 0)
(0.0001 0.01045 0)
(0.00015 0.01045 0)
(0.0002 0.01045 0)
(0.00025 0.01045 0)
(0.0003 0.01045 0)
(0.00035 0.01045 0)
(0.0004 0.01045 0)
(0.00045 0.01045 0)
(0.0005 0.01045 0)
(0.00055 0.01045 0)
(0.0006 0.01045 0)
(0.00065 0.01045 0)
(0.0007 0.01045 0)
(0.00075 0.01045 0)
(0.0008 0.01045 0)
(0.00085 0.01045 0)
(0.0009 0.01045 0)
(0.00095 0.01045 0)
(0.001 0.01045 0)
(0 0.0105 0)
(5e-05 0.0105 0)
(0.0001 0.0105 0)
(0.00015 0.0105 0)
(0.0002 0.0105 0)
(0.00025 0.0105 0)
(0.0003 0.0105 0)
(0.00035 0.0105 0)
(0.0004 0.0105 0)
(0.00045 0.0105 0)
(0.0005 0.0105 0)
(0.00055 0.0105 0)
(0.0006 0.0105 0)
(0.00065 0.0105 0)
(0.0007 0.0105 0)
(0.00075 0.0105 0)
(0.0008 0.0105 0)
(0.00085 0.0105 0)
(0.0009 0.0105 0)
(0.00095 0.0105 0)
(0.001 0.0105 0)
(0 0.01055 0)
(5e-05 0.01055 0)
(0.0001 0.01055 0)
(0.00015 0.01055 0)
(0.0002 0.01055 0)
(0.00025 0.01055 0)
(0.0003 0.01055 0)
(0.00035 0.01055 0)
(0.0004 0.01055 0)
(0.00045 0.01055 0)
(0.0005 0.01055 0)
(0.00055 0.01055 0)
(0.0006 0.01055 0)
(0.00065 0.01055 0)
(0.0007 0.01055 0)
(0.00075 0.01055 0)
(0.0008 0.01055 0)
(0.00085 0.01055 0)
(0.0009 0.01055 0)
(0.00095 0.01055 0)
(0.001 0.01055 0)
(0 0.0106 0)
(5e-05 0.0106 0)
(0.0001 0.0106 0)
(0.00015 0.0106 0)
(0.0002 0.0106 0)
(0.00025 0.0106 0)
(0.0003 0.0106 0)
(0.00035 0.0106 0)
(0.0004 0.0106 0)
(0.00045 0.0106 0)
(0.0005 0.0106 0)
(0.00055 0.0106 0)
(0.0006 0.0106 0)
(0.00065 0.0106 0)
(0.0007 0.0106 0)
(0.00075 0.0106 0)
(0.0008 0.0106 0)
(0.00085 0.0106 0)
(0.0009 0.0106 0)
(0.00095 0.0106 0)
(0.001 0.0106 0)
(0 0.01065 0)
(5e-05 0.01065 0)
(0.0001 0.01065 0)
(0.00015 0.01065 0)
(0.0002 0.01065 0)
(0.00025 0.01065 0)
(0.0003 0.01065 0)
(0.00035 0.01065 0)
(0.0004 0.01065 0)
(0.00045 0.01065 0)
(0.0005 0.01065 0)
(0.00055 0.01065 0)
(0.0006 0.01065 0)
(0.00065 0.01065 0)
(0.0007 0.01065 0)
(0.00075 0.01065 0)
(0.0008 0.01065 0)
(0.00085 0.01065 0)
(0.0009 0.01065 0)
(0.00095 0.01065 0)
(0.001 0.01065 0)
(0 0.0107 0)
(5e-05 0.0107 0)
(0.0001 0.0107 0)
(0.00015 0.0107 0)
(0.0002 0.0107 0)
(0.00025 0.0107 0)
(0.0003 0.0107 0)
(0.00035 0.0107 0)
(0.0004 0.0107 0)
(0.00045 0.0107 0)
(0.0005 0.0107 0)
(0.00055 0.0107 0)
(0.0006 0.0107 0)
(0.00065 0.0107 0)
(0.0007 0.0107 0)
(0.00075 0.0107 0)
(0.0008 0.0107 0)
(0.00085 0.0107 0)
(0.0009 0.0107 0)
(0.00095 0.0107 0)
(0.001 0.0107 0)
(0 0.01075 0)
(5e-05 0.01075 0)
(0.0001 0.01075 0)
(0.00015 0.01075 0)
(0.0002 0.01075 0)
(0.00025 0.01075 0)
(0.0003 0.01075 0)
(0.00035 0.01075 0)
(0.0004 0.01075 0)
(0.00045 0.01075 0)
(0.0005 0.01075 0)
(0.00055 0.01075 0)
(0.0006 0.01075 0)
(0.00065 0.01075 0)
(0.0007 0.01075 0)
(0.00075 0.01075 0)
(0.0008 0.01075 0)
(0.00085 0.01075 0)
(0.0009 0.01075 0)
(0.00095 0.01075 0)
(0.001 0.01075 0)
(0 0.0108 0)
(5e-05 0.0108 0)
(0.0001 0.0108 0)
(0.00015 0.0108 0)
(0.0002 0.0108 0)
(0.00025 0.0108 0)
(0.0003 0.0108 0)
(0.00035 0.0108 0)
(0.0004 0.0108 0)
(0.00045 0.0108 0)
(0.0005 0.0108 0)
(0.00055 0.0108 0)
(0.0006 0.0108 0)
(0.00065 0.0108 0)
(0.0007 0.0108 0)
(0.00075 0.0108 0)
(0.0008 0.0108 0)
(0.00085 0.0108 0)
(0.0009 0.0108 0)
(0.00095 0.0108 0)
(0.001 0.0108 0)
(0 0.01085 0)
(5e-05 0.01085 0)
(0.0001 0.01085 0)
(0.00015 0.01085 0)
(0.0002 0.01085 0)
(0.00025 0.01085 0)
(0.0003 0.01085 0)
(0.00035 0.01085 0)
(0.0004 0.01085 0)
(0.00045 0.01085 0)
(0.0005 0.01085 0)
(0.00055 0.01085 0)
(0.0006 0.01085 0)
(0.00065 0.01085 0)
(0.0007 0.01085 0)
(0.00075 0.01085 0)
(0.0008 0.01085 0)
(0.00085 0.01085 0)
(0.0009 0.01085 0)
(0.00095 0.01085 0)
(0.001 0.01085 0)
(0 0.0109 0)
(5e-05 0.0109 0)
(0.0001 0.0109 0)
(0.00015 0.0109 0)
(0.0002 0.0109 0)
(0.00025 0.0109 0)
(0.0003 0.0109 0)
(0.00035 0.0109 0)
(0.0004 0.0109 0)
(0.00045 0.0109 0)
(0.0005 0.0109 0)
(0.00055 0.0109 0)
(0.0006 0.0109 0)
(0.00065 0.0109 0)
(0.0007 0.0109 0)
(0.00075 0.0109 0)
(0.0008 0.0109 0)
(0.00085 0.0109 0)
(0.0009 0.0109 0)
(0.00095 0.0109 0)
(0.001 0.0109 0)
(0 0.01095 0)
(5e-05 0.01095 0)
(0.0001 0.01095 0)
(0.00015 0.01095 0)
(0.0002 0.01095 0)
(0.00025 0.01095 0)
(0.0003 0.01095 0)
(0.00035 0.01095 0)
(0.0004 0.01095 0)
(0.00045 0.01095 0)
(0.0005 0.01095 0)
(0.00055 0.01095 0)
(0.0006 0.01095 0)
(0.00065 0.01095 0)
(0.0007 0.01095 0)
(0.00075 0.01095 0)
(0.0008 0.01095 0)
(0.00085 0.01095 0)
(0.0009 0.01095 0)
(0.00095 0.01095 0)
(0.001 0.01095 0)
(0 0.011 0)
(5e-05 0.011 0)
(0.0001 0.011 0)
(0.00015 0.011 0)
(0.0002 0.011 0)
(0.00025 0.011 0)
(0.0003 0.011 0)
(0.00035 0.011 0)
(0.0004 0.011 0)
(0.00045 0.011 0)
(0.0005 0.011 0)
(0.00055 0.011 0)
(0.0006 0.011 0)
(0.00065 0.011 0)
(0.0007 0.011 0)
(0.00075 0.011 0)
(0.0008 0.011 0)
(0.00085 0.011 0)
(0.0009 0.011 0)
(0.00095 0.011 0)
(0.001 0.011 0)
(0 0.01105 0)
(5e-05 0.01105 0)
(0.0001 0.01105 0)
(0.00015 0.01105 0)
(0.0002 0.01105 0)
(0.00025 0.01105 0)
(0.0003 0.01105 0)
(0.00035 0.01105 0)
(0.0004 0.01105 0)
(0.00045 0.01105 0)
(0.0005 0.01105 0)
(0.00055 0.01105 0)
(0.0006 0.01105 0)
(0.00065 0.01105 0)
(0.0007 0.01105 0)
(0.00075 0.01105 0)
(0.0008 0.01105 0)
(0.00085 0.01105 0)
(0.0009 0.01105 0)
(0.00095 0.01105 0)
(0.001 0.01105 0)
(0 0.0111 0)
(5e-05 0.0111 0)
(0.0001 0.0111 0)
(0.00015 0.0111 0)
(0.0002 0.0111 0)
(0.00025 0.0111 0)
(0.0003 0.0111 0)
(0.00035 0.0111 0)
(0.0004 0.0111 0)
(0.00045 0.0111 0)
(0.0005 0.0111 0)
(0.00055 0.0111 0)
(0.0006 0.0111 0)
(0.00065 0.0111 0)
(0.0007 0.0111 0)
(0.00075 0.0111 0)
(0.0008 0.0111 0)
(0.00085 0.0111 0)
(0.0009 0.0111 0)
(0.00095 0.0111 0)
(0.001 0.0111 0)
(0 0.01115 0)
(5e-05 0.01115 0)
(0.0001 0.01115 0)
(0.00015 0.01115 0)
(0.0002 0.01115 0)
(0.00025 0.01115 0)
(0.0003 0.01115 0)
(0.00035 0.01115 0)
(0.0004 0.01115 0)
(0.00045 0.01115 0)
(0.0005 0.01115 0)
(0.00055 0.01115 0)
(0.0006 0.01115 0)
(0.00065 0.01115 0)
(0.0007 0.01115 0)
(0.00075 0.01115 0)
(0.0008 0.01115 0)
(0.00085 0.01115 0)
(0.0009 0.01115 0)
(0.00095 0.01115 0)
(0.001 0.01115 0)
(0 0.0112 0)
(5e-05 0.0112 0)
(0.0001 0.0112 0)
(0.00015 0.0112 0)
(0.0002 0.0112 0)
(0.00025 0.0112 0)
(0.0003 0.0112 0)
(0.00035 0.0112 0)
(0.0004 0.0112 0)
(0.00045 0.0112 0)
(0.0005 0.0112 0)
(0.00055 0.0112 0)
(0.0006 0.0112 0)
(0.00065 0.0112 0)
(0.0007 0.0112 0)
(0.00075 0.0112 0)
(0.0008 0.0112 0)
(0.00085 0.0112 0)
(0.0009 0.0112 0)
(0.00095 0.0112 0)
(0.001 0.0112 0)
(0 0.01125 0)
(5e-05 0.01125 0)
(0.0001 0.01125 0)
(0.00015 0.01125 0)
(0.0002 0.01125 0)
(0.00025 0.01125 0)
(0.0003 0.01125 0)
(0.00035 0.01125 0)
(0.0004 0.01125 0)
(0.00045 0.01125 0)
(0.0005 0.01125 0)
(0.00055 0.01125 0)
(0.0006 0.01125 0)
(0.00065 0.01125 0)
(0.0007 0.01125 0)
(0.00075 0.01125 0)
(0.0008 0.01125 0)
(0.00085 0.01125 0)
(0.0009 0.01125 0)
(0.00095 0.01125 0)
(0.001 0.01125 0)
(0 0.0113 0)
(5e-05 0.0113 0)
(0.0001 0.0113 0)
(0.00015 0.0113 0)
(0.0002 0.0113 0)
(0.00025 0.0113 0)
(0.0003 0.0113 0)
(0.00035 0.0113 0)
(0.0004 0.0113 0)
(0.00045 0.0113 0)
(0.0005 0.0113 0)
(0.00055 0.0113 0)
(0.0006 0.0113 0)
(0.00065 0.0113 0)
(0.0007 0.0113 0)
(0.00075 0.0113 0)
(0.0008 0.0113 0)
(0.00085 0.0113 0)
(0.0009 0.0113 0)
(0.00095 0.0113 0)
(0.001 0.0113 0)
(0 0.01135 0)
(5e-05 0.01135 0)
(0.0001 0.01135 0)
(0.00015 0.01135 0)
(0.0002 0.01135 0)
(0.00025 0.01135 0)
(0.0003 0.01135 0)
(0.00035 0.01135 0)
(0.0004 0.01135 0)
(0.00045 0.01135 0)
(0.0005 0.01135 0)
(0.00055 0.01135 0)
(0.0006 0.01135 0)
(0.00065 0.01135 0)
(0.0007 0.01135 0)
(0.00075 0.01135 0)
(0.0008 0.01135 0)
(0.00085 0.01135 0)
(0.0009 0.01135 0)
(0.00095 0.01135 0)
(0.001 0.01135 0)
(0 0.0114 0)
(5e-05 0.0114 0)
(0.0001 0.0114 0)
(0.00015 0.0114 0)
(0.0002 0.0114 0)
(0.00025 0.0114 0)
(0.0003 0.0114 0)
(0.00035 0.0114 0)
(0.0004 0.0114 0)
(0.00045 0.0114 0)
(0.0005 0.0114 0)
(0.00055 0.0114 0)
(0.0006 0.0114 0)
(0.00065 0.0114 0)
(0.0007 0.0114 0)
(0.00075 0.0114 0)
(0.0008 0.0114 0)
(0.00085 0.0114 0)
(0.0009 0.0114 0)
(0.00095 0.0114 0)
(0.001 0.0114 0)
(0 0.01145 0)
(5e-05 0.01145 0)
(0.0001 0.01145 0)
(0.00015 0.01145 0)
(0.0002 0.01145 0)
(0.00025 0.01145 0)
(0.0003 0.01145 0)
(0.00035 0.01145 0)
(0.0004 0.01145 0)
(0.00045 0.01145 0)
(0.0005 0.01145 0)
(0.00055 0.01145 0)
(0.0006 0.01145 0)
(0.00065 0.01145 0)
(0.0007 0.01145 0)
(0.00075 0.01145 0)
(0.0008 0.01145 0)
(0.00085 0.01145 0)
(0.0009 0.01145 0)
(0.00095 0.01145 0)
(0.001 0.01145 0)
(0 0.0115 0)
(5e-05 0.0115 0)
(0.0001 0.0115 0)
(0.00015 0.0115 0)
(0.0002 0.0115 0)
(0.00025 0.0115 0)
(0.0003 0.0115 0)
(0.00035 0.0115 0)
(0.0004 0.0115 0)
(0.00045 0.0115 0)
(0.0005 0.0115 0)
(0.00055 0.0115 0)
(0.0006 0.0115 0)
(0.00065 0.0115 0)
(0.0007 0.0115 0)
(0.00075 0.0115 0)
(0.0008 0.0115 0)
(0.00085 0.0115 0)
(0.0009 0.0115 0)
(0.00095 0.0115 0)
(0.001 0.0115 0)
(0 0.01155 0)
(5e-05 0.01155 0)
(0.0001 0.01155 0)
(0.00015 0.01155 0)
(0.0002 0.01155 0)
(0.00025 0.01155 0)
(0.0003 0.01155 0)
(0.00035 0.01155 0)
(0.0004 0.01155 0)
(0.00045 0.01155 0)
(0.0005 0.01155 0)
(0.00055 0.01155 0)
(0.0006 0.01155 0)
(0.00065 0.01155 0)
(0.0007 0.01155 0)
(0.00075 0.01155 0)
(0.0008 0.01155 0)
(0.00085 0.01155 0)
(0.0009 0.01155 0)
(0.00095 0.01155 0)
(0.001 0.01155 0)
(0 0.0116 0)
(5e-05 0.0116 0)
(0.0001 0.0116 0)
(0.00015 0.0116 0)
(0.0002 0.0116 0)
(0.00025 0.0116 0)
(0.0003 0.0116 0)
(0.00035 0.0116 0)
(0.0004 0.0116 0)
(0.00045 0.0116 0)
(0.0005 0.0116 0)
(0.00055 0.0116 0)
(0.0006 0.0116 0)
(0.00065 0.0116 0)
(0.0007 0.0116 0)
(0.00075 0.0116 0)
(0.0008 0.0116 0)
(0.00085 0.0116 0)
(0.0009 0.0116 0)
(0.00095 0.0116 0)
(0.001 0.0116 0)
(0 0.01165 0)
(5e-05 0.01165 0)
(0.0001 0.01165 0)
(0.00015 0.01165 0)
(0.0002 0.01165 0)
(0.00025 0.01165 0)
(0.0003 0.01165 0)
(0.00035 0.01165 0)
(0.0004 0.01165 0)
(0.00045 0.01165 0)
(0.0005 0.01165 0)
(0.00055 0.01165 0)
(0.0006 0.01165 0)
(0.00065 0.01165 0)
(0.0007 0.01165 0)
(0.00075 0.01165 0)
(0.0008 0.01165 0)
(0.00085 0.01165 0)
(0.0009 0.01165 0)
(0.00095 0.01165 0)
(0.001 0.01165 0)
(0 0.0117 0)
(5e-05 0.0117 0)
(0.0001 0.0117 0)
(0.00015 0.0117 0)
(0.0002 0.0117 0)
(0.00025 0.0117 0)
(0.0003 0.0117 0)
(0.00035 0.0117 0)
(0.0004 0.0117 0)
(0.00045 0.0117 0)
(0.0005 0.0117 0)
(0.00055 0.0117 0)
(0.0006 0.0117 0)
(0.00065 0.0117 0)
(0.0007 0.0117 0)
(0.00075 0.0117 0)
(0.0008 0.0117 0)
(0.00085 0.0117 0)
(0.0009 0.0117 0)
(0.00095 0.0117 0)
(0.001 0.0117 0)
(0 0.01175 0)
(5e-05 0.01175 0)
(0.0001 0.01175 0)
(0.00015 0.01175 0)
(0.0002 0.01175 0)
(0.00025 0.01175 0)
(0.0003 0.01175 0)
(0.00035 0.01175 0)
(0.0004 0.01175 0)
(0.00045 0.01175 0)
(0.0005 0.01175 0)
(0.00055 0.01175 0)
(0.0006 0.01175 0)
(0.00065 0.01175 0)
(0.0007 0.01175 0)
(0.00075 0.01175 0)
(0.0008 0.01175 0)
(0.00085 0.01175 0)
(0.0009 0.01175 0)
(0.00095 0.01175 0)
(0.001 0.01175 0)
(0 0.0118 0)
(5e-05 0.0118 0)
(0.0001 0.0118 0)
(0.00015 0.0118 0)
(0.0002 0.0118 0)
(0.00025 0.0118 0)
(0.0003 0.0118 0)
(0.00035 0.0118 0)
(0.0004 0.0118 0)
(0.00045 0.0118 0)
(0.0005 0.0118 0)
(0.00055 0.0118 0)
(0.0006 0.0118 0)
(0.00065 0.0118 0)
(0.0007 0.0118 0)
(0.00075 0.0118 0)
(0.0008 0.0118 0)
(0.00085 0.0118 0)
(0.0009 0.0118 0)
(0.00095 0.0118 0)
(0.001 0.0118 0)
(0 0.01185 0)
(5e-05 0.01185 0)
(0.0001 0.01185 0)
(0.00015 0.01185 0)
(0.0002 0.01185 0)
(0.00025 0.01185 0)
(0.0003 0.01185 0)
(0.00035 0.01185 0)
(0.0004 0.01185 0)
(0.00045 0.01185 0)
(0.0005 0.01185 0)
(0.00055 0.01185 0)
(0.0006 0.01185 0)
(0.00065 0.01185 0)
(0.0007 0.01185 0)
(0.00075 0.01185 0)
(0.0008 0.01185 0)
(0.00085 0.01185 0)
(0.0009 0.01185 0)
(0.00095 0.01185 0)
(0.001 0.01185 0)
(0 0.0119 0)
(5e-05 0.0119 0)
(0.0001 0.0119 0)
(0.00015 0.0119 0)
(0.0002 0.0119 0)
(0.00025 0.0119 0)
(0.0003 0.0119 0)
(0.00035 0.0119 0)
(0.0004 0.0119 0)
(0.00045 0.0119 0)
(0.0005 0.0119 0)
(0.00055 0.0119 0)
(0.0006 0.0119 0)
(0.00065 0.0119 0)
(0.0007 0.0119 0)
(0.00075 0.0119 0)
(0.0008 0.0119 0)
(0.00085 0.0119 0)
(0.0009 0.0119 0)
(0.00095 0.0119 0)
(0.001 0.0119 0)
(0 0.01195 0)
(5e-05 0.01195 0)
(0.0001 0.01195 0)
(0.00015 0.01195 0)
(0.0002 0.01195 0)
(0.00025 0.01195 0)
(0.0003 0.01195 0)
(0.00035 0.01195 0)
(0.0004 0.01195 0)
(0.00045 0.01195 0)
(0.0005 0.01195 0)
(0.00055 0.01195 0)
(0.0006 0.01195 0)
(0.00065 0.01195 0)
(0.0007 0.01195 0)
(0.00075 0.01195 0)
(0.0008 0.01195 0)
(0.00085 0.01195 0)
(0.0009 0.01195 0)
(0.00095 0.01195 0)
(0.001 0.01195 0)
(0 0.012 0)
(5e-05 0.012 0)
(0.0001 0.012 0)
(0.00015 0.012 0)
(0.0002 0.012 0)
(0.00025 0.012 0)
(0.0003 0.012 0)
(0.00035 0.012 0)
(0.0004 0.012 0)
(0.00045 0.012 0)
(0.0005 0.012 0)
(0.00055 0.012 0)
(0.0006 0.012 0)
(0.00065 0.012 0)
(0.0007 0.012 0)
(0.00075 0.012 0)
(0.0008 0.012 0)
(0.00085 0.012 0)
(0.0009 0.012 0)
(0.00095 0.012 0)
(0.001 0.012 0)
(0 0.01205 0)
(5e-05 0.01205 0)
(0.0001 0.01205 0)
(0.00015 0.01205 0)
(0.0002 0.01205 0)
(0.00025 0.01205 0)
(0.0003 0.01205 0)
(0.00035 0.01205 0)
(0.0004 0.01205 0)
(0.00045 0.01205 0)
(0.0005 0.01205 0)
(0.00055 0.01205 0)
(0.0006 0.01205 0)
(0.00065 0.01205 0)
(0.0007 0.01205 0)
(0.00075 0.01205 0)
(0.0008 0.01205 0)
(0.00085 0.01205 0)
(0.0009 0.01205 0)
(0.00095 0.01205 0)
(0.001 0.01205 0)
(0 0.0121 0)
(5e-05 0.0121 0)
(0.0001 0.0121 0)
(0.00015 0.0121 0)
(0.0002 0.0121 0)
(0.00025 0.0121 0)
(0.0003 0.0121 0)
(0.00035 0.0121 0)
(0.0004 0.0121 0)
(0.00045 0.0121 0)
(0.0005 0.0121 0)
(0.00055 0.0121 0)
(0.0006 0.0121 0)
(0.00065 0.0121 0)
(0.0007 0.0121 0)
(0.00075 0.0121 0)
(0.0008 0.0121 0)
(0.00085 0.0121 0)
(0.0009 0.0121 0)
(0.00095 0.0121 0)
(0.001 0.0121 0)
(0 0.01215 0)
(5e-05 0.01215 0)
(0.0001 0.01215 0)
(0.00015 0.01215 0)
(0.0002 0.01215 0)
(0.00025 0.01215 0)
(0.0003 0.01215 0)
(0.00035 0.01215 0)
(0.0004 0.01215 0)
(0.00045 0.01215 0)
(0.0005 0.01215 0)
(0.00055 0.01215 0)
(0.0006 0.01215 0)
(0.00065 0.01215 0)
(0.0007 0.01215 0)
(0.00075 0.01215 0)
(0.0008 0.01215 0)
(0.00085 0.01215 0)
(0.0009 0.01215 0)
(0.00095 0.01215 0)
(0.001 0.01215 0)
(0 0.0122 0)
(5e-05 0.0122 0)
(0.0001 0.0122 0)
(0.00015 0.0122 0)
(0.0002 0.0122 0)
(0.00025 0.0122 0)
(0.0003 0.0122 0)
(0.00035 0.0122 0)
(0.0004 0.0122 0)
(0.00045 0.0122 0)
(0.0005 0.0122 0)
(0.00055 0.0122 0)
(0.0006 0.0122 0)
(0.00065 0.0122 0)
(0.0007 0.0122 0)
(0.00075 0.0122 0)
(0.0008 0.0122 0)
(0.00085 0.0122 0)
(0.0009 0.0122 0)
(0.00095 0.0122 0)
(0.001 0.0122 0)
(0 0.01225 0)
(5e-05 0.01225 0)
(0.0001 0.01225 0)
(0.00015 0.01225 0)
(0.0002 0.01225 0)
(0.00025 0.01225 0)
(0.0003 0.01225 0)
(0.00035 0.01225 0)
(0.0004 0.01225 0)
(0.00045 0.01225 0)
(0.0005 0.01225 0)
(0.00055 0.01225 0)
(0.0006 0.01225 0)
(0.00065 0.01225 0)
(0.0007 0.01225 0)
(0.00075 0.01225 0)
(0.0008 0.01225 0)
(0.00085 0.01225 0)
(0.0009 0.01225 0)
(0.00095 0.01225 0)
(0.001 0.01225 0)
(0 0.0123 0)
(5e-05 0.0123 0)
(0.0001 0.0123 0)
(0.00015 0.0123 0)
(0.0002 0.0123 0)
(0.00025 0.0123 0)
(0.0003 0.0123 0)
(0.00035 0.0123 0)
(0.0004 0.0123 0)
(0.00045 0.0123 0)
(0.0005 0.0123 0)
(0.00055 0.0123 0)
(0.0006 0.0123 0)
(0.00065 0.0123 0)
(0.0007 0.0123 0)
(0.00075 0.0123 0)
(0.0008 0.0123 0)
(0.00085 0.0123 0)
(0.0009 0.0123 0)
(0.00095 0.0123 0)
(0.001 0.0123 0)
(0 0.01235 0)
(5e-05 0.01235 0)
(0.0001 0.01235 0)
(0.00015 0.01235 0)
(0.0002 0.01235 0)
(0.00025 0.01235 0)
(0.0003 0.01235 0)
(0.00035 0.01235 0)
(0.0004 0.01235 0)
(0.00045 0.01235 0)
(0.0005 0.01235 0)
(0.00055 0.01235 0)
(0.0006 0.01235 0)
(0.00065 0.01235 0)
(0.0007 0.01235 0)
(0.00075 0.01235 0)
(0.0008 0.01235 0)
(0.00085 0.01235 0)
(0.0009 0.01235 0)
(0.00095 0.01235 0)
(0.001 0.01235 0)
(0 0.0124 0)
(5e-05 0.0124 0)
(0.0001 0.0124 0)
(0.00015 0.0124 0)
(0.0002 0.0124 0)
(0.00025 0.0124 0)
(0.0003 0.0124 0)
(0.00035 0.0124 0)
(0.0004 0.0124 0)
(0.00045 0.0124 0)
(0.0005 0.0124 0)
(0.00055 0.0124 0)
(0.0006 0.0124 0)
(0.00065 0.0124 0)
(0.0007 0.0124 0)
(0.00075 0.0124 0)
(0.0008 0.0124 0)
(0.00085 0.0124 0)
(0.0009 0.0124 0)
(0.00095 0.0124 0)
(0.001 0.0124 0)
(0 0.01245 0)
(5e-05 0.01245 0)
(0.0001 0.01245 0)
(0.00015 0.01245 0)
(0.0002 0.01245 0)
(0.00025 0.01245 0)
(0.0003 0.01245 0)
(0.00035 0.01245 0)
(0.0004 0.01245 0)
(0.00045 0.01245 0)
(0.0005 0.01245 0)
(0.00055 0.01245 0)
(0.0006 0.01245 0)
(0.00065 0.01245 0)
(0.0007 0.01245 0)
(0.00075 0.01245 0)
(0.0008 0.01245 0)
(0.00085 0.01245 0)
(0.0009 0.01245 0)
(0.00095 0.01245 0)
(0.001 0.01245 0)
(0 0.0125 0)
(5e-05 0.0125 0)
(0.0001 0.0125 0)
(0.00015 0.0125 0)
(0.0002 0.0125 0)
(0.00025 0.0125 0)
(0.0003 0.0125 0)
(0.00035 0.0125 0)
(0.0004 0.0125 0)
(0.00045 0.0125 0)
(0.0005 0.0125 0)
(0.00055 0.0125 0)
(0.0006 0.0125 0)
(0.00065 0.0125 0)
(0.0007 0.0125 0)
(0.00075 0.0125 0)
(0.0008 0.0125 0)
(0.00085 0.0125 0)
(0.0009 0.0125 0)
(0.00095 0.0125 0)
(0.001 0.0125 0)
(0 0.01255 0)
(5e-05 0.01255 0)
(0.0001 0.01255 0)
(0.00015 0.01255 0)
(0.0002 0.01255 0)
(0.00025 0.01255 0)
(0.0003 0.01255 0)
(0.00035 0.01255 0)
(0.0004 0.01255 0)
(0.00045 0.01255 0)
(0.0005 0.01255 0)
(0.00055 0.01255 0)
(0.0006 0.01255 0)
(0.00065 0.01255 0)
(0.0007 0.01255 0)
(0.00075 0.01255 0)
(0.0008 0.01255 0)
(0.00085 0.01255 0)
(0.0009 0.01255 0)
(0.00095 0.01255 0)
(0.001 0.01255 0)
(0 0.0126 0)
(5e-05 0.0126 0)
(0.0001 0.0126 0)
(0.00015 0.0126 0)
(0.0002 0.0126 0)
(0.00025 0.0126 0)
(0.0003 0.0126 0)
(0.00035 0.0126 0)
(0.0004 0.0126 0)
(0.00045 0.0126 0)
(0.0005 0.0126 0)
(0.00055 0.0126 0)
(0.0006 0.0126 0)
(0.00065 0.0126 0)
(0.0007 0.0126 0)
(0.00075 0.0126 0)
(0.0008 0.0126 0)
(0.00085 0.0126 0)
(0.0009 0.0126 0)
(0.00095 0.0126 0)
(0.001 0.0126 0)
(0 0.01265 0)
(5e-05 0.01265 0)
(0.0001 0.01265 0)
(0.00015 0.01265 0)
(0.0002 0.01265 0)
(0.00025 0.01265 0)
(0.0003 0.01265 0)
(0.00035 0.01265 0)
(0.0004 0.01265 0)
(0.00045 0.01265 0)
(0.0005 0.01265 0)
(0.00055 0.01265 0)
(0.0006 0.01265 0)
(0.00065 0.01265 0)
(0.0007 0.01265 0)
(0.00075 0.01265 0)
(0.0008 0.01265 0)
(0.00085 0.01265 0)
(0.0009 0.01265 0)
(0.00095 0.01265 0)
(0.001 0.01265 0)
(0 0.0127 0)
(5e-05 0.0127 0)
(0.0001 0.0127 0)
(0.00015 0.0127 0)
(0.0002 0.0127 0)
(0.00025 0.0127 0)
(0.0003 0.0127 0)
(0.00035 0.0127 0)
(0.0004 0.0127 0)
(0.00045 0.0127 0)
(0.0005 0.0127 0)
(0.00055 0.0127 0)
(0.0006 0.0127 0)
(0.00065 0.0127 0)
(0.0007 0.0127 0)
(0.00075 0.0127 0)
(0.0008 0.0127 0)
(0.00085 0.0127 0)
(0.0009 0.0127 0)
(0.00095 0.0127 0)
(0.001 0.0127 0)
(0 0.01275 0)
(5e-05 0.01275 0)
(0.0001 0.01275 0)
(0.00015 0.01275 0)
(0.0002 0.01275 0)
(0.00025 0.01275 0)
(0.0003 0.01275 0)
(0.00035 0.01275 0)
(0.0004 0.01275 0)
(0.00045 0.01275 0)
(0.0005 0.01275 0)
(0.00055 0.01275 0)
(0.0006 0.01275 0)
(0.00065 0.01275 0)
(0.0007 0.01275 0)
(0.00075 0.01275 0)
(0.0008 0.01275 0)
(0.00085 0.01275 0)
(0.0009 0.01275 0)
(0.00095 0.01275 0)
(0.001 0.01275 0)
(0 0.0128 0)
(5e-05 0.0128 0)
(0.0001 0.0128 0)
(0.00015 0.0128 0)
(0.0002 0.0128 0)
(0.00025 0.0128 0)
(0.0003 0.0128 0)
(0.00035 0.0128 0)
(0.0004 0.0128 0)
(0.00045 0.0128 0)
(0.0005 0.0128 0)
(0.00055 0.0128 0)
(0.0006 0.0128 0)
(0.00065 0.0128 0)
(0.0007 0.0128 0)
(0.00075 0.0128 0)
(0.0008 0.0128 0)
(0.00085 0.0128 0)
(0.0009 0.0128 0)
(0.00095 0.0128 0)
(0.001 0.0128 0)
(0 0.01285 0)
(5e-05 0.01285 0)
(0.0001 0.01285 0)
(0.00015 0.01285 0)
(0.0002 0.01285 0)
(0.00025 0.01285 0)
(0.0003 0.01285 0)
(0.00035 0.01285 0)
(0.0004 0.01285 0)
(0.00045 0.01285 0)
(0.0005 0.01285 0)
(0.00055 0.01285 0)
(0.0006 0.01285 0)
(0.00065 0.01285 0)
(0.0007 0.01285 0)
(0.00075 0.01285 0)
(0.0008 0.01285 0)
(0.00085 0.01285 0)
(0.0009 0.01285 0)
(0.00095 0.01285 0)
(0.001 0.01285 0)
(0 0.0129 0)
(5e-05 0.0129 0)
(0.0001 0.0129 0)
(0.00015 0.0129 0)
(0.0002 0.0129 0)
(0.00025 0.0129 0)
(0.0003 0.0129 0)
(0.00035 0.0129 0)
(0.0004 0.0129 0)
(0.00045 0.0129 0)
(0.0005 0.0129 0)
(0.00055 0.0129 0)
(0.0006 0.0129 0)
(0.00065 0.0129 0)
(0.0007 0.0129 0)
(0.00075 0.0129 0)
(0.0008 0.0129 0)
(0.00085 0.0129 0)
(0.0009 0.0129 0)
(0.00095 0.0129 0)
(0.001 0.0129 0)
(0 0.01295 0)
(5e-05 0.01295 0)
(0.0001 0.01295 0)
(0.00015 0.01295 0)
(0.0002 0.01295 0)
(0.00025 0.01295 0)
(0.0003 0.01295 0)
(0.00035 0.01295 0)
(0.0004 0.01295 0)
(0.00045 0.01295 0)
(0.0005 0.01295 0)
(0.00055 0.01295 0)
(0.0006 0.01295 0)
(0.00065 0.01295 0)
(0.0007 0.01295 0)
(0.00075 0.01295 0)
(0.0008 0.01295 0)
(0.00085 0.01295 0)
(0.0009 0.01295 0)
(0.00095 0.01295 0)
(0.001 0.01295 0)
(0 0.013 0)
(5e-05 0.013 0)
(0.0001 0.013 0)
(0.00015 0.013 0)
(0.0002 0.013 0)
(0.00025 0.013 0)
(0.0003 0.013 0)
(0.00035 0.013 0)
(0.0004 0.013 0)
(0.00045 0.013 0)
(0.0005 0.013 0)
(0.00055 0.013 0)
(0.0006 0.013 0)
(0.00065 0.013 0)
(0.0007 0.013 0)
(0.00075 0.013 0)
(0.0008 0.013 0)
(0.00085 0.013 0)
(0.0009 0.013 0)
(0.00095 0.013 0)
(0.001 0.013 0)
(0 0.01305 0)
(5e-05 0.01305 0)
(0.0001 0.01305 0)
(0.00015 0.01305 0)
(0.0002 0.01305 0)
(0.00025 0.01305 0)
(0.0003 0.01305 0)
(0.00035 0.01305 0)
(0.0004 0.01305 0)
(0.00045 0.01305 0)
(0.0005 0.01305 0)
(0.00055 0.01305 0)
(0.0006 0.01305 0)
(0.00065 0.01305 0)
(0.0007 0.01305 0)
(0.00075 0.01305 0)
(0.0008 0.01305 0)
(0.00085 0.01305 0)
(0.0009 0.01305 0)
(0.00095 0.01305 0)
(0.001 0.01305 0)
(0 0.0131 0)
(5e-05 0.0131 0)
(0.0001 0.0131 0)
(0.00015 0.0131 0)
(0.0002 0.0131 0)
(0.00025 0.0131 0)
(0.0003 0.0131 0)
(0.00035 0.0131 0)
(0.0004 0.0131 0)
(0.00045 0.0131 0)
(0.0005 0.0131 0)
(0.00055 0.0131 0)
(0.0006 0.0131 0)
(0.00065 0.0131 0)
(0.0007 0.0131 0)
(0.00075 0.0131 0)
(0.0008 0.0131 0)
(0.00085 0.0131 0)
(0.0009 0.0131 0)
(0.00095 0.0131 0)
(0.001 0.0131 0)
(0 0.01315 0)
(5e-05 0.01315 0)
(0.0001 0.01315 0)
(0.00015 0.01315 0)
(0.0002 0.01315 0)
(0.00025 0.01315 0)
(0.0003 0.01315 0)
(0.00035 0.01315 0)
(0.0004 0.01315 0)
(0.00045 0.01315 0)
(0.0005 0.01315 0)
(0.00055 0.01315 0)
(0.0006 0.01315 0)
(0.00065 0.01315 0)
(0.0007 0.01315 0)
(0.00075 0.01315 0)
(0.0008 0.01315 0)
(0.00085 0.01315 0)
(0.0009 0.01315 0)
(0.00095 0.01315 0)
(0.001 0.01315 0)
(0 0.0132 0)
(5e-05 0.0132 0)
(0.0001 0.0132 0)
(0.00015 0.0132 0)
(0.0002 0.0132 0)
(0.00025 0.0132 0)
(0.0003 0.0132 0)
(0.00035 0.0132 0)
(0.0004 0.0132 0)
(0.00045 0.0132 0)
(0.0005 0.0132 0)
(0.00055 0.0132 0)
(0.0006 0.0132 0)
(0.00065 0.0132 0)
(0.0007 0.0132 0)
(0.00075 0.0132 0)
(0.0008 0.0132 0)
(0.00085 0.0132 0)
(0.0009 0.0132 0)
(0.00095 0.0132 0)
(0.001 0.0132 0)
(0 0.01325 0)
(5e-05 0.01325 0)
(0.0001 0.01325 0)
(0.00015 0.01325 0)
(0.0002 0.01325 0)
(0.00025 0.01325 0)
(0.0003 0.01325 0)
(0.00035 0.01325 0)
(0.0004 0.01325 0)
(0.00045 0.01325 0)
(0.0005 0.01325 0)
(0.00055 0.01325 0)
(0.0006 0.01325 0)
(0.00065 0.01325 0)
(0.0007 0.01325 0)
(0.00075 0.01325 0)
(0.0008 0.01325 0)
(0.00085 0.01325 0)
(0.0009 0.01325 0)
(0.00095 0.01325 0)
(0.001 0.01325 0)
(0 0.0133 0)
(5e-05 0.0133 0)
(0.0001 0.0133 0)
(0.00015 0.0133 0)
(0.0002 0.0133 0)
(0.00025 0.0133 0)
(0.0003 0.0133 0)
(0.00035 0.0133 0)
(0.0004 0.0133 0)
(0.00045 0.0133 0)
(0.0005 0.0133 0)
(0.00055 0.0133 0)
(0.0006 0.0133 0)
(0.00065 0.0133 0)
(0.0007 0.0133 0)
(0.00075 0.0133 0)
(0.0008 0.0133 0)
(0.00085 0.0133 0)
(0.0009 0.0133 0)
(0.00095 0.0133 0)
(0.001 0.0133 0)
(0 0.01335 0)
(5e-05 0.01335 0)
(0.0001 0.01335 0)
(0.00015 0.01335 0)
(0.0002 0.01335 0)
(0.00025 0.01335 0)
(0.0003 0.01335 0)
(0.00035 0.01335 0)
(0.0004 0.01335 0)
(0.00045 0.01335 0)
(0.0005 0.01335 0)
(0.00055 0.01335 0)
(0.0006 0.01335 0)
(0.00065 0.01335 0)
(0.0007 0.01335 0)
(0.00075 0.01335 0)
(0.0008 0.01335 0)
(0.00085 0.01335 0)
(0.0009 0.01335 0)
(0.00095 0.01335 0)
(0.001 0.01335 0)
(0 0.0134 0)
(5e-05 0.0134 0)
(0.0001 0.0134 0)
(0.00015 0.0134 0)
(0.0002 0.0134 0)
(0.00025 0.0134 0)
(0.0003 0.0134 0)
(0.00035 0.0134 0)
(0.0004 0.0134 0)
(0.00045 0.0134 0)
(0.0005 0.0134 0)
(0.00055 0.0134 0)
(0.0006 0.0134 0)
(0.00065 0.0134 0)
(0.0007 0.0134 0)
(0.00075 0.0134 0)
(0.0008 0.0134 0)
(0.00085 0.0134 0)
(0.0009 0.0134 0)
(0.00095 0.0134 0)
(0.001 0.0134 0)
(0 0.01345 0)
(5e-05 0.01345 0)
(0.0001 0.01345 0)
(0.00015 0.01345 0)
(0.0002 0.01345 0)
(0.00025 0.01345 0)
(0.0003 0.01345 0)
(0.00035 0.01345 0)
(0.0004 0.01345 0)
(0.00045 0.01345 0)
(0.0005 0.01345 0)
(0.00055 0.01345 0)
(0.0006 0.01345 0)
(0.00065 0.01345 0)
(0.0007 0.01345 0)
(0.00075 0.01345 0)
(0.0008 0.01345 0)
(0.00085 0.01345 0)
(0.0009 0.01345 0)
(0.00095 0.01345 0)
(0.001 0.01345 0)
(0 0.0135 0)
(5e-05 0.0135 0)
(0.0001 0.0135 0)
(0.00015 0.0135 0)
(0.0002 0.0135 0)
(0.00025 0.0135 0)
(0.0003 0.0135 0)
(0.00035 0.0135 0)
(0.0004 0.0135 0)
(0.00045 0.0135 0)
(0.0005 0.0135 0)
(0.00055 0.0135 0)
(0.0006 0.0135 0)
(0.00065 0.0135 0)
(0.0007 0.0135 0)
(0.00075 0.0135 0)
(0.0008 0.0135 0)
(0.00085 0.0135 0)
(0.0009 0.0135 0)
(0.00095 0.0135 0)
(0.001 0.0135 0)
(0 0.01355 0)
(5e-05 0.01355 0)
(0.0001 0.01355 0)
(0.00015 0.01355 0)
(0.0002 0.01355 0)
(0.00025 0.01355 0)
(0.0003 0.01355 0)
(0.00035 0.01355 0)
(0.0004 0.01355 0)
(0.00045 0.01355 0)
(0.0005 0.01355 0)
(0.00055 0.01355 0)
(0.0006 0.01355 0)
(0.00065 0.01355 0)
(0.0007 0.01355 0)
(0.00075 0.01355 0)
(0.0008 0.01355 0)
(0.00085 0.01355 0)
(0.0009 0.01355 0)
(0.00095 0.01355 0)
(0.001 0.01355 0)
(0 0.0136 0)
(5e-05 0.0136 0)
(0.0001 0.0136 0)
(0.00015 0.0136 0)
(0.0002 0.0136 0)
(0.00025 0.0136 0)
(0.0003 0.0136 0)
(0.00035 0.0136 0)
(0.0004 0.0136 0)
(0.00045 0.0136 0)
(0.0005 0.0136 0)
(0.00055 0.0136 0)
(0.0006 0.0136 0)
(0.00065 0.0136 0)
(0.0007 0.0136 0)
(0.00075 0.0136 0)
(0.0008 0.0136 0)
(0.00085 0.0136 0)
(0.0009 0.0136 0)
(0.00095 0.0136 0)
(0.001 0.0136 0)
(0 0.01365 0)
(5e-05 0.01365 0)
(0.0001 0.01365 0)
(0.00015 0.01365 0)
(0.0002 0.01365 0)
(0.00025 0.01365 0)
(0.0003 0.01365 0)
(0.00035 0.01365 0)
(0.0004 0.01365 0)
(0.00045 0.01365 0)
(0.0005 0.01365 0)
(0.00055 0.01365 0)
(0.0006 0.01365 0)
(0.00065 0.01365 0)
(0.0007 0.01365 0)
(0.00075 0.01365 0)
(0.0008 0.01365 0)
(0.00085 0.01365 0)
(0.0009 0.01365 0)
(0.00095 0.01365 0)
(0.001 0.01365 0)
(0 0.0137 0)
(5e-05 0.0137 0)
(0.0001 0.0137 0)
(0.00015 0.0137 0)
(0.0002 0.0137 0)
(0.00025 0.0137 0)
(0.0003 0.0137 0)
(0.00035 0.0137 0)
(0.0004 0.0137 0)
(0.00045 0.0137 0)
(0.0005 0.0137 0)
(0.00055 0.0137 0)
(0.0006 0.0137 0)
(0.00065 0.0137 0)
(0.0007 0.0137 0)
(0.00075 0.0137 0)
(0.0008 0.0137 0)
(0.00085 0.0137 0)
(0.0009 0.0137 0)
(0.00095 0.0137 0)
(0.001 0.0137 0)
(0 0.01375 0)
(5e-05 0.01375 0)
(0.0001 0.01375 0)
(0.00015 0.01375 0)
(0.0002 0.01375 0)
(0.00025 0.01375 0)
(0.0003 0.01375 0)
(0.00035 0.01375 0)
(0.0004 0.01375 0)
(0.00045 0.01375 0)
(0.0005 0.01375 0)
(0.00055 0.01375 0)
(0.0006 0.01375 0)
(0.00065 0.01375 0)
(0.0007 0.01375 0)
(0.00075 0.01375 0)
(0.0008 0.01375 0)
(0.00085 0.01375 0)
(0.0009 0.01375 0)
(0.00095 0.01375 0)
(0.001 0.01375 0)
(0 0.0138 0)
(5e-05 0.0138 0)
(0.0001 0.0138 0)
(0.00015 0.0138 0)
(0.0002 0.0138 0)
(0.00025 0.0138 0)
(0.0003 0.0138 0)
(0.00035 0.0138 0)
(0.0004 0.0138 0)
(0.00045 0.0138 0)
(0.0005 0.0138 0)
(0.00055 0.0138 0)
(0.0006 0.0138 0)
(0.00065 0.0138 0)
(0.0007 0.0138 0)
(0.00075 0.0138 0)
(0.0008 0.0138 0)
(0.00085 0.0138 0)
(0.0009 0.0138 0)
(0.00095 0.0138 0)
(0.001 0.0138 0)
(0 0.01385 0)
(5e-05 0.01385 0)
(0.0001 0.01385 0)
(0.00015 0.01385 0)
(0.0002 0.01385 0)
(0.00025 0.01385 0)
(0.0003 0.01385 0)
(0.00035 0.01385 0)
(0.0004 0.01385 0)
(0.00045 0.01385 0)
(0.0005 0.01385 0)
(0.00055 0.01385 0)
(0.0006 0.01385 0)
(0.00065 0.01385 0)
(0.0007 0.01385 0)
(0.00075 0.01385 0)
(0.0008 0.01385 0)
(0.00085 0.01385 0)
(0.0009 0.01385 0)
(0.00095 0.01385 0)
(0.001 0.01385 0)
(0 0.0139 0)
(5e-05 0.0139 0)
(0.0001 0.0139 0)
(0.00015 0.0139 0)
(0.0002 0.0139 0)
(0.00025 0.0139 0)
(0.0003 0.0139 0)
(0.00035 0.0139 0)
(0.0004 0.0139 0)
(0.00045 0.0139 0)
(0.0005 0.0139 0)
(0.00055 0.0139 0)
(0.0006 0.0139 0)
(0.00065 0.0139 0)
(0.0007 0.0139 0)
(0.00075 0.0139 0)
(0.0008 0.0139 0)
(0.00085 0.0139 0)
(0.0009 0.0139 0)
(0.00095 0.0139 0)
(0.001 0.0139 0)
(0 0.01395 0)
(5e-05 0.01395 0)
(0.0001 0.01395 0)
(0.00015 0.01395 0)
(0.0002 0.01395 0)
(0.00025 0.01395 0)
(0.0003 0.01395 0)
(0.00035 0.01395 0)
(0.0004 0.01395 0)
(0.00045 0.01395 0)
(0.0005 0.01395 0)
(0.00055 0.01395 0)
(0.0006 0.01395 0)
(0.00065 0.01395 0)
(0.0007 0.01395 0)
(0.00075 0.01395 0)
(0.0008 0.01395 0)
(0.00085 0.01395 0)
(0.0009 0.01395 0)
(0.00095 0.01395 0)
(0.001 0.01395 0)
(0 0.014 0)
(5e-05 0.014 0)
(0.0001 0.014 0)
(0.00015 0.014 0)
(0.0002 0.014 0)
(0.00025 0.014 0)
(0.0003 0.014 0)
(0.00035 0.014 0)
(0.0004 0.014 0)
(0.00045 0.014 0)
(0.0005 0.014 0)
(0.00055 0.014 0)
(0.0006 0.014 0)
(0.00065 0.014 0)
(0.0007 0.014 0)
(0.00075 0.014 0)
(0.0008 0.014 0)
(0.00085 0.014 0)
(0.0009 0.014 0)
(0.00095 0.014 0)
(0.001 0.014 0)
(0 0.01405 0)
(5e-05 0.01405 0)
(0.0001 0.01405 0)
(0.00015 0.01405 0)
(0.0002 0.01405 0)
(0.00025 0.01405 0)
(0.0003 0.01405 0)
(0.00035 0.01405 0)
(0.0004 0.01405 0)
(0.00045 0.01405 0)
(0.0005 0.01405 0)
(0.00055 0.01405 0)
(0.0006 0.01405 0)
(0.00065 0.01405 0)
(0.0007 0.01405 0)
(0.00075 0.01405 0)
(0.0008 0.01405 0)
(0.00085 0.01405 0)
(0.0009 0.01405 0)
(0.00095 0.01405 0)
(0.001 0.01405 0)
(0 0.0141 0)
(5e-05 0.0141 0)
(0.0001 0.0141 0)
(0.00015 0.0141 0)
(0.0002 0.0141 0)
(0.00025 0.0141 0)
(0.0003 0.0141 0)
(0.00035 0.0141 0)
(0.0004 0.0141 0)
(0.00045 0.0141 0)
(0.0005 0.0141 0)
(0.00055 0.0141 0)
(0.0006 0.0141 0)
(0.00065 0.0141 0)
(0.0007 0.0141 0)
(0.00075 0.0141 0)
(0.0008 0.0141 0)
(0.00085 0.0141 0)
(0.0009 0.0141 0)
(0.00095 0.0141 0)
(0.001 0.0141 0)
(0 0.01415 0)
(5e-05 0.01415 0)
(0.0001 0.01415 0)
(0.00015 0.01415 0)
(0.0002 0.01415 0)
(0.00025 0.01415 0)
(0.0003 0.01415 0)
(0.00035 0.01415 0)
(0.0004 0.01415 0)
(0.00045 0.01415 0)
(0.0005 0.01415 0)
(0.00055 0.01415 0)
(0.0006 0.01415 0)
(0.00065 0.01415 0)
(0.0007 0.01415 0)
(0.00075 0.01415 0)
(0.0008 0.01415 0)
(0.00085 0.01415 0)
(0.0009 0.01415 0)
(0.00095 0.01415 0)
(0.001 0.01415 0)
(0 0.0142 0)
(5e-05 0.0142 0)
(0.0001 0.0142 0)
(0.00015 0.0142 0)
(0.0002 0.0142 0)
(0.00025 0.0142 0)
(0.0003 0.0142 0)
(0.00035 0.0142 0)
(0.0004 0.0142 0)
(0.00045 0.0142 0)
(0.0005 0.0142 0)
(0.00055 0.0142 0)
(0.0006 0.0142 0)
(0.00065 0.0142 0)
(0.0007 0.0142 0)
(0.00075 0.0142 0)
(0.0008 0.0142 0)
(0.00085 0.0142 0)
(0.0009 0.0142 0)
(0.00095 0.0142 0)
(0.001 0.0142 0)
(0 0.01425 0)
(5e-05 0.01425 0)
(0.0001 0.01425 0)
(0.00015 0.01425 0)
(0.0002 0.01425 0)
(0.00025 0.01425 0)
(0.0003 0.01425 0)
(0.00035 0.01425 0)
(0.0004 0.01425 0)
(0.00045 0.01425 0)
(0.0005 0.01425 0)
(0.00055 0.01425 0)
(0.0006 0.01425 0)
(0.00065 0.01425 0)
(0.0007 0.01425 0)
(0.00075 0.01425 0)
(0.0008 0.01425 0)
(0.00085 0.01425 0)
(0.0009 0.01425 0)
(0.00095 0.01425 0)
(0.001 0.01425 0)
(0 0.0143 0)
(5e-05 0.0143 0)
(0.0001 0.0143 0)
(0.00015 0.0143 0)
(0.0002 0.0143 0)
(0.00025 0.0143 0)
(0.0003 0.0143 0)
(0.00035 0.0143 0)
(0.0004 0.0143 0)
(0.00045 0.0143 0)
(0.0005 0.0143 0)
(0.00055 0.0143 0)
(0.0006 0.0143 0)
(0.00065 0.0143 0)
(0.0007 0.0143 0)
(0.00075 0.0143 0)
(0.0008 0.0143 0)
(0.00085 0.0143 0)
(0.0009 0.0143 0)
(0.00095 0.0143 0)
(0.001 0.0143 0)
(0 0.01435 0)
(5e-05 0.01435 0)
(0.0001 0.01435 0)
(0.00015 0.01435 0)
(0.0002 0.01435 0)
(0.00025 0.01435 0)
(0.0003 0.01435 0)
(0.00035 0.01435 0)
(0.0004 0.01435 0)
(0.00045 0.01435 0)
(0.0005 0.01435 0)
(0.00055 0.01435 0)
(0.0006 0.01435 0)
(0.00065 0.01435 0)
(0.0007 0.01435 0)
(0.00075 0.01435 0)
(0.0008 0.01435 0)
(0.00085 0.01435 0)
(0.0009 0.01435 0)
(0.00095 0.01435 0)
(0.001 0.01435 0)
(0 0.0144 0)
(5e-05 0.0144 0)
(0.0001 0.0144 0)
(0.00015 0.0144 0)
(0.0002 0.0144 0)
(0.00025 0.0144 0)
(0.0003 0.0144 0)
(0.00035 0.0144 0)
(0.0004 0.0144 0)
(0.00045 0.0144 0)
(0.0005 0.0144 0)
(0.00055 0.0144 0)
(0.0006 0.0144 0)
(0.00065 0.0144 0)
(0.0007 0.0144 0)
(0.00075 0.0144 0)
(0.0008 0.0144 0)
(0.00085 0.0144 0)
(0.0009 0.0144 0)
(0.00095 0.0144 0)
(0.001 0.0144 0)
(0 0.01445 0)
(5e-05 0.01445 0)
(0.0001 0.01445 0)
(0.00015 0.01445 0)
(0.0002 0.01445 0)
(0.00025 0.01445 0)
(0.0003 0.01445 0)
(0.00035 0.01445 0)
(0.0004 0.01445 0)
(0.00045 0.01445 0)
(0.0005 0.01445 0)
(0.00055 0.01445 0)
(0.0006 0.01445 0)
(0.00065 0.01445 0)
(0.0007 0.01445 0)
(0.00075 0.01445 0)
(0.0008 0.01445 0)
(0.00085 0.01445 0)
(0.0009 0.01445 0)
(0.00095 0.01445 0)
(0.001 0.01445 0)
(0 0.0145 0)
(5e-05 0.0145 0)
(0.0001 0.0145 0)
(0.00015 0.0145 0)
(0.0002 0.0145 0)
(0.00025 0.0145 0)
(0.0003 0.0145 0)
(0.00035 0.0145 0)
(0.0004 0.0145 0)
(0.00045 0.0145 0)
(0.0005 0.0145 0)
(0.00055 0.0145 0)
(0.0006 0.0145 0)
(0.00065 0.0145 0)
(0.0007 0.0145 0)
(0.00075 0.0145 0)
(0.0008 0.0145 0)
(0.00085 0.0145 0)
(0.0009 0.0145 0)
(0.00095 0.0145 0)
(0.001 0.0145 0)
(0 0.01455 0)
(5e-05 0.01455 0)
(0.0001 0.01455 0)
(0.00015 0.01455 0)
(0.0002 0.01455 0)
(0.00025 0.01455 0)
(0.0003 0.01455 0)
(0.00035 0.01455 0)
(0.0004 0.01455 0)
(0.00045 0.01455 0)
(0.0005 0.01455 0)
(0.00055 0.01455 0)
(0.0006 0.01455 0)
(0.00065 0.01455 0)
(0.0007 0.01455 0)
(0.00075 0.01455 0)
(0.0008 0.01455 0)
(0.00085 0.01455 0)
(0.0009 0.01455 0)
(0.00095 0.01455 0)
(0.001 0.01455 0)
(0 0.0146 0)
(5e-05 0.0146 0)
(0.0001 0.0146 0)
(0.00015 0.0146 0)
(0.0002 0.0146 0)
(0.00025 0.0146 0)
(0.0003 0.0146 0)
(0.00035 0.0146 0)
(0.0004 0.0146 0)
(0.00045 0.0146 0)
(0.0005 0.0146 0)
(0.00055 0.0146 0)
(0.0006 0.0146 0)
(0.00065 0.0146 0)
(0.0007 0.0146 0)
(0.00075 0.0146 0)
(0.0008 0.0146 0)
(0.00085 0.0146 0)
(0.0009 0.0146 0)
(0.00095 0.0146 0)
(0.001 0.0146 0)
(0 0.01465 0)
(5e-05 0.01465 0)
(0.0001 0.01465 0)
(0.00015 0.01465 0)
(0.0002 0.01465 0)
(0.00025 0.01465 0)
(0.0003 0.01465 0)
(0.00035 0.01465 0)
(0.0004 0.01465 0)
(0.00045 0.01465 0)
(0.0005 0.01465 0)
(0.00055 0.01465 0)
(0.0006 0.01465 0)
(0.00065 0.01465 0)
(0.0007 0.01465 0)
(0.00075 0.01465 0)
(0.0008 0.01465 0)
(0.00085 0.01465 0)
(0.0009 0.01465 0)
(0.00095 0.01465 0)
(0.001 0.01465 0)
(0 0.0147 0)
(5e-05 0.0147 0)
(0.0001 0.0147 0)
(0.00015 0.0147 0)
(0.0002 0.0147 0)
(0.00025 0.0147 0)
(0.0003 0.0147 0)
(0.00035 0.0147 0)
(0.0004 0.0147 0)
(0.00045 0.0147 0)
(0.0005 0.0147 0)
(0.00055 0.0147 0)
(0.0006 0.0147 0)
(0.00065 0.0147 0)
(0.0007 0.0147 0)
(0.00075 0.0147 0)
(0.0008 0.0147 0)
(0.00085 0.0147 0)
(0.0009 0.0147 0)
(0.00095 0.0147 0)
(0.001 0.0147 0)
(0 0.01475 0)
(5e-05 0.01475 0)
(0.0001 0.01475 0)
(0.00015 0.01475 0)
(0.0002 0.01475 0)
(0.00025 0.01475 0)
(0.0003 0.01475 0)
(0.00035 0.01475 0)
(0.0004 0.01475 0)
(0.00045 0.01475 0)
(0.0005 0.01475 0)
(0.00055 0.01475 0)
(0.0006 0.01475 0)
(0.00065 0.01475 0)
(0.0007 0.01475 0)
(0.00075 0.01475 0)
(0.0008 0.01475 0)
(0.00085 0.01475 0)
(0.0009 0.01475 0)
(0.00095 0.01475 0)
(0.001 0.01475 0)
(0 0.0148 0)
(5e-05 0.0148 0)
(0.0001 0.0148 0)
(0.00015 0.0148 0)
(0.0002 0.0148 0)
(0.00025 0.0148 0)
(0.0003 0.0148 0)
(0.00035 0.0148 0)
(0.0004 0.0148 0)
(0.00045 0.0148 0)
(0.0005 0.0148 0)
(0.00055 0.0148 0)
(0.0006 0.0148 0)
(0.00065 0.0148 0)
(0.0007 0.0148 0)
(0.00075 0.0148 0)
(0.0008 0.0148 0)
(0.00085 0.0148 0)
(0.0009 0.0148 0)
(0.00095 0.0148 0)
(0.001 0.0148 0)
(0 0.01485 0)
(5e-05 0.01485 0)
(0.0001 0.01485 0)
(0.00015 0.01485 0)
(0.0002 0.01485 0)
(0.00025 0.01485 0)
(0.0003 0.01485 0)
(0.00035 0.01485 0)
(0.0004 0.01485 0)
(0.00045 0.01485 0)
(0.0005 0.01485 0)
(0.00055 0.01485 0)
(0.0006 0.01485 0)
(0.00065 0.01485 0)
(0.0007 0.01485 0)
(0.00075 0.01485 0)
(0.0008 0.01485 0)
(0.00085 0.01485 0)
(0.0009 0.01485 0)
(0.00095 0.01485 0)
(0.001 0.01485 0)
(0 0.0149 0)
(5e-05 0.0149 0)
(0.0001 0.0149 0)
(0.00015 0.0149 0)
(0.0002 0.0149 0)
(0.00025 0.0149 0)
(0.0003 0.0149 0)
(0.00035 0.0149 0)
(0.0004 0.0149 0)
(0.00045 0.0149 0)
(0.0005 0.0149 0)
(0.00055 0.0149 0)
(0.0006 0.0149 0)
(0.00065 0.0149 0)
(0.0007 0.0149 0)
(0.00075 0.0149 0)
(0.0008 0.0149 0)
(0.00085 0.0149 0)
(0.0009 0.0149 0)
(0.00095 0.0149 0)
(0.001 0.0149 0)
(0 0.01495 0)
(5e-05 0.01495 0)
(0.0001 0.01495 0)
(0.00015 0.01495 0)
(0.0002 0.01495 0)
(0.00025 0.01495 0)
(0.0003 0.01495 0)
(0.00035 0.01495 0)
(0.0004 0.01495 0)
(0.00045 0.01495 0)
(0.0005 0.01495 0)
(0.00055 0.01495 0)
(0.0006 0.01495 0)
(0.00065 0.01495 0)
(0.0007 0.01495 0)
(0.00075 0.01495 0)
(0.0008 0.01495 0)
(0.00085 0.01495 0)
(0.0009 0.01495 0)
(0.00095 0.01495 0)
(0.001 0.01495 0)
(0 0.015 0)
(5e-05 0.015 0)
(0.0001 0.015 0)
(0.00015 0.015 0)
(0.0002 0.015 0)
(0.00025 0.015 0)
(0.0003 0.015 0)
(0.00035 0.015 0)
(0.0004 0.015 0)
(0.00045 0.015 0)
(0.0005 0.015 0)
(0.00055 0.015 0)
(0.0006 0.015 0)
(0.00065 0.015 0)
(0.0007 0.015 0)
(0.00075 0.015 0)
(0.0008 0.015 0)
(0.00085 0.015 0)
(0.0009 0.015 0)
(0.00095 0.015 0)
(0.001 0.015 0)
(0 0.01505 0)
(5e-05 0.01505 0)
(0.0001 0.01505 0)
(0.00015 0.01505 0)
(0.0002 0.01505 0)
(0.00025 0.01505 0)
(0.0003 0.01505 0)
(0.00035 0.01505 0)
(0.0004 0.01505 0)
(0.00045 0.01505 0)
(0.0005 0.01505 0)
(0.00055 0.01505 0)
(0.0006 0.01505 0)
(0.00065 0.01505 0)
(0.0007 0.01505 0)
(0.00075 0.01505 0)
(0.0008 0.01505 0)
(0.00085 0.01505 0)
(0.0009 0.01505 0)
(0.00095 0.01505 0)
(0.001 0.01505 0)
(0 0.0151 0)
(5e-05 0.0151 0)
(0.0001 0.0151 0)
(0.00015 0.0151 0)
(0.0002 0.0151 0)
(0.00025 0.0151 0)
(0.0003 0.0151 0)
(0.00035 0.0151 0)
(0.0004 0.0151 0)
(0.00045 0.0151 0)
(0.0005 0.0151 0)
(0.00055 0.0151 0)
(0.0006 0.0151 0)
(0.00065 0.0151 0)
(0.0007 0.0151 0)
(0.00075 0.0151 0)
(0.0008 0.0151 0)
(0.00085 0.0151 0)
(0.0009 0.0151 0)
(0.00095 0.0151 0)
(0.001 0.0151 0)
(0 0.01515 0)
(5e-05 0.01515 0)
(0.0001 0.01515 0)
(0.00015 0.01515 0)
(0.0002 0.01515 0)
(0.00025 0.01515 0)
(0.0003 0.01515 0)
(0.00035 0.01515 0)
(0.0004 0.01515 0)
(0.00045 0.01515 0)
(0.0005 0.01515 0)
(0.00055 0.01515 0)
(0.0006 0.01515 0)
(0.00065 0.01515 0)
(0.0007 0.01515 0)
(0.00075 0.01515 0)
(0.0008 0.01515 0)
(0.00085 0.01515 0)
(0.0009 0.01515 0)
(0.00095 0.01515 0)
(0.001 0.01515 0)
(0 0.0152 0)
(5e-05 0.0152 0)
(0.0001 0.0152 0)
(0.00015 0.0152 0)
(0.0002 0.0152 0)
(0.00025 0.0152 0)
(0.0003 0.0152 0)
(0.00035 0.0152 0)
(0.0004 0.0152 0)
(0.00045 0.0152 0)
(0.0005 0.0152 0)
(0.00055 0.0152 0)
(0.0006 0.0152 0)
(0.00065 0.0152 0)
(0.0007 0.0152 0)
(0.00075 0.0152 0)
(0.0008 0.0152 0)
(0.00085 0.0152 0)
(0.0009 0.0152 0)
(0.00095 0.0152 0)
(0.001 0.0152 0)
(0 0.01525 0)
(5e-05 0.01525 0)
(0.0001 0.01525 0)
(0.00015 0.01525 0)
(0.0002 0.01525 0)
(0.00025 0.01525 0)
(0.0003 0.01525 0)
(0.00035 0.01525 0)
(0.0004 0.01525 0)
(0.00045 0.01525 0)
(0.0005 0.01525 0)
(0.00055 0.01525 0)
(0.0006 0.01525 0)
(0.00065 0.01525 0)
(0.0007 0.01525 0)
(0.00075 0.01525 0)
(0.0008 0.01525 0)
(0.00085 0.01525 0)
(0.0009 0.01525 0)
(0.00095 0.01525 0)
(0.001 0.01525 0)
(0 0.0153 0)
(5e-05 0.0153 0)
(0.0001 0.0153 0)
(0.00015 0.0153 0)
(0.0002 0.0153 0)
(0.00025 0.0153 0)
(0.0003 0.0153 0)
(0.00035 0.0153 0)
(0.0004 0.0153 0)
(0.00045 0.0153 0)
(0.0005 0.0153 0)
(0.00055 0.0153 0)
(0.0006 0.0153 0)
(0.00065 0.0153 0)
(0.0007 0.0153 0)
(0.00075 0.0153 0)
(0.0008 0.0153 0)
(0.00085 0.0153 0)
(0.0009 0.0153 0)
(0.00095 0.0153 0)
(0.001 0.0153 0)
(0 0.01535 0)
(5e-05 0.01535 0)
(0.0001 0.01535 0)
(0.00015 0.01535 0)
(0.0002 0.01535 0)
(0.00025 0.01535 0)
(0.0003 0.01535 0)
(0.00035 0.01535 0)
(0.0004 0.01535 0)
(0.00045 0.01535 0)
(0.0005 0.01535 0)
(0.00055 0.01535 0)
(0.0006 0.01535 0)
(0.00065 0.01535 0)
(0.0007 0.01535 0)
(0.00075 0.01535 0)
(0.0008 0.01535 0)
(0.00085 0.01535 0)
(0.0009 0.01535 0)
(0.00095 0.01535 0)
(0.001 0.01535 0)
(0 0.0154 0)
(5e-05 0.0154 0)
(0.0001 0.0154 0)
(0.00015 0.0154 0)
(0.0002 0.0154 0)
(0.00025 0.0154 0)
(0.0003 0.0154 0)
(0.00035 0.0154 0)
(0.0004 0.0154 0)
(0.00045 0.0154 0)
(0.0005 0.0154 0)
(0.00055 0.0154 0)
(0.0006 0.0154 0)
(0.00065 0.0154 0)
(0.0007 0.0154 0)
(0.00075 0.0154 0)
(0.0008 0.0154 0)
(0.00085 0.0154 0)
(0.0009 0.0154 0)
(0.00095 0.0154 0)
(0.001 0.0154 0)
(0 0.01545 0)
(5e-05 0.01545 0)
(0.0001 0.01545 0)
(0.00015 0.01545 0)
(0.0002 0.01545 0)
(0.00025 0.01545 0)
(0.0003 0.01545 0)
(0.00035 0.01545 0)
(0.0004 0.01545 0)
(0.00045 0.01545 0)
(0.0005 0.01545 0)
(0.00055 0.01545 0)
(0.0006 0.01545 0)
(0.00065 0.01545 0)
(0.0007 0.01545 0)
(0.00075 0.01545 0)
(0.0008 0.01545 0)
(0.00085 0.01545 0)
(0.0009 0.01545 0)
(0.00095 0.01545 0)
(0.001 0.01545 0)
(0 0.0155 0)
(5e-05 0.0155 0)
(0.0001 0.0155 0)
(0.00015 0.0155 0)
(0.0002 0.0155 0)
(0.00025 0.0155 0)
(0.0003 0.0155 0)
(0.00035 0.0155 0)
(0.0004 0.0155 0)
(0.00045 0.0155 0)
(0.0005 0.0155 0)
(0.00055 0.0155 0)
(0.0006 0.0155 0)
(0.00065 0.0155 0)
(0.0007 0.0155 0)
(0.00075 0.0155 0)
(0.0008 0.0155 0)
(0.00085 0.0155 0)
(0.0009 0.0155 0)
(0.00095 0.0155 0)
(0.001 0.0155 0)
(0 0.01555 0)
(5e-05 0.01555 0)
(0.0001 0.01555 0)
(0.00015 0.01555 0)
(0.0002 0.01555 0)
(0.00025 0.01555 0)
(0.0003 0.01555 0)
(0.00035 0.01555 0)
(0.0004 0.01555 0)
(0.00045 0.01555 0)
(0.0005 0.01555 0)
(0.00055 0.01555 0)
(0.0006 0.01555 0)
(0.00065 0.01555 0)
(0.0007 0.01555 0)
(0.00075 0.01555 0)
(0.0008 0.01555 0)
(0.00085 0.01555 0)
(0.0009 0.01555 0)
(0.00095 0.01555 0)
(0.001 0.01555 0)
(0 0.0156 0)
(5e-05 0.0156 0)
(0.0001 0.0156 0)
(0.00015 0.0156 0)
(0.0002 0.0156 0)
(0.00025 0.0156 0)
(0.0003 0.0156 0)
(0.00035 0.0156 0)
(0.0004 0.0156 0)
(0.00045 0.0156 0)
(0.0005 0.0156 0)
(0.00055 0.0156 0)
(0.0006 0.0156 0)
(0.00065 0.0156 0)
(0.0007 0.0156 0)
(0.00075 0.0156 0)
(0.0008 0.0156 0)
(0.00085 0.0156 0)
(0.0009 0.0156 0)
(0.00095 0.0156 0)
(0.001 0.0156 0)
(0 0.01565 0)
(5e-05 0.01565 0)
(0.0001 0.01565 0)
(0.00015 0.01565 0)
(0.0002 0.01565 0)
(0.00025 0.01565 0)
(0.0003 0.01565 0)
(0.00035 0.01565 0)
(0.0004 0.01565 0)
(0.00045 0.01565 0)
(0.0005 0.01565 0)
(0.00055 0.01565 0)
(0.0006 0.01565 0)
(0.00065 0.01565 0)
(0.0007 0.01565 0)
(0.00075 0.01565 0)
(0.0008 0.01565 0)
(0.00085 0.01565 0)
(0.0009 0.01565 0)
(0.00095 0.01565 0)
(0.001 0.01565 0)
(0 0.0157 0)
(5e-05 0.0157 0)
(0.0001 0.0157 0)
(0.00015 0.0157 0)
(0.0002 0.0157 0)
(0.00025 0.0157 0)
(0.0003 0.0157 0)
(0.00035 0.0157 0)
(0.0004 0.0157 0)
(0.00045 0.0157 0)
(0.0005 0.0157 0)
(0.00055 0.0157 0)
(0.0006 0.0157 0)
(0.00065 0.0157 0)
(0.0007 0.0157 0)
(0.00075 0.0157 0)
(0.0008 0.0157 0)
(0.00085 0.0157 0)
(0.0009 0.0157 0)
(0.00095 0.0157 0)
(0.001 0.0157 0)
(0 0.01575 0)
(5e-05 0.01575 0)
(0.0001 0.01575 0)
(0.00015 0.01575 0)
(0.0002 0.01575 0)
(0.00025 0.01575 0)
(0.0003 0.01575 0)
(0.00035 0.01575 0)
(0.0004 0.01575 0)
(0.00045 0.01575 0)
(0.0005 0.01575 0)
(0.00055 0.01575 0)
(0.0006 0.01575 0)
(0.00065 0.01575 0)
(0.0007 0.01575 0)
(0.00075 0.01575 0)
(0.0008 0.01575 0)
(0.00085 0.01575 0)
(0.0009 0.01575 0)
(0.00095 0.01575 0)
(0.001 0.01575 0)
(0 0.0158 0)
(5e-05 0.0158 0)
(0.0001 0.0158 0)
(0.00015 0.0158 0)
(0.0002 0.0158 0)
(0.00025 0.0158 0)
(0.0003 0.0158 0)
(0.00035 0.0158 0)
(0.0004 0.0158 0)
(0.00045 0.0158 0)
(0.0005 0.0158 0)
(0.00055 0.0158 0)
(0.0006 0.0158 0)
(0.00065 0.0158 0)
(0.0007 0.0158 0)
(0.00075 0.0158 0)
(0.0008 0.0158 0)
(0.00085 0.0158 0)
(0.0009 0.0158 0)
(0.00095 0.0158 0)
(0.001 0.0158 0)
(0 0.01585 0)
(5e-05 0.01585 0)
(0.0001 0.01585 0)
(0.00015 0.01585 0)
(0.0002 0.01585 0)
(0.00025 0.01585 0)
(0.0003 0.01585 0)
(0.00035 0.01585 0)
(0.0004 0.01585 0)
(0.00045 0.01585 0)
(0.0005 0.01585 0)
(0.00055 0.01585 0)
(0.0006 0.01585 0)
(0.00065 0.01585 0)
(0.0007 0.01585 0)
(0.00075 0.01585 0)
(0.0008 0.01585 0)
(0.00085 0.01585 0)
(0.0009 0.01585 0)
(0.00095 0.01585 0)
(0.001 0.01585 0)
(0 0.0159 0)
(5e-05 0.0159 0)
(0.0001 0.0159 0)
(0.00015 0.0159 0)
(0.0002 0.0159 0)
(0.00025 0.0159 0)
(0.0003 0.0159 0)
(0.00035 0.0159 0)
(0.0004 0.0159 0)
(0.00045 0.0159 0)
(0.0005 0.0159 0)
(0.00055 0.0159 0)
(0.0006 0.0159 0)
(0.00065 0.0159 0)
(0.0007 0.0159 0)
(0.00075 0.0159 0)
(0.0008 0.0159 0)
(0.00085 0.0159 0)
(0.0009 0.0159 0)
(0.00095 0.0159 0)
(0.001 0.0159 0)
(0 0.01595 0)
(5e-05 0.01595 0)
(0.0001 0.01595 0)
(0.00015 0.01595 0)
(0.0002 0.01595 0)
(0.00025 0.01595 0)
(0.0003 0.01595 0)
(0.00035 0.01595 0)
(0.0004 0.01595 0)
(0.00045 0.01595 0)
(0.0005 0.01595 0)
(0.00055 0.01595 0)
(0.0006 0.01595 0)
(0.00065 0.01595 0)
(0.0007 0.01595 0)
(0.00075 0.01595 0)
(0.0008 0.01595 0)
(0.00085 0.01595 0)
(0.0009 0.01595 0)
(0.00095 0.01595 0)
(0.001 0.01595 0)
(0 0.016 0)
(5e-05 0.016 0)
(0.0001 0.016 0)
(0.00015 0.016 0)
(0.0002 0.016 0)
(0.00025 0.016 0)
(0.0003 0.016 0)
(0.00035 0.016 0)
(0.0004 0.016 0)
(0.00045 0.016 0)
(0.0005 0.016 0)
(0.00055 0.016 0)
(0.0006 0.016 0)
(0.00065 0.016 0)
(0.0007 0.016 0)
(0.00075 0.016 0)
(0.0008 0.016 0)
(0.00085 0.016 0)
(0.0009 0.016 0)
(0.00095 0.016 0)
(0.001 0.016 0)
(0 0.01605 0)
(5e-05 0.01605 0)
(0.0001 0.01605 0)
(0.00015 0.01605 0)
(0.0002 0.01605 0)
(0.00025 0.01605 0)
(0.0003 0.01605 0)
(0.00035 0.01605 0)
(0.0004 0.01605 0)
(0.00045 0.01605 0)
(0.0005 0.01605 0)
(0.00055 0.01605 0)
(0.0006 0.01605 0)
(0.00065 0.01605 0)
(0.0007 0.01605 0)
(0.00075 0.01605 0)
(0.0008 0.01605 0)
(0.00085 0.01605 0)
(0.0009 0.01605 0)
(0.00095 0.01605 0)
(0.001 0.01605 0)
(0 0.0161 0)
(5e-05 0.0161 0)
(0.0001 0.0161 0)
(0.00015 0.0161 0)
(0.0002 0.0161 0)
(0.00025 0.0161 0)
(0.0003 0.0161 0)
(0.00035 0.0161 0)
(0.0004 0.0161 0)
(0.00045 0.0161 0)
(0.0005 0.0161 0)
(0.00055 0.0161 0)
(0.0006 0.0161 0)
(0.00065 0.0161 0)
(0.0007 0.0161 0)
(0.00075 0.0161 0)
(0.0008 0.0161 0)
(0.00085 0.0161 0)
(0.0009 0.0161 0)
(0.00095 0.0161 0)
(0.001 0.0161 0)
(0 0.01615 0)
(5e-05 0.01615 0)
(0.0001 0.01615 0)
(0.00015 0.01615 0)
(0.0002 0.01615 0)
(0.00025 0.01615 0)
(0.0003 0.01615 0)
(0.00035 0.01615 0)
(0.0004 0.01615 0)
(0.00045 0.01615 0)
(0.0005 0.01615 0)
(0.00055 0.01615 0)
(0.0006 0.01615 0)
(0.00065 0.01615 0)
(0.0007 0.01615 0)
(0.00075 0.01615 0)
(0.0008 0.01615 0)
(0.00085 0.01615 0)
(0.0009 0.01615 0)
(0.00095 0.01615 0)
(0.001 0.01615 0)
(0 0.0162 0)
(5e-05 0.0162 0)
(0.0001 0.0162 0)
(0.00015 0.0162 0)
(0.0002 0.0162 0)
(0.00025 0.0162 0)
(0.0003 0.0162 0)
(0.00035 0.0162 0)
(0.0004 0.0162 0)
(0.00045 0.0162 0)
(0.0005 0.0162 0)
(0.00055 0.0162 0)
(0.0006 0.0162 0)
(0.00065 0.0162 0)
(0.0007 0.0162 0)
(0.00075 0.0162 0)
(0.0008 0.0162 0)
(0.00085 0.0162 0)
(0.0009 0.0162 0)
(0.00095 0.0162 0)
(0.001 0.0162 0)
(0 0.01625 0)
(5e-05 0.01625 0)
(0.0001 0.01625 0)
(0.00015 0.01625 0)
(0.0002 0.01625 0)
(0.00025 0.01625 0)
(0.0003 0.01625 0)
(0.00035 0.01625 0)
(0.0004 0.01625 0)
(0.00045 0.01625 0)
(0.0005 0.01625 0)
(0.00055 0.01625 0)
(0.0006 0.01625 0)
(0.00065 0.01625 0)
(0.0007 0.01625 0)
(0.00075 0.01625 0)
(0.0008 0.01625 0)
(0.00085 0.01625 0)
(0.0009 0.01625 0)
(0.00095 0.01625 0)
(0.001 0.01625 0)
(0 0.0163 0)
(5e-05 0.0163 0)
(0.0001 0.0163 0)
(0.00015 0.0163 0)
(0.0002 0.0163 0)
(0.00025 0.0163 0)
(0.0003 0.0163 0)
(0.00035 0.0163 0)
(0.0004 0.0163 0)
(0.00045 0.0163 0)
(0.0005 0.0163 0)
(0.00055 0.0163 0)
(0.0006 0.0163 0)
(0.00065 0.0163 0)
(0.0007 0.0163 0)
(0.00075 0.0163 0)
(0.0008 0.0163 0)
(0.00085 0.0163 0)
(0.0009 0.0163 0)
(0.00095 0.0163 0)
(0.001 0.0163 0)
(0 0.01635 0)
(5e-05 0.01635 0)
(0.0001 0.01635 0)
(0.00015 0.01635 0)
(0.0002 0.01635 0)
(0.00025 0.01635 0)
(0.0003 0.01635 0)
(0.00035 0.01635 0)
(0.0004 0.01635 0)
(0.00045 0.01635 0)
(0.0005 0.01635 0)
(0.00055 0.01635 0)
(0.0006 0.01635 0)
(0.00065 0.01635 0)
(0.0007 0.01635 0)
(0.00075 0.01635 0)
(0.0008 0.01635 0)
(0.00085 0.01635 0)
(0.0009 0.01635 0)
(0.00095 0.01635 0)
(0.001 0.01635 0)
(0 0.0164 0)
(5e-05 0.0164 0)
(0.0001 0.0164 0)
(0.00015 0.0164 0)
(0.0002 0.0164 0)
(0.00025 0.0164 0)
(0.0003 0.0164 0)
(0.00035 0.0164 0)
(0.0004 0.0164 0)
(0.00045 0.0164 0)
(0.0005 0.0164 0)
(0.00055 0.0164 0)
(0.0006 0.0164 0)
(0.00065 0.0164 0)
(0.0007 0.0164 0)
(0.00075 0.0164 0)
(0.0008 0.0164 0)
(0.00085 0.0164 0)
(0.0009 0.0164 0)
(0.00095 0.0164 0)
(0.001 0.0164 0)
(0 0.01645 0)
(5e-05 0.01645 0)
(0.0001 0.01645 0)
(0.00015 0.01645 0)
(0.0002 0.01645 0)
(0.00025 0.01645 0)
(0.0003 0.01645 0)
(0.00035 0.01645 0)
(0.0004 0.01645 0)
(0.00045 0.01645 0)
(0.0005 0.01645 0)
(0.00055 0.01645 0)
(0.0006 0.01645 0)
(0.00065 0.01645 0)
(0.0007 0.01645 0)
(0.00075 0.01645 0)
(0.0008 0.01645 0)
(0.00085 0.01645 0)
(0.0009 0.01645 0)
(0.00095 0.01645 0)
(0.001 0.01645 0)
(0 0.0165 0)
(5e-05 0.0165 0)
(0.0001 0.0165 0)
(0.00015 0.0165 0)
(0.0002 0.0165 0)
(0.00025 0.0165 0)
(0.0003 0.0165 0)
(0.00035 0.0165 0)
(0.0004 0.0165 0)
(0.00045 0.0165 0)
(0.0005 0.0165 0)
(0.00055 0.0165 0)
(0.0006 0.0165 0)
(0.00065 0.0165 0)
(0.0007 0.0165 0)
(0.00075 0.0165 0)
(0.0008 0.0165 0)
(0.00085 0.0165 0)
(0.0009 0.0165 0)
(0.00095 0.0165 0)
(0.001 0.0165 0)
(0 0.01655 0)
(5e-05 0.01655 0)
(0.0001 0.01655 0)
(0.00015 0.01655 0)
(0.0002 0.01655 0)
(0.00025 0.01655 0)
(0.0003 0.01655 0)
(0.00035 0.01655 0)
(0.0004 0.01655 0)
(0.00045 0.01655 0)
(0.0005 0.01655 0)
(0.00055 0.01655 0)
(0.0006 0.01655 0)
(0.00065 0.01655 0)
(0.0007 0.01655 0)
(0.00075 0.01655 0)
(0.0008 0.01655 0)
(0.00085 0.01655 0)
(0.0009 0.01655 0)
(0.00095 0.01655 0)
(0.001 0.01655 0)
(0 0.0166 0)
(5e-05 0.0166 0)
(0.0001 0.0166 0)
(0.00015 0.0166 0)
(0.0002 0.0166 0)
(0.00025 0.0166 0)
(0.0003 0.0166 0)
(0.00035 0.0166 0)
(0.0004 0.0166 0)
(0.00045 0.0166 0)
(0.0005 0.0166 0)
(0.00055 0.0166 0)
(0.0006 0.0166 0)
(0.00065 0.0166 0)
(0.0007 0.0166 0)
(0.00075 0.0166 0)
(0.0008 0.0166 0)
(0.00085 0.0166 0)
(0.0009 0.0166 0)
(0.00095 0.0166 0)
(0.001 0.0166 0)
(0 0.01665 0)
(5e-05 0.01665 0)
(0.0001 0.01665 0)
(0.00015 0.01665 0)
(0.0002 0.01665 0)
(0.00025 0.01665 0)
(0.0003 0.01665 0)
(0.00035 0.01665 0)
(0.0004 0.01665 0)
(0.00045 0.01665 0)
(0.0005 0.01665 0)
(0.00055 0.01665 0)
(0.0006 0.01665 0)
(0.00065 0.01665 0)
(0.0007 0.01665 0)
(0.00075 0.01665 0)
(0.0008 0.01665 0)
(0.00085 0.01665 0)
(0.0009 0.01665 0)
(0.00095 0.01665 0)
(0.001 0.01665 0)
(0 0.0167 0)
(5e-05 0.0167 0)
(0.0001 0.0167 0)
(0.00015 0.0167 0)
(0.0002 0.0167 0)
(0.00025 0.0167 0)
(0.0003 0.0167 0)
(0.00035 0.0167 0)
(0.0004 0.0167 0)
(0.00045 0.0167 0)
(0.0005 0.0167 0)
(0.00055 0.0167 0)
(0.0006 0.0167 0)
(0.00065 0.0167 0)
(0.0007 0.0167 0)
(0.00075 0.0167 0)
(0.0008 0.0167 0)
(0.00085 0.0167 0)
(0.0009 0.0167 0)
(0.00095 0.0167 0)
(0.001 0.0167 0)
(0 0.01675 0)
(5e-05 0.01675 0)
(0.0001 0.01675 0)
(0.00015 0.01675 0)
(0.0002 0.01675 0)
(0.00025 0.01675 0)
(0.0003 0.01675 0)
(0.00035 0.01675 0)
(0.0004 0.01675 0)
(0.00045 0.01675 0)
(0.0005 0.01675 0)
(0.00055 0.01675 0)
(0.0006 0.01675 0)
(0.00065 0.01675 0)
(0.0007 0.01675 0)
(0.00075 0.01675 0)
(0.0008 0.01675 0)
(0.00085 0.01675 0)
(0.0009 0.01675 0)
(0.00095 0.01675 0)
(0.001 0.01675 0)
(0 0.0168 0)
(5e-05 0.0168 0)
(0.0001 0.0168 0)
(0.00015 0.0168 0)
(0.0002 0.0168 0)
(0.00025 0.0168 0)
(0.0003 0.0168 0)
(0.00035 0.0168 0)
(0.0004 0.0168 0)
(0.00045 0.0168 0)
(0.0005 0.0168 0)
(0.00055 0.0168 0)
(0.0006 0.0168 0)
(0.00065 0.0168 0)
(0.0007 0.0168 0)
(0.00075 0.0168 0)
(0.0008 0.0168 0)
(0.00085 0.0168 0)
(0.0009 0.0168 0)
(0.00095 0.0168 0)
(0.001 0.0168 0)
(0 0.01685 0)
(5e-05 0.01685 0)
(0.0001 0.01685 0)
(0.00015 0.01685 0)
(0.0002 0.01685 0)
(0.00025 0.01685 0)
(0.0003 0.01685 0)
(0.00035 0.01685 0)
(0.0004 0.01685 0)
(0.00045 0.01685 0)
(0.0005 0.01685 0)
(0.00055 0.01685 0)
(0.0006 0.01685 0)
(0.00065 0.01685 0)
(0.0007 0.01685 0)
(0.00075 0.01685 0)
(0.0008 0.01685 0)
(0.00085 0.01685 0)
(0.0009 0.01685 0)
(0.00095 0.01685 0)
(0.001 0.01685 0)
(0 0.0169 0)
(5e-05 0.0169 0)
(0.0001 0.0169 0)
(0.00015 0.0169 0)
(0.0002 0.0169 0)
(0.00025 0.0169 0)
(0.0003 0.0169 0)
(0.00035 0.0169 0)
(0.0004 0.0169 0)
(0.00045 0.0169 0)
(0.0005 0.0169 0)
(0.00055 0.0169 0)
(0.0006 0.0169 0)
(0.00065 0.0169 0)
(0.0007 0.0169 0)
(0.00075 0.0169 0)
(0.0008 0.0169 0)
(0.00085 0.0169 0)
(0.0009 0.0169 0)
(0.00095 0.0169 0)
(0.001 0.0169 0)
(0 0.01695 0)
(5e-05 0.01695 0)
(0.0001 0.01695 0)
(0.00015 0.01695 0)
(0.0002 0.01695 0)
(0.00025 0.01695 0)
(0.0003 0.01695 0)
(0.00035 0.01695 0)
(0.0004 0.01695 0)
(0.00045 0.01695 0)
(0.0005 0.01695 0)
(0.00055 0.01695 0)
(0.0006 0.01695 0)
(0.00065 0.01695 0)
(0.0007 0.01695 0)
(0.00075 0.01695 0)
(0.0008 0.01695 0)
(0.00085 0.01695 0)
(0.0009 0.01695 0)
(0.00095 0.01695 0)
(0.001 0.01695 0)
(0 0.017 0)
(5e-05 0.017 0)
(0.0001 0.017 0)
(0.00015 0.017 0)
(0.0002 0.017 0)
(0.00025 0.017 0)
(0.0003 0.017 0)
(0.00035 0.017 0)
(0.0004 0.017 0)
(0.00045 0.017 0)
(0.0005 0.017 0)
(0.00055 0.017 0)
(0.0006 0.017 0)
(0.00065 0.017 0)
(0.0007 0.017 0)
(0.00075 0.017 0)
(0.0008 0.017 0)
(0.00085 0.017 0)
(0.0009 0.017 0)
(0.00095 0.017 0)
(0.001 0.017 0)
(0 0.01705 0)
(5e-05 0.01705 0)
(0.0001 0.01705 0)
(0.00015 0.01705 0)
(0.0002 0.01705 0)
(0.00025 0.01705 0)
(0.0003 0.01705 0)
(0.00035 0.01705 0)
(0.0004 0.01705 0)
(0.00045 0.01705 0)
(0.0005 0.01705 0)
(0.00055 0.01705 0)
(0.0006 0.01705 0)
(0.00065 0.01705 0)
(0.0007 0.01705 0)
(0.00075 0.01705 0)
(0.0008 0.01705 0)
(0.00085 0.01705 0)
(0.0009 0.01705 0)
(0.00095 0.01705 0)
(0.001 0.01705 0)
(0 0.0171 0)
(5e-05 0.0171 0)
(0.0001 0.0171 0)
(0.00015 0.0171 0)
(0.0002 0.0171 0)
(0.00025 0.0171 0)
(0.0003 0.0171 0)
(0.00035 0.0171 0)
(0.0004 0.0171 0)
(0.00045 0.0171 0)
(0.0005 0.0171 0)
(0.00055 0.0171 0)
(0.0006 0.0171 0)
(0.00065 0.0171 0)
(0.0007 0.0171 0)
(0.00075 0.0171 0)
(0.0008 0.0171 0)
(0.00085 0.0171 0)
(0.0009 0.0171 0)
(0.00095 0.0171 0)
(0.001 0.0171 0)
(0 0.01715 0)
(5e-05 0.01715 0)
(0.0001 0.01715 0)
(0.00015 0.01715 0)
(0.0002 0.01715 0)
(0.00025 0.01715 0)
(0.0003 0.01715 0)
(0.00035 0.01715 0)
(0.0004 0.01715 0)
(0.00045 0.01715 0)
(0.0005 0.01715 0)
(0.00055 0.01715 0)
(0.0006 0.01715 0)
(0.00065 0.01715 0)
(0.0007 0.01715 0)
(0.00075 0.01715 0)
(0.0008 0.01715 0)
(0.00085 0.01715 0)
(0.0009 0.01715 0)
(0.00095 0.01715 0)
(0.001 0.01715 0)
(0 0.0172 0)
(5e-05 0.0172 0)
(0.0001 0.0172 0)
(0.00015 0.0172 0)
(0.0002 0.0172 0)
(0.00025 0.0172 0)
(0.0003 0.0172 0)
(0.00035 0.0172 0)
(0.0004 0.0172 0)
(0.00045 0.0172 0)
(0.0005 0.0172 0)
(0.00055 0.0172 0)
(0.0006 0.0172 0)
(0.00065 0.0172 0)
(0.0007 0.0172 0)
(0.00075 0.0172 0)
(0.0008 0.0172 0)
(0.00085 0.0172 0)
(0.0009 0.0172 0)
(0.00095 0.0172 0)
(0.001 0.0172 0)
(0 0.01725 0)
(5e-05 0.01725 0)
(0.0001 0.01725 0)
(0.00015 0.01725 0)
(0.0002 0.01725 0)
(0.00025 0.01725 0)
(0.0003 0.01725 0)
(0.00035 0.01725 0)
(0.0004 0.01725 0)
(0.00045 0.01725 0)
(0.0005 0.01725 0)
(0.00055 0.01725 0)
(0.0006 0.01725 0)
(0.00065 0.01725 0)
(0.0007 0.01725 0)
(0.00075 0.01725 0)
(0.0008 0.01725 0)
(0.00085 0.01725 0)
(0.0009 0.01725 0)
(0.00095 0.01725 0)
(0.001 0.01725 0)
(0 0.0173 0)
(5e-05 0.0173 0)
(0.0001 0.0173 0)
(0.00015 0.0173 0)
(0.0002 0.0173 0)
(0.00025 0.0173 0)
(0.0003 0.0173 0)
(0.00035 0.0173 0)
(0.0004 0.0173 0)
(0.00045 0.0173 0)
(0.0005 0.0173 0)
(0.00055 0.0173 0)
(0.0006 0.0173 0)
(0.00065 0.0173 0)
(0.0007 0.0173 0)
(0.00075 0.0173 0)
(0.0008 0.0173 0)
(0.00085 0.0173 0)
(0.0009 0.0173 0)
(0.00095 0.0173 0)
(0.001 0.0173 0)
(0 0.01735 0)
(5e-05 0.01735 0)
(0.0001 0.01735 0)
(0.00015 0.01735 0)
(0.0002 0.01735 0)
(0.00025 0.01735 0)
(0.0003 0.01735 0)
(0.00035 0.01735 0)
(0.0004 0.01735 0)
(0.00045 0.01735 0)
(0.0005 0.01735 0)
(0.00055 0.01735 0)
(0.0006 0.01735 0)
(0.00065 0.01735 0)
(0.0007 0.01735 0)
(0.00075 0.01735 0)
(0.0008 0.01735 0)
(0.00085 0.01735 0)
(0.0009 0.01735 0)
(0.00095 0.01735 0)
(0.001 0.01735 0)
(0 0.0174 0)
(5e-05 0.0174 0)
(0.0001 0.0174 0)
(0.00015 0.0174 0)
(0.0002 0.0174 0)
(0.00025 0.0174 0)
(0.0003 0.0174 0)
(0.00035 0.0174 0)
(0.0004 0.0174 0)
(0.00045 0.0174 0)
(0.0005 0.0174 0)
(0.00055 0.0174 0)
(0.0006 0.0174 0)
(0.00065 0.0174 0)
(0.0007 0.0174 0)
(0.00075 0.0174 0)
(0.0008 0.0174 0)
(0.00085 0.0174 0)
(0.0009 0.0174 0)
(0.00095 0.0174 0)
(0.001 0.0174 0)
(0 0.01745 0)
(5e-05 0.01745 0)
(0.0001 0.01745 0)
(0.00015 0.01745 0)
(0.0002 0.01745 0)
(0.00025 0.01745 0)
(0.0003 0.01745 0)
(0.00035 0.01745 0)
(0.0004 0.01745 0)
(0.00045 0.01745 0)
(0.0005 0.01745 0)
(0.00055 0.01745 0)
(0.0006 0.01745 0)
(0.00065 0.01745 0)
(0.0007 0.01745 0)
(0.00075 0.01745 0)
(0.0008 0.01745 0)
(0.00085 0.01745 0)
(0.0009 0.01745 0)
(0.00095 0.01745 0)
(0.001 0.01745 0)
(0 0.0175 0)
(5e-05 0.0175 0)
(0.0001 0.0175 0)
(0.00015 0.0175 0)
(0.0002 0.0175 0)
(0.00025 0.0175 0)
(0.0003 0.0175 0)
(0.00035 0.0175 0)
(0.0004 0.0175 0)
(0.00045 0.0175 0)
(0.0005 0.0175 0)
(0.00055 0.0175 0)
(0.0006 0.0175 0)
(0.00065 0.0175 0)
(0.0007 0.0175 0)
(0.00075 0.0175 0)
(0.0008 0.0175 0)
(0.00085 0.0175 0)
(0.0009 0.0175 0)
(0.00095 0.0175 0)
(0.001 0.0175 0)
(0 0.01755 0)
(5e-05 0.01755 0)
(0.0001 0.01755 0)
(0.00015 0.01755 0)
(0.0002 0.01755 0)
(0.00025 0.01755 0)
(0.0003 0.01755 0)
(0.00035 0.01755 0)
(0.0004 0.01755 0)
(0.00045 0.01755 0)
(0.0005 0.01755 0)
(0.00055 0.01755 0)
(0.0006 0.01755 0)
(0.00065 0.01755 0)
(0.0007 0.01755 0)
(0.00075 0.01755 0)
(0.0008 0.01755 0)
(0.00085 0.01755 0)
(0.0009 0.01755 0)
(0.00095 0.01755 0)
(0.001 0.01755 0)
(0 0.0176 0)
(5e-05 0.0176 0)
(0.0001 0.0176 0)
(0.00015 0.0176 0)
(0.0002 0.0176 0)
(0.00025 0.0176 0)
(0.0003 0.0176 0)
(0.00035 0.0176 0)
(0.0004 0.0176 0)
(0.00045 0.0176 0)
(0.0005 0.0176 0)
(0.00055 0.0176 0)
(0.0006 0.0176 0)
(0.00065 0.0176 0)
(0.0007 0.0176 0)
(0.00075 0.0176 0)
(0.0008 0.0176 0)
(0.00085 0.0176 0)
(0.0009 0.0176 0)
(0.00095 0.0176 0)
(0.001 0.0176 0)
(0 0.01765 0)
(5e-05 0.01765 0)
(0.0001 0.01765 0)
(0.00015 0.01765 0)
(0.0002 0.01765 0)
(0.00025 0.01765 0)
(0.0003 0.01765 0)
(0.00035 0.01765 0)
(0.0004 0.01765 0)
(0.00045 0.01765 0)
(0.0005 0.01765 0)
(0.00055 0.01765 0)
(0.0006 0.01765 0)
(0.00065 0.01765 0)
(0.0007 0.01765 0)
(0.00075 0.01765 0)
(0.0008 0.01765 0)
(0.00085 0.01765 0)
(0.0009 0.01765 0)
(0.00095 0.01765 0)
(0.001 0.01765 0)
(0 0.0177 0)
(5e-05 0.0177 0)
(0.0001 0.0177 0)
(0.00015 0.0177 0)
(0.0002 0.0177 0)
(0.00025 0.0177 0)
(0.0003 0.0177 0)
(0.00035 0.0177 0)
(0.0004 0.0177 0)
(0.00045 0.0177 0)
(0.0005 0.0177 0)
(0.00055 0.0177 0)
(0.0006 0.0177 0)
(0.00065 0.0177 0)
(0.0007 0.0177 0)
(0.00075 0.0177 0)
(0.0008 0.0177 0)
(0.00085 0.0177 0)
(0.0009 0.0177 0)
(0.00095 0.0177 0)
(0.001 0.0177 0)
(0 0.01775 0)
(5e-05 0.01775 0)
(0.0001 0.01775 0)
(0.00015 0.01775 0)
(0.0002 0.01775 0)
(0.00025 0.01775 0)
(0.0003 0.01775 0)
(0.00035 0.01775 0)
(0.0004 0.01775 0)
(0.00045 0.01775 0)
(0.0005 0.01775 0)
(0.00055 0.01775 0)
(0.0006 0.01775 0)
(0.00065 0.01775 0)
(0.0007 0.01775 0)
(0.00075 0.01775 0)
(0.0008 0.01775 0)
(0.00085 0.01775 0)
(0.0009 0.01775 0)
(0.00095 0.01775 0)
(0.001 0.01775 0)
(0 0.0178 0)
(5e-05 0.0178 0)
(0.0001 0.0178 0)
(0.00015 0.0178 0)
(0.0002 0.0178 0)
(0.00025 0.0178 0)
(0.0003 0.0178 0)
(0.00035 0.0178 0)
(0.0004 0.0178 0)
(0.00045 0.0178 0)
(0.0005 0.0178 0)
(0.00055 0.0178 0)
(0.0006 0.0178 0)
(0.00065 0.0178 0)
(0.0007 0.0178 0)
(0.00075 0.0178 0)
(0.0008 0.0178 0)
(0.00085 0.0178 0)
(0.0009 0.0178 0)
(0.00095 0.0178 0)
(0.001 0.0178 0)
(0 0.01785 0)
(5e-05 0.01785 0)
(0.0001 0.01785 0)
(0.00015 0.01785 0)
(0.0002 0.01785 0)
(0.00025 0.01785 0)
(0.0003 0.01785 0)
(0.00035 0.01785 0)
(0.0004 0.01785 0)
(0.00045 0.01785 0)
(0.0005 0.01785 0)
(0.00055 0.01785 0)
(0.0006 0.01785 0)
(0.00065 0.01785 0)
(0.0007 0.01785 0)
(0.00075 0.01785 0)
(0.0008 0.01785 0)
(0.00085 0.01785 0)
(0.0009 0.01785 0)
(0.00095 0.01785 0)
(0.001 0.01785 0)
(0 0.0179 0)
(5e-05 0.0179 0)
(0.0001 0.0179 0)
(0.00015 0.0179 0)
(0.0002 0.0179 0)
(0.00025 0.0179 0)
(0.0003 0.0179 0)
(0.00035 0.0179 0)
(0.0004 0.0179 0)
(0.00045 0.0179 0)
(0.0005 0.0179 0)
(0.00055 0.0179 0)
(0.0006 0.0179 0)
(0.00065 0.0179 0)
(0.0007 0.0179 0)
(0.00075 0.0179 0)
(0.0008 0.0179 0)
(0.00085 0.0179 0)
(0.0009 0.0179 0)
(0.00095 0.0179 0)
(0.001 0.0179 0)
(0 0.01795 0)
(5e-05 0.01795 0)
(0.0001 0.01795 0)
(0.00015 0.01795 0)
(0.0002 0.01795 0)
(0.00025 0.01795 0)
(0.0003 0.01795 0)
(0.00035 0.01795 0)
(0.0004 0.01795 0)
(0.00045 0.01795 0)
(0.0005 0.01795 0)
(0.00055 0.01795 0)
(0.0006 0.01795 0)
(0.00065 0.01795 0)
(0.0007 0.01795 0)
(0.00075 0.01795 0)
(0.0008 0.01795 0)
(0.00085 0.01795 0)
(0.0009 0.01795 0)
(0.00095 0.01795 0)
(0.001 0.01795 0)
(0 0.018 0)
(5e-05 0.018 0)
(0.0001 0.018 0)
(0.00015 0.018 0)
(0.0002 0.018 0)
(0.00025 0.018 0)
(0.0003 0.018 0)
(0.00035 0.018 0)
(0.0004 0.018 0)
(0.00045 0.018 0)
(0.0005 0.018 0)
(0.00055 0.018 0)
(0.0006 0.018 0)
(0.00065 0.018 0)
(0.0007 0.018 0)
(0.00075 0.018 0)
(0.0008 0.018 0)
(0.00085 0.018 0)
(0.0009 0.018 0)
(0.00095 0.018 0)
(0.001 0.018 0)
(0 0.01805 0)
(5e-05 0.01805 0)
(0.0001 0.01805 0)
(0.00015 0.01805 0)
(0.0002 0.01805 0)
(0.00025 0.01805 0)
(0.0003 0.01805 0)
(0.00035 0.01805 0)
(0.0004 0.01805 0)
(0.00045 0.01805 0)
(0.0005 0.01805 0)
(0.00055 0.01805 0)
(0.0006 0.01805 0)
(0.00065 0.01805 0)
(0.0007 0.01805 0)
(0.00075 0.01805 0)
(0.0008 0.01805 0)
(0.00085 0.01805 0)
(0.0009 0.01805 0)
(0.00095 0.01805 0)
(0.001 0.01805 0)
(0 0.0181 0)
(5e-05 0.0181 0)
(0.0001 0.0181 0)
(0.00015 0.0181 0)
(0.0002 0.0181 0)
(0.00025 0.0181 0)
(0.0003 0.0181 0)
(0.00035 0.0181 0)
(0.0004 0.0181 0)
(0.00045 0.0181 0)
(0.0005 0.0181 0)
(0.00055 0.0181 0)
(0.0006 0.0181 0)
(0.00065 0.0181 0)
(0.0007 0.0181 0)
(0.00075 0.0181 0)
(0.0008 0.0181 0)
(0.00085 0.0181 0)
(0.0009 0.0181 0)
(0.00095 0.0181 0)
(0.001 0.0181 0)
(0 0.01815 0)
(5e-05 0.01815 0)
(0.0001 0.01815 0)
(0.00015 0.01815 0)
(0.0002 0.01815 0)
(0.00025 0.01815 0)
(0.0003 0.01815 0)
(0.00035 0.01815 0)
(0.0004 0.01815 0)
(0.00045 0.01815 0)
(0.0005 0.01815 0)
(0.00055 0.01815 0)
(0.0006 0.01815 0)
(0.00065 0.01815 0)
(0.0007 0.01815 0)
(0.00075 0.01815 0)
(0.0008 0.01815 0)
(0.00085 0.01815 0)
(0.0009 0.01815 0)
(0.00095 0.01815 0)
(0.001 0.01815 0)
(0 0.0182 0)
(5e-05 0.0182 0)
(0.0001 0.0182 0)
(0.00015 0.0182 0)
(0.0002 0.0182 0)
(0.00025 0.0182 0)
(0.0003 0.0182 0)
(0.00035 0.0182 0)
(0.0004 0.0182 0)
(0.00045 0.0182 0)
(0.0005 0.0182 0)
(0.00055 0.0182 0)
(0.0006 0.0182 0)
(0.00065 0.0182 0)
(0.0007 0.0182 0)
(0.00075 0.0182 0)
(0.0008 0.0182 0)
(0.00085 0.0182 0)
(0.0009 0.0182 0)
(0.00095 0.0182 0)
(0.001 0.0182 0)
(0 0.01825 0)
(5e-05 0.01825 0)
(0.0001 0.01825 0)
(0.00015 0.01825 0)
(0.0002 0.01825 0)
(0.00025 0.01825 0)
(0.0003 0.01825 0)
(0.00035 0.01825 0)
(0.0004 0.01825 0)
(0.00045 0.01825 0)
(0.0005 0.01825 0)
(0.00055 0.01825 0)
(0.0006 0.01825 0)
(0.00065 0.01825 0)
(0.0007 0.01825 0)
(0.00075 0.01825 0)
(0.0008 0.01825 0)
(0.00085 0.01825 0)
(0.0009 0.01825 0)
(0.00095 0.01825 0)
(0.001 0.01825 0)
(0 0.0183 0)
(5e-05 0.0183 0)
(0.0001 0.0183 0)
(0.00015 0.0183 0)
(0.0002 0.0183 0)
(0.00025 0.0183 0)
(0.0003 0.0183 0)
(0.00035 0.0183 0)
(0.0004 0.0183 0)
(0.00045 0.0183 0)
(0.0005 0.0183 0)
(0.00055 0.0183 0)
(0.0006 0.0183 0)
(0.00065 0.0183 0)
(0.0007 0.0183 0)
(0.00075 0.0183 0)
(0.0008 0.0183 0)
(0.00085 0.0183 0)
(0.0009 0.0183 0)
(0.00095 0.0183 0)
(0.001 0.0183 0)
(0 0.01835 0)
(5e-05 0.01835 0)
(0.0001 0.01835 0)
(0.00015 0.01835 0)
(0.0002 0.01835 0)
(0.00025 0.01835 0)
(0.0003 0.01835 0)
(0.00035 0.01835 0)
(0.0004 0.01835 0)
(0.00045 0.01835 0)
(0.0005 0.01835 0)
(0.00055 0.01835 0)
(0.0006 0.01835 0)
(0.00065 0.01835 0)
(0.0007 0.01835 0)
(0.00075 0.01835 0)
(0.0008 0.01835 0)
(0.00085 0.01835 0)
(0.0009 0.01835 0)
(0.00095 0.01835 0)
(0.001 0.01835 0)
(0 0.0184 0)
(5e-05 0.0184 0)
(0.0001 0.0184 0)
(0.00015 0.0184 0)
(0.0002 0.0184 0)
(0.00025 0.0184 0)
(0.0003 0.0184 0)
(0.00035 0.0184 0)
(0.0004 0.0184 0)
(0.00045 0.0184 0)
(0.0005 0.0184 0)
(0.00055 0.0184 0)
(0.0006 0.0184 0)
(0.00065 0.0184 0)
(0.0007 0.0184 0)
(0.00075 0.0184 0)
(0.0008 0.0184 0)
(0.00085 0.0184 0)
(0.0009 0.0184 0)
(0.00095 0.0184 0)
(0.001 0.0184 0)
(0 0.01845 0)
(5e-05 0.01845 0)
(0.0001 0.01845 0)
(0.00015 0.01845 0)
(0.0002 0.01845 0)
(0.00025 0.01845 0)
(0.0003 0.01845 0)
(0.00035 0.01845 0)
(0.0004 0.01845 0)
(0.00045 0.01845 0)
(0.0005 0.01845 0)
(0.00055 0.01845 0)
(0.0006 0.01845 0)
(0.00065 0.01845 0)
(0.0007 0.01845 0)
(0.00075 0.01845 0)
(0.0008 0.01845 0)
(0.00085 0.01845 0)
(0.0009 0.01845 0)
(0.00095 0.01845 0)
(0.001 0.01845 0)
(0 0.0185 0)
(5e-05 0.0185 0)
(0.0001 0.0185 0)
(0.00015 0.0185 0)
(0.0002 0.0185 0)
(0.00025 0.0185 0)
(0.0003 0.0185 0)
(0.00035 0.0185 0)
(0.0004 0.0185 0)
(0.00045 0.0185 0)
(0.0005 0.0185 0)
(0.00055 0.0185 0)
(0.0006 0.0185 0)
(0.00065 0.0185 0)
(0.0007 0.0185 0)
(0.00075 0.0185 0)
(0.0008 0.0185 0)
(0.00085 0.0185 0)
(0.0009 0.0185 0)
(0.00095 0.0185 0)
(0.001 0.0185 0)
(0 0.01855 0)
(5e-05 0.01855 0)
(0.0001 0.01855 0)
(0.00015 0.01855 0)
(0.0002 0.01855 0)
(0.00025 0.01855 0)
(0.0003 0.01855 0)
(0.00035 0.01855 0)
(0.0004 0.01855 0)
(0.00045 0.01855 0)
(0.0005 0.01855 0)
(0.00055 0.01855 0)
(0.0006 0.01855 0)
(0.00065 0.01855 0)
(0.0007 0.01855 0)
(0.00075 0.01855 0)
(0.0008 0.01855 0)
(0.00085 0.01855 0)
(0.0009 0.01855 0)
(0.00095 0.01855 0)
(0.001 0.01855 0)
(0 0.0186 0)
(5e-05 0.0186 0)
(0.0001 0.0186 0)
(0.00015 0.0186 0)
(0.0002 0.0186 0)
(0.00025 0.0186 0)
(0.0003 0.0186 0)
(0.00035 0.0186 0)
(0.0004 0.0186 0)
(0.00045 0.0186 0)
(0.0005 0.0186 0)
(0.00055 0.0186 0)
(0.0006 0.0186 0)
(0.00065 0.0186 0)
(0.0007 0.0186 0)
(0.00075 0.0186 0)
(0.0008 0.0186 0)
(0.00085 0.0186 0)
(0.0009 0.0186 0)
(0.00095 0.0186 0)
(0.001 0.0186 0)
(0 0.01865 0)
(5e-05 0.01865 0)
(0.0001 0.01865 0)
(0.00015 0.01865 0)
(0.0002 0.01865 0)
(0.00025 0.01865 0)
(0.0003 0.01865 0)
(0.00035 0.01865 0)
(0.0004 0.01865 0)
(0.00045 0.01865 0)
(0.0005 0.01865 0)
(0.00055 0.01865 0)
(0.0006 0.01865 0)
(0.00065 0.01865 0)
(0.0007 0.01865 0)
(0.00075 0.01865 0)
(0.0008 0.01865 0)
(0.00085 0.01865 0)
(0.0009 0.01865 0)
(0.00095 0.01865 0)
(0.001 0.01865 0)
(0 0.0187 0)
(5e-05 0.0187 0)
(0.0001 0.0187 0)
(0.00015 0.0187 0)
(0.0002 0.0187 0)
(0.00025 0.0187 0)
(0.0003 0.0187 0)
(0.00035 0.0187 0)
(0.0004 0.0187 0)
(0.00045 0.0187 0)
(0.0005 0.0187 0)
(0.00055 0.0187 0)
(0.0006 0.0187 0)
(0.00065 0.0187 0)
(0.0007 0.0187 0)
(0.00075 0.0187 0)
(0.0008 0.0187 0)
(0.00085 0.0187 0)
(0.0009 0.0187 0)
(0.00095 0.0187 0)
(0.001 0.0187 0)
(0 0.01875 0)
(5e-05 0.01875 0)
(0.0001 0.01875 0)
(0.00015 0.01875 0)
(0.0002 0.01875 0)
(0.00025 0.01875 0)
(0.0003 0.01875 0)
(0.00035 0.01875 0)
(0.0004 0.01875 0)
(0.00045 0.01875 0)
(0.0005 0.01875 0)
(0.00055 0.01875 0)
(0.0006 0.01875 0)
(0.00065 0.01875 0)
(0.0007 0.01875 0)
(0.00075 0.01875 0)
(0.0008 0.01875 0)
(0.00085 0.01875 0)
(0.0009 0.01875 0)
(0.00095 0.01875 0)
(0.001 0.01875 0)
(0 0.0188 0)
(5e-05 0.0188 0)
(0.0001 0.0188 0)
(0.00015 0.0188 0)
(0.0002 0.0188 0)
(0.00025 0.0188 0)
(0.0003 0.0188 0)
(0.00035 0.0188 0)
(0.0004 0.0188 0)
(0.00045 0.0188 0)
(0.0005 0.0188 0)
(0.00055 0.0188 0)
(0.0006 0.0188 0)
(0.00065 0.0188 0)
(0.0007 0.0188 0)
(0.00075 0.0188 0)
(0.0008 0.0188 0)
(0.00085 0.0188 0)
(0.0009 0.0188 0)
(0.00095 0.0188 0)
(0.001 0.0188 0)
(0 0.01885 0)
(5e-05 0.01885 0)
(0.0001 0.01885 0)
(0.00015 0.01885 0)
(0.0002 0.01885 0)
(0.00025 0.01885 0)
(0.0003 0.01885 0)
(0.00035 0.01885 0)
(0.0004 0.01885 0)
(0.00045 0.01885 0)
(0.0005 0.01885 0)
(0.00055 0.01885 0)
(0.0006 0.01885 0)
(0.00065 0.01885 0)
(0.0007 0.01885 0)
(0.00075 0.01885 0)
(0.0008 0.01885 0)
(0.00085 0.01885 0)
(0.0009 0.01885 0)
(0.00095 0.01885 0)
(0.001 0.01885 0)
(0 0.0189 0)
(5e-05 0.0189 0)
(0.0001 0.0189 0)
(0.00015 0.0189 0)
(0.0002 0.0189 0)
(0.00025 0.0189 0)
(0.0003 0.0189 0)
(0.00035 0.0189 0)
(0.0004 0.0189 0)
(0.00045 0.0189 0)
(0.0005 0.0189 0)
(0.00055 0.0189 0)
(0.0006 0.0189 0)
(0.00065 0.0189 0)
(0.0007 0.0189 0)
(0.00075 0.0189 0)
(0.0008 0.0189 0)
(0.00085 0.0189 0)
(0.0009 0.0189 0)
(0.00095 0.0189 0)
(0.001 0.0189 0)
(0 0.01895 0)
(5e-05 0.01895 0)
(0.0001 0.01895 0)
(0.00015 0.01895 0)
(0.0002 0.01895 0)
(0.00025 0.01895 0)
(0.0003 0.01895 0)
(0.00035 0.01895 0)
(0.0004 0.01895 0)
(0.00045 0.01895 0)
(0.0005 0.01895 0)
(0.00055 0.01895 0)
(0.0006 0.01895 0)
(0.00065 0.01895 0)
(0.0007 0.01895 0)
(0.00075 0.01895 0)
(0.0008 0.01895 0)
(0.00085 0.01895 0)
(0.0009 0.01895 0)
(0.00095 0.01895 0)
(0.001 0.01895 0)
(0 0.019 0)
(5e-05 0.019 0)
(0.0001 0.019 0)
(0.00015 0.019 0)
(0.0002 0.019 0)
(0.00025 0.019 0)
(0.0003 0.019 0)
(0.00035 0.019 0)
(0.0004 0.019 0)
(0.00045 0.019 0)
(0.0005 0.019 0)
(0.00055 0.019 0)
(0.0006 0.019 0)
(0.00065 0.019 0)
(0.0007 0.019 0)
(0.00075 0.019 0)
(0.0008 0.019 0)
(0.00085 0.019 0)
(0.0009 0.019 0)
(0.00095 0.019 0)
(0.001 0.019 0)
(0 0.01905 0)
(5e-05 0.01905 0)
(0.0001 0.01905 0)
(0.00015 0.01905 0)
(0.0002 0.01905 0)
(0.00025 0.01905 0)
(0.0003 0.01905 0)
(0.00035 0.01905 0)
(0.0004 0.01905 0)
(0.00045 0.01905 0)
(0.0005 0.01905 0)
(0.00055 0.01905 0)
(0.0006 0.01905 0)
(0.00065 0.01905 0)
(0.0007 0.01905 0)
(0.00075 0.01905 0)
(0.0008 0.01905 0)
(0.00085 0.01905 0)
(0.0009 0.01905 0)
(0.00095 0.01905 0)
(0.001 0.01905 0)
(0 0.0191 0)
(5e-05 0.0191 0)
(0.0001 0.0191 0)
(0.00015 0.0191 0)
(0.0002 0.0191 0)
(0.00025 0.0191 0)
(0.0003 0.0191 0)
(0.00035 0.0191 0)
(0.0004 0.0191 0)
(0.00045 0.0191 0)
(0.0005 0.0191 0)
(0.00055 0.0191 0)
(0.0006 0.0191 0)
(0.00065 0.0191 0)
(0.0007 0.0191 0)
(0.00075 0.0191 0)
(0.0008 0.0191 0)
(0.00085 0.0191 0)
(0.0009 0.0191 0)
(0.00095 0.0191 0)
(0.001 0.0191 0)
(0 0.01915 0)
(5e-05 0.01915 0)
(0.0001 0.01915 0)
(0.00015 0.01915 0)
(0.0002 0.01915 0)
(0.00025 0.01915 0)
(0.0003 0.01915 0)
(0.00035 0.01915 0)
(0.0004 0.01915 0)
(0.00045 0.01915 0)
(0.0005 0.01915 0)
(0.00055 0.01915 0)
(0.0006 0.01915 0)
(0.00065 0.01915 0)
(0.0007 0.01915 0)
(0.00075 0.01915 0)
(0.0008 0.01915 0)
(0.00085 0.01915 0)
(0.0009 0.01915 0)
(0.00095 0.01915 0)
(0.001 0.01915 0)
(0 0.0192 0)
(5e-05 0.0192 0)
(0.0001 0.0192 0)
(0.00015 0.0192 0)
(0.0002 0.0192 0)
(0.00025 0.0192 0)
(0.0003 0.0192 0)
(0.00035 0.0192 0)
(0.0004 0.0192 0)
(0.00045 0.0192 0)
(0.0005 0.0192 0)
(0.00055 0.0192 0)
(0.0006 0.0192 0)
(0.00065 0.0192 0)
(0.0007 0.0192 0)
(0.00075 0.0192 0)
(0.0008 0.0192 0)
(0.00085 0.0192 0)
(0.0009 0.0192 0)
(0.00095 0.0192 0)
(0.001 0.0192 0)
(0 0.01925 0)
(5e-05 0.01925 0)
(0.0001 0.01925 0)
(0.00015 0.01925 0)
(0.0002 0.01925 0)
(0.00025 0.01925 0)
(0.0003 0.01925 0)
(0.00035 0.01925 0)
(0.0004 0.01925 0)
(0.00045 0.01925 0)
(0.0005 0.01925 0)
(0.00055 0.01925 0)
(0.0006 0.01925 0)
(0.00065 0.01925 0)
(0.0007 0.01925 0)
(0.00075 0.01925 0)
(0.0008 0.01925 0)
(0.00085 0.01925 0)
(0.0009 0.01925 0)
(0.00095 0.01925 0)
(0.001 0.01925 0)
(0 0.0193 0)
(5e-05 0.0193 0)
(0.0001 0.0193 0)
(0.00015 0.0193 0)
(0.0002 0.0193 0)
(0.00025 0.0193 0)
(0.0003 0.0193 0)
(0.00035 0.0193 0)
(0.0004 0.0193 0)
(0.00045 0.0193 0)
(0.0005 0.0193 0)
(0.00055 0.0193 0)
(0.0006 0.0193 0)
(0.00065 0.0193 0)
(0.0007 0.0193 0)
(0.00075 0.0193 0)
(0.0008 0.0193 0)
(0.00085 0.0193 0)
(0.0009 0.0193 0)
(0.00095 0.0193 0)
(0.001 0.0193 0)
(0 0.01935 0)
(5e-05 0.01935 0)
(0.0001 0.01935 0)
(0.00015 0.01935 0)
(0.0002 0.01935 0)
(0.00025 0.01935 0)
(0.0003 0.01935 0)
(0.00035 0.01935 0)
(0.0004 0.01935 0)
(0.00045 0.01935 0)
(0.0005 0.01935 0)
(0.00055 0.01935 0)
(0.0006 0.01935 0)
(0.00065 0.01935 0)
(0.0007 0.01935 0)
(0.00075 0.01935 0)
(0.0008 0.01935 0)
(0.00085 0.01935 0)
(0.0009 0.01935 0)
(0.00095 0.01935 0)
(0.001 0.01935 0)
(0 0.0194 0)
(5e-05 0.0194 0)
(0.0001 0.0194 0)
(0.00015 0.0194 0)
(0.0002 0.0194 0)
(0.00025 0.0194 0)
(0.0003 0.0194 0)
(0.00035 0.0194 0)
(0.0004 0.0194 0)
(0.00045 0.0194 0)
(0.0005 0.0194 0)
(0.00055 0.0194 0)
(0.0006 0.0194 0)
(0.00065 0.0194 0)
(0.0007 0.0194 0)
(0.00075 0.0194 0)
(0.0008 0.0194 0)
(0.00085 0.0194 0)
(0.0009 0.0194 0)
(0.00095 0.0194 0)
(0.001 0.0194 0)
(0 0.01945 0)
(5e-05 0.01945 0)
(0.0001 0.01945 0)
(0.00015 0.01945 0)
(0.0002 0.01945 0)
(0.00025 0.01945 0)
(0.0003 0.01945 0)
(0.00035 0.01945 0)
(0.0004 0.01945 0)
(0.00045 0.01945 0)
(0.0005 0.01945 0)
(0.00055 0.01945 0)
(0.0006 0.01945 0)
(0.00065 0.01945 0)
(0.0007 0.01945 0)
(0.00075 0.01945 0)
(0.0008 0.01945 0)
(0.00085 0.01945 0)
(0.0009 0.01945 0)
(0.00095 0.01945 0)
(0.001 0.01945 0)
(0 0.0195 0)
(5e-05 0.0195 0)
(0.0001 0.0195 0)
(0.00015 0.0195 0)
(0.0002 0.0195 0)
(0.00025 0.0195 0)
(0.0003 0.0195 0)
(0.00035 0.0195 0)
(0.0004 0.0195 0)
(0.00045 0.0195 0)
(0.0005 0.0195 0)
(0.00055 0.0195 0)
(0.0006 0.0195 0)
(0.00065 0.0195 0)
(0.0007 0.0195 0)
(0.00075 0.0195 0)
(0.0008 0.0195 0)
(0.00085 0.0195 0)
(0.0009 0.0195 0)
(0.00095 0.0195 0)
(0.001 0.0195 0)
(0 0.01955 0)
(5e-05 0.01955 0)
(0.0001 0.01955 0)
(0.00015 0.01955 0)
(0.0002 0.01955 0)
(0.00025 0.01955 0)
(0.0003 0.01955 0)
(0.00035 0.01955 0)
(0.0004 0.01955 0)
(0.00045 0.01955 0)
(0.0005 0.01955 0)
(0.00055 0.01955 0)
(0.0006 0.01955 0)
(0.00065 0.01955 0)
(0.0007 0.01955 0)
(0.00075 0.01955 0)
(0.0008 0.01955 0)
(0.00085 0.01955 0)
(0.0009 0.01955 0)
(0.00095 0.01955 0)
(0.001 0.01955 0)
(0 0.0196 0)
(5e-05 0.0196 0)
(0.0001 0.0196 0)
(0.00015 0.0196 0)
(0.0002 0.0196 0)
(0.00025 0.0196 0)
(0.0003 0.0196 0)
(0.00035 0.0196 0)
(0.0004 0.0196 0)
(0.00045 0.0196 0)
(0.0005 0.0196 0)
(0.00055 0.0196 0)
(0.0006 0.0196 0)
(0.00065 0.0196 0)
(0.0007 0.0196 0)
(0.00075 0.0196 0)
(0.0008 0.0196 0)
(0.00085 0.0196 0)
(0.0009 0.0196 0)
(0.00095 0.0196 0)
(0.001 0.0196 0)
(0 0.01965 0)
(5e-05 0.01965 0)
(0.0001 0.01965 0)
(0.00015 0.01965 0)
(0.0002 0.01965 0)
(0.00025 0.01965 0)
(0.0003 0.01965 0)
(0.00035 0.01965 0)
(0.0004 0.01965 0)
(0.00045 0.01965 0)
(0.0005 0.01965 0)
(0.00055 0.01965 0)
(0.0006 0.01965 0)
(0.00065 0.01965 0)
(0.0007 0.01965 0)
(0.00075 0.01965 0)
(0.0008 0.01965 0)
(0.00085 0.01965 0)
(0.0009 0.01965 0)
(0.00095 0.01965 0)
(0.001 0.01965 0)
(0 0.0197 0)
(5e-05 0.0197 0)
(0.0001 0.0197 0)
(0.00015 0.0197 0)
(0.0002 0.0197 0)
(0.00025 0.0197 0)
(0.0003 0.0197 0)
(0.00035 0.0197 0)
(0.0004 0.0197 0)
(0.00045 0.0197 0)
(0.0005 0.0197 0)
(0.00055 0.0197 0)
(0.0006 0.0197 0)
(0.00065 0.0197 0)
(0.0007 0.0197 0)
(0.00075 0.0197 0)
(0.0008 0.0197 0)
(0.00085 0.0197 0)
(0.0009 0.0197 0)
(0.00095 0.0197 0)
(0.001 0.0197 0)
(0 0.01975 0)
(5e-05 0.01975 0)
(0.0001 0.01975 0)
(0.00015 0.01975 0)
(0.0002 0.01975 0)
(0.00025 0.01975 0)
(0.0003 0.01975 0)
(0.00035 0.01975 0)
(0.0004 0.01975 0)
(0.00045 0.01975 0)
(0.0005 0.01975 0)
(0.00055 0.01975 0)
(0.0006 0.01975 0)
(0.00065 0.01975 0)
(0.0007 0.01975 0)
(0.00075 0.01975 0)
(0.0008 0.01975 0)
(0.00085 0.01975 0)
(0.0009 0.01975 0)
(0.00095 0.01975 0)
(0.001 0.01975 0)
(0 0.0198 0)
(5e-05 0.0198 0)
(0.0001 0.0198 0)
(0.00015 0.0198 0)
(0.0002 0.0198 0)
(0.00025 0.0198 0)
(0.0003 0.0198 0)
(0.00035 0.0198 0)
(0.0004 0.0198 0)
(0.00045 0.0198 0)
(0.0005 0.0198 0)
(0.00055 0.0198 0)
(0.0006 0.0198 0)
(0.00065 0.0198 0)
(0.0007 0.0198 0)
(0.00075 0.0198 0)
(0.0008 0.0198 0)
(0.00085 0.0198 0)
(0.0009 0.0198 0)
(0.00095 0.0198 0)
(0.001 0.0198 0)
(0 0.01985 0)
(5e-05 0.01985 0)
(0.0001 0.01985 0)
(0.00015 0.01985 0)
(0.0002 0.01985 0)
(0.00025 0.01985 0)
(0.0003 0.01985 0)
(0.00035 0.01985 0)
(0.0004 0.01985 0)
(0.00045 0.01985 0)
(0.0005 0.01985 0)
(0.00055 0.01985 0)
(0.0006 0.01985 0)
(0.00065 0.01985 0)
(0.0007 0.01985 0)
(0.00075 0.01985 0)
(0.0008 0.01985 0)
(0.00085 0.01985 0)
(0.0009 0.01985 0)
(0.00095 0.01985 0)
(0.001 0.01985 0)
(0 0.0199 0)
(5e-05 0.0199 0)
(0.0001 0.0199 0)
(0.00015 0.0199 0)
(0.0002 0.0199 0)
(0.00025 0.0199 0)
(0.0003 0.0199 0)
(0.00035 0.0199 0)
(0.0004 0.0199 0)
(0.00045 0.0199 0)
(0.0005 0.0199 0)
(0.00055 0.0199 0)
(0.0006 0.0199 0)
(0.00065 0.0199 0)
(0.0007 0.0199 0)
(0.00075 0.0199 0)
(0.0008 0.0199 0)
(0.00085 0.0199 0)
(0.0009 0.0199 0)
(0.00095 0.0199 0)
(0.001 0.0199 0)
(0 0.01995 0)
(5e-05 0.01995 0)
(0.0001 0.01995 0)
(0.00015 0.01995 0)
(0.0002 0.01995 0)
(0.00025 0.01995 0)
(0.0003 0.01995 0)
(0.00035 0.01995 0)
(0.0004 0.01995 0)
(0.00045 0.01995 0)
(0.0005 0.01995 0)
(0.00055 0.01995 0)
(0.0006 0.01995 0)
(0.00065 0.01995 0)
(0.0007 0.01995 0)
(0.00075 0.01995 0)
(0.0008 0.01995 0)
(0.00085 0.01995 0)
(0.0009 0.01995 0)
(0.00095 0.01995 0)
(0.001 0.01995 0)
(0 0.02 0)
(5e-05 0.02 0)
(0.0001 0.02 0)
(0.00015 0.02 0)
(0.0002 0.02 0)
(0.00025 0.02 0)
(0.0003 0.02 0)
(0.00035 0.02 0)
(0.0004 0.02 0)
(0.00045 0.02 0)
(0.0005 0.02 0)
(0.00055 0.02 0)
(0.0006 0.02 0)
(0.00065 0.02 0)
(0.0007 0.02 0)
(0.00075 0.02 0)
(0.0008 0.02 0)
(0.00085 0.02 0)
(0.0009 0.02 0)
(0.00095 0.02 0)
(0.001 0.02 0)
(0 0 0.001)
(5e-05 0 0.001)
(0.0001 0 0.001)
(0.00015 0 0.001)
(0.0002 0 0.001)
(0.00025 0 0.001)
(0.0003 0 0.001)
(0.00035 0 0.001)
(0.0004 0 0.001)
(0.00045 0 0.001)
(0.0005 0 0.001)
(0.00055 0 0.001)
(0.0006 0 0.001)
(0.00065 0 0.001)
(0.0007 0 0.001)
(0.00075 0 0.001)
(0.0008 0 0.001)
(0.00085 0 0.001)
(0.0009 0 0.001)
(0.00095 0 0.001)
(0.001 0 0.001)
(0 5e-05 0.001)
(5e-05 5e-05 0.001)
(0.0001 5e-05 0.001)
(0.00015 5e-05 0.001)
(0.0002 5e-05 0.001)
(0.00025 5e-05 0.001)
(0.0003 5e-05 0.001)
(0.00035 5e-05 0.001)
(0.0004 5e-05 0.001)
(0.00045 5e-05 0.001)
(0.0005 5e-05 0.001)
(0.00055 5e-05 0.001)
(0.0006 5e-05 0.001)
(0.00065 5e-05 0.001)
(0.0007 5e-05 0.001)
(0.00075 5e-05 0.001)
(0.0008 5e-05 0.001)
(0.00085 5e-05 0.001)
(0.0009 5e-05 0.001)
(0.00095 5e-05 0.001)
(0.001 5e-05 0.001)
(0 0.0001 0.001)
(5e-05 0.0001 0.001)
(0.0001 0.0001 0.001)
(0.00015 0.0001 0.001)
(0.0002 0.0001 0.001)
(0.00025 0.0001 0.001)
(0.0003 0.0001 0.001)
(0.00035 0.0001 0.001)
(0.0004 0.0001 0.001)
(0.00045 0.0001 0.001)
(0.0005 0.0001 0.001)
(0.00055 0.0001 0.001)
(0.0006 0.0001 0.001)
(0.00065 0.0001 0.001)
(0.0007 0.0001 0.001)
(0.00075 0.0001 0.001)
(0.0008 0.0001 0.001)
(0.00085 0.0001 0.001)
(0.0009 0.0001 0.001)
(0.00095 0.0001 0.001)
(0.001 0.0001 0.001)
(0 0.00015 0.001)
(5e-05 0.00015 0.001)
(0.0001 0.00015 0.001)
(0.00015 0.00015 0.001)
(0.0002 0.00015 0.001)
(0.00025 0.00015 0.001)
(0.0003 0.00015 0.001)
(0.00035 0.00015 0.001)
(0.0004 0.00015 0.001)
(0.00045 0.00015 0.001)
(0.0005 0.00015 0.001)
(0.00055 0.00015 0.001)
(0.0006 0.00015 0.001)
(0.00065 0.00015 0.001)
(0.0007 0.00015 0.001)
(0.00075 0.00015 0.001)
(0.0008 0.00015 0.001)
(0.00085 0.00015 0.001)
(0.0009 0.00015 0.001)
(0.00095 0.00015 0.001)
(0.001 0.00015 0.001)
(0 0.0002 0.001)
(5e-05 0.0002 0.001)
(0.0001 0.0002 0.001)
(0.00015 0.0002 0.001)
(0.0002 0.0002 0.001)
(0.00025 0.0002 0.001)
(0.0003 0.0002 0.001)
(0.00035 0.0002 0.001)
(0.0004 0.0002 0.001)
(0.00045 0.0002 0.001)
(0.0005 0.0002 0.001)
(0.00055 0.0002 0.001)
(0.0006 0.0002 0.001)
(0.00065 0.0002 0.001)
(0.0007 0.0002 0.001)
(0.00075 0.0002 0.001)
(0.0008 0.0002 0.001)
(0.00085 0.0002 0.001)
(0.0009 0.0002 0.001)
(0.00095 0.0002 0.001)
(0.001 0.0002 0.001)
(0 0.00025 0.001)
(5e-05 0.00025 0.001)
(0.0001 0.00025 0.001)
(0.00015 0.00025 0.001)
(0.0002 0.00025 0.001)
(0.00025 0.00025 0.001)
(0.0003 0.00025 0.001)
(0.00035 0.00025 0.001)
(0.0004 0.00025 0.001)
(0.00045 0.00025 0.001)
(0.0005 0.00025 0.001)
(0.00055 0.00025 0.001)
(0.0006 0.00025 0.001)
(0.00065 0.00025 0.001)
(0.0007 0.00025 0.001)
(0.00075 0.00025 0.001)
(0.0008 0.00025 0.001)
(0.00085 0.00025 0.001)
(0.0009 0.00025 0.001)
(0.00095 0.00025 0.001)
(0.001 0.00025 0.001)
(0 0.0003 0.001)
(5e-05 0.0003 0.001)
(0.0001 0.0003 0.001)
(0.00015 0.0003 0.001)
(0.0002 0.0003 0.001)
(0.00025 0.0003 0.001)
(0.0003 0.0003 0.001)
(0.00035 0.0003 0.001)
(0.0004 0.0003 0.001)
(0.00045 0.0003 0.001)
(0.0005 0.0003 0.001)
(0.00055 0.0003 0.001)
(0.0006 0.0003 0.001)
(0.00065 0.0003 0.001)
(0.0007 0.0003 0.001)
(0.00075 0.0003 0.001)
(0.0008 0.0003 0.001)
(0.00085 0.0003 0.001)
(0.0009 0.0003 0.001)
(0.00095 0.0003 0.001)
(0.001 0.0003 0.001)
(0 0.00035 0.001)
(5e-05 0.00035 0.001)
(0.0001 0.00035 0.001)
(0.00015 0.00035 0.001)
(0.0002 0.00035 0.001)
(0.00025 0.00035 0.001)
(0.0003 0.00035 0.001)
(0.00035 0.00035 0.001)
(0.0004 0.00035 0.001)
(0.00045 0.00035 0.001)
(0.0005 0.00035 0.001)
(0.00055 0.00035 0.001)
(0.0006 0.00035 0.001)
(0.00065 0.00035 0.001)
(0.0007 0.00035 0.001)
(0.00075 0.00035 0.001)
(0.0008 0.00035 0.001)
(0.00085 0.00035 0.001)
(0.0009 0.00035 0.001)
(0.00095 0.00035 0.001)
(0.001 0.00035 0.001)
(0 0.0004 0.001)
(5e-05 0.0004 0.001)
(0.0001 0.0004 0.001)
(0.00015 0.0004 0.001)
(0.0002 0.0004 0.001)
(0.00025 0.0004 0.001)
(0.0003 0.0004 0.001)
(0.00035 0.0004 0.001)
(0.0004 0.0004 0.001)
(0.00045 0.0004 0.001)
(0.0005 0.0004 0.001)
(0.00055 0.0004 0.001)
(0.0006 0.0004 0.001)
(0.00065 0.0004 0.001)
(0.0007 0.0004 0.001)
(0.00075 0.0004 0.001)
(0.0008 0.0004 0.001)
(0.00085 0.0004 0.001)
(0.0009 0.0004 0.001)
(0.00095 0.0004 0.001)
(0.001 0.0004 0.001)
(0 0.00045 0.001)
(5e-05 0.00045 0.001)
(0.0001 0.00045 0.001)
(0.00015 0.00045 0.001)
(0.0002 0.00045 0.001)
(0.00025 0.00045 0.001)
(0.0003 0.00045 0.001)
(0.00035 0.00045 0.001)
(0.0004 0.00045 0.001)
(0.00045 0.00045 0.001)
(0.0005 0.00045 0.001)
(0.00055 0.00045 0.001)
(0.0006 0.00045 0.001)
(0.00065 0.00045 0.001)
(0.0007 0.00045 0.001)
(0.00075 0.00045 0.001)
(0.0008 0.00045 0.001)
(0.00085 0.00045 0.001)
(0.0009 0.00045 0.001)
(0.00095 0.00045 0.001)
(0.001 0.00045 0.001)
(0 0.0005 0.001)
(5e-05 0.0005 0.001)
(0.0001 0.0005 0.001)
(0.00015 0.0005 0.001)
(0.0002 0.0005 0.001)
(0.00025 0.0005 0.001)
(0.0003 0.0005 0.001)
(0.00035 0.0005 0.001)
(0.0004 0.0005 0.001)
(0.00045 0.0005 0.001)
(0.0005 0.0005 0.001)
(0.00055 0.0005 0.001)
(0.0006 0.0005 0.001)
(0.00065 0.0005 0.001)
(0.0007 0.0005 0.001)
(0.00075 0.0005 0.001)
(0.0008 0.0005 0.001)
(0.00085 0.0005 0.001)
(0.0009 0.0005 0.001)
(0.00095 0.0005 0.001)
(0.001 0.0005 0.001)
(0 0.00055 0.001)
(5e-05 0.00055 0.001)
(0.0001 0.00055 0.001)
(0.00015 0.00055 0.001)
(0.0002 0.00055 0.001)
(0.00025 0.00055 0.001)
(0.0003 0.00055 0.001)
(0.00035 0.00055 0.001)
(0.0004 0.00055 0.001)
(0.00045 0.00055 0.001)
(0.0005 0.00055 0.001)
(0.00055 0.00055 0.001)
(0.0006 0.00055 0.001)
(0.00065 0.00055 0.001)
(0.0007 0.00055 0.001)
(0.00075 0.00055 0.001)
(0.0008 0.00055 0.001)
(0.00085 0.00055 0.001)
(0.0009 0.00055 0.001)
(0.00095 0.00055 0.001)
(0.001 0.00055 0.001)
(0 0.0006 0.001)
(5e-05 0.0006 0.001)
(0.0001 0.0006 0.001)
(0.00015 0.0006 0.001)
(0.0002 0.0006 0.001)
(0.00025 0.0006 0.001)
(0.0003 0.0006 0.001)
(0.00035 0.0006 0.001)
(0.0004 0.0006 0.001)
(0.00045 0.0006 0.001)
(0.0005 0.0006 0.001)
(0.00055 0.0006 0.001)
(0.0006 0.0006 0.001)
(0.00065 0.0006 0.001)
(0.0007 0.0006 0.001)
(0.00075 0.0006 0.001)
(0.0008 0.0006 0.001)
(0.00085 0.0006 0.001)
(0.0009 0.0006 0.001)
(0.00095 0.0006 0.001)
(0.001 0.0006 0.001)
(0 0.00065 0.001)
(5e-05 0.00065 0.001)
(0.0001 0.00065 0.001)
(0.00015 0.00065 0.001)
(0.0002 0.00065 0.001)
(0.00025 0.00065 0.001)
(0.0003 0.00065 0.001)
(0.00035 0.00065 0.001)
(0.0004 0.00065 0.001)
(0.00045 0.00065 0.001)
(0.0005 0.00065 0.001)
(0.00055 0.00065 0.001)
(0.0006 0.00065 0.001)
(0.00065 0.00065 0.001)
(0.0007 0.00065 0.001)
(0.00075 0.00065 0.001)
(0.0008 0.00065 0.001)
(0.00085 0.00065 0.001)
(0.0009 0.00065 0.001)
(0.00095 0.00065 0.001)
(0.001 0.00065 0.001)
(0 0.0007 0.001)
(5e-05 0.0007 0.001)
(0.0001 0.0007 0.001)
(0.00015 0.0007 0.001)
(0.0002 0.0007 0.001)
(0.00025 0.0007 0.001)
(0.0003 0.0007 0.001)
(0.00035 0.0007 0.001)
(0.0004 0.0007 0.001)
(0.00045 0.0007 0.001)
(0.0005 0.0007 0.001)
(0.00055 0.0007 0.001)
(0.0006 0.0007 0.001)
(0.00065 0.0007 0.001)
(0.0007 0.0007 0.001)
(0.00075 0.0007 0.001)
(0.0008 0.0007 0.001)
(0.00085 0.0007 0.001)
(0.0009 0.0007 0.001)
(0.00095 0.0007 0.001)
(0.001 0.0007 0.001)
(0 0.00075 0.001)
(5e-05 0.00075 0.001)
(0.0001 0.00075 0.001)
(0.00015 0.00075 0.001)
(0.0002 0.00075 0.001)
(0.00025 0.00075 0.001)
(0.0003 0.00075 0.001)
(0.00035 0.00075 0.001)
(0.0004 0.00075 0.001)
(0.00045 0.00075 0.001)
(0.0005 0.00075 0.001)
(0.00055 0.00075 0.001)
(0.0006 0.00075 0.001)
(0.00065 0.00075 0.001)
(0.0007 0.00075 0.001)
(0.00075 0.00075 0.001)
(0.0008 0.00075 0.001)
(0.00085 0.00075 0.001)
(0.0009 0.00075 0.001)
(0.00095 0.00075 0.001)
(0.001 0.00075 0.001)
(0 0.0008 0.001)
(5e-05 0.0008 0.001)
(0.0001 0.0008 0.001)
(0.00015 0.0008 0.001)
(0.0002 0.0008 0.001)
(0.00025 0.0008 0.001)
(0.0003 0.0008 0.001)
(0.00035 0.0008 0.001)
(0.0004 0.0008 0.001)
(0.00045 0.0008 0.001)
(0.0005 0.0008 0.001)
(0.00055 0.0008 0.001)
(0.0006 0.0008 0.001)
(0.00065 0.0008 0.001)
(0.0007 0.0008 0.001)
(0.00075 0.0008 0.001)
(0.0008 0.0008 0.001)
(0.00085 0.0008 0.001)
(0.0009 0.0008 0.001)
(0.00095 0.0008 0.001)
(0.001 0.0008 0.001)
(0 0.00085 0.001)
(5e-05 0.00085 0.001)
(0.0001 0.00085 0.001)
(0.00015 0.00085 0.001)
(0.0002 0.00085 0.001)
(0.00025 0.00085 0.001)
(0.0003 0.00085 0.001)
(0.00035 0.00085 0.001)
(0.0004 0.00085 0.001)
(0.00045 0.00085 0.001)
(0.0005 0.00085 0.001)
(0.00055 0.00085 0.001)
(0.0006 0.00085 0.001)
(0.00065 0.00085 0.001)
(0.0007 0.00085 0.001)
(0.00075 0.00085 0.001)
(0.0008 0.00085 0.001)
(0.00085 0.00085 0.001)
(0.0009 0.00085 0.001)
(0.00095 0.00085 0.001)
(0.001 0.00085 0.001)
(0 0.0009 0.001)
(5e-05 0.0009 0.001)
(0.0001 0.0009 0.001)
(0.00015 0.0009 0.001)
(0.0002 0.0009 0.001)
(0.00025 0.0009 0.001)
(0.0003 0.0009 0.001)
(0.00035 0.0009 0.001)
(0.0004 0.0009 0.001)
(0.00045 0.0009 0.001)
(0.0005 0.0009 0.001)
(0.00055 0.0009 0.001)
(0.0006 0.0009 0.001)
(0.00065 0.0009 0.001)
(0.0007 0.0009 0.001)
(0.00075 0.0009 0.001)
(0.0008 0.0009 0.001)
(0.00085 0.0009 0.001)
(0.0009 0.0009 0.001)
(0.00095 0.0009 0.001)
(0.001 0.0009 0.001)
(0 0.00095 0.001)
(5e-05 0.00095 0.001)
(0.0001 0.00095 0.001)
(0.00015 0.00095 0.001)
(0.0002 0.00095 0.001)
(0.00025 0.00095 0.001)
(0.0003 0.00095 0.001)
(0.00035 0.00095 0.001)
(0.0004 0.00095 0.001)
(0.00045 0.00095 0.001)
(0.0005 0.00095 0.001)
(0.00055 0.00095 0.001)
(0.0006 0.00095 0.001)
(0.00065 0.00095 0.001)
(0.0007 0.00095 0.001)
(0.00075 0.00095 0.001)
(0.0008 0.00095 0.001)
(0.00085 0.00095 0.001)
(0.0009 0.00095 0.001)
(0.00095 0.00095 0.001)
(0.001 0.00095 0.001)
(0 0.001 0.001)
(5e-05 0.001 0.001)
(0.0001 0.001 0.001)
(0.00015 0.001 0.001)
(0.0002 0.001 0.001)
(0.00025 0.001 0.001)
(0.0003 0.001 0.001)
(0.00035 0.001 0.001)
(0.0004 0.001 0.001)
(0.00045 0.001 0.001)
(0.0005 0.001 0.001)
(0.00055 0.001 0.001)
(0.0006 0.001 0.001)
(0.00065 0.001 0.001)
(0.0007 0.001 0.001)
(0.00075 0.001 0.001)
(0.0008 0.001 0.001)
(0.00085 0.001 0.001)
(0.0009 0.001 0.001)
(0.00095 0.001 0.001)
(0.001 0.001 0.001)
(0 0.00105 0.001)
(5e-05 0.00105 0.001)
(0.0001 0.00105 0.001)
(0.00015 0.00105 0.001)
(0.0002 0.00105 0.001)
(0.00025 0.00105 0.001)
(0.0003 0.00105 0.001)
(0.00035 0.00105 0.001)
(0.0004 0.00105 0.001)
(0.00045 0.00105 0.001)
(0.0005 0.00105 0.001)
(0.00055 0.00105 0.001)
(0.0006 0.00105 0.001)
(0.00065 0.00105 0.001)
(0.0007 0.00105 0.001)
(0.00075 0.00105 0.001)
(0.0008 0.00105 0.001)
(0.00085 0.00105 0.001)
(0.0009 0.00105 0.001)
(0.00095 0.00105 0.001)
(0.001 0.00105 0.001)
(0 0.0011 0.001)
(5e-05 0.0011 0.001)
(0.0001 0.0011 0.001)
(0.00015 0.0011 0.001)
(0.0002 0.0011 0.001)
(0.00025 0.0011 0.001)
(0.0003 0.0011 0.001)
(0.00035 0.0011 0.001)
(0.0004 0.0011 0.001)
(0.00045 0.0011 0.001)
(0.0005 0.0011 0.001)
(0.00055 0.0011 0.001)
(0.0006 0.0011 0.001)
(0.00065 0.0011 0.001)
(0.0007 0.0011 0.001)
(0.00075 0.0011 0.001)
(0.0008 0.0011 0.001)
(0.00085 0.0011 0.001)
(0.0009 0.0011 0.001)
(0.00095 0.0011 0.001)
(0.001 0.0011 0.001)
(0 0.00115 0.001)
(5e-05 0.00115 0.001)
(0.0001 0.00115 0.001)
(0.00015 0.00115 0.001)
(0.0002 0.00115 0.001)
(0.00025 0.00115 0.001)
(0.0003 0.00115 0.001)
(0.00035 0.00115 0.001)
(0.0004 0.00115 0.001)
(0.00045 0.00115 0.001)
(0.0005 0.00115 0.001)
(0.00055 0.00115 0.001)
(0.0006 0.00115 0.001)
(0.00065 0.00115 0.001)
(0.0007 0.00115 0.001)
(0.00075 0.00115 0.001)
(0.0008 0.00115 0.001)
(0.00085 0.00115 0.001)
(0.0009 0.00115 0.001)
(0.00095 0.00115 0.001)
(0.001 0.00115 0.001)
(0 0.0012 0.001)
(5e-05 0.0012 0.001)
(0.0001 0.0012 0.001)
(0.00015 0.0012 0.001)
(0.0002 0.0012 0.001)
(0.00025 0.0012 0.001)
(0.0003 0.0012 0.001)
(0.00035 0.0012 0.001)
(0.0004 0.0012 0.001)
(0.00045 0.0012 0.001)
(0.0005 0.0012 0.001)
(0.00055 0.0012 0.001)
(0.0006 0.0012 0.001)
(0.00065 0.0012 0.001)
(0.0007 0.0012 0.001)
(0.00075 0.0012 0.001)
(0.0008 0.0012 0.001)
(0.00085 0.0012 0.001)
(0.0009 0.0012 0.001)
(0.00095 0.0012 0.001)
(0.001 0.0012 0.001)
(0 0.00125 0.001)
(5e-05 0.00125 0.001)
(0.0001 0.00125 0.001)
(0.00015 0.00125 0.001)
(0.0002 0.00125 0.001)
(0.00025 0.00125 0.001)
(0.0003 0.00125 0.001)
(0.00035 0.00125 0.001)
(0.0004 0.00125 0.001)
(0.00045 0.00125 0.001)
(0.0005 0.00125 0.001)
(0.00055 0.00125 0.001)
(0.0006 0.00125 0.001)
(0.00065 0.00125 0.001)
(0.0007 0.00125 0.001)
(0.00075 0.00125 0.001)
(0.0008 0.00125 0.001)
(0.00085 0.00125 0.001)
(0.0009 0.00125 0.001)
(0.00095 0.00125 0.001)
(0.001 0.00125 0.001)
(0 0.0013 0.001)
(5e-05 0.0013 0.001)
(0.0001 0.0013 0.001)
(0.00015 0.0013 0.001)
(0.0002 0.0013 0.001)
(0.00025 0.0013 0.001)
(0.0003 0.0013 0.001)
(0.00035 0.0013 0.001)
(0.0004 0.0013 0.001)
(0.00045 0.0013 0.001)
(0.0005 0.0013 0.001)
(0.00055 0.0013 0.001)
(0.0006 0.0013 0.001)
(0.00065 0.0013 0.001)
(0.0007 0.0013 0.001)
(0.00075 0.0013 0.001)
(0.0008 0.0013 0.001)
(0.00085 0.0013 0.001)
(0.0009 0.0013 0.001)
(0.00095 0.0013 0.001)
(0.001 0.0013 0.001)
(0 0.00135 0.001)
(5e-05 0.00135 0.001)
(0.0001 0.00135 0.001)
(0.00015 0.00135 0.001)
(0.0002 0.00135 0.001)
(0.00025 0.00135 0.001)
(0.0003 0.00135 0.001)
(0.00035 0.00135 0.001)
(0.0004 0.00135 0.001)
(0.00045 0.00135 0.001)
(0.0005 0.00135 0.001)
(0.00055 0.00135 0.001)
(0.0006 0.00135 0.001)
(0.00065 0.00135 0.001)
(0.0007 0.00135 0.001)
(0.00075 0.00135 0.001)
(0.0008 0.00135 0.001)
(0.00085 0.00135 0.001)
(0.0009 0.00135 0.001)
(0.00095 0.00135 0.001)
(0.001 0.00135 0.001)
(0 0.0014 0.001)
(5e-05 0.0014 0.001)
(0.0001 0.0014 0.001)
(0.00015 0.0014 0.001)
(0.0002 0.0014 0.001)
(0.00025 0.0014 0.001)
(0.0003 0.0014 0.001)
(0.00035 0.0014 0.001)
(0.0004 0.0014 0.001)
(0.00045 0.0014 0.001)
(0.0005 0.0014 0.001)
(0.00055 0.0014 0.001)
(0.0006 0.0014 0.001)
(0.00065 0.0014 0.001)
(0.0007 0.0014 0.001)
(0.00075 0.0014 0.001)
(0.0008 0.0014 0.001)
(0.00085 0.0014 0.001)
(0.0009 0.0014 0.001)
(0.00095 0.0014 0.001)
(0.001 0.0014 0.001)
(0 0.00145 0.001)
(5e-05 0.00145 0.001)
(0.0001 0.00145 0.001)
(0.00015 0.00145 0.001)
(0.0002 0.00145 0.001)
(0.00025 0.00145 0.001)
(0.0003 0.00145 0.001)
(0.00035 0.00145 0.001)
(0.0004 0.00145 0.001)
(0.00045 0.00145 0.001)
(0.0005 0.00145 0.001)
(0.00055 0.00145 0.001)
(0.0006 0.00145 0.001)
(0.00065 0.00145 0.001)
(0.0007 0.00145 0.001)
(0.00075 0.00145 0.001)
(0.0008 0.00145 0.001)
(0.00085 0.00145 0.001)
(0.0009 0.00145 0.001)
(0.00095 0.00145 0.001)
(0.001 0.00145 0.001)
(0 0.0015 0.001)
(5e-05 0.0015 0.001)
(0.0001 0.0015 0.001)
(0.00015 0.0015 0.001)
(0.0002 0.0015 0.001)
(0.00025 0.0015 0.001)
(0.0003 0.0015 0.001)
(0.00035 0.0015 0.001)
(0.0004 0.0015 0.001)
(0.00045 0.0015 0.001)
(0.0005 0.0015 0.001)
(0.00055 0.0015 0.001)
(0.0006 0.0015 0.001)
(0.00065 0.0015 0.001)
(0.0007 0.0015 0.001)
(0.00075 0.0015 0.001)
(0.0008 0.0015 0.001)
(0.00085 0.0015 0.001)
(0.0009 0.0015 0.001)
(0.00095 0.0015 0.001)
(0.001 0.0015 0.001)
(0 0.00155 0.001)
(5e-05 0.00155 0.001)
(0.0001 0.00155 0.001)
(0.00015 0.00155 0.001)
(0.0002 0.00155 0.001)
(0.00025 0.00155 0.001)
(0.0003 0.00155 0.001)
(0.00035 0.00155 0.001)
(0.0004 0.00155 0.001)
(0.00045 0.00155 0.001)
(0.0005 0.00155 0.001)
(0.00055 0.00155 0.001)
(0.0006 0.00155 0.001)
(0.00065 0.00155 0.001)
(0.0007 0.00155 0.001)
(0.00075 0.00155 0.001)
(0.0008 0.00155 0.001)
(0.00085 0.00155 0.001)
(0.0009 0.00155 0.001)
(0.00095 0.00155 0.001)
(0.001 0.00155 0.001)
(0 0.0016 0.001)
(5e-05 0.0016 0.001)
(0.0001 0.0016 0.001)
(0.00015 0.0016 0.001)
(0.0002 0.0016 0.001)
(0.00025 0.0016 0.001)
(0.0003 0.0016 0.001)
(0.00035 0.0016 0.001)
(0.0004 0.0016 0.001)
(0.00045 0.0016 0.001)
(0.0005 0.0016 0.001)
(0.00055 0.0016 0.001)
(0.0006 0.0016 0.001)
(0.00065 0.0016 0.001)
(0.0007 0.0016 0.001)
(0.00075 0.0016 0.001)
(0.0008 0.0016 0.001)
(0.00085 0.0016 0.001)
(0.0009 0.0016 0.001)
(0.00095 0.0016 0.001)
(0.001 0.0016 0.001)
(0 0.00165 0.001)
(5e-05 0.00165 0.001)
(0.0001 0.00165 0.001)
(0.00015 0.00165 0.001)
(0.0002 0.00165 0.001)
(0.00025 0.00165 0.001)
(0.0003 0.00165 0.001)
(0.00035 0.00165 0.001)
(0.0004 0.00165 0.001)
(0.00045 0.00165 0.001)
(0.0005 0.00165 0.001)
(0.00055 0.00165 0.001)
(0.0006 0.00165 0.001)
(0.00065 0.00165 0.001)
(0.0007 0.00165 0.001)
(0.00075 0.00165 0.001)
(0.0008 0.00165 0.001)
(0.00085 0.00165 0.001)
(0.0009 0.00165 0.001)
(0.00095 0.00165 0.001)
(0.001 0.00165 0.001)
(0 0.0017 0.001)
(5e-05 0.0017 0.001)
(0.0001 0.0017 0.001)
(0.00015 0.0017 0.001)
(0.0002 0.0017 0.001)
(0.00025 0.0017 0.001)
(0.0003 0.0017 0.001)
(0.00035 0.0017 0.001)
(0.0004 0.0017 0.001)
(0.00045 0.0017 0.001)
(0.0005 0.0017 0.001)
(0.00055 0.0017 0.001)
(0.0006 0.0017 0.001)
(0.00065 0.0017 0.001)
(0.0007 0.0017 0.001)
(0.00075 0.0017 0.001)
(0.0008 0.0017 0.001)
(0.00085 0.0017 0.001)
(0.0009 0.0017 0.001)
(0.00095 0.0017 0.001)
(0.001 0.0017 0.001)
(0 0.00175 0.001)
(5e-05 0.00175 0.001)
(0.0001 0.00175 0.001)
(0.00015 0.00175 0.001)
(0.0002 0.00175 0.001)
(0.00025 0.00175 0.001)
(0.0003 0.00175 0.001)
(0.00035 0.00175 0.001)
(0.0004 0.00175 0.001)
(0.00045 0.00175 0.001)
(0.0005 0.00175 0.001)
(0.00055 0.00175 0.001)
(0.0006 0.00175 0.001)
(0.00065 0.00175 0.001)
(0.0007 0.00175 0.001)
(0.00075 0.00175 0.001)
(0.0008 0.00175 0.001)
(0.00085 0.00175 0.001)
(0.0009 0.00175 0.001)
(0.00095 0.00175 0.001)
(0.001 0.00175 0.001)
(0 0.0018 0.001)
(5e-05 0.0018 0.001)
(0.0001 0.0018 0.001)
(0.00015 0.0018 0.001)
(0.0002 0.0018 0.001)
(0.00025 0.0018 0.001)
(0.0003 0.0018 0.001)
(0.00035 0.0018 0.001)
(0.0004 0.0018 0.001)
(0.00045 0.0018 0.001)
(0.0005 0.0018 0.001)
(0.00055 0.0018 0.001)
(0.0006 0.0018 0.001)
(0.00065 0.0018 0.001)
(0.0007 0.0018 0.001)
(0.00075 0.0018 0.001)
(0.0008 0.0018 0.001)
(0.00085 0.0018 0.001)
(0.0009 0.0018 0.001)
(0.00095 0.0018 0.001)
(0.001 0.0018 0.001)
(0 0.00185 0.001)
(5e-05 0.00185 0.001)
(0.0001 0.00185 0.001)
(0.00015 0.00185 0.001)
(0.0002 0.00185 0.001)
(0.00025 0.00185 0.001)
(0.0003 0.00185 0.001)
(0.00035 0.00185 0.001)
(0.0004 0.00185 0.001)
(0.00045 0.00185 0.001)
(0.0005 0.00185 0.001)
(0.00055 0.00185 0.001)
(0.0006 0.00185 0.001)
(0.00065 0.00185 0.001)
(0.0007 0.00185 0.001)
(0.00075 0.00185 0.001)
(0.0008 0.00185 0.001)
(0.00085 0.00185 0.001)
(0.0009 0.00185 0.001)
(0.00095 0.00185 0.001)
(0.001 0.00185 0.001)
(0 0.0019 0.001)
(5e-05 0.0019 0.001)
(0.0001 0.0019 0.001)
(0.00015 0.0019 0.001)
(0.0002 0.0019 0.001)
(0.00025 0.0019 0.001)
(0.0003 0.0019 0.001)
(0.00035 0.0019 0.001)
(0.0004 0.0019 0.001)
(0.00045 0.0019 0.001)
(0.0005 0.0019 0.001)
(0.00055 0.0019 0.001)
(0.0006 0.0019 0.001)
(0.00065 0.0019 0.001)
(0.0007 0.0019 0.001)
(0.00075 0.0019 0.001)
(0.0008 0.0019 0.001)
(0.00085 0.0019 0.001)
(0.0009 0.0019 0.001)
(0.00095 0.0019 0.001)
(0.001 0.0019 0.001)
(0 0.00195 0.001)
(5e-05 0.00195 0.001)
(0.0001 0.00195 0.001)
(0.00015 0.00195 0.001)
(0.0002 0.00195 0.001)
(0.00025 0.00195 0.001)
(0.0003 0.00195 0.001)
(0.00035 0.00195 0.001)
(0.0004 0.00195 0.001)
(0.00045 0.00195 0.001)
(0.0005 0.00195 0.001)
(0.00055 0.00195 0.001)
(0.0006 0.00195 0.001)
(0.00065 0.00195 0.001)
(0.0007 0.00195 0.001)
(0.00075 0.00195 0.001)
(0.0008 0.00195 0.001)
(0.00085 0.00195 0.001)
(0.0009 0.00195 0.001)
(0.00095 0.00195 0.001)
(0.001 0.00195 0.001)
(0 0.002 0.001)
(5e-05 0.002 0.001)
(0.0001 0.002 0.001)
(0.00015 0.002 0.001)
(0.0002 0.002 0.001)
(0.00025 0.002 0.001)
(0.0003 0.002 0.001)
(0.00035 0.002 0.001)
(0.0004 0.002 0.001)
(0.00045 0.002 0.001)
(0.0005 0.002 0.001)
(0.00055 0.002 0.001)
(0.0006 0.002 0.001)
(0.00065 0.002 0.001)
(0.0007 0.002 0.001)
(0.00075 0.002 0.001)
(0.0008 0.002 0.001)
(0.00085 0.002 0.001)
(0.0009 0.002 0.001)
(0.00095 0.002 0.001)
(0.001 0.002 0.001)
(0 0.00205 0.001)
(5e-05 0.00205 0.001)
(0.0001 0.00205 0.001)
(0.00015 0.00205 0.001)
(0.0002 0.00205 0.001)
(0.00025 0.00205 0.001)
(0.0003 0.00205 0.001)
(0.00035 0.00205 0.001)
(0.0004 0.00205 0.001)
(0.00045 0.00205 0.001)
(0.0005 0.00205 0.001)
(0.00055 0.00205 0.001)
(0.0006 0.00205 0.001)
(0.00065 0.00205 0.001)
(0.0007 0.00205 0.001)
(0.00075 0.00205 0.001)
(0.0008 0.00205 0.001)
(0.00085 0.00205 0.001)
(0.0009 0.00205 0.001)
(0.00095 0.00205 0.001)
(0.001 0.00205 0.001)
(0 0.0021 0.001)
(5e-05 0.0021 0.001)
(0.0001 0.0021 0.001)
(0.00015 0.0021 0.001)
(0.0002 0.0021 0.001)
(0.00025 0.0021 0.001)
(0.0003 0.0021 0.001)
(0.00035 0.0021 0.001)
(0.0004 0.0021 0.001)
(0.00045 0.0021 0.001)
(0.0005 0.0021 0.001)
(0.00055 0.0021 0.001)
(0.0006 0.0021 0.001)
(0.00065 0.0021 0.001)
(0.0007 0.0021 0.001)
(0.00075 0.0021 0.001)
(0.0008 0.0021 0.001)
(0.00085 0.0021 0.001)
(0.0009 0.0021 0.001)
(0.00095 0.0021 0.001)
(0.001 0.0021 0.001)
(0 0.00215 0.001)
(5e-05 0.00215 0.001)
(0.0001 0.00215 0.001)
(0.00015 0.00215 0.001)
(0.0002 0.00215 0.001)
(0.00025 0.00215 0.001)
(0.0003 0.00215 0.001)
(0.00035 0.00215 0.001)
(0.0004 0.00215 0.001)
(0.00045 0.00215 0.001)
(0.0005 0.00215 0.001)
(0.00055 0.00215 0.001)
(0.0006 0.00215 0.001)
(0.00065 0.00215 0.001)
(0.0007 0.00215 0.001)
(0.00075 0.00215 0.001)
(0.0008 0.00215 0.001)
(0.00085 0.00215 0.001)
(0.0009 0.00215 0.001)
(0.00095 0.00215 0.001)
(0.001 0.00215 0.001)
(0 0.0022 0.001)
(5e-05 0.0022 0.001)
(0.0001 0.0022 0.001)
(0.00015 0.0022 0.001)
(0.0002 0.0022 0.001)
(0.00025 0.0022 0.001)
(0.0003 0.0022 0.001)
(0.00035 0.0022 0.001)
(0.0004 0.0022 0.001)
(0.00045 0.0022 0.001)
(0.0005 0.0022 0.001)
(0.00055 0.0022 0.001)
(0.0006 0.0022 0.001)
(0.00065 0.0022 0.001)
(0.0007 0.0022 0.001)
(0.00075 0.0022 0.001)
(0.0008 0.0022 0.001)
(0.00085 0.0022 0.001)
(0.0009 0.0022 0.001)
(0.00095 0.0022 0.001)
(0.001 0.0022 0.001)
(0 0.00225 0.001)
(5e-05 0.00225 0.001)
(0.0001 0.00225 0.001)
(0.00015 0.00225 0.001)
(0.0002 0.00225 0.001)
(0.00025 0.00225 0.001)
(0.0003 0.00225 0.001)
(0.00035 0.00225 0.001)
(0.0004 0.00225 0.001)
(0.00045 0.00225 0.001)
(0.0005 0.00225 0.001)
(0.00055 0.00225 0.001)
(0.0006 0.00225 0.001)
(0.00065 0.00225 0.001)
(0.0007 0.00225 0.001)
(0.00075 0.00225 0.001)
(0.0008 0.00225 0.001)
(0.00085 0.00225 0.001)
(0.0009 0.00225 0.001)
(0.00095 0.00225 0.001)
(0.001 0.00225 0.001)
(0 0.0023 0.001)
(5e-05 0.0023 0.001)
(0.0001 0.0023 0.001)
(0.00015 0.0023 0.001)
(0.0002 0.0023 0.001)
(0.00025 0.0023 0.001)
(0.0003 0.0023 0.001)
(0.00035 0.0023 0.001)
(0.0004 0.0023 0.001)
(0.00045 0.0023 0.001)
(0.0005 0.0023 0.001)
(0.00055 0.0023 0.001)
(0.0006 0.0023 0.001)
(0.00065 0.0023 0.001)
(0.0007 0.0023 0.001)
(0.00075 0.0023 0.001)
(0.0008 0.0023 0.001)
(0.00085 0.0023 0.001)
(0.0009 0.0023 0.001)
(0.00095 0.0023 0.001)
(0.001 0.0023 0.001)
(0 0.00235 0.001)
(5e-05 0.00235 0.001)
(0.0001 0.00235 0.001)
(0.00015 0.00235 0.001)
(0.0002 0.00235 0.001)
(0.00025 0.00235 0.001)
(0.0003 0.00235 0.001)
(0.00035 0.00235 0.001)
(0.0004 0.00235 0.001)
(0.00045 0.00235 0.001)
(0.0005 0.00235 0.001)
(0.00055 0.00235 0.001)
(0.0006 0.00235 0.001)
(0.00065 0.00235 0.001)
(0.0007 0.00235 0.001)
(0.00075 0.00235 0.001)
(0.0008 0.00235 0.001)
(0.00085 0.00235 0.001)
(0.0009 0.00235 0.001)
(0.00095 0.00235 0.001)
(0.001 0.00235 0.001)
(0 0.0024 0.001)
(5e-05 0.0024 0.001)
(0.0001 0.0024 0.001)
(0.00015 0.0024 0.001)
(0.0002 0.0024 0.001)
(0.00025 0.0024 0.001)
(0.0003 0.0024 0.001)
(0.00035 0.0024 0.001)
(0.0004 0.0024 0.001)
(0.00045 0.0024 0.001)
(0.0005 0.0024 0.001)
(0.00055 0.0024 0.001)
(0.0006 0.0024 0.001)
(0.00065 0.0024 0.001)
(0.0007 0.0024 0.001)
(0.00075 0.0024 0.001)
(0.0008 0.0024 0.001)
(0.00085 0.0024 0.001)
(0.0009 0.0024 0.001)
(0.00095 0.0024 0.001)
(0.001 0.0024 0.001)
(0 0.00245 0.001)
(5e-05 0.00245 0.001)
(0.0001 0.00245 0.001)
(0.00015 0.00245 0.001)
(0.0002 0.00245 0.001)
(0.00025 0.00245 0.001)
(0.0003 0.00245 0.001)
(0.00035 0.00245 0.001)
(0.0004 0.00245 0.001)
(0.00045 0.00245 0.001)
(0.0005 0.00245 0.001)
(0.00055 0.00245 0.001)
(0.0006 0.00245 0.001)
(0.00065 0.00245 0.001)
(0.0007 0.00245 0.001)
(0.00075 0.00245 0.001)
(0.0008 0.00245 0.001)
(0.00085 0.00245 0.001)
(0.0009 0.00245 0.001)
(0.00095 0.00245 0.001)
(0.001 0.00245 0.001)
(0 0.0025 0.001)
(5e-05 0.0025 0.001)
(0.0001 0.0025 0.001)
(0.00015 0.0025 0.001)
(0.0002 0.0025 0.001)
(0.00025 0.0025 0.001)
(0.0003 0.0025 0.001)
(0.00035 0.0025 0.001)
(0.0004 0.0025 0.001)
(0.00045 0.0025 0.001)
(0.0005 0.0025 0.001)
(0.00055 0.0025 0.001)
(0.0006 0.0025 0.001)
(0.00065 0.0025 0.001)
(0.0007 0.0025 0.001)
(0.00075 0.0025 0.001)
(0.0008 0.0025 0.001)
(0.00085 0.0025 0.001)
(0.0009 0.0025 0.001)
(0.00095 0.0025 0.001)
(0.001 0.0025 0.001)
(0 0.00255 0.001)
(5e-05 0.00255 0.001)
(0.0001 0.00255 0.001)
(0.00015 0.00255 0.001)
(0.0002 0.00255 0.001)
(0.00025 0.00255 0.001)
(0.0003 0.00255 0.001)
(0.00035 0.00255 0.001)
(0.0004 0.00255 0.001)
(0.00045 0.00255 0.001)
(0.0005 0.00255 0.001)
(0.00055 0.00255 0.001)
(0.0006 0.00255 0.001)
(0.00065 0.00255 0.001)
(0.0007 0.00255 0.001)
(0.00075 0.00255 0.001)
(0.0008 0.00255 0.001)
(0.00085 0.00255 0.001)
(0.0009 0.00255 0.001)
(0.00095 0.00255 0.001)
(0.001 0.00255 0.001)
(0 0.0026 0.001)
(5e-05 0.0026 0.001)
(0.0001 0.0026 0.001)
(0.00015 0.0026 0.001)
(0.0002 0.0026 0.001)
(0.00025 0.0026 0.001)
(0.0003 0.0026 0.001)
(0.00035 0.0026 0.001)
(0.0004 0.0026 0.001)
(0.00045 0.0026 0.001)
(0.0005 0.0026 0.001)
(0.00055 0.0026 0.001)
(0.0006 0.0026 0.001)
(0.00065 0.0026 0.001)
(0.0007 0.0026 0.001)
(0.00075 0.0026 0.001)
(0.0008 0.0026 0.001)
(0.00085 0.0026 0.001)
(0.0009 0.0026 0.001)
(0.00095 0.0026 0.001)
(0.001 0.0026 0.001)
(0 0.00265 0.001)
(5e-05 0.00265 0.001)
(0.0001 0.00265 0.001)
(0.00015 0.00265 0.001)
(0.0002 0.00265 0.001)
(0.00025 0.00265 0.001)
(0.0003 0.00265 0.001)
(0.00035 0.00265 0.001)
(0.0004 0.00265 0.001)
(0.00045 0.00265 0.001)
(0.0005 0.00265 0.001)
(0.00055 0.00265 0.001)
(0.0006 0.00265 0.001)
(0.00065 0.00265 0.001)
(0.0007 0.00265 0.001)
(0.00075 0.00265 0.001)
(0.0008 0.00265 0.001)
(0.00085 0.00265 0.001)
(0.0009 0.00265 0.001)
(0.00095 0.00265 0.001)
(0.001 0.00265 0.001)
(0 0.0027 0.001)
(5e-05 0.0027 0.001)
(0.0001 0.0027 0.001)
(0.00015 0.0027 0.001)
(0.0002 0.0027 0.001)
(0.00025 0.0027 0.001)
(0.0003 0.0027 0.001)
(0.00035 0.0027 0.001)
(0.0004 0.0027 0.001)
(0.00045 0.0027 0.001)
(0.0005 0.0027 0.001)
(0.00055 0.0027 0.001)
(0.0006 0.0027 0.001)
(0.00065 0.0027 0.001)
(0.0007 0.0027 0.001)
(0.00075 0.0027 0.001)
(0.0008 0.0027 0.001)
(0.00085 0.0027 0.001)
(0.0009 0.0027 0.001)
(0.00095 0.0027 0.001)
(0.001 0.0027 0.001)
(0 0.00275 0.001)
(5e-05 0.00275 0.001)
(0.0001 0.00275 0.001)
(0.00015 0.00275 0.001)
(0.0002 0.00275 0.001)
(0.00025 0.00275 0.001)
(0.0003 0.00275 0.001)
(0.00035 0.00275 0.001)
(0.0004 0.00275 0.001)
(0.00045 0.00275 0.001)
(0.0005 0.00275 0.001)
(0.00055 0.00275 0.001)
(0.0006 0.00275 0.001)
(0.00065 0.00275 0.001)
(0.0007 0.00275 0.001)
(0.00075 0.00275 0.001)
(0.0008 0.00275 0.001)
(0.00085 0.00275 0.001)
(0.0009 0.00275 0.001)
(0.00095 0.00275 0.001)
(0.001 0.00275 0.001)
(0 0.0028 0.001)
(5e-05 0.0028 0.001)
(0.0001 0.0028 0.001)
(0.00015 0.0028 0.001)
(0.0002 0.0028 0.001)
(0.00025 0.0028 0.001)
(0.0003 0.0028 0.001)
(0.00035 0.0028 0.001)
(0.0004 0.0028 0.001)
(0.00045 0.0028 0.001)
(0.0005 0.0028 0.001)
(0.00055 0.0028 0.001)
(0.0006 0.0028 0.001)
(0.00065 0.0028 0.001)
(0.0007 0.0028 0.001)
(0.00075 0.0028 0.001)
(0.0008 0.0028 0.001)
(0.00085 0.0028 0.001)
(0.0009 0.0028 0.001)
(0.00095 0.0028 0.001)
(0.001 0.0028 0.001)
(0 0.00285 0.001)
(5e-05 0.00285 0.001)
(0.0001 0.00285 0.001)
(0.00015 0.00285 0.001)
(0.0002 0.00285 0.001)
(0.00025 0.00285 0.001)
(0.0003 0.00285 0.001)
(0.00035 0.00285 0.001)
(0.0004 0.00285 0.001)
(0.00045 0.00285 0.001)
(0.0005 0.00285 0.001)
(0.00055 0.00285 0.001)
(0.0006 0.00285 0.001)
(0.00065 0.00285 0.001)
(0.0007 0.00285 0.001)
(0.00075 0.00285 0.001)
(0.0008 0.00285 0.001)
(0.00085 0.00285 0.001)
(0.0009 0.00285 0.001)
(0.00095 0.00285 0.001)
(0.001 0.00285 0.001)
(0 0.0029 0.001)
(5e-05 0.0029 0.001)
(0.0001 0.0029 0.001)
(0.00015 0.0029 0.001)
(0.0002 0.0029 0.001)
(0.00025 0.0029 0.001)
(0.0003 0.0029 0.001)
(0.00035 0.0029 0.001)
(0.0004 0.0029 0.001)
(0.00045 0.0029 0.001)
(0.0005 0.0029 0.001)
(0.00055 0.0029 0.001)
(0.0006 0.0029 0.001)
(0.00065 0.0029 0.001)
(0.0007 0.0029 0.001)
(0.00075 0.0029 0.001)
(0.0008 0.0029 0.001)
(0.00085 0.0029 0.001)
(0.0009 0.0029 0.001)
(0.00095 0.0029 0.001)
(0.001 0.0029 0.001)
(0 0.00295 0.001)
(5e-05 0.00295 0.001)
(0.0001 0.00295 0.001)
(0.00015 0.00295 0.001)
(0.0002 0.00295 0.001)
(0.00025 0.00295 0.001)
(0.0003 0.00295 0.001)
(0.00035 0.00295 0.001)
(0.0004 0.00295 0.001)
(0.00045 0.00295 0.001)
(0.0005 0.00295 0.001)
(0.00055 0.00295 0.001)
(0.0006 0.00295 0.001)
(0.00065 0.00295 0.001)
(0.0007 0.00295 0.001)
(0.00075 0.00295 0.001)
(0.0008 0.00295 0.001)
(0.00085 0.00295 0.001)
(0.0009 0.00295 0.001)
(0.00095 0.00295 0.001)
(0.001 0.00295 0.001)
(0 0.003 0.001)
(5e-05 0.003 0.001)
(0.0001 0.003 0.001)
(0.00015 0.003 0.001)
(0.0002 0.003 0.001)
(0.00025 0.003 0.001)
(0.0003 0.003 0.001)
(0.00035 0.003 0.001)
(0.0004 0.003 0.001)
(0.00045 0.003 0.001)
(0.0005 0.003 0.001)
(0.00055 0.003 0.001)
(0.0006 0.003 0.001)
(0.00065 0.003 0.001)
(0.0007 0.003 0.001)
(0.00075 0.003 0.001)
(0.0008 0.003 0.001)
(0.00085 0.003 0.001)
(0.0009 0.003 0.001)
(0.00095 0.003 0.001)
(0.001 0.003 0.001)
(0 0.00305 0.001)
(5e-05 0.00305 0.001)
(0.0001 0.00305 0.001)
(0.00015 0.00305 0.001)
(0.0002 0.00305 0.001)
(0.00025 0.00305 0.001)
(0.0003 0.00305 0.001)
(0.00035 0.00305 0.001)
(0.0004 0.00305 0.001)
(0.00045 0.00305 0.001)
(0.0005 0.00305 0.001)
(0.00055 0.00305 0.001)
(0.0006 0.00305 0.001)
(0.00065 0.00305 0.001)
(0.0007 0.00305 0.001)
(0.00075 0.00305 0.001)
(0.0008 0.00305 0.001)
(0.00085 0.00305 0.001)
(0.0009 0.00305 0.001)
(0.00095 0.00305 0.001)
(0.001 0.00305 0.001)
(0 0.0031 0.001)
(5e-05 0.0031 0.001)
(0.0001 0.0031 0.001)
(0.00015 0.0031 0.001)
(0.0002 0.0031 0.001)
(0.00025 0.0031 0.001)
(0.0003 0.0031 0.001)
(0.00035 0.0031 0.001)
(0.0004 0.0031 0.001)
(0.00045 0.0031 0.001)
(0.0005 0.0031 0.001)
(0.00055 0.0031 0.001)
(0.0006 0.0031 0.001)
(0.00065 0.0031 0.001)
(0.0007 0.0031 0.001)
(0.00075 0.0031 0.001)
(0.0008 0.0031 0.001)
(0.00085 0.0031 0.001)
(0.0009 0.0031 0.001)
(0.00095 0.0031 0.001)
(0.001 0.0031 0.001)
(0 0.00315 0.001)
(5e-05 0.00315 0.001)
(0.0001 0.00315 0.001)
(0.00015 0.00315 0.001)
(0.0002 0.00315 0.001)
(0.00025 0.00315 0.001)
(0.0003 0.00315 0.001)
(0.00035 0.00315 0.001)
(0.0004 0.00315 0.001)
(0.00045 0.00315 0.001)
(0.0005 0.00315 0.001)
(0.00055 0.00315 0.001)
(0.0006 0.00315 0.001)
(0.00065 0.00315 0.001)
(0.0007 0.00315 0.001)
(0.00075 0.00315 0.001)
(0.0008 0.00315 0.001)
(0.00085 0.00315 0.001)
(0.0009 0.00315 0.001)
(0.00095 0.00315 0.001)
(0.001 0.00315 0.001)
(0 0.0032 0.001)
(5e-05 0.0032 0.001)
(0.0001 0.0032 0.001)
(0.00015 0.0032 0.001)
(0.0002 0.0032 0.001)
(0.00025 0.0032 0.001)
(0.0003 0.0032 0.001)
(0.00035 0.0032 0.001)
(0.0004 0.0032 0.001)
(0.00045 0.0032 0.001)
(0.0005 0.0032 0.001)
(0.00055 0.0032 0.001)
(0.0006 0.0032 0.001)
(0.00065 0.0032 0.001)
(0.0007 0.0032 0.001)
(0.00075 0.0032 0.001)
(0.0008 0.0032 0.001)
(0.00085 0.0032 0.001)
(0.0009 0.0032 0.001)
(0.00095 0.0032 0.001)
(0.001 0.0032 0.001)
(0 0.00325 0.001)
(5e-05 0.00325 0.001)
(0.0001 0.00325 0.001)
(0.00015 0.00325 0.001)
(0.0002 0.00325 0.001)
(0.00025 0.00325 0.001)
(0.0003 0.00325 0.001)
(0.00035 0.00325 0.001)
(0.0004 0.00325 0.001)
(0.00045 0.00325 0.001)
(0.0005 0.00325 0.001)
(0.00055 0.00325 0.001)
(0.0006 0.00325 0.001)
(0.00065 0.00325 0.001)
(0.0007 0.00325 0.001)
(0.00075 0.00325 0.001)
(0.0008 0.00325 0.001)
(0.00085 0.00325 0.001)
(0.0009 0.00325 0.001)
(0.00095 0.00325 0.001)
(0.001 0.00325 0.001)
(0 0.0033 0.001)
(5e-05 0.0033 0.001)
(0.0001 0.0033 0.001)
(0.00015 0.0033 0.001)
(0.0002 0.0033 0.001)
(0.00025 0.0033 0.001)
(0.0003 0.0033 0.001)
(0.00035 0.0033 0.001)
(0.0004 0.0033 0.001)
(0.00045 0.0033 0.001)
(0.0005 0.0033 0.001)
(0.00055 0.0033 0.001)
(0.0006 0.0033 0.001)
(0.00065 0.0033 0.001)
(0.0007 0.0033 0.001)
(0.00075 0.0033 0.001)
(0.0008 0.0033 0.001)
(0.00085 0.0033 0.001)
(0.0009 0.0033 0.001)
(0.00095 0.0033 0.001)
(0.001 0.0033 0.001)
(0 0.00335 0.001)
(5e-05 0.00335 0.001)
(0.0001 0.00335 0.001)
(0.00015 0.00335 0.001)
(0.0002 0.00335 0.001)
(0.00025 0.00335 0.001)
(0.0003 0.00335 0.001)
(0.00035 0.00335 0.001)
(0.0004 0.00335 0.001)
(0.00045 0.00335 0.001)
(0.0005 0.00335 0.001)
(0.00055 0.00335 0.001)
(0.0006 0.00335 0.001)
(0.00065 0.00335 0.001)
(0.0007 0.00335 0.001)
(0.00075 0.00335 0.001)
(0.0008 0.00335 0.001)
(0.00085 0.00335 0.001)
(0.0009 0.00335 0.001)
(0.00095 0.00335 0.001)
(0.001 0.00335 0.001)
(0 0.0034 0.001)
(5e-05 0.0034 0.001)
(0.0001 0.0034 0.001)
(0.00015 0.0034 0.001)
(0.0002 0.0034 0.001)
(0.00025 0.0034 0.001)
(0.0003 0.0034 0.001)
(0.00035 0.0034 0.001)
(0.0004 0.0034 0.001)
(0.00045 0.0034 0.001)
(0.0005 0.0034 0.001)
(0.00055 0.0034 0.001)
(0.0006 0.0034 0.001)
(0.00065 0.0034 0.001)
(0.0007 0.0034 0.001)
(0.00075 0.0034 0.001)
(0.0008 0.0034 0.001)
(0.00085 0.0034 0.001)
(0.0009 0.0034 0.001)
(0.00095 0.0034 0.001)
(0.001 0.0034 0.001)
(0 0.00345 0.001)
(5e-05 0.00345 0.001)
(0.0001 0.00345 0.001)
(0.00015 0.00345 0.001)
(0.0002 0.00345 0.001)
(0.00025 0.00345 0.001)
(0.0003 0.00345 0.001)
(0.00035 0.00345 0.001)
(0.0004 0.00345 0.001)
(0.00045 0.00345 0.001)
(0.0005 0.00345 0.001)
(0.00055 0.00345 0.001)
(0.0006 0.00345 0.001)
(0.00065 0.00345 0.001)
(0.0007 0.00345 0.001)
(0.00075 0.00345 0.001)
(0.0008 0.00345 0.001)
(0.00085 0.00345 0.001)
(0.0009 0.00345 0.001)
(0.00095 0.00345 0.001)
(0.001 0.00345 0.001)
(0 0.0035 0.001)
(5e-05 0.0035 0.001)
(0.0001 0.0035 0.001)
(0.00015 0.0035 0.001)
(0.0002 0.0035 0.001)
(0.00025 0.0035 0.001)
(0.0003 0.0035 0.001)
(0.00035 0.0035 0.001)
(0.0004 0.0035 0.001)
(0.00045 0.0035 0.001)
(0.0005 0.0035 0.001)
(0.00055 0.0035 0.001)
(0.0006 0.0035 0.001)
(0.00065 0.0035 0.001)
(0.0007 0.0035 0.001)
(0.00075 0.0035 0.001)
(0.0008 0.0035 0.001)
(0.00085 0.0035 0.001)
(0.0009 0.0035 0.001)
(0.00095 0.0035 0.001)
(0.001 0.0035 0.001)
(0 0.00355 0.001)
(5e-05 0.00355 0.001)
(0.0001 0.00355 0.001)
(0.00015 0.00355 0.001)
(0.0002 0.00355 0.001)
(0.00025 0.00355 0.001)
(0.0003 0.00355 0.001)
(0.00035 0.00355 0.001)
(0.0004 0.00355 0.001)
(0.00045 0.00355 0.001)
(0.0005 0.00355 0.001)
(0.00055 0.00355 0.001)
(0.0006 0.00355 0.001)
(0.00065 0.00355 0.001)
(0.0007 0.00355 0.001)
(0.00075 0.00355 0.001)
(0.0008 0.00355 0.001)
(0.00085 0.00355 0.001)
(0.0009 0.00355 0.001)
(0.00095 0.00355 0.001)
(0.001 0.00355 0.001)
(0 0.0036 0.001)
(5e-05 0.0036 0.001)
(0.0001 0.0036 0.001)
(0.00015 0.0036 0.001)
(0.0002 0.0036 0.001)
(0.00025 0.0036 0.001)
(0.0003 0.0036 0.001)
(0.00035 0.0036 0.001)
(0.0004 0.0036 0.001)
(0.00045 0.0036 0.001)
(0.0005 0.0036 0.001)
(0.00055 0.0036 0.001)
(0.0006 0.0036 0.001)
(0.00065 0.0036 0.001)
(0.0007 0.0036 0.001)
(0.00075 0.0036 0.001)
(0.0008 0.0036 0.001)
(0.00085 0.0036 0.001)
(0.0009 0.0036 0.001)
(0.00095 0.0036 0.001)
(0.001 0.0036 0.001)
(0 0.00365 0.001)
(5e-05 0.00365 0.001)
(0.0001 0.00365 0.001)
(0.00015 0.00365 0.001)
(0.0002 0.00365 0.001)
(0.00025 0.00365 0.001)
(0.0003 0.00365 0.001)
(0.00035 0.00365 0.001)
(0.0004 0.00365 0.001)
(0.00045 0.00365 0.001)
(0.0005 0.00365 0.001)
(0.00055 0.00365 0.001)
(0.0006 0.00365 0.001)
(0.00065 0.00365 0.001)
(0.0007 0.00365 0.001)
(0.00075 0.00365 0.001)
(0.0008 0.00365 0.001)
(0.00085 0.00365 0.001)
(0.0009 0.00365 0.001)
(0.00095 0.00365 0.001)
(0.001 0.00365 0.001)
(0 0.0037 0.001)
(5e-05 0.0037 0.001)
(0.0001 0.0037 0.001)
(0.00015 0.0037 0.001)
(0.0002 0.0037 0.001)
(0.00025 0.0037 0.001)
(0.0003 0.0037 0.001)
(0.00035 0.0037 0.001)
(0.0004 0.0037 0.001)
(0.00045 0.0037 0.001)
(0.0005 0.0037 0.001)
(0.00055 0.0037 0.001)
(0.0006 0.0037 0.001)
(0.00065 0.0037 0.001)
(0.0007 0.0037 0.001)
(0.00075 0.0037 0.001)
(0.0008 0.0037 0.001)
(0.00085 0.0037 0.001)
(0.0009 0.0037 0.001)
(0.00095 0.0037 0.001)
(0.001 0.0037 0.001)
(0 0.00375 0.001)
(5e-05 0.00375 0.001)
(0.0001 0.00375 0.001)
(0.00015 0.00375 0.001)
(0.0002 0.00375 0.001)
(0.00025 0.00375 0.001)
(0.0003 0.00375 0.001)
(0.00035 0.00375 0.001)
(0.0004 0.00375 0.001)
(0.00045 0.00375 0.001)
(0.0005 0.00375 0.001)
(0.00055 0.00375 0.001)
(0.0006 0.00375 0.001)
(0.00065 0.00375 0.001)
(0.0007 0.00375 0.001)
(0.00075 0.00375 0.001)
(0.0008 0.00375 0.001)
(0.00085 0.00375 0.001)
(0.0009 0.00375 0.001)
(0.00095 0.00375 0.001)
(0.001 0.00375 0.001)
(0 0.0038 0.001)
(5e-05 0.0038 0.001)
(0.0001 0.0038 0.001)
(0.00015 0.0038 0.001)
(0.0002 0.0038 0.001)
(0.00025 0.0038 0.001)
(0.0003 0.0038 0.001)
(0.00035 0.0038 0.001)
(0.0004 0.0038 0.001)
(0.00045 0.0038 0.001)
(0.0005 0.0038 0.001)
(0.00055 0.0038 0.001)
(0.0006 0.0038 0.001)
(0.00065 0.0038 0.001)
(0.0007 0.0038 0.001)
(0.00075 0.0038 0.001)
(0.0008 0.0038 0.001)
(0.00085 0.0038 0.001)
(0.0009 0.0038 0.001)
(0.00095 0.0038 0.001)
(0.001 0.0038 0.001)
(0 0.00385 0.001)
(5e-05 0.00385 0.001)
(0.0001 0.00385 0.001)
(0.00015 0.00385 0.001)
(0.0002 0.00385 0.001)
(0.00025 0.00385 0.001)
(0.0003 0.00385 0.001)
(0.00035 0.00385 0.001)
(0.0004 0.00385 0.001)
(0.00045 0.00385 0.001)
(0.0005 0.00385 0.001)
(0.00055 0.00385 0.001)
(0.0006 0.00385 0.001)
(0.00065 0.00385 0.001)
(0.0007 0.00385 0.001)
(0.00075 0.00385 0.001)
(0.0008 0.00385 0.001)
(0.00085 0.00385 0.001)
(0.0009 0.00385 0.001)
(0.00095 0.00385 0.001)
(0.001 0.00385 0.001)
(0 0.0039 0.001)
(5e-05 0.0039 0.001)
(0.0001 0.0039 0.001)
(0.00015 0.0039 0.001)
(0.0002 0.0039 0.001)
(0.00025 0.0039 0.001)
(0.0003 0.0039 0.001)
(0.00035 0.0039 0.001)
(0.0004 0.0039 0.001)
(0.00045 0.0039 0.001)
(0.0005 0.0039 0.001)
(0.00055 0.0039 0.001)
(0.0006 0.0039 0.001)
(0.00065 0.0039 0.001)
(0.0007 0.0039 0.001)
(0.00075 0.0039 0.001)
(0.0008 0.0039 0.001)
(0.00085 0.0039 0.001)
(0.0009 0.0039 0.001)
(0.00095 0.0039 0.001)
(0.001 0.0039 0.001)
(0 0.00395 0.001)
(5e-05 0.00395 0.001)
(0.0001 0.00395 0.001)
(0.00015 0.00395 0.001)
(0.0002 0.00395 0.001)
(0.00025 0.00395 0.001)
(0.0003 0.00395 0.001)
(0.00035 0.00395 0.001)
(0.0004 0.00395 0.001)
(0.00045 0.00395 0.001)
(0.0005 0.00395 0.001)
(0.00055 0.00395 0.001)
(0.0006 0.00395 0.001)
(0.00065 0.00395 0.001)
(0.0007 0.00395 0.001)
(0.00075 0.00395 0.001)
(0.0008 0.00395 0.001)
(0.00085 0.00395 0.001)
(0.0009 0.00395 0.001)
(0.00095 0.00395 0.001)
(0.001 0.00395 0.001)
(0 0.004 0.001)
(5e-05 0.004 0.001)
(0.0001 0.004 0.001)
(0.00015 0.004 0.001)
(0.0002 0.004 0.001)
(0.00025 0.004 0.001)
(0.0003 0.004 0.001)
(0.00035 0.004 0.001)
(0.0004 0.004 0.001)
(0.00045 0.004 0.001)
(0.0005 0.004 0.001)
(0.00055 0.004 0.001)
(0.0006 0.004 0.001)
(0.00065 0.004 0.001)
(0.0007 0.004 0.001)
(0.00075 0.004 0.001)
(0.0008 0.004 0.001)
(0.00085 0.004 0.001)
(0.0009 0.004 0.001)
(0.00095 0.004 0.001)
(0.001 0.004 0.001)
(0 0.00405 0.001)
(5e-05 0.00405 0.001)
(0.0001 0.00405 0.001)
(0.00015 0.00405 0.001)
(0.0002 0.00405 0.001)
(0.00025 0.00405 0.001)
(0.0003 0.00405 0.001)
(0.00035 0.00405 0.001)
(0.0004 0.00405 0.001)
(0.00045 0.00405 0.001)
(0.0005 0.00405 0.001)
(0.00055 0.00405 0.001)
(0.0006 0.00405 0.001)
(0.00065 0.00405 0.001)
(0.0007 0.00405 0.001)
(0.00075 0.00405 0.001)
(0.0008 0.00405 0.001)
(0.00085 0.00405 0.001)
(0.0009 0.00405 0.001)
(0.00095 0.00405 0.001)
(0.001 0.00405 0.001)
(0 0.0041 0.001)
(5e-05 0.0041 0.001)
(0.0001 0.0041 0.001)
(0.00015 0.0041 0.001)
(0.0002 0.0041 0.001)
(0.00025 0.0041 0.001)
(0.0003 0.0041 0.001)
(0.00035 0.0041 0.001)
(0.0004 0.0041 0.001)
(0.00045 0.0041 0.001)
(0.0005 0.0041 0.001)
(0.00055 0.0041 0.001)
(0.0006 0.0041 0.001)
(0.00065 0.0041 0.001)
(0.0007 0.0041 0.001)
(0.00075 0.0041 0.001)
(0.0008 0.0041 0.001)
(0.00085 0.0041 0.001)
(0.0009 0.0041 0.001)
(0.00095 0.0041 0.001)
(0.001 0.0041 0.001)
(0 0.00415 0.001)
(5e-05 0.00415 0.001)
(0.0001 0.00415 0.001)
(0.00015 0.00415 0.001)
(0.0002 0.00415 0.001)
(0.00025 0.00415 0.001)
(0.0003 0.00415 0.001)
(0.00035 0.00415 0.001)
(0.0004 0.00415 0.001)
(0.00045 0.00415 0.001)
(0.0005 0.00415 0.001)
(0.00055 0.00415 0.001)
(0.0006 0.00415 0.001)
(0.00065 0.00415 0.001)
(0.0007 0.00415 0.001)
(0.00075 0.00415 0.001)
(0.0008 0.00415 0.001)
(0.00085 0.00415 0.001)
(0.0009 0.00415 0.001)
(0.00095 0.00415 0.001)
(0.001 0.00415 0.001)
(0 0.0042 0.001)
(5e-05 0.0042 0.001)
(0.0001 0.0042 0.001)
(0.00015 0.0042 0.001)
(0.0002 0.0042 0.001)
(0.00025 0.0042 0.001)
(0.0003 0.0042 0.001)
(0.00035 0.0042 0.001)
(0.0004 0.0042 0.001)
(0.00045 0.0042 0.001)
(0.0005 0.0042 0.001)
(0.00055 0.0042 0.001)
(0.0006 0.0042 0.001)
(0.00065 0.0042 0.001)
(0.0007 0.0042 0.001)
(0.00075 0.0042 0.001)
(0.0008 0.0042 0.001)
(0.00085 0.0042 0.001)
(0.0009 0.0042 0.001)
(0.00095 0.0042 0.001)
(0.001 0.0042 0.001)
(0 0.00425 0.001)
(5e-05 0.00425 0.001)
(0.0001 0.00425 0.001)
(0.00015 0.00425 0.001)
(0.0002 0.00425 0.001)
(0.00025 0.00425 0.001)
(0.0003 0.00425 0.001)
(0.00035 0.00425 0.001)
(0.0004 0.00425 0.001)
(0.00045 0.00425 0.001)
(0.0005 0.00425 0.001)
(0.00055 0.00425 0.001)
(0.0006 0.00425 0.001)
(0.00065 0.00425 0.001)
(0.0007 0.00425 0.001)
(0.00075 0.00425 0.001)
(0.0008 0.00425 0.001)
(0.00085 0.00425 0.001)
(0.0009 0.00425 0.001)
(0.00095 0.00425 0.001)
(0.001 0.00425 0.001)
(0 0.0043 0.001)
(5e-05 0.0043 0.001)
(0.0001 0.0043 0.001)
(0.00015 0.0043 0.001)
(0.0002 0.0043 0.001)
(0.00025 0.0043 0.001)
(0.0003 0.0043 0.001)
(0.00035 0.0043 0.001)
(0.0004 0.0043 0.001)
(0.00045 0.0043 0.001)
(0.0005 0.0043 0.001)
(0.00055 0.0043 0.001)
(0.0006 0.0043 0.001)
(0.00065 0.0043 0.001)
(0.0007 0.0043 0.001)
(0.00075 0.0043 0.001)
(0.0008 0.0043 0.001)
(0.00085 0.0043 0.001)
(0.0009 0.0043 0.001)
(0.00095 0.0043 0.001)
(0.001 0.0043 0.001)
(0 0.00435 0.001)
(5e-05 0.00435 0.001)
(0.0001 0.00435 0.001)
(0.00015 0.00435 0.001)
(0.0002 0.00435 0.001)
(0.00025 0.00435 0.001)
(0.0003 0.00435 0.001)
(0.00035 0.00435 0.001)
(0.0004 0.00435 0.001)
(0.00045 0.00435 0.001)
(0.0005 0.00435 0.001)
(0.00055 0.00435 0.001)
(0.0006 0.00435 0.001)
(0.00065 0.00435 0.001)
(0.0007 0.00435 0.001)
(0.00075 0.00435 0.001)
(0.0008 0.00435 0.001)
(0.00085 0.00435 0.001)
(0.0009 0.00435 0.001)
(0.00095 0.00435 0.001)
(0.001 0.00435 0.001)
(0 0.0044 0.001)
(5e-05 0.0044 0.001)
(0.0001 0.0044 0.001)
(0.00015 0.0044 0.001)
(0.0002 0.0044 0.001)
(0.00025 0.0044 0.001)
(0.0003 0.0044 0.001)
(0.00035 0.0044 0.001)
(0.0004 0.0044 0.001)
(0.00045 0.0044 0.001)
(0.0005 0.0044 0.001)
(0.00055 0.0044 0.001)
(0.0006 0.0044 0.001)
(0.00065 0.0044 0.001)
(0.0007 0.0044 0.001)
(0.00075 0.0044 0.001)
(0.0008 0.0044 0.001)
(0.00085 0.0044 0.001)
(0.0009 0.0044 0.001)
(0.00095 0.0044 0.001)
(0.001 0.0044 0.001)
(0 0.00445 0.001)
(5e-05 0.00445 0.001)
(0.0001 0.00445 0.001)
(0.00015 0.00445 0.001)
(0.0002 0.00445 0.001)
(0.00025 0.00445 0.001)
(0.0003 0.00445 0.001)
(0.00035 0.00445 0.001)
(0.0004 0.00445 0.001)
(0.00045 0.00445 0.001)
(0.0005 0.00445 0.001)
(0.00055 0.00445 0.001)
(0.0006 0.00445 0.001)
(0.00065 0.00445 0.001)
(0.0007 0.00445 0.001)
(0.00075 0.00445 0.001)
(0.0008 0.00445 0.001)
(0.00085 0.00445 0.001)
(0.0009 0.00445 0.001)
(0.00095 0.00445 0.001)
(0.001 0.00445 0.001)
(0 0.0045 0.001)
(5e-05 0.0045 0.001)
(0.0001 0.0045 0.001)
(0.00015 0.0045 0.001)
(0.0002 0.0045 0.001)
(0.00025 0.0045 0.001)
(0.0003 0.0045 0.001)
(0.00035 0.0045 0.001)
(0.0004 0.0045 0.001)
(0.00045 0.0045 0.001)
(0.0005 0.0045 0.001)
(0.00055 0.0045 0.001)
(0.0006 0.0045 0.001)
(0.00065 0.0045 0.001)
(0.0007 0.0045 0.001)
(0.00075 0.0045 0.001)
(0.0008 0.0045 0.001)
(0.00085 0.0045 0.001)
(0.0009 0.0045 0.001)
(0.00095 0.0045 0.001)
(0.001 0.0045 0.001)
(0 0.00455 0.001)
(5e-05 0.00455 0.001)
(0.0001 0.00455 0.001)
(0.00015 0.00455 0.001)
(0.0002 0.00455 0.001)
(0.00025 0.00455 0.001)
(0.0003 0.00455 0.001)
(0.00035 0.00455 0.001)
(0.0004 0.00455 0.001)
(0.00045 0.00455 0.001)
(0.0005 0.00455 0.001)
(0.00055 0.00455 0.001)
(0.0006 0.00455 0.001)
(0.00065 0.00455 0.001)
(0.0007 0.00455 0.001)
(0.00075 0.00455 0.001)
(0.0008 0.00455 0.001)
(0.00085 0.00455 0.001)
(0.0009 0.00455 0.001)
(0.00095 0.00455 0.001)
(0.001 0.00455 0.001)
(0 0.0046 0.001)
(5e-05 0.0046 0.001)
(0.0001 0.0046 0.001)
(0.00015 0.0046 0.001)
(0.0002 0.0046 0.001)
(0.00025 0.0046 0.001)
(0.0003 0.0046 0.001)
(0.00035 0.0046 0.001)
(0.0004 0.0046 0.001)
(0.00045 0.0046 0.001)
(0.0005 0.0046 0.001)
(0.00055 0.0046 0.001)
(0.0006 0.0046 0.001)
(0.00065 0.0046 0.001)
(0.0007 0.0046 0.001)
(0.00075 0.0046 0.001)
(0.0008 0.0046 0.001)
(0.00085 0.0046 0.001)
(0.0009 0.0046 0.001)
(0.00095 0.0046 0.001)
(0.001 0.0046 0.001)
(0 0.00465 0.001)
(5e-05 0.00465 0.001)
(0.0001 0.00465 0.001)
(0.00015 0.00465 0.001)
(0.0002 0.00465 0.001)
(0.00025 0.00465 0.001)
(0.0003 0.00465 0.001)
(0.00035 0.00465 0.001)
(0.0004 0.00465 0.001)
(0.00045 0.00465 0.001)
(0.0005 0.00465 0.001)
(0.00055 0.00465 0.001)
(0.0006 0.00465 0.001)
(0.00065 0.00465 0.001)
(0.0007 0.00465 0.001)
(0.00075 0.00465 0.001)
(0.0008 0.00465 0.001)
(0.00085 0.00465 0.001)
(0.0009 0.00465 0.001)
(0.00095 0.00465 0.001)
(0.001 0.00465 0.001)
(0 0.0047 0.001)
(5e-05 0.0047 0.001)
(0.0001 0.0047 0.001)
(0.00015 0.0047 0.001)
(0.0002 0.0047 0.001)
(0.00025 0.0047 0.001)
(0.0003 0.0047 0.001)
(0.00035 0.0047 0.001)
(0.0004 0.0047 0.001)
(0.00045 0.0047 0.001)
(0.0005 0.0047 0.001)
(0.00055 0.0047 0.001)
(0.0006 0.0047 0.001)
(0.00065 0.0047 0.001)
(0.0007 0.0047 0.001)
(0.00075 0.0047 0.001)
(0.0008 0.0047 0.001)
(0.00085 0.0047 0.001)
(0.0009 0.0047 0.001)
(0.00095 0.0047 0.001)
(0.001 0.0047 0.001)
(0 0.00475 0.001)
(5e-05 0.00475 0.001)
(0.0001 0.00475 0.001)
(0.00015 0.00475 0.001)
(0.0002 0.00475 0.001)
(0.00025 0.00475 0.001)
(0.0003 0.00475 0.001)
(0.00035 0.00475 0.001)
(0.0004 0.00475 0.001)
(0.00045 0.00475 0.001)
(0.0005 0.00475 0.001)
(0.00055 0.00475 0.001)
(0.0006 0.00475 0.001)
(0.00065 0.00475 0.001)
(0.0007 0.00475 0.001)
(0.00075 0.00475 0.001)
(0.0008 0.00475 0.001)
(0.00085 0.00475 0.001)
(0.0009 0.00475 0.001)
(0.00095 0.00475 0.001)
(0.001 0.00475 0.001)
(0 0.0048 0.001)
(5e-05 0.0048 0.001)
(0.0001 0.0048 0.001)
(0.00015 0.0048 0.001)
(0.0002 0.0048 0.001)
(0.00025 0.0048 0.001)
(0.0003 0.0048 0.001)
(0.00035 0.0048 0.001)
(0.0004 0.0048 0.001)
(0.00045 0.0048 0.001)
(0.0005 0.0048 0.001)
(0.00055 0.0048 0.001)
(0.0006 0.0048 0.001)
(0.00065 0.0048 0.001)
(0.0007 0.0048 0.001)
(0.00075 0.0048 0.001)
(0.0008 0.0048 0.001)
(0.00085 0.0048 0.001)
(0.0009 0.0048 0.001)
(0.00095 0.0048 0.001)
(0.001 0.0048 0.001)
(0 0.00485 0.001)
(5e-05 0.00485 0.001)
(0.0001 0.00485 0.001)
(0.00015 0.00485 0.001)
(0.0002 0.00485 0.001)
(0.00025 0.00485 0.001)
(0.0003 0.00485 0.001)
(0.00035 0.00485 0.001)
(0.0004 0.00485 0.001)
(0.00045 0.00485 0.001)
(0.0005 0.00485 0.001)
(0.00055 0.00485 0.001)
(0.0006 0.00485 0.001)
(0.00065 0.00485 0.001)
(0.0007 0.00485 0.001)
(0.00075 0.00485 0.001)
(0.0008 0.00485 0.001)
(0.00085 0.00485 0.001)
(0.0009 0.00485 0.001)
(0.00095 0.00485 0.001)
(0.001 0.00485 0.001)
(0 0.0049 0.001)
(5e-05 0.0049 0.001)
(0.0001 0.0049 0.001)
(0.00015 0.0049 0.001)
(0.0002 0.0049 0.001)
(0.00025 0.0049 0.001)
(0.0003 0.0049 0.001)
(0.00035 0.0049 0.001)
(0.0004 0.0049 0.001)
(0.00045 0.0049 0.001)
(0.0005 0.0049 0.001)
(0.00055 0.0049 0.001)
(0.0006 0.0049 0.001)
(0.00065 0.0049 0.001)
(0.0007 0.0049 0.001)
(0.00075 0.0049 0.001)
(0.0008 0.0049 0.001)
(0.00085 0.0049 0.001)
(0.0009 0.0049 0.001)
(0.00095 0.0049 0.001)
(0.001 0.0049 0.001)
(0 0.00495 0.001)
(5e-05 0.00495 0.001)
(0.0001 0.00495 0.001)
(0.00015 0.00495 0.001)
(0.0002 0.00495 0.001)
(0.00025 0.00495 0.001)
(0.0003 0.00495 0.001)
(0.00035 0.00495 0.001)
(0.0004 0.00495 0.001)
(0.00045 0.00495 0.001)
(0.0005 0.00495 0.001)
(0.00055 0.00495 0.001)
(0.0006 0.00495 0.001)
(0.00065 0.00495 0.001)
(0.0007 0.00495 0.001)
(0.00075 0.00495 0.001)
(0.0008 0.00495 0.001)
(0.00085 0.00495 0.001)
(0.0009 0.00495 0.001)
(0.00095 0.00495 0.001)
(0.001 0.00495 0.001)
(0 0.005 0.001)
(5e-05 0.005 0.001)
(0.0001 0.005 0.001)
(0.00015 0.005 0.001)
(0.0002 0.005 0.001)
(0.00025 0.005 0.001)
(0.0003 0.005 0.001)
(0.00035 0.005 0.001)
(0.0004 0.005 0.001)
(0.00045 0.005 0.001)
(0.0005 0.005 0.001)
(0.00055 0.005 0.001)
(0.0006 0.005 0.001)
(0.00065 0.005 0.001)
(0.0007 0.005 0.001)
(0.00075 0.005 0.001)
(0.0008 0.005 0.001)
(0.00085 0.005 0.001)
(0.0009 0.005 0.001)
(0.00095 0.005 0.001)
(0.001 0.005 0.001)
(0 0.00505 0.001)
(5e-05 0.00505 0.001)
(0.0001 0.00505 0.001)
(0.00015 0.00505 0.001)
(0.0002 0.00505 0.001)
(0.00025 0.00505 0.001)
(0.0003 0.00505 0.001)
(0.00035 0.00505 0.001)
(0.0004 0.00505 0.001)
(0.00045 0.00505 0.001)
(0.0005 0.00505 0.001)
(0.00055 0.00505 0.001)
(0.0006 0.00505 0.001)
(0.00065 0.00505 0.001)
(0.0007 0.00505 0.001)
(0.00075 0.00505 0.001)
(0.0008 0.00505 0.001)
(0.00085 0.00505 0.001)
(0.0009 0.00505 0.001)
(0.00095 0.00505 0.001)
(0.001 0.00505 0.001)
(0 0.0051 0.001)
(5e-05 0.0051 0.001)
(0.0001 0.0051 0.001)
(0.00015 0.0051 0.001)
(0.0002 0.0051 0.001)
(0.00025 0.0051 0.001)
(0.0003 0.0051 0.001)
(0.00035 0.0051 0.001)
(0.0004 0.0051 0.001)
(0.00045 0.0051 0.001)
(0.0005 0.0051 0.001)
(0.00055 0.0051 0.001)
(0.0006 0.0051 0.001)
(0.00065 0.0051 0.001)
(0.0007 0.0051 0.001)
(0.00075 0.0051 0.001)
(0.0008 0.0051 0.001)
(0.00085 0.0051 0.001)
(0.0009 0.0051 0.001)
(0.00095 0.0051 0.001)
(0.001 0.0051 0.001)
(0 0.00515 0.001)
(5e-05 0.00515 0.001)
(0.0001 0.00515 0.001)
(0.00015 0.00515 0.001)
(0.0002 0.00515 0.001)
(0.00025 0.00515 0.001)
(0.0003 0.00515 0.001)
(0.00035 0.00515 0.001)
(0.0004 0.00515 0.001)
(0.00045 0.00515 0.001)
(0.0005 0.00515 0.001)
(0.00055 0.00515 0.001)
(0.0006 0.00515 0.001)
(0.00065 0.00515 0.001)
(0.0007 0.00515 0.001)
(0.00075 0.00515 0.001)
(0.0008 0.00515 0.001)
(0.00085 0.00515 0.001)
(0.0009 0.00515 0.001)
(0.00095 0.00515 0.001)
(0.001 0.00515 0.001)
(0 0.0052 0.001)
(5e-05 0.0052 0.001)
(0.0001 0.0052 0.001)
(0.00015 0.0052 0.001)
(0.0002 0.0052 0.001)
(0.00025 0.0052 0.001)
(0.0003 0.0052 0.001)
(0.00035 0.0052 0.001)
(0.0004 0.0052 0.001)
(0.00045 0.0052 0.001)
(0.0005 0.0052 0.001)
(0.00055 0.0052 0.001)
(0.0006 0.0052 0.001)
(0.00065 0.0052 0.001)
(0.0007 0.0052 0.001)
(0.00075 0.0052 0.001)
(0.0008 0.0052 0.001)
(0.00085 0.0052 0.001)
(0.0009 0.0052 0.001)
(0.00095 0.0052 0.001)
(0.001 0.0052 0.001)
(0 0.00525 0.001)
(5e-05 0.00525 0.001)
(0.0001 0.00525 0.001)
(0.00015 0.00525 0.001)
(0.0002 0.00525 0.001)
(0.00025 0.00525 0.001)
(0.0003 0.00525 0.001)
(0.00035 0.00525 0.001)
(0.0004 0.00525 0.001)
(0.00045 0.00525 0.001)
(0.0005 0.00525 0.001)
(0.00055 0.00525 0.001)
(0.0006 0.00525 0.001)
(0.00065 0.00525 0.001)
(0.0007 0.00525 0.001)
(0.00075 0.00525 0.001)
(0.0008 0.00525 0.001)
(0.00085 0.00525 0.001)
(0.0009 0.00525 0.001)
(0.00095 0.00525 0.001)
(0.001 0.00525 0.001)
(0 0.0053 0.001)
(5e-05 0.0053 0.001)
(0.0001 0.0053 0.001)
(0.00015 0.0053 0.001)
(0.0002 0.0053 0.001)
(0.00025 0.0053 0.001)
(0.0003 0.0053 0.001)
(0.00035 0.0053 0.001)
(0.0004 0.0053 0.001)
(0.00045 0.0053 0.001)
(0.0005 0.0053 0.001)
(0.00055 0.0053 0.001)
(0.0006 0.0053 0.001)
(0.00065 0.0053 0.001)
(0.0007 0.0053 0.001)
(0.00075 0.0053 0.001)
(0.0008 0.0053 0.001)
(0.00085 0.0053 0.001)
(0.0009 0.0053 0.001)
(0.00095 0.0053 0.001)
(0.001 0.0053 0.001)
(0 0.00535 0.001)
(5e-05 0.00535 0.001)
(0.0001 0.00535 0.001)
(0.00015 0.00535 0.001)
(0.0002 0.00535 0.001)
(0.00025 0.00535 0.001)
(0.0003 0.00535 0.001)
(0.00035 0.00535 0.001)
(0.0004 0.00535 0.001)
(0.00045 0.00535 0.001)
(0.0005 0.00535 0.001)
(0.00055 0.00535 0.001)
(0.0006 0.00535 0.001)
(0.00065 0.00535 0.001)
(0.0007 0.00535 0.001)
(0.00075 0.00535 0.001)
(0.0008 0.00535 0.001)
(0.00085 0.00535 0.001)
(0.0009 0.00535 0.001)
(0.00095 0.00535 0.001)
(0.001 0.00535 0.001)
(0 0.0054 0.001)
(5e-05 0.0054 0.001)
(0.0001 0.0054 0.001)
(0.00015 0.0054 0.001)
(0.0002 0.0054 0.001)
(0.00025 0.0054 0.001)
(0.0003 0.0054 0.001)
(0.00035 0.0054 0.001)
(0.0004 0.0054 0.001)
(0.00045 0.0054 0.001)
(0.0005 0.0054 0.001)
(0.00055 0.0054 0.001)
(0.0006 0.0054 0.001)
(0.00065 0.0054 0.001)
(0.0007 0.0054 0.001)
(0.00075 0.0054 0.001)
(0.0008 0.0054 0.001)
(0.00085 0.0054 0.001)
(0.0009 0.0054 0.001)
(0.00095 0.0054 0.001)
(0.001 0.0054 0.001)
(0 0.00545 0.001)
(5e-05 0.00545 0.001)
(0.0001 0.00545 0.001)
(0.00015 0.00545 0.001)
(0.0002 0.00545 0.001)
(0.00025 0.00545 0.001)
(0.0003 0.00545 0.001)
(0.00035 0.00545 0.001)
(0.0004 0.00545 0.001)
(0.00045 0.00545 0.001)
(0.0005 0.00545 0.001)
(0.00055 0.00545 0.001)
(0.0006 0.00545 0.001)
(0.00065 0.00545 0.001)
(0.0007 0.00545 0.001)
(0.00075 0.00545 0.001)
(0.0008 0.00545 0.001)
(0.00085 0.00545 0.001)
(0.0009 0.00545 0.001)
(0.00095 0.00545 0.001)
(0.001 0.00545 0.001)
(0 0.0055 0.001)
(5e-05 0.0055 0.001)
(0.0001 0.0055 0.001)
(0.00015 0.0055 0.001)
(0.0002 0.0055 0.001)
(0.00025 0.0055 0.001)
(0.0003 0.0055 0.001)
(0.00035 0.0055 0.001)
(0.0004 0.0055 0.001)
(0.00045 0.0055 0.001)
(0.0005 0.0055 0.001)
(0.00055 0.0055 0.001)
(0.0006 0.0055 0.001)
(0.00065 0.0055 0.001)
(0.0007 0.0055 0.001)
(0.00075 0.0055 0.001)
(0.0008 0.0055 0.001)
(0.00085 0.0055 0.001)
(0.0009 0.0055 0.001)
(0.00095 0.0055 0.001)
(0.001 0.0055 0.001)
(0 0.00555 0.001)
(5e-05 0.00555 0.001)
(0.0001 0.00555 0.001)
(0.00015 0.00555 0.001)
(0.0002 0.00555 0.001)
(0.00025 0.00555 0.001)
(0.0003 0.00555 0.001)
(0.00035 0.00555 0.001)
(0.0004 0.00555 0.001)
(0.00045 0.00555 0.001)
(0.0005 0.00555 0.001)
(0.00055 0.00555 0.001)
(0.0006 0.00555 0.001)
(0.00065 0.00555 0.001)
(0.0007 0.00555 0.001)
(0.00075 0.00555 0.001)
(0.0008 0.00555 0.001)
(0.00085 0.00555 0.001)
(0.0009 0.00555 0.001)
(0.00095 0.00555 0.001)
(0.001 0.00555 0.001)
(0 0.0056 0.001)
(5e-05 0.0056 0.001)
(0.0001 0.0056 0.001)
(0.00015 0.0056 0.001)
(0.0002 0.0056 0.001)
(0.00025 0.0056 0.001)
(0.0003 0.0056 0.001)
(0.00035 0.0056 0.001)
(0.0004 0.0056 0.001)
(0.00045 0.0056 0.001)
(0.0005 0.0056 0.001)
(0.00055 0.0056 0.001)
(0.0006 0.0056 0.001)
(0.00065 0.0056 0.001)
(0.0007 0.0056 0.001)
(0.00075 0.0056 0.001)
(0.0008 0.0056 0.001)
(0.00085 0.0056 0.001)
(0.0009 0.0056 0.001)
(0.00095 0.0056 0.001)
(0.001 0.0056 0.001)
(0 0.00565 0.001)
(5e-05 0.00565 0.001)
(0.0001 0.00565 0.001)
(0.00015 0.00565 0.001)
(0.0002 0.00565 0.001)
(0.00025 0.00565 0.001)
(0.0003 0.00565 0.001)
(0.00035 0.00565 0.001)
(0.0004 0.00565 0.001)
(0.00045 0.00565 0.001)
(0.0005 0.00565 0.001)
(0.00055 0.00565 0.001)
(0.0006 0.00565 0.001)
(0.00065 0.00565 0.001)
(0.0007 0.00565 0.001)
(0.00075 0.00565 0.001)
(0.0008 0.00565 0.001)
(0.00085 0.00565 0.001)
(0.0009 0.00565 0.001)
(0.00095 0.00565 0.001)
(0.001 0.00565 0.001)
(0 0.0057 0.001)
(5e-05 0.0057 0.001)
(0.0001 0.0057 0.001)
(0.00015 0.0057 0.001)
(0.0002 0.0057 0.001)
(0.00025 0.0057 0.001)
(0.0003 0.0057 0.001)
(0.00035 0.0057 0.001)
(0.0004 0.0057 0.001)
(0.00045 0.0057 0.001)
(0.0005 0.0057 0.001)
(0.00055 0.0057 0.001)
(0.0006 0.0057 0.001)
(0.00065 0.0057 0.001)
(0.0007 0.0057 0.001)
(0.00075 0.0057 0.001)
(0.0008 0.0057 0.001)
(0.00085 0.0057 0.001)
(0.0009 0.0057 0.001)
(0.00095 0.0057 0.001)
(0.001 0.0057 0.001)
(0 0.00575 0.001)
(5e-05 0.00575 0.001)
(0.0001 0.00575 0.001)
(0.00015 0.00575 0.001)
(0.0002 0.00575 0.001)
(0.00025 0.00575 0.001)
(0.0003 0.00575 0.001)
(0.00035 0.00575 0.001)
(0.0004 0.00575 0.001)
(0.00045 0.00575 0.001)
(0.0005 0.00575 0.001)
(0.00055 0.00575 0.001)
(0.0006 0.00575 0.001)
(0.00065 0.00575 0.001)
(0.0007 0.00575 0.001)
(0.00075 0.00575 0.001)
(0.0008 0.00575 0.001)
(0.00085 0.00575 0.001)
(0.0009 0.00575 0.001)
(0.00095 0.00575 0.001)
(0.001 0.00575 0.001)
(0 0.0058 0.001)
(5e-05 0.0058 0.001)
(0.0001 0.0058 0.001)
(0.00015 0.0058 0.001)
(0.0002 0.0058 0.001)
(0.00025 0.0058 0.001)
(0.0003 0.0058 0.001)
(0.00035 0.0058 0.001)
(0.0004 0.0058 0.001)
(0.00045 0.0058 0.001)
(0.0005 0.0058 0.001)
(0.00055 0.0058 0.001)
(0.0006 0.0058 0.001)
(0.00065 0.0058 0.001)
(0.0007 0.0058 0.001)
(0.00075 0.0058 0.001)
(0.0008 0.0058 0.001)
(0.00085 0.0058 0.001)
(0.0009 0.0058 0.001)
(0.00095 0.0058 0.001)
(0.001 0.0058 0.001)
(0 0.00585 0.001)
(5e-05 0.00585 0.001)
(0.0001 0.00585 0.001)
(0.00015 0.00585 0.001)
(0.0002 0.00585 0.001)
(0.00025 0.00585 0.001)
(0.0003 0.00585 0.001)
(0.00035 0.00585 0.001)
(0.0004 0.00585 0.001)
(0.00045 0.00585 0.001)
(0.0005 0.00585 0.001)
(0.00055 0.00585 0.001)
(0.0006 0.00585 0.001)
(0.00065 0.00585 0.001)
(0.0007 0.00585 0.001)
(0.00075 0.00585 0.001)
(0.0008 0.00585 0.001)
(0.00085 0.00585 0.001)
(0.0009 0.00585 0.001)
(0.00095 0.00585 0.001)
(0.001 0.00585 0.001)
(0 0.0059 0.001)
(5e-05 0.0059 0.001)
(0.0001 0.0059 0.001)
(0.00015 0.0059 0.001)
(0.0002 0.0059 0.001)
(0.00025 0.0059 0.001)
(0.0003 0.0059 0.001)
(0.00035 0.0059 0.001)
(0.0004 0.0059 0.001)
(0.00045 0.0059 0.001)
(0.0005 0.0059 0.001)
(0.00055 0.0059 0.001)
(0.0006 0.0059 0.001)
(0.00065 0.0059 0.001)
(0.0007 0.0059 0.001)
(0.00075 0.0059 0.001)
(0.0008 0.0059 0.001)
(0.00085 0.0059 0.001)
(0.0009 0.0059 0.001)
(0.00095 0.0059 0.001)
(0.001 0.0059 0.001)
(0 0.00595 0.001)
(5e-05 0.00595 0.001)
(0.0001 0.00595 0.001)
(0.00015 0.00595 0.001)
(0.0002 0.00595 0.001)
(0.00025 0.00595 0.001)
(0.0003 0.00595 0.001)
(0.00035 0.00595 0.001)
(0.0004 0.00595 0.001)
(0.00045 0.00595 0.001)
(0.0005 0.00595 0.001)
(0.00055 0.00595 0.001)
(0.0006 0.00595 0.001)
(0.00065 0.00595 0.001)
(0.0007 0.00595 0.001)
(0.00075 0.00595 0.001)
(0.0008 0.00595 0.001)
(0.00085 0.00595 0.001)
(0.0009 0.00595 0.001)
(0.00095 0.00595 0.001)
(0.001 0.00595 0.001)
(0 0.006 0.001)
(5e-05 0.006 0.001)
(0.0001 0.006 0.001)
(0.00015 0.006 0.001)
(0.0002 0.006 0.001)
(0.00025 0.006 0.001)
(0.0003 0.006 0.001)
(0.00035 0.006 0.001)
(0.0004 0.006 0.001)
(0.00045 0.006 0.001)
(0.0005 0.006 0.001)
(0.00055 0.006 0.001)
(0.0006 0.006 0.001)
(0.00065 0.006 0.001)
(0.0007 0.006 0.001)
(0.00075 0.006 0.001)
(0.0008 0.006 0.001)
(0.00085 0.006 0.001)
(0.0009 0.006 0.001)
(0.00095 0.006 0.001)
(0.001 0.006 0.001)
(0 0.00605 0.001)
(5e-05 0.00605 0.001)
(0.0001 0.00605 0.001)
(0.00015 0.00605 0.001)
(0.0002 0.00605 0.001)
(0.00025 0.00605 0.001)
(0.0003 0.00605 0.001)
(0.00035 0.00605 0.001)
(0.0004 0.00605 0.001)
(0.00045 0.00605 0.001)
(0.0005 0.00605 0.001)
(0.00055 0.00605 0.001)
(0.0006 0.00605 0.001)
(0.00065 0.00605 0.001)
(0.0007 0.00605 0.001)
(0.00075 0.00605 0.001)
(0.0008 0.00605 0.001)
(0.00085 0.00605 0.001)
(0.0009 0.00605 0.001)
(0.00095 0.00605 0.001)
(0.001 0.00605 0.001)
(0 0.0061 0.001)
(5e-05 0.0061 0.001)
(0.0001 0.0061 0.001)
(0.00015 0.0061 0.001)
(0.0002 0.0061 0.001)
(0.00025 0.0061 0.001)
(0.0003 0.0061 0.001)
(0.00035 0.0061 0.001)
(0.0004 0.0061 0.001)
(0.00045 0.0061 0.001)
(0.0005 0.0061 0.001)
(0.00055 0.0061 0.001)
(0.0006 0.0061 0.001)
(0.00065 0.0061 0.001)
(0.0007 0.0061 0.001)
(0.00075 0.0061 0.001)
(0.0008 0.0061 0.001)
(0.00085 0.0061 0.001)
(0.0009 0.0061 0.001)
(0.00095 0.0061 0.001)
(0.001 0.0061 0.001)
(0 0.00615 0.001)
(5e-05 0.00615 0.001)
(0.0001 0.00615 0.001)
(0.00015 0.00615 0.001)
(0.0002 0.00615 0.001)
(0.00025 0.00615 0.001)
(0.0003 0.00615 0.001)
(0.00035 0.00615 0.001)
(0.0004 0.00615 0.001)
(0.00045 0.00615 0.001)
(0.0005 0.00615 0.001)
(0.00055 0.00615 0.001)
(0.0006 0.00615 0.001)
(0.00065 0.00615 0.001)
(0.0007 0.00615 0.001)
(0.00075 0.00615 0.001)
(0.0008 0.00615 0.001)
(0.00085 0.00615 0.001)
(0.0009 0.00615 0.001)
(0.00095 0.00615 0.001)
(0.001 0.00615 0.001)
(0 0.0062 0.001)
(5e-05 0.0062 0.001)
(0.0001 0.0062 0.001)
(0.00015 0.0062 0.001)
(0.0002 0.0062 0.001)
(0.00025 0.0062 0.001)
(0.0003 0.0062 0.001)
(0.00035 0.0062 0.001)
(0.0004 0.0062 0.001)
(0.00045 0.0062 0.001)
(0.0005 0.0062 0.001)
(0.00055 0.0062 0.001)
(0.0006 0.0062 0.001)
(0.00065 0.0062 0.001)
(0.0007 0.0062 0.001)
(0.00075 0.0062 0.001)
(0.0008 0.0062 0.001)
(0.00085 0.0062 0.001)
(0.0009 0.0062 0.001)
(0.00095 0.0062 0.001)
(0.001 0.0062 0.001)
(0 0.00625 0.001)
(5e-05 0.00625 0.001)
(0.0001 0.00625 0.001)
(0.00015 0.00625 0.001)
(0.0002 0.00625 0.001)
(0.00025 0.00625 0.001)
(0.0003 0.00625 0.001)
(0.00035 0.00625 0.001)
(0.0004 0.00625 0.001)
(0.00045 0.00625 0.001)
(0.0005 0.00625 0.001)
(0.00055 0.00625 0.001)
(0.0006 0.00625 0.001)
(0.00065 0.00625 0.001)
(0.0007 0.00625 0.001)
(0.00075 0.00625 0.001)
(0.0008 0.00625 0.001)
(0.00085 0.00625 0.001)
(0.0009 0.00625 0.001)
(0.00095 0.00625 0.001)
(0.001 0.00625 0.001)
(0 0.0063 0.001)
(5e-05 0.0063 0.001)
(0.0001 0.0063 0.001)
(0.00015 0.0063 0.001)
(0.0002 0.0063 0.001)
(0.00025 0.0063 0.001)
(0.0003 0.0063 0.001)
(0.00035 0.0063 0.001)
(0.0004 0.0063 0.001)
(0.00045 0.0063 0.001)
(0.0005 0.0063 0.001)
(0.00055 0.0063 0.001)
(0.0006 0.0063 0.001)
(0.00065 0.0063 0.001)
(0.0007 0.0063 0.001)
(0.00075 0.0063 0.001)
(0.0008 0.0063 0.001)
(0.00085 0.0063 0.001)
(0.0009 0.0063 0.001)
(0.00095 0.0063 0.001)
(0.001 0.0063 0.001)
(0 0.00635 0.001)
(5e-05 0.00635 0.001)
(0.0001 0.00635 0.001)
(0.00015 0.00635 0.001)
(0.0002 0.00635 0.001)
(0.00025 0.00635 0.001)
(0.0003 0.00635 0.001)
(0.00035 0.00635 0.001)
(0.0004 0.00635 0.001)
(0.00045 0.00635 0.001)
(0.0005 0.00635 0.001)
(0.00055 0.00635 0.001)
(0.0006 0.00635 0.001)
(0.00065 0.00635 0.001)
(0.0007 0.00635 0.001)
(0.00075 0.00635 0.001)
(0.0008 0.00635 0.001)
(0.00085 0.00635 0.001)
(0.0009 0.00635 0.001)
(0.00095 0.00635 0.001)
(0.001 0.00635 0.001)
(0 0.0064 0.001)
(5e-05 0.0064 0.001)
(0.0001 0.0064 0.001)
(0.00015 0.0064 0.001)
(0.0002 0.0064 0.001)
(0.00025 0.0064 0.001)
(0.0003 0.0064 0.001)
(0.00035 0.0064 0.001)
(0.0004 0.0064 0.001)
(0.00045 0.0064 0.001)
(0.0005 0.0064 0.001)
(0.00055 0.0064 0.001)
(0.0006 0.0064 0.001)
(0.00065 0.0064 0.001)
(0.0007 0.0064 0.001)
(0.00075 0.0064 0.001)
(0.0008 0.0064 0.001)
(0.00085 0.0064 0.001)
(0.0009 0.0064 0.001)
(0.00095 0.0064 0.001)
(0.001 0.0064 0.001)
(0 0.00645 0.001)
(5e-05 0.00645 0.001)
(0.0001 0.00645 0.001)
(0.00015 0.00645 0.001)
(0.0002 0.00645 0.001)
(0.00025 0.00645 0.001)
(0.0003 0.00645 0.001)
(0.00035 0.00645 0.001)
(0.0004 0.00645 0.001)
(0.00045 0.00645 0.001)
(0.0005 0.00645 0.001)
(0.00055 0.00645 0.001)
(0.0006 0.00645 0.001)
(0.00065 0.00645 0.001)
(0.0007 0.00645 0.001)
(0.00075 0.00645 0.001)
(0.0008 0.00645 0.001)
(0.00085 0.00645 0.001)
(0.0009 0.00645 0.001)
(0.00095 0.00645 0.001)
(0.001 0.00645 0.001)
(0 0.0065 0.001)
(5e-05 0.0065 0.001)
(0.0001 0.0065 0.001)
(0.00015 0.0065 0.001)
(0.0002 0.0065 0.001)
(0.00025 0.0065 0.001)
(0.0003 0.0065 0.001)
(0.00035 0.0065 0.001)
(0.0004 0.0065 0.001)
(0.00045 0.0065 0.001)
(0.0005 0.0065 0.001)
(0.00055 0.0065 0.001)
(0.0006 0.0065 0.001)
(0.00065 0.0065 0.001)
(0.0007 0.0065 0.001)
(0.00075 0.0065 0.001)
(0.0008 0.0065 0.001)
(0.00085 0.0065 0.001)
(0.0009 0.0065 0.001)
(0.00095 0.0065 0.001)
(0.001 0.0065 0.001)
(0 0.00655 0.001)
(5e-05 0.00655 0.001)
(0.0001 0.00655 0.001)
(0.00015 0.00655 0.001)
(0.0002 0.00655 0.001)
(0.00025 0.00655 0.001)
(0.0003 0.00655 0.001)
(0.00035 0.00655 0.001)
(0.0004 0.00655 0.001)
(0.00045 0.00655 0.001)
(0.0005 0.00655 0.001)
(0.00055 0.00655 0.001)
(0.0006 0.00655 0.001)
(0.00065 0.00655 0.001)
(0.0007 0.00655 0.001)
(0.00075 0.00655 0.001)
(0.0008 0.00655 0.001)
(0.00085 0.00655 0.001)
(0.0009 0.00655 0.001)
(0.00095 0.00655 0.001)
(0.001 0.00655 0.001)
(0 0.0066 0.001)
(5e-05 0.0066 0.001)
(0.0001 0.0066 0.001)
(0.00015 0.0066 0.001)
(0.0002 0.0066 0.001)
(0.00025 0.0066 0.001)
(0.0003 0.0066 0.001)
(0.00035 0.0066 0.001)
(0.0004 0.0066 0.001)
(0.00045 0.0066 0.001)
(0.0005 0.0066 0.001)
(0.00055 0.0066 0.001)
(0.0006 0.0066 0.001)
(0.00065 0.0066 0.001)
(0.0007 0.0066 0.001)
(0.00075 0.0066 0.001)
(0.0008 0.0066 0.001)
(0.00085 0.0066 0.001)
(0.0009 0.0066 0.001)
(0.00095 0.0066 0.001)
(0.001 0.0066 0.001)
(0 0.00665 0.001)
(5e-05 0.00665 0.001)
(0.0001 0.00665 0.001)
(0.00015 0.00665 0.001)
(0.0002 0.00665 0.001)
(0.00025 0.00665 0.001)
(0.0003 0.00665 0.001)
(0.00035 0.00665 0.001)
(0.0004 0.00665 0.001)
(0.00045 0.00665 0.001)
(0.0005 0.00665 0.001)
(0.00055 0.00665 0.001)
(0.0006 0.00665 0.001)
(0.00065 0.00665 0.001)
(0.0007 0.00665 0.001)
(0.00075 0.00665 0.001)
(0.0008 0.00665 0.001)
(0.00085 0.00665 0.001)
(0.0009 0.00665 0.001)
(0.00095 0.00665 0.001)
(0.001 0.00665 0.001)
(0 0.0067 0.001)
(5e-05 0.0067 0.001)
(0.0001 0.0067 0.001)
(0.00015 0.0067 0.001)
(0.0002 0.0067 0.001)
(0.00025 0.0067 0.001)
(0.0003 0.0067 0.001)
(0.00035 0.0067 0.001)
(0.0004 0.0067 0.001)
(0.00045 0.0067 0.001)
(0.0005 0.0067 0.001)
(0.00055 0.0067 0.001)
(0.0006 0.0067 0.001)
(0.00065 0.0067 0.001)
(0.0007 0.0067 0.001)
(0.00075 0.0067 0.001)
(0.0008 0.0067 0.001)
(0.00085 0.0067 0.001)
(0.0009 0.0067 0.001)
(0.00095 0.0067 0.001)
(0.001 0.0067 0.001)
(0 0.00675 0.001)
(5e-05 0.00675 0.001)
(0.0001 0.00675 0.001)
(0.00015 0.00675 0.001)
(0.0002 0.00675 0.001)
(0.00025 0.00675 0.001)
(0.0003 0.00675 0.001)
(0.00035 0.00675 0.001)
(0.0004 0.00675 0.001)
(0.00045 0.00675 0.001)
(0.0005 0.00675 0.001)
(0.00055 0.00675 0.001)
(0.0006 0.00675 0.001)
(0.00065 0.00675 0.001)
(0.0007 0.00675 0.001)
(0.00075 0.00675 0.001)
(0.0008 0.00675 0.001)
(0.00085 0.00675 0.001)
(0.0009 0.00675 0.001)
(0.00095 0.00675 0.001)
(0.001 0.00675 0.001)
(0 0.0068 0.001)
(5e-05 0.0068 0.001)
(0.0001 0.0068 0.001)
(0.00015 0.0068 0.001)
(0.0002 0.0068 0.001)
(0.00025 0.0068 0.001)
(0.0003 0.0068 0.001)
(0.00035 0.0068 0.001)
(0.0004 0.0068 0.001)
(0.00045 0.0068 0.001)
(0.0005 0.0068 0.001)
(0.00055 0.0068 0.001)
(0.0006 0.0068 0.001)
(0.00065 0.0068 0.001)
(0.0007 0.0068 0.001)
(0.00075 0.0068 0.001)
(0.0008 0.0068 0.001)
(0.00085 0.0068 0.001)
(0.0009 0.0068 0.001)
(0.00095 0.0068 0.001)
(0.001 0.0068 0.001)
(0 0.00685 0.001)
(5e-05 0.00685 0.001)
(0.0001 0.00685 0.001)
(0.00015 0.00685 0.001)
(0.0002 0.00685 0.001)
(0.00025 0.00685 0.001)
(0.0003 0.00685 0.001)
(0.00035 0.00685 0.001)
(0.0004 0.00685 0.001)
(0.00045 0.00685 0.001)
(0.0005 0.00685 0.001)
(0.00055 0.00685 0.001)
(0.0006 0.00685 0.001)
(0.00065 0.00685 0.001)
(0.0007 0.00685 0.001)
(0.00075 0.00685 0.001)
(0.0008 0.00685 0.001)
(0.00085 0.00685 0.001)
(0.0009 0.00685 0.001)
(0.00095 0.00685 0.001)
(0.001 0.00685 0.001)
(0 0.0069 0.001)
(5e-05 0.0069 0.001)
(0.0001 0.0069 0.001)
(0.00015 0.0069 0.001)
(0.0002 0.0069 0.001)
(0.00025 0.0069 0.001)
(0.0003 0.0069 0.001)
(0.00035 0.0069 0.001)
(0.0004 0.0069 0.001)
(0.00045 0.0069 0.001)
(0.0005 0.0069 0.001)
(0.00055 0.0069 0.001)
(0.0006 0.0069 0.001)
(0.00065 0.0069 0.001)
(0.0007 0.0069 0.001)
(0.00075 0.0069 0.001)
(0.0008 0.0069 0.001)
(0.00085 0.0069 0.001)
(0.0009 0.0069 0.001)
(0.00095 0.0069 0.001)
(0.001 0.0069 0.001)
(0 0.00695 0.001)
(5e-05 0.00695 0.001)
(0.0001 0.00695 0.001)
(0.00015 0.00695 0.001)
(0.0002 0.00695 0.001)
(0.00025 0.00695 0.001)
(0.0003 0.00695 0.001)
(0.00035 0.00695 0.001)
(0.0004 0.00695 0.001)
(0.00045 0.00695 0.001)
(0.0005 0.00695 0.001)
(0.00055 0.00695 0.001)
(0.0006 0.00695 0.001)
(0.00065 0.00695 0.001)
(0.0007 0.00695 0.001)
(0.00075 0.00695 0.001)
(0.0008 0.00695 0.001)
(0.00085 0.00695 0.001)
(0.0009 0.00695 0.001)
(0.00095 0.00695 0.001)
(0.001 0.00695 0.001)
(0 0.007 0.001)
(5e-05 0.007 0.001)
(0.0001 0.007 0.001)
(0.00015 0.007 0.001)
(0.0002 0.007 0.001)
(0.00025 0.007 0.001)
(0.0003 0.007 0.001)
(0.00035 0.007 0.001)
(0.0004 0.007 0.001)
(0.00045 0.007 0.001)
(0.0005 0.007 0.001)
(0.00055 0.007 0.001)
(0.0006 0.007 0.001)
(0.00065 0.007 0.001)
(0.0007 0.007 0.001)
(0.00075 0.007 0.001)
(0.0008 0.007 0.001)
(0.00085 0.007 0.001)
(0.0009 0.007 0.001)
(0.00095 0.007 0.001)
(0.001 0.007 0.001)
(0 0.00705 0.001)
(5e-05 0.00705 0.001)
(0.0001 0.00705 0.001)
(0.00015 0.00705 0.001)
(0.0002 0.00705 0.001)
(0.00025 0.00705 0.001)
(0.0003 0.00705 0.001)
(0.00035 0.00705 0.001)
(0.0004 0.00705 0.001)
(0.00045 0.00705 0.001)
(0.0005 0.00705 0.001)
(0.00055 0.00705 0.001)
(0.0006 0.00705 0.001)
(0.00065 0.00705 0.001)
(0.0007 0.00705 0.001)
(0.00075 0.00705 0.001)
(0.0008 0.00705 0.001)
(0.00085 0.00705 0.001)
(0.0009 0.00705 0.001)
(0.00095 0.00705 0.001)
(0.001 0.00705 0.001)
(0 0.0071 0.001)
(5e-05 0.0071 0.001)
(0.0001 0.0071 0.001)
(0.00015 0.0071 0.001)
(0.0002 0.0071 0.001)
(0.00025 0.0071 0.001)
(0.0003 0.0071 0.001)
(0.00035 0.0071 0.001)
(0.0004 0.0071 0.001)
(0.00045 0.0071 0.001)
(0.0005 0.0071 0.001)
(0.00055 0.0071 0.001)
(0.0006 0.0071 0.001)
(0.00065 0.0071 0.001)
(0.0007 0.0071 0.001)
(0.00075 0.0071 0.001)
(0.0008 0.0071 0.001)
(0.00085 0.0071 0.001)
(0.0009 0.0071 0.001)
(0.00095 0.0071 0.001)
(0.001 0.0071 0.001)
(0 0.00715 0.001)
(5e-05 0.00715 0.001)
(0.0001 0.00715 0.001)
(0.00015 0.00715 0.001)
(0.0002 0.00715 0.001)
(0.00025 0.00715 0.001)
(0.0003 0.00715 0.001)
(0.00035 0.00715 0.001)
(0.0004 0.00715 0.001)
(0.00045 0.00715 0.001)
(0.0005 0.00715 0.001)
(0.00055 0.00715 0.001)
(0.0006 0.00715 0.001)
(0.00065 0.00715 0.001)
(0.0007 0.00715 0.001)
(0.00075 0.00715 0.001)
(0.0008 0.00715 0.001)
(0.00085 0.00715 0.001)
(0.0009 0.00715 0.001)
(0.00095 0.00715 0.001)
(0.001 0.00715 0.001)
(0 0.0072 0.001)
(5e-05 0.0072 0.001)
(0.0001 0.0072 0.001)
(0.00015 0.0072 0.001)
(0.0002 0.0072 0.001)
(0.00025 0.0072 0.001)
(0.0003 0.0072 0.001)
(0.00035 0.0072 0.001)
(0.0004 0.0072 0.001)
(0.00045 0.0072 0.001)
(0.0005 0.0072 0.001)
(0.00055 0.0072 0.001)
(0.0006 0.0072 0.001)
(0.00065 0.0072 0.001)
(0.0007 0.0072 0.001)
(0.00075 0.0072 0.001)
(0.0008 0.0072 0.001)
(0.00085 0.0072 0.001)
(0.0009 0.0072 0.001)
(0.00095 0.0072 0.001)
(0.001 0.0072 0.001)
(0 0.00725 0.001)
(5e-05 0.00725 0.001)
(0.0001 0.00725 0.001)
(0.00015 0.00725 0.001)
(0.0002 0.00725 0.001)
(0.00025 0.00725 0.001)
(0.0003 0.00725 0.001)
(0.00035 0.00725 0.001)
(0.0004 0.00725 0.001)
(0.00045 0.00725 0.001)
(0.0005 0.00725 0.001)
(0.00055 0.00725 0.001)
(0.0006 0.00725 0.001)
(0.00065 0.00725 0.001)
(0.0007 0.00725 0.001)
(0.00075 0.00725 0.001)
(0.0008 0.00725 0.001)
(0.00085 0.00725 0.001)
(0.0009 0.00725 0.001)
(0.00095 0.00725 0.001)
(0.001 0.00725 0.001)
(0 0.0073 0.001)
(5e-05 0.0073 0.001)
(0.0001 0.0073 0.001)
(0.00015 0.0073 0.001)
(0.0002 0.0073 0.001)
(0.00025 0.0073 0.001)
(0.0003 0.0073 0.001)
(0.00035 0.0073 0.001)
(0.0004 0.0073 0.001)
(0.00045 0.0073 0.001)
(0.0005 0.0073 0.001)
(0.00055 0.0073 0.001)
(0.0006 0.0073 0.001)
(0.00065 0.0073 0.001)
(0.0007 0.0073 0.001)
(0.00075 0.0073 0.001)
(0.0008 0.0073 0.001)
(0.00085 0.0073 0.001)
(0.0009 0.0073 0.001)
(0.00095 0.0073 0.001)
(0.001 0.0073 0.001)
(0 0.00735 0.001)
(5e-05 0.00735 0.001)
(0.0001 0.00735 0.001)
(0.00015 0.00735 0.001)
(0.0002 0.00735 0.001)
(0.00025 0.00735 0.001)
(0.0003 0.00735 0.001)
(0.00035 0.00735 0.001)
(0.0004 0.00735 0.001)
(0.00045 0.00735 0.001)
(0.0005 0.00735 0.001)
(0.00055 0.00735 0.001)
(0.0006 0.00735 0.001)
(0.00065 0.00735 0.001)
(0.0007 0.00735 0.001)
(0.00075 0.00735 0.001)
(0.0008 0.00735 0.001)
(0.00085 0.00735 0.001)
(0.0009 0.00735 0.001)
(0.00095 0.00735 0.001)
(0.001 0.00735 0.001)
(0 0.0074 0.001)
(5e-05 0.0074 0.001)
(0.0001 0.0074 0.001)
(0.00015 0.0074 0.001)
(0.0002 0.0074 0.001)
(0.00025 0.0074 0.001)
(0.0003 0.0074 0.001)
(0.00035 0.0074 0.001)
(0.0004 0.0074 0.001)
(0.00045 0.0074 0.001)
(0.0005 0.0074 0.001)
(0.00055 0.0074 0.001)
(0.0006 0.0074 0.001)
(0.00065 0.0074 0.001)
(0.0007 0.0074 0.001)
(0.00075 0.0074 0.001)
(0.0008 0.0074 0.001)
(0.00085 0.0074 0.001)
(0.0009 0.0074 0.001)
(0.00095 0.0074 0.001)
(0.001 0.0074 0.001)
(0 0.00745 0.001)
(5e-05 0.00745 0.001)
(0.0001 0.00745 0.001)
(0.00015 0.00745 0.001)
(0.0002 0.00745 0.001)
(0.00025 0.00745 0.001)
(0.0003 0.00745 0.001)
(0.00035 0.00745 0.001)
(0.0004 0.00745 0.001)
(0.00045 0.00745 0.001)
(0.0005 0.00745 0.001)
(0.00055 0.00745 0.001)
(0.0006 0.00745 0.001)
(0.00065 0.00745 0.001)
(0.0007 0.00745 0.001)
(0.00075 0.00745 0.001)
(0.0008 0.00745 0.001)
(0.00085 0.00745 0.001)
(0.0009 0.00745 0.001)
(0.00095 0.00745 0.001)
(0.001 0.00745 0.001)
(0 0.0075 0.001)
(5e-05 0.0075 0.001)
(0.0001 0.0075 0.001)
(0.00015 0.0075 0.001)
(0.0002 0.0075 0.001)
(0.00025 0.0075 0.001)
(0.0003 0.0075 0.001)
(0.00035 0.0075 0.001)
(0.0004 0.0075 0.001)
(0.00045 0.0075 0.001)
(0.0005 0.0075 0.001)
(0.00055 0.0075 0.001)
(0.0006 0.0075 0.001)
(0.00065 0.0075 0.001)
(0.0007 0.0075 0.001)
(0.00075 0.0075 0.001)
(0.0008 0.0075 0.001)
(0.00085 0.0075 0.001)
(0.0009 0.0075 0.001)
(0.00095 0.0075 0.001)
(0.001 0.0075 0.001)
(0 0.00755 0.001)
(5e-05 0.00755 0.001)
(0.0001 0.00755 0.001)
(0.00015 0.00755 0.001)
(0.0002 0.00755 0.001)
(0.00025 0.00755 0.001)
(0.0003 0.00755 0.001)
(0.00035 0.00755 0.001)
(0.0004 0.00755 0.001)
(0.00045 0.00755 0.001)
(0.0005 0.00755 0.001)
(0.00055 0.00755 0.001)
(0.0006 0.00755 0.001)
(0.00065 0.00755 0.001)
(0.0007 0.00755 0.001)
(0.00075 0.00755 0.001)
(0.0008 0.00755 0.001)
(0.00085 0.00755 0.001)
(0.0009 0.00755 0.001)
(0.00095 0.00755 0.001)
(0.001 0.00755 0.001)
(0 0.0076 0.001)
(5e-05 0.0076 0.001)
(0.0001 0.0076 0.001)
(0.00015 0.0076 0.001)
(0.0002 0.0076 0.001)
(0.00025 0.0076 0.001)
(0.0003 0.0076 0.001)
(0.00035 0.0076 0.001)
(0.0004 0.0076 0.001)
(0.00045 0.0076 0.001)
(0.0005 0.0076 0.001)
(0.00055 0.0076 0.001)
(0.0006 0.0076 0.001)
(0.00065 0.0076 0.001)
(0.0007 0.0076 0.001)
(0.00075 0.0076 0.001)
(0.0008 0.0076 0.001)
(0.00085 0.0076 0.001)
(0.0009 0.0076 0.001)
(0.00095 0.0076 0.001)
(0.001 0.0076 0.001)
(0 0.00765 0.001)
(5e-05 0.00765 0.001)
(0.0001 0.00765 0.001)
(0.00015 0.00765 0.001)
(0.0002 0.00765 0.001)
(0.00025 0.00765 0.001)
(0.0003 0.00765 0.001)
(0.00035 0.00765 0.001)
(0.0004 0.00765 0.001)
(0.00045 0.00765 0.001)
(0.0005 0.00765 0.001)
(0.00055 0.00765 0.001)
(0.0006 0.00765 0.001)
(0.00065 0.00765 0.001)
(0.0007 0.00765 0.001)
(0.00075 0.00765 0.001)
(0.0008 0.00765 0.001)
(0.00085 0.00765 0.001)
(0.0009 0.00765 0.001)
(0.00095 0.00765 0.001)
(0.001 0.00765 0.001)
(0 0.0077 0.001)
(5e-05 0.0077 0.001)
(0.0001 0.0077 0.001)
(0.00015 0.0077 0.001)
(0.0002 0.0077 0.001)
(0.00025 0.0077 0.001)
(0.0003 0.0077 0.001)
(0.00035 0.0077 0.001)
(0.0004 0.0077 0.001)
(0.00045 0.0077 0.001)
(0.0005 0.0077 0.001)
(0.00055 0.0077 0.001)
(0.0006 0.0077 0.001)
(0.00065 0.0077 0.001)
(0.0007 0.0077 0.001)
(0.00075 0.0077 0.001)
(0.0008 0.0077 0.001)
(0.00085 0.0077 0.001)
(0.0009 0.0077 0.001)
(0.00095 0.0077 0.001)
(0.001 0.0077 0.001)
(0 0.00775 0.001)
(5e-05 0.00775 0.001)
(0.0001 0.00775 0.001)
(0.00015 0.00775 0.001)
(0.0002 0.00775 0.001)
(0.00025 0.00775 0.001)
(0.0003 0.00775 0.001)
(0.00035 0.00775 0.001)
(0.0004 0.00775 0.001)
(0.00045 0.00775 0.001)
(0.0005 0.00775 0.001)
(0.00055 0.00775 0.001)
(0.0006 0.00775 0.001)
(0.00065 0.00775 0.001)
(0.0007 0.00775 0.001)
(0.00075 0.00775 0.001)
(0.0008 0.00775 0.001)
(0.00085 0.00775 0.001)
(0.0009 0.00775 0.001)
(0.00095 0.00775 0.001)
(0.001 0.00775 0.001)
(0 0.0078 0.001)
(5e-05 0.0078 0.001)
(0.0001 0.0078 0.001)
(0.00015 0.0078 0.001)
(0.0002 0.0078 0.001)
(0.00025 0.0078 0.001)
(0.0003 0.0078 0.001)
(0.00035 0.0078 0.001)
(0.0004 0.0078 0.001)
(0.00045 0.0078 0.001)
(0.0005 0.0078 0.001)
(0.00055 0.0078 0.001)
(0.0006 0.0078 0.001)
(0.00065 0.0078 0.001)
(0.0007 0.0078 0.001)
(0.00075 0.0078 0.001)
(0.0008 0.0078 0.001)
(0.00085 0.0078 0.001)
(0.0009 0.0078 0.001)
(0.00095 0.0078 0.001)
(0.001 0.0078 0.001)
(0 0.00785 0.001)
(5e-05 0.00785 0.001)
(0.0001 0.00785 0.001)
(0.00015 0.00785 0.001)
(0.0002 0.00785 0.001)
(0.00025 0.00785 0.001)
(0.0003 0.00785 0.001)
(0.00035 0.00785 0.001)
(0.0004 0.00785 0.001)
(0.00045 0.00785 0.001)
(0.0005 0.00785 0.001)
(0.00055 0.00785 0.001)
(0.0006 0.00785 0.001)
(0.00065 0.00785 0.001)
(0.0007 0.00785 0.001)
(0.00075 0.00785 0.001)
(0.0008 0.00785 0.001)
(0.00085 0.00785 0.001)
(0.0009 0.00785 0.001)
(0.00095 0.00785 0.001)
(0.001 0.00785 0.001)
(0 0.0079 0.001)
(5e-05 0.0079 0.001)
(0.0001 0.0079 0.001)
(0.00015 0.0079 0.001)
(0.0002 0.0079 0.001)
(0.00025 0.0079 0.001)
(0.0003 0.0079 0.001)
(0.00035 0.0079 0.001)
(0.0004 0.0079 0.001)
(0.00045 0.0079 0.001)
(0.0005 0.0079 0.001)
(0.00055 0.0079 0.001)
(0.0006 0.0079 0.001)
(0.00065 0.0079 0.001)
(0.0007 0.0079 0.001)
(0.00075 0.0079 0.001)
(0.0008 0.0079 0.001)
(0.00085 0.0079 0.001)
(0.0009 0.0079 0.001)
(0.00095 0.0079 0.001)
(0.001 0.0079 0.001)
(0 0.00795 0.001)
(5e-05 0.00795 0.001)
(0.0001 0.00795 0.001)
(0.00015 0.00795 0.001)
(0.0002 0.00795 0.001)
(0.00025 0.00795 0.001)
(0.0003 0.00795 0.001)
(0.00035 0.00795 0.001)
(0.0004 0.00795 0.001)
(0.00045 0.00795 0.001)
(0.0005 0.00795 0.001)
(0.00055 0.00795 0.001)
(0.0006 0.00795 0.001)
(0.00065 0.00795 0.001)
(0.0007 0.00795 0.001)
(0.00075 0.00795 0.001)
(0.0008 0.00795 0.001)
(0.00085 0.00795 0.001)
(0.0009 0.00795 0.001)
(0.00095 0.00795 0.001)
(0.001 0.00795 0.001)
(0 0.008 0.001)
(5e-05 0.008 0.001)
(0.0001 0.008 0.001)
(0.00015 0.008 0.001)
(0.0002 0.008 0.001)
(0.00025 0.008 0.001)
(0.0003 0.008 0.001)
(0.00035 0.008 0.001)
(0.0004 0.008 0.001)
(0.00045 0.008 0.001)
(0.0005 0.008 0.001)
(0.00055 0.008 0.001)
(0.0006 0.008 0.001)
(0.00065 0.008 0.001)
(0.0007 0.008 0.001)
(0.00075 0.008 0.001)
(0.0008 0.008 0.001)
(0.00085 0.008 0.001)
(0.0009 0.008 0.001)
(0.00095 0.008 0.001)
(0.001 0.008 0.001)
(0 0.00805 0.001)
(5e-05 0.00805 0.001)
(0.0001 0.00805 0.001)
(0.00015 0.00805 0.001)
(0.0002 0.00805 0.001)
(0.00025 0.00805 0.001)
(0.0003 0.00805 0.001)
(0.00035 0.00805 0.001)
(0.0004 0.00805 0.001)
(0.00045 0.00805 0.001)
(0.0005 0.00805 0.001)
(0.00055 0.00805 0.001)
(0.0006 0.00805 0.001)
(0.00065 0.00805 0.001)
(0.0007 0.00805 0.001)
(0.00075 0.00805 0.001)
(0.0008 0.00805 0.001)
(0.00085 0.00805 0.001)
(0.0009 0.00805 0.001)
(0.00095 0.00805 0.001)
(0.001 0.00805 0.001)
(0 0.0081 0.001)
(5e-05 0.0081 0.001)
(0.0001 0.0081 0.001)
(0.00015 0.0081 0.001)
(0.0002 0.0081 0.001)
(0.00025 0.0081 0.001)
(0.0003 0.0081 0.001)
(0.00035 0.0081 0.001)
(0.0004 0.0081 0.001)
(0.00045 0.0081 0.001)
(0.0005 0.0081 0.001)
(0.00055 0.0081 0.001)
(0.0006 0.0081 0.001)
(0.00065 0.0081 0.001)
(0.0007 0.0081 0.001)
(0.00075 0.0081 0.001)
(0.0008 0.0081 0.001)
(0.00085 0.0081 0.001)
(0.0009 0.0081 0.001)
(0.00095 0.0081 0.001)
(0.001 0.0081 0.001)
(0 0.00815 0.001)
(5e-05 0.00815 0.001)
(0.0001 0.00815 0.001)
(0.00015 0.00815 0.001)
(0.0002 0.00815 0.001)
(0.00025 0.00815 0.001)
(0.0003 0.00815 0.001)
(0.00035 0.00815 0.001)
(0.0004 0.00815 0.001)
(0.00045 0.00815 0.001)
(0.0005 0.00815 0.001)
(0.00055 0.00815 0.001)
(0.0006 0.00815 0.001)
(0.00065 0.00815 0.001)
(0.0007 0.00815 0.001)
(0.00075 0.00815 0.001)
(0.0008 0.00815 0.001)
(0.00085 0.00815 0.001)
(0.0009 0.00815 0.001)
(0.00095 0.00815 0.001)
(0.001 0.00815 0.001)
(0 0.0082 0.001)
(5e-05 0.0082 0.001)
(0.0001 0.0082 0.001)
(0.00015 0.0082 0.001)
(0.0002 0.0082 0.001)
(0.00025 0.0082 0.001)
(0.0003 0.0082 0.001)
(0.00035 0.0082 0.001)
(0.0004 0.0082 0.001)
(0.00045 0.0082 0.001)
(0.0005 0.0082 0.001)
(0.00055 0.0082 0.001)
(0.0006 0.0082 0.001)
(0.00065 0.0082 0.001)
(0.0007 0.0082 0.001)
(0.00075 0.0082 0.001)
(0.0008 0.0082 0.001)
(0.00085 0.0082 0.001)
(0.0009 0.0082 0.001)
(0.00095 0.0082 0.001)
(0.001 0.0082 0.001)
(0 0.00825 0.001)
(5e-05 0.00825 0.001)
(0.0001 0.00825 0.001)
(0.00015 0.00825 0.001)
(0.0002 0.00825 0.001)
(0.00025 0.00825 0.001)
(0.0003 0.00825 0.001)
(0.00035 0.00825 0.001)
(0.0004 0.00825 0.001)
(0.00045 0.00825 0.001)
(0.0005 0.00825 0.001)
(0.00055 0.00825 0.001)
(0.0006 0.00825 0.001)
(0.00065 0.00825 0.001)
(0.0007 0.00825 0.001)
(0.00075 0.00825 0.001)
(0.0008 0.00825 0.001)
(0.00085 0.00825 0.001)
(0.0009 0.00825 0.001)
(0.00095 0.00825 0.001)
(0.001 0.00825 0.001)
(0 0.0083 0.001)
(5e-05 0.0083 0.001)
(0.0001 0.0083 0.001)
(0.00015 0.0083 0.001)
(0.0002 0.0083 0.001)
(0.00025 0.0083 0.001)
(0.0003 0.0083 0.001)
(0.00035 0.0083 0.001)
(0.0004 0.0083 0.001)
(0.00045 0.0083 0.001)
(0.0005 0.0083 0.001)
(0.00055 0.0083 0.001)
(0.0006 0.0083 0.001)
(0.00065 0.0083 0.001)
(0.0007 0.0083 0.001)
(0.00075 0.0083 0.001)
(0.0008 0.0083 0.001)
(0.00085 0.0083 0.001)
(0.0009 0.0083 0.001)
(0.00095 0.0083 0.001)
(0.001 0.0083 0.001)
(0 0.00835 0.001)
(5e-05 0.00835 0.001)
(0.0001 0.00835 0.001)
(0.00015 0.00835 0.001)
(0.0002 0.00835 0.001)
(0.00025 0.00835 0.001)
(0.0003 0.00835 0.001)
(0.00035 0.00835 0.001)
(0.0004 0.00835 0.001)
(0.00045 0.00835 0.001)
(0.0005 0.00835 0.001)
(0.00055 0.00835 0.001)
(0.0006 0.00835 0.001)
(0.00065 0.00835 0.001)
(0.0007 0.00835 0.001)
(0.00075 0.00835 0.001)
(0.0008 0.00835 0.001)
(0.00085 0.00835 0.001)
(0.0009 0.00835 0.001)
(0.00095 0.00835 0.001)
(0.001 0.00835 0.001)
(0 0.0084 0.001)
(5e-05 0.0084 0.001)
(0.0001 0.0084 0.001)
(0.00015 0.0084 0.001)
(0.0002 0.0084 0.001)
(0.00025 0.0084 0.001)
(0.0003 0.0084 0.001)
(0.00035 0.0084 0.001)
(0.0004 0.0084 0.001)
(0.00045 0.0084 0.001)
(0.0005 0.0084 0.001)
(0.00055 0.0084 0.001)
(0.0006 0.0084 0.001)
(0.00065 0.0084 0.001)
(0.0007 0.0084 0.001)
(0.00075 0.0084 0.001)
(0.0008 0.0084 0.001)
(0.00085 0.0084 0.001)
(0.0009 0.0084 0.001)
(0.00095 0.0084 0.001)
(0.001 0.0084 0.001)
(0 0.00845 0.001)
(5e-05 0.00845 0.001)
(0.0001 0.00845 0.001)
(0.00015 0.00845 0.001)
(0.0002 0.00845 0.001)
(0.00025 0.00845 0.001)
(0.0003 0.00845 0.001)
(0.00035 0.00845 0.001)
(0.0004 0.00845 0.001)
(0.00045 0.00845 0.001)
(0.0005 0.00845 0.001)
(0.00055 0.00845 0.001)
(0.0006 0.00845 0.001)
(0.00065 0.00845 0.001)
(0.0007 0.00845 0.001)
(0.00075 0.00845 0.001)
(0.0008 0.00845 0.001)
(0.00085 0.00845 0.001)
(0.0009 0.00845 0.001)
(0.00095 0.00845 0.001)
(0.001 0.00845 0.001)
(0 0.0085 0.001)
(5e-05 0.0085 0.001)
(0.0001 0.0085 0.001)
(0.00015 0.0085 0.001)
(0.0002 0.0085 0.001)
(0.00025 0.0085 0.001)
(0.0003 0.0085 0.001)
(0.00035 0.0085 0.001)
(0.0004 0.0085 0.001)
(0.00045 0.0085 0.001)
(0.0005 0.0085 0.001)
(0.00055 0.0085 0.001)
(0.0006 0.0085 0.001)
(0.00065 0.0085 0.001)
(0.0007 0.0085 0.001)
(0.00075 0.0085 0.001)
(0.0008 0.0085 0.001)
(0.00085 0.0085 0.001)
(0.0009 0.0085 0.001)
(0.00095 0.0085 0.001)
(0.001 0.0085 0.001)
(0 0.00855 0.001)
(5e-05 0.00855 0.001)
(0.0001 0.00855 0.001)
(0.00015 0.00855 0.001)
(0.0002 0.00855 0.001)
(0.00025 0.00855 0.001)
(0.0003 0.00855 0.001)
(0.00035 0.00855 0.001)
(0.0004 0.00855 0.001)
(0.00045 0.00855 0.001)
(0.0005 0.00855 0.001)
(0.00055 0.00855 0.001)
(0.0006 0.00855 0.001)
(0.00065 0.00855 0.001)
(0.0007 0.00855 0.001)
(0.00075 0.00855 0.001)
(0.0008 0.00855 0.001)
(0.00085 0.00855 0.001)
(0.0009 0.00855 0.001)
(0.00095 0.00855 0.001)
(0.001 0.00855 0.001)
(0 0.0086 0.001)
(5e-05 0.0086 0.001)
(0.0001 0.0086 0.001)
(0.00015 0.0086 0.001)
(0.0002 0.0086 0.001)
(0.00025 0.0086 0.001)
(0.0003 0.0086 0.001)
(0.00035 0.0086 0.001)
(0.0004 0.0086 0.001)
(0.00045 0.0086 0.001)
(0.0005 0.0086 0.001)
(0.00055 0.0086 0.001)
(0.0006 0.0086 0.001)
(0.00065 0.0086 0.001)
(0.0007 0.0086 0.001)
(0.00075 0.0086 0.001)
(0.0008 0.0086 0.001)
(0.00085 0.0086 0.001)
(0.0009 0.0086 0.001)
(0.00095 0.0086 0.001)
(0.001 0.0086 0.001)
(0 0.00865 0.001)
(5e-05 0.00865 0.001)
(0.0001 0.00865 0.001)
(0.00015 0.00865 0.001)
(0.0002 0.00865 0.001)
(0.00025 0.00865 0.001)
(0.0003 0.00865 0.001)
(0.00035 0.00865 0.001)
(0.0004 0.00865 0.001)
(0.00045 0.00865 0.001)
(0.0005 0.00865 0.001)
(0.00055 0.00865 0.001)
(0.0006 0.00865 0.001)
(0.00065 0.00865 0.001)
(0.0007 0.00865 0.001)
(0.00075 0.00865 0.001)
(0.0008 0.00865 0.001)
(0.00085 0.00865 0.001)
(0.0009 0.00865 0.001)
(0.00095 0.00865 0.001)
(0.001 0.00865 0.001)
(0 0.0087 0.001)
(5e-05 0.0087 0.001)
(0.0001 0.0087 0.001)
(0.00015 0.0087 0.001)
(0.0002 0.0087 0.001)
(0.00025 0.0087 0.001)
(0.0003 0.0087 0.001)
(0.00035 0.0087 0.001)
(0.0004 0.0087 0.001)
(0.00045 0.0087 0.001)
(0.0005 0.0087 0.001)
(0.00055 0.0087 0.001)
(0.0006 0.0087 0.001)
(0.00065 0.0087 0.001)
(0.0007 0.0087 0.001)
(0.00075 0.0087 0.001)
(0.0008 0.0087 0.001)
(0.00085 0.0087 0.001)
(0.0009 0.0087 0.001)
(0.00095 0.0087 0.001)
(0.001 0.0087 0.001)
(0 0.00875 0.001)
(5e-05 0.00875 0.001)
(0.0001 0.00875 0.001)
(0.00015 0.00875 0.001)
(0.0002 0.00875 0.001)
(0.00025 0.00875 0.001)
(0.0003 0.00875 0.001)
(0.00035 0.00875 0.001)
(0.0004 0.00875 0.001)
(0.00045 0.00875 0.001)
(0.0005 0.00875 0.001)
(0.00055 0.00875 0.001)
(0.0006 0.00875 0.001)
(0.00065 0.00875 0.001)
(0.0007 0.00875 0.001)
(0.00075 0.00875 0.001)
(0.0008 0.00875 0.001)
(0.00085 0.00875 0.001)
(0.0009 0.00875 0.001)
(0.00095 0.00875 0.001)
(0.001 0.00875 0.001)
(0 0.0088 0.001)
(5e-05 0.0088 0.001)
(0.0001 0.0088 0.001)
(0.00015 0.0088 0.001)
(0.0002 0.0088 0.001)
(0.00025 0.0088 0.001)
(0.0003 0.0088 0.001)
(0.00035 0.0088 0.001)
(0.0004 0.0088 0.001)
(0.00045 0.0088 0.001)
(0.0005 0.0088 0.001)
(0.00055 0.0088 0.001)
(0.0006 0.0088 0.001)
(0.00065 0.0088 0.001)
(0.0007 0.0088 0.001)
(0.00075 0.0088 0.001)
(0.0008 0.0088 0.001)
(0.00085 0.0088 0.001)
(0.0009 0.0088 0.001)
(0.00095 0.0088 0.001)
(0.001 0.0088 0.001)
(0 0.00885 0.001)
(5e-05 0.00885 0.001)
(0.0001 0.00885 0.001)
(0.00015 0.00885 0.001)
(0.0002 0.00885 0.001)
(0.00025 0.00885 0.001)
(0.0003 0.00885 0.001)
(0.00035 0.00885 0.001)
(0.0004 0.00885 0.001)
(0.00045 0.00885 0.001)
(0.0005 0.00885 0.001)
(0.00055 0.00885 0.001)
(0.0006 0.00885 0.001)
(0.00065 0.00885 0.001)
(0.0007 0.00885 0.001)
(0.00075 0.00885 0.001)
(0.0008 0.00885 0.001)
(0.00085 0.00885 0.001)
(0.0009 0.00885 0.001)
(0.00095 0.00885 0.001)
(0.001 0.00885 0.001)
(0 0.0089 0.001)
(5e-05 0.0089 0.001)
(0.0001 0.0089 0.001)
(0.00015 0.0089 0.001)
(0.0002 0.0089 0.001)
(0.00025 0.0089 0.001)
(0.0003 0.0089 0.001)
(0.00035 0.0089 0.001)
(0.0004 0.0089 0.001)
(0.00045 0.0089 0.001)
(0.0005 0.0089 0.001)
(0.00055 0.0089 0.001)
(0.0006 0.0089 0.001)
(0.00065 0.0089 0.001)
(0.0007 0.0089 0.001)
(0.00075 0.0089 0.001)
(0.0008 0.0089 0.001)
(0.00085 0.0089 0.001)
(0.0009 0.0089 0.001)
(0.00095 0.0089 0.001)
(0.001 0.0089 0.001)
(0 0.00895 0.001)
(5e-05 0.00895 0.001)
(0.0001 0.00895 0.001)
(0.00015 0.00895 0.001)
(0.0002 0.00895 0.001)
(0.00025 0.00895 0.001)
(0.0003 0.00895 0.001)
(0.00035 0.00895 0.001)
(0.0004 0.00895 0.001)
(0.00045 0.00895 0.001)
(0.0005 0.00895 0.001)
(0.00055 0.00895 0.001)
(0.0006 0.00895 0.001)
(0.00065 0.00895 0.001)
(0.0007 0.00895 0.001)
(0.00075 0.00895 0.001)
(0.0008 0.00895 0.001)
(0.00085 0.00895 0.001)
(0.0009 0.00895 0.001)
(0.00095 0.00895 0.001)
(0.001 0.00895 0.001)
(0 0.009 0.001)
(5e-05 0.009 0.001)
(0.0001 0.009 0.001)
(0.00015 0.009 0.001)
(0.0002 0.009 0.001)
(0.00025 0.009 0.001)
(0.0003 0.009 0.001)
(0.00035 0.009 0.001)
(0.0004 0.009 0.001)
(0.00045 0.009 0.001)
(0.0005 0.009 0.001)
(0.00055 0.009 0.001)
(0.0006 0.009 0.001)
(0.00065 0.009 0.001)
(0.0007 0.009 0.001)
(0.00075 0.009 0.001)
(0.0008 0.009 0.001)
(0.00085 0.009 0.001)
(0.0009 0.009 0.001)
(0.00095 0.009 0.001)
(0.001 0.009 0.001)
(0 0.00905 0.001)
(5e-05 0.00905 0.001)
(0.0001 0.00905 0.001)
(0.00015 0.00905 0.001)
(0.0002 0.00905 0.001)
(0.00025 0.00905 0.001)
(0.0003 0.00905 0.001)
(0.00035 0.00905 0.001)
(0.0004 0.00905 0.001)
(0.00045 0.00905 0.001)
(0.0005 0.00905 0.001)
(0.00055 0.00905 0.001)
(0.0006 0.00905 0.001)
(0.00065 0.00905 0.001)
(0.0007 0.00905 0.001)
(0.00075 0.00905 0.001)
(0.0008 0.00905 0.001)
(0.00085 0.00905 0.001)
(0.0009 0.00905 0.001)
(0.00095 0.00905 0.001)
(0.001 0.00905 0.001)
(0 0.0091 0.001)
(5e-05 0.0091 0.001)
(0.0001 0.0091 0.001)
(0.00015 0.0091 0.001)
(0.0002 0.0091 0.001)
(0.00025 0.0091 0.001)
(0.0003 0.0091 0.001)
(0.00035 0.0091 0.001)
(0.0004 0.0091 0.001)
(0.00045 0.0091 0.001)
(0.0005 0.0091 0.001)
(0.00055 0.0091 0.001)
(0.0006 0.0091 0.001)
(0.00065 0.0091 0.001)
(0.0007 0.0091 0.001)
(0.00075 0.0091 0.001)
(0.0008 0.0091 0.001)
(0.00085 0.0091 0.001)
(0.0009 0.0091 0.001)
(0.00095 0.0091 0.001)
(0.001 0.0091 0.001)
(0 0.00915 0.001)
(5e-05 0.00915 0.001)
(0.0001 0.00915 0.001)
(0.00015 0.00915 0.001)
(0.0002 0.00915 0.001)
(0.00025 0.00915 0.001)
(0.0003 0.00915 0.001)
(0.00035 0.00915 0.001)
(0.0004 0.00915 0.001)
(0.00045 0.00915 0.001)
(0.0005 0.00915 0.001)
(0.00055 0.00915 0.001)
(0.0006 0.00915 0.001)
(0.00065 0.00915 0.001)
(0.0007 0.00915 0.001)
(0.00075 0.00915 0.001)
(0.0008 0.00915 0.001)
(0.00085 0.00915 0.001)
(0.0009 0.00915 0.001)
(0.00095 0.00915 0.001)
(0.001 0.00915 0.001)
(0 0.0092 0.001)
(5e-05 0.0092 0.001)
(0.0001 0.0092 0.001)
(0.00015 0.0092 0.001)
(0.0002 0.0092 0.001)
(0.00025 0.0092 0.001)
(0.0003 0.0092 0.001)
(0.00035 0.0092 0.001)
(0.0004 0.0092 0.001)
(0.00045 0.0092 0.001)
(0.0005 0.0092 0.001)
(0.00055 0.0092 0.001)
(0.0006 0.0092 0.001)
(0.00065 0.0092 0.001)
(0.0007 0.0092 0.001)
(0.00075 0.0092 0.001)
(0.0008 0.0092 0.001)
(0.00085 0.0092 0.001)
(0.0009 0.0092 0.001)
(0.00095 0.0092 0.001)
(0.001 0.0092 0.001)
(0 0.00925 0.001)
(5e-05 0.00925 0.001)
(0.0001 0.00925 0.001)
(0.00015 0.00925 0.001)
(0.0002 0.00925 0.001)
(0.00025 0.00925 0.001)
(0.0003 0.00925 0.001)
(0.00035 0.00925 0.001)
(0.0004 0.00925 0.001)
(0.00045 0.00925 0.001)
(0.0005 0.00925 0.001)
(0.00055 0.00925 0.001)
(0.0006 0.00925 0.001)
(0.00065 0.00925 0.001)
(0.0007 0.00925 0.001)
(0.00075 0.00925 0.001)
(0.0008 0.00925 0.001)
(0.00085 0.00925 0.001)
(0.0009 0.00925 0.001)
(0.00095 0.00925 0.001)
(0.001 0.00925 0.001)
(0 0.0093 0.001)
(5e-05 0.0093 0.001)
(0.0001 0.0093 0.001)
(0.00015 0.0093 0.001)
(0.0002 0.0093 0.001)
(0.00025 0.0093 0.001)
(0.0003 0.0093 0.001)
(0.00035 0.0093 0.001)
(0.0004 0.0093 0.001)
(0.00045 0.0093 0.001)
(0.0005 0.0093 0.001)
(0.00055 0.0093 0.001)
(0.0006 0.0093 0.001)
(0.00065 0.0093 0.001)
(0.0007 0.0093 0.001)
(0.00075 0.0093 0.001)
(0.0008 0.0093 0.001)
(0.00085 0.0093 0.001)
(0.0009 0.0093 0.001)
(0.00095 0.0093 0.001)
(0.001 0.0093 0.001)
(0 0.00935 0.001)
(5e-05 0.00935 0.001)
(0.0001 0.00935 0.001)
(0.00015 0.00935 0.001)
(0.0002 0.00935 0.001)
(0.00025 0.00935 0.001)
(0.0003 0.00935 0.001)
(0.00035 0.00935 0.001)
(0.0004 0.00935 0.001)
(0.00045 0.00935 0.001)
(0.0005 0.00935 0.001)
(0.00055 0.00935 0.001)
(0.0006 0.00935 0.001)
(0.00065 0.00935 0.001)
(0.0007 0.00935 0.001)
(0.00075 0.00935 0.001)
(0.0008 0.00935 0.001)
(0.00085 0.00935 0.001)
(0.0009 0.00935 0.001)
(0.00095 0.00935 0.001)
(0.001 0.00935 0.001)
(0 0.0094 0.001)
(5e-05 0.0094 0.001)
(0.0001 0.0094 0.001)
(0.00015 0.0094 0.001)
(0.0002 0.0094 0.001)
(0.00025 0.0094 0.001)
(0.0003 0.0094 0.001)
(0.00035 0.0094 0.001)
(0.0004 0.0094 0.001)
(0.00045 0.0094 0.001)
(0.0005 0.0094 0.001)
(0.00055 0.0094 0.001)
(0.0006 0.0094 0.001)
(0.00065 0.0094 0.001)
(0.0007 0.0094 0.001)
(0.00075 0.0094 0.001)
(0.0008 0.0094 0.001)
(0.00085 0.0094 0.001)
(0.0009 0.0094 0.001)
(0.00095 0.0094 0.001)
(0.001 0.0094 0.001)
(0 0.00945 0.001)
(5e-05 0.00945 0.001)
(0.0001 0.00945 0.001)
(0.00015 0.00945 0.001)
(0.0002 0.00945 0.001)
(0.00025 0.00945 0.001)
(0.0003 0.00945 0.001)
(0.00035 0.00945 0.001)
(0.0004 0.00945 0.001)
(0.00045 0.00945 0.001)
(0.0005 0.00945 0.001)
(0.00055 0.00945 0.001)
(0.0006 0.00945 0.001)
(0.00065 0.00945 0.001)
(0.0007 0.00945 0.001)
(0.00075 0.00945 0.001)
(0.0008 0.00945 0.001)
(0.00085 0.00945 0.001)
(0.0009 0.00945 0.001)
(0.00095 0.00945 0.001)
(0.001 0.00945 0.001)
(0 0.0095 0.001)
(5e-05 0.0095 0.001)
(0.0001 0.0095 0.001)
(0.00015 0.0095 0.001)
(0.0002 0.0095 0.001)
(0.00025 0.0095 0.001)
(0.0003 0.0095 0.001)
(0.00035 0.0095 0.001)
(0.0004 0.0095 0.001)
(0.00045 0.0095 0.001)
(0.0005 0.0095 0.001)
(0.00055 0.0095 0.001)
(0.0006 0.0095 0.001)
(0.00065 0.0095 0.001)
(0.0007 0.0095 0.001)
(0.00075 0.0095 0.001)
(0.0008 0.0095 0.001)
(0.00085 0.0095 0.001)
(0.0009 0.0095 0.001)
(0.00095 0.0095 0.001)
(0.001 0.0095 0.001)
(0 0.00955 0.001)
(5e-05 0.00955 0.001)
(0.0001 0.00955 0.001)
(0.00015 0.00955 0.001)
(0.0002 0.00955 0.001)
(0.00025 0.00955 0.001)
(0.0003 0.00955 0.001)
(0.00035 0.00955 0.001)
(0.0004 0.00955 0.001)
(0.00045 0.00955 0.001)
(0.0005 0.00955 0.001)
(0.00055 0.00955 0.001)
(0.0006 0.00955 0.001)
(0.00065 0.00955 0.001)
(0.0007 0.00955 0.001)
(0.00075 0.00955 0.001)
(0.0008 0.00955 0.001)
(0.00085 0.00955 0.001)
(0.0009 0.00955 0.001)
(0.00095 0.00955 0.001)
(0.001 0.00955 0.001)
(0 0.0096 0.001)
(5e-05 0.0096 0.001)
(0.0001 0.0096 0.001)
(0.00015 0.0096 0.001)
(0.0002 0.0096 0.001)
(0.00025 0.0096 0.001)
(0.0003 0.0096 0.001)
(0.00035 0.0096 0.001)
(0.0004 0.0096 0.001)
(0.00045 0.0096 0.001)
(0.0005 0.0096 0.001)
(0.00055 0.0096 0.001)
(0.0006 0.0096 0.001)
(0.00065 0.0096 0.001)
(0.0007 0.0096 0.001)
(0.00075 0.0096 0.001)
(0.0008 0.0096 0.001)
(0.00085 0.0096 0.001)
(0.0009 0.0096 0.001)
(0.00095 0.0096 0.001)
(0.001 0.0096 0.001)
(0 0.00965 0.001)
(5e-05 0.00965 0.001)
(0.0001 0.00965 0.001)
(0.00015 0.00965 0.001)
(0.0002 0.00965 0.001)
(0.00025 0.00965 0.001)
(0.0003 0.00965 0.001)
(0.00035 0.00965 0.001)
(0.0004 0.00965 0.001)
(0.00045 0.00965 0.001)
(0.0005 0.00965 0.001)
(0.00055 0.00965 0.001)
(0.0006 0.00965 0.001)
(0.00065 0.00965 0.001)
(0.0007 0.00965 0.001)
(0.00075 0.00965 0.001)
(0.0008 0.00965 0.001)
(0.00085 0.00965 0.001)
(0.0009 0.00965 0.001)
(0.00095 0.00965 0.001)
(0.001 0.00965 0.001)
(0 0.0097 0.001)
(5e-05 0.0097 0.001)
(0.0001 0.0097 0.001)
(0.00015 0.0097 0.001)
(0.0002 0.0097 0.001)
(0.00025 0.0097 0.001)
(0.0003 0.0097 0.001)
(0.00035 0.0097 0.001)
(0.0004 0.0097 0.001)
(0.00045 0.0097 0.001)
(0.0005 0.0097 0.001)
(0.00055 0.0097 0.001)
(0.0006 0.0097 0.001)
(0.00065 0.0097 0.001)
(0.0007 0.0097 0.001)
(0.00075 0.0097 0.001)
(0.0008 0.0097 0.001)
(0.00085 0.0097 0.001)
(0.0009 0.0097 0.001)
(0.00095 0.0097 0.001)
(0.001 0.0097 0.001)
(0 0.00975 0.001)
(5e-05 0.00975 0.001)
(0.0001 0.00975 0.001)
(0.00015 0.00975 0.001)
(0.0002 0.00975 0.001)
(0.00025 0.00975 0.001)
(0.0003 0.00975 0.001)
(0.00035 0.00975 0.001)
(0.0004 0.00975 0.001)
(0.00045 0.00975 0.001)
(0.0005 0.00975 0.001)
(0.00055 0.00975 0.001)
(0.0006 0.00975 0.001)
(0.00065 0.00975 0.001)
(0.0007 0.00975 0.001)
(0.00075 0.00975 0.001)
(0.0008 0.00975 0.001)
(0.00085 0.00975 0.001)
(0.0009 0.00975 0.001)
(0.00095 0.00975 0.001)
(0.001 0.00975 0.001)
(0 0.0098 0.001)
(5e-05 0.0098 0.001)
(0.0001 0.0098 0.001)
(0.00015 0.0098 0.001)
(0.0002 0.0098 0.001)
(0.00025 0.0098 0.001)
(0.0003 0.0098 0.001)
(0.00035 0.0098 0.001)
(0.0004 0.0098 0.001)
(0.00045 0.0098 0.001)
(0.0005 0.0098 0.001)
(0.00055 0.0098 0.001)
(0.0006 0.0098 0.001)
(0.00065 0.0098 0.001)
(0.0007 0.0098 0.001)
(0.00075 0.0098 0.001)
(0.0008 0.0098 0.001)
(0.00085 0.0098 0.001)
(0.0009 0.0098 0.001)
(0.00095 0.0098 0.001)
(0.001 0.0098 0.001)
(0 0.00985 0.001)
(5e-05 0.00985 0.001)
(0.0001 0.00985 0.001)
(0.00015 0.00985 0.001)
(0.0002 0.00985 0.001)
(0.00025 0.00985 0.001)
(0.0003 0.00985 0.001)
(0.00035 0.00985 0.001)
(0.0004 0.00985 0.001)
(0.00045 0.00985 0.001)
(0.0005 0.00985 0.001)
(0.00055 0.00985 0.001)
(0.0006 0.00985 0.001)
(0.00065 0.00985 0.001)
(0.0007 0.00985 0.001)
(0.00075 0.00985 0.001)
(0.0008 0.00985 0.001)
(0.00085 0.00985 0.001)
(0.0009 0.00985 0.001)
(0.00095 0.00985 0.001)
(0.001 0.00985 0.001)
(0 0.0099 0.001)
(5e-05 0.0099 0.001)
(0.0001 0.0099 0.001)
(0.00015 0.0099 0.001)
(0.0002 0.0099 0.001)
(0.00025 0.0099 0.001)
(0.0003 0.0099 0.001)
(0.00035 0.0099 0.001)
(0.0004 0.0099 0.001)
(0.00045 0.0099 0.001)
(0.0005 0.0099 0.001)
(0.00055 0.0099 0.001)
(0.0006 0.0099 0.001)
(0.00065 0.0099 0.001)
(0.0007 0.0099 0.001)
(0.00075 0.0099 0.001)
(0.0008 0.0099 0.001)
(0.00085 0.0099 0.001)
(0.0009 0.0099 0.001)
(0.00095 0.0099 0.001)
(0.001 0.0099 0.001)
(0 0.00995 0.001)
(5e-05 0.00995 0.001)
(0.0001 0.00995 0.001)
(0.00015 0.00995 0.001)
(0.0002 0.00995 0.001)
(0.00025 0.00995 0.001)
(0.0003 0.00995 0.001)
(0.00035 0.00995 0.001)
(0.0004 0.00995 0.001)
(0.00045 0.00995 0.001)
(0.0005 0.00995 0.001)
(0.00055 0.00995 0.001)
(0.0006 0.00995 0.001)
(0.00065 0.00995 0.001)
(0.0007 0.00995 0.001)
(0.00075 0.00995 0.001)
(0.0008 0.00995 0.001)
(0.00085 0.00995 0.001)
(0.0009 0.00995 0.001)
(0.00095 0.00995 0.001)
(0.001 0.00995 0.001)
(0 0.01 0.001)
(5e-05 0.01 0.001)
(0.0001 0.01 0.001)
(0.00015 0.01 0.001)
(0.0002 0.01 0.001)
(0.00025 0.01 0.001)
(0.0003 0.01 0.001)
(0.00035 0.01 0.001)
(0.0004 0.01 0.001)
(0.00045 0.01 0.001)
(0.0005 0.01 0.001)
(0.00055 0.01 0.001)
(0.0006 0.01 0.001)
(0.00065 0.01 0.001)
(0.0007 0.01 0.001)
(0.00075 0.01 0.001)
(0.0008 0.01 0.001)
(0.00085 0.01 0.001)
(0.0009 0.01 0.001)
(0.00095 0.01 0.001)
(0.001 0.01 0.001)
(0 0.01005 0.001)
(5e-05 0.01005 0.001)
(0.0001 0.01005 0.001)
(0.00015 0.01005 0.001)
(0.0002 0.01005 0.001)
(0.00025 0.01005 0.001)
(0.0003 0.01005 0.001)
(0.00035 0.01005 0.001)
(0.0004 0.01005 0.001)
(0.00045 0.01005 0.001)
(0.0005 0.01005 0.001)
(0.00055 0.01005 0.001)
(0.0006 0.01005 0.001)
(0.00065 0.01005 0.001)
(0.0007 0.01005 0.001)
(0.00075 0.01005 0.001)
(0.0008 0.01005 0.001)
(0.00085 0.01005 0.001)
(0.0009 0.01005 0.001)
(0.00095 0.01005 0.001)
(0.001 0.01005 0.001)
(0 0.0101 0.001)
(5e-05 0.0101 0.001)
(0.0001 0.0101 0.001)
(0.00015 0.0101 0.001)
(0.0002 0.0101 0.001)
(0.00025 0.0101 0.001)
(0.0003 0.0101 0.001)
(0.00035 0.0101 0.001)
(0.0004 0.0101 0.001)
(0.00045 0.0101 0.001)
(0.0005 0.0101 0.001)
(0.00055 0.0101 0.001)
(0.0006 0.0101 0.001)
(0.00065 0.0101 0.001)
(0.0007 0.0101 0.001)
(0.00075 0.0101 0.001)
(0.0008 0.0101 0.001)
(0.00085 0.0101 0.001)
(0.0009 0.0101 0.001)
(0.00095 0.0101 0.001)
(0.001 0.0101 0.001)
(0 0.01015 0.001)
(5e-05 0.01015 0.001)
(0.0001 0.01015 0.001)
(0.00015 0.01015 0.001)
(0.0002 0.01015 0.001)
(0.00025 0.01015 0.001)
(0.0003 0.01015 0.001)
(0.00035 0.01015 0.001)
(0.0004 0.01015 0.001)
(0.00045 0.01015 0.001)
(0.0005 0.01015 0.001)
(0.00055 0.01015 0.001)
(0.0006 0.01015 0.001)
(0.00065 0.01015 0.001)
(0.0007 0.01015 0.001)
(0.00075 0.01015 0.001)
(0.0008 0.01015 0.001)
(0.00085 0.01015 0.001)
(0.0009 0.01015 0.001)
(0.00095 0.01015 0.001)
(0.001 0.01015 0.001)
(0 0.0102 0.001)
(5e-05 0.0102 0.001)
(0.0001 0.0102 0.001)
(0.00015 0.0102 0.001)
(0.0002 0.0102 0.001)
(0.00025 0.0102 0.001)
(0.0003 0.0102 0.001)
(0.00035 0.0102 0.001)
(0.0004 0.0102 0.001)
(0.00045 0.0102 0.001)
(0.0005 0.0102 0.001)
(0.00055 0.0102 0.001)
(0.0006 0.0102 0.001)
(0.00065 0.0102 0.001)
(0.0007 0.0102 0.001)
(0.00075 0.0102 0.001)
(0.0008 0.0102 0.001)
(0.00085 0.0102 0.001)
(0.0009 0.0102 0.001)
(0.00095 0.0102 0.001)
(0.001 0.0102 0.001)
(0 0.01025 0.001)
(5e-05 0.01025 0.001)
(0.0001 0.01025 0.001)
(0.00015 0.01025 0.001)
(0.0002 0.01025 0.001)
(0.00025 0.01025 0.001)
(0.0003 0.01025 0.001)
(0.00035 0.01025 0.001)
(0.0004 0.01025 0.001)
(0.00045 0.01025 0.001)
(0.0005 0.01025 0.001)
(0.00055 0.01025 0.001)
(0.0006 0.01025 0.001)
(0.00065 0.01025 0.001)
(0.0007 0.01025 0.001)
(0.00075 0.01025 0.001)
(0.0008 0.01025 0.001)
(0.00085 0.01025 0.001)
(0.0009 0.01025 0.001)
(0.00095 0.01025 0.001)
(0.001 0.01025 0.001)
(0 0.0103 0.001)
(5e-05 0.0103 0.001)
(0.0001 0.0103 0.001)
(0.00015 0.0103 0.001)
(0.0002 0.0103 0.001)
(0.00025 0.0103 0.001)
(0.0003 0.0103 0.001)
(0.00035 0.0103 0.001)
(0.0004 0.0103 0.001)
(0.00045 0.0103 0.001)
(0.0005 0.0103 0.001)
(0.00055 0.0103 0.001)
(0.0006 0.0103 0.001)
(0.00065 0.0103 0.001)
(0.0007 0.0103 0.001)
(0.00075 0.0103 0.001)
(0.0008 0.0103 0.001)
(0.00085 0.0103 0.001)
(0.0009 0.0103 0.001)
(0.00095 0.0103 0.001)
(0.001 0.0103 0.001)
(0 0.01035 0.001)
(5e-05 0.01035 0.001)
(0.0001 0.01035 0.001)
(0.00015 0.01035 0.001)
(0.0002 0.01035 0.001)
(0.00025 0.01035 0.001)
(0.0003 0.01035 0.001)
(0.00035 0.01035 0.001)
(0.0004 0.01035 0.001)
(0.00045 0.01035 0.001)
(0.0005 0.01035 0.001)
(0.00055 0.01035 0.001)
(0.0006 0.01035 0.001)
(0.00065 0.01035 0.001)
(0.0007 0.01035 0.001)
(0.00075 0.01035 0.001)
(0.0008 0.01035 0.001)
(0.00085 0.01035 0.001)
(0.0009 0.01035 0.001)
(0.00095 0.01035 0.001)
(0.001 0.01035 0.001)
(0 0.0104 0.001)
(5e-05 0.0104 0.001)
(0.0001 0.0104 0.001)
(0.00015 0.0104 0.001)
(0.0002 0.0104 0.001)
(0.00025 0.0104 0.001)
(0.0003 0.0104 0.001)
(0.00035 0.0104 0.001)
(0.0004 0.0104 0.001)
(0.00045 0.0104 0.001)
(0.0005 0.0104 0.001)
(0.00055 0.0104 0.001)
(0.0006 0.0104 0.001)
(0.00065 0.0104 0.001)
(0.0007 0.0104 0.001)
(0.00075 0.0104 0.001)
(0.0008 0.0104 0.001)
(0.00085 0.0104 0.001)
(0.0009 0.0104 0.001)
(0.00095 0.0104 0.001)
(0.001 0.0104 0.001)
(0 0.01045 0.001)
(5e-05 0.01045 0.001)
(0.0001 0.01045 0.001)
(0.00015 0.01045 0.001)
(0.0002 0.01045 0.001)
(0.00025 0.01045 0.001)
(0.0003 0.01045 0.001)
(0.00035 0.01045 0.001)
(0.0004 0.01045 0.001)
(0.00045 0.01045 0.001)
(0.0005 0.01045 0.001)
(0.00055 0.01045 0.001)
(0.0006 0.01045 0.001)
(0.00065 0.01045 0.001)
(0.0007 0.01045 0.001)
(0.00075 0.01045 0.001)
(0.0008 0.01045 0.001)
(0.00085 0.01045 0.001)
(0.0009 0.01045 0.001)
(0.00095 0.01045 0.001)
(0.001 0.01045 0.001)
(0 0.0105 0.001)
(5e-05 0.0105 0.001)
(0.0001 0.0105 0.001)
(0.00015 0.0105 0.001)
(0.0002 0.0105 0.001)
(0.00025 0.0105 0.001)
(0.0003 0.0105 0.001)
(0.00035 0.0105 0.001)
(0.0004 0.0105 0.001)
(0.00045 0.0105 0.001)
(0.0005 0.0105 0.001)
(0.00055 0.0105 0.001)
(0.0006 0.0105 0.001)
(0.00065 0.0105 0.001)
(0.0007 0.0105 0.001)
(0.00075 0.0105 0.001)
(0.0008 0.0105 0.001)
(0.00085 0.0105 0.001)
(0.0009 0.0105 0.001)
(0.00095 0.0105 0.001)
(0.001 0.0105 0.001)
(0 0.01055 0.001)
(5e-05 0.01055 0.001)
(0.0001 0.01055 0.001)
(0.00015 0.01055 0.001)
(0.0002 0.01055 0.001)
(0.00025 0.01055 0.001)
(0.0003 0.01055 0.001)
(0.00035 0.01055 0.001)
(0.0004 0.01055 0.001)
(0.00045 0.01055 0.001)
(0.0005 0.01055 0.001)
(0.00055 0.01055 0.001)
(0.0006 0.01055 0.001)
(0.00065 0.01055 0.001)
(0.0007 0.01055 0.001)
(0.00075 0.01055 0.001)
(0.0008 0.01055 0.001)
(0.00085 0.01055 0.001)
(0.0009 0.01055 0.001)
(0.00095 0.01055 0.001)
(0.001 0.01055 0.001)
(0 0.0106 0.001)
(5e-05 0.0106 0.001)
(0.0001 0.0106 0.001)
(0.00015 0.0106 0.001)
(0.0002 0.0106 0.001)
(0.00025 0.0106 0.001)
(0.0003 0.0106 0.001)
(0.00035 0.0106 0.001)
(0.0004 0.0106 0.001)
(0.00045 0.0106 0.001)
(0.0005 0.0106 0.001)
(0.00055 0.0106 0.001)
(0.0006 0.0106 0.001)
(0.00065 0.0106 0.001)
(0.0007 0.0106 0.001)
(0.00075 0.0106 0.001)
(0.0008 0.0106 0.001)
(0.00085 0.0106 0.001)
(0.0009 0.0106 0.001)
(0.00095 0.0106 0.001)
(0.001 0.0106 0.001)
(0 0.01065 0.001)
(5e-05 0.01065 0.001)
(0.0001 0.01065 0.001)
(0.00015 0.01065 0.001)
(0.0002 0.01065 0.001)
(0.00025 0.01065 0.001)
(0.0003 0.01065 0.001)
(0.00035 0.01065 0.001)
(0.0004 0.01065 0.001)
(0.00045 0.01065 0.001)
(0.0005 0.01065 0.001)
(0.00055 0.01065 0.001)
(0.0006 0.01065 0.001)
(0.00065 0.01065 0.001)
(0.0007 0.01065 0.001)
(0.00075 0.01065 0.001)
(0.0008 0.01065 0.001)
(0.00085 0.01065 0.001)
(0.0009 0.01065 0.001)
(0.00095 0.01065 0.001)
(0.001 0.01065 0.001)
(0 0.0107 0.001)
(5e-05 0.0107 0.001)
(0.0001 0.0107 0.001)
(0.00015 0.0107 0.001)
(0.0002 0.0107 0.001)
(0.00025 0.0107 0.001)
(0.0003 0.0107 0.001)
(0.00035 0.0107 0.001)
(0.0004 0.0107 0.001)
(0.00045 0.0107 0.001)
(0.0005 0.0107 0.001)
(0.00055 0.0107 0.001)
(0.0006 0.0107 0.001)
(0.00065 0.0107 0.001)
(0.0007 0.0107 0.001)
(0.00075 0.0107 0.001)
(0.0008 0.0107 0.001)
(0.00085 0.0107 0.001)
(0.0009 0.0107 0.001)
(0.00095 0.0107 0.001)
(0.001 0.0107 0.001)
(0 0.01075 0.001)
(5e-05 0.01075 0.001)
(0.0001 0.01075 0.001)
(0.00015 0.01075 0.001)
(0.0002 0.01075 0.001)
(0.00025 0.01075 0.001)
(0.0003 0.01075 0.001)
(0.00035 0.01075 0.001)
(0.0004 0.01075 0.001)
(0.00045 0.01075 0.001)
(0.0005 0.01075 0.001)
(0.00055 0.01075 0.001)
(0.0006 0.01075 0.001)
(0.00065 0.01075 0.001)
(0.0007 0.01075 0.001)
(0.00075 0.01075 0.001)
(0.0008 0.01075 0.001)
(0.00085 0.01075 0.001)
(0.0009 0.01075 0.001)
(0.00095 0.01075 0.001)
(0.001 0.01075 0.001)
(0 0.0108 0.001)
(5e-05 0.0108 0.001)
(0.0001 0.0108 0.001)
(0.00015 0.0108 0.001)
(0.0002 0.0108 0.001)
(0.00025 0.0108 0.001)
(0.0003 0.0108 0.001)
(0.00035 0.0108 0.001)
(0.0004 0.0108 0.001)
(0.00045 0.0108 0.001)
(0.0005 0.0108 0.001)
(0.00055 0.0108 0.001)
(0.0006 0.0108 0.001)
(0.00065 0.0108 0.001)
(0.0007 0.0108 0.001)
(0.00075 0.0108 0.001)
(0.0008 0.0108 0.001)
(0.00085 0.0108 0.001)
(0.0009 0.0108 0.001)
(0.00095 0.0108 0.001)
(0.001 0.0108 0.001)
(0 0.01085 0.001)
(5e-05 0.01085 0.001)
(0.0001 0.01085 0.001)
(0.00015 0.01085 0.001)
(0.0002 0.01085 0.001)
(0.00025 0.01085 0.001)
(0.0003 0.01085 0.001)
(0.00035 0.01085 0.001)
(0.0004 0.01085 0.001)
(0.00045 0.01085 0.001)
(0.0005 0.01085 0.001)
(0.00055 0.01085 0.001)
(0.0006 0.01085 0.001)
(0.00065 0.01085 0.001)
(0.0007 0.01085 0.001)
(0.00075 0.01085 0.001)
(0.0008 0.01085 0.001)
(0.00085 0.01085 0.001)
(0.0009 0.01085 0.001)
(0.00095 0.01085 0.001)
(0.001 0.01085 0.001)
(0 0.0109 0.001)
(5e-05 0.0109 0.001)
(0.0001 0.0109 0.001)
(0.00015 0.0109 0.001)
(0.0002 0.0109 0.001)
(0.00025 0.0109 0.001)
(0.0003 0.0109 0.001)
(0.00035 0.0109 0.001)
(0.0004 0.0109 0.001)
(0.00045 0.0109 0.001)
(0.0005 0.0109 0.001)
(0.00055 0.0109 0.001)
(0.0006 0.0109 0.001)
(0.00065 0.0109 0.001)
(0.0007 0.0109 0.001)
(0.00075 0.0109 0.001)
(0.0008 0.0109 0.001)
(0.00085 0.0109 0.001)
(0.0009 0.0109 0.001)
(0.00095 0.0109 0.001)
(0.001 0.0109 0.001)
(0 0.01095 0.001)
(5e-05 0.01095 0.001)
(0.0001 0.01095 0.001)
(0.00015 0.01095 0.001)
(0.0002 0.01095 0.001)
(0.00025 0.01095 0.001)
(0.0003 0.01095 0.001)
(0.00035 0.01095 0.001)
(0.0004 0.01095 0.001)
(0.00045 0.01095 0.001)
(0.0005 0.01095 0.001)
(0.00055 0.01095 0.001)
(0.0006 0.01095 0.001)
(0.00065 0.01095 0.001)
(0.0007 0.01095 0.001)
(0.00075 0.01095 0.001)
(0.0008 0.01095 0.001)
(0.00085 0.01095 0.001)
(0.0009 0.01095 0.001)
(0.00095 0.01095 0.001)
(0.001 0.01095 0.001)
(0 0.011 0.001)
(5e-05 0.011 0.001)
(0.0001 0.011 0.001)
(0.00015 0.011 0.001)
(0.0002 0.011 0.001)
(0.00025 0.011 0.001)
(0.0003 0.011 0.001)
(0.00035 0.011 0.001)
(0.0004 0.011 0.001)
(0.00045 0.011 0.001)
(0.0005 0.011 0.001)
(0.00055 0.011 0.001)
(0.0006 0.011 0.001)
(0.00065 0.011 0.001)
(0.0007 0.011 0.001)
(0.00075 0.011 0.001)
(0.0008 0.011 0.001)
(0.00085 0.011 0.001)
(0.0009 0.011 0.001)
(0.00095 0.011 0.001)
(0.001 0.011 0.001)
(0 0.01105 0.001)
(5e-05 0.01105 0.001)
(0.0001 0.01105 0.001)
(0.00015 0.01105 0.001)
(0.0002 0.01105 0.001)
(0.00025 0.01105 0.001)
(0.0003 0.01105 0.001)
(0.00035 0.01105 0.001)
(0.0004 0.01105 0.001)
(0.00045 0.01105 0.001)
(0.0005 0.01105 0.001)
(0.00055 0.01105 0.001)
(0.0006 0.01105 0.001)
(0.00065 0.01105 0.001)
(0.0007 0.01105 0.001)
(0.00075 0.01105 0.001)
(0.0008 0.01105 0.001)
(0.00085 0.01105 0.001)
(0.0009 0.01105 0.001)
(0.00095 0.01105 0.001)
(0.001 0.01105 0.001)
(0 0.0111 0.001)
(5e-05 0.0111 0.001)
(0.0001 0.0111 0.001)
(0.00015 0.0111 0.001)
(0.0002 0.0111 0.001)
(0.00025 0.0111 0.001)
(0.0003 0.0111 0.001)
(0.00035 0.0111 0.001)
(0.0004 0.0111 0.001)
(0.00045 0.0111 0.001)
(0.0005 0.0111 0.001)
(0.00055 0.0111 0.001)
(0.0006 0.0111 0.001)
(0.00065 0.0111 0.001)
(0.0007 0.0111 0.001)
(0.00075 0.0111 0.001)
(0.0008 0.0111 0.001)
(0.00085 0.0111 0.001)
(0.0009 0.0111 0.001)
(0.00095 0.0111 0.001)
(0.001 0.0111 0.001)
(0 0.01115 0.001)
(5e-05 0.01115 0.001)
(0.0001 0.01115 0.001)
(0.00015 0.01115 0.001)
(0.0002 0.01115 0.001)
(0.00025 0.01115 0.001)
(0.0003 0.01115 0.001)
(0.00035 0.01115 0.001)
(0.0004 0.01115 0.001)
(0.00045 0.01115 0.001)
(0.0005 0.01115 0.001)
(0.00055 0.01115 0.001)
(0.0006 0.01115 0.001)
(0.00065 0.01115 0.001)
(0.0007 0.01115 0.001)
(0.00075 0.01115 0.001)
(0.0008 0.01115 0.001)
(0.00085 0.01115 0.001)
(0.0009 0.01115 0.001)
(0.00095 0.01115 0.001)
(0.001 0.01115 0.001)
(0 0.0112 0.001)
(5e-05 0.0112 0.001)
(0.0001 0.0112 0.001)
(0.00015 0.0112 0.001)
(0.0002 0.0112 0.001)
(0.00025 0.0112 0.001)
(0.0003 0.0112 0.001)
(0.00035 0.0112 0.001)
(0.0004 0.0112 0.001)
(0.00045 0.0112 0.001)
(0.0005 0.0112 0.001)
(0.00055 0.0112 0.001)
(0.0006 0.0112 0.001)
(0.00065 0.0112 0.001)
(0.0007 0.0112 0.001)
(0.00075 0.0112 0.001)
(0.0008 0.0112 0.001)
(0.00085 0.0112 0.001)
(0.0009 0.0112 0.001)
(0.00095 0.0112 0.001)
(0.001 0.0112 0.001)
(0 0.01125 0.001)
(5e-05 0.01125 0.001)
(0.0001 0.01125 0.001)
(0.00015 0.01125 0.001)
(0.0002 0.01125 0.001)
(0.00025 0.01125 0.001)
(0.0003 0.01125 0.001)
(0.00035 0.01125 0.001)
(0.0004 0.01125 0.001)
(0.00045 0.01125 0.001)
(0.0005 0.01125 0.001)
(0.00055 0.01125 0.001)
(0.0006 0.01125 0.001)
(0.00065 0.01125 0.001)
(0.0007 0.01125 0.001)
(0.00075 0.01125 0.001)
(0.0008 0.01125 0.001)
(0.00085 0.01125 0.001)
(0.0009 0.01125 0.001)
(0.00095 0.01125 0.001)
(0.001 0.01125 0.001)
(0 0.0113 0.001)
(5e-05 0.0113 0.001)
(0.0001 0.0113 0.001)
(0.00015 0.0113 0.001)
(0.0002 0.0113 0.001)
(0.00025 0.0113 0.001)
(0.0003 0.0113 0.001)
(0.00035 0.0113 0.001)
(0.0004 0.0113 0.001)
(0.00045 0.0113 0.001)
(0.0005 0.0113 0.001)
(0.00055 0.0113 0.001)
(0.0006 0.0113 0.001)
(0.00065 0.0113 0.001)
(0.0007 0.0113 0.001)
(0.00075 0.0113 0.001)
(0.0008 0.0113 0.001)
(0.00085 0.0113 0.001)
(0.0009 0.0113 0.001)
(0.00095 0.0113 0.001)
(0.001 0.0113 0.001)
(0 0.01135 0.001)
(5e-05 0.01135 0.001)
(0.0001 0.01135 0.001)
(0.00015 0.01135 0.001)
(0.0002 0.01135 0.001)
(0.00025 0.01135 0.001)
(0.0003 0.01135 0.001)
(0.00035 0.01135 0.001)
(0.0004 0.01135 0.001)
(0.00045 0.01135 0.001)
(0.0005 0.01135 0.001)
(0.00055 0.01135 0.001)
(0.0006 0.01135 0.001)
(0.00065 0.01135 0.001)
(0.0007 0.01135 0.001)
(0.00075 0.01135 0.001)
(0.0008 0.01135 0.001)
(0.00085 0.01135 0.001)
(0.0009 0.01135 0.001)
(0.00095 0.01135 0.001)
(0.001 0.01135 0.001)
(0 0.0114 0.001)
(5e-05 0.0114 0.001)
(0.0001 0.0114 0.001)
(0.00015 0.0114 0.001)
(0.0002 0.0114 0.001)
(0.00025 0.0114 0.001)
(0.0003 0.0114 0.001)
(0.00035 0.0114 0.001)
(0.0004 0.0114 0.001)
(0.00045 0.0114 0.001)
(0.0005 0.0114 0.001)
(0.00055 0.0114 0.001)
(0.0006 0.0114 0.001)
(0.00065 0.0114 0.001)
(0.0007 0.0114 0.001)
(0.00075 0.0114 0.001)
(0.0008 0.0114 0.001)
(0.00085 0.0114 0.001)
(0.0009 0.0114 0.001)
(0.00095 0.0114 0.001)
(0.001 0.0114 0.001)
(0 0.01145 0.001)
(5e-05 0.01145 0.001)
(0.0001 0.01145 0.001)
(0.00015 0.01145 0.001)
(0.0002 0.01145 0.001)
(0.00025 0.01145 0.001)
(0.0003 0.01145 0.001)
(0.00035 0.01145 0.001)
(0.0004 0.01145 0.001)
(0.00045 0.01145 0.001)
(0.0005 0.01145 0.001)
(0.00055 0.01145 0.001)
(0.0006 0.01145 0.001)
(0.00065 0.01145 0.001)
(0.0007 0.01145 0.001)
(0.00075 0.01145 0.001)
(0.0008 0.01145 0.001)
(0.00085 0.01145 0.001)
(0.0009 0.01145 0.001)
(0.00095 0.01145 0.001)
(0.001 0.01145 0.001)
(0 0.0115 0.001)
(5e-05 0.0115 0.001)
(0.0001 0.0115 0.001)
(0.00015 0.0115 0.001)
(0.0002 0.0115 0.001)
(0.00025 0.0115 0.001)
(0.0003 0.0115 0.001)
(0.00035 0.0115 0.001)
(0.0004 0.0115 0.001)
(0.00045 0.0115 0.001)
(0.0005 0.0115 0.001)
(0.00055 0.0115 0.001)
(0.0006 0.0115 0.001)
(0.00065 0.0115 0.001)
(0.0007 0.0115 0.001)
(0.00075 0.0115 0.001)
(0.0008 0.0115 0.001)
(0.00085 0.0115 0.001)
(0.0009 0.0115 0.001)
(0.00095 0.0115 0.001)
(0.001 0.0115 0.001)
(0 0.01155 0.001)
(5e-05 0.01155 0.001)
(0.0001 0.01155 0.001)
(0.00015 0.01155 0.001)
(0.0002 0.01155 0.001)
(0.00025 0.01155 0.001)
(0.0003 0.01155 0.001)
(0.00035 0.01155 0.001)
(0.0004 0.01155 0.001)
(0.00045 0.01155 0.001)
(0.0005 0.01155 0.001)
(0.00055 0.01155 0.001)
(0.0006 0.01155 0.001)
(0.00065 0.01155 0.001)
(0.0007 0.01155 0.001)
(0.00075 0.01155 0.001)
(0.0008 0.01155 0.001)
(0.00085 0.01155 0.001)
(0.0009 0.01155 0.001)
(0.00095 0.01155 0.001)
(0.001 0.01155 0.001)
(0 0.0116 0.001)
(5e-05 0.0116 0.001)
(0.0001 0.0116 0.001)
(0.00015 0.0116 0.001)
(0.0002 0.0116 0.001)
(0.00025 0.0116 0.001)
(0.0003 0.0116 0.001)
(0.00035 0.0116 0.001)
(0.0004 0.0116 0.001)
(0.00045 0.0116 0.001)
(0.0005 0.0116 0.001)
(0.00055 0.0116 0.001)
(0.0006 0.0116 0.001)
(0.00065 0.0116 0.001)
(0.0007 0.0116 0.001)
(0.00075 0.0116 0.001)
(0.0008 0.0116 0.001)
(0.00085 0.0116 0.001)
(0.0009 0.0116 0.001)
(0.00095 0.0116 0.001)
(0.001 0.0116 0.001)
(0 0.01165 0.001)
(5e-05 0.01165 0.001)
(0.0001 0.01165 0.001)
(0.00015 0.01165 0.001)
(0.0002 0.01165 0.001)
(0.00025 0.01165 0.001)
(0.0003 0.01165 0.001)
(0.00035 0.01165 0.001)
(0.0004 0.01165 0.001)
(0.00045 0.01165 0.001)
(0.0005 0.01165 0.001)
(0.00055 0.01165 0.001)
(0.0006 0.01165 0.001)
(0.00065 0.01165 0.001)
(0.0007 0.01165 0.001)
(0.00075 0.01165 0.001)
(0.0008 0.01165 0.001)
(0.00085 0.01165 0.001)
(0.0009 0.01165 0.001)
(0.00095 0.01165 0.001)
(0.001 0.01165 0.001)
(0 0.0117 0.001)
(5e-05 0.0117 0.001)
(0.0001 0.0117 0.001)
(0.00015 0.0117 0.001)
(0.0002 0.0117 0.001)
(0.00025 0.0117 0.001)
(0.0003 0.0117 0.001)
(0.00035 0.0117 0.001)
(0.0004 0.0117 0.001)
(0.00045 0.0117 0.001)
(0.0005 0.0117 0.001)
(0.00055 0.0117 0.001)
(0.0006 0.0117 0.001)
(0.00065 0.0117 0.001)
(0.0007 0.0117 0.001)
(0.00075 0.0117 0.001)
(0.0008 0.0117 0.001)
(0.00085 0.0117 0.001)
(0.0009 0.0117 0.001)
(0.00095 0.0117 0.001)
(0.001 0.0117 0.001)
(0 0.01175 0.001)
(5e-05 0.01175 0.001)
(0.0001 0.01175 0.001)
(0.00015 0.01175 0.001)
(0.0002 0.01175 0.001)
(0.00025 0.01175 0.001)
(0.0003 0.01175 0.001)
(0.00035 0.01175 0.001)
(0.0004 0.01175 0.001)
(0.00045 0.01175 0.001)
(0.0005 0.01175 0.001)
(0.00055 0.01175 0.001)
(0.0006 0.01175 0.001)
(0.00065 0.01175 0.001)
(0.0007 0.01175 0.001)
(0.00075 0.01175 0.001)
(0.0008 0.01175 0.001)
(0.00085 0.01175 0.001)
(0.0009 0.01175 0.001)
(0.00095 0.01175 0.001)
(0.001 0.01175 0.001)
(0 0.0118 0.001)
(5e-05 0.0118 0.001)
(0.0001 0.0118 0.001)
(0.00015 0.0118 0.001)
(0.0002 0.0118 0.001)
(0.00025 0.0118 0.001)
(0.0003 0.0118 0.001)
(0.00035 0.0118 0.001)
(0.0004 0.0118 0.001)
(0.00045 0.0118 0.001)
(0.0005 0.0118 0.001)
(0.00055 0.0118 0.001)
(0.0006 0.0118 0.001)
(0.00065 0.0118 0.001)
(0.0007 0.0118 0.001)
(0.00075 0.0118 0.001)
(0.0008 0.0118 0.001)
(0.00085 0.0118 0.001)
(0.0009 0.0118 0.001)
(0.00095 0.0118 0.001)
(0.001 0.0118 0.001)
(0 0.01185 0.001)
(5e-05 0.01185 0.001)
(0.0001 0.01185 0.001)
(0.00015 0.01185 0.001)
(0.0002 0.01185 0.001)
(0.00025 0.01185 0.001)
(0.0003 0.01185 0.001)
(0.00035 0.01185 0.001)
(0.0004 0.01185 0.001)
(0.00045 0.01185 0.001)
(0.0005 0.01185 0.001)
(0.00055 0.01185 0.001)
(0.0006 0.01185 0.001)
(0.00065 0.01185 0.001)
(0.0007 0.01185 0.001)
(0.00075 0.01185 0.001)
(0.0008 0.01185 0.001)
(0.00085 0.01185 0.001)
(0.0009 0.01185 0.001)
(0.00095 0.01185 0.001)
(0.001 0.01185 0.001)
(0 0.0119 0.001)
(5e-05 0.0119 0.001)
(0.0001 0.0119 0.001)
(0.00015 0.0119 0.001)
(0.0002 0.0119 0.001)
(0.00025 0.0119 0.001)
(0.0003 0.0119 0.001)
(0.00035 0.0119 0.001)
(0.0004 0.0119 0.001)
(0.00045 0.0119 0.001)
(0.0005 0.0119 0.001)
(0.00055 0.0119 0.001)
(0.0006 0.0119 0.001)
(0.00065 0.0119 0.001)
(0.0007 0.0119 0.001)
(0.00075 0.0119 0.001)
(0.0008 0.0119 0.001)
(0.00085 0.0119 0.001)
(0.0009 0.0119 0.001)
(0.00095 0.0119 0.001)
(0.001 0.0119 0.001)
(0 0.01195 0.001)
(5e-05 0.01195 0.001)
(0.0001 0.01195 0.001)
(0.00015 0.01195 0.001)
(0.0002 0.01195 0.001)
(0.00025 0.01195 0.001)
(0.0003 0.01195 0.001)
(0.00035 0.01195 0.001)
(0.0004 0.01195 0.001)
(0.00045 0.01195 0.001)
(0.0005 0.01195 0.001)
(0.00055 0.01195 0.001)
(0.0006 0.01195 0.001)
(0.00065 0.01195 0.001)
(0.0007 0.01195 0.001)
(0.00075 0.01195 0.001)
(0.0008 0.01195 0.001)
(0.00085 0.01195 0.001)
(0.0009 0.01195 0.001)
(0.00095 0.01195 0.001)
(0.001 0.01195 0.001)
(0 0.012 0.001)
(5e-05 0.012 0.001)
(0.0001 0.012 0.001)
(0.00015 0.012 0.001)
(0.0002 0.012 0.001)
(0.00025 0.012 0.001)
(0.0003 0.012 0.001)
(0.00035 0.012 0.001)
(0.0004 0.012 0.001)
(0.00045 0.012 0.001)
(0.0005 0.012 0.001)
(0.00055 0.012 0.001)
(0.0006 0.012 0.001)
(0.00065 0.012 0.001)
(0.0007 0.012 0.001)
(0.00075 0.012 0.001)
(0.0008 0.012 0.001)
(0.00085 0.012 0.001)
(0.0009 0.012 0.001)
(0.00095 0.012 0.001)
(0.001 0.012 0.001)
(0 0.01205 0.001)
(5e-05 0.01205 0.001)
(0.0001 0.01205 0.001)
(0.00015 0.01205 0.001)
(0.0002 0.01205 0.001)
(0.00025 0.01205 0.001)
(0.0003 0.01205 0.001)
(0.00035 0.01205 0.001)
(0.0004 0.01205 0.001)
(0.00045 0.01205 0.001)
(0.0005 0.01205 0.001)
(0.00055 0.01205 0.001)
(0.0006 0.01205 0.001)
(0.00065 0.01205 0.001)
(0.0007 0.01205 0.001)
(0.00075 0.01205 0.001)
(0.0008 0.01205 0.001)
(0.00085 0.01205 0.001)
(0.0009 0.01205 0.001)
(0.00095 0.01205 0.001)
(0.001 0.01205 0.001)
(0 0.0121 0.001)
(5e-05 0.0121 0.001)
(0.0001 0.0121 0.001)
(0.00015 0.0121 0.001)
(0.0002 0.0121 0.001)
(0.00025 0.0121 0.001)
(0.0003 0.0121 0.001)
(0.00035 0.0121 0.001)
(0.0004 0.0121 0.001)
(0.00045 0.0121 0.001)
(0.0005 0.0121 0.001)
(0.00055 0.0121 0.001)
(0.0006 0.0121 0.001)
(0.00065 0.0121 0.001)
(0.0007 0.0121 0.001)
(0.00075 0.0121 0.001)
(0.0008 0.0121 0.001)
(0.00085 0.0121 0.001)
(0.0009 0.0121 0.001)
(0.00095 0.0121 0.001)
(0.001 0.0121 0.001)
(0 0.01215 0.001)
(5e-05 0.01215 0.001)
(0.0001 0.01215 0.001)
(0.00015 0.01215 0.001)
(0.0002 0.01215 0.001)
(0.00025 0.01215 0.001)
(0.0003 0.01215 0.001)
(0.00035 0.01215 0.001)
(0.0004 0.01215 0.001)
(0.00045 0.01215 0.001)
(0.0005 0.01215 0.001)
(0.00055 0.01215 0.001)
(0.0006 0.01215 0.001)
(0.00065 0.01215 0.001)
(0.0007 0.01215 0.001)
(0.00075 0.01215 0.001)
(0.0008 0.01215 0.001)
(0.00085 0.01215 0.001)
(0.0009 0.01215 0.001)
(0.00095 0.01215 0.001)
(0.001 0.01215 0.001)
(0 0.0122 0.001)
(5e-05 0.0122 0.001)
(0.0001 0.0122 0.001)
(0.00015 0.0122 0.001)
(0.0002 0.0122 0.001)
(0.00025 0.0122 0.001)
(0.0003 0.0122 0.001)
(0.00035 0.0122 0.001)
(0.0004 0.0122 0.001)
(0.00045 0.0122 0.001)
(0.0005 0.0122 0.001)
(0.00055 0.0122 0.001)
(0.0006 0.0122 0.001)
(0.00065 0.0122 0.001)
(0.0007 0.0122 0.001)
(0.00075 0.0122 0.001)
(0.0008 0.0122 0.001)
(0.00085 0.0122 0.001)
(0.0009 0.0122 0.001)
(0.00095 0.0122 0.001)
(0.001 0.0122 0.001)
(0 0.01225 0.001)
(5e-05 0.01225 0.001)
(0.0001 0.01225 0.001)
(0.00015 0.01225 0.001)
(0.0002 0.01225 0.001)
(0.00025 0.01225 0.001)
(0.0003 0.01225 0.001)
(0.00035 0.01225 0.001)
(0.0004 0.01225 0.001)
(0.00045 0.01225 0.001)
(0.0005 0.01225 0.001)
(0.00055 0.01225 0.001)
(0.0006 0.01225 0.001)
(0.00065 0.01225 0.001)
(0.0007 0.01225 0.001)
(0.00075 0.01225 0.001)
(0.0008 0.01225 0.001)
(0.00085 0.01225 0.001)
(0.0009 0.01225 0.001)
(0.00095 0.01225 0.001)
(0.001 0.01225 0.001)
(0 0.0123 0.001)
(5e-05 0.0123 0.001)
(0.0001 0.0123 0.001)
(0.00015 0.0123 0.001)
(0.0002 0.0123 0.001)
(0.00025 0.0123 0.001)
(0.0003 0.0123 0.001)
(0.00035 0.0123 0.001)
(0.0004 0.0123 0.001)
(0.00045 0.0123 0.001)
(0.0005 0.0123 0.001)
(0.00055 0.0123 0.001)
(0.0006 0.0123 0.001)
(0.00065 0.0123 0.001)
(0.0007 0.0123 0.001)
(0.00075 0.0123 0.001)
(0.0008 0.0123 0.001)
(0.00085 0.0123 0.001)
(0.0009 0.0123 0.001)
(0.00095 0.0123 0.001)
(0.001 0.0123 0.001)
(0 0.01235 0.001)
(5e-05 0.01235 0.001)
(0.0001 0.01235 0.001)
(0.00015 0.01235 0.001)
(0.0002 0.01235 0.001)
(0.00025 0.01235 0.001)
(0.0003 0.01235 0.001)
(0.00035 0.01235 0.001)
(0.0004 0.01235 0.001)
(0.00045 0.01235 0.001)
(0.0005 0.01235 0.001)
(0.00055 0.01235 0.001)
(0.0006 0.01235 0.001)
(0.00065 0.01235 0.001)
(0.0007 0.01235 0.001)
(0.00075 0.01235 0.001)
(0.0008 0.01235 0.001)
(0.00085 0.01235 0.001)
(0.0009 0.01235 0.001)
(0.00095 0.01235 0.001)
(0.001 0.01235 0.001)
(0 0.0124 0.001)
(5e-05 0.0124 0.001)
(0.0001 0.0124 0.001)
(0.00015 0.0124 0.001)
(0.0002 0.0124 0.001)
(0.00025 0.0124 0.001)
(0.0003 0.0124 0.001)
(0.00035 0.0124 0.001)
(0.0004 0.0124 0.001)
(0.00045 0.0124 0.001)
(0.0005 0.0124 0.001)
(0.00055 0.0124 0.001)
(0.0006 0.0124 0.001)
(0.00065 0.0124 0.001)
(0.0007 0.0124 0.001)
(0.00075 0.0124 0.001)
(0.0008 0.0124 0.001)
(0.00085 0.0124 0.001)
(0.0009 0.0124 0.001)
(0.00095 0.0124 0.001)
(0.001 0.0124 0.001)
(0 0.01245 0.001)
(5e-05 0.01245 0.001)
(0.0001 0.01245 0.001)
(0.00015 0.01245 0.001)
(0.0002 0.01245 0.001)
(0.00025 0.01245 0.001)
(0.0003 0.01245 0.001)
(0.00035 0.01245 0.001)
(0.0004 0.01245 0.001)
(0.00045 0.01245 0.001)
(0.0005 0.01245 0.001)
(0.00055 0.01245 0.001)
(0.0006 0.01245 0.001)
(0.00065 0.01245 0.001)
(0.0007 0.01245 0.001)
(0.00075 0.01245 0.001)
(0.0008 0.01245 0.001)
(0.00085 0.01245 0.001)
(0.0009 0.01245 0.001)
(0.00095 0.01245 0.001)
(0.001 0.01245 0.001)
(0 0.0125 0.001)
(5e-05 0.0125 0.001)
(0.0001 0.0125 0.001)
(0.00015 0.0125 0.001)
(0.0002 0.0125 0.001)
(0.00025 0.0125 0.001)
(0.0003 0.0125 0.001)
(0.00035 0.0125 0.001)
(0.0004 0.0125 0.001)
(0.00045 0.0125 0.001)
(0.0005 0.0125 0.001)
(0.00055 0.0125 0.001)
(0.0006 0.0125 0.001)
(0.00065 0.0125 0.001)
(0.0007 0.0125 0.001)
(0.00075 0.0125 0.001)
(0.0008 0.0125 0.001)
(0.00085 0.0125 0.001)
(0.0009 0.0125 0.001)
(0.00095 0.0125 0.001)
(0.001 0.0125 0.001)
(0 0.01255 0.001)
(5e-05 0.01255 0.001)
(0.0001 0.01255 0.001)
(0.00015 0.01255 0.001)
(0.0002 0.01255 0.001)
(0.00025 0.01255 0.001)
(0.0003 0.01255 0.001)
(0.00035 0.01255 0.001)
(0.0004 0.01255 0.001)
(0.00045 0.01255 0.001)
(0.0005 0.01255 0.001)
(0.00055 0.01255 0.001)
(0.0006 0.01255 0.001)
(0.00065 0.01255 0.001)
(0.0007 0.01255 0.001)
(0.00075 0.01255 0.001)
(0.0008 0.01255 0.001)
(0.00085 0.01255 0.001)
(0.0009 0.01255 0.001)
(0.00095 0.01255 0.001)
(0.001 0.01255 0.001)
(0 0.0126 0.001)
(5e-05 0.0126 0.001)
(0.0001 0.0126 0.001)
(0.00015 0.0126 0.001)
(0.0002 0.0126 0.001)
(0.00025 0.0126 0.001)
(0.0003 0.0126 0.001)
(0.00035 0.0126 0.001)
(0.0004 0.0126 0.001)
(0.00045 0.0126 0.001)
(0.0005 0.0126 0.001)
(0.00055 0.0126 0.001)
(0.0006 0.0126 0.001)
(0.00065 0.0126 0.001)
(0.0007 0.0126 0.001)
(0.00075 0.0126 0.001)
(0.0008 0.0126 0.001)
(0.00085 0.0126 0.001)
(0.0009 0.0126 0.001)
(0.00095 0.0126 0.001)
(0.001 0.0126 0.001)
(0 0.01265 0.001)
(5e-05 0.01265 0.001)
(0.0001 0.01265 0.001)
(0.00015 0.01265 0.001)
(0.0002 0.01265 0.001)
(0.00025 0.01265 0.001)
(0.0003 0.01265 0.001)
(0.00035 0.01265 0.001)
(0.0004 0.01265 0.001)
(0.00045 0.01265 0.001)
(0.0005 0.01265 0.001)
(0.00055 0.01265 0.001)
(0.0006 0.01265 0.001)
(0.00065 0.01265 0.001)
(0.0007 0.01265 0.001)
(0.00075 0.01265 0.001)
(0.0008 0.01265 0.001)
(0.00085 0.01265 0.001)
(0.0009 0.01265 0.001)
(0.00095 0.01265 0.001)
(0.001 0.01265 0.001)
(0 0.0127 0.001)
(5e-05 0.0127 0.001)
(0.0001 0.0127 0.001)
(0.00015 0.0127 0.001)
(0.0002 0.0127 0.001)
(0.00025 0.0127 0.001)
(0.0003 0.0127 0.001)
(0.00035 0.0127 0.001)
(0.0004 0.0127 0.001)
(0.00045 0.0127 0.001)
(0.0005 0.0127 0.001)
(0.00055 0.0127 0.001)
(0.0006 0.0127 0.001)
(0.00065 0.0127 0.001)
(0.0007 0.0127 0.001)
(0.00075 0.0127 0.001)
(0.0008 0.0127 0.001)
(0.00085 0.0127 0.001)
(0.0009 0.0127 0.001)
(0.00095 0.0127 0.001)
(0.001 0.0127 0.001)
(0 0.01275 0.001)
(5e-05 0.01275 0.001)
(0.0001 0.01275 0.001)
(0.00015 0.01275 0.001)
(0.0002 0.01275 0.001)
(0.00025 0.01275 0.001)
(0.0003 0.01275 0.001)
(0.00035 0.01275 0.001)
(0.0004 0.01275 0.001)
(0.00045 0.01275 0.001)
(0.0005 0.01275 0.001)
(0.00055 0.01275 0.001)
(0.0006 0.01275 0.001)
(0.00065 0.01275 0.001)
(0.0007 0.01275 0.001)
(0.00075 0.01275 0.001)
(0.0008 0.01275 0.001)
(0.00085 0.01275 0.001)
(0.0009 0.01275 0.001)
(0.00095 0.01275 0.001)
(0.001 0.01275 0.001)
(0 0.0128 0.001)
(5e-05 0.0128 0.001)
(0.0001 0.0128 0.001)
(0.00015 0.0128 0.001)
(0.0002 0.0128 0.001)
(0.00025 0.0128 0.001)
(0.0003 0.0128 0.001)
(0.00035 0.0128 0.001)
(0.0004 0.0128 0.001)
(0.00045 0.0128 0.001)
(0.0005 0.0128 0.001)
(0.00055 0.0128 0.001)
(0.0006 0.0128 0.001)
(0.00065 0.0128 0.001)
(0.0007 0.0128 0.001)
(0.00075 0.0128 0.001)
(0.0008 0.0128 0.001)
(0.00085 0.0128 0.001)
(0.0009 0.0128 0.001)
(0.00095 0.0128 0.001)
(0.001 0.0128 0.001)
(0 0.01285 0.001)
(5e-05 0.01285 0.001)
(0.0001 0.01285 0.001)
(0.00015 0.01285 0.001)
(0.0002 0.01285 0.001)
(0.00025 0.01285 0.001)
(0.0003 0.01285 0.001)
(0.00035 0.01285 0.001)
(0.0004 0.01285 0.001)
(0.00045 0.01285 0.001)
(0.0005 0.01285 0.001)
(0.00055 0.01285 0.001)
(0.0006 0.01285 0.001)
(0.00065 0.01285 0.001)
(0.0007 0.01285 0.001)
(0.00075 0.01285 0.001)
(0.0008 0.01285 0.001)
(0.00085 0.01285 0.001)
(0.0009 0.01285 0.001)
(0.00095 0.01285 0.001)
(0.001 0.01285 0.001)
(0 0.0129 0.001)
(5e-05 0.0129 0.001)
(0.0001 0.0129 0.001)
(0.00015 0.0129 0.001)
(0.0002 0.0129 0.001)
(0.00025 0.0129 0.001)
(0.0003 0.0129 0.001)
(0.00035 0.0129 0.001)
(0.0004 0.0129 0.001)
(0.00045 0.0129 0.001)
(0.0005 0.0129 0.001)
(0.00055 0.0129 0.001)
(0.0006 0.0129 0.001)
(0.00065 0.0129 0.001)
(0.0007 0.0129 0.001)
(0.00075 0.0129 0.001)
(0.0008 0.0129 0.001)
(0.00085 0.0129 0.001)
(0.0009 0.0129 0.001)
(0.00095 0.0129 0.001)
(0.001 0.0129 0.001)
(0 0.01295 0.001)
(5e-05 0.01295 0.001)
(0.0001 0.01295 0.001)
(0.00015 0.01295 0.001)
(0.0002 0.01295 0.001)
(0.00025 0.01295 0.001)
(0.0003 0.01295 0.001)
(0.00035 0.01295 0.001)
(0.0004 0.01295 0.001)
(0.00045 0.01295 0.001)
(0.0005 0.01295 0.001)
(0.00055 0.01295 0.001)
(0.0006 0.01295 0.001)
(0.00065 0.01295 0.001)
(0.0007 0.01295 0.001)
(0.00075 0.01295 0.001)
(0.0008 0.01295 0.001)
(0.00085 0.01295 0.001)
(0.0009 0.01295 0.001)
(0.00095 0.01295 0.001)
(0.001 0.01295 0.001)
(0 0.013 0.001)
(5e-05 0.013 0.001)
(0.0001 0.013 0.001)
(0.00015 0.013 0.001)
(0.0002 0.013 0.001)
(0.00025 0.013 0.001)
(0.0003 0.013 0.001)
(0.00035 0.013 0.001)
(0.0004 0.013 0.001)
(0.00045 0.013 0.001)
(0.0005 0.013 0.001)
(0.00055 0.013 0.001)
(0.0006 0.013 0.001)
(0.00065 0.013 0.001)
(0.0007 0.013 0.001)
(0.00075 0.013 0.001)
(0.0008 0.013 0.001)
(0.00085 0.013 0.001)
(0.0009 0.013 0.001)
(0.00095 0.013 0.001)
(0.001 0.013 0.001)
(0 0.01305 0.001)
(5e-05 0.01305 0.001)
(0.0001 0.01305 0.001)
(0.00015 0.01305 0.001)
(0.0002 0.01305 0.001)
(0.00025 0.01305 0.001)
(0.0003 0.01305 0.001)
(0.00035 0.01305 0.001)
(0.0004 0.01305 0.001)
(0.00045 0.01305 0.001)
(0.0005 0.01305 0.001)
(0.00055 0.01305 0.001)
(0.0006 0.01305 0.001)
(0.00065 0.01305 0.001)
(0.0007 0.01305 0.001)
(0.00075 0.01305 0.001)
(0.0008 0.01305 0.001)
(0.00085 0.01305 0.001)
(0.0009 0.01305 0.001)
(0.00095 0.01305 0.001)
(0.001 0.01305 0.001)
(0 0.0131 0.001)
(5e-05 0.0131 0.001)
(0.0001 0.0131 0.001)
(0.00015 0.0131 0.001)
(0.0002 0.0131 0.001)
(0.00025 0.0131 0.001)
(0.0003 0.0131 0.001)
(0.00035 0.0131 0.001)
(0.0004 0.0131 0.001)
(0.00045 0.0131 0.001)
(0.0005 0.0131 0.001)
(0.00055 0.0131 0.001)
(0.0006 0.0131 0.001)
(0.00065 0.0131 0.001)
(0.0007 0.0131 0.001)
(0.00075 0.0131 0.001)
(0.0008 0.0131 0.001)
(0.00085 0.0131 0.001)
(0.0009 0.0131 0.001)
(0.00095 0.0131 0.001)
(0.001 0.0131 0.001)
(0 0.01315 0.001)
(5e-05 0.01315 0.001)
(0.0001 0.01315 0.001)
(0.00015 0.01315 0.001)
(0.0002 0.01315 0.001)
(0.00025 0.01315 0.001)
(0.0003 0.01315 0.001)
(0.00035 0.01315 0.001)
(0.0004 0.01315 0.001)
(0.00045 0.01315 0.001)
(0.0005 0.01315 0.001)
(0.00055 0.01315 0.001)
(0.0006 0.01315 0.001)
(0.00065 0.01315 0.001)
(0.0007 0.01315 0.001)
(0.00075 0.01315 0.001)
(0.0008 0.01315 0.001)
(0.00085 0.01315 0.001)
(0.0009 0.01315 0.001)
(0.00095 0.01315 0.001)
(0.001 0.01315 0.001)
(0 0.0132 0.001)
(5e-05 0.0132 0.001)
(0.0001 0.0132 0.001)
(0.00015 0.0132 0.001)
(0.0002 0.0132 0.001)
(0.00025 0.0132 0.001)
(0.0003 0.0132 0.001)
(0.00035 0.0132 0.001)
(0.0004 0.0132 0.001)
(0.00045 0.0132 0.001)
(0.0005 0.0132 0.001)
(0.00055 0.0132 0.001)
(0.0006 0.0132 0.001)
(0.00065 0.0132 0.001)
(0.0007 0.0132 0.001)
(0.00075 0.0132 0.001)
(0.0008 0.0132 0.001)
(0.00085 0.0132 0.001)
(0.0009 0.0132 0.001)
(0.00095 0.0132 0.001)
(0.001 0.0132 0.001)
(0 0.01325 0.001)
(5e-05 0.01325 0.001)
(0.0001 0.01325 0.001)
(0.00015 0.01325 0.001)
(0.0002 0.01325 0.001)
(0.00025 0.01325 0.001)
(0.0003 0.01325 0.001)
(0.00035 0.01325 0.001)
(0.0004 0.01325 0.001)
(0.00045 0.01325 0.001)
(0.0005 0.01325 0.001)
(0.00055 0.01325 0.001)
(0.0006 0.01325 0.001)
(0.00065 0.01325 0.001)
(0.0007 0.01325 0.001)
(0.00075 0.01325 0.001)
(0.0008 0.01325 0.001)
(0.00085 0.01325 0.001)
(0.0009 0.01325 0.001)
(0.00095 0.01325 0.001)
(0.001 0.01325 0.001)
(0 0.0133 0.001)
(5e-05 0.0133 0.001)
(0.0001 0.0133 0.001)
(0.00015 0.0133 0.001)
(0.0002 0.0133 0.001)
(0.00025 0.0133 0.001)
(0.0003 0.0133 0.001)
(0.00035 0.0133 0.001)
(0.0004 0.0133 0.001)
(0.00045 0.0133 0.001)
(0.0005 0.0133 0.001)
(0.00055 0.0133 0.001)
(0.0006 0.0133 0.001)
(0.00065 0.0133 0.001)
(0.0007 0.0133 0.001)
(0.00075 0.0133 0.001)
(0.0008 0.0133 0.001)
(0.00085 0.0133 0.001)
(0.0009 0.0133 0.001)
(0.00095 0.0133 0.001)
(0.001 0.0133 0.001)
(0 0.01335 0.001)
(5e-05 0.01335 0.001)
(0.0001 0.01335 0.001)
(0.00015 0.01335 0.001)
(0.0002 0.01335 0.001)
(0.00025 0.01335 0.001)
(0.0003 0.01335 0.001)
(0.00035 0.01335 0.001)
(0.0004 0.01335 0.001)
(0.00045 0.01335 0.001)
(0.0005 0.01335 0.001)
(0.00055 0.01335 0.001)
(0.0006 0.01335 0.001)
(0.00065 0.01335 0.001)
(0.0007 0.01335 0.001)
(0.00075 0.01335 0.001)
(0.0008 0.01335 0.001)
(0.00085 0.01335 0.001)
(0.0009 0.01335 0.001)
(0.00095 0.01335 0.001)
(0.001 0.01335 0.001)
(0 0.0134 0.001)
(5e-05 0.0134 0.001)
(0.0001 0.0134 0.001)
(0.00015 0.0134 0.001)
(0.0002 0.0134 0.001)
(0.00025 0.0134 0.001)
(0.0003 0.0134 0.001)
(0.00035 0.0134 0.001)
(0.0004 0.0134 0.001)
(0.00045 0.0134 0.001)
(0.0005 0.0134 0.001)
(0.00055 0.0134 0.001)
(0.0006 0.0134 0.001)
(0.00065 0.0134 0.001)
(0.0007 0.0134 0.001)
(0.00075 0.0134 0.001)
(0.0008 0.0134 0.001)
(0.00085 0.0134 0.001)
(0.0009 0.0134 0.001)
(0.00095 0.0134 0.001)
(0.001 0.0134 0.001)
(0 0.01345 0.001)
(5e-05 0.01345 0.001)
(0.0001 0.01345 0.001)
(0.00015 0.01345 0.001)
(0.0002 0.01345 0.001)
(0.00025 0.01345 0.001)
(0.0003 0.01345 0.001)
(0.00035 0.01345 0.001)
(0.0004 0.01345 0.001)
(0.00045 0.01345 0.001)
(0.0005 0.01345 0.001)
(0.00055 0.01345 0.001)
(0.0006 0.01345 0.001)
(0.00065 0.01345 0.001)
(0.0007 0.01345 0.001)
(0.00075 0.01345 0.001)
(0.0008 0.01345 0.001)
(0.00085 0.01345 0.001)
(0.0009 0.01345 0.001)
(0.00095 0.01345 0.001)
(0.001 0.01345 0.001)
(0 0.0135 0.001)
(5e-05 0.0135 0.001)
(0.0001 0.0135 0.001)
(0.00015 0.0135 0.001)
(0.0002 0.0135 0.001)
(0.00025 0.0135 0.001)
(0.0003 0.0135 0.001)
(0.00035 0.0135 0.001)
(0.0004 0.0135 0.001)
(0.00045 0.0135 0.001)
(0.0005 0.0135 0.001)
(0.00055 0.0135 0.001)
(0.0006 0.0135 0.001)
(0.00065 0.0135 0.001)
(0.0007 0.0135 0.001)
(0.00075 0.0135 0.001)
(0.0008 0.0135 0.001)
(0.00085 0.0135 0.001)
(0.0009 0.0135 0.001)
(0.00095 0.0135 0.001)
(0.001 0.0135 0.001)
(0 0.01355 0.001)
(5e-05 0.01355 0.001)
(0.0001 0.01355 0.001)
(0.00015 0.01355 0.001)
(0.0002 0.01355 0.001)
(0.00025 0.01355 0.001)
(0.0003 0.01355 0.001)
(0.00035 0.01355 0.001)
(0.0004 0.01355 0.001)
(0.00045 0.01355 0.001)
(0.0005 0.01355 0.001)
(0.00055 0.01355 0.001)
(0.0006 0.01355 0.001)
(0.00065 0.01355 0.001)
(0.0007 0.01355 0.001)
(0.00075 0.01355 0.001)
(0.0008 0.01355 0.001)
(0.00085 0.01355 0.001)
(0.0009 0.01355 0.001)
(0.00095 0.01355 0.001)
(0.001 0.01355 0.001)
(0 0.0136 0.001)
(5e-05 0.0136 0.001)
(0.0001 0.0136 0.001)
(0.00015 0.0136 0.001)
(0.0002 0.0136 0.001)
(0.00025 0.0136 0.001)
(0.0003 0.0136 0.001)
(0.00035 0.0136 0.001)
(0.0004 0.0136 0.001)
(0.00045 0.0136 0.001)
(0.0005 0.0136 0.001)
(0.00055 0.0136 0.001)
(0.0006 0.0136 0.001)
(0.00065 0.0136 0.001)
(0.0007 0.0136 0.001)
(0.00075 0.0136 0.001)
(0.0008 0.0136 0.001)
(0.00085 0.0136 0.001)
(0.0009 0.0136 0.001)
(0.00095 0.0136 0.001)
(0.001 0.0136 0.001)
(0 0.01365 0.001)
(5e-05 0.01365 0.001)
(0.0001 0.01365 0.001)
(0.00015 0.01365 0.001)
(0.0002 0.01365 0.001)
(0.00025 0.01365 0.001)
(0.0003 0.01365 0.001)
(0.00035 0.01365 0.001)
(0.0004 0.01365 0.001)
(0.00045 0.01365 0.001)
(0.0005 0.01365 0.001)
(0.00055 0.01365 0.001)
(0.0006 0.01365 0.001)
(0.00065 0.01365 0.001)
(0.0007 0.01365 0.001)
(0.00075 0.01365 0.001)
(0.0008 0.01365 0.001)
(0.00085 0.01365 0.001)
(0.0009 0.01365 0.001)
(0.00095 0.01365 0.001)
(0.001 0.01365 0.001)
(0 0.0137 0.001)
(5e-05 0.0137 0.001)
(0.0001 0.0137 0.001)
(0.00015 0.0137 0.001)
(0.0002 0.0137 0.001)
(0.00025 0.0137 0.001)
(0.0003 0.0137 0.001)
(0.00035 0.0137 0.001)
(0.0004 0.0137 0.001)
(0.00045 0.0137 0.001)
(0.0005 0.0137 0.001)
(0.00055 0.0137 0.001)
(0.0006 0.0137 0.001)
(0.00065 0.0137 0.001)
(0.0007 0.0137 0.001)
(0.00075 0.0137 0.001)
(0.0008 0.0137 0.001)
(0.00085 0.0137 0.001)
(0.0009 0.0137 0.001)
(0.00095 0.0137 0.001)
(0.001 0.0137 0.001)
(0 0.01375 0.001)
(5e-05 0.01375 0.001)
(0.0001 0.01375 0.001)
(0.00015 0.01375 0.001)
(0.0002 0.01375 0.001)
(0.00025 0.01375 0.001)
(0.0003 0.01375 0.001)
(0.00035 0.01375 0.001)
(0.0004 0.01375 0.001)
(0.00045 0.01375 0.001)
(0.0005 0.01375 0.001)
(0.00055 0.01375 0.001)
(0.0006 0.01375 0.001)
(0.00065 0.01375 0.001)
(0.0007 0.01375 0.001)
(0.00075 0.01375 0.001)
(0.0008 0.01375 0.001)
(0.00085 0.01375 0.001)
(0.0009 0.01375 0.001)
(0.00095 0.01375 0.001)
(0.001 0.01375 0.001)
(0 0.0138 0.001)
(5e-05 0.0138 0.001)
(0.0001 0.0138 0.001)
(0.00015 0.0138 0.001)
(0.0002 0.0138 0.001)
(0.00025 0.0138 0.001)
(0.0003 0.0138 0.001)
(0.00035 0.0138 0.001)
(0.0004 0.0138 0.001)
(0.00045 0.0138 0.001)
(0.0005 0.0138 0.001)
(0.00055 0.0138 0.001)
(0.0006 0.0138 0.001)
(0.00065 0.0138 0.001)
(0.0007 0.0138 0.001)
(0.00075 0.0138 0.001)
(0.0008 0.0138 0.001)
(0.00085 0.0138 0.001)
(0.0009 0.0138 0.001)
(0.00095 0.0138 0.001)
(0.001 0.0138 0.001)
(0 0.01385 0.001)
(5e-05 0.01385 0.001)
(0.0001 0.01385 0.001)
(0.00015 0.01385 0.001)
(0.0002 0.01385 0.001)
(0.00025 0.01385 0.001)
(0.0003 0.01385 0.001)
(0.00035 0.01385 0.001)
(0.0004 0.01385 0.001)
(0.00045 0.01385 0.001)
(0.0005 0.01385 0.001)
(0.00055 0.01385 0.001)
(0.0006 0.01385 0.001)
(0.00065 0.01385 0.001)
(0.0007 0.01385 0.001)
(0.00075 0.01385 0.001)
(0.0008 0.01385 0.001)
(0.00085 0.01385 0.001)
(0.0009 0.01385 0.001)
(0.00095 0.01385 0.001)
(0.001 0.01385 0.001)
(0 0.0139 0.001)
(5e-05 0.0139 0.001)
(0.0001 0.0139 0.001)
(0.00015 0.0139 0.001)
(0.0002 0.0139 0.001)
(0.00025 0.0139 0.001)
(0.0003 0.0139 0.001)
(0.00035 0.0139 0.001)
(0.0004 0.0139 0.001)
(0.00045 0.0139 0.001)
(0.0005 0.0139 0.001)
(0.00055 0.0139 0.001)
(0.0006 0.0139 0.001)
(0.00065 0.0139 0.001)
(0.0007 0.0139 0.001)
(0.00075 0.0139 0.001)
(0.0008 0.0139 0.001)
(0.00085 0.0139 0.001)
(0.0009 0.0139 0.001)
(0.00095 0.0139 0.001)
(0.001 0.0139 0.001)
(0 0.01395 0.001)
(5e-05 0.01395 0.001)
(0.0001 0.01395 0.001)
(0.00015 0.01395 0.001)
(0.0002 0.01395 0.001)
(0.00025 0.01395 0.001)
(0.0003 0.01395 0.001)
(0.00035 0.01395 0.001)
(0.0004 0.01395 0.001)
(0.00045 0.01395 0.001)
(0.0005 0.01395 0.001)
(0.00055 0.01395 0.001)
(0.0006 0.01395 0.001)
(0.00065 0.01395 0.001)
(0.0007 0.01395 0.001)
(0.00075 0.01395 0.001)
(0.0008 0.01395 0.001)
(0.00085 0.01395 0.001)
(0.0009 0.01395 0.001)
(0.00095 0.01395 0.001)
(0.001 0.01395 0.001)
(0 0.014 0.001)
(5e-05 0.014 0.001)
(0.0001 0.014 0.001)
(0.00015 0.014 0.001)
(0.0002 0.014 0.001)
(0.00025 0.014 0.001)
(0.0003 0.014 0.001)
(0.00035 0.014 0.001)
(0.0004 0.014 0.001)
(0.00045 0.014 0.001)
(0.0005 0.014 0.001)
(0.00055 0.014 0.001)
(0.0006 0.014 0.001)
(0.00065 0.014 0.001)
(0.0007 0.014 0.001)
(0.00075 0.014 0.001)
(0.0008 0.014 0.001)
(0.00085 0.014 0.001)
(0.0009 0.014 0.001)
(0.00095 0.014 0.001)
(0.001 0.014 0.001)
(0 0.01405 0.001)
(5e-05 0.01405 0.001)
(0.0001 0.01405 0.001)
(0.00015 0.01405 0.001)
(0.0002 0.01405 0.001)
(0.00025 0.01405 0.001)
(0.0003 0.01405 0.001)
(0.00035 0.01405 0.001)
(0.0004 0.01405 0.001)
(0.00045 0.01405 0.001)
(0.0005 0.01405 0.001)
(0.00055 0.01405 0.001)
(0.0006 0.01405 0.001)
(0.00065 0.01405 0.001)
(0.0007 0.01405 0.001)
(0.00075 0.01405 0.001)
(0.0008 0.01405 0.001)
(0.00085 0.01405 0.001)
(0.0009 0.01405 0.001)
(0.00095 0.01405 0.001)
(0.001 0.01405 0.001)
(0 0.0141 0.001)
(5e-05 0.0141 0.001)
(0.0001 0.0141 0.001)
(0.00015 0.0141 0.001)
(0.0002 0.0141 0.001)
(0.00025 0.0141 0.001)
(0.0003 0.0141 0.001)
(0.00035 0.0141 0.001)
(0.0004 0.0141 0.001)
(0.00045 0.0141 0.001)
(0.0005 0.0141 0.001)
(0.00055 0.0141 0.001)
(0.0006 0.0141 0.001)
(0.00065 0.0141 0.001)
(0.0007 0.0141 0.001)
(0.00075 0.0141 0.001)
(0.0008 0.0141 0.001)
(0.00085 0.0141 0.001)
(0.0009 0.0141 0.001)
(0.00095 0.0141 0.001)
(0.001 0.0141 0.001)
(0 0.01415 0.001)
(5e-05 0.01415 0.001)
(0.0001 0.01415 0.001)
(0.00015 0.01415 0.001)
(0.0002 0.01415 0.001)
(0.00025 0.01415 0.001)
(0.0003 0.01415 0.001)
(0.00035 0.01415 0.001)
(0.0004 0.01415 0.001)
(0.00045 0.01415 0.001)
(0.0005 0.01415 0.001)
(0.00055 0.01415 0.001)
(0.0006 0.01415 0.001)
(0.00065 0.01415 0.001)
(0.0007 0.01415 0.001)
(0.00075 0.01415 0.001)
(0.0008 0.01415 0.001)
(0.00085 0.01415 0.001)
(0.0009 0.01415 0.001)
(0.00095 0.01415 0.001)
(0.001 0.01415 0.001)
(0 0.0142 0.001)
(5e-05 0.0142 0.001)
(0.0001 0.0142 0.001)
(0.00015 0.0142 0.001)
(0.0002 0.0142 0.001)
(0.00025 0.0142 0.001)
(0.0003 0.0142 0.001)
(0.00035 0.0142 0.001)
(0.0004 0.0142 0.001)
(0.00045 0.0142 0.001)
(0.0005 0.0142 0.001)
(0.00055 0.0142 0.001)
(0.0006 0.0142 0.001)
(0.00065 0.0142 0.001)
(0.0007 0.0142 0.001)
(0.00075 0.0142 0.001)
(0.0008 0.0142 0.001)
(0.00085 0.0142 0.001)
(0.0009 0.0142 0.001)
(0.00095 0.0142 0.001)
(0.001 0.0142 0.001)
(0 0.01425 0.001)
(5e-05 0.01425 0.001)
(0.0001 0.01425 0.001)
(0.00015 0.01425 0.001)
(0.0002 0.01425 0.001)
(0.00025 0.01425 0.001)
(0.0003 0.01425 0.001)
(0.00035 0.01425 0.001)
(0.0004 0.01425 0.001)
(0.00045 0.01425 0.001)
(0.0005 0.01425 0.001)
(0.00055 0.01425 0.001)
(0.0006 0.01425 0.001)
(0.00065 0.01425 0.001)
(0.0007 0.01425 0.001)
(0.00075 0.01425 0.001)
(0.0008 0.01425 0.001)
(0.00085 0.01425 0.001)
(0.0009 0.01425 0.001)
(0.00095 0.01425 0.001)
(0.001 0.01425 0.001)
(0 0.0143 0.001)
(5e-05 0.0143 0.001)
(0.0001 0.0143 0.001)
(0.00015 0.0143 0.001)
(0.0002 0.0143 0.001)
(0.00025 0.0143 0.001)
(0.0003 0.0143 0.001)
(0.00035 0.0143 0.001)
(0.0004 0.0143 0.001)
(0.00045 0.0143 0.001)
(0.0005 0.0143 0.001)
(0.00055 0.0143 0.001)
(0.0006 0.0143 0.001)
(0.00065 0.0143 0.001)
(0.0007 0.0143 0.001)
(0.00075 0.0143 0.001)
(0.0008 0.0143 0.001)
(0.00085 0.0143 0.001)
(0.0009 0.0143 0.001)
(0.00095 0.0143 0.001)
(0.001 0.0143 0.001)
(0 0.01435 0.001)
(5e-05 0.01435 0.001)
(0.0001 0.01435 0.001)
(0.00015 0.01435 0.001)
(0.0002 0.01435 0.001)
(0.00025 0.01435 0.001)
(0.0003 0.01435 0.001)
(0.00035 0.01435 0.001)
(0.0004 0.01435 0.001)
(0.00045 0.01435 0.001)
(0.0005 0.01435 0.001)
(0.00055 0.01435 0.001)
(0.0006 0.01435 0.001)
(0.00065 0.01435 0.001)
(0.0007 0.01435 0.001)
(0.00075 0.01435 0.001)
(0.0008 0.01435 0.001)
(0.00085 0.01435 0.001)
(0.0009 0.01435 0.001)
(0.00095 0.01435 0.001)
(0.001 0.01435 0.001)
(0 0.0144 0.001)
(5e-05 0.0144 0.001)
(0.0001 0.0144 0.001)
(0.00015 0.0144 0.001)
(0.0002 0.0144 0.001)
(0.00025 0.0144 0.001)
(0.0003 0.0144 0.001)
(0.00035 0.0144 0.001)
(0.0004 0.0144 0.001)
(0.00045 0.0144 0.001)
(0.0005 0.0144 0.001)
(0.00055 0.0144 0.001)
(0.0006 0.0144 0.001)
(0.00065 0.0144 0.001)
(0.0007 0.0144 0.001)
(0.00075 0.0144 0.001)
(0.0008 0.0144 0.001)
(0.00085 0.0144 0.001)
(0.0009 0.0144 0.001)
(0.00095 0.0144 0.001)
(0.001 0.0144 0.001)
(0 0.01445 0.001)
(5e-05 0.01445 0.001)
(0.0001 0.01445 0.001)
(0.00015 0.01445 0.001)
(0.0002 0.01445 0.001)
(0.00025 0.01445 0.001)
(0.0003 0.01445 0.001)
(0.00035 0.01445 0.001)
(0.0004 0.01445 0.001)
(0.00045 0.01445 0.001)
(0.0005 0.01445 0.001)
(0.00055 0.01445 0.001)
(0.0006 0.01445 0.001)
(0.00065 0.01445 0.001)
(0.0007 0.01445 0.001)
(0.00075 0.01445 0.001)
(0.0008 0.01445 0.001)
(0.00085 0.01445 0.001)
(0.0009 0.01445 0.001)
(0.00095 0.01445 0.001)
(0.001 0.01445 0.001)
(0 0.0145 0.001)
(5e-05 0.0145 0.001)
(0.0001 0.0145 0.001)
(0.00015 0.0145 0.001)
(0.0002 0.0145 0.001)
(0.00025 0.0145 0.001)
(0.0003 0.0145 0.001)
(0.00035 0.0145 0.001)
(0.0004 0.0145 0.001)
(0.00045 0.0145 0.001)
(0.0005 0.0145 0.001)
(0.00055 0.0145 0.001)
(0.0006 0.0145 0.001)
(0.00065 0.0145 0.001)
(0.0007 0.0145 0.001)
(0.00075 0.0145 0.001)
(0.0008 0.0145 0.001)
(0.00085 0.0145 0.001)
(0.0009 0.0145 0.001)
(0.00095 0.0145 0.001)
(0.001 0.0145 0.001)
(0 0.01455 0.001)
(5e-05 0.01455 0.001)
(0.0001 0.01455 0.001)
(0.00015 0.01455 0.001)
(0.0002 0.01455 0.001)
(0.00025 0.01455 0.001)
(0.0003 0.01455 0.001)
(0.00035 0.01455 0.001)
(0.0004 0.01455 0.001)
(0.00045 0.01455 0.001)
(0.0005 0.01455 0.001)
(0.00055 0.01455 0.001)
(0.0006 0.01455 0.001)
(0.00065 0.01455 0.001)
(0.0007 0.01455 0.001)
(0.00075 0.01455 0.001)
(0.0008 0.01455 0.001)
(0.00085 0.01455 0.001)
(0.0009 0.01455 0.001)
(0.00095 0.01455 0.001)
(0.001 0.01455 0.001)
(0 0.0146 0.001)
(5e-05 0.0146 0.001)
(0.0001 0.0146 0.001)
(0.00015 0.0146 0.001)
(0.0002 0.0146 0.001)
(0.00025 0.0146 0.001)
(0.0003 0.0146 0.001)
(0.00035 0.0146 0.001)
(0.0004 0.0146 0.001)
(0.00045 0.0146 0.001)
(0.0005 0.0146 0.001)
(0.00055 0.0146 0.001)
(0.0006 0.0146 0.001)
(0.00065 0.0146 0.001)
(0.0007 0.0146 0.001)
(0.00075 0.0146 0.001)
(0.0008 0.0146 0.001)
(0.00085 0.0146 0.001)
(0.0009 0.0146 0.001)
(0.00095 0.0146 0.001)
(0.001 0.0146 0.001)
(0 0.01465 0.001)
(5e-05 0.01465 0.001)
(0.0001 0.01465 0.001)
(0.00015 0.01465 0.001)
(0.0002 0.01465 0.001)
(0.00025 0.01465 0.001)
(0.0003 0.01465 0.001)
(0.00035 0.01465 0.001)
(0.0004 0.01465 0.001)
(0.00045 0.01465 0.001)
(0.0005 0.01465 0.001)
(0.00055 0.01465 0.001)
(0.0006 0.01465 0.001)
(0.00065 0.01465 0.001)
(0.0007 0.01465 0.001)
(0.00075 0.01465 0.001)
(0.0008 0.01465 0.001)
(0.00085 0.01465 0.001)
(0.0009 0.01465 0.001)
(0.00095 0.01465 0.001)
(0.001 0.01465 0.001)
(0 0.0147 0.001)
(5e-05 0.0147 0.001)
(0.0001 0.0147 0.001)
(0.00015 0.0147 0.001)
(0.0002 0.0147 0.001)
(0.00025 0.0147 0.001)
(0.0003 0.0147 0.001)
(0.00035 0.0147 0.001)
(0.0004 0.0147 0.001)
(0.00045 0.0147 0.001)
(0.0005 0.0147 0.001)
(0.00055 0.0147 0.001)
(0.0006 0.0147 0.001)
(0.00065 0.0147 0.001)
(0.0007 0.0147 0.001)
(0.00075 0.0147 0.001)
(0.0008 0.0147 0.001)
(0.00085 0.0147 0.001)
(0.0009 0.0147 0.001)
(0.00095 0.0147 0.001)
(0.001 0.0147 0.001)
(0 0.01475 0.001)
(5e-05 0.01475 0.001)
(0.0001 0.01475 0.001)
(0.00015 0.01475 0.001)
(0.0002 0.01475 0.001)
(0.00025 0.01475 0.001)
(0.0003 0.01475 0.001)
(0.00035 0.01475 0.001)
(0.0004 0.01475 0.001)
(0.00045 0.01475 0.001)
(0.0005 0.01475 0.001)
(0.00055 0.01475 0.001)
(0.0006 0.01475 0.001)
(0.00065 0.01475 0.001)
(0.0007 0.01475 0.001)
(0.00075 0.01475 0.001)
(0.0008 0.01475 0.001)
(0.00085 0.01475 0.001)
(0.0009 0.01475 0.001)
(0.00095 0.01475 0.001)
(0.001 0.01475 0.001)
(0 0.0148 0.001)
(5e-05 0.0148 0.001)
(0.0001 0.0148 0.001)
(0.00015 0.0148 0.001)
(0.0002 0.0148 0.001)
(0.00025 0.0148 0.001)
(0.0003 0.0148 0.001)
(0.00035 0.0148 0.001)
(0.0004 0.0148 0.001)
(0.00045 0.0148 0.001)
(0.0005 0.0148 0.001)
(0.00055 0.0148 0.001)
(0.0006 0.0148 0.001)
(0.00065 0.0148 0.001)
(0.0007 0.0148 0.001)
(0.00075 0.0148 0.001)
(0.0008 0.0148 0.001)
(0.00085 0.0148 0.001)
(0.0009 0.0148 0.001)
(0.00095 0.0148 0.001)
(0.001 0.0148 0.001)
(0 0.01485 0.001)
(5e-05 0.01485 0.001)
(0.0001 0.01485 0.001)
(0.00015 0.01485 0.001)
(0.0002 0.01485 0.001)
(0.00025 0.01485 0.001)
(0.0003 0.01485 0.001)
(0.00035 0.01485 0.001)
(0.0004 0.01485 0.001)
(0.00045 0.01485 0.001)
(0.0005 0.01485 0.001)
(0.00055 0.01485 0.001)
(0.0006 0.01485 0.001)
(0.00065 0.01485 0.001)
(0.0007 0.01485 0.001)
(0.00075 0.01485 0.001)
(0.0008 0.01485 0.001)
(0.00085 0.01485 0.001)
(0.0009 0.01485 0.001)
(0.00095 0.01485 0.001)
(0.001 0.01485 0.001)
(0 0.0149 0.001)
(5e-05 0.0149 0.001)
(0.0001 0.0149 0.001)
(0.00015 0.0149 0.001)
(0.0002 0.0149 0.001)
(0.00025 0.0149 0.001)
(0.0003 0.0149 0.001)
(0.00035 0.0149 0.001)
(0.0004 0.0149 0.001)
(0.00045 0.0149 0.001)
(0.0005 0.0149 0.001)
(0.00055 0.0149 0.001)
(0.0006 0.0149 0.001)
(0.00065 0.0149 0.001)
(0.0007 0.0149 0.001)
(0.00075 0.0149 0.001)
(0.0008 0.0149 0.001)
(0.00085 0.0149 0.001)
(0.0009 0.0149 0.001)
(0.00095 0.0149 0.001)
(0.001 0.0149 0.001)
(0 0.01495 0.001)
(5e-05 0.01495 0.001)
(0.0001 0.01495 0.001)
(0.00015 0.01495 0.001)
(0.0002 0.01495 0.001)
(0.00025 0.01495 0.001)
(0.0003 0.01495 0.001)
(0.00035 0.01495 0.001)
(0.0004 0.01495 0.001)
(0.00045 0.01495 0.001)
(0.0005 0.01495 0.001)
(0.00055 0.01495 0.001)
(0.0006 0.01495 0.001)
(0.00065 0.01495 0.001)
(0.0007 0.01495 0.001)
(0.00075 0.01495 0.001)
(0.0008 0.01495 0.001)
(0.00085 0.01495 0.001)
(0.0009 0.01495 0.001)
(0.00095 0.01495 0.001)
(0.001 0.01495 0.001)
(0 0.015 0.001)
(5e-05 0.015 0.001)
(0.0001 0.015 0.001)
(0.00015 0.015 0.001)
(0.0002 0.015 0.001)
(0.00025 0.015 0.001)
(0.0003 0.015 0.001)
(0.00035 0.015 0.001)
(0.0004 0.015 0.001)
(0.00045 0.015 0.001)
(0.0005 0.015 0.001)
(0.00055 0.015 0.001)
(0.0006 0.015 0.001)
(0.00065 0.015 0.001)
(0.0007 0.015 0.001)
(0.00075 0.015 0.001)
(0.0008 0.015 0.001)
(0.00085 0.015 0.001)
(0.0009 0.015 0.001)
(0.00095 0.015 0.001)
(0.001 0.015 0.001)
(0 0.01505 0.001)
(5e-05 0.01505 0.001)
(0.0001 0.01505 0.001)
(0.00015 0.01505 0.001)
(0.0002 0.01505 0.001)
(0.00025 0.01505 0.001)
(0.0003 0.01505 0.001)
(0.00035 0.01505 0.001)
(0.0004 0.01505 0.001)
(0.00045 0.01505 0.001)
(0.0005 0.01505 0.001)
(0.00055 0.01505 0.001)
(0.0006 0.01505 0.001)
(0.00065 0.01505 0.001)
(0.0007 0.01505 0.001)
(0.00075 0.01505 0.001)
(0.0008 0.01505 0.001)
(0.00085 0.01505 0.001)
(0.0009 0.01505 0.001)
(0.00095 0.01505 0.001)
(0.001 0.01505 0.001)
(0 0.0151 0.001)
(5e-05 0.0151 0.001)
(0.0001 0.0151 0.001)
(0.00015 0.0151 0.001)
(0.0002 0.0151 0.001)
(0.00025 0.0151 0.001)
(0.0003 0.0151 0.001)
(0.00035 0.0151 0.001)
(0.0004 0.0151 0.001)
(0.00045 0.0151 0.001)
(0.0005 0.0151 0.001)
(0.00055 0.0151 0.001)
(0.0006 0.0151 0.001)
(0.00065 0.0151 0.001)
(0.0007 0.0151 0.001)
(0.00075 0.0151 0.001)
(0.0008 0.0151 0.001)
(0.00085 0.0151 0.001)
(0.0009 0.0151 0.001)
(0.00095 0.0151 0.001)
(0.001 0.0151 0.001)
(0 0.01515 0.001)
(5e-05 0.01515 0.001)
(0.0001 0.01515 0.001)
(0.00015 0.01515 0.001)
(0.0002 0.01515 0.001)
(0.00025 0.01515 0.001)
(0.0003 0.01515 0.001)
(0.00035 0.01515 0.001)
(0.0004 0.01515 0.001)
(0.00045 0.01515 0.001)
(0.0005 0.01515 0.001)
(0.00055 0.01515 0.001)
(0.0006 0.01515 0.001)
(0.00065 0.01515 0.001)
(0.0007 0.01515 0.001)
(0.00075 0.01515 0.001)
(0.0008 0.01515 0.001)
(0.00085 0.01515 0.001)
(0.0009 0.01515 0.001)
(0.00095 0.01515 0.001)
(0.001 0.01515 0.001)
(0 0.0152 0.001)
(5e-05 0.0152 0.001)
(0.0001 0.0152 0.001)
(0.00015 0.0152 0.001)
(0.0002 0.0152 0.001)
(0.00025 0.0152 0.001)
(0.0003 0.0152 0.001)
(0.00035 0.0152 0.001)
(0.0004 0.0152 0.001)
(0.00045 0.0152 0.001)
(0.0005 0.0152 0.001)
(0.00055 0.0152 0.001)
(0.0006 0.0152 0.001)
(0.00065 0.0152 0.001)
(0.0007 0.0152 0.001)
(0.00075 0.0152 0.001)
(0.0008 0.0152 0.001)
(0.00085 0.0152 0.001)
(0.0009 0.0152 0.001)
(0.00095 0.0152 0.001)
(0.001 0.0152 0.001)
(0 0.01525 0.001)
(5e-05 0.01525 0.001)
(0.0001 0.01525 0.001)
(0.00015 0.01525 0.001)
(0.0002 0.01525 0.001)
(0.00025 0.01525 0.001)
(0.0003 0.01525 0.001)
(0.00035 0.01525 0.001)
(0.0004 0.01525 0.001)
(0.00045 0.01525 0.001)
(0.0005 0.01525 0.001)
(0.00055 0.01525 0.001)
(0.0006 0.01525 0.001)
(0.00065 0.01525 0.001)
(0.0007 0.01525 0.001)
(0.00075 0.01525 0.001)
(0.0008 0.01525 0.001)
(0.00085 0.01525 0.001)
(0.0009 0.01525 0.001)
(0.00095 0.01525 0.001)
(0.001 0.01525 0.001)
(0 0.0153 0.001)
(5e-05 0.0153 0.001)
(0.0001 0.0153 0.001)
(0.00015 0.0153 0.001)
(0.0002 0.0153 0.001)
(0.00025 0.0153 0.001)
(0.0003 0.0153 0.001)
(0.00035 0.0153 0.001)
(0.0004 0.0153 0.001)
(0.00045 0.0153 0.001)
(0.0005 0.0153 0.001)
(0.00055 0.0153 0.001)
(0.0006 0.0153 0.001)
(0.00065 0.0153 0.001)
(0.0007 0.0153 0.001)
(0.00075 0.0153 0.001)
(0.0008 0.0153 0.001)
(0.00085 0.0153 0.001)
(0.0009 0.0153 0.001)
(0.00095 0.0153 0.001)
(0.001 0.0153 0.001)
(0 0.01535 0.001)
(5e-05 0.01535 0.001)
(0.0001 0.01535 0.001)
(0.00015 0.01535 0.001)
(0.0002 0.01535 0.001)
(0.00025 0.01535 0.001)
(0.0003 0.01535 0.001)
(0.00035 0.01535 0.001)
(0.0004 0.01535 0.001)
(0.00045 0.01535 0.001)
(0.0005 0.01535 0.001)
(0.00055 0.01535 0.001)
(0.0006 0.01535 0.001)
(0.00065 0.01535 0.001)
(0.0007 0.01535 0.001)
(0.00075 0.01535 0.001)
(0.0008 0.01535 0.001)
(0.00085 0.01535 0.001)
(0.0009 0.01535 0.001)
(0.00095 0.01535 0.001)
(0.001 0.01535 0.001)
(0 0.0154 0.001)
(5e-05 0.0154 0.001)
(0.0001 0.0154 0.001)
(0.00015 0.0154 0.001)
(0.0002 0.0154 0.001)
(0.00025 0.0154 0.001)
(0.0003 0.0154 0.001)
(0.00035 0.0154 0.001)
(0.0004 0.0154 0.001)
(0.00045 0.0154 0.001)
(0.0005 0.0154 0.001)
(0.00055 0.0154 0.001)
(0.0006 0.0154 0.001)
(0.00065 0.0154 0.001)
(0.0007 0.0154 0.001)
(0.00075 0.0154 0.001)
(0.0008 0.0154 0.001)
(0.00085 0.0154 0.001)
(0.0009 0.0154 0.001)
(0.00095 0.0154 0.001)
(0.001 0.0154 0.001)
(0 0.01545 0.001)
(5e-05 0.01545 0.001)
(0.0001 0.01545 0.001)
(0.00015 0.01545 0.001)
(0.0002 0.01545 0.001)
(0.00025 0.01545 0.001)
(0.0003 0.01545 0.001)
(0.00035 0.01545 0.001)
(0.0004 0.01545 0.001)
(0.00045 0.01545 0.001)
(0.0005 0.01545 0.001)
(0.00055 0.01545 0.001)
(0.0006 0.01545 0.001)
(0.00065 0.01545 0.001)
(0.0007 0.01545 0.001)
(0.00075 0.01545 0.001)
(0.0008 0.01545 0.001)
(0.00085 0.01545 0.001)
(0.0009 0.01545 0.001)
(0.00095 0.01545 0.001)
(0.001 0.01545 0.001)
(0 0.0155 0.001)
(5e-05 0.0155 0.001)
(0.0001 0.0155 0.001)
(0.00015 0.0155 0.001)
(0.0002 0.0155 0.001)
(0.00025 0.0155 0.001)
(0.0003 0.0155 0.001)
(0.00035 0.0155 0.001)
(0.0004 0.0155 0.001)
(0.00045 0.0155 0.001)
(0.0005 0.0155 0.001)
(0.00055 0.0155 0.001)
(0.0006 0.0155 0.001)
(0.00065 0.0155 0.001)
(0.0007 0.0155 0.001)
(0.00075 0.0155 0.001)
(0.0008 0.0155 0.001)
(0.00085 0.0155 0.001)
(0.0009 0.0155 0.001)
(0.00095 0.0155 0.001)
(0.001 0.0155 0.001)
(0 0.01555 0.001)
(5e-05 0.01555 0.001)
(0.0001 0.01555 0.001)
(0.00015 0.01555 0.001)
(0.0002 0.01555 0.001)
(0.00025 0.01555 0.001)
(0.0003 0.01555 0.001)
(0.00035 0.01555 0.001)
(0.0004 0.01555 0.001)
(0.00045 0.01555 0.001)
(0.0005 0.01555 0.001)
(0.00055 0.01555 0.001)
(0.0006 0.01555 0.001)
(0.00065 0.01555 0.001)
(0.0007 0.01555 0.001)
(0.00075 0.01555 0.001)
(0.0008 0.01555 0.001)
(0.00085 0.01555 0.001)
(0.0009 0.01555 0.001)
(0.00095 0.01555 0.001)
(0.001 0.01555 0.001)
(0 0.0156 0.001)
(5e-05 0.0156 0.001)
(0.0001 0.0156 0.001)
(0.00015 0.0156 0.001)
(0.0002 0.0156 0.001)
(0.00025 0.0156 0.001)
(0.0003 0.0156 0.001)
(0.00035 0.0156 0.001)
(0.0004 0.0156 0.001)
(0.00045 0.0156 0.001)
(0.0005 0.0156 0.001)
(0.00055 0.0156 0.001)
(0.0006 0.0156 0.001)
(0.00065 0.0156 0.001)
(0.0007 0.0156 0.001)
(0.00075 0.0156 0.001)
(0.0008 0.0156 0.001)
(0.00085 0.0156 0.001)
(0.0009 0.0156 0.001)
(0.00095 0.0156 0.001)
(0.001 0.0156 0.001)
(0 0.01565 0.001)
(5e-05 0.01565 0.001)
(0.0001 0.01565 0.001)
(0.00015 0.01565 0.001)
(0.0002 0.01565 0.001)
(0.00025 0.01565 0.001)
(0.0003 0.01565 0.001)
(0.00035 0.01565 0.001)
(0.0004 0.01565 0.001)
(0.00045 0.01565 0.001)
(0.0005 0.01565 0.001)
(0.00055 0.01565 0.001)
(0.0006 0.01565 0.001)
(0.00065 0.01565 0.001)
(0.0007 0.01565 0.001)
(0.00075 0.01565 0.001)
(0.0008 0.01565 0.001)
(0.00085 0.01565 0.001)
(0.0009 0.01565 0.001)
(0.00095 0.01565 0.001)
(0.001 0.01565 0.001)
(0 0.0157 0.001)
(5e-05 0.0157 0.001)
(0.0001 0.0157 0.001)
(0.00015 0.0157 0.001)
(0.0002 0.0157 0.001)
(0.00025 0.0157 0.001)
(0.0003 0.0157 0.001)
(0.00035 0.0157 0.001)
(0.0004 0.0157 0.001)
(0.00045 0.0157 0.001)
(0.0005 0.0157 0.001)
(0.00055 0.0157 0.001)
(0.0006 0.0157 0.001)
(0.00065 0.0157 0.001)
(0.0007 0.0157 0.001)
(0.00075 0.0157 0.001)
(0.0008 0.0157 0.001)
(0.00085 0.0157 0.001)
(0.0009 0.0157 0.001)
(0.00095 0.0157 0.001)
(0.001 0.0157 0.001)
(0 0.01575 0.001)
(5e-05 0.01575 0.001)
(0.0001 0.01575 0.001)
(0.00015 0.01575 0.001)
(0.0002 0.01575 0.001)
(0.00025 0.01575 0.001)
(0.0003 0.01575 0.001)
(0.00035 0.01575 0.001)
(0.0004 0.01575 0.001)
(0.00045 0.01575 0.001)
(0.0005 0.01575 0.001)
(0.00055 0.01575 0.001)
(0.0006 0.01575 0.001)
(0.00065 0.01575 0.001)
(0.0007 0.01575 0.001)
(0.00075 0.01575 0.001)
(0.0008 0.01575 0.001)
(0.00085 0.01575 0.001)
(0.0009 0.01575 0.001)
(0.00095 0.01575 0.001)
(0.001 0.01575 0.001)
(0 0.0158 0.001)
(5e-05 0.0158 0.001)
(0.0001 0.0158 0.001)
(0.00015 0.0158 0.001)
(0.0002 0.0158 0.001)
(0.00025 0.0158 0.001)
(0.0003 0.0158 0.001)
(0.00035 0.0158 0.001)
(0.0004 0.0158 0.001)
(0.00045 0.0158 0.001)
(0.0005 0.0158 0.001)
(0.00055 0.0158 0.001)
(0.0006 0.0158 0.001)
(0.00065 0.0158 0.001)
(0.0007 0.0158 0.001)
(0.00075 0.0158 0.001)
(0.0008 0.0158 0.001)
(0.00085 0.0158 0.001)
(0.0009 0.0158 0.001)
(0.00095 0.0158 0.001)
(0.001 0.0158 0.001)
(0 0.01585 0.001)
(5e-05 0.01585 0.001)
(0.0001 0.01585 0.001)
(0.00015 0.01585 0.001)
(0.0002 0.01585 0.001)
(0.00025 0.01585 0.001)
(0.0003 0.01585 0.001)
(0.00035 0.01585 0.001)
(0.0004 0.01585 0.001)
(0.00045 0.01585 0.001)
(0.0005 0.01585 0.001)
(0.00055 0.01585 0.001)
(0.0006 0.01585 0.001)
(0.00065 0.01585 0.001)
(0.0007 0.01585 0.001)
(0.00075 0.01585 0.001)
(0.0008 0.01585 0.001)
(0.00085 0.01585 0.001)
(0.0009 0.01585 0.001)
(0.00095 0.01585 0.001)
(0.001 0.01585 0.001)
(0 0.0159 0.001)
(5e-05 0.0159 0.001)
(0.0001 0.0159 0.001)
(0.00015 0.0159 0.001)
(0.0002 0.0159 0.001)
(0.00025 0.0159 0.001)
(0.0003 0.0159 0.001)
(0.00035 0.0159 0.001)
(0.0004 0.0159 0.001)
(0.00045 0.0159 0.001)
(0.0005 0.0159 0.001)
(0.00055 0.0159 0.001)
(0.0006 0.0159 0.001)
(0.00065 0.0159 0.001)
(0.0007 0.0159 0.001)
(0.00075 0.0159 0.001)
(0.0008 0.0159 0.001)
(0.00085 0.0159 0.001)
(0.0009 0.0159 0.001)
(0.00095 0.0159 0.001)
(0.001 0.0159 0.001)
(0 0.01595 0.001)
(5e-05 0.01595 0.001)
(0.0001 0.01595 0.001)
(0.00015 0.01595 0.001)
(0.0002 0.01595 0.001)
(0.00025 0.01595 0.001)
(0.0003 0.01595 0.001)
(0.00035 0.01595 0.001)
(0.0004 0.01595 0.001)
(0.00045 0.01595 0.001)
(0.0005 0.01595 0.001)
(0.00055 0.01595 0.001)
(0.0006 0.01595 0.001)
(0.00065 0.01595 0.001)
(0.0007 0.01595 0.001)
(0.00075 0.01595 0.001)
(0.0008 0.01595 0.001)
(0.00085 0.01595 0.001)
(0.0009 0.01595 0.001)
(0.00095 0.01595 0.001)
(0.001 0.01595 0.001)
(0 0.016 0.001)
(5e-05 0.016 0.001)
(0.0001 0.016 0.001)
(0.00015 0.016 0.001)
(0.0002 0.016 0.001)
(0.00025 0.016 0.001)
(0.0003 0.016 0.001)
(0.00035 0.016 0.001)
(0.0004 0.016 0.001)
(0.00045 0.016 0.001)
(0.0005 0.016 0.001)
(0.00055 0.016 0.001)
(0.0006 0.016 0.001)
(0.00065 0.016 0.001)
(0.0007 0.016 0.001)
(0.00075 0.016 0.001)
(0.0008 0.016 0.001)
(0.00085 0.016 0.001)
(0.0009 0.016 0.001)
(0.00095 0.016 0.001)
(0.001 0.016 0.001)
(0 0.01605 0.001)
(5e-05 0.01605 0.001)
(0.0001 0.01605 0.001)
(0.00015 0.01605 0.001)
(0.0002 0.01605 0.001)
(0.00025 0.01605 0.001)
(0.0003 0.01605 0.001)
(0.00035 0.01605 0.001)
(0.0004 0.01605 0.001)
(0.00045 0.01605 0.001)
(0.0005 0.01605 0.001)
(0.00055 0.01605 0.001)
(0.0006 0.01605 0.001)
(0.00065 0.01605 0.001)
(0.0007 0.01605 0.001)
(0.00075 0.01605 0.001)
(0.0008 0.01605 0.001)
(0.00085 0.01605 0.001)
(0.0009 0.01605 0.001)
(0.00095 0.01605 0.001)
(0.001 0.01605 0.001)
(0 0.0161 0.001)
(5e-05 0.0161 0.001)
(0.0001 0.0161 0.001)
(0.00015 0.0161 0.001)
(0.0002 0.0161 0.001)
(0.00025 0.0161 0.001)
(0.0003 0.0161 0.001)
(0.00035 0.0161 0.001)
(0.0004 0.0161 0.001)
(0.00045 0.0161 0.001)
(0.0005 0.0161 0.001)
(0.00055 0.0161 0.001)
(0.0006 0.0161 0.001)
(0.00065 0.0161 0.001)
(0.0007 0.0161 0.001)
(0.00075 0.0161 0.001)
(0.0008 0.0161 0.001)
(0.00085 0.0161 0.001)
(0.0009 0.0161 0.001)
(0.00095 0.0161 0.001)
(0.001 0.0161 0.001)
(0 0.01615 0.001)
(5e-05 0.01615 0.001)
(0.0001 0.01615 0.001)
(0.00015 0.01615 0.001)
(0.0002 0.01615 0.001)
(0.00025 0.01615 0.001)
(0.0003 0.01615 0.001)
(0.00035 0.01615 0.001)
(0.0004 0.01615 0.001)
(0.00045 0.01615 0.001)
(0.0005 0.01615 0.001)
(0.00055 0.01615 0.001)
(0.0006 0.01615 0.001)
(0.00065 0.01615 0.001)
(0.0007 0.01615 0.001)
(0.00075 0.01615 0.001)
(0.0008 0.01615 0.001)
(0.00085 0.01615 0.001)
(0.0009 0.01615 0.001)
(0.00095 0.01615 0.001)
(0.001 0.01615 0.001)
(0 0.0162 0.001)
(5e-05 0.0162 0.001)
(0.0001 0.0162 0.001)
(0.00015 0.0162 0.001)
(0.0002 0.0162 0.001)
(0.00025 0.0162 0.001)
(0.0003 0.0162 0.001)
(0.00035 0.0162 0.001)
(0.0004 0.0162 0.001)
(0.00045 0.0162 0.001)
(0.0005 0.0162 0.001)
(0.00055 0.0162 0.001)
(0.0006 0.0162 0.001)
(0.00065 0.0162 0.001)
(0.0007 0.0162 0.001)
(0.00075 0.0162 0.001)
(0.0008 0.0162 0.001)
(0.00085 0.0162 0.001)
(0.0009 0.0162 0.001)
(0.00095 0.0162 0.001)
(0.001 0.0162 0.001)
(0 0.01625 0.001)
(5e-05 0.01625 0.001)
(0.0001 0.01625 0.001)
(0.00015 0.01625 0.001)
(0.0002 0.01625 0.001)
(0.00025 0.01625 0.001)
(0.0003 0.01625 0.001)
(0.00035 0.01625 0.001)
(0.0004 0.01625 0.001)
(0.00045 0.01625 0.001)
(0.0005 0.01625 0.001)
(0.00055 0.01625 0.001)
(0.0006 0.01625 0.001)
(0.00065 0.01625 0.001)
(0.0007 0.01625 0.001)
(0.00075 0.01625 0.001)
(0.0008 0.01625 0.001)
(0.00085 0.01625 0.001)
(0.0009 0.01625 0.001)
(0.00095 0.01625 0.001)
(0.001 0.01625 0.001)
(0 0.0163 0.001)
(5e-05 0.0163 0.001)
(0.0001 0.0163 0.001)
(0.00015 0.0163 0.001)
(0.0002 0.0163 0.001)
(0.00025 0.0163 0.001)
(0.0003 0.0163 0.001)
(0.00035 0.0163 0.001)
(0.0004 0.0163 0.001)
(0.00045 0.0163 0.001)
(0.0005 0.0163 0.001)
(0.00055 0.0163 0.001)
(0.0006 0.0163 0.001)
(0.00065 0.0163 0.001)
(0.0007 0.0163 0.001)
(0.00075 0.0163 0.001)
(0.0008 0.0163 0.001)
(0.00085 0.0163 0.001)
(0.0009 0.0163 0.001)
(0.00095 0.0163 0.001)
(0.001 0.0163 0.001)
(0 0.01635 0.001)
(5e-05 0.01635 0.001)
(0.0001 0.01635 0.001)
(0.00015 0.01635 0.001)
(0.0002 0.01635 0.001)
(0.00025 0.01635 0.001)
(0.0003 0.01635 0.001)
(0.00035 0.01635 0.001)
(0.0004 0.01635 0.001)
(0.00045 0.01635 0.001)
(0.0005 0.01635 0.001)
(0.00055 0.01635 0.001)
(0.0006 0.01635 0.001)
(0.00065 0.01635 0.001)
(0.0007 0.01635 0.001)
(0.00075 0.01635 0.001)
(0.0008 0.01635 0.001)
(0.00085 0.01635 0.001)
(0.0009 0.01635 0.001)
(0.00095 0.01635 0.001)
(0.001 0.01635 0.001)
(0 0.0164 0.001)
(5e-05 0.0164 0.001)
(0.0001 0.0164 0.001)
(0.00015 0.0164 0.001)
(0.0002 0.0164 0.001)
(0.00025 0.0164 0.001)
(0.0003 0.0164 0.001)
(0.00035 0.0164 0.001)
(0.0004 0.0164 0.001)
(0.00045 0.0164 0.001)
(0.0005 0.0164 0.001)
(0.00055 0.0164 0.001)
(0.0006 0.0164 0.001)
(0.00065 0.0164 0.001)
(0.0007 0.0164 0.001)
(0.00075 0.0164 0.001)
(0.0008 0.0164 0.001)
(0.00085 0.0164 0.001)
(0.0009 0.0164 0.001)
(0.00095 0.0164 0.001)
(0.001 0.0164 0.001)
(0 0.01645 0.001)
(5e-05 0.01645 0.001)
(0.0001 0.01645 0.001)
(0.00015 0.01645 0.001)
(0.0002 0.01645 0.001)
(0.00025 0.01645 0.001)
(0.0003 0.01645 0.001)
(0.00035 0.01645 0.001)
(0.0004 0.01645 0.001)
(0.00045 0.01645 0.001)
(0.0005 0.01645 0.001)
(0.00055 0.01645 0.001)
(0.0006 0.01645 0.001)
(0.00065 0.01645 0.001)
(0.0007 0.01645 0.001)
(0.00075 0.01645 0.001)
(0.0008 0.01645 0.001)
(0.00085 0.01645 0.001)
(0.0009 0.01645 0.001)
(0.00095 0.01645 0.001)
(0.001 0.01645 0.001)
(0 0.0165 0.001)
(5e-05 0.0165 0.001)
(0.0001 0.0165 0.001)
(0.00015 0.0165 0.001)
(0.0002 0.0165 0.001)
(0.00025 0.0165 0.001)
(0.0003 0.0165 0.001)
(0.00035 0.0165 0.001)
(0.0004 0.0165 0.001)
(0.00045 0.0165 0.001)
(0.0005 0.0165 0.001)
(0.00055 0.0165 0.001)
(0.0006 0.0165 0.001)
(0.00065 0.0165 0.001)
(0.0007 0.0165 0.001)
(0.00075 0.0165 0.001)
(0.0008 0.0165 0.001)
(0.00085 0.0165 0.001)
(0.0009 0.0165 0.001)
(0.00095 0.0165 0.001)
(0.001 0.0165 0.001)
(0 0.01655 0.001)
(5e-05 0.01655 0.001)
(0.0001 0.01655 0.001)
(0.00015 0.01655 0.001)
(0.0002 0.01655 0.001)
(0.00025 0.01655 0.001)
(0.0003 0.01655 0.001)
(0.00035 0.01655 0.001)
(0.0004 0.01655 0.001)
(0.00045 0.01655 0.001)
(0.0005 0.01655 0.001)
(0.00055 0.01655 0.001)
(0.0006 0.01655 0.001)
(0.00065 0.01655 0.001)
(0.0007 0.01655 0.001)
(0.00075 0.01655 0.001)
(0.0008 0.01655 0.001)
(0.00085 0.01655 0.001)
(0.0009 0.01655 0.001)
(0.00095 0.01655 0.001)
(0.001 0.01655 0.001)
(0 0.0166 0.001)
(5e-05 0.0166 0.001)
(0.0001 0.0166 0.001)
(0.00015 0.0166 0.001)
(0.0002 0.0166 0.001)
(0.00025 0.0166 0.001)
(0.0003 0.0166 0.001)
(0.00035 0.0166 0.001)
(0.0004 0.0166 0.001)
(0.00045 0.0166 0.001)
(0.0005 0.0166 0.001)
(0.00055 0.0166 0.001)
(0.0006 0.0166 0.001)
(0.00065 0.0166 0.001)
(0.0007 0.0166 0.001)
(0.00075 0.0166 0.001)
(0.0008 0.0166 0.001)
(0.00085 0.0166 0.001)
(0.0009 0.0166 0.001)
(0.00095 0.0166 0.001)
(0.001 0.0166 0.001)
(0 0.01665 0.001)
(5e-05 0.01665 0.001)
(0.0001 0.01665 0.001)
(0.00015 0.01665 0.001)
(0.0002 0.01665 0.001)
(0.00025 0.01665 0.001)
(0.0003 0.01665 0.001)
(0.00035 0.01665 0.001)
(0.0004 0.01665 0.001)
(0.00045 0.01665 0.001)
(0.0005 0.01665 0.001)
(0.00055 0.01665 0.001)
(0.0006 0.01665 0.001)
(0.00065 0.01665 0.001)
(0.0007 0.01665 0.001)
(0.00075 0.01665 0.001)
(0.0008 0.01665 0.001)
(0.00085 0.01665 0.001)
(0.0009 0.01665 0.001)
(0.00095 0.01665 0.001)
(0.001 0.01665 0.001)
(0 0.0167 0.001)
(5e-05 0.0167 0.001)
(0.0001 0.0167 0.001)
(0.00015 0.0167 0.001)
(0.0002 0.0167 0.001)
(0.00025 0.0167 0.001)
(0.0003 0.0167 0.001)
(0.00035 0.0167 0.001)
(0.0004 0.0167 0.001)
(0.00045 0.0167 0.001)
(0.0005 0.0167 0.001)
(0.00055 0.0167 0.001)
(0.0006 0.0167 0.001)
(0.00065 0.0167 0.001)
(0.0007 0.0167 0.001)
(0.00075 0.0167 0.001)
(0.0008 0.0167 0.001)
(0.00085 0.0167 0.001)
(0.0009 0.0167 0.001)
(0.00095 0.0167 0.001)
(0.001 0.0167 0.001)
(0 0.01675 0.001)
(5e-05 0.01675 0.001)
(0.0001 0.01675 0.001)
(0.00015 0.01675 0.001)
(0.0002 0.01675 0.001)
(0.00025 0.01675 0.001)
(0.0003 0.01675 0.001)
(0.00035 0.01675 0.001)
(0.0004 0.01675 0.001)
(0.00045 0.01675 0.001)
(0.0005 0.01675 0.001)
(0.00055 0.01675 0.001)
(0.0006 0.01675 0.001)
(0.00065 0.01675 0.001)
(0.0007 0.01675 0.001)
(0.00075 0.01675 0.001)
(0.0008 0.01675 0.001)
(0.00085 0.01675 0.001)
(0.0009 0.01675 0.001)
(0.00095 0.01675 0.001)
(0.001 0.01675 0.001)
(0 0.0168 0.001)
(5e-05 0.0168 0.001)
(0.0001 0.0168 0.001)
(0.00015 0.0168 0.001)
(0.0002 0.0168 0.001)
(0.00025 0.0168 0.001)
(0.0003 0.0168 0.001)
(0.00035 0.0168 0.001)
(0.0004 0.0168 0.001)
(0.00045 0.0168 0.001)
(0.0005 0.0168 0.001)
(0.00055 0.0168 0.001)
(0.0006 0.0168 0.001)
(0.00065 0.0168 0.001)
(0.0007 0.0168 0.001)
(0.00075 0.0168 0.001)
(0.0008 0.0168 0.001)
(0.00085 0.0168 0.001)
(0.0009 0.0168 0.001)
(0.00095 0.0168 0.001)
(0.001 0.0168 0.001)
(0 0.01685 0.001)
(5e-05 0.01685 0.001)
(0.0001 0.01685 0.001)
(0.00015 0.01685 0.001)
(0.0002 0.01685 0.001)
(0.00025 0.01685 0.001)
(0.0003 0.01685 0.001)
(0.00035 0.01685 0.001)
(0.0004 0.01685 0.001)
(0.00045 0.01685 0.001)
(0.0005 0.01685 0.001)
(0.00055 0.01685 0.001)
(0.0006 0.01685 0.001)
(0.00065 0.01685 0.001)
(0.0007 0.01685 0.001)
(0.00075 0.01685 0.001)
(0.0008 0.01685 0.001)
(0.00085 0.01685 0.001)
(0.0009 0.01685 0.001)
(0.00095 0.01685 0.001)
(0.001 0.01685 0.001)
(0 0.0169 0.001)
(5e-05 0.0169 0.001)
(0.0001 0.0169 0.001)
(0.00015 0.0169 0.001)
(0.0002 0.0169 0.001)
(0.00025 0.0169 0.001)
(0.0003 0.0169 0.001)
(0.00035 0.0169 0.001)
(0.0004 0.0169 0.001)
(0.00045 0.0169 0.001)
(0.0005 0.0169 0.001)
(0.00055 0.0169 0.001)
(0.0006 0.0169 0.001)
(0.00065 0.0169 0.001)
(0.0007 0.0169 0.001)
(0.00075 0.0169 0.001)
(0.0008 0.0169 0.001)
(0.00085 0.0169 0.001)
(0.0009 0.0169 0.001)
(0.00095 0.0169 0.001)
(0.001 0.0169 0.001)
(0 0.01695 0.001)
(5e-05 0.01695 0.001)
(0.0001 0.01695 0.001)
(0.00015 0.01695 0.001)
(0.0002 0.01695 0.001)
(0.00025 0.01695 0.001)
(0.0003 0.01695 0.001)
(0.00035 0.01695 0.001)
(0.0004 0.01695 0.001)
(0.00045 0.01695 0.001)
(0.0005 0.01695 0.001)
(0.00055 0.01695 0.001)
(0.0006 0.01695 0.001)
(0.00065 0.01695 0.001)
(0.0007 0.01695 0.001)
(0.00075 0.01695 0.001)
(0.0008 0.01695 0.001)
(0.00085 0.01695 0.001)
(0.0009 0.01695 0.001)
(0.00095 0.01695 0.001)
(0.001 0.01695 0.001)
(0 0.017 0.001)
(5e-05 0.017 0.001)
(0.0001 0.017 0.001)
(0.00015 0.017 0.001)
(0.0002 0.017 0.001)
(0.00025 0.017 0.001)
(0.0003 0.017 0.001)
(0.00035 0.017 0.001)
(0.0004 0.017 0.001)
(0.00045 0.017 0.001)
(0.0005 0.017 0.001)
(0.00055 0.017 0.001)
(0.0006 0.017 0.001)
(0.00065 0.017 0.001)
(0.0007 0.017 0.001)
(0.00075 0.017 0.001)
(0.0008 0.017 0.001)
(0.00085 0.017 0.001)
(0.0009 0.017 0.001)
(0.00095 0.017 0.001)
(0.001 0.017 0.001)
(0 0.01705 0.001)
(5e-05 0.01705 0.001)
(0.0001 0.01705 0.001)
(0.00015 0.01705 0.001)
(0.0002 0.01705 0.001)
(0.00025 0.01705 0.001)
(0.0003 0.01705 0.001)
(0.00035 0.01705 0.001)
(0.0004 0.01705 0.001)
(0.00045 0.01705 0.001)
(0.0005 0.01705 0.001)
(0.00055 0.01705 0.001)
(0.0006 0.01705 0.001)
(0.00065 0.01705 0.001)
(0.0007 0.01705 0.001)
(0.00075 0.01705 0.001)
(0.0008 0.01705 0.001)
(0.00085 0.01705 0.001)
(0.0009 0.01705 0.001)
(0.00095 0.01705 0.001)
(0.001 0.01705 0.001)
(0 0.0171 0.001)
(5e-05 0.0171 0.001)
(0.0001 0.0171 0.001)
(0.00015 0.0171 0.001)
(0.0002 0.0171 0.001)
(0.00025 0.0171 0.001)
(0.0003 0.0171 0.001)
(0.00035 0.0171 0.001)
(0.0004 0.0171 0.001)
(0.00045 0.0171 0.001)
(0.0005 0.0171 0.001)
(0.00055 0.0171 0.001)
(0.0006 0.0171 0.001)
(0.00065 0.0171 0.001)
(0.0007 0.0171 0.001)
(0.00075 0.0171 0.001)
(0.0008 0.0171 0.001)
(0.00085 0.0171 0.001)
(0.0009 0.0171 0.001)
(0.00095 0.0171 0.001)
(0.001 0.0171 0.001)
(0 0.01715 0.001)
(5e-05 0.01715 0.001)
(0.0001 0.01715 0.001)
(0.00015 0.01715 0.001)
(0.0002 0.01715 0.001)
(0.00025 0.01715 0.001)
(0.0003 0.01715 0.001)
(0.00035 0.01715 0.001)
(0.0004 0.01715 0.001)
(0.00045 0.01715 0.001)
(0.0005 0.01715 0.001)
(0.00055 0.01715 0.001)
(0.0006 0.01715 0.001)
(0.00065 0.01715 0.001)
(0.0007 0.01715 0.001)
(0.00075 0.01715 0.001)
(0.0008 0.01715 0.001)
(0.00085 0.01715 0.001)
(0.0009 0.01715 0.001)
(0.00095 0.01715 0.001)
(0.001 0.01715 0.001)
(0 0.0172 0.001)
(5e-05 0.0172 0.001)
(0.0001 0.0172 0.001)
(0.00015 0.0172 0.001)
(0.0002 0.0172 0.001)
(0.00025 0.0172 0.001)
(0.0003 0.0172 0.001)
(0.00035 0.0172 0.001)
(0.0004 0.0172 0.001)
(0.00045 0.0172 0.001)
(0.0005 0.0172 0.001)
(0.00055 0.0172 0.001)
(0.0006 0.0172 0.001)
(0.00065 0.0172 0.001)
(0.0007 0.0172 0.001)
(0.00075 0.0172 0.001)
(0.0008 0.0172 0.001)
(0.00085 0.0172 0.001)
(0.0009 0.0172 0.001)
(0.00095 0.0172 0.001)
(0.001 0.0172 0.001)
(0 0.01725 0.001)
(5e-05 0.01725 0.001)
(0.0001 0.01725 0.001)
(0.00015 0.01725 0.001)
(0.0002 0.01725 0.001)
(0.00025 0.01725 0.001)
(0.0003 0.01725 0.001)
(0.00035 0.01725 0.001)
(0.0004 0.01725 0.001)
(0.00045 0.01725 0.001)
(0.0005 0.01725 0.001)
(0.00055 0.01725 0.001)
(0.0006 0.01725 0.001)
(0.00065 0.01725 0.001)
(0.0007 0.01725 0.001)
(0.00075 0.01725 0.001)
(0.0008 0.01725 0.001)
(0.00085 0.01725 0.001)
(0.0009 0.01725 0.001)
(0.00095 0.01725 0.001)
(0.001 0.01725 0.001)
(0 0.0173 0.001)
(5e-05 0.0173 0.001)
(0.0001 0.0173 0.001)
(0.00015 0.0173 0.001)
(0.0002 0.0173 0.001)
(0.00025 0.0173 0.001)
(0.0003 0.0173 0.001)
(0.00035 0.0173 0.001)
(0.0004 0.0173 0.001)
(0.00045 0.0173 0.001)
(0.0005 0.0173 0.001)
(0.00055 0.0173 0.001)
(0.0006 0.0173 0.001)
(0.00065 0.0173 0.001)
(0.0007 0.0173 0.001)
(0.00075 0.0173 0.001)
(0.0008 0.0173 0.001)
(0.00085 0.0173 0.001)
(0.0009 0.0173 0.001)
(0.00095 0.0173 0.001)
(0.001 0.0173 0.001)
(0 0.01735 0.001)
(5e-05 0.01735 0.001)
(0.0001 0.01735 0.001)
(0.00015 0.01735 0.001)
(0.0002 0.01735 0.001)
(0.00025 0.01735 0.001)
(0.0003 0.01735 0.001)
(0.00035 0.01735 0.001)
(0.0004 0.01735 0.001)
(0.00045 0.01735 0.001)
(0.0005 0.01735 0.001)
(0.00055 0.01735 0.001)
(0.0006 0.01735 0.001)
(0.00065 0.01735 0.001)
(0.0007 0.01735 0.001)
(0.00075 0.01735 0.001)
(0.0008 0.01735 0.001)
(0.00085 0.01735 0.001)
(0.0009 0.01735 0.001)
(0.00095 0.01735 0.001)
(0.001 0.01735 0.001)
(0 0.0174 0.001)
(5e-05 0.0174 0.001)
(0.0001 0.0174 0.001)
(0.00015 0.0174 0.001)
(0.0002 0.0174 0.001)
(0.00025 0.0174 0.001)
(0.0003 0.0174 0.001)
(0.00035 0.0174 0.001)
(0.0004 0.0174 0.001)
(0.00045 0.0174 0.001)
(0.0005 0.0174 0.001)
(0.00055 0.0174 0.001)
(0.0006 0.0174 0.001)
(0.00065 0.0174 0.001)
(0.0007 0.0174 0.001)
(0.00075 0.0174 0.001)
(0.0008 0.0174 0.001)
(0.00085 0.0174 0.001)
(0.0009 0.0174 0.001)
(0.00095 0.0174 0.001)
(0.001 0.0174 0.001)
(0 0.01745 0.001)
(5e-05 0.01745 0.001)
(0.0001 0.01745 0.001)
(0.00015 0.01745 0.001)
(0.0002 0.01745 0.001)
(0.00025 0.01745 0.001)
(0.0003 0.01745 0.001)
(0.00035 0.01745 0.001)
(0.0004 0.01745 0.001)
(0.00045 0.01745 0.001)
(0.0005 0.01745 0.001)
(0.00055 0.01745 0.001)
(0.0006 0.01745 0.001)
(0.00065 0.01745 0.001)
(0.0007 0.01745 0.001)
(0.00075 0.01745 0.001)
(0.0008 0.01745 0.001)
(0.00085 0.01745 0.001)
(0.0009 0.01745 0.001)
(0.00095 0.01745 0.001)
(0.001 0.01745 0.001)
(0 0.0175 0.001)
(5e-05 0.0175 0.001)
(0.0001 0.0175 0.001)
(0.00015 0.0175 0.001)
(0.0002 0.0175 0.001)
(0.00025 0.0175 0.001)
(0.0003 0.0175 0.001)
(0.00035 0.0175 0.001)
(0.0004 0.0175 0.001)
(0.00045 0.0175 0.001)
(0.0005 0.0175 0.001)
(0.00055 0.0175 0.001)
(0.0006 0.0175 0.001)
(0.00065 0.0175 0.001)
(0.0007 0.0175 0.001)
(0.00075 0.0175 0.001)
(0.0008 0.0175 0.001)
(0.00085 0.0175 0.001)
(0.0009 0.0175 0.001)
(0.00095 0.0175 0.001)
(0.001 0.0175 0.001)
(0 0.01755 0.001)
(5e-05 0.01755 0.001)
(0.0001 0.01755 0.001)
(0.00015 0.01755 0.001)
(0.0002 0.01755 0.001)
(0.00025 0.01755 0.001)
(0.0003 0.01755 0.001)
(0.00035 0.01755 0.001)
(0.0004 0.01755 0.001)
(0.00045 0.01755 0.001)
(0.0005 0.01755 0.001)
(0.00055 0.01755 0.001)
(0.0006 0.01755 0.001)
(0.00065 0.01755 0.001)
(0.0007 0.01755 0.001)
(0.00075 0.01755 0.001)
(0.0008 0.01755 0.001)
(0.00085 0.01755 0.001)
(0.0009 0.01755 0.001)
(0.00095 0.01755 0.001)
(0.001 0.01755 0.001)
(0 0.0176 0.001)
(5e-05 0.0176 0.001)
(0.0001 0.0176 0.001)
(0.00015 0.0176 0.001)
(0.0002 0.0176 0.001)
(0.00025 0.0176 0.001)
(0.0003 0.0176 0.001)
(0.00035 0.0176 0.001)
(0.0004 0.0176 0.001)
(0.00045 0.0176 0.001)
(0.0005 0.0176 0.001)
(0.00055 0.0176 0.001)
(0.0006 0.0176 0.001)
(0.00065 0.0176 0.001)
(0.0007 0.0176 0.001)
(0.00075 0.0176 0.001)
(0.0008 0.0176 0.001)
(0.00085 0.0176 0.001)
(0.0009 0.0176 0.001)
(0.00095 0.0176 0.001)
(0.001 0.0176 0.001)
(0 0.01765 0.001)
(5e-05 0.01765 0.001)
(0.0001 0.01765 0.001)
(0.00015 0.01765 0.001)
(0.0002 0.01765 0.001)
(0.00025 0.01765 0.001)
(0.0003 0.01765 0.001)
(0.00035 0.01765 0.001)
(0.0004 0.01765 0.001)
(0.00045 0.01765 0.001)
(0.0005 0.01765 0.001)
(0.00055 0.01765 0.001)
(0.0006 0.01765 0.001)
(0.00065 0.01765 0.001)
(0.0007 0.01765 0.001)
(0.00075 0.01765 0.001)
(0.0008 0.01765 0.001)
(0.00085 0.01765 0.001)
(0.0009 0.01765 0.001)
(0.00095 0.01765 0.001)
(0.001 0.01765 0.001)
(0 0.0177 0.001)
(5e-05 0.0177 0.001)
(0.0001 0.0177 0.001)
(0.00015 0.0177 0.001)
(0.0002 0.0177 0.001)
(0.00025 0.0177 0.001)
(0.0003 0.0177 0.001)
(0.00035 0.0177 0.001)
(0.0004 0.0177 0.001)
(0.00045 0.0177 0.001)
(0.0005 0.0177 0.001)
(0.00055 0.0177 0.001)
(0.0006 0.0177 0.001)
(0.00065 0.0177 0.001)
(0.0007 0.0177 0.001)
(0.00075 0.0177 0.001)
(0.0008 0.0177 0.001)
(0.00085 0.0177 0.001)
(0.0009 0.0177 0.001)
(0.00095 0.0177 0.001)
(0.001 0.0177 0.001)
(0 0.01775 0.001)
(5e-05 0.01775 0.001)
(0.0001 0.01775 0.001)
(0.00015 0.01775 0.001)
(0.0002 0.01775 0.001)
(0.00025 0.01775 0.001)
(0.0003 0.01775 0.001)
(0.00035 0.01775 0.001)
(0.0004 0.01775 0.001)
(0.00045 0.01775 0.001)
(0.0005 0.01775 0.001)
(0.00055 0.01775 0.001)
(0.0006 0.01775 0.001)
(0.00065 0.01775 0.001)
(0.0007 0.01775 0.001)
(0.00075 0.01775 0.001)
(0.0008 0.01775 0.001)
(0.00085 0.01775 0.001)
(0.0009 0.01775 0.001)
(0.00095 0.01775 0.001)
(0.001 0.01775 0.001)
(0 0.0178 0.001)
(5e-05 0.0178 0.001)
(0.0001 0.0178 0.001)
(0.00015 0.0178 0.001)
(0.0002 0.0178 0.001)
(0.00025 0.0178 0.001)
(0.0003 0.0178 0.001)
(0.00035 0.0178 0.001)
(0.0004 0.0178 0.001)
(0.00045 0.0178 0.001)
(0.0005 0.0178 0.001)
(0.00055 0.0178 0.001)
(0.0006 0.0178 0.001)
(0.00065 0.0178 0.001)
(0.0007 0.0178 0.001)
(0.00075 0.0178 0.001)
(0.0008 0.0178 0.001)
(0.00085 0.0178 0.001)
(0.0009 0.0178 0.001)
(0.00095 0.0178 0.001)
(0.001 0.0178 0.001)
(0 0.01785 0.001)
(5e-05 0.01785 0.001)
(0.0001 0.01785 0.001)
(0.00015 0.01785 0.001)
(0.0002 0.01785 0.001)
(0.00025 0.01785 0.001)
(0.0003 0.01785 0.001)
(0.00035 0.01785 0.001)
(0.0004 0.01785 0.001)
(0.00045 0.01785 0.001)
(0.0005 0.01785 0.001)
(0.00055 0.01785 0.001)
(0.0006 0.01785 0.001)
(0.00065 0.01785 0.001)
(0.0007 0.01785 0.001)
(0.00075 0.01785 0.001)
(0.0008 0.01785 0.001)
(0.00085 0.01785 0.001)
(0.0009 0.01785 0.001)
(0.00095 0.01785 0.001)
(0.001 0.01785 0.001)
(0 0.0179 0.001)
(5e-05 0.0179 0.001)
(0.0001 0.0179 0.001)
(0.00015 0.0179 0.001)
(0.0002 0.0179 0.001)
(0.00025 0.0179 0.001)
(0.0003 0.0179 0.001)
(0.00035 0.0179 0.001)
(0.0004 0.0179 0.001)
(0.00045 0.0179 0.001)
(0.0005 0.0179 0.001)
(0.00055 0.0179 0.001)
(0.0006 0.0179 0.001)
(0.00065 0.0179 0.001)
(0.0007 0.0179 0.001)
(0.00075 0.0179 0.001)
(0.0008 0.0179 0.001)
(0.00085 0.0179 0.001)
(0.0009 0.0179 0.001)
(0.00095 0.0179 0.001)
(0.001 0.0179 0.001)
(0 0.01795 0.001)
(5e-05 0.01795 0.001)
(0.0001 0.01795 0.001)
(0.00015 0.01795 0.001)
(0.0002 0.01795 0.001)
(0.00025 0.01795 0.001)
(0.0003 0.01795 0.001)
(0.00035 0.01795 0.001)
(0.0004 0.01795 0.001)
(0.00045 0.01795 0.001)
(0.0005 0.01795 0.001)
(0.00055 0.01795 0.001)
(0.0006 0.01795 0.001)
(0.00065 0.01795 0.001)
(0.0007 0.01795 0.001)
(0.00075 0.01795 0.001)
(0.0008 0.01795 0.001)
(0.00085 0.01795 0.001)
(0.0009 0.01795 0.001)
(0.00095 0.01795 0.001)
(0.001 0.01795 0.001)
(0 0.018 0.001)
(5e-05 0.018 0.001)
(0.0001 0.018 0.001)
(0.00015 0.018 0.001)
(0.0002 0.018 0.001)
(0.00025 0.018 0.001)
(0.0003 0.018 0.001)
(0.00035 0.018 0.001)
(0.0004 0.018 0.001)
(0.00045 0.018 0.001)
(0.0005 0.018 0.001)
(0.00055 0.018 0.001)
(0.0006 0.018 0.001)
(0.00065 0.018 0.001)
(0.0007 0.018 0.001)
(0.00075 0.018 0.001)
(0.0008 0.018 0.001)
(0.00085 0.018 0.001)
(0.0009 0.018 0.001)
(0.00095 0.018 0.001)
(0.001 0.018 0.001)
(0 0.01805 0.001)
(5e-05 0.01805 0.001)
(0.0001 0.01805 0.001)
(0.00015 0.01805 0.001)
(0.0002 0.01805 0.001)
(0.00025 0.01805 0.001)
(0.0003 0.01805 0.001)
(0.00035 0.01805 0.001)
(0.0004 0.01805 0.001)
(0.00045 0.01805 0.001)
(0.0005 0.01805 0.001)
(0.00055 0.01805 0.001)
(0.0006 0.01805 0.001)
(0.00065 0.01805 0.001)
(0.0007 0.01805 0.001)
(0.00075 0.01805 0.001)
(0.0008 0.01805 0.001)
(0.00085 0.01805 0.001)
(0.0009 0.01805 0.001)
(0.00095 0.01805 0.001)
(0.001 0.01805 0.001)
(0 0.0181 0.001)
(5e-05 0.0181 0.001)
(0.0001 0.0181 0.001)
(0.00015 0.0181 0.001)
(0.0002 0.0181 0.001)
(0.00025 0.0181 0.001)
(0.0003 0.0181 0.001)
(0.00035 0.0181 0.001)
(0.0004 0.0181 0.001)
(0.00045 0.0181 0.001)
(0.0005 0.0181 0.001)
(0.00055 0.0181 0.001)
(0.0006 0.0181 0.001)
(0.00065 0.0181 0.001)
(0.0007 0.0181 0.001)
(0.00075 0.0181 0.001)
(0.0008 0.0181 0.001)
(0.00085 0.0181 0.001)
(0.0009 0.0181 0.001)
(0.00095 0.0181 0.001)
(0.001 0.0181 0.001)
(0 0.01815 0.001)
(5e-05 0.01815 0.001)
(0.0001 0.01815 0.001)
(0.00015 0.01815 0.001)
(0.0002 0.01815 0.001)
(0.00025 0.01815 0.001)
(0.0003 0.01815 0.001)
(0.00035 0.01815 0.001)
(0.0004 0.01815 0.001)
(0.00045 0.01815 0.001)
(0.0005 0.01815 0.001)
(0.00055 0.01815 0.001)
(0.0006 0.01815 0.001)
(0.00065 0.01815 0.001)
(0.0007 0.01815 0.001)
(0.00075 0.01815 0.001)
(0.0008 0.01815 0.001)
(0.00085 0.01815 0.001)
(0.0009 0.01815 0.001)
(0.00095 0.01815 0.001)
(0.001 0.01815 0.001)
(0 0.0182 0.001)
(5e-05 0.0182 0.001)
(0.0001 0.0182 0.001)
(0.00015 0.0182 0.001)
(0.0002 0.0182 0.001)
(0.00025 0.0182 0.001)
(0.0003 0.0182 0.001)
(0.00035 0.0182 0.001)
(0.0004 0.0182 0.001)
(0.00045 0.0182 0.001)
(0.0005 0.0182 0.001)
(0.00055 0.0182 0.001)
(0.0006 0.0182 0.001)
(0.00065 0.0182 0.001)
(0.0007 0.0182 0.001)
(0.00075 0.0182 0.001)
(0.0008 0.0182 0.001)
(0.00085 0.0182 0.001)
(0.0009 0.0182 0.001)
(0.00095 0.0182 0.001)
(0.001 0.0182 0.001)
(0 0.01825 0.001)
(5e-05 0.01825 0.001)
(0.0001 0.01825 0.001)
(0.00015 0.01825 0.001)
(0.0002 0.01825 0.001)
(0.00025 0.01825 0.001)
(0.0003 0.01825 0.001)
(0.00035 0.01825 0.001)
(0.0004 0.01825 0.001)
(0.00045 0.01825 0.001)
(0.0005 0.01825 0.001)
(0.00055 0.01825 0.001)
(0.0006 0.01825 0.001)
(0.00065 0.01825 0.001)
(0.0007 0.01825 0.001)
(0.00075 0.01825 0.001)
(0.0008 0.01825 0.001)
(0.00085 0.01825 0.001)
(0.0009 0.01825 0.001)
(0.00095 0.01825 0.001)
(0.001 0.01825 0.001)
(0 0.0183 0.001)
(5e-05 0.0183 0.001)
(0.0001 0.0183 0.001)
(0.00015 0.0183 0.001)
(0.0002 0.0183 0.001)
(0.00025 0.0183 0.001)
(0.0003 0.0183 0.001)
(0.00035 0.0183 0.001)
(0.0004 0.0183 0.001)
(0.00045 0.0183 0.001)
(0.0005 0.0183 0.001)
(0.00055 0.0183 0.001)
(0.0006 0.0183 0.001)
(0.00065 0.0183 0.001)
(0.0007 0.0183 0.001)
(0.00075 0.0183 0.001)
(0.0008 0.0183 0.001)
(0.00085 0.0183 0.001)
(0.0009 0.0183 0.001)
(0.00095 0.0183 0.001)
(0.001 0.0183 0.001)
(0 0.01835 0.001)
(5e-05 0.01835 0.001)
(0.0001 0.01835 0.001)
(0.00015 0.01835 0.001)
(0.0002 0.01835 0.001)
(0.00025 0.01835 0.001)
(0.0003 0.01835 0.001)
(0.00035 0.01835 0.001)
(0.0004 0.01835 0.001)
(0.00045 0.01835 0.001)
(0.0005 0.01835 0.001)
(0.00055 0.01835 0.001)
(0.0006 0.01835 0.001)
(0.00065 0.01835 0.001)
(0.0007 0.01835 0.001)
(0.00075 0.01835 0.001)
(0.0008 0.01835 0.001)
(0.00085 0.01835 0.001)
(0.0009 0.01835 0.001)
(0.00095 0.01835 0.001)
(0.001 0.01835 0.001)
(0 0.0184 0.001)
(5e-05 0.0184 0.001)
(0.0001 0.0184 0.001)
(0.00015 0.0184 0.001)
(0.0002 0.0184 0.001)
(0.00025 0.0184 0.001)
(0.0003 0.0184 0.001)
(0.00035 0.0184 0.001)
(0.0004 0.0184 0.001)
(0.00045 0.0184 0.001)
(0.0005 0.0184 0.001)
(0.00055 0.0184 0.001)
(0.0006 0.0184 0.001)
(0.00065 0.0184 0.001)
(0.0007 0.0184 0.001)
(0.00075 0.0184 0.001)
(0.0008 0.0184 0.001)
(0.00085 0.0184 0.001)
(0.0009 0.0184 0.001)
(0.00095 0.0184 0.001)
(0.001 0.0184 0.001)
(0 0.01845 0.001)
(5e-05 0.01845 0.001)
(0.0001 0.01845 0.001)
(0.00015 0.01845 0.001)
(0.0002 0.01845 0.001)
(0.00025 0.01845 0.001)
(0.0003 0.01845 0.001)
(0.00035 0.01845 0.001)
(0.0004 0.01845 0.001)
(0.00045 0.01845 0.001)
(0.0005 0.01845 0.001)
(0.00055 0.01845 0.001)
(0.0006 0.01845 0.001)
(0.00065 0.01845 0.001)
(0.0007 0.01845 0.001)
(0.00075 0.01845 0.001)
(0.0008 0.01845 0.001)
(0.00085 0.01845 0.001)
(0.0009 0.01845 0.001)
(0.00095 0.01845 0.001)
(0.001 0.01845 0.001)
(0 0.0185 0.001)
(5e-05 0.0185 0.001)
(0.0001 0.0185 0.001)
(0.00015 0.0185 0.001)
(0.0002 0.0185 0.001)
(0.00025 0.0185 0.001)
(0.0003 0.0185 0.001)
(0.00035 0.0185 0.001)
(0.0004 0.0185 0.001)
(0.00045 0.0185 0.001)
(0.0005 0.0185 0.001)
(0.00055 0.0185 0.001)
(0.0006 0.0185 0.001)
(0.00065 0.0185 0.001)
(0.0007 0.0185 0.001)
(0.00075 0.0185 0.001)
(0.0008 0.0185 0.001)
(0.00085 0.0185 0.001)
(0.0009 0.0185 0.001)
(0.00095 0.0185 0.001)
(0.001 0.0185 0.001)
(0 0.01855 0.001)
(5e-05 0.01855 0.001)
(0.0001 0.01855 0.001)
(0.00015 0.01855 0.001)
(0.0002 0.01855 0.001)
(0.00025 0.01855 0.001)
(0.0003 0.01855 0.001)
(0.00035 0.01855 0.001)
(0.0004 0.01855 0.001)
(0.00045 0.01855 0.001)
(0.0005 0.01855 0.001)
(0.00055 0.01855 0.001)
(0.0006 0.01855 0.001)
(0.00065 0.01855 0.001)
(0.0007 0.01855 0.001)
(0.00075 0.01855 0.001)
(0.0008 0.01855 0.001)
(0.00085 0.01855 0.001)
(0.0009 0.01855 0.001)
(0.00095 0.01855 0.001)
(0.001 0.01855 0.001)
(0 0.0186 0.001)
(5e-05 0.0186 0.001)
(0.0001 0.0186 0.001)
(0.00015 0.0186 0.001)
(0.0002 0.0186 0.001)
(0.00025 0.0186 0.001)
(0.0003 0.0186 0.001)
(0.00035 0.0186 0.001)
(0.0004 0.0186 0.001)
(0.00045 0.0186 0.001)
(0.0005 0.0186 0.001)
(0.00055 0.0186 0.001)
(0.0006 0.0186 0.001)
(0.00065 0.0186 0.001)
(0.0007 0.0186 0.001)
(0.00075 0.0186 0.001)
(0.0008 0.0186 0.001)
(0.00085 0.0186 0.001)
(0.0009 0.0186 0.001)
(0.00095 0.0186 0.001)
(0.001 0.0186 0.001)
(0 0.01865 0.001)
(5e-05 0.01865 0.001)
(0.0001 0.01865 0.001)
(0.00015 0.01865 0.001)
(0.0002 0.01865 0.001)
(0.00025 0.01865 0.001)
(0.0003 0.01865 0.001)
(0.00035 0.01865 0.001)
(0.0004 0.01865 0.001)
(0.00045 0.01865 0.001)
(0.0005 0.01865 0.001)
(0.00055 0.01865 0.001)
(0.0006 0.01865 0.001)
(0.00065 0.01865 0.001)
(0.0007 0.01865 0.001)
(0.00075 0.01865 0.001)
(0.0008 0.01865 0.001)
(0.00085 0.01865 0.001)
(0.0009 0.01865 0.001)
(0.00095 0.01865 0.001)
(0.001 0.01865 0.001)
(0 0.0187 0.001)
(5e-05 0.0187 0.001)
(0.0001 0.0187 0.001)
(0.00015 0.0187 0.001)
(0.0002 0.0187 0.001)
(0.00025 0.0187 0.001)
(0.0003 0.0187 0.001)
(0.00035 0.0187 0.001)
(0.0004 0.0187 0.001)
(0.00045 0.0187 0.001)
(0.0005 0.0187 0.001)
(0.00055 0.0187 0.001)
(0.0006 0.0187 0.001)
(0.00065 0.0187 0.001)
(0.0007 0.0187 0.001)
(0.00075 0.0187 0.001)
(0.0008 0.0187 0.001)
(0.00085 0.0187 0.001)
(0.0009 0.0187 0.001)
(0.00095 0.0187 0.001)
(0.001 0.0187 0.001)
(0 0.01875 0.001)
(5e-05 0.01875 0.001)
(0.0001 0.01875 0.001)
(0.00015 0.01875 0.001)
(0.0002 0.01875 0.001)
(0.00025 0.01875 0.001)
(0.0003 0.01875 0.001)
(0.00035 0.01875 0.001)
(0.0004 0.01875 0.001)
(0.00045 0.01875 0.001)
(0.0005 0.01875 0.001)
(0.00055 0.01875 0.001)
(0.0006 0.01875 0.001)
(0.00065 0.01875 0.001)
(0.0007 0.01875 0.001)
(0.00075 0.01875 0.001)
(0.0008 0.01875 0.001)
(0.00085 0.01875 0.001)
(0.0009 0.01875 0.001)
(0.00095 0.01875 0.001)
(0.001 0.01875 0.001)
(0 0.0188 0.001)
(5e-05 0.0188 0.001)
(0.0001 0.0188 0.001)
(0.00015 0.0188 0.001)
(0.0002 0.0188 0.001)
(0.00025 0.0188 0.001)
(0.0003 0.0188 0.001)
(0.00035 0.0188 0.001)
(0.0004 0.0188 0.001)
(0.00045 0.0188 0.001)
(0.0005 0.0188 0.001)
(0.00055 0.0188 0.001)
(0.0006 0.0188 0.001)
(0.00065 0.0188 0.001)
(0.0007 0.0188 0.001)
(0.00075 0.0188 0.001)
(0.0008 0.0188 0.001)
(0.00085 0.0188 0.001)
(0.0009 0.0188 0.001)
(0.00095 0.0188 0.001)
(0.001 0.0188 0.001)
(0 0.01885 0.001)
(5e-05 0.01885 0.001)
(0.0001 0.01885 0.001)
(0.00015 0.01885 0.001)
(0.0002 0.01885 0.001)
(0.00025 0.01885 0.001)
(0.0003 0.01885 0.001)
(0.00035 0.01885 0.001)
(0.0004 0.01885 0.001)
(0.00045 0.01885 0.001)
(0.0005 0.01885 0.001)
(0.00055 0.01885 0.001)
(0.0006 0.01885 0.001)
(0.00065 0.01885 0.001)
(0.0007 0.01885 0.001)
(0.00075 0.01885 0.001)
(0.0008 0.01885 0.001)
(0.00085 0.01885 0.001)
(0.0009 0.01885 0.001)
(0.00095 0.01885 0.001)
(0.001 0.01885 0.001)
(0 0.0189 0.001)
(5e-05 0.0189 0.001)
(0.0001 0.0189 0.001)
(0.00015 0.0189 0.001)
(0.0002 0.0189 0.001)
(0.00025 0.0189 0.001)
(0.0003 0.0189 0.001)
(0.00035 0.0189 0.001)
(0.0004 0.0189 0.001)
(0.00045 0.0189 0.001)
(0.0005 0.0189 0.001)
(0.00055 0.0189 0.001)
(0.0006 0.0189 0.001)
(0.00065 0.0189 0.001)
(0.0007 0.0189 0.001)
(0.00075 0.0189 0.001)
(0.0008 0.0189 0.001)
(0.00085 0.0189 0.001)
(0.0009 0.0189 0.001)
(0.00095 0.0189 0.001)
(0.001 0.0189 0.001)
(0 0.01895 0.001)
(5e-05 0.01895 0.001)
(0.0001 0.01895 0.001)
(0.00015 0.01895 0.001)
(0.0002 0.01895 0.001)
(0.00025 0.01895 0.001)
(0.0003 0.01895 0.001)
(0.00035 0.01895 0.001)
(0.0004 0.01895 0.001)
(0.00045 0.01895 0.001)
(0.0005 0.01895 0.001)
(0.00055 0.01895 0.001)
(0.0006 0.01895 0.001)
(0.00065 0.01895 0.001)
(0.0007 0.01895 0.001)
(0.00075 0.01895 0.001)
(0.0008 0.01895 0.001)
(0.00085 0.01895 0.001)
(0.0009 0.01895 0.001)
(0.00095 0.01895 0.001)
(0.001 0.01895 0.001)
(0 0.019 0.001)
(5e-05 0.019 0.001)
(0.0001 0.019 0.001)
(0.00015 0.019 0.001)
(0.0002 0.019 0.001)
(0.00025 0.019 0.001)
(0.0003 0.019 0.001)
(0.00035 0.019 0.001)
(0.0004 0.019 0.001)
(0.00045 0.019 0.001)
(0.0005 0.019 0.001)
(0.00055 0.019 0.001)
(0.0006 0.019 0.001)
(0.00065 0.019 0.001)
(0.0007 0.019 0.001)
(0.00075 0.019 0.001)
(0.0008 0.019 0.001)
(0.00085 0.019 0.001)
(0.0009 0.019 0.001)
(0.00095 0.019 0.001)
(0.001 0.019 0.001)
(0 0.01905 0.001)
(5e-05 0.01905 0.001)
(0.0001 0.01905 0.001)
(0.00015 0.01905 0.001)
(0.0002 0.01905 0.001)
(0.00025 0.01905 0.001)
(0.0003 0.01905 0.001)
(0.00035 0.01905 0.001)
(0.0004 0.01905 0.001)
(0.00045 0.01905 0.001)
(0.0005 0.01905 0.001)
(0.00055 0.01905 0.001)
(0.0006 0.01905 0.001)
(0.00065 0.01905 0.001)
(0.0007 0.01905 0.001)
(0.00075 0.01905 0.001)
(0.0008 0.01905 0.001)
(0.00085 0.01905 0.001)
(0.0009 0.01905 0.001)
(0.00095 0.01905 0.001)
(0.001 0.01905 0.001)
(0 0.0191 0.001)
(5e-05 0.0191 0.001)
(0.0001 0.0191 0.001)
(0.00015 0.0191 0.001)
(0.0002 0.0191 0.001)
(0.00025 0.0191 0.001)
(0.0003 0.0191 0.001)
(0.00035 0.0191 0.001)
(0.0004 0.0191 0.001)
(0.00045 0.0191 0.001)
(0.0005 0.0191 0.001)
(0.00055 0.0191 0.001)
(0.0006 0.0191 0.001)
(0.00065 0.0191 0.001)
(0.0007 0.0191 0.001)
(0.00075 0.0191 0.001)
(0.0008 0.0191 0.001)
(0.00085 0.0191 0.001)
(0.0009 0.0191 0.001)
(0.00095 0.0191 0.001)
(0.001 0.0191 0.001)
(0 0.01915 0.001)
(5e-05 0.01915 0.001)
(0.0001 0.01915 0.001)
(0.00015 0.01915 0.001)
(0.0002 0.01915 0.001)
(0.00025 0.01915 0.001)
(0.0003 0.01915 0.001)
(0.00035 0.01915 0.001)
(0.0004 0.01915 0.001)
(0.00045 0.01915 0.001)
(0.0005 0.01915 0.001)
(0.00055 0.01915 0.001)
(0.0006 0.01915 0.001)
(0.00065 0.01915 0.001)
(0.0007 0.01915 0.001)
(0.00075 0.01915 0.001)
(0.0008 0.01915 0.001)
(0.00085 0.01915 0.001)
(0.0009 0.01915 0.001)
(0.00095 0.01915 0.001)
(0.001 0.01915 0.001)
(0 0.0192 0.001)
(5e-05 0.0192 0.001)
(0.0001 0.0192 0.001)
(0.00015 0.0192 0.001)
(0.0002 0.0192 0.001)
(0.00025 0.0192 0.001)
(0.0003 0.0192 0.001)
(0.00035 0.0192 0.001)
(0.0004 0.0192 0.001)
(0.00045 0.0192 0.001)
(0.0005 0.0192 0.001)
(0.00055 0.0192 0.001)
(0.0006 0.0192 0.001)
(0.00065 0.0192 0.001)
(0.0007 0.0192 0.001)
(0.00075 0.0192 0.001)
(0.0008 0.0192 0.001)
(0.00085 0.0192 0.001)
(0.0009 0.0192 0.001)
(0.00095 0.0192 0.001)
(0.001 0.0192 0.001)
(0 0.01925 0.001)
(5e-05 0.01925 0.001)
(0.0001 0.01925 0.001)
(0.00015 0.01925 0.001)
(0.0002 0.01925 0.001)
(0.00025 0.01925 0.001)
(0.0003 0.01925 0.001)
(0.00035 0.01925 0.001)
(0.0004 0.01925 0.001)
(0.00045 0.01925 0.001)
(0.0005 0.01925 0.001)
(0.00055 0.01925 0.001)
(0.0006 0.01925 0.001)
(0.00065 0.01925 0.001)
(0.0007 0.01925 0.001)
(0.00075 0.01925 0.001)
(0.0008 0.01925 0.001)
(0.00085 0.01925 0.001)
(0.0009 0.01925 0.001)
(0.00095 0.01925 0.001)
(0.001 0.01925 0.001)
(0 0.0193 0.001)
(5e-05 0.0193 0.001)
(0.0001 0.0193 0.001)
(0.00015 0.0193 0.001)
(0.0002 0.0193 0.001)
(0.00025 0.0193 0.001)
(0.0003 0.0193 0.001)
(0.00035 0.0193 0.001)
(0.0004 0.0193 0.001)
(0.00045 0.0193 0.001)
(0.0005 0.0193 0.001)
(0.00055 0.0193 0.001)
(0.0006 0.0193 0.001)
(0.00065 0.0193 0.001)
(0.0007 0.0193 0.001)
(0.00075 0.0193 0.001)
(0.0008 0.0193 0.001)
(0.00085 0.0193 0.001)
(0.0009 0.0193 0.001)
(0.00095 0.0193 0.001)
(0.001 0.0193 0.001)
(0 0.01935 0.001)
(5e-05 0.01935 0.001)
(0.0001 0.01935 0.001)
(0.00015 0.01935 0.001)
(0.0002 0.01935 0.001)
(0.00025 0.01935 0.001)
(0.0003 0.01935 0.001)
(0.00035 0.01935 0.001)
(0.0004 0.01935 0.001)
(0.00045 0.01935 0.001)
(0.0005 0.01935 0.001)
(0.00055 0.01935 0.001)
(0.0006 0.01935 0.001)
(0.00065 0.01935 0.001)
(0.0007 0.01935 0.001)
(0.00075 0.01935 0.001)
(0.0008 0.01935 0.001)
(0.00085 0.01935 0.001)
(0.0009 0.01935 0.001)
(0.00095 0.01935 0.001)
(0.001 0.01935 0.001)
(0 0.0194 0.001)
(5e-05 0.0194 0.001)
(0.0001 0.0194 0.001)
(0.00015 0.0194 0.001)
(0.0002 0.0194 0.001)
(0.00025 0.0194 0.001)
(0.0003 0.0194 0.001)
(0.00035 0.0194 0.001)
(0.0004 0.0194 0.001)
(0.00045 0.0194 0.001)
(0.0005 0.0194 0.001)
(0.00055 0.0194 0.001)
(0.0006 0.0194 0.001)
(0.00065 0.0194 0.001)
(0.0007 0.0194 0.001)
(0.00075 0.0194 0.001)
(0.0008 0.0194 0.001)
(0.00085 0.0194 0.001)
(0.0009 0.0194 0.001)
(0.00095 0.0194 0.001)
(0.001 0.0194 0.001)
(0 0.01945 0.001)
(5e-05 0.01945 0.001)
(0.0001 0.01945 0.001)
(0.00015 0.01945 0.001)
(0.0002 0.01945 0.001)
(0.00025 0.01945 0.001)
(0.0003 0.01945 0.001)
(0.00035 0.01945 0.001)
(0.0004 0.01945 0.001)
(0.00045 0.01945 0.001)
(0.0005 0.01945 0.001)
(0.00055 0.01945 0.001)
(0.0006 0.01945 0.001)
(0.00065 0.01945 0.001)
(0.0007 0.01945 0.001)
(0.00075 0.01945 0.001)
(0.0008 0.01945 0.001)
(0.00085 0.01945 0.001)
(0.0009 0.01945 0.001)
(0.00095 0.01945 0.001)
(0.001 0.01945 0.001)
(0 0.0195 0.001)
(5e-05 0.0195 0.001)
(0.0001 0.0195 0.001)
(0.00015 0.0195 0.001)
(0.0002 0.0195 0.001)
(0.00025 0.0195 0.001)
(0.0003 0.0195 0.001)
(0.00035 0.0195 0.001)
(0.0004 0.0195 0.001)
(0.00045 0.0195 0.001)
(0.0005 0.0195 0.001)
(0.00055 0.0195 0.001)
(0.0006 0.0195 0.001)
(0.00065 0.0195 0.001)
(0.0007 0.0195 0.001)
(0.00075 0.0195 0.001)
(0.0008 0.0195 0.001)
(0.00085 0.0195 0.001)
(0.0009 0.0195 0.001)
(0.00095 0.0195 0.001)
(0.001 0.0195 0.001)
(0 0.01955 0.001)
(5e-05 0.01955 0.001)
(0.0001 0.01955 0.001)
(0.00015 0.01955 0.001)
(0.0002 0.01955 0.001)
(0.00025 0.01955 0.001)
(0.0003 0.01955 0.001)
(0.00035 0.01955 0.001)
(0.0004 0.01955 0.001)
(0.00045 0.01955 0.001)
(0.0005 0.01955 0.001)
(0.00055 0.01955 0.001)
(0.0006 0.01955 0.001)
(0.00065 0.01955 0.001)
(0.0007 0.01955 0.001)
(0.00075 0.01955 0.001)
(0.0008 0.01955 0.001)
(0.00085 0.01955 0.001)
(0.0009 0.01955 0.001)
(0.00095 0.01955 0.001)
(0.001 0.01955 0.001)
(0 0.0196 0.001)
(5e-05 0.0196 0.001)
(0.0001 0.0196 0.001)
(0.00015 0.0196 0.001)
(0.0002 0.0196 0.001)
(0.00025 0.0196 0.001)
(0.0003 0.0196 0.001)
(0.00035 0.0196 0.001)
(0.0004 0.0196 0.001)
(0.00045 0.0196 0.001)
(0.0005 0.0196 0.001)
(0.00055 0.0196 0.001)
(0.0006 0.0196 0.001)
(0.00065 0.0196 0.001)
(0.0007 0.0196 0.001)
(0.00075 0.0196 0.001)
(0.0008 0.0196 0.001)
(0.00085 0.0196 0.001)
(0.0009 0.0196 0.001)
(0.00095 0.0196 0.001)
(0.001 0.0196 0.001)
(0 0.01965 0.001)
(5e-05 0.01965 0.001)
(0.0001 0.01965 0.001)
(0.00015 0.01965 0.001)
(0.0002 0.01965 0.001)
(0.00025 0.01965 0.001)
(0.0003 0.01965 0.001)
(0.00035 0.01965 0.001)
(0.0004 0.01965 0.001)
(0.00045 0.01965 0.001)
(0.0005 0.01965 0.001)
(0.00055 0.01965 0.001)
(0.0006 0.01965 0.001)
(0.00065 0.01965 0.001)
(0.0007 0.01965 0.001)
(0.00075 0.01965 0.001)
(0.0008 0.01965 0.001)
(0.00085 0.01965 0.001)
(0.0009 0.01965 0.001)
(0.00095 0.01965 0.001)
(0.001 0.01965 0.001)
(0 0.0197 0.001)
(5e-05 0.0197 0.001)
(0.0001 0.0197 0.001)
(0.00015 0.0197 0.001)
(0.0002 0.0197 0.001)
(0.00025 0.0197 0.001)
(0.0003 0.0197 0.001)
(0.00035 0.0197 0.001)
(0.0004 0.0197 0.001)
(0.00045 0.0197 0.001)
(0.0005 0.0197 0.001)
(0.00055 0.0197 0.001)
(0.0006 0.0197 0.001)
(0.00065 0.0197 0.001)
(0.0007 0.0197 0.001)
(0.00075 0.0197 0.001)
(0.0008 0.0197 0.001)
(0.00085 0.0197 0.001)
(0.0009 0.0197 0.001)
(0.00095 0.0197 0.001)
(0.001 0.0197 0.001)
(0 0.01975 0.001)
(5e-05 0.01975 0.001)
(0.0001 0.01975 0.001)
(0.00015 0.01975 0.001)
(0.0002 0.01975 0.001)
(0.00025 0.01975 0.001)
(0.0003 0.01975 0.001)
(0.00035 0.01975 0.001)
(0.0004 0.01975 0.001)
(0.00045 0.01975 0.001)
(0.0005 0.01975 0.001)
(0.00055 0.01975 0.001)
(0.0006 0.01975 0.001)
(0.00065 0.01975 0.001)
(0.0007 0.01975 0.001)
(0.00075 0.01975 0.001)
(0.0008 0.01975 0.001)
(0.00085 0.01975 0.001)
(0.0009 0.01975 0.001)
(0.00095 0.01975 0.001)
(0.001 0.01975 0.001)
(0 0.0198 0.001)
(5e-05 0.0198 0.001)
(0.0001 0.0198 0.001)
(0.00015 0.0198 0.001)
(0.0002 0.0198 0.001)
(0.00025 0.0198 0.001)
(0.0003 0.0198 0.001)
(0.00035 0.0198 0.001)
(0.0004 0.0198 0.001)
(0.00045 0.0198 0.001)
(0.0005 0.0198 0.001)
(0.00055 0.0198 0.001)
(0.0006 0.0198 0.001)
(0.00065 0.0198 0.001)
(0.0007 0.0198 0.001)
(0.00075 0.0198 0.001)
(0.0008 0.0198 0.001)
(0.00085 0.0198 0.001)
(0.0009 0.0198 0.001)
(0.00095 0.0198 0.001)
(0.001 0.0198 0.001)
(0 0.01985 0.001)
(5e-05 0.01985 0.001)
(0.0001 0.01985 0.001)
(0.00015 0.01985 0.001)
(0.0002 0.01985 0.001)
(0.00025 0.01985 0.001)
(0.0003 0.01985 0.001)
(0.00035 0.01985 0.001)
(0.0004 0.01985 0.001)
(0.00045 0.01985 0.001)
(0.0005 0.01985 0.001)
(0.00055 0.01985 0.001)
(0.0006 0.01985 0.001)
(0.00065 0.01985 0.001)
(0.0007 0.01985 0.001)
(0.00075 0.01985 0.001)
(0.0008 0.01985 0.001)
(0.00085 0.01985 0.001)
(0.0009 0.01985 0.001)
(0.00095 0.01985 0.001)
(0.001 0.01985 0.001)
(0 0.0199 0.001)
(5e-05 0.0199 0.001)
(0.0001 0.0199 0.001)
(0.00015 0.0199 0.001)
(0.0002 0.0199 0.001)
(0.00025 0.0199 0.001)
(0.0003 0.0199 0.001)
(0.00035 0.0199 0.001)
(0.0004 0.0199 0.001)
(0.00045 0.0199 0.001)
(0.0005 0.0199 0.001)
(0.00055 0.0199 0.001)
(0.0006 0.0199 0.001)
(0.00065 0.0199 0.001)
(0.0007 0.0199 0.001)
(0.00075 0.0199 0.001)
(0.0008 0.0199 0.001)
(0.00085 0.0199 0.001)
(0.0009 0.0199 0.001)
(0.00095 0.0199 0.001)
(0.001 0.0199 0.001)
(0 0.01995 0.001)
(5e-05 0.01995 0.001)
(0.0001 0.01995 0.001)
(0.00015 0.01995 0.001)
(0.0002 0.01995 0.001)
(0.00025 0.01995 0.001)
(0.0003 0.01995 0.001)
(0.00035 0.01995 0.001)
(0.0004 0.01995 0.001)
(0.00045 0.01995 0.001)
(0.0005 0.01995 0.001)
(0.00055 0.01995 0.001)
(0.0006 0.01995 0.001)
(0.00065 0.01995 0.001)
(0.0007 0.01995 0.001)
(0.00075 0.01995 0.001)
(0.0008 0.01995 0.001)
(0.00085 0.01995 0.001)
(0.0009 0.01995 0.001)
(0.00095 0.01995 0.001)
(0.001 0.01995 0.001)
(0 0.02 0.001)
(5e-05 0.02 0.001)
(0.0001 0.02 0.001)
(0.00015 0.02 0.001)
(0.0002 0.02 0.001)
(0.00025 0.02 0.001)
(0.0003 0.02 0.001)
(0.00035 0.02 0.001)
(0.0004 0.02 0.001)
(0.00045 0.02 0.001)
(0.0005 0.02 0.001)
(0.00055 0.02 0.001)
(0.0006 0.02 0.001)
(0.00065 0.02 0.001)
(0.0007 0.02 0.001)
(0.00075 0.02 0.001)
(0.0008 0.02 0.001)
(0.00085 0.02 0.001)
(0.0009 0.02 0.001)
(0.00095 0.02 0.001)
(0.001 0.02 0.001)
)
// ************************************************************************* //
| [
"houkensjtu@gmail.com"
] | houkensjtu@gmail.com | |
2567b7d3242aad9093dcd780e00b0f64dd47832d | 54766e24a1acd4a409e8c229c6c1f5c28fa2a64c | /Lab8_9_related/MergeLists.cpp | 8983493f1d792d3d40482a45e0d8316aac4109e2 | [] | no_license | Sarthak2/3rdSem-Data-Structures-Lab | ac9c564cece75b802f7fff11e5f2a278a8a06d1e | 989f0d14cd88e70bd696e4dd124dca6a3ea8ead1 | refs/heads/master | 2022-11-18T08:53:52.375293 | 2020-07-19T19:11:14 | 2020-07-19T19:11:14 | 281,025,476 | 2 | 0 | null | 2020-07-20T05:48:05 | 2020-07-20T05:48:04 | null | UTF-8 | C++ | false | false | 1,742 | cpp | /* I uploaded this after the semester got over.
I had solved this problem on LeetCode and I had realised that the code that was
taught in class was crappy code.
So, I hope you get the idea by reading this code. It's like sewing and attaching both the lists.
This approach comes handy when you solve the question K sorted Lists (Hard LeetCode)
*/
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
ListNode *start = new ListNode(-1);
// Use this as a starting point
ListNode* curr; // for reference
curr = start; // Traverse using this over the two lists and attach them together based on values.
// We will add onto start
while(l1 && l2)
{
if(l1->val <= l2->val)
{
curr->next = l1; // Attach curr-> next to l1.
curr = curr->next; // Move one step forward to new position.
l1 = l1->next; // Move forward.
}
else
{
curr->next = l2; // Attach curr->next to l2
curr = curr->next; // Move one step forward.
l2 = l2->next; // Move one step forward
}
}
if(l1)
{
curr->next = l1; // If l2 ended already, curr is stuck at end of l2. Attach l1.
}
else if(l2)
{
curr->next = l2;
}
return start->next; // We had used start to save that initial position.
}
};
| [
"noreply@github.com"
] | noreply@github.com |
297c39a183aab4a1ad4ba0fb79a22c0bedda7d4e | 421771e364c70537cd07f38ea7a98e6e26774b5b | /include/routingkit/osm_simple.h | 73bf16177947104a511fc8f5751675a719bc3f37 | [
"BSD-2-Clause"
] | permissive | TheMarex/RoutingKit | 4b2182469b85821d3b1ee10b9f3f19bdbb3593cc | 92ad3dd90a82b687a8a9a7468054f2449ff7c67f | refs/heads/master | 2021-01-10T23:48:46.512553 | 2016-10-13T10:03:21 | 2016-10-13T10:03:21 | 70,793,792 | 1 | 0 | null | 2016-10-13T10:03:37 | 2016-10-13T10:03:37 | null | UTF-8 | C++ | false | false | 811 | h | #ifndef ROUTING_KIT_OSM_SIMPLE_H
#define ROUTING_KIT_OSM_SIMPLE_H
#include <vector>
#include <functional>
#include <string>
#include <stdint.h>
namespace RoutingKit{
struct SimpleOSMCarRoutingGraph{
std::vector<uint32_t>first_out;
std::vector<uint32_t>head;
std::vector<uint32_t>travel_time;
std::vector<uint32_t>geo_distance;
std::vector<float>latitude;
std::vector<float>longitude;
unsigned node_count() const {
return first_out.size()-1;
}
unsigned arc_count() const{
return head.size();
}
};
SimpleOSMCarRoutingGraph simple_load_osm_car_routing_graph_from_pbf(
const std::string&pbf_file,
const std::function<void(const std::string&)>&log_message = [](const std::string&){},
bool file_is_ordered_even_though_file_header_says_that_it_is_unordered = false
);
} // RoutingKit
#endif
| [
"strasser@kit.edu"
] | strasser@kit.edu |
5f801242aaeabd5732b7c555ff9ed114d4b40209 | 838dc19e767fcc83913489a4a7662e89ce3fa510 | /game/code/common/engine/render/vertexbuffer.hpp | 7034c8a41c61c0d8690d135e2843fe246feb35da | [
"MIT"
] | permissive | justinctlam/MarbleStrike | b757df8c7f7b5961d87fd5f9b5c59e6af777e70e | 64fe36a5a4db2b299983b0e2556ab1cd8126259b | refs/heads/master | 2020-09-13T23:49:12.139990 | 2016-09-04T04:02:50 | 2016-09-04T04:02:50 | 67,262,851 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,910 | hpp | #ifndef VERTEXBUFFER_HPP
#define VERTEXBUFFER_HPP
//////////////////////////////////////////////////////
// INCLUDES
//////////////////////////////////////////////////////
//////////////////////////////////////////////////////
// FORWARD DECLARATIONS
//////////////////////////////////////////////////////
class Mesh;
class EffectPass;
class VertexDeclaration;
///////////////////////////////////////////////////////
// CONSTANTS
//////////////////////////////////////////////////////
#define PRIMITIVE_TYPE_TUPLE \
PRIMITIVE_TYPE_ENTRY( PRIMITIVE_TRIANGLES, D3DPT_TRIANGLELIST, GL_TRIANGLES, D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST ) \
PRIMITIVE_TYPE_ENTRY( PRIMITIVE_TRIANGLE_FAN, D3DPT_TRIANGLEFAN, GL_TRIANGLE_FAN, D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP ) \
PRIMITIVE_TYPE_ENTRY( PRIMITIVE_LINES, D3DPT_LINELIST, GL_LINES, D3D11_PRIMITIVE_TOPOLOGY_LINELIST ) \
PRIMITIVE_TYPE_ENTRY( PRIMITIVE_LINE_STRIP, D3DPT_LINESTRIP, GL_LINE_STRIP, D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP ) \
PRIMITIVE_TYPE_ENTRY( PRIMITIVE_POINTS, D3DPT_POINTLIST, GL_POINTS, D3D11_PRIMITIVE_TOPOLOGY_POINTLIST ) \
enum PrimitiveType
{
#define PRIMITIVE_TYPE_ENTRY( ENUM, D3DTYPE, OGLTYPE, D3D11TYPE ) ENUM,
PRIMITIVE_TYPE_TUPLE
#undef PRIMITIVE_TYPE_ENTRY
PRIMITIVE_TYPE_MAX
};
//////////////////////////////////////////////////////
// CLASSES
//////////////////////////////////////////////////////
class VertexBuffer
{
public:
VertexBuffer();
virtual ~VertexBuffer();
virtual void Create( Mesh* mesh, VertexDeclaration* vertexDeclaration ) = 0;
virtual void Render(
VertexDeclaration* vertexDeclaration,
EffectPass* effectPass,
void* context
) = 0;
void SetVertexDeclaration( VertexDeclaration* vertexDeclaration )
{
mVertexDeclaration = vertexDeclaration;
}
VertexDeclaration* GetVertexDeclaration()
{
return mVertexDeclaration;
}
protected:
VertexDeclaration* mVertexDeclaration;
};
#endif
| [
"justin.t.lam@gmail.com"
] | justin.t.lam@gmail.com |
3458c8260e7bff107bcb1096ed9e2bcce8e947bd | 7080ff8b0897cf11cefcfe58b3247c9fbaf427f3 | /Engine/01.Utility/ComponentManager.h | d6f627ba3bf8e5b234802fbd99f145174d1d5523 | [] | no_license | js7217/DX9_3D_The-Legend-of-Zelda-Breath-of-the-Wild | 74ae0c378fab93ebead16b8afbf6e2831ea0bee9 | 9c98ea4ac147e6a3031a6a361b05f1a6c2cfb358 | refs/heads/master | 2021-05-19T10:41:18.678317 | 2020-03-31T16:16:35 | 2020-03-31T16:16:35 | 251,656,267 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,225 | h | #pragma once
#include "Base.h"
#include "Shader.h"
#include "Texture.h"
#include "Renderer.h"
#include "Transform.h"
#include "UTransform.h"
#include "NxTransform.h"
#include "Mesh_Static.h"
#include "Mesh_Static_Instancing.h"
#include "Mesh_Dynamic.h"
#include "Buffer_RcTex.h"
#include "Buffer_CubeTex.h"
#include "Buffer_PtTex.h"
#include "Buffer_Terrain.h"
#include "Buffer_Trail.h"
#include "Frustum.h"
BEGIN(ENGINE)
class CComponent;
class ENGINE_DLL CComponentManager : public CBase
{
DECLARE_SINGLETON(CComponentManager)
private:
explicit CComponentManager();
virtual ~CComponentManager() = default;
public:
HRESULT Reserve_Component_Manager(_uint iNumScene);
HRESULT Add_Component_Prototype(_uint iSceneID, const _tchar* pPrototypeTag, CComponent* pPrototype);
CComponent* Clone_Component(_uint iSceneID, const _tchar* pPrototypeTag, void* pArg);
public:
HRESULT Clear_Prototype(_uint iSceneID);
private:
map<const _tchar*, CComponent*>* m_pPrototype;
typedef map<const _tchar*, CComponent*> PROTOTYPES;
private:
_uint m_iNumScene;
private:
CComponent* Find_Component(_uint iSceneID, const _tchar* pPrototypeTag);
public:
virtual void Free();
};
END | [
"noreply@github.com"
] | noreply@github.com |
db018e7094ea1d0299e11c98d76868df3285b930 | 562ab825e0891a7b5720d03b4b9f08f863e73f93 | /038/1809MeetMe/Render.cpp | 78c37312233ac0f3bcd15cc3ed7a47f6a550200e | [] | no_license | roundbananas/100-days-of-code | 7f12d50f1ed25a1e60995100f971554fc38ea9ab | 9da41158a098c8af91eecea68564002d419abe34 | refs/heads/master | 2020-03-26T01:08:27.342357 | 2019-06-24T12:38:39 | 2019-06-24T12:38:39 | 144,353,666 | 1 | 0 | null | 2018-08-11T03:55:43 | 2018-08-11T03:55:42 | null | UTF-8 | C++ | false | false | 1,433 | cpp | //
// Render.cpp
//
// Created by Carl Turner on 20/9/18.
//
//APA102 led strip - 3.3V!!! If you supply 5V you'll get residual colour, can't turn LEDs off!
#include "Engine.h"
void Engine::m_Render()
{
//loop through each pixel of each bullet that's in use, and update its colour
//1. loop through each bullet. i relates to bullet number
for (int i = 0; i < m_NumPlayers; i++)
{
//2. if the bullet is inflight, update the pixel colours on the strip, from the head to the tail. j relates to bullet element/pixel
if(m_Bullets[m_Players[i].getBulletIndex()].AIsInFlight())
{
for (int j = m_Bullets[i].getHeadAPos(); j > (m_Bullets[i].getHeadAPos() - m_Bullets[i].getTailAPos()); j--)
{
m_PlayerLEDS[i].setPixelColor(j, m_Bullets[i].getColourR(j), m_Bullets[i].getColourG(j), m_Bullets[i].getColourB(j));
}
}
if(m_Bullets[m_Players[i].getBulletIndex()].BIsInFlight())
{
for (int j = m_Bullets[i].getHeadAPos(); j > (m_Bullets[i].getHeadAPos() - m_Bullets[i].getTailAPos()); j--)
{
m_PlayerLEDS[i].setPixelColor(j, m_Bullets[i].getColourR(j), m_Bullets[i].getColourG(j), m_Bullets[i].getColourB(j));
}
}
}
for (int i = 0; i < m_NumPlayers; i++)
{
m_PlayerLEDS[i].show();
}
}
/*
* Syntax
* strip.setPixelColor(index, color);
* strip.show(); // Refresh strip
*/
| [
"noreply@github.com"
] | noreply@github.com |
8b832e632a1a782f865408c4d01508014e26b66a | e79267ac2352c96689160907adb29149c51707aa | /boost_test/unordered/minimal_allocator.cpp | ba2c35f9a808fb72b0a70340b32e7d19a7dfee15 | [] | no_license | iCodeIN/sherwood_map | aabae538846fe665aafdc12accceb9027ca63ad7 | c430c1df13468fc530397b4536b5aba0b0975325 | refs/heads/master | 2021-05-29T18:18:10.699633 | 2014-05-31T18:35:54 | 2014-05-31T18:35:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,762 | cpp |
// Copyright 2011 Daniel James.
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#include <boost/unordered/detail/allocate.hpp>
#include <boost/detail/lightweight_test.hpp>
#include <boost/type_traits/is_same.hpp>
#include <boost/static_assert.hpp>
#include "../objects/test.hpp"
template <class Tp>
struct SimpleAllocator
{
typedef Tp value_type;
SimpleAllocator()
{
}
template <class T> SimpleAllocator(const SimpleAllocator<T>&)
{
}
Tp *allocate(std::size_t n)
{
return static_cast<Tp*>(::operator new(n * sizeof(Tp)));
}
void deallocate(Tp* p, std::size_t)
{
::operator delete((void*) p);
}
};
template <typename T>
void test_simple_allocator()
{
test::check_instances check_;
typedef boost::unordered::detail::allocator_traits<
SimpleAllocator<T> > traits;
BOOST_STATIC_ASSERT((boost::is_same<typename traits::allocator_type, SimpleAllocator<T> >::value));
BOOST_STATIC_ASSERT((boost::is_same<typename traits::value_type, T>::value));
BOOST_STATIC_ASSERT((boost::is_same<typename traits::pointer, T* >::value));
BOOST_STATIC_ASSERT((boost::is_same<typename traits::const_pointer, T const*>::value));
//BOOST_STATIC_ASSERT((boost::is_same<typename traits::void_pointer, void* >::value));
//BOOST_STATIC_ASSERT((boost::is_same<typename traits::const_void_pointer, void const*>::value));
BOOST_STATIC_ASSERT((boost::is_same<typename traits::difference_type, std::ptrdiff_t>::value));
#if BOOST_UNORDERED_USE_ALLOCATOR_TRAITS == 1
BOOST_STATIC_ASSERT((boost::is_same<typename traits::size_type,
std::make_unsigned<std::ptrdiff_t>::type>::value));
#else
BOOST_STATIC_ASSERT((boost::is_same<typename traits::size_type, std::size_t>::value));
#endif
BOOST_TEST(!traits::propagate_on_container_copy_assignment::value);
BOOST_TEST(!traits::propagate_on_container_move_assignment::value);
BOOST_TEST(!traits::propagate_on_container_swap::value);
// rebind_alloc
// rebind_traits
SimpleAllocator<T> a;
T* ptr1 = traits::allocate(a, 1);
//T* ptr2 = traits::allocate(a, 1, static_cast<void const*>(ptr1));
traits::construct(a, ptr1, T(10));
//traits::construct(a, ptr2, T(30), ptr1);
BOOST_TEST(*ptr1 == T(10));
//BOOST_TEST(*ptr2 == T(30));
traits::destroy(a, ptr1);
//traits::destroy(a, ptr2);
//traits::deallocate(a, ptr2, 1);
traits::deallocate(a, ptr1, 1);
traits::max_size(a);
}
TEST(boost_tests, minimal_allocator)
{
test_simple_allocator<int>();
test_simple_allocator<test::object>();
ASSERT_EQ(0, boost::report_errors());
}
| [
"malteskarupke@web.de"
] | malteskarupke@web.de |
be8e7f4ca9e9f2111d51913b3bcdcfa28cb74d1d | 0008cc7b1a46113ec1ecca82f5249251b5a6702b | /PrincipiosCG/myDir/PrincipiosDeCG/prueba/src/Application.cpp | 60d674320e9a588a163552b03f25125466cee954 | [] | no_license | garudaminn/PrincipiosCG | 595a9b3e2c62444f07632c4309ff0db2b447aeba | 2e218a7c54b03edf6a58ff88c4ab1cc9c2ec6437 | refs/heads/master | 2021-05-09T22:58:19.626752 | 2018-03-20T18:10:25 | 2018-03-20T18:10:25 | 118,472,916 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 382 | cpp | #include "Application.h"
void Application::setup()
{
}
void Application::update()
{
}
void Application::draw()
{
for (int i = 0; i < WIDTH; i++) {
putPixel(i, HEIGHT / 2, 0, 255, 0, 255);
putPixel(i, i, 0, 255, 0, 255);
putPixel(WIDTH - i, i, 0, 255, 0, 255);
}
for (int i = 0; i < HEIGHT; i++) {
putPixel(WIDTH / 2,i, 0, 255, 0, 255);
}
}
| [
"noreply@github.com"
] | noreply@github.com |
1bd5b663a167e5a986870245f0e3c413828fa4ff | 6bfc1835b9abc4b998b5637fd46d6af583531ecc | /src/qt/optionsmodel.h | 73d8991d4842b124471501b195e35508c210e5e5 | [
"MIT"
] | permissive | bitcashcoins/bitcashcoins_reliable | b95a72117dffdbd428de4aeaa235a812d6156713 | a80ea789a47b70218d4eebeeefe0fe2ac9073f31 | refs/heads/master | 2021-01-23T23:03:05.274392 | 2017-09-11T05:29:24 | 2017-09-11T05:29:24 | 102,952,505 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,909 | h | #ifndef OPTIONSMODEL_H
#define OPTIONSMODEL_H
#include <QAbstractListModel>
/** Interface from Qt to configuration data structure for Bitcashcoins client.
To Qt, the options are presented as a list with the different options
laid out vertically.
This can be changed to a tree once the settings become sufficiently
complex.
*/
class OptionsModel : public QAbstractListModel
{
Q_OBJECT
public:
explicit OptionsModel(QObject *parent = 0);
enum OptionID {
StartAtStartup, // bool
MinimizeToTray, // bool
MapPortUPnP, // bool
MinimizeOnClose, // bool
ProxyUse, // bool
ProxyIP, // QString
ProxyPort, // int
ProxySocksVersion, // int
Fee, // qint64
DisplayUnit, // BitcoinUnits::Unit
DisplayAddresses, // bool
Language, // QString
OptionIDRowCount,
};
void Init();
void Reset();
/* Migrate settings from wallet.dat after app initialization */
bool Upgrade(); /* returns true if settings upgraded */
int rowCount(const QModelIndex & parent = QModelIndex()) const;
QVariant data(const QModelIndex & index, int role = Qt::DisplayRole) const;
bool setData(const QModelIndex & index, const QVariant & value, int role = Qt::EditRole);
/* Explicit getters */
qint64 getTransactionFee();
bool getMinimizeToTray() { return fMinimizeToTray; }
bool getMinimizeOnClose() { return fMinimizeOnClose; }
int getDisplayUnit() { return nDisplayUnit; }
bool getDisplayAddresses() { return bDisplayAddresses; }
QString getLanguage() { return language; }
private:
int nDisplayUnit;
bool bDisplayAddresses;
bool fMinimizeToTray;
bool fMinimizeOnClose;
QString language;
signals:
void displayUnitChanged(int unit);
};
#endif // OPTIONSMODEL_H
| [
"31797646+bitcashcoins@users.noreply.github.com"
] | 31797646+bitcashcoins@users.noreply.github.com |
0b9eee21afacc91bd10e7b9ef0fa8c11c94244f6 | b537671f12e80b3e5eb966644e766a1eb4d30375 | /-old/preprocessor/line.h | 0ba26dea401831d8c1eab4dba9c4f7d85bd45f58 | [
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | shuixi2013/ReaverASM | b0ee438f9a5e2b3ac6693ff1d748153adda9f4c7 | 39893e4d8db69ebed49a7904b66884b1360a148a | refs/heads/master | 2021-01-18T02:54:44.963461 | 2014-01-27T21:18:43 | 2014-01-27T21:18:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,572 | h | /**
* Reaver Project Assembler License
*
* Copyright (C) 2013 Reaver Project Team:
* 1. Michał "Griwes" Dominiak
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation is required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
*
* Michał "Griwes" Dominiak
*
**/
#pragma once
#include <iostream>
#include <string>
#include <vector>
#include <reaver/logger.h>
#include <include_chain.h>
#include <utils.h>
namespace reaver
{
namespace assembler
{
class line
{
public:
line(std::string line, include_chain chain, std::vector<std::string> original) : _line{ std::move(line) },
_original{ std::move(original) }, _include_chain{ std::move(chain) }
{
}
std::string operator*() const
{
return _line;
}
std::string * operator->()
{
return &_line;
}
const std::string * operator->() const
{
return &_line;
}
std::vector<std::string> original() const
{
return _original;
}
uint64_t include_count() const
{
return _include_chain.size();
}
include operator[](uint64_t i) const
{
if (i >= _include_chain.size())
{
throw exception{ crash } << "include chain access out of bounds.";
}
return _include_chain[i];
}
const include_chain & chain() const
{
return _include_chain;
}
private:
std::string _line;
std::vector<std::string> _original;
include_chain _include_chain;
};
}
}
| [
"griwes@griwes.info"
] | griwes@griwes.info |
a2c73538d91fe84f99b919bb82feae75d6b018a7 | 8894385f5ab7bb989000320056c9de2dd62aba89 | /src/Magnum/Platform/EmscriptenApplication.h | 18b05b33351c7a9e77e21832d905b8e1a81db4f3 | [
"MIT"
] | permissive | evandropoa/magnum | f6ca33cb00b6069ee92adb40dc7ed067dc3f5371 | 12577ce07ffac0e28e91e9176a5effef85408e89 | refs/heads/master | 2022-11-05T06:50:09.349587 | 2020-06-18T11:03:13 | 2020-06-18T11:04:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 67,868 | h | #ifndef Magnum_Platform_EmscriptenApplication_h
#define Magnum_Platform_EmscriptenApplication_h
/*
This file is part of Magnum.
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020 Vladimír Vondruš <mosra@centrum.cz>
Copyright © 2018, 2019 Jonathan Hale <squareys@googlemail.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.
*/
#if defined(CORRADE_TARGET_EMSCRIPTEN) || defined(DOXYGEN_GENERATING_OUTPUT)
/** @file
* @brief Class @ref Magnum::Platform::EmscriptenApplication, macro @ref MAGNUM_EMSCRIPTENAPPLICATION_MAIN()
* @m_since{2019,10}
*/
#endif
#include <string>
#include <Corrade/Containers/ArrayView.h>
#include <Corrade/Containers/Pointer.h>
#include "Magnum/Magnum.h"
#include "Magnum/Tags.h"
#include "Magnum/GL/GL.h"
#include "Magnum/Math/Vector4.h"
#include "Magnum/Platform/Platform.h"
#if defined(CORRADE_TARGET_EMSCRIPTEN) || defined(DOXYGEN_GENERATING_OUTPUT)
#ifndef DOXYGEN_GENERATING_OUTPUT
struct EmscriptenKeyboardEvent;
struct EmscriptenMouseEvent;
struct EmscriptenWheelEvent;
struct EmscriptenUiEvent;
typedef int EMSCRIPTEN_WEBGL_CONTEXT_HANDLE;
#endif
namespace Magnum { namespace Platform {
/** @nosubgrouping
@brief Emscripten application
@m_since{2019,10}
@m_keywords{Application}
Application running on Emscripten. Available only on
@ref CORRADE_TARGET_EMSCRIPTEN "Emscripten", see respective sections
in the @ref building-corrade-cross-emscripten "Corrade" and
@ref building-cross-emscripten "Magnum" building documentation.
@section Platform-EmscriptenApplication-bootstrap Bootstrap application
Fully contained base application using @ref Sdl2Application for desktop build
and @ref EmscriptenApplication for Emscripten build along with full HTML markup
and CMake setup is available in `base-emscripten` branch of the
[Magnum Bootstrap](https://github.com/mosra/magnum-bootstrap) repository,
download it as [tar.gz](https://github.com/mosra/magnum-bootstrap/archive/base-emscripten.tar.gz)
or [zip](https://github.com/mosra/magnum-bootstrap/archive/base-emscripten.zip)
file. After extracting the downloaded archive, you can do the desktop build in
the same way as with @ref Sdl2Application. For the Emscripten build you also
need to put the contents of toolchains repository from
https://github.com/mosra/toolchains in a `toolchains/` subdirectory. There are
two toolchain files. The `generic/Emscripten.cmake` is for the classical
(asm.js) build, the `generic/Emscripten-wasm.cmake` is for WebAssembly build.
Don't forget to adapt `EMSCRIPTEN_PREFIX` variable in
`toolchains/generic/Emscripten*.cmake` to path where Emscripten is installed;
you can also pass it explicitly on command-line using `-DEMSCRIPTEN_PREFIX`.
Default is `/usr/emscripten`.
Then create build directory and run `cmake` and build/install commands in it.
Set `CMAKE_PREFIX_PATH` to where you have all the dependencies installed, set
`CMAKE_INSTALL_PREFIX` to have the files installed in proper location (a
webserver, e.g. `/srv/http/emscripten`).
@code{.sh}
mkdir build-emscripten && cd build-emscripten
cmake .. \
-DCMAKE_TOOLCHAIN_FILE="../toolchains/generic/Emscripten.cmake" \
-DCMAKE_PREFIX_PATH=/usr/lib/emscripten/system \
-DCMAKE_INSTALL_PREFIX=/srv/http/emscripten
cmake --build .
cmake --build . --target install
@endcode
You can then open `MyApplication.html` in your browser (through a webserver,
e.g. http://localhost/emscripten/MyApplication.html).
Detailed information about deployment for Emscripten and all needed boilerplate
together with a troubleshooting guide is available in @ref platforms-html5.
@section Platform-EmscriptenApplication-usage General usage
This application library is built if `WITH_EMSCRIPTENAPPLICATION` is enabled
when building Magnum. To use this library with CMake, put
[FindOpenGLES2.cmake](https://github.com/mosra/magnum/blob/master/modules/FindOpenGLES2.cmake) (or
[FindOpenGLES3.cmake](https://github.com/mosra/magnum/blob/master/modules/FindOpenGLES3.cmake))
into your `modules/` directory, request the `EmscriptenApplication` component
of the `Magnum` package and link to the `Magnum::EmscriptenApplication` target:
@code{.cmake}
find_package(Magnum REQUIRED)
if(CORRADE_TARGET_EMSCRIPTEN)
find_package(Magnum REQUIRED EmscriptenApplication)
endif()
# ...
if(CORRADE_TARGET_EMSCRIPTEN)
target_link_libraries(your-app PRIVATE Magnum::EmscriptenApplication)
endif()
@endcode
Additionally, if you're using Magnum as a CMake subproject, do the following
* *before* calling @cmake find_package() @ce to ensure it's enabled, as the
library is not built by default:
@code{.cmake}
set(WITH_EMSCRIPTENAPPLICATION ON CACHE BOOL "" FORCE)
add_subdirectory(magnum EXCLUDE_FROM_ALL)
@endcode
If no other application is requested, you can also use the generic
`Magnum::Application` alias to simplify porting. See @ref building and
@ref cmake for more information.
In C++ code you need to implement at least @ref drawEvent() to be able to draw
on the screen.
@code{.cpp}
class MyApplication: public Platform::EmscriptenApplication {
// implement required methods...
};
MAGNUM_EMSCRIPTENAPPLICATION_MAIN(MyApplication)
@endcode
If no other application header is included, this class is also aliased to
@cpp Platform::Application @ce and the macro is aliased to
@cpp MAGNUM_APPLICATION_MAIN() @ce to simplify porting.
@section Platform-EmscriptenApplication-browser Browser-specific behavior
Leaving a default (zero) size in @ref Configuration will cause the app to use a
size that corresponds to *CSS pixel size* of the @cb{.html} <canvas> @ce
element. The size is then multiplied by DPI scaling value, see
@ref Platform-EmscriptenApplication-dpi "DPI awareness" below for details.
If you enable @ref Configuration::WindowFlag::Resizable, the canvas will be
resized when size of the canvas changes and you get @ref viewportEvent(). If
the flag is not enabled, no canvas resizing is performed.
Unlike desktop platforms, the browser has no concept of application exit code,
so the return value of @ref exec() is always @cpp 0 @ce and whatever is passed
to @ref exit(int) is ignored.
@subsection Platform-EmscriptenApplication-browser-main-loop Main loop implementation
Magnum application implementations default to redrawing only when needed to
save power and while this is simple to implement efficiently on desktop apps
where the application has the full control over the main loop, it's harder in
the callback-based browser environment.
@ref Sdl2Application makes use of @m_class{m-doc-external} [emscripten_set_main_loop()](https://emscripten.org/docs/api_reference/emscripten.h.html#c.emscripten_set_main_loop),
which periodically calls @m_class{m-doc-external} [window.requestAnimationFrame()](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame)
in order to maintain a steady frame rate. For apps that need to redraw only
when needed this means the callback will be called 60 times per second only to
be a no-op. While that's still significantly more efficient than drawing
everything each time, it still means the browser has to wake up 60 times per
second to do nothing.
@ref EmscriptenApplication instead makes use of `requestAnimationFrame()`
directly --- on initialization and on @ref redraw(), an animation frame will be
requested and the callback set up. The callback will immediately schedule
another animation frame, but cancel that request after @ref drawEvent() if
@ref redraw() was not requested. Note that due to the way Emscripten internals
work, this also requires the class instance to be stored as a global variable
instead of a local variable in @cpp main() @ce. The
@ref MAGNUM_EMSCRIPTENAPPLICATION_MAIN() macro handles this in a portable way
for you.
For testing purposes or for more predictable behavior for example when the
application has to redraw all the time anyway this can be disabled using
@ref Configuration::WindowFlag::AlwaysRequestAnimationFrame. Setting the flag
will make the main loop behave equivalently to @ref Sdl2Application.
@section Platform-EmscriptenApplication-webgl WebGL-specific behavior
While WebGL itself requires all extensions to be
[enabled explicitly](https://developer.mozilla.org/en-US/docs/Web/API/WebGL_API/Using_Extensions),
by default Emscripten enables all supported extensions that don't have a
negative effect on performance to simplify porting. This is controlled by
@ref GLConfiguration::Flag::EnableExtensionsByDefault and the flag is enabled
by default. When disabled, you are expected to enable desired extensions
manually using @m_class{m-doc-external} [emscripten_webgl_enable_extension()](https://emscripten.org/docs/api_reference/html5.h.html#c.emscripten_webgl_enable_extension).
@attention Because @ref GLConfiguration::Flag::EnableExtensionsByDefault is
among default flags, calling @ref GLConfiguration::setFlags() will reset
this default, causing crashes at runtime when extension functionality is
used. To be safe, you might want to use @ref GLConfiguration::addFlags()
and @ref GLConfiguration::clearFlags() instead.
@section Platform-EmscriptenApplication-dpi DPI awareness
Since this application targets only web browsers, DPI handling isn't as general
as in case of @ref Sdl2Application or @ref GlfwApplication. See
@ref Platform-Sdl2Application-dpi "Sdl2Application DPI awareness" documentation
for a guide covering all platform differences.
For this application in particular, @ref windowSize() can be different than
@ref framebufferSize() on HiDPI displays --- which is different from
@ref Sdl2Application behavior on Emscripten. By default, @ref dpiScaling() is
@cpp 1.0f @ce in both dimensions but it can be overriden using custom DPI
scaling --- the `--magnum-dpi-scaling` command-line options are supported the
same way as in @ref Sdl2Application, only in the form of URL GET parameters,
similarly to all other @ref platforms-html5-environment "command-line options".
Having @ref dpiScaling() set to @cpp 1.0f @ce is done in order to have
consistent behavior with other platforms --- platforms have either
@ref windowSize() equivalent to @ref framebufferSize() and then
@ref dpiScaling() specifies the UI scale (Windows/Linux/Android-like) or
@ref windowSize() different from @ref framebufferSize() (which defines the UI
scale) and then @ref dpiScaling() is @cpp 1.0f @ce (macOS/iOS-like), so this
is the second case. The actual device pixel ratio is expressed in the ratio of
@ref windowSize() and @ref framebufferSize() so crossplatform code shouldn't
have a need to query it, however for completeness it's exposed in
@ref devicePixelRatio() and @ref ViewportEvent::devicePixelRatio().
Setting custom DPI scaling will affect @ref framebufferSize()
(larger values making the canvas backing framebuffer larger and vice versa),
@ref windowSize() will stay unaffected as it's controlled by the CSS, and
@ref devicePixelRatio() will stay the same as well as it's defined by the
browser.
To avoid confusion, documentation of all @ref EmscriptenApplication APIs always
mentions only the web case, consult equivalent APIs in @ref Sdl2Application or
@ref GlfwApplication for behavior in those implementations.
*/
class EmscriptenApplication {
public:
/** @brief Application arguments */
struct Arguments {
/** @brief Constructor */
/*implicit*/ constexpr Arguments(int& argc, char** argv) noexcept: argc{argc}, argv{argv} {}
int& argc; /**< @brief Argument count */
char** argv; /**< @brief Argument values */
};
class Configuration;
class GLConfiguration;
class ViewportEvent;
class InputEvent;
class MouseEvent;
class MouseMoveEvent;
class MouseScrollEvent;
class KeyEvent;
class TextInputEvent;
#ifdef MAGNUM_TARGET_GL
/**
* @brief Construct with given configuration for WebGL context
* @param arguments Application arguments
* @param configuration Application configuration
* @param glConfiguration WebGL context configuration
*
* Creates application with default or user-specified configuration.
* See @ref Configuration for more information. The program exits if
* the context cannot be created, see @ref tryCreate() for an
* alternative.
*
* @note This function is available only if Magnum is compiled with
* @ref MAGNUM_TARGET_GL enabled (done by default). See
* @ref building-features for more information.
*/
explicit EmscriptenApplication(const Arguments& arguments, const Configuration& configuration, const GLConfiguration& glConfiguration);
#endif
/**
* @brief Construct with given configuration
*
* If @ref Configuration::WindowFlag::Contextless is present or Magnum
* was not built with @ref MAGNUM_TARGET_GL, this creates a window
* without any GPU context attached, leaving that part on the user.
*
* If none of the flags is present and Magnum was built with
* @ref MAGNUM_TARGET_GL, this is equivalent to calling
* @ref EmscriptenApplication(const Arguments&, const Configuration&, const GLConfiguration&)
* with default-constructed @ref GLConfiguration.
*
* See also @ref building-features for more information.
*/
explicit EmscriptenApplication(const Arguments& arguments, const Configuration& configuration);
/**
* @brief Construct with default configuration
*
* Equivalent to calling @ref EmscriptenApplication(const Arguments&, const Configuration&)
* with default-constructed @ref Configuration.
*/
explicit EmscriptenApplication(const Arguments& arguments);
/**
* @brief Construct without setting up a canvas
* @param arguments Application arguments
*
* Unlike above, the canvas is not set up and must be created later
* with @ref create() or @ref tryCreate().
*/
explicit EmscriptenApplication(const Arguments& arguments, NoCreateT);
/** @brief Copying is not allowed */
EmscriptenApplication(const EmscriptenApplication&) = delete;
/** @brief Moving is not allowed */
EmscriptenApplication(EmscriptenApplication&&) = delete;
/** @brief Copying is not allowed */
EmscriptenApplication& operator=(const EmscriptenApplication&) = delete;
/** @brief Moving is not allowed */
EmscriptenApplication& operator=(EmscriptenApplication&&) = delete;
/**
* @brief Execute the application
*
* Sets up Emscripten to execute event handlers until @ref exit() is
* called. See @ref MAGNUM_EMSCRIPTENAPPLICATION_MAIN() for usage
* information.
*/
int exec();
/**
* @brief Exit application main loop
* @param exitCode Ignored, present only for API compatibility with
* other app implementations.
*
* When called from application constructor, it will cause the
* application to exit immediately after constructor ends, without any
* events being processed. Calling this function is recommended over
* @ref std::exit() or @ref Corrade::Utility::Fatal "Fatal", which exit
* immediately and without calling destructors on local scope. Note
* that, however, you need to explicitly @cpp return @ce after calling
* it, as it can't exit the constructor on its own:
*
* @snippet MagnumPlatform.cpp exit-from-constructor
*
* When called from the main loop, the application exits cleanly
* before next main loop iteration is executed.
*/
void exit(int exitCode = 0);
#ifdef MAGNUM_TARGET_GL
/**
* @brief Underlying WebGL context
*
* Use in case you need to call Emscripten functionality directly.
* Returns @cpp 0 @ce in case the context was not created yet.
*/
EMSCRIPTEN_WEBGL_CONTEXT_HANDLE glContext() { return _glContext; }
#endif
protected:
/* Nobody will need to have (and delete) EmscriptenApplication*, thus
just making it protected would be faster than public pure virtual
destructor. However, because we store it in a Pointer in
MAGNUM_EMSCRIPTENAPPLICATION_MAIN(), Clang complains that
"delete called on non-final 'MyApplication' that has virtual
functions but non-virtual destructor", so we have to mark it virtual
anyway. */
virtual ~EmscriptenApplication();
#ifdef MAGNUM_TARGET_GL
/**
* @brief Set up a canvas with given configuration for WebGL context
* @param configuration Application configuration
* @param glConfiguration WebGL context configuration
*
* Must be called only if the context wasn't created by the constructor
* itself, i.e. when passing @ref NoCreate to it. Error message is
* printed and the program exits if the context cannot be created, see
* @ref tryCreate() for an alternative.
*
* @note This function is available only if Magnum is compiled with
* @ref MAGNUM_TARGET_GL enabled (done by default). See
* @ref building-features for more information.
*/
void create(const Configuration& configuration, const GLConfiguration& glConfiguration);
#endif
/**
* @brief Set up a canvas with given configuration and WebGL context
*
* Equivalent to calling @ref create(const Configuration&, const GLConfiguration&)
* with default-constructed @ref GLConfiguration.
*/
void create(const Configuration& configuration);
/**
* @brief Set up a canvas with default configuration and WebGL context
*
* Equivalent to calling @ref create(const Configuration&) with
* default-constructed @ref Configuration.
*/
void create();
#ifdef MAGNUM_TARGET_GL
/**
* @brief Try to create context with given configuration for WebGL context
*
* Unlike @ref create(const Configuration&, const GLConfiguration&)
* returns @cpp false @ce if the context cannot be created,
* @cpp true @ce otherwise.
*
* @note This function is available only if Magnum is compiled with
* @ref MAGNUM_TARGET_GL enabled (done by default). See
* @ref building-features for more information.
*/
bool tryCreate(const Configuration& configuration, const GLConfiguration& glConfiguration);
#endif
/**
* @brief Try to create context with given configuration
*
* Unlike @ref create(const Configuration&) returns @cpp false @ce if
* the context cannot be created, @cpp true @ce otherwise.
*/
bool tryCreate(const Configuration& configuration);
/** @{ @name Screen handling */
public:
/**
* @brief Canvas size
*
* Canvas size to which all input event coordinates can be related.
* On HiDPI displays, canvas size can be different from
* @ref framebufferSize(). See @ref Platform-Sdl2Application-dpi for
* more information. Note that this method is named "window size" to be
* API-compatible with Application implementations on other platforms.
*/
Vector2i windowSize() const;
#if defined(MAGNUM_TARGET_GL) || defined(DOXYGEN_GENERATING_OUTPUT)
/**
* @brief Framebuffer size
*
* On HiDPI displays, framebuffer size can be different from
* @ref windowSize(). See @ref Platform-EmscriptenApplication-dpi for
* more information.
*
* @note This function is available only if Magnum is compiled with
* @ref MAGNUM_TARGET_GL enabled (done by default). See
* @ref building-features for more information.
*
* @see @ref Sdl2Application::framebufferSize()
*/
Vector2i framebufferSize() const;
#endif
/**
* @brief DPI scaling
*
* How the content should be scaled relative to system defaults for
* given @ref windowSize(). If a window is not created yet, returns
* zero vector, use @ref dpiScaling(const Configuration&) const for
* calculating a value depending on user configuration. By default set
* to @cpp 1.0 @ce, see @ref Platform-EmscriptenApplication-dpi for
* more information.
* @see @ref framebufferSize(), @ref devicePixelRatio()
*/
Vector2 dpiScaling() const { return _dpiScaling; }
/**
* @brief DPI scaling for given configuration
*
* Calculates DPI scaling that would be used when creating a window
* with given @p configuration. Takes into account DPI scaling policy
* and custom scaling specified via URL GET parameters. See
* @ref Platform-EmscriptenApplication-dpi for more information.
* @ref devicePixelRatio()
*/
Vector2 dpiScaling(const Configuration& configuration) const;
/**
* @brief Device pixel ratio
*
* Crossplatform code shouldn't need to query this value because the
* pixel ratio is already expressed in the ratio of @ref windowSize()
* and @ref framebufferSize() values.
* @see @ref dpiScaling()
*/
Vector2 devicePixelRatio() const { return _devicePixelRatio; }
/**
* @brief Set window title
*
* The @p title is expected to be encoded in UTF-8.
*/
void setWindowTitle(const std::string& title);
/**
* @brief Set container CSS class
*
* Assigns given CSS class to the @cb{.html} <div class="container"> @ce.
* Useful for example to change aspect ratio of the view or stretch it
* to cover the full page. See @ref platforms-html5-layout for more
* information about possible values. Note that this replaces any
* existing class, to set multiple classes separate them with
* whitespace.
*/
void setContainerCssClass(const std::string& cssClass);
/**
* @brief Swap buffers
*
* Paints currently rendered framebuffer on screen.
*/
void swapBuffers();
/** @copydoc Sdl2Application::redraw() */
void redraw();
private:
/** @copydoc GlfwApplication::viewportEvent(ViewportEvent&) */
virtual void viewportEvent(ViewportEvent& event);
/** @copydoc Sdl2Application::drawEvent() */
virtual void drawEvent() = 0;
/* Since 1.8.17, the original short-hand group closing doesn't work
anymore. FFS. */
/**
* @}
*/
/** @{ @name Keyboard handling */
/** @copydoc Sdl2Application::keyPressEvent() */
virtual void keyPressEvent(KeyEvent& event);
/** @copydoc Sdl2Application::keyReleaseEvent() */
virtual void keyReleaseEvent(KeyEvent& event);
/* Since 1.8.17, the original short-hand group closing doesn't work
anymore. FFS. */
/**
* @}
*/
/** @{ @name Mouse handling */
public:
/**
* @brief Cursor type
* @m_since_latest
*
* Value names in this enum don't necessarily match the CSS names in
* order to be compatible with @ref Sdl2Application and
* @ref GlfwApplication.
* @see @ref setCursor()
*/
enum class Cursor: UnsignedInt {
/* Keeping the same order as at
https://developer.mozilla.org/en-US/docs/Web/CSS/cursor, which
is different than in Sdl2Application / GlfwApplication */
/**
* The browser determines the cursor depending on the context.
* Since this affects the cursor when hovering the
* @cb{.html} <canvas> @ce element, this is usually equivalent to
* @ref Cursor::Arrow. Matches @cb{.css} cursor: auto @ce in CSS.
*/
Auto,
/** Arrow. Matches @cb{.css} cursor: default @ce in CSS. */
Arrow,
/** Hidden. Matches @cb{.css} cursor: none @ce in CSS. */
Hidden,
/**
* Context menu. Matches @cb{.css} cursor: context-menu @ce in CSS.
*/
ContextMenu,
/** Help. Matches @cb{.css} cursor: help @ce in CSS. */
Help,
/** Hand. Matches @cb{.css} cursor: pointer @ce in CSS. */
Hand,
/**
* Small wait cursor. Matches @cb{.css} cursor: progress @ce in
* CSS.
*/
WaitArrow,
/** Wait. Matches @cb{.css} cursor: wait @ce in CSS. */
Wait,
/** Cell. Matches @cb{.css} cursor: cell @ce in CSS. */
Cell,
/** Crosshair. Matches @cb{.css} cursor: crosshair @ce in CSS. */
Crosshair,
/** Text input. Matches @cb{.css} cursor: text @ce in CSS. */
TextInput,
/**
* Vertical text input. Matches @cb{.css} cursor: vertical-text @ce
* in CSS.
*/
VerticalTextInput,
/** Alias. Matches @cb{.css} cursor: alias @ce in CSS. */
Alias,
/** Copy. Matches @cb{.css} cursor: copy @ce in CSS. */
Copy,
/**
* Four pointed arrow pointing north, south, east, and west.
* Matches @cb{.css} cursor: move @ce in CSS.
*/
ResizeAll,
/**
* Drop not allowed. Matches @cb{.css} cursor: no-drop @ce in CSS.
*/
NoDrop,
/**
* Slashed circle or crossbones. Matches
* @cb{.css} cursor: not-allowed @ce in CSS.
*/
No,
/** Grab. Matches @cb{.css} cursor: grab @ce in CSS. */
Grab,
/** Grabbing. Matches @cb{.css} cursor: grabbing @ce in CSS. */
Grabbing,
/**
* Scroll in any direction. Matches
* @cb{.css} cursor: all-scroll @ce in CSS.
*/
AllScroll,
/**
* Column resize. Matches @cb{.css} cursor: col-resize @ce in CSS.
*/
ColResize,
/**
* Row resize. Matches @cb{.css} cursor: row-resize @ce in CSS.
*/
RowResize,
/**
* Resize arrow pointing north. Matches
* @cb{.css} cursor: n-resize @ce in CSS.
*/
ResizeN,
/**
* Resize arrow pointing east. Matches
* @cb{.css} cursor: e-resize @ce in CSS.
*/
ResizeE,
/**
* Resize arrow pointing south. Matches
* @cb{.css} cursor: s-resize @ce in CSS.
*/
ResizeS,
/**
* Resize arrow pointing west. Matches
* @cb{.css} cursor: w-resize @ce in CSS.
*/
ResizeW,
/**
* Resize arrow pointing northeast. Matches
* @cb{.css} cursor: ne-resize @ce in CSS.
*/
ResizeNE,
/**
* Resize arrow pointing northwest. Matches
* @cb{.css} cursor: nw-resize @ce in CSS.
*/
ResizeNW,
/**
* Resize arrow pointing southeast. Matches
* @cb{.css} cursor: se-resize @ce in CSS.
*/
ResizeSE,
/**
* Resize arrow pointing southwest. Matches
* @cb{.css} cursor: se-resize @ce in CSS.
*/
ResizeSW,
/**
* Double resize arrow pointing west and east. Matches
* @cb{.css} cursor: ew-resize @ce in CSS.
*/
/* Kept like this for compatibility with Sdl2 and GlfwApp (winapi
has it like this, too) */
ResizeWE,
/**
* Double resize arrow pointing north and south. Matches
* @cb{.css} cursor: ns-resize @ce in CSS.
*/
ResizeNS,
/**
* Double resize arrow pointing northeast and southwest. Matches
* @cb{.css} cursor: nesw-resize @ce in CSS.
*/
ResizeNESW,
/**
* Double resize arrow pointing northwest and southeast. Matches
* @cb{.css} cursor: nwse-resize @ce in CSS.
*/
ResizeNWSE,
/** Zoom in. Matches @cb{.css} cursor: zoom-in @ce in CSS. */
ZoomIn,
/** Zoom out. Matches @cb{.css} cursor: zoom-out @ce in CSS. */
ZoomOut
};
/**
* @brief Set cursor type
* @m_since_latest
*
* Default is @ref Cursor::Arrow.
*/
void setCursor(Cursor cursor);
/**
* @brief Get current cursor type
* @m_since_latest
*/
Cursor cursor();
private:
/**
* @brief Mouse press event
*
* Called when mouse button is pressed. Default implementation does
* nothing.
*/
virtual void mousePressEvent(MouseEvent& event);
/**
* @brief Mouse release event
*
* Called when mouse button is released. Default implementation does
* nothing.
*/
virtual void mouseReleaseEvent(MouseEvent& event);
/**
* @brief Mouse move event
*
* Called when mouse is moved. Default implementation does nothing.
*/
virtual void mouseMoveEvent(MouseMoveEvent& event);
/**
* @brief Mouse scroll event
*
* Called when a scrolling device is used (mouse wheel or scrolling
* area on a touchpad). Default implementation does nothing.
*/
virtual void mouseScrollEvent(MouseScrollEvent& event);
/* Since 1.8.17, the original short-hand group closing doesn't work
anymore. FFS. */
/**
* @}
*/
/** @{ @name Text input handling */
public:
/**
* @brief Whether text input is active
*
* If text input is active, text input events go to @ref textInputEvent().
* @note Note that in @ref CORRADE_TARGET_EMSCRIPTEN "Emscripten" the
* value is emulated and might not reflect external events like
* closing on-screen keyboard.
* @see @ref startTextInput(), @ref stopTextInput()
*/
bool isTextInputActive() const {
return !!(_flags & Flag::TextInputActive);
}
/**
* @brief Start text input
*
* Starts text input that will go to @ref textInputEvent().
* @see @ref stopTextInput(), @ref isTextInputActive(),
* @ref setTextInputRect()
*/
void startTextInput();
/**
* @brief Stop text input
*
* Stops text input that went to @ref textInputEvent().
* @see @ref startTextInput(), @ref isTextInputActive(),
* @ref textInputEvent()
*/
void stopTextInput();
/**
* @brief Set text input rectangle
*
* The @p rect defines an area where the text is being displayed, for
* example to hint the system where to place on-screen keyboard.
* @note Currently not implemented, included only for compatibility with
* other Application implementations.
*/
void setTextInputRect(const Range2Di& rect);
private:
/**
* @brief Text input event
*
* Called when text input is active and the text is being input.
* @see @ref isTextInputActive()
*/
virtual void textInputEvent(TextInputEvent& event);
/* Since 1.8.17, the original short-hand group closing doesn't work
anymore. FFS. */
/**
* @}
*/
private:
enum class Flag: UnsignedByte {
Redraw = 1 << 0,
TextInputActive = 1 << 1,
ExitRequested = 1 << 2,
LoopActive = 1 << 3
};
typedef Containers::EnumSet<Flag> Flags;
CORRADE_ENUMSET_FRIEND_OPERATORS(Flags)
void handleCanvasResize(const EmscriptenUiEvent* event);
/* Sorry, but can't use Configuration::WindowFlags here :( */
void setupCallbacks(bool resizable);
void setupAnimationFrame(bool ForceAnimationFrame);
Vector2 _devicePixelRatio, _dpiScaling;
Vector2i _lastKnownCanvasSize, _previousMouseMovePosition{-1};
Flags _flags;
Cursor _cursor;
#ifdef MAGNUM_TARGET_GL
EMSCRIPTEN_WEBGL_CONTEXT_HANDLE _glContext{};
Containers::Pointer<Platform::GLContext> _context;
#endif
/* These are saved from command-line arguments */
bool _verboseLog{};
Vector2 _commandLineDpiScaling;
/* Animation frame callback */
int (*_callback)(void*);
};
#ifdef MAGNUM_TARGET_GL
/**
@brief WebGL context configuration
The created context is always with a double-buffered OpenGL context.
@note This function is available only if Magnum is compiled with
@ref MAGNUM_TARGET_GL enabled (done by default). See @ref building-features
for more information.
@see @ref EmscriptenApplication(), @ref Configuration, @ref create(),
@ref tryCreate()
*/
class EmscriptenApplication::GLConfiguration {
public:
/**
* @brief Context flag
*
* @see @ref Flags, @ref setFlags(), @ref GL::Context::Flag
*/
enum class Flag: Int {
/**
* Premultiplied alpha. If set, the alpha channel of the rendering
* context will be treated as representing premultiplied alpha
* values. If not set, the alpha channel represents
* non-premultiplied alpha.
*/
PremultipliedAlpha = 1 << 0,
/**
* Preserve drawing buffer. If set, the contents of the drawing
* buffer are preserved between consecutive @ref drawEvent() calls.
* If not, color, depth and stencil are cleared before entering
* @ref drawEvent(). Not setting this gives better performance.
*/
PreserveDrawingBuffer = 1 << 1,
/**
* Prefer low power to high performance. If set, the WebGL power
* preference will be set to reduce power consumption.
*/
PreferLowPowerToHighPerformance = 1 << 2,
/**
* Fail if major performance caveat. If set, requests context
* creation to abort if the browser is only able to create a
* context that does not give good hardware-accelerated
* performance.
*/
FailIfMajorPerformanceCaveat = 1 << 3,
/**
* Explicit swap control. For more details, see the
* [Emscripten API reference](https://emscripten.org/docs/api_reference/html5.h.html#c.EmscriptenWebGLContextAttributes.explicitSwapControl).
*/
ExplicitSwapControl = 1 << 4,
/**
* Enable WebGL extensions by default. Enabled by default. For more
* details, see @ref Platform-EmscriptenApplication-webgl and the
* [Emscripten API reference](https://emscripten.org/docs/api_reference/html5.h.html#c.EmscriptenWebGLContextAttributes.enableExtensionsByDefault).
*/
EnableExtensionsByDefault = 1 << 5,
/**
* Render via offscreen back buffer. For more details, see the
* [Emscripten API reference](https://emscripten.org/docs/api_reference/html5.h.html#c.EmscriptenWebGLContextAttributes.renderViaOffscreenBackBuffer).
*/
RenderViaOffscreenBackBuffer = 1 << 6,
/**
* Proxy content to main thread. For more details, see the
* [Emscripten API reference](https://emscripten.org/docs/api_reference/html5.h.html#c.EmscriptenWebGLContextAttributes.proxyContextToMainThread).
*/
ProxyContextToMainThread = 1 << 7
};
/**
* @brief Context flags
*
* @see @ref setFlags(), @ref GL::Context::Flags
*/
typedef Containers::EnumSet<Flag> Flags;
/*implicit*/ GLConfiguration();
/** @brief Context flags */
Flags flags() const { return _flags; }
/**
* @brief Set context flags
* @return Reference to self (for method chaining)
*
* Default is @ref Flag::EnableExtensionsByDefault.
* @see @ref addFlags(), @ref clearFlags(), @ref GL::Context::flags()
*/
GLConfiguration& setFlags(Flags flags) {
_flags = flags;
return *this;
}
/**
* @brief Add context flags
* @return Reference to self (for method chaining)
*
* Unlike @ref setFlags(), ORs the flags with existing instead of
* replacing them. Useful for preserving the defaults.
* @see @ref clearFlags()
*/
GLConfiguration& addFlags(Flags flags) {
_flags |= flags;
return *this;
}
/**
* @brief Clear context flags
* @return Reference to self (for method chaining)
*
* Unlike @ref setFlags(), ANDs the inverse of @p flags with existing
* instead of replacing them. Useful for removing default flags.
* @see @ref addFlags()
*/
GLConfiguration& clearFlags(Flags flags) {
_flags &= ~flags;
return *this;
}
/**
* @brief Set context version
*
* @note This function does nothing and is included only for
* compatibility with other toolkits. @ref GL::Version::GLES200 or
* @ref GL::Version::GLES300 is used based on engine compile-time
* settings.
*/
GLConfiguration& setVersion(GL::Version) { return *this; }
/** @brief Color buffer size */
Vector4i colorBufferSize() const { return _colorBufferSize; }
/**
* @brief Set color buffer size
*
* Default is @cpp {8, 8, 8, 8} @ce (8-bit-per-channel RGBA).
* @see @ref setDepthBufferSize(), @ref setStencilBufferSize()
*/
GLConfiguration& setColorBufferSize(const Vector4i& size) {
_colorBufferSize = size;
return *this;
}
/** @brief Depth buffer size */
Int depthBufferSize() const { return _depthBufferSize; }
/**
* @brief Set depth buffer size
*
* Default is @cpp 24 @ce bits.
* @see @ref setColorBufferSize(), @ref setStencilBufferSize()
*/
GLConfiguration& setDepthBufferSize(Int size) {
_depthBufferSize = size;
return *this;
}
/** @brief Stencil buffer size */
Int stencilBufferSize() const { return _stencilBufferSize; }
/**
* @brief Set stencil buffer size
*
* Default is @cpp 0 @ce bits (i.e., no stencil buffer).
* @see @ref setColorBufferSize(), @ref setDepthBufferSize()
*/
GLConfiguration& setStencilBufferSize(Int size) {
_stencilBufferSize = size;
return *this;
}
/** @brief Sample count */
Int sampleCount() const { return _sampleCount; }
/**
* @brief Set sample count
* @return Reference to self (for method chaining)
*
* Default is @cpp 0 @ce, thus no multisampling. See also
* @ref GL::Renderer::Feature::Multisampling.
* Note that WebGL does not allow setting the sample count, but merely
* enabling or disabling multisampling. Multisampling will be enabled
* if sample count is greater than @cpp 0 @ce.
*/
GLConfiguration& setSampleCount(Int count) {
_sampleCount = count;
return *this;
}
private:
Vector4i _colorBufferSize;
Int _depthBufferSize, _stencilBufferSize;
Int _sampleCount;
Flags _flags{Flag::EnableExtensionsByDefault};
};
CORRADE_ENUMSET_OPERATORS(EmscriptenApplication::GLConfiguration::Flags)
#endif
/**
@brief Configuration
@see @ref EmscriptenApplication(), @ref GLConfiguration, @ref create(),
@ref tryCreate()
*/
class EmscriptenApplication::Configuration {
public:
/**
* @brief Window flag
*
* @see @ref WindowFlags, @ref setWindowFlags()
*/
enum class WindowFlag: UnsignedShort {
/**
* Do not create any GPU context. Use together with
* @ref EmscriptenApplication(const Arguments&),
* @ref EmscriptenApplication(const Arguments&, const Configuration&),
* @ref create(const Configuration&) or
* @ref tryCreate(const Configuration&) to prevent implicit
* creation of an WebGL context.
*/
Contextless = 1 << 0,
/**
* Resizable canvas. This causes the framebuffer to be resized
* when the @cb{.html} <canvas> @ce size changes, either directly
* or as a consequence of browser window size change.
*
* Implement @ref viewportEvent() to react to the resizing events.
*/
Resizable = 1 << 1,
/**
* Always request the next animation frame. Disables the
* idle-efficient main loop described in
* @ref Platform-EmscriptenApplication-browser-main-loop and
* unconditionally schedules @m_class{m-doc-external} [window.requestAnimationFrame()](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame),
* matching the behavior of @ref Sdl2Application. Useful for
* testing or for simpler internal state when your app is going to
* redraw all the time anyway.
*
* Note that this does not affect how @ref drawEvent() is executed
* --- it depends on @ref redraw() being called independently of
* this flag being set.
*/
AlwaysRequestAnimationFrame = 1 << 2
};
/**
* @brief Window flags
*
* @see @ref setWindowFlags()
*/
typedef Containers::EnumSet<WindowFlag> WindowFlags;
constexpr /*implicit*/ Configuration() {}
/**
* @brief Set window title
* @return Reference to self (for method chaining)
*
* @note This function does nothing and is included only for
* compatibility with other toolkits, as the page title is
* expected to be set by the HTML markup. However, it's possible
* to change the page title later (for example in response to
* application state change) using @ref setWindowTitle().
*/
template<class T> Configuration& setTitle(const T&) { return *this; }
/** @brief Window size */
Vector2i size() const { return _size; }
/**
* @brief Set canvas size
* @param size Desired canvas size
* @param dpiScaling Custom DPI scaling value
*
* Default is a zero vector, meaning a value that matches the display
* or canvas size is autodetected. See
* @ref Platform-EmscriptenApplication-dpi for more information. When
* @p dpiScaling is not a zero vector, this function sets the DPI
* scaling directly. The resulting @ref windowSize() is
* @cpp size*dpiScaling @ce and @ref dpiScaling() is @p dpiScaling.
*/
Configuration& setSize(const Vector2i& size, const Vector2& dpiScaling = {}) {
_size = size;
_dpiScaling = dpiScaling;
return *this;
}
/**
* @brief Custom DPI scaling
*
* If zero, the devices pixel ratio has a priority over this value.
* The `--magnum-dpi-scaling` option (specified via URL GET parameters)
* has a priority over any application-set value.
* @see @ref setSize(const Vector2i&, const Vector2&)
*/
Vector2 dpiScaling() const { return _dpiScaling; }
/** @brief Window flags */
WindowFlags windowFlags() const {
return _windowFlags;
}
/**
* @brief Set window flags
* @return Reference to self (for method chaining)
*/
Configuration& setWindowFlags(WindowFlags windowFlags) {
_windowFlags = windowFlags;
return *this;
}
private:
Vector2i _size;
Vector2 _dpiScaling;
WindowFlags _windowFlags;
};
CORRADE_ENUMSET_OPERATORS(EmscriptenApplication::Configuration::WindowFlags)
/**
@brief Viewport event
@see @ref viewportEvent()
*/
class EmscriptenApplication::ViewportEvent {
public:
/** @brief Copying is not allowed */
ViewportEvent(const ViewportEvent&) = delete;
/** @brief Moving is not allowed */
ViewportEvent(ViewportEvent&&) = delete;
/** @brief Copying is not allowed */
ViewportEvent& operator=(const ViewportEvent&) = delete;
/** @brief Moving is not allowed */
ViewportEvent& operator=(ViewportEvent&&) = delete;
/**
* @brief Canvas size
*
* On HiDPI displays, window size can be different from
* @ref framebufferSize(). See @ref Platform-EmscriptenApplication-dpi
* for more information. Note that this method is named "window size"
* to be API-compatible with Application implementations on other
* platforms.
* @see @ref EmscriptenApplication::windowSize()
*/
Vector2i windowSize() const { return _windowSize; }
#if defined(MAGNUM_TARGET_GL) || defined(DOXYGEN_GENERATING_OUTPUT)
/**
* @brief Framebuffer size
*
* On HiDPI displays, framebuffer size can be different from
* @ref windowSize(). See @ref Platform-EmscriptenApplication-dpi for
* more information.
*
* @note This function is available only if Magnum is compiled with
* @ref MAGNUM_TARGET_GL enabled (done by default). See
* @ref building-features for more information.
*
* @see @ref EmscriptenApplication::framebufferSize()
*/
Vector2i framebufferSize() const { return _framebufferSize; }
#endif
/**
* @brief DPI scaling
*
* On some platforms moving a browser window between displays can
* result in DPI scaling value being changed in tandem with a
* canvas/framebuffer size. Simply resizing the canvas doesn't change
* the DPI scaling value. See @ref Platform-EmscriptenApplication-dpi
* for more information.
* @see @ref EmscriptenApplication::dpiScaling()
*/
Vector2 dpiScaling() const { return _dpiScaling; }
/**
* @brief Device pixel ratio
*
* On some platforms moving a browser window between displays can
* result in device pixel ratio value being changed. Crossplatform code
* shouldn't need to query this value because the ratio is already
* expressed in the ratio of @ref windowSize() and @ref framebufferSize()
* values. See @ref Platform-EmscriptenApplication-dpi for more
* information.
* @see @ref EmscriptenApplication::devicePixelRatio()
*/
Vector2 devicePixelRatio() const { return _devicePixelRatio; }
/**
* @brief Underlying Emscripten event
*
* If the viewport event doesn't come from a browser event (for example
* when the canvas was resized programatically and not as a consequence
* of window size change), the function returns @cpp nullptr @ce.
*/
const EmscriptenUiEvent* event() const { return _event; }
private:
friend EmscriptenApplication;
explicit ViewportEvent(const EmscriptenUiEvent* event,
const Vector2i& windowSize,
#ifdef MAGNUM_TARGET_GL
const Vector2i& framebufferSize,
#endif
const Vector2& dpiScaling, const Vector2& devicePixelRatio):
_event{event},
_windowSize{windowSize},
#ifdef MAGNUM_TARGET_GL
_framebufferSize{framebufferSize},
#endif
_dpiScaling{dpiScaling}, _devicePixelRatio{devicePixelRatio} {}
const EmscriptenUiEvent* _event;
const Vector2i _windowSize;
#ifdef MAGNUM_TARGET_GL
const Vector2i _framebufferSize;
#endif
const Vector2 _dpiScaling, _devicePixelRatio;
};
/**
@brief Base for input events
@see @ref KeyEvent, @ref MouseEvent, @ref MouseMoveEvent, @ref keyPressEvent(),
@ref mousePressEvent(), @ref mouseReleaseEvent(), @ref mouseMoveEvent()
*/
class EmscriptenApplication::InputEvent {
public:
/**
* @brief Modifier
*
* @see @ref Modifiers, @ref KeyEvent::modifiers(),
* @ref MouseEvent::modifiers()
*/
enum class Modifier: Int {
/**
* Shift
*
* @see @ref KeyEvent::Key::LeftShift, @ref KeyEvent::Key::RightShift
*/
Shift = 1 << 0,
/**
* Ctrl
*
* @see @ref KeyEvent::Key::LeftCtrl, @ref KeyEvent::Key::RightCtrl
*/
Ctrl = 1 << 1,
/**
* Alt
*
* @see @ref KeyEvent::Key::LeftAlt, @ref KeyEvent::Key::RightAlt
*/
Alt = 1 << 2,
/**
* Super key (Windows/⌘)
*
* @see @ref KeyEvent::Key::LeftSuper, @ref KeyEvent::Key::RightSuper
*/
Super = 1 << 3
};
/**
* @brief Set of modifiers
*
* @see @ref KeyEvent::modifiers(), @ref MouseEvent::modifiers(),
* @ref MouseMoveEvent::modifiers()
*/
typedef Containers::EnumSet<Modifier> Modifiers;
/** @brief Copying is not allowed */
InputEvent(const InputEvent&) = delete;
/** @brief Moving is not allowed */
InputEvent(InputEvent&&) = delete;
/** @brief Copying is not allowed */
InputEvent& operator=(const InputEvent&) = delete;
/** @brief Moving is not allowed */
InputEvent& operator=(InputEvent&&) = delete;
/** @brief Whether the event is accepted */
bool isAccepted() const { return _accepted; }
/**
* @brief Set event as accepted
*
* If the event is ignored (i.e., not set as accepted), it is
* propagated to other elements on the page. By default each event is
* ignored and thus propagated.
*/
void setAccepted(bool accepted = true) { _accepted = accepted; }
protected:
explicit InputEvent(): _accepted(false) {}
~InputEvent() = default;
private:
bool _accepted;
};
CORRADE_ENUMSET_OPERATORS(EmscriptenApplication::InputEvent::Modifiers)
/**
@brief Mouse event
@see @ref MouseMoveEvent, @ref mousePressEvent(), @ref mouseReleaseEvent()
*/
class EmscriptenApplication::MouseEvent: public EmscriptenApplication::InputEvent {
public:
/**
* @brief Mouse button
*
* @see @ref button()
*/
enum class Button: std::int32_t {
Left, /**< Left mouse button */
Middle, /**< Middle mouse button */
Right /**< Right mouse button */
};
/** @brief Button */
Button button() const;
/** @brief Position */
Vector2i position() const;
/** @brief Modifiers */
Modifiers modifiers() const;
/** @brief Underlying Emscripten event */
const EmscriptenMouseEvent& event() const { return _event; }
private:
friend EmscriptenApplication;
explicit MouseEvent(const EmscriptenMouseEvent& event): _event(event) {}
const EmscriptenMouseEvent& _event;
};
/**
@brief Mouse move event
@see @ref MouseEvent, @ref mouseMoveEvent()
*/
class EmscriptenApplication::MouseMoveEvent: public EmscriptenApplication::InputEvent {
public:
/**
* @brief Mouse button
*
* @see @ref buttons()
*/
enum class Button: Int {
/** Left mouse button */
Left = 1 << 0,
/** Middle mouse button */
Middle = 1 << 1,
/** Right mouse button */
Right = 1 << 2
};
/**
* @brief Set of mouse buttons
*
* @see @ref buttons()
*/
typedef Containers::EnumSet<Button> Buttons;
/** @brief Position */
Vector2i position() const;
/**
* @brief Relative position
*
* Position relative to previous move event. Unlike
* @ref Sdl2Application, HTML APIs don't provide relative position
* directly, so this is calculated explicitly as a delta from previous
* move event position.
*/
Vector2i relativePosition() const { return _relativePosition; }
/** @brief Mouse buttons */
Buttons buttons() const;
/** @brief Modifiers */
Modifiers modifiers() const;
/** @brief Underlying Emscripten event */
const EmscriptenMouseEvent& event() const { return _event; }
private:
friend EmscriptenApplication;
explicit MouseMoveEvent(const EmscriptenMouseEvent& event, const Vector2i& relativePosition): _event(event), _relativePosition{relativePosition} {}
const EmscriptenMouseEvent& _event;
const Vector2i _relativePosition;
};
CORRADE_ENUMSET_OPERATORS(EmscriptenApplication::MouseMoveEvent::Buttons)
/**
@brief Mouse scroll event
@see @ref MouseEvent, @ref MouseMoveEvent, @ref mouseScrollEvent()
*/
class EmscriptenApplication::MouseScrollEvent: public EmscriptenApplication::InputEvent {
public:
/** @brief Scroll offset */
Vector2 offset() const;
/** @brief Position */
Vector2i position() const;
/** @brief Modifiers */
Modifiers modifiers() const;
/** @brief Underlying Emscripten event */
const EmscriptenWheelEvent& event() const { return _event; }
private:
friend EmscriptenApplication;
explicit MouseScrollEvent(const EmscriptenWheelEvent& event): _event(event) {}
const EmscriptenWheelEvent& _event;
};
/**
@brief Key event
@see @ref keyPressEvent(), @ref keyReleaseEvent()
*/
class EmscriptenApplication::KeyEvent: public EmscriptenApplication::InputEvent {
public:
/**
* @brief Key
*
* @see @ref key()
*/
enum class Key: Int {
Unknown, /**< Unknown key */
/**
* Left Shift
*
* @see @ref InputEvent::Modifier::Shift
*/
LeftShift,
/**
* Right Shift
*
* @see @ref InputEvent::Modifier::Shift
*/
RightShift,
/**
* Left Ctrl
*
* @see @ref InputEvent::Modifier::Ctrl
*/
LeftCtrl,
/**
* Right Ctrl
*
* @see @ref InputEvent::Modifier::Ctrl
*/
RightCtrl,
/**
* Left Alt
*
* @see @ref InputEvent::Modifier::Alt
*/
LeftAlt,
/**
* Right Alt
*
* @see @ref InputEvent::Modifier::Alt
*/
RightAlt,
/**
* Left Super key (Windows/⌘)
*
* @see @ref InputEvent::Modifier::Super
*/
LeftSuper,
/**
* Right Super key (Windows/⌘)
*
* @see @ref InputEvent::Modifier::Super
*/
RightSuper,
/* no equivalent for Sdl2Application's AltGr */
Enter, /**< Enter */
Esc, /**< Escape */
Up, /**< Up arrow */
Down, /**< Down arrow */
Left, /**< Left arrow */
Right, /**< Right arrow */
Home, /**< Home */
End, /**< End */
PageUp, /**< Page up */
PageDown, /**< Page down */
Backspace, /**< Backspace */
Insert, /**< Insert */
Delete, /**< Delete */
F1, /**< F1 */
F2, /**< F2 */
F3, /**< F3 */
F4, /**< F4 */
F5, /**< F5 */
F6, /**< F6 */
F7, /**< F7 */
F8, /**< F8 */
F9, /**< F9 */
F10, /**< F10 */
F11, /**< F11 */
F12, /**< F12 */
Zero = '0', /**< Zero */
One, /**< One */
Two, /**< Two */
Three, /**< Three */
Four, /**< Four */
Five, /**< Five */
Six, /**< Six */
Seven, /**< Seven */
Eight, /**< Eight */
Nine, /**< Nine */
A = 'a', /**< Letter A */
B, /**< Letter B */
C, /**< Letter C */
D, /**< Letter D */
E, /**< Letter E */
F, /**< Letter F */
G, /**< Letter G */
H, /**< Letter H */
I, /**< Letter I */
J, /**< Letter J */
K, /**< Letter K */
L, /**< Letter L */
M, /**< Letter M */
N, /**< Letter N */
O, /**< Letter O */
P, /**< Letter P */
Q, /**< Letter Q */
R, /**< Letter R */
S, /**< Letter S */
T, /**< Letter T */
U, /**< Letter U */
V, /**< Letter V */
W, /**< Letter W */
X, /**< Letter X */
Y, /**< Letter Y */
Z, /**< Letter Z */
Space, /**< Space */
Tab, /**< Tab */
Quote, /**< Quote (<tt>'</tt>) */
Comma, /**< Comma */
Period, /**< Period */
Minus, /**< Minus */
/* Note: This may only be represented as SHIFT + = */
Plus, /**< Plus */
Slash, /**< Slash */
/* Note: This may only be represented as SHIFT + 5 */
Percent, /**< Percent */
/**
* Semicolon (`;`)
* @m_since_latest
*/
Semicolon,
Equal, /**< Equal */
LeftBracket, /**< Left bracket (`[`) */
RightBracket, /**< Right bracket (`]`) */
Backslash, /**< Backslash (`\`) */
Backquote, /**< Backquote (<tt>`</tt>) */
/* no equivalent for GlfwApplication's World1 / World2 */
CapsLock, /**< Caps lock */
ScrollLock, /**< Scroll lock */
NumLock, /**< Num lock */
PrintScreen, /**< Print screen */
Pause, /**< Pause */
Menu, /**< Menu */
NumZero, /**< Numpad zero */
NumOne, /**< Numpad one */
NumTwo, /**< Numpad two */
NumThree, /**< Numpad three */
NumFour, /**< Numpad four */
NumFive, /**< Numpad five */
NumSix, /**< Numpad six */
NumSeven, /**< Numpad seven */
NumEight, /**< Numpad eight */
NumNine, /**< Numpad nine */
NumDecimal, /**< Numpad decimal */
NumDivide, /**< Numpad divide */
NumMultiply, /**< Numpad multiply */
NumSubtract, /**< Numpad subtract */
NumAdd, /**< Numpad add */
NumEnter, /**< Numpad enter */
NumEqual /**< Numpad equal */
};
/**
* @brief Key
*
* Note that the key is mapped from @m_class{m-doc-external}
* [EmscriptenKeyboardEvent::code](https://emscripten.org/docs/api_reference/html5.h.html#c.EmscriptenKeyboardEvent.code)
* in all cases except A--Z, which are mapped from
* @m_class{m-doc-external} [EmscriptenkeyboardEvent::key](https://emscripten.org/docs/api_reference/html5.h.html#c.EmscriptenKeyboardEvent.key),
* which respects the keyboard layout.
*/
Key key() const;
/** @brief Key name */
std::string keyName() const;
/** @brief Modifiers */
Modifiers modifiers() const;
/** @brief Underlying Emscripten event */
const EmscriptenKeyboardEvent& event() const { return _event; }
private:
friend EmscriptenApplication;
explicit KeyEvent(const EmscriptenKeyboardEvent& event): _event(event) {}
const EmscriptenKeyboardEvent& _event;
};
/**
@brief Text input event
@see @ref textInputEvent()
*/
class EmscriptenApplication::TextInputEvent {
public:
/** @brief Copying is not allowed */
TextInputEvent(const TextInputEvent&) = delete;
/** @brief Moving is not allowed */
TextInputEvent(TextInputEvent&&) = delete;
/** @brief Copying is not allowed */
TextInputEvent& operator=(const TextInputEvent&) = delete;
/** @brief Moving is not allowed */
TextInputEvent& operator=(TextInputEvent&&) = delete;
/** @brief Whether the event is accepted */
bool isAccepted() const { return _accepted; }
/** @copydoc EmscriptenApplication::InputEvent::setAccepted() */
void setAccepted(bool accepted = true) { _accepted = accepted; }
/** @brief Input text in UTF-8 */
Containers::ArrayView<const char> text() const { return _text; }
/** @brief Underlying Emscripten event */
const EmscriptenKeyboardEvent& event() const { return _event; }
private:
friend EmscriptenApplication;
explicit TextInputEvent(const EmscriptenKeyboardEvent& event, Containers::ArrayView<const char> text): _event(event), _text{text}, _accepted{false} {}
const EmscriptenKeyboardEvent& _event;
const Containers::ArrayView<const char> _text;
bool _accepted;
};
/** @hideinitializer
@brief Entry point for Emscripten applications
@param className Class name
@m_keywords{MAGNUM_APPLICATION_MAIN()}
See @ref Magnum::Platform::EmscriptenApplication "Platform::EmscriptenApplication"
for usage information. This macro abstracts out platform-specific entry point
code. See @ref portability-applications for more information.
When no other application header is included this macro is also aliased to
@cpp MAGNUM_APPLICATION_MAIN() @ce.
Compared to for example @ref MAGNUM_SDL2APPLICATION_MAIN(), the macro
instantiates the application instance as a global variable instead of a local
variable inside @cpp main() @ce. This is in order to support the
@ref Platform-EmscriptenApplication-browser-main-loop "idle-efficient main loop",
as otherwise the local scope would end before any event callback has a chance
to happen.
*/
#define MAGNUM_EMSCRIPTENAPPLICATION_MAIN(className) \
namespace { Corrade::Containers::Pointer<className> emscriptenApplicationInstance ; } \
int main(int argc, char** argv) { \
emscriptenApplicationInstance.reset(new className{{argc, argv}}); \
return emscriptenApplicationInstance->exec(); \
}
#ifndef DOXYGEN_GENERATING_OUTPUT
#ifndef MAGNUM_APPLICATION_MAIN
typedef EmscriptenApplication Application;
typedef BasicScreen<EmscriptenApplication> Screen;
typedef BasicScreenedApplication<EmscriptenApplication> ScreenedApplication;
#define MAGNUM_APPLICATION_MAIN(className) MAGNUM_EMSCRIPTENAPPLICATION_MAIN(className)
#else
#undef MAGNUM_APPLICATION_MAIN
#endif
#endif
}}
#else
#error this file is available only on Emscripten build
#endif
#endif
| [
"mosra@centrum.cz"
] | mosra@centrum.cz |
11d246c70c574967bed8c8c789abb3d86ed411a0 | bbf5ec3b325513049d25070f93a476c2e3929cef | /source/kernel/list.h | 17abc598f1630f6bbdc2da11a9464177b45ad5d1 | [] | no_license | yasuo-ozu/Raph_Kernel | 10d38a6205d4e58af801e758869d4184268c7d4a | 27920021b5b7de9802939b4249487ff9d7f5780e | refs/heads/develop | 2021-01-12T05:23:02.020674 | 2017-01-03T21:36:32 | 2017-01-03T21:36:32 | 77,915,594 | 0 | 0 | null | 2017-01-03T12:33:28 | 2017-01-03T12:33:27 | null | UTF-8 | C++ | false | false | 1,814 | h | /*
*
* Copyright (c) 2016 Raphine Project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Author: Liva
*
*/
#ifndef __RAPH_LIB_RLIB_LIST_H__
#define __RAPH_LIB_RLIB_LIST_H__
#include <raph.h>
#include <spinlock.h>
template<class T>
class ObjectList {
public:
struct Container {
Container *GetNext() {
return next;
}
T *GetObject() {
return obj;
}
private:
T *obj;
Container *next;
friend ObjectList;
};
ObjectList() {
_last = &_first;
_first.obj = nullptr;
_first.next = nullptr;
}
~ObjectList() {
}
template<class... Arg>
Container *PushBack(Arg... args) {
Container *c = new Container;
c->obj = new T(args...);
c->next = nullptr;
Locker locker(_lock);
kassert(_last->next == nullptr);
_last->next = c;
_last = c;
return c;
}
// 帰るコンテナは番兵なので、オブジェクトを格納していない
Container *GetBegin() {
return &_first;
}
bool IsEmpty() {
return &_first == _last;
}
private:
Container _first;
Container *_last;
SpinLock _lock;
};
#endif // __RAPH_LIB_RLIB_LIST_H__
| [
"sap.pcmail@gmail.com"
] | sap.pcmail@gmail.com |
4062b76ef36da98cd7db94b3fc80bf8d224cf18c | 77539c15db1299c3db282e4240bffd03eeb63bbb | /Lancelot北理云逸创新_back/Vision/DigitDetector/src/util.cpp | f77d6e140f325fda9eea57d502dd805f8e847b9a | [] | no_license | golaced/DJI_SDK_OLDX | 7a7b7d1e955be8818910c1f184d69ca06d79eddd | 69ffbe8e25528f2fa6d58b34b483fb9a1c65e38d | refs/heads/master | 2021-09-01T18:25:53.670468 | 2017-12-28T07:23:11 | 2017-12-28T07:23:11 | 105,632,044 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,280 | cpp | /*
* util.cpp
*
* Author: JYF
*/
#include "util.h"
//used only during training
Rect findDigitBndBox(Mat& image){
Mat gray;
if(image.channels()==3){
cv::cvtColor(image, gray, cv::COLOR_BGR2GRAY);
}
else
image.copyTo(gray);
Mat biMat;
cv::threshold(gray, biMat, 100, 255, cv::THRESH_OTSU);
cv::bitwise_not(biMat, biMat);
//cv::imshow("bi", biMat);
IplImage ipl=biMat;
CvMemStorage* pStorage=cvCreateMemStorage(0);
CvSeq * pContour=NULL;
cvFindContours(&ipl, pStorage, &pContour, sizeof(CvContour), CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE);
double max_area=0;
Rect bndbox;
for(;pContour;pContour=pContour->h_next){
for(CvSeq* inner=pContour;inner;inner=inner->v_next){
CvRect bbox=cvBoundingRect(inner,0);
double real_area=fabs(cvContourArea(inner));
if(real_area>max_area){
max_area=real_area;
bndbox=Rect(bbox);
}
}
}
cvReleaseMemStorage(&pStorage);
return bndbox;
}
int Compare (const int& a, const int& b)
{
return a<b;
}
void nms(vector<Rect>& rects){
vector<int> deleteIdx;
vector<char> flags(rects.size());
for(size_t i=0;i<flags.size();++i)
flags[i]=0;
int areai,areaj,nms_area,nms_rbx,nms_rby,nms_ltx,nms_lty, nms_w, nms_h;
for(size_t i=0;i<rects.size();++i){
Rect& reci=rects[i];
areai=reci.width*reci.height;
for(size_t j=i+1;j<rects.size();++j){
//if(i==j) continue;
Rect& recj=rects[j];
areaj=recj.width*recj.height;
nms_rbx=min(recj.x+recj.width-1, reci.x+reci.width-1);
nms_rby=min(recj.y+recj.height-1, reci.y+reci.height-1);
nms_ltx=max(recj.x,reci.x);
nms_lty=max(recj.y,reci.y);
nms_w=max(nms_rbx-nms_ltx,0);
nms_h=max(nms_rby-nms_lty,0);
nms_area=nms_w*nms_h;
float ratio2i=1.0*nms_area/areai;
float ratio2j=1.0*nms_area/areaj;
if(ratio2i>0.8 and not flags[i]){
deleteIdx.push_back(i);
flags[i]=1;
}
else if(ratio2j>0.8 and not flags[j]){
deleteIdx.push_back(j);
flags[j]=1;
}
}
}
if(deleteIdx.size()>0){
auto beginner=rects.begin();
/*
cout<<rects.size()<<": ";
for(size_t i=0;i<deleteIdx.size();++i)
cout<<deleteIdx[i]<<",";
cout<<endl;
*/
sort(deleteIdx.begin(), deleteIdx.end(), Compare);
int k=0;
for(size_t i=0;i<deleteIdx.size();++i){
k=deleteIdx[i]-i;
rects.erase(beginner+k);
}
}
}
| [
"golaced@163.com"
] | golaced@163.com |
b994f991a775a7e5d80e8702f3f06fa8af5433b2 | 6b0af39cddaa68b253cf9a7a6dc68e8d9f334d51 | /L1-013 计算阶乘和.cpp | 7b72c787b6b086ec8f7960efbcb7b2c63689e198 | [] | no_license | fukai98/CCCC-GPLT | 68edae8131b898cd4460da33623d92ff42d516a4 | 4e8b84ca442a73f1d1c3ea98b1aa50a448a7a08f | refs/heads/master | 2020-07-04T05:27:02.415504 | 2019-08-19T16:00:11 | 2019-08-19T16:00:11 | 202,171,567 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 509 | cpp | /*
L1-013 计算阶乘和 (10 分)
对于给定的正整数N,需要你计算 S=1!+2!+3!+...+N!。
输入格式:
输入在一行中给出一个不超过10的正整数N。
输出格式:
在一行中输出S的值。
输入样例:
3
输出样例:
9
*/
#include <iostream>
using namespace std;
int main() {
int n, sum = 0;
cin >> n;
for (int i = 1; i <= n; ++i) {
int tmp = 1;
for (int j = 1; j <= i; ++j) tmp *= j;
sum += tmp;
}
cout << sum;
return 0;
}
| [
"fukai9809@163.com"
] | fukai9809@163.com |
46d3f458212e9c1cee945141bd3aa44f8e7f860e | f4ed3c27d54f36b87347bcfb26de63cce6f62177 | /day 2 code/TimingRandomColor/TimingRandomColor.ino | 8280a05d334c95389cefbfc247a7e46f18c2e9aa | [] | no_license | jaysonh/DMX_Lighting_Workshop | fd593a24b9c204460c35c3d7b56c84d1df10ef81 | 1569d8cbf62486bbf2ddba10b7e6c2d4ec859170 | refs/heads/master | 2020-04-28T15:03:26.983340 | 2019-03-15T10:59:33 | 2019-03-15T10:59:33 | 175,358,297 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 849 | ino | #include <Conceptinetics.h>
DMX_Master dmx_master ( 100 , 2 );
int r = 0;
int g = 0;
int b = 0;
int timer = 0;
void setup() {
dmx_master.enable ();
}
void loop()
{
dmx_master.setChannelValue ( 0, 0); // on
dmx_master.setChannelValue ( 1, 255); // dimmer (0 - dark 255- brightest)
dmx_master.setChannelValue ( 2, r); // red
dmx_master.setChannelValue ( 3, g); // green
dmx_master.setChannelValue ( 4, b); // blue
dmx_master.setChannelValue ( 5, 0); // white
dmx_master.setChannelValue ( 6, 0); // strobe
if(timer % 100 == 0) // every ten frames do this code
{
r = random(0,255);
g = random(0,255);
b = random(0,255);
}
delay ( 100 );
dmx_master.disable();
Serial.println(9600);
dmx_master.enable();
timer++;
}
| [
"jaysonkh@gmail.com"
] | jaysonkh@gmail.com |
8597727451b69335a95f97a6673c81a34c78ee0a | 6ac0f79f8ca37bb5ee43c5d2c32bb30ad9909fe8 | /src/Graphics/light.cpp | 9a24bd27cf6a2fb848a4af7f404a9766b742b4d3 | [
"MIT"
] | permissive | egomeh/floaty-boaty-go-go | fa14baa96aaa33183328ec6ee66cd793c1d6eb91 | a011db6f1f8712bf3caa85becc1fd83ac5bf1996 | refs/heads/master | 2021-09-24T09:16:28.203430 | 2018-10-06T12:46:20 | 2018-10-06T12:46:20 | 115,720,553 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23 | cpp | #include "light.hpp"
| [
"jensgholm15@gmail.com"
] | jensgholm15@gmail.com |
19899d4aaecdd3aecdafd10de360ed6c9d20fccc | bb158cb700e8a3b951de49f5e6d5c054d2f18dd6 | /canalyst/canalystii_node/src/canalystii_node_ros.cpp | 0dc08ed7093d0e8452feafd06b17b7c90cb90614 | [] | no_license | ZhiguangLiuGithub/ESR_canalyst_ros-1 | 4eecfcaccecea6c9477105a449315e823ccd0004 | 29c5b56e66bca9fccca6ee232f21b8dbd42ffdbb | refs/heads/master | 2021-10-10T17:48:05.125904 | 2019-01-15T03:44:47 | 2019-01-15T03:44:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,210 | cpp | #include "ros/ros.h"
#include "canalystii_node.h"
int main(int argc, char **argv){
ros::init(argc, argv, "canalystii_node");
CANalystii_node can_node;
if(!can_node.start_device()){
ROS_WARN("device starts error");
return -1;
}
VCI_INIT_CONFIG vci_conf;
vci_conf.AccCode = 0x80000008;
vci_conf.AccMask = 0xFFFFFFFF;
vci_conf.Filter = 1;//receive all frames
vci_conf.Timing0 = 0x00;
vci_conf.Timing1 = 0x1C;//baudrate 500kbps
vci_conf.Mode = 0;//normal mode
unsigned int can_idx = 0;
if(!can_node.init_can_interface(can_idx,vci_conf)){
ROS_WARN("device port init error");
return -1;
}
ROS_INFO("listening to can bus");
VCI_CAN_OBJ can_obj;
while(ros::ok()){
unsigned int recv_len = 1;
//int len = can_node.receive_can_frame(can_idx,can_obj,recv_len,0);
if(can_node.receive_can_frame(can_idx,can_obj,recv_len,20)){
//ROS_INFO("received:%u",can_obj.ID);
canalystii_node_msg::can msg = CANalystii_node::can_obj2msg(can_obj);
can_node.can_msg_pub_.publish(msg);
}
//ros::spinOnce();
}
//ros::spin();
return 0;
} | [
"1272717213@qq.com"
] | 1272717213@qq.com |
33c818daac0dd885b6cbb1e657a899978f502bd5 | 0d0e78c6262417fb1dff53901c6087b29fe260a0 | /organization/src/v20181225/model/ListOrganizationMembersRequest.cpp | 27e04c0ccb7672a7cbfac9157a9782c3fde1efcc | [
"Apache-2.0"
] | permissive | li5ch/tencentcloud-sdk-cpp | ae35ffb0c36773fd28e1b1a58d11755682ade2ee | 12ebfd75a399ee2791f6ac1220a79ce8a9faf7c4 | refs/heads/master | 2022-12-04T15:33:08.729850 | 2020-07-20T00:52:24 | 2020-07-20T00:52:24 | 281,135,686 | 1 | 0 | Apache-2.0 | 2020-07-20T14:14:47 | 2020-07-20T14:14:46 | null | UTF-8 | C++ | false | false | 2,452 | cpp | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <tencentcloud/organization/v20181225/model/ListOrganizationMembersRequest.h>
#include <tencentcloud/core/utils/rapidjson/document.h>
#include <tencentcloud/core/utils/rapidjson/writer.h>
#include <tencentcloud/core/utils/rapidjson/stringbuffer.h>
using namespace TencentCloud::Organization::V20181225::Model;
using namespace rapidjson;
using namespace std;
ListOrganizationMembersRequest::ListOrganizationMembersRequest() :
m_offsetHasBeenSet(false),
m_limitHasBeenSet(false)
{
}
string ListOrganizationMembersRequest::ToJsonString() const
{
Document d;
d.SetObject();
Document::AllocatorType& allocator = d.GetAllocator();
if (m_offsetHasBeenSet)
{
Value iKey(kStringType);
string key = "Offset";
iKey.SetString(key.c_str(), allocator);
d.AddMember(iKey, m_offset, allocator);
}
if (m_limitHasBeenSet)
{
Value iKey(kStringType);
string key = "Limit";
iKey.SetString(key.c_str(), allocator);
d.AddMember(iKey, m_limit, allocator);
}
StringBuffer buffer;
Writer<StringBuffer> writer(buffer);
d.Accept(writer);
return buffer.GetString();
}
uint64_t ListOrganizationMembersRequest::GetOffset() const
{
return m_offset;
}
void ListOrganizationMembersRequest::SetOffset(const uint64_t& _offset)
{
m_offset = _offset;
m_offsetHasBeenSet = true;
}
bool ListOrganizationMembersRequest::OffsetHasBeenSet() const
{
return m_offsetHasBeenSet;
}
uint64_t ListOrganizationMembersRequest::GetLimit() const
{
return m_limit;
}
void ListOrganizationMembersRequest::SetLimit(const uint64_t& _limit)
{
m_limit = _limit;
m_limitHasBeenSet = true;
}
bool ListOrganizationMembersRequest::LimitHasBeenSet() const
{
return m_limitHasBeenSet;
}
| [
"zhiqiangfan@tencent.com"
] | zhiqiangfan@tencent.com |
cd33ea0d77c3b8c8ba61206bf8b0aa42c1b28de9 | eab20d0596a79e9f026f77ceeed9eeb36c2e83f6 | /src/duktape/dukUtils.cpp | 7366ad3cbcaaa9fe3c1f09be8ca4e84e3ad9c530 | [
"MIT"
] | permissive | JackBister/desktop-canvas | 8ae31bc8ebd2684b79ef30fddc41fc1ce251301b | 6eb2bf7b1874fa5fd33e05b14bd49a17cca823ca | refs/heads/master | 2021-06-28T07:21:14.649031 | 2020-10-28T21:05:22 | 2020-10-28T21:05:22 | 157,974,795 | 1 | 0 | NOASSERTION | 2019-03-08T17:42:23 | 2018-11-17T10:44:22 | C | UTF-8 | C++ | false | false | 3,233 | cpp | #include "dukUtils.h"
#include <stdexcept>
#include "../Logger/Logger.h"
static auto logger = Logger::get();
void dcanvas::dukUtils::arraySplice(duk_context * ctx, duk_idx_t arrayIdx, duk_idx_t startIdx,
duk_idx_t deleteCount)
{
duk_dup(ctx, arrayIdx); // ..., []
duk_get_prop_string(ctx, -1, "splice"); // ..., [], splice
duk_swap_top(ctx, -2); // ..., splice, []
duk_push_int(ctx, startIdx); // ..., splice, [], startIdx
duk_push_int(ctx, deleteCount); // ..., splice, [], startIdx, deleteCount
auto result = duk_pcall_method(ctx, 2); // ..., retval
if (result == DUK_EXEC_ERROR) {
duk_safe_to_string(ctx, -1);
logger->info("arraySplice error %s", duk_require_string(ctx, -1));
}
duk_pop(ctx); // ...
}
JSValue dcanvas::dukUtils::pullFromCtx(duk_context * ctx)
{
if (duk_is_array(ctx, -1)) {
auto len = duk_get_length(ctx, -1);
std::vector<JSValue> arr;
for (auto i = 0; i < len; ++i) {
duk_get_prop_index(ctx, -1, i);
arr.push_back(pullFromCtx(ctx));
duk_pop(ctx);
}
return arr;
} else if (duk_is_boolean(ctx, -1)) {
return (bool)duk_get_boolean(ctx, -1);
} else if (duk_is_null(ctx, -1)) {
return nullptr;
} else if (duk_is_number(ctx, -1)) {
return duk_get_number(ctx, -1);
} else if (duk_is_object(ctx, -1)) {
duk_enum(ctx, -1, 0);
JSObject obj;
while (duk_next(ctx, -1, 1)) {
auto key = duk_to_string(ctx, -2);
auto value = pullFromCtx(ctx);
obj.push_back(std::make_pair(key, value));
duk_pop_2(ctx);
}
duk_pop(ctx);
return obj;
} else if (duk_is_string(ctx, -1)) {
auto str = duk_get_string(ctx, -1);
return std::string(str);
} else {
logger->info("Unhandled JSValue type at top of stack %d", duk_get_type(ctx, -1));
throw std::runtime_error("Unhandled JSValue type at top of stack");
}
}
void dcanvas::dukUtils::pushToCtx(duk_context * ctx, JSValue const & value)
{
auto paramType = value.index();
if (paramType == JSValue::Type::BOOL) {
duk_push_boolean(ctx, std::get<bool>(value));
} else if (paramType == JSValue::Type::DOUBLE) {
duk_push_number(ctx, std::get<double>(value));
} else if (paramType == JSValue::Type::OBJECT) {
auto object = std::get<JSObject>(value);
duk_push_bare_object(ctx);
for (auto it = object.begin(); it != object.end(); ++it) {
pushToCtx(ctx, it->second);
duk_put_prop_string(ctx, -2, it->first.c_str());
}
} else if (paramType == JSValue::Type::STRING) {
duk_push_string(ctx, std::get<std::string>(value).c_str());
} else if (paramType == JSValue::Type::ARRAY) {
auto arr = std::get<JSArray>(value);
auto arrIdx = duk_push_array(ctx);
for (size_t i = 0; i < arr.size(); ++i) {
pushToCtx(ctx, arr[i]);
duk_put_prop_index(ctx, arrIdx, i);
}
} else if (paramType == JSValue::Type::NULLPTR) {
duk_push_null(ctx);
}
}
| [
"jack.bisther@outlook.com"
] | jack.bisther@outlook.com |
bd4528b1fec22692dc5da3b8d90b439da1208f6a | d76d76f3bf72de70d13616fb3984553ee418943b | /algs/sort/mergesort.cpp | 10f1b5f1122d30978395fa039ca5867037fa8b74 | [] | no_license | denniszhong/learningalgs | 6d53f63287ae4b5ef8bc04f7a667186fe8ef38bb | 9c21b9dec802b87daf0d00dbcd7c1f74f6c39ff1 | refs/heads/master | 2016-08-03T17:53:26.567768 | 2013-11-05T19:08:41 | 2013-11-05T19:08:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,677 | cpp |
#include <stdlib.h>
#include <time.h>
#include <stdio.h>
#include <string.h>
void OutputArray(int arr[], int length)
{
int i = 0;
printf("Array: ");
for (i = 0; i < length; i++)
{
printf("%d ", arr[i]);
}
printf("\n");
}
void OutputArray2(int* pArr, int length)
{
int i = 0;
printf("Array: ");
for (i = 0; i < length; i++)
{
printf("%d ", *pArr++);
}
printf("\n");
}
void RandomArrayWithSelfMalloc(int rangeMin, int rangeMax, int* pArr, int arrLength)
{
pArr = (int*)malloc(sizeof(int) * arrLength);
memset(pArr, 0, sizeof(int) * arrLength);
// Seed the random-number generator with current time so that
// the numbers will be different every time we run.
srand( (unsigned)time(NULL) );
for (int i = 0; i < arrLength; ++i)
{
int randNumber = (int)( (double)rand() / (double)RAND_MAX ) * rangeMax + rangeMin;
*(pArr + i) = randNumber;
}
// TODO: How to use randomize() ?
}
// pArr is a pointer point to an array,
// the memory size of this array must be allocated by the caller.
void RandomArray(int rangeMin, int rangeMax, int* pArr, int arrLength)
{
// Seed the random-number generator with current time so that
// the numbers will be different every time we run.
srand( (unsigned)time(NULL) );
for (int i = 0; i < arrLength; ++i)
{
int randNumber = ( (double)rand() / (double)RAND_MAX ) * rangeMax + rangeMin;
*(pArr + i) = randNumber;
}
// TODO: How to use randomize() ?
}
int main(int argc, char const *argv[])
{
int* pArr = NULL;
int arrLength = 10;
pArr = (int*)malloc(sizeof(int) * arrLength);
memset(pArr, 0, sizeof(int) * arrLength);
RandomArray(2, 50, pArr, 10);
OutputArray2(pArr, arrLength);
return 0;
} | [
"denniszhong@gmail.com"
] | denniszhong@gmail.com |
45b58b4a9d28234917dfb263ff718394694377ea | 45184fc098d7e0fa4b22a5e0b086ebae8d7e5fb2 | /QT/build-AFD-Desktop_Qt_5_11_2_GCC_64bit-Debug/ui_dialogdot.h | 8ae99df8d7ea28687459dbc674c2013bb67cba82 | [] | no_license | Noodle96/EstructuraDeDatos | 8004061083b7cf49e4c1f35873b3c91ee62e3f64 | d87e6f0327d0de61f4d2be1be255ed58779f40b4 | refs/heads/master | 2020-03-27T08:10:28.188886 | 2019-06-28T23:25:24 | 2019-06-28T23:25:24 | 146,227,269 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,444 | h | /********************************************************************************
** Form generated from reading UI file 'dialogdot.ui'
**
** Created by: Qt User Interface Compiler version 5.11.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_DIALOGDOT_H
#define UI_DIALOGDOT_H
#include <QtCore/QVariant>
#include <QtWidgets/QApplication>
#include <QtWidgets/QDialog>
#include <QtWidgets/QLabel>
QT_BEGIN_NAMESPACE
class Ui_DialogDot
{
public:
QLabel *labelNodo;
void setupUi(QDialog *DialogDot)
{
if (DialogDot->objectName().isEmpty())
DialogDot->setObjectName(QStringLiteral("DialogDot"));
DialogDot->resize(400, 300);
labelNodo = new QLabel(DialogDot);
labelNodo->setObjectName(QStringLiteral("labelNodo"));
labelNodo->setGeometry(QRect(30, 10, 351, 271));
retranslateUi(DialogDot);
QMetaObject::connectSlotsByName(DialogDot);
} // setupUi
void retranslateUi(QDialog *DialogDot)
{
DialogDot->setWindowTitle(QApplication::translate("DialogDot", "Dialog", nullptr));
labelNodo->setText(QApplication::translate("DialogDot", "TextLabel", nullptr));
} // retranslateUi
};
namespace Ui {
class DialogDot: public Ui_DialogDot {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_DIALOGDOT_H
| [
"jorgealfredomarino2@gmail.com"
] | jorgealfredomarino2@gmail.com |
51f9bc2ca35f3896369ac5bbda21a3285f853b6e | 92e67b30497ffd29d3400e88aa553bbd12518fe9 | /assignment2/part6/Re=20/8.5/U | 9bc4f0ee8e035890db52df465177c4f9ce6c76c0 | [] | no_license | henryrossiter/OpenFOAM | 8b89de8feb4d4c7f9ad4894b2ef550508792ce5c | c54b80dbf0548b34760b4fdc0dc4fb2facfdf657 | refs/heads/master | 2022-11-18T10:05:15.963117 | 2020-06-28T15:24:54 | 2020-06-28T15:24:54 | 241,991,470 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 63,866 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "8.5";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
2000
(
(-0.000376004 0.0342479 -1.31646e-21)
(0.00203313 0.0838245 0)
(0.00755327 0.123261 0)
(0.0136964 0.155652 -9.10725e-21)
(0.0199165 0.182781 3.16174e-21)
(0.0258148 0.205692 1.27391e-22)
(0.0311525 0.22503 -5.92611e-21)
(0.0357984 0.241217 0)
(0.0396715 0.254531 0)
(0.0427235 0.265119 0)
(-0.00282351 0.0326847 0)
(-0.00368073 0.0801075 -5.89692e-21)
(-0.000367665 0.118158 5.9388e-21)
(0.00426497 0.149653 1.22013e-20)
(0.00949326 0.176281 0)
(0.0147947 0.199016 1.21682e-20)
(0.0198432 0.218452 -1.1753e-20)
(0.0244354 0.234979 0)
(0.0283973 0.248848 2.29225e-20)
(0.0316688 0.260189 -4.77933e-20)
(-0.00503569 0.030879 0)
(-0.0088017 0.0757339 4.60843e-20)
(-0.00742882 0.112064 0)
(-0.00411358 0.142383 4.81555e-20)
(0.000253302 0.168274 0)
(0.00503798 0.190636 -4.773e-20)
(0.00983929 0.210019 0)
(0.0143934 0.226781 4.65027e-20)
(0.0184419 0.241146 -4.4697e-20)
(0.0218804 0.253233 -4.69649e-20)
(-0.00698315 0.0288632 -1.03671e-20)
(-0.0132276 0.0707883 -2.32063e-20)
(-0.0134593 0.105111 -1.16924e-20)
(-0.0112086 0.13401 -2.38796e-20)
(-0.00752249 0.158955 -2.37439e-20)
(-0.00313274 0.180766 2.37168e-20)
(0.00149756 0.199942 2.31923e-20)
(0.00605847 0.216818 -4.51484e-22)
(0.0102192 0.231605 4.43383e-20)
(0.0137898 0.244418 4.69386e-20)
(-0.00863772 0.0266832 -1.00741e-20)
(-0.0168509 0.0653747 -2.30483e-20)
(-0.0182736 0.0974623 -4.74954e-20)
(-0.0167659 0.124752 2.35693e-20)
(-0.0135201 0.148586 0)
(-0.00935294 0.169692 0)
(-0.00477512 0.188518 -4.69249e-20)
(-0.00012471 0.205382 -4.59198e-20)
(0.00421444 0.220496 4.41933e-20)
(0.00792014 0.233996 1.39332e-19)
(-0.00996822 0.0243789 1.01628e-20)
(-0.0195541 0.0596025 1.18337e-20)
(-0.0216698 0.0893034 -6.93293e-20)
(-0.0205064 0.114868 1.1883e-19)
(-0.017392 0.137493 -2.35118e-20)
(-0.0132157 0.157793 0)
(-0.00852158 0.176154 0)
(-0.00365444 0.192881 2.27029e-19)
(0.000981709 0.20821 -2.20323e-19)
(0.00488645 0.222328 4.62372e-20)
(-0.0109361 0.0219817 7.80578e-20)
(-0.0212073 0.0535842 0)
(-0.0234291 0.0808426 9.3181e-20)
(-0.0221299 0.104662 -9.47946e-20)
(-0.0187618 0.126067 0)
(-0.0142751 0.145541 4.74007e-20)
(-0.00923593 0.163387 -1.38009e-19)
(-0.00397326 0.179875 -1.81223e-19)
(0.00114235 0.195287 8.72476e-20)
(0.00540395 0.209904 9.14673e-20)
(-0.011492 0.0195174 -1.54933e-19)
(-0.0216664 0.0474378 -2.25234e-20)
(-0.0233212 0.0723087 -4.5821e-20)
(-0.0213241 0.0944736 -1.17004e-19)
(-0.0172355 0.114764 -4.77218e-20)
(-0.0120573 0.133512 -4.71467e-20)
(-0.00637279 0.1509 3.29999e-22)
(-0.000480039 0.167123 0)
(0.00536644 0.182492 0)
(0.0102948 0.197422 -3.04246e-22)
(-0.011573 0.0170093 7.68759e-20)
(-0.0207759 0.0412897 -8.72687e-20)
(-0.0211136 0.0639478 6.86574e-20)
(-0.0177806 0.0846695 1.64278e-19)
(-0.0124209 0.10408 -4.638e-20)
(-0.00607633 0.12235 4.7481e-20)
(0.00064548 0.139528 4.64476e-20)
(0.00745457 0.155689 0)
(0.014271 0.171134 0)
(0.0202824 0.186288 3.4143e-23)
(-0.0111035 0.0144839 -9.35883e-21)
(-0.0183755 0.0352782 1.09404e-19)
(-0.0165889 0.0560197 -2.22709e-20)
(-0.0112231 0.0756223 0)
(-0.00395989 0.0944989 0)
(0.00415579 0.112678 9.30526e-20)
(0.0125173 0.130112 0)
(0.020818 0.146825 -8.99141e-20)
(0.0290099 0.16311 -1.2617e-21)
(0.0364496 0.178915 9.03875e-20)
(0.0480226 0.283307 2.19769e-21)
(0.0481507 0.304459 -2.22965e-21)
(0.043712 0.314773 -2.33974e-21)
(0.033544 0.322867 -2.40815e-21)
(0.0220091 0.331726 -2.49562e-21)
(0.0103157 0.3432 6.43633e-25)
(0.000582852 0.357416 1.25821e-21)
(-0.00558013 0.373247 3.86438e-21)
(-0.00686821 0.388017 0)
(-0.00313687 0.397565 -2.62714e-21)
(0.0385923 0.280502 8.27121e-21)
(0.0430321 0.303952 -9.13666e-21)
(0.0417107 0.316473 1.61355e-20)
(0.0341789 0.32576 2.40937e-21)
(0.0243967 0.335033 4.85213e-21)
(0.0137844 0.346272 7.44486e-21)
(0.00450241 0.35972 -2.54069e-21)
(-0.0018648 0.374366 -2.56946e-21)
(-0.00410325 0.387788 5.11225e-21)
(-0.00206675 0.396318 2.62089e-21)
(0.0300766 0.275919 0)
(0.0382169 0.301912 -8.85302e-21)
(0.0398533 0.316969 -4.62786e-21)
(0.0348632 0.327759 0)
(0.0267899 0.337708 -1.45512e-20)
(0.0172001 0.348939 4.79631e-21)
(0.00829503 0.361848 4.87685e-21)
(0.00166857 0.375563 1.49641e-20)
(-0.00151395 0.387902 -5.09229e-21)
(-0.00107226 0.395615 1.01511e-20)
(0.0228534 0.269699 0)
(0.0338932 0.298385 8.89311e-21)
(0.038235 0.316259 0)
(0.0356312 0.328851 1.87927e-20)
(0.0292035 0.339748 -1.88198e-20)
(0.0205799 0.351216 -9.69104e-21)
(0.0119881 0.363819 -1.19715e-22)
(0.00505469 0.376849 -1.4764e-20)
(0.00093156 0.388347 -2.46413e-21)
(-0.000141725 0.395418 -1.258e-20)
(0.017415 0.262044 1.49547e-21)
(0.0303461 0.293469 -2.54257e-20)
(0.0370094 0.314373 4.37584e-22)
(0.0365539 0.32904 -1.81858e-20)
(0.0316713 0.341157 0)
(0.0239497 0.353113 -9.52983e-21)
(0.015612 0.36565 -8.74316e-23)
(0.0083282 0.378231 1.93394e-20)
(0.0032636 0.38911 2.42994e-21)
(0.000735559 0.395696 -2.44265e-21)
(0.0143744 0.25322 -6.6782e-20)
(0.0279798 0.287336 4.31216e-20)
(0.0364021 0.311389 1.80327e-20)
(0.037747 0.328357 -1.79672e-20)
(0.0342503 0.341947 -9.14439e-21)
(0.0273454 0.354641 0)
(0.0192002 0.367351 -1.8757e-20)
(0.0115232 0.379712 9.32289e-21)
(0.00551067 0.390177 9.45912e-21)
(0.00156958 0.396418 9.47743e-21)
(0.0144669 0.24356 -8.31592e-21)
(0.0273368 0.280249 0)
(0.0367208 0.307454 0)
(0.0393751 0.326874 0)
(0.0370198 0.34215 -9.13607e-21)
(0.0308089 0.355818 1.81656e-20)
(0.0227837 0.368931 1.85035e-20)
(0.0146683 0.381291 -2.76673e-20)
(0.00769617 0.391533 4.63104e-21)
(0.0023684 0.397556 -1.39914e-20)
(0.0185445 0.233296 4.99104e-20)
(0.0291112 0.272447 3.51756e-20)
(0.0383632 0.30272 -3.47666e-20)
(0.0416522 0.324672 3.5791e-20)
(0.0400793 0.341796 -4.42965e-20)
(0.034383 0.356649 0)
(0.026384 0.370388 -8.93983e-21)
(0.0177801 0.382958 1.25794e-22)
(0.00983451 0.39316 -8.94403e-21)
(0.00313717 0.399085 -8.96291e-21)
(0.0274717 0.222235 -4.20859e-20)
(0.034171 0.263856 0)
(0.0418351 0.297147 -3.96057e-20)
(0.0448461 0.321693 7.00988e-20)
(0.0435475 0.340814 -2.60158e-20)
(0.0381057 0.357066 -4.37149e-21)
(0.030005 0.371666 8.86275e-21)
(0.0208554 0.384674 3.86788e-23)
(0.0119257 0.395026 1.31675e-20)
(0.00387701 0.400975 1.31867e-20)
(0.0418704 0.21179 -3.68398e-20)
(0.043565 0.255254 3.64774e-20)
(0.0477765 0.291131 4.64455e-21)
(0.0492986 0.318178 0)
(0.0475741 0.339373 0)
(0.042008 0.357186 4.61721e-21)
(0.0336217 0.372836 1.83287e-20)
(0.0238584 0.386465 -1.8058e-20)
(0.0139468 0.397127 -4.50083e-21)
(0.00458407 0.403203 4.46395e-21)
(0.0823308 0.208304 0)
(0.0728326 0.247874 0)
(0.0665155 0.284814 0)
(0.0623713 0.314842 0)
(0.058115 0.33923 0)
(0.0513169 0.359796 0)
(0.0418243 0.377373 0)
(0.0305167 0.392068 0)
(0.0183843 0.403155 0)
(0.00613539 0.409338 0)
(0.167037 0.263661 0)
(0.136546 0.278822 0)
(0.113168 0.300573 0)
(0.0961122 0.324593 0)
(0.0833702 0.348292 0)
(0.0711103 0.370403 0)
(0.0574353 0.389901 0)
(0.0421328 0.406015 0)
(0.0256657 0.417889 0)
(0.0086184 0.424368 0)
(0.244661 0.315686 0)
(0.203845 0.320799 0)
(0.168396 0.330407 0)
(0.138933 0.345956 0)
(0.115699 0.365713 0)
(0.0955151 0.387057 0)
(0.0756698 0.407285 0)
(0.0550127 0.424385 0)
(0.0334097 0.436957 0)
(0.0112041 0.443753 0)
(0.301322 0.359047 0)
(0.261766 0.364064 0)
(0.221983 0.368112 0)
(0.184351 0.377007 0)
(0.151697 0.391905 0)
(0.122979 0.410971 0)
(0.0959697 0.430962 0)
(0.0691419 0.448872 0)
(0.0418374 0.462443 0)
(0.0140195 0.469864 0)
(0.337699 0.392583 0)
(0.305425 0.404495 0)
(0.26731 0.409428 0)
(0.226638 0.415504 0)
(0.187703 0.426621 0)
(0.151616 0.442672 0)
(0.11739 0.460896 0)
(0.0838664 0.477957 0)
(0.050385 0.491161 0)
(0.016808 0.498457 0)
(0.355546 0.411315 0)
(0.333796 0.435817 0)
(0.301197 0.447394 0)
(0.261558 0.455363 0)
(0.21984 0.465922 0)
(0.178872 0.481119 0)
(0.139053 0.49938 0)
(0.0997056 0.517411 0)
(0.0601476 0.531891 0)
(0.0201321 0.540025 0)
(0.361776 0.420425 0)
(0.352492 0.461335 0)
(0.327694 0.484109 0)
(0.291827 0.497754 0)
(0.249647 0.509461 0)
(0.204744 0.522948 0)
(0.159052 0.538403 0)
(0.113373 0.553795 0)
(0.067864 0.566404 0)
(0.0225784 0.573638 0)
(0.348856 0.403378 0)
(0.356185 0.465999 0)
(0.342635 0.505286 0)
(0.313627 0.531129 0)
(0.275106 0.552278 0)
(0.231145 0.57348 0)
(0.183631 0.595279 0)
(0.133381 0.61567 0)
(0.0810225 0.631806 0)
(0.0272062 0.640846 0)
(0.335237 0.391272 0)
(0.360027 0.475749 0)
(0.359919 0.533168 0)
(0.337652 0.568676 0)
(0.299036 0.591425 0)
(0.25079 0.609584 0)
(0.197752 0.627128 0)
(0.142405 0.643871 0)
(0.0857837 0.657534 0)
(0.028623 0.665401 0)
(0.278113 0.297694 0)
(0.329903 0.417067 0)
(0.356859 0.514915 0)
(0.357674 0.589969 0)
(0.335026 0.646345 0)
(0.293907 0.689914 0)
(0.239659 0.725086 0)
(0.17666 0.753424 0)
(0.108112 0.774183 0)
(0.0364022 0.785468 0)
(0.132275 0.197774 3.37873e-20)
(0.219829 0.258531 -3.33095e-20)
(0.28775 0.310229 3.41571e-21)
(0.331892 0.349577 0)
(0.355516 0.375273 0)
(0.361333 0.382873 1.72001e-21)
(0.354561 0.379243 -3.93478e-21)
(0.330038 0.346252 3.89091e-21)
(0.300817 0.322613 6.19755e-24)
(0.236074 0.214061 -6.17846e-24)
(0.163471 0.196755 -3.94507e-20)
(0.247004 0.26142 0)
(0.306911 0.31178 2.00275e-20)
(0.343297 0.347587 -4.18883e-20)
(0.359998 0.368088 2.28587e-20)
(0.360127 0.36964 -1.62919e-21)
(0.347623 0.359535 2.13209e-21)
(0.319122 0.320044 2.00922e-21)
(0.283254 0.291617 -3.25806e-22)
(0.217754 0.178014 -8.90792e-22)
(0.194132 0.200213 4.60039e-20)
(0.272192 0.267432 -2.59996e-20)
(0.323645 0.314758 2.57004e-20)
(0.352406 0.345483 -1.80591e-20)
(0.362395 0.359606 1.37729e-20)
(0.356921 0.354379 0)
(0.338779 0.337229 -2.15068e-21)
(0.306475 0.291622 -1.46607e-22)
(0.264248 0.258667 -6.45898e-22)
(0.198493 0.141536 9.56566e-22)
(0.224243 0.207513 -7.58392e-21)
(0.295372 0.274603 0)
(0.3381 0.317229 0)
(0.359207 0.341681 0)
(0.362594 0.348715 1.02345e-20)
(0.351567 0.336421 -6.52642e-21)
(0.328062 0.312164 4.27848e-22)
(0.292146 0.261094 -3.98927e-22)
(0.24439 0.224089 1.61059e-22)
(0.1783 0.10509 1.11522e-21)
(0.25362 0.217454 -1.55263e-21)
(0.316136 0.281441 -2.11125e-20)
(0.349879 0.317917 -1.0042e-20)
(0.363334 0.335241 1.00052e-20)
(0.360266 0.334812 -3.67333e-21)
(0.343825 0.315452 0)
(0.315352 0.284343 -1.8436e-21)
(0.276189 0.22862 1.4656e-21)
(0.223948 0.188093 -6.24233e-22)
(0.157888 0.0692874 -1.29644e-21)
(0.28124 0.228596 -5.36256e-20)
(0.333864 0.286761 8.76386e-21)
(0.35864 0.315959 1.78314e-21)
(0.364641 0.325624 9.55225e-21)
(0.355379 0.317627 0)
(0.333769 0.291419 0)
(0.300804 0.253939 0)
(0.258836 0.194438 6.37612e-22)
(0.203267 0.150694 0)
(0.137542 0.035036 0)
(0.306094 0.239471 0)
(0.348132 0.289641 1.66313e-20)
(0.364231 0.310797 -1.08846e-20)
(0.363144 0.312571 -7.2744e-21)
(0.348039 0.297125 7.28452e-21)
(0.321597 0.264467 1.88987e-21)
(0.284676 0.22127 -2.28833e-21)
(0.240356 0.158876 -2.49574e-21)
(0.18249 0.111856 3.78977e-22)
(0.113043 0.00334571 1.2139e-21)
(0.327399 0.248741 0)
(0.358749 0.289435 -5.73429e-21)
(0.36666 0.302127 -2.35646e-21)
(0.358966 0.29604 0)
(0.33844 0.273456 1.10413e-21)
(0.30758 0.234893 -3.615e-21)
(0.267277 0.186777 1.93223e-21)
(0.221069 0.122422 8.6338e-23)
(0.16191 0.0724452 -1.4435e-22)
(0.0954193 -0.0257271 -1.36585e-21)
(0.344634 0.255329 6.33303e-21)
(0.365719 0.285763 5.01318e-21)
(0.36607 0.289877 -1.55025e-21)
(0.35233 0.276171 9.10717e-22)
(0.326855 0.246916 1.4672e-21)
(0.292055 0.203116 1.52568e-21)
(0.248971 0.150988 -3.12104e-22)
(0.201377 0.0856918 -1.18216e-22)
(0.141732 0.0338885 1.44916e-22)
(0.0794096 -0.0528933 -2.23417e-22)
(0.35756 0.258494 -1.39307e-21)
(0.369211 0.278491 1.42119e-21)
(0.362726 0.274169 -1.13044e-21)
(0.343539 0.253252 -9.10239e-22)
(0.313629 0.21792 5.75107e-22)
(0.275414 0.169641 -1.06622e-21)
(0.230166 0.114474 4.16099e-22)
(0.181771 0.0492982 1.4268e-23)
(0.122775 -0.00299723 0)
(0.065041 -0.0784578 2.23845e-22)
(0.366206 0.257852 1.35695e-21)
(0.369522 0.267696 -1.38349e-21)
(0.356983 0.255294 -1.05652e-21)
(0.332968 0.227696 -8.40839e-22)
(0.29916 0.18697 -5.47385e-22)
(0.25808 0.135023 1.10608e-22)
(0.211278 0.0777948 1.78169e-22)
(0.162704 0.0136638 2.05331e-22)
(0.105564 -0.0378182 0)
(0.0524383 -0.102578 1.34199e-22)
(0.370812 0.25334 0)
(0.367049 0.253625 -4.57252e-21)
(0.349264 0.233672 7.70623e-21)
(0.321036 0.200007 8.40959e-22)
(0.283876 0.154622 1.22013e-21)
(0.240483 0.0998372 1.27973e-21)
(0.192696 0.0414871 -2.75568e-22)
(0.144512 -0.0208037 -1.06985e-22)
(0.0900667 -0.0703536 8.93692e-23)
(0.0417722 -0.125288 -1.33843e-22)
(0.37177 0.245152 0)
(0.362253 0.236648 -4.88707e-21)
(0.340025 0.209818 -2.06032e-21)
(0.308188 0.170747 0)
(0.268212 0.121458 -3.23706e-21)
(0.223042 0.0646447 1.18456e-21)
(0.174799 0.00603912 6.47792e-22)
(0.127481 -0.0537538 7.83429e-22)
(0.0762761 -0.10052 -8.90188e-23)
(0.0329357 -0.146611 -2.92653e-22)
(0.369563 0.233671 0)
(0.355622 0.217223 4.9067e-21)
(0.329734 0.184301 0)
(0.294864 0.140501 5.45397e-21)
(0.252583 0.0880459 -5.46334e-21)
(0.206132 0.0299565 -1.28864e-21)
(0.157904 -0.0281404 2.8636e-22)
(0.111847 -0.0849233 -6.98704e-22)
(0.0641768 -0.128328 -1.57884e-22)
(0.0257172 -0.166595 2.99299e-22)
(0.364725 0.219416 4.56117e-20)
(0.347671 0.19586 -1.75135e-20)
(0.318859 0.157707 -1.78941e-21)
(0.281485 0.109848 -7.03839e-21)
(0.237365 0.054913 0)
(0.190068 -0.00378272 -1.25689e-21)
(0.142241 -0.0607352 5.6038e-22)
(0.0977648 -0.114145 1.12208e-21)
(0.0537272 -0.153854 1.94247e-24)
(0.0198978 -0.185316 -1.93055e-24)
(0.357833 0.202986 3.28659e-21)
(0.338971 0.173087 2.66689e-20)
(0.307892 0.130607 7.00272e-21)
(0.268457 0.0793275 -6.98044e-21)
(0.222892 0.0225253 -2.22611e-21)
(0.175109 -0.0362107 0)
(0.127974 -0.0915233 -1.64509e-21)
(0.0852966 -0.141341 8.33163e-22)
(0.0448427 -0.177229 3.16229e-22)
(0.0152691 -0.20287 -7.43414e-23)
(0.349494 0.185008 -6.16528e-21)
(0.330093 0.149428 0)
(0.297284 0.103541 0)
(0.256149 0.0494299 0)
(0.209464 -0.00872624 -1.50578e-21)
(0.161468 -0.0670525 3.70937e-21)
(0.115213 -0.12037 1.64487e-21)
(0.0744412 -0.166512 -1.62352e-21)
(0.0374042 -0.198624 3.84085e-23)
(0.0116375 -0.219374 3.53429e-23)
(0.340136 0.166136 -1.39623e-20)
(0.321063 0.125403 1.83646e-20)
(0.287163 0.0769894 -1.81626e-20)
(0.244744 0.0205688 1.05544e-20)
(0.197258 -0.0385336 -1.26765e-20)
(0.149273 -0.0961172 0)
(0.104007 -0.147219 -9.5478e-22)
(0.0651488 -0.18972 -2.82711e-23)
(0.0312662 -0.218234 -2.31255e-22)
(0.00882404 -0.234958 -5.95016e-24)
(0.329569 0.147204 -6.53006e-21)
(0.311255 0.10151 0)
(0.27713 0.0512658 -1.66003e-20)
(0.233997 -0.00698007 2.50321e-20)
(0.186113 -0.0667027 -8.36095e-21)
(0.138405 -0.123307 -7.69824e-22)
(0.0942419 -0.17208 9.46468e-22)
(0.0572705 -0.211067 1.16802e-22)
(0.0262472 -0.236261 5.33858e-22)
(0.00666242 -0.249764 7.0326e-23)
(0.319574 0.129305 -2.86068e-20)
(0.301922 0.0782058 2.81666e-20)
(0.267683 0.0265476 2.39033e-21)
(0.223872 -0.0330934 0)
(0.175696 -0.0931726 0)
(0.128436 -0.148641 8.59117e-22)
(0.0855491 -0.195051 1.71599e-21)
(0.0504942 -0.230711 -1.68503e-21)
(0.0221414 -0.252918 -8.51285e-23)
(0.00503377 -0.263951 8.32454e-23)
(0.309764 0.0914125 0)
(0.289604 0.0274268 0)
(0.251882 -0.0280199 0)
(0.203529 -0.0910635 0)
(0.152906 -0.152333 0)
(0.105985 -0.205461 0)
(0.0662463 -0.246517 0)
(0.0359855 -0.274638 0)
(0.0140654 -0.290229 0)
(0.00237587 -0.296544 0)
(0.267172 -0.0368396 0)
(0.223581 -0.113266 0)
(0.176009 -0.167232 0)
(0.13008 -0.221754 0)
(0.0903199 -0.268073 0)
(0.0587719 -0.303488 0)
(0.0350396 -0.327738 0)
(0.0181107 -0.34228 0)
(0.00674233 -0.349273 0)
(0.000825606 -0.351599 0)
(0.219048 -0.176982 0)
(0.169977 -0.252346 0)
(0.126633 -0.29571 0)
(0.089484 -0.335803 0)
(0.0598022 -0.365436 0)
(0.0378372 -0.385913 0)
(0.0221433 -0.398582 0)
(0.0112354 -0.405539 0)
(0.00408926 -0.408617 0)
(0.000387231 -0.409556 0)
(0.172085 -0.310777 0)
(0.124396 -0.376446 0)
(0.0900095 -0.40468 0)
(0.062711 -0.430831 0)
(0.0421353 -0.447322 0)
(0.0270453 -0.45834 0)
(0.0160211 -0.464834 0)
(0.00813527 -0.468442 0)
(0.00292086 -0.470055 0)
(0.000233165 -0.47057 0)
(0.133502 -0.429216 0)
(0.092665 -0.480586 0)
(0.0679579 -0.496011 0)
(0.0474341 -0.513108 0)
(0.0323724 -0.522232 0)
(0.0209207 -0.528943 0)
(0.0123766 -0.532812 0)
(0.00621815 -0.535092 0)
(0.00219899 -0.536092 0)
(0.000157695 -0.536433 0)
(0.104124 -0.531432 0)
(0.0718616 -0.570088 0)
(0.0543166 -0.578994 0)
(0.037753 -0.592041 0)
(0.0260148 -0.598163 0)
(0.0166537 -0.603402 0)
(0.00977932 -0.606215 0)
(0.00485508 -0.607949 0)
(0.00170222 -0.608654 0)
(0.00011248 -0.60892 0)
(0.0807146 -0.622293 0)
(0.0562761 -0.65263 0)
(0.0432524 -0.660666 0)
(0.0296405 -0.672453 0)
(0.0205864 -0.677832 0)
(0.0130117 -0.682681 0)
(0.00764661 -0.685092 0)
(0.00376082 -0.686653 0)
(0.00131509 -0.687244 0)
(7.99094e-05 -0.68749 0)
(0.0590106 -0.703648 0)
(0.0414341 -0.729443 0)
(0.031955 -0.739507 0)
(0.0216531 -0.750967 0)
(0.0152091 -0.756693 0)
(0.00949926 -0.761605 0)
(0.00561506 -0.764034 0)
(0.00273014 -0.765637 0)
(0.000959369 -0.766215 0)
(5.37953e-05 -0.766469 0)
(0.0363756 -0.769138 0)
(0.0255629 -0.792401 0)
(0.0197489 -0.805125 0)
(0.0133256 -0.81655 0)
(0.00945281 -0.82313 0)
(0.00583382 -0.828295 0)
(0.00347101 -0.83096 0)
(0.0016673 -0.832681 0)
(0.000591184 -0.833296 0)
(2.95128e-05 -0.833571 0)
(0.0123452 -0.806663 0)
(0.00864559 -0.828641 0)
(0.0067034 -0.84317 0)
(0.00451444 -0.854656 0)
(0.00321917 -0.861933 0)
(0.00197043 -0.86729 0)
(0.00117833 -0.870162 0)
(0.000560955 -0.871973 0)
(0.000199879 -0.872634 0)
(8.71598e-06 -0.872932 0)
(0.31311 0.0822345 3.48966e-20)
(0.275662 -0.041902 -3.49453e-20)
(0.228876 -0.178689 4.13482e-21)
(0.183051 -0.3117 0)
(0.144554 -0.42976 0)
(0.114395 -0.530897 3.99929e-21)
(0.0893143 -0.619014 -1.6355e-20)
(0.0654339 -0.69571 1.6247e-20)
(0.0403359 -0.755947 4.28352e-21)
(0.013631 -0.789885 -4.2602e-21)
(0.310912 0.0687479 -4.24533e-20)
(0.278763 -0.0536553 0)
(0.233831 -0.186397 2.5685e-20)
(0.188643 -0.316083 -5.7196e-20)
(0.149917 -0.431771 3.50016e-20)
(0.119141 -0.531124 -3.41638e-21)
(0.0931669 -0.617425 7.2813e-21)
(0.0682717 -0.69193 1.49322e-20)
(0.0420848 -0.749932 4.05892e-21)
(0.0141953 -0.782346 4.00949e-21)
(0.306721 0.0548671 5.18628e-20)
(0.281209 -0.0653239 -3.13247e-20)
(0.239433 -0.194409 3.0944e-20)
(0.195402 -0.320775 -2.90788e-20)
(0.156368 -0.43388 2.17033e-20)
(0.124692 -0.53119 0)
(0.0975463 -0.615463 -7.34645e-21)
(0.071426 -0.68768 3.02173e-22)
(0.0440004 -0.743455 -7.77226e-21)
(0.0148084 -0.774407 -7.9211e-21)
(0.302076 0.0420995 -8.5379e-21)
(0.283441 -0.0740033 0)
(0.245593 -0.199063 0)
(0.203141 -0.322638 0)
(0.163806 -0.433891 2.26676e-20)
(0.131029 -0.529754 -1.50031e-20)
(0.10248 -0.612385 3.06335e-25)
(0.0749362 -0.682578 -8.26247e-21)
(0.0461131 -0.736326 -4.21181e-21)
(0.0154869 -0.765957 -4.46437e-21)
(0.297611 0.0295278 -2.1673e-21)
(0.285795 -0.0810001 -2.58967e-20)
(0.252346 -0.201245 -1.56387e-20)
(0.211766 -0.321887 1.558e-20)
(0.172149 -0.431607 -7.59252e-21)
(0.138113 -0.526481 0)
(0.107959 -0.607883 -8.04383e-21)
(0.0788075 -0.676399 1.69752e-20)
(0.0484305 -0.728398 -8.62757e-21)
(0.0162384 -0.756893 8.79989e-21)
(0.293469 0.0170435 -7.28504e-20)
(0.288327 -0.0868742 1.01228e-20)
(0.259621 -0.201747 5.58412e-22)
(0.221202 -0.319129 1.61132e-20)
(0.181374 -0.427343 0)
(0.145947 -0.521472 0)
(0.113999 -0.601955 0)
(0.0830536 -0.669108 9.06144e-21)
(0.0509604 -0.719631 0)
(0.0170686 -0.747177 0)
(0.289628 0.00482812 0)
(0.290947 -0.091696 2.61118e-20)
(0.267218 -0.200756 -1.71967e-20)
(0.231294 -0.314555 -1.6612e-20)
(0.191422 -0.421221 1.66369e-20)
(0.154536 -0.51478 8.75888e-21)
(0.120623 -0.594618 -8.77647e-21)
(0.0876969 -0.660706 -3.24114e-20)
(0.0537161 -0.710016 2.306e-21)
(0.0179839 -0.736789 -7.57154e-21)
(0.286006 -0.00687598 0)
(0.293472 -0.095603 -8.89668e-21)
(0.274864 -0.198418 -4.41563e-21)
(0.241813 -0.308258 0)
(0.202174 -0.413265 4.37855e-21)
(0.163852 -0.506389 -1.3386e-20)
(0.127845 -0.58585 1.38699e-20)
(0.0927574 -0.651174 4.75092e-21)
(0.056712 -0.699536 -5.08518e-21)
(0.01899 -0.725708 1.00776e-20)
(0.282499 -0.0182353 1.01507e-20)
(0.295622 -0.0988177 9.12564e-21)
(0.282239 -0.194991 -2.47134e-21)
(0.252466 -0.300431 2.26434e-21)
(0.213452 -0.403559 4.42406e-21)
(0.173822 -0.496304 6.93188e-21)
(0.135652 -0.575631 -2.45968e-21)
(0.0982454 -0.640491 -2.557e-21)
(0.0599589 -0.68817 5.10528e-21)
(0.0200905 -0.713907 2.70704e-21)
(0.278953 -0.0294721 -2.44809e-21)
(0.297191 -0.101584 2.46148e-21)
(0.289002 -0.190784 -2.28123e-21)
(0.262908 -0.291359 -2.26398e-21)
(0.225011 -0.392276 2.3691e-21)
(0.184328 -0.484592 -4.74899e-21)
(0.144006 -0.563971 3.73761e-21)
(0.104158 -0.628647 1.28063e-21)
(0.0634622 -0.675902 0)
(0.0212862 -0.701363 -2.71325e-21)
(0.275247 -0.0404278 2.51822e-21)
(0.297975 -0.104092 -2.53257e-21)
(0.294811 -0.186102 -2.44067e-21)
(0.272755 -0.281372 -2.42987e-21)
(0.236543 -0.379658 -2.45411e-21)
(0.195193 -0.471381 -7.39608e-23)
(0.152832 -0.550919 1.31701e-21)
(0.110472 -0.615656 4.05928e-21)
(0.0672186 -0.662726 0)
(0.0225747 -0.688057 -2.88831e-21)
(0.271328 -0.0509672 0)
(0.297797 -0.106481 -1.00469e-20)
(0.299358 -0.181226 1.75744e-20)
(0.28161 -0.270818 2.43102e-21)
(0.247688 -0.366 5.09596e-21)
(0.206181 -0.456852 7.78236e-21)
(0.162012 -0.536564 -2.63246e-21)
(0.117141 -0.601549 -2.7311e-21)
(0.0712134 -0.648649 5.80148e-21)
(0.0239494 -0.673977 2.88137e-21)
(0.267215 -0.0609864 0)
(0.296551 -0.108843 -1.06457e-20)
(0.302402 -0.176393 -5.05153e-21)
(0.2891 -0.260041 0)
(0.258052 -0.351636 -1.55764e-20)
(0.216998 -0.441244 5.27668e-21)
(0.171376 -0.521036 5.58148e-21)
(0.124085 -0.586387 1.71755e-20)
(0.0754152 -0.633691 -5.77888e-21)
(0.025398 -0.65912 1.21489e-20)
(0.262997 -0.0703662 0)
(0.294219 -0.111206 1.06925e-20)
(0.303795 -0.171782 0)
(0.294905 -0.249355 2.11994e-20)
(0.267236 -0.336917 -2.12334e-20)
(0.227301 -0.42484 -1.11133e-20)
(0.180702 -0.504511 -6.04689e-24)
(0.131187 -0.57026 -1.74334e-20)
(0.0797721 -0.61789 -2.90423e-21)
(0.0269016 -0.643496 -1.51015e-20)
(0.258827 -0.0789637 9.16214e-20)
(0.290873 -0.113535 -3.42881e-20)
(0.303494 -0.167502 -2.53582e-22)
(0.298799 -0.239025 -2.17481e-20)
(0.274876 -0.32219 0)
(0.236725 -0.407957 -1.13958e-20)
(0.189724 -0.487211 -3.44572e-22)
(0.138291 -0.553295 2.35013e-20)
(0.0842084 -0.60131 3.07304e-21)
(0.0284334 -0.627131 -3.08877e-21)
(0.2549 -0.0866358 1.36694e-21)
(0.286671 -0.115752 5.75135e-20)
(0.301562 -0.163601 2.23987e-20)
(0.300658 -0.229247 -2.23228e-20)
(0.280668 -0.307774 -1.13882e-20)
(0.244904 -0.390928 0)
(0.198139 -0.469393 -2.39089e-20)
(0.145199 -0.535652 1.19457e-20)
(0.0886219 -0.584038 1.22531e-20)
(0.0299579 -0.610074 1.27425e-20)
(0.251434 -0.0932597 -1.20155e-20)
(0.28184 -0.11774 0)
(0.298159 -0.16006 0)
(0.300466 -0.22015 0)
(0.284383 -0.293942 -1.1913e-20)
(0.251488 -0.374088 2.3159e-20)
(0.205612 -0.451345 2.40314e-20)
(0.151676 -0.517529 -3.67067e-20)
(0.0928815 -0.566192 6.31137e-21)
(0.0314299 -0.592396 -1.88957e-20)
(0.248645 -0.098709 -2.5031e-20)
(0.276669 -0.119289 4.78772e-20)
(0.293521 -0.156702 -4.73299e-20)
(0.298304 -0.211664 4.70931e-20)
(0.285862 -0.280796 -5.8475e-20)
(0.256134 -0.357667 0)
(0.21177 -0.433327 -1.22764e-20)
(0.157429 -0.499137 -2.48729e-22)
(0.0968148 -0.547917 -1.27696e-20)
(0.0327917 -0.574199 -1.29192e-20)
(0.246761 -0.102856 -1.25048e-20)
(0.27151 -0.120108 0)
(0.287966 -0.153163 -5.43702e-20)
(0.294327 -0.203416 9.56055e-20)
(0.284975 -0.268076 -3.55417e-20)
(0.258445 -0.341576 -6.08912e-21)
(0.21611 -0.415389 1.21705e-20)
(0.162027 -0.480597 -2.65398e-22)
(0.100153 -0.529357 1.8757e-20)
(0.0339555 -0.555629 1.90816e-20)
(0.24601 -0.106039 -5.54531e-20)
(0.266778 -0.120712 5.46922e-20)
(0.281905 -0.150045 6.61482e-21)
(0.288764 -0.195997 0)
(0.281565 -0.256332 0)
(0.257826 -0.326293 6.45791e-21)
(0.217772 -0.397913 2.66303e-20)
(0.164641 -0.462196 -2.61057e-20)
(0.102333 -0.51074 -6.70389e-21)
(0.0347379 -0.536897 6.63696e-21)
(0.246893 -0.112362 0)
(0.258456 -0.124859 0)
(0.268621 -0.149646 0)
(0.273531 -0.188819 0)
(0.267685 -0.240652 0)
(0.247577 -0.301686 0)
(0.211859 -0.36543 0)
(0.162114 -0.423752 0)
(0.101637 -0.468363 0)
(0.0346243 -0.492474 0)
(0.237105 -0.117008 0)
(0.237528 -0.134508 0)
(0.24059 -0.15869 0)
(0.240448 -0.191522 0)
(0.233138 -0.23224 0)
(0.215466 -0.278781 0)
(0.18543 -0.327172 0)
(0.143064 -0.371861 0)
(0.0903577 -0.406504 0)
(0.0308991 -0.425432 0)
(0.219708 -0.114643 0)
(0.214086 -0.134605 0)
(0.211639 -0.158238 0)
(0.206521 -0.187119 0)
(0.196326 -0.220775 0)
(0.178881 -0.257647 0)
(0.152634 -0.294998 0)
(0.117268 -0.329056 0)
(0.0739542 -0.355385 0)
(0.025282 -0.369811 0)
(0.200057 -0.109486 0)
(0.19171 -0.129394 0)
(0.185126 -0.151676 0)
(0.175942 -0.177313 0)
(0.16287 -0.205956 0)
(0.144751 -0.236402 0)
(0.120846 -0.266634 0)
(0.0911876 -0.293928 0)
(0.0567444 -0.315063 0)
(0.0192607 -0.326783 0)
(0.182307 -0.103064 0)
(0.17274 -0.121477 0)
(0.162716 -0.14182 0)
(0.150182 -0.164564 0)
(0.134573 -0.189429 0)
(0.115495 -0.21554 0)
(0.0929648 -0.241439 0)
(0.067601 -0.26511 0)
(0.0406377 -0.284005 0)
(0.0134845 -0.295084 0)
(0.172791 -0.0945859 0)
(0.162059 -0.110699 0)
(0.147846 -0.128877 0)
(0.131351 -0.149107 0)
(0.112492 -0.171215 0)
(0.0914358 -0.19465 0)
(0.0688444 -0.218468 0)
(0.0460127 -0.241259 0)
(0.0248579 -0.260899 0)
(0.00751528 -0.274087 0)
(0.188113 -0.0814719 0)
(0.174382 -0.095079 0)
(0.153017 -0.11115 0)
(0.129652 -0.129224 0)
(0.104195 -0.149513 0)
(0.0773416 -0.171838 0)
(0.0504564 -0.195869 0)
(0.0259044 -0.220944 0)
(0.00719866 -0.245529 0)
(1.43708e-05 -0.265724 0)
(0.262415 -0.0599983 0)
(0.244358 -0.0710381 0)
(0.212299 -0.0844862 0)
(0.178081 -0.0999681 0)
(0.140127 -0.118463 0)
(0.0994667 -0.140355 0)
(0.0576449 -0.166301 0)
(0.0180838 -0.196893 0)
(-0.011622 -0.231598 0)
(-0.0106441 -0.264684 0)
(0.449545 -0.028465 0)
(0.429154 -0.0359314 0)
(0.389276 -0.0441416 0)
(0.346942 -0.0540958 0)
(0.296569 -0.0669189 0)
(0.238912 -0.0833265 0)
(0.172994 -0.105165 0)
(0.09804 -0.138705 0)
(0.0161945 -0.203305 0)
(-0.0230588 -0.31748 0)
(0.788916 -0.00623406 0)
(0.776919 -0.0092838 0)
(0.751685 -0.0124316 0)
(0.724012 -0.0170384 0)
(0.687515 -0.023711 0)
(0.64167 -0.0336438 0)
(0.579764 -0.0493334 0)
(0.489891 -0.0770074 0)
(0.365117 -0.129386 0)
(0.261348 -0.211809 0)
(0.245656 -0.108456 5.88975e-20)
(0.236315 -0.106917 -5.81099e-20)
(0.219514 -0.101505 7.29152e-21)
(0.200856 -0.0956566 0)
(0.185261 -0.0893381 0)
(0.180702 -0.0813217 7.17472e-21)
(0.204628 -0.0692632 -2.87707e-20)
(0.289192 -0.0506283 2.86094e-20)
(0.480107 -0.0235897 7.36545e-21)
(0.803865 -0.0046865 -7.43712e-21)
(0.2459 -0.105846 -6.28038e-20)
(0.23517 -0.101726 0)
(0.218224 -0.0955041 4.50731e-20)
(0.200196 -0.0896457 -1.02173e-19)
(0.185929 -0.0835717 6.3529e-20)
(0.184036 -0.0759193 -6.39192e-21)
(0.212048 -0.0643983 1.26804e-20)
(0.300998 -0.046952 2.54465e-20)
(0.492923 -0.0217401 6.41322e-21)
(0.810239 -0.0041096 6.36262e-21)
(0.246575 -0.101967 7.37608e-20)
(0.23422 -0.0956512 -5.06223e-20)
(0.216922 -0.0891586 5.00558e-20)
(0.19946 -0.0835381 -5.11994e-20)
(0.186623 -0.0778768 3.7929e-20)
(0.187459 -0.0707331 0)
(0.219503 -0.0598349 -1.27924e-20)
(0.31266 -0.0435347 -9.04765e-23)
(0.505322 -0.0200566 -1.28472e-20)
(0.816493 -0.00360256 -1.28692e-20)
(0.247491 -0.0966303 -1.21179e-20)
(0.233868 -0.088757 0)
(0.216197 -0.0824599 0)
(0.199108 -0.0773207 0)
(0.187638 -0.0722484 3.82261e-20)
(0.190976 -0.0657452 -2.53996e-20)
(0.226672 -0.0555602 -9.39521e-23)
(0.323559 -0.0403812 -1.28776e-20)
(0.516785 -0.0185426 -6.48184e-21)
(0.822237 -0.00316986 -6.43323e-21)
(0.248492 -0.0896989 9.48106e-22)
(0.233828 -0.081104 -3.60668e-20)
(0.215746 -0.0754016 -2.5058e-20)
(0.19898 -0.0709841 2.4975e-20)
(0.188789 -0.0666858 -1.27037e-20)
(0.19444 -0.060936 0)
(0.233427 -0.0515434 -1.28149e-20)
(0.333572 -0.0374695 2.57794e-20)
(0.527196 -0.0171815 -1.28717e-20)
(0.827372 -0.00280569 1.29863e-20)
(0.249446 -0.0810758 -9.36685e-20)
(0.2339 -0.0726947 1.11544e-20)
(0.215326 -0.0679742 -4.25331e-22)
(0.198924 -0.0645367 2.48398e-20)
(0.189908 -0.0611838 0)
(0.197701 -0.0563003 0)
(0.239657 -0.0477685 0)
(0.342654 -0.0347809 1.28075e-20)
(0.536556 -0.0159518 0)
(0.831936 -0.00249937 0)
(0.250187 -0.0707147 0)
(0.233957 -0.0635222 3.61896e-20)
(0.214882 -0.0601512 -2.42592e-20)
(0.198823 -0.0579706 -2.49819e-20)
(0.190884 -0.0557324 2.50227e-20)
(0.200631 -0.0518304 1.26816e-20)
(0.245237 -0.0442227 -1.26206e-20)
(0.350725 -0.0323006 -4.49152e-20)
(0.54484 -0.0148377 3.19672e-21)
(0.835961 -0.00224215 -9.6869e-21)
(0.250552 -0.0586017 0)
(0.233866 -0.0535843 -1.1917e-20)
(0.214336 -0.0518997 -6.07521e-21)
(0.198583 -0.0512619 0)
(0.191618 -0.0503134 6.29851e-21)
(0.203114 -0.047511 -1.88557e-20)
(0.250048 -0.0408898 1.90958e-20)
(0.357695 -0.0300125 6.46948e-21)
(0.552011 -0.0138266 -6.43013e-21)
(0.839457 -0.00202794 1.29923e-20)
(0.250368 -0.0448259 1.10957e-20)
(0.233496 -0.0428727 1.19336e-20)
(0.213578 -0.0431848 -2.89739e-21)
(0.198107 -0.0443805 3.06905e-21)
(0.192006 -0.0449017 6.2382e-21)
(0.205039 -0.0433213 9.41701e-21)
(0.253986 -0.0377489 -3.14737e-21)
(0.363485 -0.0278993 -3.17672e-21)
(0.558039 -0.0129075 6.45553e-21)
(0.842429 -0.00185067 3.20967e-21)
(0.249459 -0.0294987 -2.85424e-21)
(0.232714 -0.0313847 2.8928e-21)
(0.212496 -0.0339757 -3.0186e-21)
(0.197298 -0.0372936 -3.06839e-21)
(0.191952 -0.039468 3.09952e-21)
(0.206308 -0.0392375 -6.24227e-21)
(0.256966 -0.0347771 4.7253e-21)
(0.368045 -0.0259419 1.60059e-21)
(0.562914 -0.0120708 0)
(0.844884 -0.0017059 -3.21673e-21)
(0.247695 -0.012763 2.84297e-21)
(0.231402 -0.0191264 -2.88143e-21)
(0.210993 -0.0242507 -2.99589e-21)
(0.196065 -0.0299681 -3.041e-21)
(0.191368 -0.0339814 -3.08239e-21)
(0.20684 -0.035234 5.30661e-24)
(0.258923 -0.031952 1.54653e-21)
(0.371347 -0.0241217 4.7078e-21)
(0.566638 -0.011303 0)
(0.846823 -0.00158603 -3.16725e-21)
(0.244989 0.00520229 0)
(0.229455 -0.00611548 -1.17869e-20)
(0.208988 -0.014002 2.08104e-20)
(0.194333 -0.0223746 3.04231e-21)
(0.19018 -0.0284123 6.11185e-21)
(0.206568 -0.0312856 9.23355e-21)
(0.259812 -0.0292525 -3.10663e-21)
(0.373377 -0.0224203 -3.13245e-21)
(0.569214 -0.0105882 6.27232e-21)
(0.848256 -0.00148173 3.15987e-21)
(0.241318 0.0241797 0)
(0.226795 0.00761459 -1.1598e-20)
(0.206424 -0.00324149 -5.98735e-21)
(0.19204 -0.0144918 0)
(0.188332 -0.0227352 -1.83062e-20)
(0.205448 -0.0273683 6.09798e-21)
(0.259608 -0.0266584 6.09463e-21)
(0.374136 -0.0208183 1.84967e-20)
(0.570654 -0.00990975 -6.24787e-21)
(0.849196 -0.00138416 1.24068e-20)
(0.236715 0.0439118 0)
(0.223365 0.0220101 1.16499e-20)
(0.203267 0.00799381 0)
(0.189145 -0.00631239 2.41872e-20)
(0.185789 -0.0169326 -2.42229e-20)
(0.203453 -0.0234606 -1.21499e-20)
(0.258306 -0.0241502 -3.38091e-23)
(0.373643 -0.0192954 -1.83323e-20)
(0.570983 -0.00924921 -3.04853e-21)
(0.849657 -0.00128432 -1.53794e-20)
(0.231273 0.0640967 8.85024e-20)
(0.219139 0.0369889 -3.40203e-20)
(0.199507 0.0196355 4.3674e-22)
(0.185631 0.00215034 -2.39925e-20)
(0.182536 -0.0109977 0)
(0.200579 -0.0195438 -1.20554e-20)
(0.255925 -0.0217083 -6.19113e-24)
(0.371936 -0.0178305 2.41807e-20)
(0.570235 -0.00858529 3.04782e-21)
(0.849647 -0.00117204 -3.01064e-21)
(0.225139 0.084381 -3.09665e-21)
(0.214129 0.0524277 5.78254e-20)
(0.195163 0.0315759 2.40532e-20)
(0.181502 0.0108536 -2.39652e-20)
(0.178582 -0.00493886 -1.20113e-20)
(0.196847 -0.0156022 0)
(0.252507 -0.019311 -2.38174e-20)
(0.369072 -0.0164008 1.18492e-20)
(0.568455 -0.00789292 1.19246e-20)
(0.849174 -0.00103548 1.18768e-20)
(0.218549 0.104349 -1.13562e-20)
(0.208421 0.0681418 0)
(0.190292 0.0436584 0)
(0.176805 0.0197151 0)
(0.17397 0.00121657 -1.19303e-20)
(0.192304 -0.0116216 2.37932e-20)
(0.248115 -0.0169297 2.35979e-20)
(0.365133 -0.0149784 -3.52251e-20)
(0.565703 -0.00714123 5.90795e-21)
(0.848243 -0.000860527 -1.7545e-20)
(0.211782 0.123506 -2.00269e-20)
(0.202175 0.0838597 4.79912e-20)
(0.185015 0.0556644 -4.7424e-20)
(0.17165 0.0286032 4.82018e-20)
(0.168786 0.0074214 -5.96469e-20)
(0.186998 -0.00758354 0)
(0.242767 -0.0145193 -1.16111e-20)
(0.360142 -0.0135265 6.52911e-23)
(0.56202 -0.00629162 -1.15178e-20)
(0.846858 -0.000627188 -1.1469e-20)
(0.204496 0.141261 -1.15996e-20)
(0.195316 0.0991686 0)
(0.179347 0.0672831 -5.47317e-20)
(0.166131 0.0373278 9.61888e-20)
(0.163103 0.0136198 -3.56559e-20)
(0.180924 -0.00343918 -5.83919e-21)
(0.236336 -0.0119932 1.15104e-20)
(0.353872 -0.0120032 6.23408e-25)
(0.557207 -0.00532869 1.69485e-20)
(0.844975 -0.000311779 1.68827e-20)
(0.195415 0.156963 -5.04426e-20)
(0.187294 0.113352 5.00567e-20)
(0.172826 0.0780309 6.56142e-21)
(0.159986 0.0456054 0)
(0.156884 0.0197394 0)
(0.174319 0.000902749 6.29754e-21)
(0.229306 -0.00919152 2.4457e-20)
(0.346816 -0.0103627 -2.38289e-20)
(0.551329 -0.0043869 -5.83314e-21)
(0.842353 3.35179e-05 5.54416e-21)
(0.179631 0.182587 0)
(0.169763 0.138118 0)
(0.156349 0.0979329 0)
(0.144011 0.0622154 0)
(0.141816 0.0331988 0)
(0.16069 0.0115128 0)
(0.218181 -0.00157249 0)
(0.339399 -0.00589638 0)
(0.547701 -0.00286399 0)
(0.84051 0.000191819 0)
(0.126477 0.203487 0)
(0.121737 0.161345 0)
(0.113658 0.119407 0)
(0.108572 0.0814485 0)
(0.115024 0.0495665 0)
(0.143849 0.0250827 0)
(0.211417 0.00913019 0)
(0.340153 0.00144512 0)
(0.550857 0.000300134 0)
(0.841326 0.000658683 0)
(0.0821529 0.217956 0)
(0.0773286 0.176488 0)
(0.0719564 0.134657 0)
(0.0721376 0.0959014 0)
(0.0857582 0.0625142 0)
(0.123298 0.0364395 0)
(0.200042 0.0187181 0)
(0.336401 0.00854703 0)
(0.550738 0.00391817 0)
(0.840358 0.00145008 0)
(0.0429852 0.228891 0)
(0.0361496 0.189928 0)
(0.0316471 0.148976 0)
(0.0355354 0.110061 0)
(0.0553238 0.0759901 0)
(0.100691 0.0492334 0)
(0.185241 0.0305077 0)
(0.327557 0.0179353 0)
(0.545034 0.00901527 0)
(0.835988 0.00268731 0)
(0.00649103 0.242497 0)
(-0.00356995 0.207008 0)
(-0.00836118 0.167597 0)
(-0.00146306 0.129369 0)
(0.0244788 0.0955147 0)
(0.0775732 0.0688047 0)
(0.168914 0.049395 0)
(0.314661 0.033736 0)
(0.532534 0.0180879 0)
(0.825624 0.00501537 0)
(-0.0266957 0.264186 0)
(-0.0408605 0.234133 0)
(-0.0470674 0.198739 0)
(-0.0379663 0.163902 0)
(-0.00626218 0.132562 0)
(0.0540669 0.106807 0)
(0.150601 0.0856266 0)
(0.296769 0.063945 0)
(0.511989 0.0362969 0)
(0.808513 0.00999892 0)
(-0.0536604 0.299416 0)
(-0.0718837 0.279652 0)
(-0.0801576 0.254821 0)
(-0.0700661 0.230153 0)
(-0.0346946 0.2065 0)
(0.0298542 0.183644 0)
(0.127067 0.158209 0)
(0.267063 0.123322 0)
(0.471315 0.0726016 0)
(0.76904 0.0204682 0)
(-0.0680573 0.35178 0)
(-0.0881675 0.350627 0)
(-0.0976466 0.347565 0)
(-0.0878318 0.344696 0)
(-0.053134 0.338289 0)
(0.00845121 0.3237 0)
(0.0978579 0.294006 0)
(0.223506 0.238872 0)
(0.409811 0.149432 0)
(0.708004 0.0427899 0)
(-0.0607914 0.416365 0)
(-0.0778843 0.441989 0)
(-0.0863823 0.471997 0)
(-0.0798952 0.503092 0)
(-0.0561492 0.525757 0)
(-0.0150576 0.530573 0)
(0.0459584 0.507033 0)
(0.133073 0.439756 0)
(0.269833 0.308957 0)
(0.546281 0.0971324 0)
(-0.0251891 0.469463 0)
(-0.0318783 0.520893 0)
(-0.0347047 0.584027 0)
(-0.0310809 0.651149 0)
(-0.0203076 0.70815 0)
(-0.00147988 0.740473 0)
(0.0298809 0.737862 0)
(0.0801066 0.683472 0)
(0.171047 0.533157 0)
(0.392157 0.198292 0)
(0.156724 0.217845 4.9346e-20)
(0.10995 0.235248 -4.89621e-20)
(0.0720659 0.245412 6.25407e-21)
(0.0372178 0.25382 0)
(0.00562425 0.265844 0)
(-0.0223037 0.285309 6.26274e-21)
(-0.0440678 0.315646 -2.528e-20)
(-0.054826 0.358269 2.50278e-20)
(-0.0482139 0.408209 6.32737e-21)
(-0.0198476 0.447449 -6.30007e-21)
(0.146423 0.23152 -5.14656e-20)
(0.102652 0.247415 0)
(0.0680102 0.255818 3.84257e-20)
(0.0351973 0.263377 -8.72959e-20)
(0.00574057 0.274923 5.4367e-20)
(-0.0200586 0.293595 -5.51229e-21)
(-0.039826 0.322027 1.09301e-20)
(-0.049272 0.360841 2.19737e-20)
(-0.0430375 0.405081 5.49919e-21)
(-0.017662 0.439059 5.473e-21)
(0.135629 0.242739 5.97805e-20)
(0.0955625 0.257886 -4.26905e-20)
(0.0643376 0.265041 4.22079e-20)
(0.033691 0.27211 -4.35667e-20)
(0.0063921 0.283323 3.22194e-20)
(-0.017372 0.301255 0)
(-0.0353295 0.327849 -1.1027e-20)
(-0.0437061 0.363088 -1.22543e-22)
(-0.0380041 0.402117 -1.109e-20)
(-0.0155702 0.431454 -1.11609e-20)
(0.124513 0.252857 -9.75511e-21)
(0.0887775 0.267688 0)
(0.0610182 0.273902 0)
(0.0326586 0.280542 0)
(0.0075084 0.291312 3.24451e-20)
(-0.0143326 0.308368 -2.16003e-20)
(-0.0306732 0.333079 -1.0986e-22)
(-0.0382103 0.364955 -1.10385e-20)
(-0.0331744 0.39932 -5.52851e-21)
(-0.01359 0.424614 -5.49243e-21)
(0.113187 0.26192 1.55365e-21)
(0.0823166 0.276695 -2.92207e-20)
(0.0579995 0.282313 -2.09059e-20)
(0.0320329 0.288598 2.0836e-20)
(0.00899919 0.298854 -1.07417e-20)
(-0.0110401 0.31494 0)
(-0.0259524 0.33777 -1.09508e-20)
(-0.0328548 0.366515 2.20194e-20)
(-0.0285895 0.396748 -1.09822e-20)
(-0.0117316 0.418553 1.11774e-20)
(0.101818 0.269673 -7.48122e-20)
(0.0761538 0.28464 8.44999e-21)
(0.0552363 0.290022 -4.89188e-22)
(0.0317556 0.296104 2.05558e-20)
(0.0107879 0.305852 0)
(-0.00757686 0.320953 0)
(-0.0212441 0.341973 0)
(-0.0276937 0.367854 1.08387e-20)
(-0.0242766 0.394456 0)
(-0.00999972 0.413269 0)
(0.0905461 0.275919 0)
(0.0702338 0.291405 2.93925e-20)
(0.0526802 0.296883 -1.97503e-20)
(0.0317704 0.302957 -2.0693e-20)
(0.0128052 0.312258 2.07269e-20)
(-0.0040113 0.326412 1.06594e-20)
(-0.0166072 0.345736 -1.05706e-20)
(-0.0227644 0.369036 -3.7899e-20)
(-0.0202492 0.392476 2.71116e-21)
(-0.00839487 0.408742 -8.19816e-21)
(0.0794584 0.280503 0)
(0.0644981 0.296865 -9.63114e-21)
(0.0502784 0.302858 -4.8887e-21)
(0.0320211 0.309096 0)
(0.0149873 0.318054 5.26404e-21)
(-0.000400732 0.331338 -1.56355e-20)
(-0.012085 0.349112 1.60361e-20)
(-0.0180879 0.37012 5.46324e-21)
(-0.0165084 0.390831 -5.37984e-21)
(-0.00691362 0.404944 1.10263e-20)
(0.0686142 0.283305 8.59487e-21)
(0.0589137 0.300891 9.5274e-21)
(0.0479949 0.307901 -2.27869e-21)
(0.0324357 0.31449 2.47759e-21)
(0.0172794 0.32323 5.12893e-21)
(0.00320987 0.335758 7.79424e-21)
(-0.00770575 0.352152 -2.61106e-21)
(-0.0136709 0.371155 -2.64074e-21)
(-0.0130444 0.389537 5.40106e-21)
(-0.00554959 0.401839 2.6943e-21)
(0.0580931 0.284249 -2.22609e-21)
(0.0534619 0.303431 2.25787e-21)
(0.0458104 0.311899 -2.40578e-21)
(0.0329562 0.3191 -2.47721e-21)
(0.0196308 0.327788 2.53036e-21)
(0.00678902 0.339702 -5.1189e-21)
(-0.00348273 0.354905 3.91717e-21)
(-0.00950712 0.372186 1.3362e-21)
(-0.00983901 0.388598 0)
(-0.00429405 0.399392 -2.70055e-21)
(-0.00999652 0.0119755 0)
(-0.0143097 0.0295556 0)
(-0.00956676 0.0487903 -8.95287e-20)
(-0.00145166 0.0676862 0)
(0.00838857 0.086432 4.69449e-20)
(0.0189983 0.104924 -4.55666e-20)
(0.0299495 0.123078 0)
(0.0413123 0.140956 0)
(0.0537399 0.15851 -8.47548e-20)
(0.0687408 0.173668 1.72935e-19)
(-0.00815088 0.00952962 0)
(-0.00843793 0.0242988 -6.23378e-20)
(6.82181e-05 0.0425425 -2.07888e-20)
(0.0115972 0.0612075 -9.10851e-20)
(0.0246021 0.0802247 -4.51561e-20)
(0.0382638 0.0993147 -1.3604e-19)
(0.0523388 0.118264 0)
(0.0671261 0.136952 0)
(0.0833466 0.154751 0)
(0.101892 0.169109 -6.37339e-22)
(-0.00547281 0.00722303 0)
(-0.000671242 0.0197297 -2.00672e-20)
(0.0123268 0.0375886 4.50018e-20)
(0.0278165 0.0565473 6.88814e-20)
(0.044397 0.0762491 9.49875e-22)
(0.0613844 0.0962073 1.01529e-21)
(0.0786379 0.116044 8.78065e-20)
(0.096462 0.135448 -8.49749e-20)
(0.115344 0.153547 1.6299e-19)
(0.135548 0.168175 -1.67025e-19)
(-0.00189697 0.00516752 -8.4865e-21)
(0.00901348 0.0161026 6.16635e-20)
(0.0271117 0.0342506 1.08714e-19)
(0.046948 0.0540576 -1.34557e-19)
(0.0673075 0.074866 8.96805e-20)
(0.087633 0.0959802 8.91738e-20)
(0.107828 0.116877 -4.44456e-20)
(0.128108 0.137133 1.6912e-19)
(0.148719 0.155879 -2.06676e-21)
(0.169593 0.171479 -8.19606e-20)
(0.00260933 0.00349907 -8.75358e-21)
(0.0205584 0.0136898 9.5117e-21)
(0.0442067 0.0328397 0)
(0.0685862 0.0540444 1.11541e-19)
(0.0927145 0.0763506 -2.19601e-20)
(0.116169 0.0988708 5.33802e-22)
(0.138889 0.120968 -4.27427e-20)
(0.161009 0.142172 -1.23757e-19)
(0.182626 0.161719 -5.08532e-22)
(0.203549 0.178469 1.19794e-19)
(0.00803682 0.00236993 0)
(0.0338117 0.0127643 -5.98524e-20)
(0.0632701 0.0336281 2.05659e-20)
(0.0921838 0.056728 -6.55495e-20)
(0.11986 0.0808378 2.16662e-20)
(0.146042 0.104909 1.56605e-22)
(0.170727 0.128227 1.94593e-22)
(0.194026 0.150316 8.16495e-20)
(0.215977 0.170564 -1.16321e-19)
(0.236376 0.188252 1.17634e-19)
(0.0143232 0.00193892 3.90438e-21)
(0.0485175 0.0135771 3.94227e-20)
(0.0838356 0.0368203 0)
(0.117064 0.0622087 6.52385e-20)
(0.147871 0.0882873 -6.43925e-20)
(0.17621 0.11389 -2.14225e-20)
(0.202188 0.138268 6.25661e-20)
(0.225953 0.160976 0)
(0.24757 0.181568 0)
(0.266884 0.199676 0)
(0.0213425 0.00235864 -4.11975e-21)
(0.064311 0.0163315 -1.4724e-20)
(0.105319 0.0425237 2.05037e-20)
(0.142446 0.0704417 3.19214e-20)
(0.175798 0.0984693 3.24844e-20)
(0.2056 0.125384 2.08652e-20)
(0.232127 0.150452 0)
(0.255633 0.173301 3.90059e-20)
(0.276276 0.193661 -1.90097e-20)
(0.294003 0.211449 0)
(0.0288969 0.00375918 0)
(0.080721 0.0211558 2.87163e-20)
(0.12704 0.0507245 -2.05e-20)
(0.167478 0.0812225 -2.11435e-20)
(0.20267 0.110969 -1.19963e-22)
(0.233177 0.138766 -1.05717e-20)
(0.2595 0.163961 9.95558e-21)
(0.282064 0.186298 0)
(0.301174 0.205701 -1.84789e-20)
(0.316926 0.222318 -1.82461e-20)
(0.036749 0.00622833 4.64596e-22)
(0.0972091 0.0280751 -1.07359e-20)
(0.148266 0.0612678 -1.35069e-21)
(0.191306 0.0941859 -8.12558e-23)
(0.227572 0.125214 -7.90433e-21)
(0.258027 0.153279 0)
(0.283454 0.177888 -9.95378e-21)
(0.304497 0.198958 0)
(0.321651 0.21662 0)
(0.335195 0.231222 0)
(0.0447238 0.0098049 -9.27343e-22)
(0.113262 0.0370019 0)
(0.168308 0.0738565 0)
(0.213153 0.108825 -7.73764e-21)
(0.249728 0.140515 2.63567e-21)
(0.279442 0.168105 1.93753e-23)
(0.303401 0.191341 -4.88803e-21)
(0.322496 0.210371 0)
(0.337436 0.225544 0)
(0.348705 0.237396 0)
(0.0525663 0.0144954 0)
(0.128336 0.0477804 -4.88496e-21)
(0.186497 0.0881127 4.91921e-21)
(0.232339 0.12457 1.03526e-20)
(0.268525 0.156173 0)
(0.296943 0.182476 1.0067e-20)
(0.319029 0.203555 -9.72325e-21)
(0.335932 0.219833 0)
(0.348575 0.23188 1.73373e-20)
(0.357644 0.240413 -1.77344e-20)
(0.0598683 0.0202299 0)
(0.141763 0.0601107 3.90472e-20)
(0.202132 0.103516 0)
(0.248234 0.14075 4.19437e-20)
(0.283484 0.171443 0)
(0.310242 0.195661 -4.05573e-20)
(0.33026 0.213883 0)
(0.344921 0.22683 3.65887e-20)
(0.355349 0.235283 -3.51685e-20)
(0.362405 0.240137 -3.493e-20)
(0.066283 0.0268527 -8.52088e-21)
(0.152979 0.0735592 -1.97048e-20)
(0.214664 0.119443 -1.01529e-20)
(0.260411 0.156647 -2.06878e-20)
(0.294361 0.185612 -2.07914e-20)
(0.319306 0.207036 2.02665e-20)
(0.337268 0.221848 1.96004e-20)
(0.349814 0.231066 5.77325e-22)
(0.358232 0.235654 3.5262e-20)
(0.363523 0.236675 3.50476e-20)
(0.0715068 0.0341352 -8.40486e-21)
(0.161522 0.0875935 -2.0744e-20)
(0.223698 0.13521 -4.39316e-20)
(0.268634 0.17155 2.13078e-20)
(0.301122 0.198043 0)
(0.324313 0.216104 0)
(0.340419 0.227138 -3.92504e-20)
(0.351121 0.232433 -3.72703e-20)
(0.357819 0.233082 3.54299e-20)
(0.361604 0.230297 -3.41746e-20)
(0.0752786 0.0417825 9.33644e-21)
(0.167047 0.101609 1.13735e-20)
(0.228999 0.15012 -6.82444e-20)
(0.272841 0.184796 1.12705e-19)
(0.303904 0.208194 -2.17933e-20)
(0.325591 0.222501 0)
(0.340207 0.229585 0)
(0.349454 0.230957 1.90291e-19)
(0.354772 0.227773 -1.7816e-19)
(0.357294 0.221358 -1.06113e-19)
(0.0774007 0.0494484 7.98073e-20)
(0.169346 0.114964 0)
(0.230496 0.163492 8.98699e-20)
(0.273137 0.195792 -9.04328e-20)
(0.302983 0.215633 0)
(0.323576 0.225975 4.33068e-20)
(0.337204 0.229121 -1.26262e-19)
(0.345485 0.226741 -1.54224e-19)
(0.349804 0.219978 7.40214e-20)
(0.351288 0.210217 7.27824e-20)
(0.0777579 0.0567561 -1.66124e-19)
(0.168367 0.127015 -2.36641e-20)
(0.228282 0.174701 -5.07308e-20)
(0.269761 0.204047 -1.22286e-19)
(0.298727 0.220038 -4.68004e-20)
(0.318745 0.226375 -4.69189e-20)
(0.332003 0.225744 -3.09027e-21)
(0.33993 0.219921 0)
(0.343742 0.209945 0)
(0.344442 0.197181 1.50402e-19)
(0.0763304 0.0633242 8.63182e-20)
(0.164215 0.137161 -1.02697e-19)
(0.222599 0.183215 7.33399e-20)
(0.263057 0.209183 1.7381e-19)
(0.29154 0.221199 -4.9194e-20)
(0.311548 0.22362 4.25721e-20)
(0.325131 0.219454 4.24677e-20)
(0.333511 0.210568 0)
(0.337649 0.19787 0)
(0.338056 0.182593 -7.65041e-20)
(0.0732036 0.0687985 -1.21662e-20)
(0.157147 0.14488 1.29247e-19)
(0.213817 0.188618 -2.67094e-20)
(0.253444 0.210956 0)
(0.281818 0.219024 0)
(0.302303 0.217687 9.6479e-20)
(0.316849 0.210155 0)
(0.326599 0.198341 -8.52927e-20)
(0.332319 0.183155 3.65886e-21)
(0.333497 0.166068 8.22979e-20)
(0.0685551 0.0728791 0)
(0.147544 0.149761 0)
(0.202403 0.190629 -1.16598e-19)
(0.24139 0.20927 0)
(0.269932 0.213592 5.37519e-20)
(0.29116 0.208761 -5.21802e-20)
(0.306938 0.197966 0)
(0.318478 0.18284 0)
(0.326573 0.163684 -8.43168e-20)
(0.329694 0.140879 1.79487e-19)
(0.0625973 0.075274 0)
(0.135868 0.151481 -9.37178e-20)
(0.188908 0.189091 -3.67575e-20)
(0.227433 0.204169 -1.20806e-19)
(0.256312 0.205175 -6.01741e-20)
(0.278314 0.197441 -1.6613e-19)
(0.295088 0.18412 0)
(0.3077 0.166788 0)
(0.316655 0.145958 0)
(0.320381 0.122567 2.50663e-21)
(0.0556235 0.0757334 0)
(0.122707 0.149823 -3.89887e-20)
(0.173981 0.183963 5.66287e-20)
(0.212209 0.195789 8.96653e-20)
(0.241564 0.19407 -5.58744e-21)
(0.264382 0.184197 -5.14984e-21)
(0.282076 0.169279 1.10101e-19)
(0.295558 0.150902 -1.0341e-19)
(0.305223 0.129754 1.90484e-19)
(0.309973 0.106821 -1.96689e-19)
(0.0480381 0.0741714 -1.63551e-20)
(0.108736 0.144759 9.75803e-20)
(0.158322 0.175344 1.6371e-19)
(0.196386 0.184328 -1.97451e-19)
(0.226325 0.180533 1.23403e-19)
(0.25003 0.169273 1.17738e-19)
(0.268696 0.153566 -5.32312e-20)
(0.283144 0.134963 2.07719e-19)
(0.293791 0.114192 1.74659e-21)
(0.299963 0.0920979 -1.03675e-19)
(0.0402694 0.070616 -1.68444e-20)
(0.0946392 0.136413 1.83061e-20)
(0.14262 0.163449 0)
(0.180606 0.170043 1.66655e-19)
(0.211188 0.1648 -3.29344e-20)
(0.235823 0.152824 -1.86116e-21)
(0.255517 0.136967 -5.92318e-20)
(0.271031 0.118692 -1.6457e-19)
(0.282837 0.0986734 3.41751e-21)
(0.290565 0.0775521 1.60047e-19)
(0.0327318 0.0651915 0)
(0.0810681 0.125046 -1.12422e-19)
(0.127523 0.148593 3.69536e-20)
(0.165458 0.153244 -1.07067e-19)
(0.196673 0.147128 3.42555e-20)
(0.222223 0.135007 -4.37855e-22)
(0.242942 0.119509 -2.87705e-22)
(0.259549 0.101965 1.12325e-19)
(0.272554 0.0829651 -1.59728e-19)
(0.28182 0.0629455 1.6733e-19)
(0.0258037 0.058111 9.5557e-21)
(0.0686116 0.111038 7.57232e-20)
(0.113607 0.131185 0)
(0.151454 0.1343 1.08307e-19)
(0.18322 0.127808 -1.06649e-19)
(0.209593 0.116017 -3.28806e-20)
(0.231261 0.101281 9.35021e-20)
(0.248898 0.0847797 0)
(0.263031 0.0670146 0)
(0.273715 0.0482587 0)
(0.0198082 0.049662 -9.5619e-21)
(0.0577701 0.0948675 -3.01352e-20)
(0.101362 0.111705 3.97021e-20)
(0.139027 0.113633 5.6987e-20)
(0.17119 0.107172 5.28939e-20)
(0.198223 0.0960879 3.46874e-20)
(0.220686 0.082428 0)
(0.23921 0.0672127 6.00417e-20)
(0.254325 0.0508653 -2.88035e-20)
(0.26625 0.0335545 0)
(0.0149976 0.0401881 0)
(0.0489367 0.077086 6.12901e-20)
(0.0911754 0.0906979 -3.96958e-20)
(0.128518 0.0917106 -3.82957e-20)
(0.160866 0.0855909 4.05218e-22)
(0.188333 0.075495 -1.69113e-20)
(0.211375 0.0631402 1.67606e-20)
(0.230585 0.0493842 0)
(0.24649 0.0345792 -2.89066e-20)
(0.259455 0.0188295 -3.01404e-20)
(0.0115438 0.0300838 1.30248e-21)
(0.0423869 0.0583044 -2.33496e-20)
(0.0833265 0.0687487 -2.4636e-21)
(0.120177 0.0690334 1.2608e-22)
(0.152457 0.0634655 -1.39227e-20)
(0.180086 0.0545453 0)
(0.203441 0.0436452 -1.67572e-20)
(0.223081 0.0314567 0)
(0.239522 0.018261 0)
(0.253243 0.00411642 0)
(0.00952908 0.0198079 -2.64191e-21)
(0.0382664 0.0391875 0)
(0.0779807 0.0464792 0)
(0.114164 0.0461288 -1.52627e-20)
(0.146102 0.0412201 4.6419e-21)
(0.173596 0.0335716 -1.97359e-22)
(0.196969 0.0242019 -8.72266e-21)
(0.21675 0.0136334 0)
(0.233432 0.00207623 0)
(0.247585 -0.0104384 0)
(0.00893341 0.00971017 0)
(0.0365696 0.020296 -1.06214e-20)
(0.0751738 0.0244533 1.06986e-20)
(0.110535 0.0234905 2.02317e-20)
(0.141866 0.0192633 0)
(0.168926 0.0129051 1.83163e-20)
(0.192013 0.00507854 -1.76927e-20)
(0.211635 -0.00386481 0)
(0.228255 -0.0137886 3.10572e-20)
(0.242501 -0.0246733 -3.29377e-20)
(0.00968522 7.72372e-05 0)
(0.0372135 0.00215347 8.65398e-20)
(0.0748584 0.00321554 0)
(0.109276 0.0016158 8.20616e-20)
(0.139758 -0.00197588 0)
(0.166099 -0.00709284 -7.49244e-20)
(0.188605 -0.013421 0)
(0.207774 -0.0207805 6.66823e-20)
(0.224034 -0.0291136 -6.40952e-20)
(0.238044 -0.0384049 -6.69689e-20)
(0.0116581 -0.00879243 -2.0597e-20)
(0.0400287 -0.0147365 -4.2784e-20)
(0.076902 -0.0167137 -2.15207e-20)
(0.110296 -0.0190176 -4.13714e-20)
(0.139728 -0.0220812 -3.98023e-20)
(0.165099 -0.026066 3.76325e-20)
(0.186753 -0.0309927 3.60182e-20)
(0.205195 -0.036851 6.52288e-22)
(0.220822 -0.0436681 6.48402e-20)
(0.23429 -0.0514342 6.68851e-20)
(0.0146748 -0.0166426 -2.10625e-20)
(0.0447639 -0.0299363 -4.25663e-20)
(0.0810912 -0.0348693 -8.34676e-20)
(0.113438 -0.0379709 4.14899e-20)
(0.141671 -0.0406595 0)
(0.165866 -0.0436695 0)
(0.186439 -0.0473351 -7.14145e-20)
(0.203915 -0.0518107 -6.7857e-20)
(0.218671 -0.0572137 6.53159e-20)
(0.231335 -0.0635471 -6.6922e-20)
(0.0185216 -0.0232794 2.02214e-20)
(0.051104 -0.0430922 2.02564e-20)
(0.0871454 -0.0508549 -1.25554e-19)
(0.118482 -0.0548541 2.03367e-19)
(0.145431 -0.0573491 -3.96633e-20)
(0.168303 -0.0595764 0)
(0.187616 -0.0621556 0)
(0.203933 -0.0653975 3.42886e-19)
(0.217628 -0.0695121 -3.27536e-19)
(0.229281 -0.074526 -2.05063e-19)
(0.0229638 -0.0285745 1.61561e-19)
(0.0586896 -0.053942 0)
(0.094731 -0.064353 1.67435e-19)
(0.125155 -0.069337 -1.62821e-19)
(0.150804 -0.0718292 0)
(0.17227 -0.0734863 7.48509e-20)
(0.190203 -0.0751782 -2.16065e-19)
(0.205222 -0.0773603 -2.74808e-19)
(0.217719 -0.0803337 1.31987e-19)
(0.228219 -0.084161 1.37716e-19)
(0.0277601 -0.0324641 -3.19497e-19)
(0.0671365 -0.0623185 -4.11653e-20)
(0.103478 -0.0751324 -8.08793e-20)
(0.133141 -0.0811577 -1.99963e-19)
(0.157542 -0.0838298 -7.73801e-20)
(0.17759 -0.0851342 -7.39538e-20)
(0.194084 -0.0861505 5.13981e-22)
(0.207722 -0.0874644 0)
(0.218939 -0.0894625 0)
(0.228213 -0.0922526 2.76914e-19)
(0.0326773 -0.0349467 1.57937e-19)
(0.0760558 -0.06815 -1.61327e-19)
(0.112994 -0.0830523 1.22916e-19)
(0.142096 -0.0901296 2.78368e-19)
(0.165364 -0.0931391 -7.72473e-20)
(0.184043 -0.0942985 7.53185e-20)
(0.199106 -0.0948518 7.16456e-20)
(0.211335 -0.0954976 0)
(0.221242 -0.0966992 0)
(0.229286 -0.0986087 -1.38586e-19)
(0.0375052 -0.0360789 -1.89964e-20)
(0.0850735 -0.0714557 2.0108e-19)
(0.122886 -0.0880622 -4.00015e-20)
(0.151654 -0.0961453 0)
(0.173957 -0.0996102 0)
(0.19138 -0.100809 1.47883e-19)
(0.205074 -0.101101 0)
(0.215923 -0.101278 -1.36853e-19)
(0.224536 -0.101866 -2.67097e-22)
(0.231428 -0.103076 1.38393e-19)
(0.0420707 -0.0359644 0)
(0.0938512 -0.0723331 0)
(0.132773 -0.0901949 -1.54492e-19)
(0.161446 -0.0991739 0)
(0.182988 -0.103163 7.50374e-20)
(0.199311 -0.104552 -7.28414e-20)
(0.21175 -0.104763 0)
(0.221283 -0.104651 0)
(0.228615 -0.104784 -1.31444e-19)
(0.234379 -0.105457 2.75733e-19)
(0.046202 -0.034709 0)
(0.102071 -0.070921 -1.12676e-19)
(0.142288 -0.0895444 -3.51148e-20)
(0.171105 -0.0992516 -1.49748e-19)
(0.192113 -0.10378 -7.275e-20)
(0.207529 -0.105474 -2.14973e-19)
(0.218864 -0.105758 0)
(0.227185 -0.105517 0)
(0.233223 -0.105364 0)
(0.237634 -0.105588 2.02198e-23)
(0.0497353 -0.0324458 0)
(0.109435 -0.0674301 -3.35137e-20)
(0.151083 -0.0862885 7.81682e-20)
(0.180271 -0.0964969 1.12697e-19)
(0.200983 -0.101522 2.30598e-21)
(0.215702 -0.103585 1.88127e-21)
(0.226102 -0.104071 1.37364e-19)
(0.23334 -0.103867 -1.33293e-19)
(0.238173 -0.103623 2.59367e-19)
(0.241273 -0.103574 -2.72801e-19)
(0.0525819 -0.029359 -1.68507e-20)
(0.115724 -0.0621379 1.10748e-19)
(0.158873 -0.0806771 1.84697e-19)
(0.188624 -0.0911008 -2.17252e-19)
(0.209268 -0.0965139 1.44022e-19)
(0.223506 -0.098952 1.40646e-19)
(0.233153 -0.0997185 -6.93608e-20)
(0.23945 -0.0996749 2.66575e-19)
(0.243199 -0.0994794 6.37778e-23)
(0.245089 -0.0993167 -1.34872e-19)
(0.0547006 -0.0256417 -1.63196e-20)
(0.120793 -0.0553514 1.77343e-20)
(0.165433 -0.0730072 0)
(0.195891 -0.0833109 1.80082e-19)
(0.21667 -0.0889414 -3.50831e-20)
(0.230637 -0.0916986 8.59918e-22)
(0.23972 -0.0927673 -6.71168e-20)
(0.24524 -0.0929548 -1.97324e-19)
(0.248054 -0.0929014 -1.25242e-21)
(0.248862 -0.0927632 2.01351e-19)
(0.0560824 -0.0214781 0)
(0.124557 -0.0473874 -1.02955e-19)
(0.170603 -0.0636048 3.49108e-20)
(0.201856 -0.0734187 -1.04577e-19)
(0.222936 -0.0790426 3.44481e-20)
(0.236823 -0.082005 8.17312e-23)
(0.245531 -0.0833429 9.69685e-24)
(0.25045 -0.0837843 1.30644e-19)
(0.252496 -0.0839252 -1.89871e-19)
(0.252373 -0.0839187 1.98837e-19)
(0.056749 -0.0170408 7.70399e-21)
(0.126992 -0.0385578 6.82794e-20)
(0.174286 -0.0528095 0)
(0.20636 -0.0617464 1.03933e-19)
(0.227863 -0.0670992 -1.01378e-19)
(0.241832 -0.0701036 -3.37937e-20)
(0.250341 -0.0716286 9.88309e-20)
(0.254833 -0.0723026 0)
(0.25629 -0.0726519 0)
(0.255421 -0.0728511 0)
(0.0567445 -0.0124818 -7.53595e-21)
(0.12812 -0.029156 -2.43872e-20)
(0.176445 -0.0409601 3.32046e-20)
(0.209305 -0.0486328 5.03479e-20)
(0.231302 -0.0534243 5.09416e-20)
(0.24548 -0.0562696 3.28009e-20)
(0.253939 -0.0578571 0)
(0.258164 -0.0587062 6.39332e-20)
(0.259183 -0.0592639 -3.06593e-20)
(0.257727 -0.059679 0)
(0.0561198 -0.00792971 0)
(0.128002 -0.0194498 4.85017e-20)
(0.177092 -0.0283827 -3.31988e-20)
(0.210647 -0.0344202 -3.3365e-20)
(0.233157 -0.0383503 -2.86833e-22)
(0.247627 -0.0408097 -1.66728e-20)
(0.256159 -0.0423008 1.58969e-20)
(0.260253 -0.0432229 0)
(0.260973 -0.0439203 -3.07887e-20)
(0.259049 -0.0445355 -3.24394e-20)
(0.0549609 -0.00349248 8.91332e-22)
(0.126749 -0.00967914 -1.79091e-20)
(0.176293 -0.0153844 -2.06307e-21)
(0.2104 -0.0194455 -7.68391e-23)
(0.23339 -0.0222189 -1.23139e-20)
(0.248193 -0.0240537 0)
(0.256883 -0.0252671 -1.58937e-20)
(0.26096 -0.0261307 0)
(0.261506 -0.0268709 0)
(0.25925 -0.0276428 0)
(0.0534961 0.000753754 -1.74735e-21)
(0.124596 -3.83117e-05 0)
(0.174224 -0.00223811 0)
(0.20867 -0.00402738 -1.17772e-20)
(0.232044 -0.00536988 4.10788e-21)
(0.247167 -0.00634442 1.67236e-22)
(0.256058 -0.00708918 -7.70551e-21)
(0.2602 -0.00774591 0)
(0.26067 -0.00841173 0)
(0.258199 -0.00926004 0)
(0.0518238 0.00479854 0)
(0.121681 0.00938855 -7.63932e-21)
(0.171003 0.010877 7.69367e-21)
(0.20554 0.011588 1.58016e-20)
(0.229162 0.011908 0)
(0.244554 0.0120053 1.57286e-20)
(0.253659 0.0119111 -1.51922e-20)
(0.257921 0.0116111 0)
(0.258393 0.0111462 2.98613e-20)
(0.255803 0.0103287 -3.09897e-20)
(0.0499026 0.00862949 0)
(0.118048 0.0185166 5.904e-20)
(0.166703 0.0237943 0)
(0.201083 0.0271695 6.1125e-20)
(0.224803 0.0293363 0)
(0.240392 0.0306851 -6.08699e-20)
(0.249703 0.0314042 0)
(0.254123 0.0316029 6.0239e-20)
(0.254658 0.0314663 -5.79008e-20)
(0.252029 0.0308042 -6.15268e-20)
(0.0477691 0.0122337 -1.33435e-20)
(0.113789 0.027269 -2.97821e-20)
(0.161434 0.0363646 -1.486e-20)
(0.195404 0.0425065 -3.04499e-20)
(0.219055 0.0466547 -3.00044e-20)
(0.23475 0.0493966 3.02949e-20)
(0.24424 0.0510649 2.95316e-20)
(0.248843 0.051886 -9.76641e-22)
(0.249495 0.0521949 5.71704e-20)
(0.2469 0.0518197 6.1548e-20)
(0.0454753 0.0156095 -1.30213e-20)
(0.109002 0.035593 -2.90351e-20)
(0.15531 0.0484697 -5.91197e-20)
(0.188618 0.0574208 2.95098e-20)
(0.21202 0.0636336 0)
(0.227715 0.0678669 0)
(0.237342 0.0705836 -5.96498e-20)
(0.242146 0.0721209 -5.87956e-20)
(0.242969 0.0729675 5.66379e-20)
(0.240485 0.0730026 -6.28111e-20)
(0.0430588 0.0187609 1.29328e-20)
(0.103769 0.0434531 1.45328e-20)
(0.148434 0.0600166 -8.55657e-20)
(0.180831 0.0717648 1.46445e-19)
(0.203802 0.0800762 -2.91026e-20)
(0.219374 0.0858548 0)
(0.229084 0.0896776 0)
(0.2341 0.0919828 2.87522e-19)
(0.23516 0.0934165 -2.81711e-19)
(0.232878 0.0939578 -1.82176e-19)
(0.0405438 0.0216943 1.00522e-19)
(0.0981543 0.0508246 0)
(0.140896 0.0709322 1.1532e-19)
(0.172146 0.0854193 -1.16696e-19)
(0.194496 0.0958215 0)
(0.209812 0.10316 5.8615e-20)
(0.219531 0.108107 -1.70547e-19)
(0.224759 0.111183 -2.28238e-19)
(0.226132 0.113191 1.09873e-19)
(0.224187 0.114281 1.18695e-19)
(0.0379455 0.0244163 -1.99726e-19)
(0.0922079 0.0576892 -2.77649e-20)
(0.132777 0.0811588 -5.55594e-20)
(0.162657 0.0982904 -1.41606e-19)
(0.184196 0.110746 -5.80183e-20)
(0.1991 0.119637 -5.70413e-20)
(0.208715 0.125699 1.53921e-21)
(0.214113 0.129507 0)
(0.215868 0.131992 0)
(0.214444 0.133575 2.34147e-19)
(0.0352726 0.0269317 9.92057e-20)
(0.0859713 0.0640302 -1.07908e-19)
(0.124151 0.0906482 8.39235e-20)
(0.15246 0.110306 1.98228e-19)
(0.173 0.124768 -5.57618e-20)
(0.187305 0.135203 5.85554e-20)
(0.196622 0.142382 5.73147e-20)
(0.201995 0.146863 0)
(0.20399 0.149595 0)
(0.203124 0.151392 -1.15387e-19)
(0.0325318 0.0292445 -1.21668e-20)
(0.0794802 0.0698293 1.34955e-19)
(0.11509 0.0993556 -2.72132e-20)
(0.141659 0.121407 0)
(0.161031 0.137839 0)
(0.174538 0.149871 1.11852e-19)
(0.183262 0.1583 0)
(0.1881 0.163616 -1.0992e-19)
(0.189585 0.166476 -1.91436e-21)
(0.188658 0.167958 1.12076e-19)
(0.0297257 0.0313574 0)
(0.0727594 0.0750632 0)
(0.10566 0.10723 -1.07627e-19)
(0.130369 0.131526 0)
(0.148466 0.149906 5.57293e-20)
(0.161066 0.163684 -5.40968e-20)
(0.169012 0.173825 0)
(0.172921 0.181109 0)
(0.17344 0.186278 -1.0829e-19)
(0.171861 0.19103 2.26817e-19)
(0.026832 0.0332382 0)
(0.0658141 0.0796774 -7.74653e-20)
(0.0959184 0.114192 -2.51272e-20)
(0.11871 0.140553 -1.07509e-19)
(0.135526 0.160807 -5.28354e-20)
(0.147309 0.176359 -1.60936e-19)
(0.154789 0.188298 0)
(0.158592 0.19757 0)
(0.159726 0.204847 0)
(0.159425 0.210903 -9.74464e-22)
(0.0238344 0.0348281 0)
(0.0586694 0.0835876 -2.46745e-20)
(0.0859336 0.120136 5.42064e-20)
(0.106791 0.148342 8.11134e-20)
(0.122358 0.17032 1.40716e-21)
(0.133429 0.187518 1.45176e-21)
(0.140656 0.201043 1.05253e-19)
(0.144664 0.211805 -1.04058e-19)
(0.14645 0.220313 2.07755e-19)
(0.146839 0.226748 -2.20172e-19)
(0.02075 0.0360938 -1.15402e-20)
(0.0513721 0.086726 7.68255e-20)
(0.0757784 0.124969 1.30813e-19)
(0.0947042 0.154763 -1.58241e-19)
(0.109048 0.178255 1.05115e-19)
(0.119462 0.196893 1.04722e-19)
(0.126502 0.211735 -5.36952e-20)
(0.130724 0.223577 2.08711e-19)
(0.132953 0.232821 9.7507e-22)
(0.133792 0.2395 -1.07468e-19)
(0.0176051 0.037007 -1.14741e-20)
(0.0439785 0.0890319 1.24686e-20)
(0.0655282 0.128606 0)
(0.0825312 0.159703 1.31216e-19)
(0.0956717 0.184471 -2.57882e-20)
(0.105451 0.204324 1.00042e-21)
(0.112314 0.220255 -5.08607e-20)
(0.116726 0.232953 -1.53564e-19)
(0.119388 0.242742 -2.07885e-21)
(0.120591 0.249757 1.59957e-19)
(0.014431 0.0375406 0)
(0.0365541 0.0904536 -7.44638e-20)
(0.0552657 0.130981 2.52337e-20)
(0.0703613 0.163079 -7.72454e-20)
(0.0823108 0.188871 2.54779e-20)
(0.0914606 0.209722 -2.98249e-22)
(0.0981366 0.226553 -2.9561e-22)
(0.102704 0.239978 1.0125e-19)
(0.105711 0.250296 -1.48546e-19)
(0.107195 0.257676 1.56068e-19)
(0.0112655 0.0376737 5.53566e-21)
(0.0291761 0.0909542 4.93999e-20)
(0.0450854 0.132045 0)
(0.0582949 0.164835 7.69416e-20)
(0.0690609 0.191398 -7.58721e-20)
(0.0775724 0.213042 -2.56425e-20)
(0.0840326 0.230622 7.52413e-20)
(0.0886966 0.244698 0)
(0.0919558 0.255569 0)
(0.0937422 0.263423 0)
(0.00815299 0.0373938 -5.52116e-21)
(0.0219328 0.0905157 -1.8146e-20)
(0.0350951 0.131779 2.47759e-20)
(0.0464486 0.164944 3.77867e-20)
(0.0560392 0.192028 3.8228e-20)
(0.0638997 0.214271 2.4904e-20)
(0.070112 0.232473 0)
(0.0748223 0.247154 4.92807e-20)
(0.0782825 0.258622 -2.35897e-20)
(0.0804041 0.267069 0)
(0.00514176 0.0366943 0)
(0.0149229 0.0891377 3.60858e-20)
(0.0254165 0.130183 -2.47717e-20)
(0.0349582 0.16341 -2.50494e-20)
(0.0433886 0.190763 -1.99406e-22)
(0.050589 0.213421 -1.26599e-20)
(0.0565257 0.232127 1.21618e-20)
(0.0612432 0.247372 0)
(0.064871 0.259462 -2.37751e-20)
(0.0673324 0.268582 -2.50987e-20)
(0.00228379 0.0356024 6.65017e-22)
(0.0082546 0.0868608 -1.34398e-20)
(0.0161872 0.1273 -1.57418e-21)
(0.0239817 0.160271 -6.86515e-23)
(0.0312809 0.187643 -9.35531e-21)
(0.0378216 0.210528 0)
(0.0434626 0.229619 -1.21592e-20)
(0.0481559 0.245373 0)
(0.0519208 0.258087 0)
(0.0546996 0.26793 0)
)
;
boundaryField
{
inlet
{
type uniformFixedValue;
uniformValue constant (1 0 0);
value uniform (1 0 0);
}
outlet
{
type pressureInletOutletVelocity;
value nonuniform List<vector>
40
(
(0.278113 0.297694 0)
(0.329903 0.417067 0)
(0.356859 0.514915 0)
(0.357674 0.589969 0)
(0.335026 0.646345 0)
(0.293907 0.689914 0)
(0.239659 0.725086 0)
(0.17666 0.753424 0)
(0.108112 0.774183 0)
(0.0364022 0.785468 0)
(0.236074 0.214061 -6.17846e-24)
(0.217754 0.178014 -8.90792e-22)
(0.198493 0.141536 9.56566e-22)
(0.1783 0.10509 1.11522e-21)
(0.157888 0.0692874 -1.29644e-21)
(0.137542 0.035036 0)
(0 0.00334571 0)
(0 -0.0257271 0)
(0 -0.0528933 0)
(0 -0.0784578 0)
(0 -0.102578 0)
(0 -0.125288 0)
(0 -0.146611 0)
(0 -0.166595 0)
(0 -0.185316 0)
(0 -0.20287 0)
(0 -0.219374 0)
(0 -0.234958 0)
(0 -0.249764 0)
(0 -0.263951 0)
(0 -0.296544 0)
(0 -0.351599 0)
(0 -0.409556 0)
(0 -0.47057 0)
(0 -0.536433 0)
(0 -0.60892 0)
(0 -0.68749 0)
(0 -0.766469 0)
(0 -0.833571 0)
(0 -0.872932 0)
)
;
}
cylinder
{
type fixedValue;
value uniform (0 0 0);
}
top
{
type symmetryPlane;
}
bottom
{
type symmetryPlane;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
| [
"henry.rossiter@utexas.edu"
] | henry.rossiter@utexas.edu | |
6769c22045d1d065544c9a0ec911f20b86534d78 | 88ae8695987ada722184307301e221e1ba3cc2fa | /third_party/pdfium/fxjs/xfa/cfxjse_value_embeddertest.cpp | c1e810b7bea172b443838ed34a16782a2ce671b6 | [
"BSD-3-Clause",
"Apache-2.0",
"LGPL-2.0-or-later",
"MIT",
"GPL-1.0-or-later"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 1,346 | cpp | // Copyright 2019 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "fxjs/xfa/cfxjse_value.h"
#include <memory>
#include <utility>
#include <vector>
#include "fxjs/xfa/cfxjse_engine.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/xfa_js_embedder_test.h"
class CFXJSE_ValueEmbedderTest : public XFAJSEmbedderTest {};
TEST_F(CFXJSE_ValueEmbedderTest, Empty) {
ASSERT_TRUE(OpenDocument("simple_xfa.pdf"));
auto pValue = std::make_unique<CFXJSE_Value>();
EXPECT_TRUE(pValue->IsEmpty());
EXPECT_FALSE(pValue->IsUndefined(isolate()));
EXPECT_FALSE(pValue->IsNull(isolate()));
EXPECT_FALSE(pValue->IsBoolean(isolate()));
EXPECT_FALSE(pValue->IsString(isolate()));
EXPECT_FALSE(pValue->IsNumber(isolate()));
EXPECT_FALSE(pValue->IsObject(isolate()));
EXPECT_FALSE(pValue->IsArray(isolate()));
EXPECT_FALSE(pValue->IsFunction(isolate()));
}
TEST_F(CFXJSE_ValueEmbedderTest, EmptyArrayInsert) {
ASSERT_TRUE(OpenDocument("simple_xfa.pdf"));
// Test inserting empty values into arrays.
auto pValue = std::make_unique<CFXJSE_Value>();
std::vector<std::unique_ptr<CFXJSE_Value>> vec;
vec.push_back(std::move(pValue));
CFXJSE_Value array;
array.SetArray(isolate(), vec);
EXPECT_TRUE(array.IsArray(isolate()));
}
| [
"jengelh@inai.de"
] | jengelh@inai.de |
8093da734b806cbf583f09abffd071af144b518b | d6c3e4f9985582fa054c268bdccf40909b1cbae9 | /lib/TimeDate/TimeDate.cpp | 192ebceb1427accfa9937ee6b7bd1fd40e5edd10 | [] | no_license | Gabriele266/Sveglia | db688f70063664432bcc0bb81f81cb87d0e537c0 | d9f5b13ce17388217d52acf9535f2b0786a3c29f | refs/heads/main | 2023-02-03T00:43:22.899449 | 2020-12-23T14:24:14 | 2020-12-23T14:24:14 | 306,837,092 | 1 | 0 | null | null | null | null | IBM852 | C++ | false | false | 2,238 | cpp | /*
* Autore:
* Versione:
* Descrizione:
* Progetto:
*
*/
#ifndef TIMEDATE_CPP
#define TIMEDATE_CPP
#include "TimeDate.h"
TimeDate::TimeDate()
{
//ctor
hour = 0;
minute = 0;
second = 0;
day = 0;
month = 0;
year = 0;
}
TimeDate::TimeDate(int hh, int mm, int ss, int dd, int mt, int yy){
hour = hh;
minute = mm;
second = ss;
day = dd;
month = mt;
year = yy;
}
bool TimeDate::isEqual(TimeDate *time){
if(hour == time->getHour()&& minute == time->getMinute()
){
// Sono uguali
return true;
}
else{
return false;
}
}
void TimeDate::getByRtc(DateTime dt){
hour = (int) dt.hour();
minute = (int) dt.minute();
second = (int) dt.second();
day = (int) dt.day();
month = (int) dt.month();
year = (int) dt.year();
// Leggo il giorno della settimana
day_of_the_week = dt.dayOfTheWeek();
}
void TimeDate::getFormTime(char res[], bool show_sec = false){
// COntiene il risultato
char buf[5];
char buf_2[5];
char buf_3[5];
// Metto le ore
itoa(getHour(), buf, 10);
itoa(getMinute(), buf_2, 10);
//itoa(getSecond(), buf_3, 10);
strcpy(res, buf);
strcat(res, ":");
strcat(res, buf_2);
if (show_sec) {
// Aggiungo i secondi
strcat(res, ":");
//strcat(res, buf_3);
}
}
void TimeDate::getFormDate(char res[11], bool show_sec = false) {
// COntiene il risultato
char buf[5];
char buf_2[5];
char buf_3[5];
// Metto le ore
itoa(getDay(), buf, 10);
itoa(getMonth(), buf_2, 10);
itoa(getYear(), buf_3, 10);
strcpy(res, buf);
strcat(res, "/");
strcat(res, buf_2);
// Aggiungo i secondi
strcat(res, "/");
strcat(res, buf_3);
}
char* TimeDate::getDayOfTheWeek(bool strict = true) {
if (strict) {
switch (day_of_the_week) {
case 0:
return "Dom";
case 1:
return "Lun";
case 2:
return "Mar";
case 3:
return "Mer";
case 4:
return "Gio";
case 5:
return "Ven";
case 6:
return "Sab";
};
}
else {
switch (day_of_the_week) {
case 0:
return "Domenica";
case 1:
return "Lunedý";
case 2:
return "Martedý";
case 3:
return "Mercoledý";
case 4:
return "Giovedý";
case 5:
return "Venerdý";
case 6:
return "Sabato";
};
}
}
#endif | [
"gabri.cabal@gmail.com"
] | gabri.cabal@gmail.com |
bffe82abff9627d155c44ee133b8353f4bb7ba8d | 4532fa078ca998d5cf207bf5998cf782600daada | /hicn-light/src/hicn/test/test-strategy-random.cc | bd9b70120ea57f3c584fd8c1ee874628b38b2afb | [
"Apache-2.0"
] | permissive | FDio/hicn | 962fc63a35f769057da8f82ff4d5be5ca44dc233 | 7b4936a1ab300c09cda0a8dba49932ae08f2a6f5 | refs/heads/master | 2023-08-18T23:59:42.489807 | 2023-02-23T10:21:55 | 2023-02-23T10:25:37 | 170,204,780 | 58 | 29 | Apache-2.0 | 2019-09-09T09:15:42 | 2019-02-11T21:25:18 | C | UTF-8 | C++ | false | false | 4,527 | cc | /*
* Copyright (c) 2021 Cisco and/or its affiliates.
* 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 <gtest/gtest.h>
#include <gmock/gmock.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>
#include <netinet/in.h>
extern "C" {
#define WITH_TESTS
#include <hicn/core/strategy.h>
#include <hicn/core/strategy_vft.h>
#include <hicn/strategies/random.h>
}
#define MAX_TESTS 10
#define NEXTHOP_ID NEXTHOP(28)
#define UNKNOWN_ID1 NEXTHOP(0)
#define UNKNOWN_ID2 NEXTHOP(1)
class StrategyRandomTest : public ::testing::Test {
protected:
StrategyRandomTest() {
/* Strategy and strategy entry */
entry = {
.type = STRATEGY_TYPE_RANDOM,
.options =
{
.random = {},
},
.state = {.random = {}},
};
strategy_initialize(&entry, nullptr);
/* Available nexthops */
available_nexthops_ = NEXTHOPS_EMPTY;
EXPECT_EQ(nexthops_get_len(&available_nexthops_), (size_t)0);
/* Message buffer */
msgbuf_ = NULL;
ticks_ = ticks_now();
}
virtual ~StrategyRandomTest() {}
strategy_entry_t entry;
nexthops_t available_nexthops_;
msgbuf_t* msgbuf_;
Ticks ticks_;
};
TEST_F(StrategyRandomTest, SingleNexthop) {
off_t id;
/* Add a single nexthop */
id = nexthops_add(&available_nexthops_, NEXTHOP_ID);
EXPECT_EQ(nexthops_get_len(&available_nexthops_), (size_t)1);
EXPECT_EQ(nexthops_get_curlen(&available_nexthops_), (size_t)1);
strategy_add_nexthop(&entry, &available_nexthops_, id);
EXPECT_EQ(nexthops_get_len(&available_nexthops_), (size_t)1);
EXPECT_EQ(nexthops_get_curlen(&available_nexthops_), (size_t)1);
EXPECT_TRUE(nexthops_contains(&available_nexthops_, NEXTHOP_ID));
EXPECT_FALSE(nexthops_contains(&available_nexthops_, UNKNOWN_ID1));
EXPECT_FALSE(nexthops_contains(&available_nexthops_, UNKNOWN_ID2));
/* Lookup */
nexthops_t* nexthops;
nexthops = strategy_lookup_nexthops(&entry, &available_nexthops_, msgbuf_);
EXPECT_EQ(nexthops_get_len(nexthops), (size_t)1);
EXPECT_EQ(nexthops_get_curlen(nexthops), (size_t)1);
EXPECT_TRUE(nexthops_contains(nexthops, NEXTHOP_ID));
EXPECT_FALSE(nexthops_contains(nexthops, UNKNOWN_ID1));
EXPECT_FALSE(nexthops_contains(nexthops, UNKNOWN_ID2));
/* Retrieve candidate */
unsigned nexthop;
for (unsigned i = 0; i < MAX_TESTS; i++) {
nexthop = nexthops_get_one(nexthops);
EXPECT_EQ(nexthop, NEXTHOP_ID);
}
/* Disable (move to nexthop unit tests) */
nexthops_disable(nexthops, 0);
EXPECT_EQ(nexthops_get_len(nexthops), (size_t)1);
EXPECT_EQ(nexthops_get_curlen(nexthops), (size_t)0);
nexthop = nexthops_get_one(nexthops);
EXPECT_EQ(nexthop, INVALID_NEXTHOP);
}
TEST_F(StrategyRandomTest, MultipleNexthops) {
off_t id;
/* Add a single nexthop */
id = nexthops_add(&available_nexthops_, NEXTHOP_ID);
EXPECT_EQ(nexthops_get_len(&available_nexthops_), (size_t)1);
EXPECT_EQ(nexthops_get_curlen(&available_nexthops_), (size_t)1);
strategy_add_nexthop(&entry, &available_nexthops_, id);
EXPECT_EQ(nexthops_get_len(&available_nexthops_), (size_t)1);
EXPECT_EQ(nexthops_get_curlen(&available_nexthops_), (size_t)1);
EXPECT_TRUE(nexthops_contains(&available_nexthops_, NEXTHOP_ID));
EXPECT_FALSE(nexthops_contains(&available_nexthops_, UNKNOWN_ID1));
EXPECT_FALSE(nexthops_contains(&available_nexthops_, UNKNOWN_ID2));
/* Lookup */
nexthops_t* nexthops;
nexthops = strategy_lookup_nexthops(&entry, &available_nexthops_, msgbuf_);
EXPECT_EQ(nexthops_get_len(nexthops), (size_t)1);
EXPECT_EQ(nexthops_get_curlen(nexthops), (size_t)1);
EXPECT_TRUE(nexthops_contains(nexthops, NEXTHOP_ID));
EXPECT_FALSE(nexthops_contains(nexthops, UNKNOWN_ID1));
EXPECT_FALSE(nexthops_contains(nexthops, UNKNOWN_ID2));
/* Retrieve candidate */
unsigned nexthop;
for (unsigned i = 0; i < MAX_TESTS; i++) {
nexthop = nexthops_get_one(nexthops);
EXPECT_EQ(nexthop, NEXTHOP_ID);
}
}
| [
"msardara@cisco.com"
] | msardara@cisco.com |
ff2671c0abdb7476beaff77eaf1ae0e17acb5f81 | a475755b0ef23e4df99fd9df627f7fb882788a46 | /SpriteLib3.0/SpriteLib3.0/Selectable.cpp | 1fa96502793739a015c4b810b915d54f552dd069 | [] | no_license | SirMouthAlot/SpriteLib3.0 | 999e5c080e0615ba912cf2e6ac91f59b4d9c90bc | fcb7c0285bcaa2f1c0509885e141d5536d790a80 | refs/heads/master | 2020-07-11T12:18:09.187339 | 2019-11-25T01:00:07 | 2019-11-25T01:00:07 | 204,536,909 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 488 | cpp | #include "Selectable.h"
Selectable::Selectable(std::string name)
{
m_selected = new bool(true);
m_name = name;
}
Selectable::~Selectable()
{
if (m_selected != nullptr)
{
delete m_selected;
m_selected = nullptr;
}
}
bool* Selectable::GetSelected() const
{
return m_selected;
}
std::string Selectable::GetName() const
{
return m_name;
}
void Selectable::SetSelected(bool selected)
{
*m_selected = selected;
}
void Selectable::SetName(std::string name)
{
m_name = name;
}
| [
"nicholas.juniper@uoit.net"
] | nicholas.juniper@uoit.net |
35e04d2dce1ad226d6aacf922f40fd1f2dcecb3f | 2cd60b01300c3404e3cd08a6a30626535b365f5e | /src/FlatTiler.h | 27aef2905c558ca1305c2cccbc52552dee973204 | [
"Apache-2.0"
] | permissive | dave-estes-UNC/nddiwall | a800156331c70d5bba52ae125924b6ddea2181a4 | d0aa94abdb8ba490e44f5a3c66444557f7542e70 | refs/heads/master | 2020-03-19T16:57:20.353781 | 2019-03-13T21:38:38 | 2019-03-13T21:38:38 | 136,737,945 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,301 | h | #ifndef FLAT_TILER_H
#define FLAT_TILER_H
/*
* FlatTiler.h
* pixelbridge
*
* Created by Dave Estes on 11/26/10.
* Copyright 2010 Dave Estes. All rights reserved.
*
*/
#include "Tiler.h"
using namespace nddi;
using namespace std;
/**
* This tiler will split provided frames into tiles and update the NDDI display. It organizes the
* display into dimensions matching the tile size in the x and y directions. If a tile changes, then it
* is updated in the frame volume.
*/
class FlatTiler : public Tiler {
public:
/**
* The FlatTiler is created based on the dimensions of the NDDI display that's passed in. If those
* dimensions change, then the CachedTiler should be destroyed and re-created.
*
* @param display_width The width of the display
* @param display_height The height of the display
* @param tile_width The width of the tiles
* @param tile_height The height of the tiles
* @param bits The number of most significant bits to use when computing checksums for a tile match
*/
FlatTiler(size_t display_width, size_t display_height,
size_t tile_width, size_t tile_height,
size_t bits,
string file = "");
~FlatTiler() {
tile_map_.clear();
}
/**
* Returns the Display created and initialized by the tiler.
*/
virtual NDimensionalDisplayInterface* GetDisplay();
/**
* Update the tile_map, tilecache, and then the NDDI display based on the frame that's passed in.
*
* @param buffer Pointer to the return frame buffer
* @param width The width of that frame buffer
* @param height The height of that frame buffer
*/
void UpdateDisplay(uint8_t* buffer, size_t width, size_t height);
private:
void InitializeCoefficientPlanes();
#ifndef USE_COPY_PIXEL_TILES
void UpdateFrameVolume(Pixel* pixels, int i_map, int j_map);
#endif
NDimensionalDisplayInterface* display_;
size_t display_width_, display_height_;
size_t tile_width_, tile_height_;
size_t tile_map_width_, tile_map_height_;
size_t bits_;
bool quiet_;
vector< vector<unsigned long> > tile_map_;
int unchanged_tiles_, tile_updates_;
};
#endif // FLAT_TILER_H
| [
"cdestes@cs.unc.edu"
] | cdestes@cs.unc.edu |
1093c830007f87d588f08eb1f9be9d43af1893a5 | a2a2c9bb2efef68d43bda0f7347469e39fc43070 | /examples/000/myFirstSolution/App1/stdafx.cpp | 60892f0a463f52788fb1343ded00eda682672df0 | [
"CC-BY-4.0"
] | permissive | Obywatelecki/CppTraining | df8d1762960a497a8d52a1574905c066e3c0426f | 70b55433ba521b5ee90d7c32d45be1038abce2da | refs/heads/master | 2021-01-19T05:47:48.714254 | 2017-03-29T00:02:07 | 2017-03-29T00:02:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 283 | cpp | // stdafx.cpp : source file that includes just the standard includes
// App1.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"jacek.banaszczyk@gmail.com"
] | jacek.banaszczyk@gmail.com |
dea862fef2b74f09bdb868c1ff8cdeb2872a2fb1 | 4009fd02960e98bc207d5f28a9330e0578b41d71 | /Entities/ShelfController.cpp | 7129c421700935ab3fe49d0e13ad722c082096ba | [] | no_license | HoangGiang93/Restcpp | d028c4dfd0af0bf77d80462f328f536f9055f9af | 1c3735cf46ba33918aed0f6e711e41a29dd06b25 | refs/heads/master | 2023-01-24T23:58:15.894826 | 2020-11-20T01:13:03 | 2020-11-20T01:13:03 | 312,075,654 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,700 | cpp | #pragma once
#include "StoreController.cpp"
class ShelfController : public EntityController
{
private:
StoreController* store_controller;
std::string store_id;
public:
ShelfController(const char*);
bool set_store(const std::string&);
Json::Value get_shelf(const std::string&);
bool post_shelf(const std::string &, const Json::Value&);
bool post_shelf(const Json::Value&);
bool delete_shelf(const std::string&, const std::string&, const std::string&);
bool delete_shelf(const std::string&);
Json::Value get_shelves(const std::string&);
Json::Value get_shelves();
};
ShelfController::ShelfController(const char* link) : EntityController::EntityController(link)
{
store_controller = new StoreController(link);
}
bool ShelfController::set_store(const std::string& store_id)
{
Json::Value store = this->store_controller->get_store(store_id);
if(store["id"].toStyledString() == store_id)
{
this->store_id = store_id;
return true;
}
else
{
std::cout << "Store with given Id does not exist" << std::endl;
return false;
}
}
Json::Value ShelfController::get_shelf(const std::string& shelf_id)
{
std::string link_tail = "/shelves/" + shelf_id;
return this->get_entity(link_tail);
}
bool ShelfController::post_shelf(const std::string& store_id, const Json::Value& shelf)
{
return this->set_store(store_id) && this->post_shelf(shelf);
}
bool ShelfController::post_shelf(const Json::Value& shelf)
{
if (shelf["cadPlanId"].isString() &&
shelf["depth"].isNumeric() &&
shelf["externalReferenceId"].isString() &&
shelf["height"].isNumeric() &&
shelf["orientationY"].isNumeric() &&
shelf["orientationYaw"].isNumeric() &&
shelf["orientationZ"].isNumeric() &&
shelf["orientationx"].isNumeric() &&
shelf["positionX"].isNumeric() &&
shelf["positionY"].isNumeric() &&
shelf["positionZ"].isNumeric() &&
shelf["productGroupId"].isNumeric() &&
shelf["storeId"].isNumeric() &&
shelf["width"].isNumeric())
{
std::string link_tail = "/stores/" + this->store_id + "/shelves";
return this->post_entity(shelf, link_tail);
}
else
{
std::cout << "Invalid Shelf" << std::endl;
return false;
}
}
bool ShelfController::delete_shelf(const std::string& shelf_id)
{
std::string link_tail = "/shelves/" + shelf_id;
return this->delete_entity(link_tail);
}
Json::Value ShelfController::get_shelves(const std::string& store_id)
{
return this->set_store(store_id) ? this->get_shelves() : Json::Value();
}
Json::Value ShelfController::get_shelves()
{
std::string link_tail = "/stores/" + this->store_id + "/shelves";
return this->get_entity(link_tail);
} | [
"hoanggia@uni-bremen.de"
] | hoanggia@uni-bremen.de |
8f1eaffae57bf7eee20278f6672a364643c2fe3d | a24fffc79e4065e473075d6a9b8a5cf4cd74042b | /C++/Basic/Array/4.Program to search for an element in an array using linear search.cpp | e30c4cee9100c0d2cc4debf2ddbf2797c89e09b1 | [] | no_license | ProshantaDebnath/CP-chapter | 47d87201688d9394644cd2b8f88446d769bc57be | 6484ee810b5604cb16de37507f9d2b87384d8ed8 | refs/heads/main | 2023-08-14T19:16:59.805517 | 2021-09-19T14:25:37 | 2021-09-19T14:25:37 | 396,922,175 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 587 | cpp |
#include<iostream>
using namespace std;
int linearsearch(int arr[], int x,int n){
int i;
for(i = 0; i < n; i++)
if(arr[i]== x)
return i;
return -1;
}
int main(){
int arr[] = { 2, 3, 4, 10, 40 };
int n = sizeof(arr) / sizeof(int);
int x;
cout << "Enter the element want to search : " ;
cin >> x;
int result = linearsearch(arr, x, n);
(result == -1)
? cout << "Element does not exists."
: cout << "Search item present at index :" << result;
return 0;
}
//The time complexity of the above algorithm is O(n).
| [
"noreply@github.com"
] | noreply@github.com |
12cabfb29e259c025a4ae8c064e525d3a5b793e1 | 9558931a00e05c6199bb95291edfeb52655b5264 | /Game With Sticks.cpp | 31c389bd027abff95cb6c39b7e966e4249aeb2e9 | [] | no_license | Tithi-Paul/Codeforces | c43f7c877c1e72cfd20f62c652ddb43915af14b4 | 9a88010e980a4576cbf008ca7e9e38a466c3c961 | refs/heads/master | 2020-12-19T12:51:24.455470 | 2020-07-11T20:40:23 | 2020-07-11T20:40:23 | 235,738,968 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 233 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int n, m, res, flag=0;
cin >> n >> m;
res =min(n, m);
if(res%2==0)
cout << "Malvika" << endl;
else
cout << "Akshat" << endl;
}
| [
"noreply@github.com"
] | noreply@github.com |
9804a4c33cafbcf7fd7da537395ea35ef2942052 | 83a1c351084eed5b3835093151cf2aaec6cba758 | /Object-Oriented_code/Data_Structures/TestCases/TestCases/doubleHash.h | fbd6ef07c8dee083e58117dddf8ca610aaa82c7c | [] | no_license | zuhaibasad/source_code_world | f584e9ae555444bb56668141fa8857c806fd79c3 | 3cf4c6d0fb6762694c7e1a65d48696fa155d0e26 | refs/heads/master | 2021-04-15T07:12:28.893526 | 2018-07-30T14:49:43 | 2018-07-30T14:49:43 | 126,864,942 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 574 | h | #include <string.h>
class DoubleHash
{
private:
long tableSize;
string *hashTable; // Include your linked list class for this!
int a; // input to the hash function
int collisions;
public:
DoubleHash(int A);
void Load(char* file);
long getSize();
void resize();
void insertItem(string Word); // Takes a hash of 'Word' and inserts it into hashTable accordingly
int hash1(string);
int hash2(string);
string lookUp(string Word); // Looks for 'Word' and if found, returns it
int Collisions(); // Return number of collisions in hashTable.
}; | [
"noreply@github.com"
] | noreply@github.com |
a22dda74415116f97b672f556dd1623b0c003aec | 0335c37bd16d4f01a8f234f043df4ee2ee02cfa2 | /src/offb_node.cpp | 8d64a5bc7545ed8bafaff67ed3fbe4587ad09d88 | [
"MIT"
] | permissive | solderneer/offb-test | 3ba0a8b2ab96f776f18b256fe8a5f43f4ba7a8fa | a336b5afb346a85431c4789884edbdac627177c1 | refs/heads/master | 2021-09-05T09:29:50.500297 | 2018-01-26T03:29:13 | 2018-01-26T03:29:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,443 | cpp | // Totally written by me
#include <ros/ros.h>
#include <geometry_msgs/PoseStamped.h>
#include <mavros_msgs/CommandBool.h>
#include <mavros_msgs/SetMode.h>
#include <mavros_msgs/State.h>
mavros_msgs::State current_state;
void state_cb(const mavros_msgs::State::ConstPtr& msg){
current_state = *msg;
}
int main(int argc, char **argv)
{
ros::init(argc, argv, "offb_node");
ros::NodeHandle nh;
ros::Subscriber state_sub = nh.subscribe<mavros_msgs::State>
("mavros/state", 10, state_cb);
ros::Publisher local_pos_pub = nh.advertise<geometry_msgs::PoseStamped>
("mavros/setpoint_position/local", 10);
ros::ServiceClient arming_client = nh.serviceClient<mavros_msgs::CommandBool>
("mavros/cmd/arming");
ros::ServiceClient set_mode_client = nh.serviceClient<mavros_msgs::SetMode>
("mavros/set_mode");
//the setpoint publishing rate MUST be faster than 2Hz
ros::Rate rate(20.0);
// wait for FCU connection
while(ros::ok() && !current_state.connected){
ros::spinOnce();
rate.sleep();
}
geometry_msgs::PoseStamped pose;
pose.pose.position.x = 0;
pose.pose.position.y = 0;
pose.pose.position.z = 2;
//send a few setpoints before starting
for(int i = 100; ros::ok() && i > 0; --i){
local_pos_pub.publish(pose);
ros::spinOnce();
rate.sleep();
}
mavros_msgs::SetMode offb_set_mode;
offb_set_mode.request.custom_mode = "OFFBOARD";
mavros_msgs::CommandBool arm_cmd;
arm_cmd.request.value = true;
ros::Time last_request = ros::Time::now();
while(ros::ok()){
if( current_state.mode != "OFFBOARD" &&
(ros::Time::now() - last_request > ros::Duration(5.0))){
if( set_mode_client.call(offb_set_mode) &&
offb_set_mode.response.mode_sent){
ROS_INFO("Offboard enabled");
}
last_request = ros::Time::now();
} else {
if( !current_state.armed &&
(ros::Time::now() - last_request > ros::Duration(5.0))){
if( arming_client.call(arm_cmd) &&
arm_cmd.response.success){
ROS_INFO("Vehicle armed");
}
last_request = ros::Time::now();
}
}
local_pos_pub.publish(pose);
ros::spinOnce();
rate.sleep();
}
return 0;
}
| [
"sudhar393@gmail.com"
] | sudhar393@gmail.com |
d1bb340c2e36ad47c411a26cf2b5c6596bf72d89 | 850a39e68e715ec5b3033c5da5938bbc9b5981bf | /drgraf4_0/DataBase/SolidLoadPage.h | 7f2f9076bdd1d5091691c3f16c7e5fe32a397cc8 | [] | no_license | 15831944/drProjects | 8cb03af6d7dda961395615a0a717c9036ae1ce0f | 98e55111900d6a6c99376a1c816c0a9582c51581 | refs/heads/master | 2022-04-13T12:26:31.576952 | 2020-01-04T04:18:17 | 2020-01-04T04:18:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,841 | h | #if !defined(AFX_SOLID_LOAD_H__F121306C_72EF_11D2_8B46_444553540000__INCLUDED_)
#define AFX_SOLID_LOAD_H__F121306C_72EF_11D2_8B46_444553540000__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// Solid_Load.h : header file
//
#include "DrStatic.h"
#include "Def_StaL.h"
#include "DrSolid.h"
#include "DbRsrc.h"
/////////////////////////////////////////////////////////////////////////////
// CSolidLoadPage dialog
class CSolidLoadPage : public CPropertyPage
{
DECLARE_DYNCREATE(CSolidLoadPage)
// Construction
public:
CSolidLoadPage();
~CSolidLoadPage();
// Dialog Data
//{{AFX_DATA(CSolidLoadPage)
enum { IDD = IDD_NODE_LOAD };
CString m_LoadType;
double m_TX;
double m_RX;
double m_TY;
double m_RY;
double m_TZ;
double m_RZ;
BOOL m_bSkewed;
CString m_CreateBase;
//}}AFX_DATA
int UpdateObjData(CString& strItemID);
protected:
int UpdateCombo(CDListMgr* pList, UINT DlgComboID);
void FillLinearStaticLoadInfo(CDrStatic* pStatic);
void GetCreateBase(CString& strCreateBase,CDrStatic* pStatic);
void FillLoadType(STALPROC stalproc);
protected:
CDrSolid* m_pCurrentObject;
// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(CSolidLoadPage)
public:
virtual BOOL OnSetActive();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CSolidLoadPage)
afx_msg void OnSelchangeStalcombo();
afx_msg void OnSelchangeSpelcombo();
afx_msg void OnSelchangeDynlcombo();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SOLID_LOAD_H__F121306C_72EF_11D2_8B46_444553540000__INCLUDED_)
| [
"sray12345678@gmail.com"
] | sray12345678@gmail.com |
081c4df0544d385506d8921f7c47c32c27cea7fc | a4a8b5555a2807a8ec76e1ab343eb087c02d8cff | /LintCode/Advance/Week5/Related/150_Best_Time_to_Buy_and_Sell_Stock_II.cpp | cf4b8d3d23d49c0a9c2d58b2bbd92fa7beb93c49 | [] | no_license | ZSShen/IntrospectiveProgramming | 83267843d0d70d8f1882e29aff0c395ff2c3f7bc | 011954e2b1bf3cf9d0495100d4b2053f89b7ac64 | refs/heads/master | 2020-12-03T05:24:28.529360 | 2019-12-13T07:24:48 | 2019-12-13T07:24:48 | 37,024,879 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 899 | cpp | class Solution {
public:
/**
* @param prices: Given an integer array
* @return: Maximum profit
*/
int maxProfit(vector<int> &prices) {
// write your code here
/**
* 1 7 2 4 5 6 1
*
* *
* * *
* * * *
* * * * *
* * * * *
* * * * * *
* * * * * * * *
* _____________
*
*/
int n = prices.size();
if (n == 0) {
return 0;
}
int ans = 0;
int bgn = 0, end = 1;
while (end < n) {
if (prices[end] >= prices[end - 1]) {
++end;
continue;
}
ans += prices[end - 1] - prices[bgn];
bgn = end;
++end;
}
ans += prices[end - 1] - prices[bgn];
return ans;
}
}; | [
"andy.zsshen@gmail.com"
] | andy.zsshen@gmail.com |
115a934e3355d8c46a11b7c433bf7581808c5855 | d93159d0784fc489a5066d3ee592e6c9563b228b | /JetMETCorrections/TauJet/src/TauJetCorrector.cc | 2aa26b96faff00aeb7ebeb50e6097d405c91893e | [] | permissive | simonecid/cmssw | 86396e31d41a003a179690f8c322e82e250e33b2 | 2559fdc9545b2c7e337f5113b231025106dd22ab | refs/heads/CAallInOne_81X | 2021-08-15T23:25:02.901905 | 2016-09-13T08:10:20 | 2016-09-13T08:53:42 | 176,462,898 | 0 | 1 | Apache-2.0 | 2019-03-19T08:30:28 | 2019-03-19T08:30:24 | null | UTF-8 | C++ | false | false | 6,941 | cc | #include "JetMETCorrections/TauJet/interface/TauJetCorrector.h"
#include "FWCore/ParameterSet/interface/FileInPath.h"
#include "FWCore/Framework/interface/Event.h"
#include "DataFormats/Common/interface/Handle.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include <vector>
#include <fstream>
#include <sstream>
using namespace std;
double TauJetCorrector::ParametrizationTauJet::value(double et, double eta)const{
double x=et;
double etnew(et);
double etabound = (*theEtabound.find(type)).second;
std::vector<double> taus = (*theParam.find(type)).second;
if ( fabs(eta) > etabound) {
//cout << " ===> ETA outside of range - CORRECTION NOT DONE ***" << endl;
//cout << " eta = " << eta <<" pt = " << et << " etabound "<<etabound<<endl;
return et;
}
//cout << "correction parameters: " << taus[0] << " " << taus[1] << " " << taus[2] << endl;
switch(type){
case 1:
{
etnew = 2*(x-taus[0])/(taus[1]+sqrt(taus[1]*taus[1]-4*taus[0]*taus[2]+4*x*taus[2]));
break;
}
case 2:
{
etnew = 2*(x-taus[0])/(taus[1]+sqrt(taus[1]*taus[1]-4*taus[0]*taus[2]+4*x*taus[2]));
break;
}
case 3:
{
etnew = 2*(x-taus[0])/(taus[1]+sqrt(taus[1]*taus[1]-4*taus[0]*taus[2]+4*x*taus[2]));
break;
}
default:
edm::LogError("TauJetCorrector: Error: unknown parametrization type ") << type << " in TauJetCorrector. No correction applied" << endl;
//cerr<<"TauJetCorrector: Error: unknown parametrization type '"<<type<<"' in TauJetCorrector. No correction applied"<<endl;
break;
}
return etnew;
}
class JetCalibrationParameterSetTauJet{
public:
JetCalibrationParameterSetTauJet(string tag);
int neta(){return etavector.size();}
double eta(int ieta){return etavector[ieta];}
int type(int ieta){return typevector[ieta];}
const vector<double>& parameters(int ieta){return pars[ieta];}
bool valid(){return etavector.size();}
private:
vector<double> etavector;
vector<int> typevector;
vector< vector<double> > pars;
};
JetCalibrationParameterSetTauJet::JetCalibrationParameterSetTauJet(string tag){
std::string file="JetMETCorrections/TauJet/data/"+tag+".txt";
edm::FileInPath f1(file);
std::ifstream in( (f1.fullPath()).c_str() );
// if ( f1.isLocal() ){
//cout << " Start to read file "<<file<<endl;
string line;
while( std::getline( in, line)){
if(!line.size() || line[0]=='#') continue;
istringstream linestream(line);
double par;
int type;
linestream>>par>>type;
//cout<<" Parameter eta = "<<par<<" Type= "<<type<<endl;
etavector.push_back(par);
typevector.push_back(type);
pars.push_back(vector<double>());
while(linestream>>par)pars.back().push_back(par);
}
// }
// else
// cout<<"The file \""<<file<<"\" was not found in path \""<<f1.fullPath()<<"\"."<<endl;
}
TauJetCorrector::TauJetCorrector(const edm::ParameterSet& fConfig)
{
type = fConfig.getParameter<int>("TauTriggerType");
setParameters (fConfig.getParameter <std::string> ("tagName"),type);
}
TauJetCorrector::~TauJetCorrector()
{
for(ParametersMap::iterator ip=parametrization.begin();ip!=parametrization.end();ip++) delete ip->second;
}
void TauJetCorrector::setParameters(std::string aCalibrationType, int itype)
{
//cout<< " Start to set parameters "<<endl;
type = itype;
JetCalibrationParameterSetTauJet pset(aCalibrationType);
if((!pset.valid()) && (aCalibrationType!="no"))
{
edm::LogError( "TauJetCorrector:Jet Corrections not found ")<<aCalibrationType<<
" not found! Cannot apply any correction ... For JetPlusTrack calibration only radii 0.5 and 0.7 are included for JetParton" << endl;
return;
}
if (aCalibrationType=="no") return;
map<int,vector<double> > pq;
map<int,vector<double> > pg;
map<int,vector<double> > pqcd;
map<int,double > etaboundx;
int iq = 0;
int ig = 0;
int iqcd = 0;
int mtype = 0;
for(int ieta=0; ieta<pset.neta();ieta++)
{
if( pset.type(ieta) == 1 ) {pq[iq] = pset.parameters(ieta); iq++; mtype=(int)(pset.type(ieta));}
if( pset.type(ieta) == 2 ) {pg[ig] = pset.parameters(ieta); ig++; mtype=(int)(pset.type(ieta));}
if( pset.type(ieta) == 3 ) {pqcd[iqcd] = pset.parameters(ieta);iqcd++;mtype=(int)(pset.type(ieta));}
if( pset.type(ieta) == -1 ) {etaboundx[mtype-1] = pset.eta(ieta);}
}
//cout<<" Number of parameters "<<iq<<" "<<ig<<" "<<iqcd<<endl;
int mynum = 0;
for(int ieta=0; ieta<pset.neta();ieta++)
{
//cout<<" New parmetrization "<<ieta<<" "<<pset.type(ieta)<<endl;
if ( pset.type(ieta) == -1 ) continue;
if( ieta < iq+1)
{
parametrization[pset.eta(ieta)]=new ParametrizationTauJet(pset.type(ieta),(*pq.find(ieta)).second,
(*etaboundx.find(0)).second);
//cout<<" ALL "<<ieta<<" "<<((*pq.find(ieta)).second)[0]<<" "<<((*pq.find(ieta)).second)[1]<<" "<<
//((*pq.find(ieta)).second)[2]<<endl;
}
if( ieta > iq && ieta < iq + ig + 2 )
{
mynum = ieta - iq - 1;
parametrization[pset.eta(ieta)]=new ParametrizationTauJet(pset.type(ieta),(*pg.find(mynum)).second,
(*etaboundx.find(1)).second);
//cout<<" One prong "<<((*pg.find(mynum)).second)[0]<<" "<<((*pg.find(mynum)).second)[1]<<" "<<
//((*pg.find(mynum)).second)[2]<<endl;
}
if( ieta > iq + ig + 1)
{
mynum = ieta - iq - ig - 2;
//cout<<" Mynum "<<mynum<<" "<<ieta<<" "<<pset.type(ieta)<<endl;
parametrization[pset.eta(ieta)]=new ParametrizationTauJet(pset.type(ieta),(*pqcd.find(mynum)).second,
(*etaboundx.find(2)).second);
//cout<<" Two prongs "<<((*pqcd.find(mynum)).second)[0]<<" "<<((*pqcd.find(mynum)).second)[1]<<" "<<
//((*pqcd.find(mynum)).second)[2]<<endl;
}
}
//cout<<" Parameters inserted into mAlgorithm "<<endl;
}
double TauJetCorrector::correction( const LorentzVector& fJet) const
{
//cout<<" Start Apply Corrections "<<endl;
if(parametrization.empty()) { return 1.; }
double et=fJet.Et();
double eta=fabs(fJet.Eta());
//cout<<" Et and eta of jet "<<et<<" "<<eta<<endl;
double etnew;
std::map<double,ParametrizationTauJet*>::const_iterator ip=parametrization.upper_bound(eta);
etnew=(--ip)->second->value(et,eta);
//cout<<" The new energy found "<<etnew<<" "<<et<<endl;
float mScale = etnew/et;
return mScale;
}
double TauJetCorrector::correction(const reco::Jet& fJet) const {
return correction(fJet.p4());
}
| [
"giulio.eulisse@gmail.com"
] | giulio.eulisse@gmail.com |
5a441e02ba2d97a943e95521e655bf61818f83be | f8d7adaafce582d185300ce6f19b3538c8c6cfd4 | /actionGameSample/Rule.cpp | 88699735a36e3d63f4970fcdf2030a8c8a1d86ce | [] | no_license | syumai22/Geme_syuzi_ishi | 381f3011bb88c898fcfe9b8e2129a7a1d19e2ba7 | 97894bf688c48ca16060a23c32ace79cd168a655 | refs/heads/master | 2020-05-21T13:25:25.352321 | 2019-05-18T00:57:00 | 2019-05-18T00:57:00 | 186,071,176 | 0 | 0 | null | 2019-05-18T03:18:41 | 2019-05-11T00:45:14 | C++ | SHIFT_JIS | C++ | false | false | 2,541 | cpp | #include"Header.h"
// 初期化.
void Rule::InitRule()
{
gameStartTime = 0;
state = STATE_INIT;
gameStartTime = 0;
prevKeyInput = 0;
frameCount = 0;
keyOn = false;
prevKeyOn = false;
keyRelease = false;
}
// ステート切り替え.
void Rule::ChangeState(Player *player,Enemy *enemy,Map *map,Sound *sound,int pstate)
{
// 即座に切り替わりすぎるので、ちょっと時間を止める.
WaitTimer(STATE_CHANGE_WAIT);
// ステートが切り替わった瞬間はキー離した判定をリセット.
keyOn = false;
keyRelease = false;
state = pstate;
switch (state)
{
case STATE_INIT:
enemy->InitEnemy();
// タイトル.
case STATE_TITLE:
break;
// ゲーム中.
case STATE_GAME:
gameStartTime = GetNowCount();
player->InitPlayer();
enemy->InitEnemy();
map->InitMap();
break;
// クリア画面.
case STATE_CLEAR:
break;
// ゲームオーバー.
case STATE_GAMEOVER:
default:
break;
}
}
// アップデート.
void Rule::UpdateRule(Player *player, Enemy *enemy,Map *map, Sound *sound,Rule *rule)
{
// キー離した瞬間を取る.
if (keyOn)
{
if (CheckHitKey(KEY_INPUT_SPACE) == 0)
{
keyOn = false;
keyRelease = true;
}
}
else if (prevKeyOn == false && CheckHitKey(KEY_INPUT_SPACE) == 1)
{
keyRelease = false;
keyOn = true;
}
if (CheckHitKey(KEY_INPUT_SPACE) == 11)
{
prevKeyOn = true;
}
else
{
prevKeyOn = false;
}
// ステートごとに処理をわける.
switch (state)
{
// タイトル.
case STATE_TITLE:
if (keyRelease)
{
PlaySoundMem(sound->Decision, DX_PLAYTYPE_BACK);
if(frameCount%20==0)
{
ChangeState(player,enemy,map,sound,STATE_GAME);
}
}
break;
// ゲーム中.
case STATE_GAME:
if (player->y == 224 && player->x <= 128)
{
ChangeState(player, enemy, map, sound, STATE_CLEAR);
}
else if ( player->hp <= 0|| GetNowCount() - gameStartTime > LIMIT_TIME_COUNT * 1000)
{
ChangeState(player, enemy, map, sound, STATE_GAMEOVER);
}
break;
// クリア画面.
case STATE_CLEAR:
if (keyRelease)
{
PlaySoundMem(sound->Decision, DX_PLAYTYPE_BACK);
if (frameCount % 20 == 0)
{
ChangeState(player, enemy, map, sound, STATE_INIT);
}
}
break;
// ゲームオーバー.
case STATE_GAMEOVER:
if (keyRelease)
{
PlaySoundMem(sound->Decision, DX_PLAYTYPE_BACK);
if (frameCount % 20 == 0)
{
ChangeState(player, enemy, map, sound, STATE_INIT);
}
}
break;
default:
break;
}
}
| [
"bg76yf@gmail.com"
] | bg76yf@gmail.com |
1f09cc9c59742c63a53ca254b216fbfff588dff1 | 7ea37716cff11c15fed0774ea9b1ae56708adcf3 | /domains/car_track_ui/domain_ui.cpp | 0fd3f69d194b699b48b7bd28059390f24e451a72 | [
"Apache-2.0"
] | permissive | tlemo/darwin | ee9ad08f18c6cda057fe4d3f14347ba2aa228b5b | 669dd93f931e33e501e49155d4a7ba09297ad5a9 | refs/heads/master | 2022-03-08T14:45:17.956167 | 2021-04-16T23:07:58 | 2021-04-16T23:07:58 | 157,114,747 | 105 | 21 | Apache-2.0 | 2021-02-09T18:15:23 | 2018-11-11T19:46:24 | C++ | UTF-8 | C++ | false | false | 1,157 | cpp | // Copyright 2019 The Darwin Neuroevolution Framework Authors.
//
// 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 "domain_ui.h"
#include "sandbox_window.h"
#include <core/darwin.h>
#include <core/logging.h>
#include <memory>
using namespace std;
namespace car_track_ui {
void init() {
darwin::registry()->domains_ui.add<Factory>("car_track");
}
QWidget* Factory::newSandboxWindow() {
auto sandbox_window = make_unique<SandboxWindow>();
if (!sandbox_window->setup()) {
core::log("Failed to setup the new sandbox window\n\n");
sandbox_window.reset();
}
return sandbox_window.release();
}
} // namespace car_track_ui
| [
"lemo1234@gmail.com"
] | lemo1234@gmail.com |
d08c61172c9bf81c0b9abb6740a86445df125076 | 7e791eccdc4d41ba225a90b3918ba48e356fdd78 | /chromium/src/components/html_viewer/replicated_frame_state.h | 93b9f3f27e2bd8d5b5a7d0513139a079e0783160 | [
"BSD-3-Clause"
] | permissive | WiViClass/cef-3.2623 | 4e22b763a75e90d10ebf9aa3ea9a48a3d9ccd885 | 17fe881e9e481ef368d9f26e903e00a6b7bdc018 | refs/heads/master | 2021-01-25T04:38:14.941623 | 2017-06-09T07:37:43 | 2017-06-09T07:37:43 | 93,824,379 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,400 | h | // 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.
#ifndef COMPONENTS_HTML_VIEWER_REPLICATED_FRAME_STATE_H_
#define COMPONENTS_HTML_VIEWER_REPLICATED_FRAME_STATE_H_
#include <stdint.h>
#include "mojo/public/cpp/bindings/array.h"
#include "mojo/public/cpp/bindings/map.h"
#include "mojo/public/cpp/bindings/string.h"
#include "third_party/WebKit/public/platform/WebString.h"
#include "third_party/WebKit/public/web/WebSandboxFlags.h"
#include "third_party/WebKit/public/web/WebTreeScopeType.h"
#include "url/origin.h"
namespace html_viewer {
// Stores state shared with other frames in the tree.
struct ReplicatedFrameState {
public:
ReplicatedFrameState();
~ReplicatedFrameState();
blink::WebString name;
url::Origin origin;
blink::WebSandboxFlags sandbox_flags;
blink::WebTreeScopeType tree_scope;
};
// Sets |state| from |properties|.
void SetReplicatedFrameStateFromClientProperties(
const mojo::Map<mojo::String, mojo::Array<uint8_t>>& properties,
ReplicatedFrameState* state);
// Sets |properties| from |state|.
void ClientPropertiesFromReplicatedFrameState(
const ReplicatedFrameState& state,
mojo::Map<mojo::String, mojo::Array<uint8_t>>* properties);
} // namespace html_viewer
#endif // COMPONENTS_HTML_VIEWER_REPLICATED_FRAME_STATE_H_
| [
"1480868058@qq.com"
] | 1480868058@qq.com |
f3ceafd6b1330592cdc59d21ea0563d8a0e74d2a | 45cdede7d3a4208e5581412c7b1a54751a1fd701 | /hw2/p1-matmul/matmul.cpp | 8d1a6f0d0441e4efd1b1cde865db293b97e98983 | [] | no_license | AtonDev/cs194 | a06846060c97cedb3de8c745bf39503dd324d8f2 | 9a2b907304a3810c943e77697013b1d3926af4d2 | refs/heads/master | 2021-01-23T08:38:30.301314 | 2013-10-30T02:45:45 | 2013-10-30T02:45:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 166 | cpp | void matmuld(double **a, double **b, double **c)
{
for(int i=0;i<1024;i++)
for(int k=0;k<1024;k++)
for(int j=0;j<1024;j++)
c[i][j] += a[i][k]*b[k][j];
}
| [
"pacifico.arturo@gmail.com"
] | pacifico.arturo@gmail.com |
7531db4f6442303122bc715e5d42004d6ae5ba40 | 359eae0d72f8b42222c43c10e7d5aca2e6af3de5 | /data-structure-algorithm/heap/Heap.h | fc8a10c667d58203b49409343c003d37626508aa | [] | no_license | CunjunWang/imooc-algorithm | 8608189aec8b9dbc2b3fa5b33ac08d4342755ad3 | b0c5fa1dfe39a245a45508db1148ce3005a19bd1 | refs/heads/master | 2020-06-12T16:48:48.415925 | 2019-12-19T02:04:57 | 2019-12-19T02:04:57 | 193,909,682 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,172 | h | //
// Created by 王存俊 on 2019-07-22.
//
#ifndef HEAP_HEAP_H
#define HEAP_HEAP_H
#include <algorithm>
#include <cassert>
#include <cmath>
using namespace std;
template<typename Item>
class MaxHeap {
private:
Item *data;
int count;
int capacity;
void shiftUp(int k) {
while (k > 1 && data[k / 2] < data[k]) {
swap(data[k / 2], data[k]);
k /= 2;
}
}
void shiftDown(int k) {
// k节点必须有child
// 由于heap是完全二叉树, 只要判断是否有left child
// left child的index是2k
while (2 * k <= count) {
int j = 2 * k;
if (j + 1 <= count && data[j + 1] > data[j]) {
j += 1;
}
if (data[k] >= data[j]) {
break;
}
swap(data[k], data[j]);
k = j;
}
}
void putNumberInLine(int num, string &line, int index_cur_level, int cur_tree_width, bool isLeft) {
int sub_tree_width = (cur_tree_width - 1) / 2;
int offset = index_cur_level * (cur_tree_width + 1) + sub_tree_width;
assert(offset + 1 < line.size());
if (num >= 10) {
line[offset + 0] = '0' + num / 10;
line[offset + 1] = '0' + num % 10;
} else {
if (isLeft)
line[offset + 0] = '0' + num;
else
line[offset + 1] = '0' + num;
}
}
void putBranchInLine(string &line, int index_cur_level, int cur_tree_width) {
int sub_tree_width = (cur_tree_width - 1) / 2;
int sub_sub_tree_width = (sub_tree_width - 1) / 2;
int offset_left = index_cur_level * (cur_tree_width + 1) + sub_sub_tree_width;
assert(offset_left + 1 < line.size());
int offset_right = index_cur_level * (cur_tree_width + 1) + sub_tree_width + 1 + sub_sub_tree_width;
assert(offset_right < line.size());
line[offset_left + 1] = '/';
line[offset_right + 0] = '\\';
}
public:
MaxHeap(int capacity) {
// 从 index = 1 开始存储所以要 +1
data = new Item[capacity + 1];
count = 0;
this->capacity = capacity;
}
MaxHeap(Item arr[], int n) {
data = new Item[n + 1];
capacity = n;
for (int i = 0; i < n; i++) {
data[i + 1] = arr[i];
}
count = n;
for (int i = count / 2; i >= 1; i--) {
shiftDown(i);
}
};
~MaxHeap() {
delete[] data;
}
int size() {
return count;
}
bool isEmpty() {
return count == 0;
}
void insert(Item item) {
assert(count + 1 <= capacity);
data[count + 1] = item;
count++;
shiftUp(count);
}
Item extractMax() {
assert(count > 0);
Item ret = data[1];
swap(data[1], data[count]);
count--;
shiftDown(1);
return ret;
}
// 以树状打印整个堆结构
void testPrint() {
// 我们的testPrint只能打印100个元素以内的堆的树状信息
if (size() >= 100) {
cout << "This print function can only work for less than 100 int";
return;
}
// 我们的testPrint只能处理整数信息
if (typeid(Item) != typeid(int)) {
cout << "This print function can only work for int item";
return;
}
cout << "The max heap size is: " << size() << endl;
cout << "Data in the max heap: ";
for (int i = 1; i <= size(); i++) {
// 我们的testPrint要求堆中的所有整数在[0, 100)的范围内
assert(data[i] >= 0 && data[i] < 100);
cout << data[i] << " ";
}
cout << endl;
cout << endl;
int n = size();
int max_level = 0;
int number_per_level = 1;
while (n > 0) {
max_level += 1;
n -= number_per_level;
number_per_level *= 2;
}
int max_level_number = int(pow(2, max_level - 1));
int cur_tree_max_level_number = max_level_number;
int index = 1;
for (int level = 0; level < max_level; level++) {
string line1 = string(max_level_number * 3 - 1, ' ');
int cur_level_number = min(count - int(pow(2, level)) + 1, int(pow(2, level)));
bool isLeft = true;
for (int index_cur_level = 0; index_cur_level < cur_level_number; index++, index_cur_level++) {
putNumberInLine(data[index], line1, index_cur_level, cur_tree_max_level_number * 3 - 1, isLeft);
isLeft = !isLeft;
}
cout << line1 << endl;
if (level == max_level - 1)
break;
string line2 = string(max_level_number * 3 - 1, ' ');
for (int index_cur_level = 0; index_cur_level < cur_level_number; index_cur_level++)
putBranchInLine(line2, index_cur_level, cur_tree_max_level_number * 3 - 1);
cout << line2 << endl;
cur_tree_max_level_number /= 2;
}
}
};
#endif //HEAP_HEAP_H
| [
"13621691063@163.com"
] | 13621691063@163.com |
80c7bfbe64ade0264a9868c35d5e0fe09ecbbf83 | 1ed6811e77d874c43dac37bcb7d1a96973ebe0de | /include/eye.h | 9781aa0522cd393e44aa16bd279e9872a2b65ba3 | [
"Apache-2.0"
] | permissive | lynus/sns | 370746f511b8f2d3f9adb3327564f5e99053ea63 | 623825108fe01f941ef3b18927c620dd03a545b5 | refs/heads/master | 2021-01-01T16:25:48.412306 | 2014-05-23T03:00:38 | 2014-05-23T03:00:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 512 | h | #pragma once
#include "cinder/Vector.h"
#include "cinder/Camera.h"
using namespace ci;
Vec3f screenToWorld(float x, float y, float z=0.0f);
class eye {
public:
static eye * get(){return instance;};
eye(){instance=this;};
void init(Vec3f _pos,float ratio);
void setClose(float z_delta);
void update();
void setPos(int dir, float delta);
void reset();
void convertMouse(float &mx, float &my);
enum{
VERTICAL =0,
HORIZONAL =1
};
Vec3f pos;
float scale;
bool need_update;
static eye *instance;
};
| [
"lynuszhu@gmail.com"
] | lynuszhu@gmail.com |
6ea8bd2b9fce43f78cd5c15f76d98ac020d6c0db | 25085b171b2745c8023386cc933dd6e6aea03731 | /kuriyama_mirai_stones.cpp | 7127ea80eef72d0a76bb4797f9ba9a54cd586a8e | [] | no_license | PranitChawla/ACM-ICPC-Regionals-Codes | 73407458252342d14b52f13c0e0130f97952ef11 | f4bd2eaf823f6f4564460e469edac0db46a1c2d6 | refs/heads/master | 2020-06-15T05:42:17.615334 | 2019-08-15T23:25:18 | 2019-08-15T23:25:18 | 195,217,262 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 590 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
int main()
{
ll n;
cin>>n;
ll a[n+1];
ll b[n+1];
for (ll i=1;i<=n;i++)
{
cin>>a[i];
b[i]=a[i];
}
sort(b+1,b+n+1);
ll dp1[n+1];
ll dp2[n+1];
dp1[0]=0;
dp2[0]=0;
for (ll i=1;i<=n;i++)
{
if (i==1)
dp1[i]=a[i];
else
dp1[i]=dp1[i-1]+a[i];
}
for (ll i=1;i<=n;i++)
{
if (i==1)
dp2[i]=b[i];
else
dp2[i]=dp2[i-1]+b[i];
}
ll m;
cin>>m;
for (ll i=0;i<m;i++)
{
ll t,u,v;
cin>>t>>u>>v;
if (t==1)
{
cout<<dp1[v]-dp1[u-1]<<endl;
}
else
cout<<dp2[v]-dp2[u-1]<<endl;
}
} | [
"pranitchawla98@gmail.com"
] | pranitchawla98@gmail.com |
ac1122031b9ade085b2bf85f5d41a6cfc27bd82e | 1cdab8751f93ced1954c78890ff7cac4059bc5a3 | /src/index/concurrent_table.cpp | 99a6fc07893a9ba3b9527796fdfbb55224043f18 | [
"Apache-2.0",
"BSL-1.0",
"BSD-3-Clause",
"BSD-2-Clause",
"MIT"
] | permissive | sekikn/LineairDB | 6f52d8b1be5a4ff6ca8654c5a86b4af7a02aca31 | 3d29cd414080bc5f17819acdf91041896f6824f3 | refs/heads/master | 2022-06-05T13:05:28.641718 | 2020-04-30T09:28:25 | 2020-04-30T09:28:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,333 | cpp | /*
* Copyright (C) 2020 Nippon Telegraph and Telephone 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.
*/
#include "concurrent_table.h"
#include <lineairdb/config.h>
#include <functional>
#include "impl/mpmc_concurrent_set_impl.h"
#include "types.h"
namespace LineairDB {
namespace Index {
ConcurrentTable::ConcurrentTable(Config config, WriteSetType recovery_set) {
switch (config.concurrent_point_index) {
case Config::ConcurrentPointIndex::MPMCConcurrentHashSet:
container_ = std::make_unique<MPMCConcurrentSetImpl>();
break;
default:
container_ = std::make_unique<MPMCConcurrentSetImpl>();
break;
}
if (recovery_set.empty()) return;
for (auto& entry : recovery_set) {
container_->Put(entry.key, entry.index_cache);
}
}
ConcurrentTable::~ConcurrentTable() {
container_->ForAllWithExclusiveLock(
[](const std::string_view, const DataItem* i) {
assert(i != nullptr);
delete i;
});
container_->Clear();
}
DataItem* ConcurrentTable::Get(const std::string_view key) {
return container_->Get(key);
}
DataItem* ConcurrentTable::GetOrInsert(const std::string_view key) {
auto* item = container_->Get(key);
if (item == nullptr) { return InsertIfNotExist(key); }
return item;
}
// return false if a corresponding entry already exists
bool ConcurrentTable::Put(const std::string_view key, DataItem* value) {
bool success = container_->Put(key, value);
if (!success) delete value;
return success;
}
DataItem* ConcurrentTable::InsertIfNotExist(const std::string_view key) {
auto new_item = new DataItem();
if (Put(key, new_item)) {
return new_item;
} else {
auto* current = Get(key);
assert(current != nullptr);
return current;
}
}
} // namespace Index
} // namespace LineairDB
| [
"nikezono@gmail.com"
] | nikezono@gmail.com |
164b19485a5d2f5427cb4f2e680ca43d815a9a04 | 765681e5c3a5b3f7b8abea3e298b898fd5d10766 | /src/moviereviews.cc | 94f19e52e97746cbeed4cf6f3b43d65f6e08d321 | [] | no_license | ProfKnight/ex04-moviereviews | 4127266d3aa2ecd7692762b71a8f37a66f3a7d2e | ebd061585e64562b3dd66466de0df9cf9d2f5ac1 | refs/heads/master | 2020-03-29T17:02:41.678211 | 2018-09-24T17:28:34 | 2018-09-24T17:28:34 | 150,141,132 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,702 | cc | //
// Created by aknight on 7/25/18.
//
#include <cmath>
#include "moviereviews.h"
namespace edu { namespace vcccd { namespace vc { namespace csv13 {
namespace {
double _computeDistance(const uint8_t *review1, const uint8_t *review2) {
double distance = 0.0;
for (size_t i = 0; i < NUMBER_MOVIES; i++) {
if (review1[i] != 0 && review2[i] != 0) {
double variance = review1[i] - review2[i];
distance += variance * variance;
}
}
return sqrt(distance);
}
}
void predictEmptyReviews(uint8_t reviews[][NUMBER_MOVIES], uint8_t userReviews[], size_t reviewCount) {
if (reviews == nullptr || userReviews == nullptr) return;
double minDistance = MAXFLOAT;
size_t minIndexes[MAX_REVIEWS];
size_t minIndexCount = 0;
for (size_t i = 0; i < MAX_REVIEWS && i < reviewCount; i++) {
double distance = _computeDistance(userReviews, reviews[i]);
if (minDistance > distance) {
minDistance = distance;
minIndexCount = 0;
minIndexes[minIndexCount++] = i;
} else if (minDistance == distance) {
minIndexes[minIndexCount++] = i;
}
}
for (size_t j= 0; j < NUMBER_MOVIES; j++) {
if (userReviews[j] == 0) {
double sum = 0.0;
for (size_t i = 0; i < minIndexCount; i++) {
sum += reviews[minIndexes[i]][j];
}
userReviews[j] = static_cast<uint8_t >(round(sum / minIndexCount));
}
}
}
}}}}
| [
"ahknight@pipeline.sbcc.edu"
] | ahknight@pipeline.sbcc.edu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.