blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 2
247
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 4
111
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-25 18:16:41
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| committer_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| github_id
int64 3.89k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 25
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-03-27 23:40:48
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 159
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
10.5M
| extension
stringclasses 111
values | filename
stringlengths 1
195
| text
stringlengths 7
10.5M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
579c07e7fc267b2ff9008872856fbab0bc728d7f
|
ed32cd8a42421f9ae31cf7bf6b13ee6fe4a7a1bb
|
/main/effects/effectFactory.cpp
|
32ca9bd70c4146f5ad861cf5c5a1e4b2923b15ae
|
[
"MIT"
] |
permissive
|
mirronelli/neopixel
|
78b753c4eccad4b9194cfd1ce9c8448471ac4edc
|
3525fe269c767b92ad0d245efcd8f7701fbf1d63
|
refs/heads/master
| 2021-06-26T18:13:09.867563
| 2021-02-12T11:18:19
| 2021-02-12T11:18:19
| 209,723,620
| 8
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,446
|
cpp
|
effectFactory.cpp
|
#include "effectFactory.h"
#include "effect.h"
#include "stars.h"
#include "solid.h"
#include "police.h"
#include "rainbow.h"
#include "snake.h"
#include <string>
using namespace std;
Effect *EffectFactory::CreateEffect(string effectDefinition, int defaultCount, int defaultDelay)
{
Effect *effect = nullptr;
size_t separatorPos = effectDefinition.find(':');
string effectName = effectDefinition.substr(0, separatorPos);
string effectParameters = separatorPos == string::npos ? "" : effectDefinition.substr(separatorPos + 1, string::npos);
try
{
if (effectName == "snake")
{
effect = CreateSnake(effectParameters, defaultCount, defaultDelay);
}
else if (effectName == "stars")
{
effect = CreateStars(effectParameters, defaultCount, defaultDelay);
}
else if (effectName == "solid")
{
effect = CreateSolid(effectParameters, defaultCount, defaultDelay);
}
else if (effectName == "rainbow")
{
effect = CreateRainbow(effectParameters, defaultCount, defaultDelay);
}
else if (effectName == "police")
{
effect = CreatePolice(effectParameters, defaultCount, defaultDelay);
}
else
{
printf("unknown effect: \"%s\"\n", effectName.c_str());
__throw_invalid_argument("unknown effect");
}
}
catch (std::exception&)
{
printf("error parsing arguments from \"%s\"\n", effectDefinition.c_str());
__throw_invalid_argument("invalid arguments for effect");
}
return effect;
}
Effect *EffectFactory::CreateSnake(string parameters, int defaultCount, int defaultDelay)
{
if (parameters == "")
{
return (Effect *)new Snake(defaultCount, defaultDelay, 32, 8, 255, 0, 0, 0);
}
else
{
ParameterParser parser(parameters);
return (Effect *) new Snake(
parser.GetNextInt(), // led count
parser.GetNextInt(), // frame delay
parser.GetNextInt(), // snake length
parser.GetNextInt(), // snake dimed length
parser.GetNextInt(), // red
parser.GetNextInt(), // green
parser.GetNextInt(), // blue
parser.GetNextInt() // white
);
}
}
Effect *EffectFactory::CreateStars(string parameters, int defaultCount, int defaultDelay)
{
if (parameters == "")
{
return (Effect *)new Stars(defaultCount, defaultDelay, 99'000, 10, 255, 127, 0, 0);
}
else
{
ParameterParser parser(parameters);
return (Effect *) new Stars (
parser.GetNextInt(), // led count
parser.GetNextInt(), // frame delay
parser.GetNextInt(), // new star probability (if random(100 000) > supplied value a new star occurs on a pixel)
parser.GetNextInt(), // fade speed
parser.GetNextInt(), // red
parser.GetNextInt(), // green
parser.GetNextInt(), // blue
parser.GetNextInt() // white
);
}
}
Effect *EffectFactory::CreateSolid(string parameters, int defaultCount, int defaultDelay)
{
if (parameters == "")
{
return (Effect *)new Solid(defaultCount, defaultDelay, 255, 255, 255, 255);
}
else
{
ParameterParser parser(parameters);
return (Effect *) new Solid (
parser.GetNextInt(), // led count
parser.GetNextInt(), // frame delay
parser.GetNextInt(), // red
parser.GetNextInt(), // green
parser.GetNextInt(), // blue
parser.GetNextInt() // white
);
}
}
Effect *EffectFactory::CreateRainbow(string parameters, int defaultCount, int defaultDelay)
{
if (parameters == "")
{
return (Effect *)new Rainbow(defaultCount, defaultDelay, 128);
}
else
{
ParameterParser parser(parameters);
return (Effect *)new Rainbow(
parser.GetNextInt(), // led count
parser.GetNextInt(), // frame delay
parser.GetNextInt() // brighntness
); // brightness
}
}
Effect *EffectFactory::CreatePolice(string parameters, int defaultCount, int defaultDelay)
{
if (parameters == "")
{
return (Effect *)new Police(defaultCount, defaultDelay, 255);
}
else
{
ParameterParser parser(parameters);
return (Effect *) new Police(
parser.GetNextInt(), // led count
parser.GetNextInt(), // frame delay
parser.GetNextInt() // brightness
);
}
}
ParameterParser::ParameterParser(string input) : input(input){}
int ParameterParser::GetNextInt()
{
return stoi(GetNextString());
}
double ParameterParser::GetNextDouble()
{
return stoi(GetNextString());
}
string ParameterParser::GetNextString()
{
size_t to = input.find(";", from);
if (to == string::npos)
{
to = input.length();
}
string result = input.substr(from, to - from);
printf("found param: \"%s\"\n", result.c_str());
from = to + 1;
return result;
}
|
c07dabc2cd1c2f0a3173798e3255c9686ba4c02f
|
ad1f470af681ed5c2156fa806cab354bede41e42
|
/Source/RhythmOfTheDemon/Actors/Components/RandomMovementComponent.h
|
13cab4b43de68ae159ba792f44572fa67b87d0bb
|
[] |
no_license
|
Lawlets/FlowFighter
|
a2e3bce69bd331842562a139f8e739600671051b
|
f98dc08033592e0e4b27801eacf91347c8de1c21
|
refs/heads/master
| 2021-05-27T10:51:01.853660
| 2020-04-09T03:38:03
| 2020-04-09T03:38:03
| 254,255,328
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,105
|
h
|
RandomMovementComponent.h
|
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "RandomMovementComponent.generated.h"
UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) )
class RHYTHMOFTHEDEMON_API URandomMovementComponent : public UActorComponent
{
GENERATED_BODY()
public:
// Sets default values for this component's properties
URandomMovementComponent();
protected:
// Called when the game starts
virtual void BeginPlay() override;
public:
// Called every frame
virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
FVector GetLocalSpaceOffset(FVector forward, FVector up, FVector right);
// FVector GetCurrentOffset() { return m_currentOffset; }
protected:
void ComputeNextOffset();
UPROPERTY(EditAnywhere)
float m_timeBetweenPosition = 1.f;
UPROPERTY(EditAnywhere)
FVector m_distMax;
private:
FVector m_currentOffset;
FVector m_lastOffset;
FVector m_nextOffset;
float m_positionTimer = 0.f;
};
|
ba96957e9ca0ddf26da971129ebc7fe94472cde2
|
e9f686a3d83d5e65479c60ecad1414a31c817a7a
|
/main.cpp
|
4e5bb8eefac959f200da5dc8e8493ba461ecb063
|
[] |
no_license
|
kvu787/rdma_queue
|
8baab1d71f2fbf9a99ea83da991ad964fa32cc55
|
1f9c44b586968a60ea11f3895691ef4edcb12df0
|
refs/heads/master
| 2021-01-01T05:24:22.595096
| 2016-04-26T21:16:15
| 2016-04-26T21:16:15
| 57,162,318
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,193
|
cpp
|
main.cpp
|
// This code uses MPI (Message Passing Interface) to setup RDMA connections
// between 1 consumer node and many producer nodes. It is intended as
// scaffolding for a single-consumer, multi-producer queue over RDMA.
//
// make && srun --label --nodes=5 --ntasks-per-node=1 ./main
#include "verbs_wrap.hpp"
#include <mpi.h>
#include <iostream>
#include <cstdlib>
#include <cstdio>
// MPI_Check should wrap every MPI call to check for an error, print it
// if there is one, and exit.
#define MPI_Check(mpi_call) \
do { \
int retval = (mpi_call); \
if (retval != MPI_SUCCESS ) { \
char error_string[MPI_MAX_ERROR_STRING]; \
int length; \
MPI_Error_string(retval, error_string, &length); \
std::cerr << "MPI call failed: " #mpi_call ": " \
<< error_string << "\n"; \
exit(EXIT_FAILURE); \
} \
} while(0)
// This is used as the tag in each MPI_Send since we don't need tag numbers
// to keep track of anything.
static const int IGNORE_SEND_TAG = 0;
int main(int argc, char **argv) {
// initialize MPI
MPI_Check(MPI_Init(&argc, &argv));
// get total # of nodes in this MPI task
int rank;
MPI_Check(MPI_Comm_rank(MPI_COMM_WORLD, &rank));
int size;
MPI_Check(MPI_Comm_size(MPI_COMM_WORLD, &size));
// setup objects needed by both consumer and producer nodes.
ibv_context *context = CreateContext();
ibv_cq *cq = CreateCompletionQueue(context);
ibv_pd *pd = CreateProtectionDomain(context);
uint16_t lid = GetLid(context);
if (rank == 0) {
// This is code for the consumer.
// create and connect a queue pair for each producer
for (int i = 1; i < size; ++i) {
// create queue pair
ibv_qp *qp = CreateQueuePair(pd, cq);
uint32_t qp_num = qp->qp_num;
// send lid and qp_num
MPI_Check(MPI_Send(&lid, sizeof(uint16_t), MPI_UINT16_T, i, IGNORE_SEND_TAG, MPI_COMM_WORLD));
MPI_Check(MPI_Send(&qp_num, sizeof(uint32_t), MPI_UINT32_T, i, IGNORE_SEND_TAG, MPI_COMM_WORLD));
std::cout << "consumer: sent lid and qp_num " << lid << " " << qp_num << std::endl;
// receive remote lid and qp_num
uint16_t remote_lid;
uint32_t remote_qp_num;
MPI_Check(MPI_Recv(&remote_lid, sizeof(uint16_t), MPI_UINT16_T, i, MPI_ANY_TAG, MPI_COMM_WORLD, MPI_STATUS_IGNORE));
std::cout << "consumer: received lid " << remote_lid << std::endl;
MPI_Check(MPI_Recv(&remote_qp_num, sizeof(uint32_t), MPI_UINT32_T, i, MPI_ANY_TAG, MPI_COMM_WORLD, MPI_STATUS_IGNORE));
std::cout << "consumer: received qp_num " << remote_qp_num << std::endl;
// connect to producer queue pair
ConnectQueuePair(qp, remote_lid, remote_qp_num);
}
std::cout << "consumer: all producer connections succeeded" << std::endl;
} else {
// This is code for the producer
// create queue pair
ibv_qp *qp = CreateQueuePair(pd, cq);
uint32_t qp_num = qp->qp_num;
// send lid and qp_num to consumer
MPI_Check(MPI_Send(&lid, sizeof(uint16_t), MPI_UINT16_T, 0, IGNORE_SEND_TAG, MPI_COMM_WORLD));
MPI_Check(MPI_Send(&qp_num, sizeof(uint32_t), MPI_UINT32_T, 0, IGNORE_SEND_TAG, MPI_COMM_WORLD));
std::cout << "producer: sent lid and qp_num " << lid << " " << qp_num << std::endl;
// receive remote lid and qp_num
uint16_t remote_lid;
uint32_t remote_qp_num;
MPI_Check(MPI_Recv(&remote_lid, sizeof(uint16_t), MPI_UINT16_T, 0, MPI_ANY_TAG, MPI_COMM_WORLD, MPI_STATUS_IGNORE));
std::cout << "producer: received lid " << remote_lid << std::endl;
MPI_Check(MPI_Recv(&remote_qp_num, sizeof(uint32_t), MPI_UINT32_T, 0, MPI_ANY_TAG, MPI_COMM_WORLD, MPI_STATUS_IGNORE));
std::cout << "producer: received qp_num " << remote_qp_num << std::endl;
// connect to consumer queue pair
ConnectQueuePair(qp, remote_lid, remote_qp_num);
std::cout << "producer: connection to consumer succeeded" << std::endl;
}
}
|
37a963c155426fe0d2c36b1b54ea6a288763e6c8
|
8ac522d6d19225ee863a71d124451cf437d662b7
|
/vseros/2018/lvl1/4/simple.cpp
|
5211b8e857bcc4180709674f5d309b1a859b3a08
|
[] |
no_license
|
Soberjan/Study
|
86490ba6fa918e977b9a0514a2604ea055167c3a
|
35ab609290f65fdf144cf2183752b38527f40f16
|
refs/heads/master
| 2020-03-28T17:33:10.175534
| 2020-01-22T17:06:14
| 2020-01-22T17:06:14
| 148,800,521
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 896
|
cpp
|
simple.cpp
|
#include <iostream>
using namespace std;
int n;
int main()
{
//freopen("tests/04", "r", stdin);
cin >> n;
char *s = new char[n];
if (n % 2 == 0)
if (n/2%2 == 0){
for (int i = 0; i < n / 2; i++)
s[i] = s[n - i - 1] = i % 2 == 0 ? '+' : '-';
for (int i = 0; i < n; i++)
cout << s[i];
}
else
cout << "IMPOSSIBLE";
else if (n == 3)
cout << "++-";
else
if ((n-1)/2%2 == 1){
for (int i = 0; i < n / 2; i++)
s[i] = s[n - i - 1] = i % 2 == 0 ? '+' : '-';
s[n/2] = '+';
for (int i = 0; i < n / 2; i++)
if (n - i - 1 - i == n / 2 + 1)
s[n-i-1] = '-';
for (int i = 0; i < n; i++)
cout << s[i];
}
else cout << "IMPOSSIBLE";
return 0;
}
|
ba0d968c31fac8d5671079019a52fb7ebeb3cd58
|
a4618556f7bd7ecb9b8c835b5be6c313e65e65cf
|
/HW/HW5.1/HW5.1/源.cpp
|
7bd6813cf6515abc8d5f0bb4c2e285ff316cffc3
|
[] |
no_license
|
cgccomeau/TsinghuaCpp
|
f4e70eb982cecd350416a1d3f3cddb3a617791db
|
b9711bd83b1013f7f1c35ec6fe4a405f702fc4b0
|
refs/heads/master
| 2022-12-26T11:08:55.546261
| 2020-10-06T02:17:12
| 2020-10-06T02:17:12
| 301,590,023
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 449
|
cpp
|
源.cpp
|
#include <iostream>
using namespace std;
class Width {
public:
static int count;
Width() {
count++;
}
~Width() {
count--;
}
};
int Width::count = 0;
int main()
{
Width w, x;
cout << "#objects = " << w.count << endl;
{
Width w, x, y, z;
cout << "#objects = " << w.count << endl;
}
cout << "#objects = " << w.count << endl;
Width y;
cout << "#objects = " << w.count << endl;
return 0;
}
|
227386fbfbb62cf2f55ae5fd707ee846e429831a
|
09f020bb8060f7e615856cd11c34dfcc3acc499b
|
/1/11.cpp
|
52b45ee02495021683fc96b0af640c9ad6364061
|
[] |
no_license
|
wangzhenbang1999/C-Homework
|
509aa72b38f79e14065e8c0d8409f84409358c05
|
5999e464d077350825501a88ef05b9bdf4dbe646
|
refs/heads/master
| 2020-04-03T05:28:03.472518
| 2018-12-17T07:23:24
| 2018-12-17T07:23:24
| 155,046,772
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 346
|
cpp
|
11.cpp
|
#include<iostream>
#include <string>
//#include <Regex>
using namespace std;
int main() {
// string str = "31312weqe";
// //getline(cin, str);
// regex rx("[0-9]+");
// bool isNum = regex_match(str.begin(), str.end(), rx);
// if (isNum) {
// cout << stoi(str)+1<< endl;
// }else {
// cout << "[Error] not number" << endl;
// }
return 0;
}
|
79e0cfaffe19ebc6322670e558ab3ce7418a561f
|
28f18e6b5ec90ecbe68272ef1572f29c3e9b0a53
|
/include/boost/geometry/strategies/closest_points/spherical.hpp
|
d2846c722dbc8c64a551ccfd503b5783bb35b1f5
|
[
"BSL-1.0"
] |
permissive
|
boostorg/geometry
|
24efac7a54252b7ac25cd2e9154e9228e53b40b7
|
3755fab69f91a5e466404f17f635308314301303
|
refs/heads/develop
| 2023-08-19T01:14:39.091451
| 2023-07-28T09:14:33
| 2023-07-28T09:14:33
| 7,590,021
| 400
| 239
|
BSL-1.0
| 2023-09-14T17:20:26
| 2013-01-13T15:59:29
|
C++
|
UTF-8
|
C++
| false
| false
| 2,027
|
hpp
|
spherical.hpp
|
// Boost.Geometry
// Copyright (c) 2021, Oracle and/or its affiliates.
// Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
// Licensed under the Boost Software License version 1.0.
// http://www.boost.org/users/license.html
#ifndef BOOST_GEOMETRY_STRATEGIES_CLOSEST_POINTS_SPHERICAL_HPP
#define BOOST_GEOMETRY_STRATEGIES_CLOSEST_POINTS_SPHERICAL_HPP
#include <boost/geometry/strategies/spherical/closest_points_pt_seg.hpp>
#include <boost/geometry/strategies/detail.hpp>
#include <boost/geometry/strategies/distance/detail.hpp>
#include <boost/geometry/strategies/closest_points/services.hpp>
#include <boost/geometry/strategies/distance/spherical.hpp>
#include <boost/geometry/util/type_traits.hpp>
namespace boost { namespace geometry
{
namespace strategies { namespace closest_points
{
template
<
typename RadiusTypeOrSphere = double,
typename CalculationType = void
>
class spherical
: public strategies::distance::spherical<RadiusTypeOrSphere, CalculationType>
{
using base_t = strategies::distance::spherical<RadiusTypeOrSphere, CalculationType>;
public:
spherical() = default;
template <typename RadiusOrSphere>
explicit spherical(RadiusOrSphere const& radius_or_sphere)
: base_t(radius_or_sphere)
{}
template <typename Geometry1, typename Geometry2>
auto closest_points(Geometry1 const&, Geometry2 const&,
distance::detail::enable_if_ps_t<Geometry1, Geometry2> * = nullptr) const
{
return strategy::closest_points::cross_track<CalculationType>(base_t::radius());
}
};
namespace services
{
template <typename Geometry1, typename Geometry2>
struct default_strategy
<
Geometry1,
Geometry2,
spherical_equatorial_tag,
spherical_equatorial_tag
>
{
using type = strategies::closest_points::spherical<>;
};
} // namespace services
}} // namespace strategies::closest_points
}} // namespace boost::geometry
#endif // BOOST_GEOMETRY_STRATEGIES_CLOSEST_POINTS_SPHERICAL_HPP
|
bef4c5f58bc3c4efd25f0f75a58069ce557f4b37
|
8e8cdf669786b4d280272868ae3cfb3feac19c59
|
/src/AppModes/AttractModeTimer.cpp
|
819e35de5ff1f4b2bbbab803ea8d6b7a7644db79
|
[
"BSD-2-Clause"
] |
permissive
|
wrld3d/wrld-example-app
|
e1ad99814d80a11ce13d6941543119c989d26704
|
c7622c3ee359b2d06d881d234c780b07a2d0ee58
|
refs/heads/master
| 2022-11-07T23:31:54.091568
| 2022-11-02T15:18:12
| 2022-11-02T15:18:12
| 22,911,969
| 79
| 37
|
BSD-2-Clause
| 2022-11-02T15:18:14
| 2014-08-13T10:33:12
|
C++
|
UTF-8
|
C++
| false
| false
| 525
|
cpp
|
AttractModeTimer.cpp
|
#include "AttractModeTimer.h"
#include "IUserIdleService.h"
namespace ExampleApp
{
namespace AppModes
{
AttractModeTimer::AttractModeTimer(Eegeo::Input::IUserIdleService& userIdleService, const long long attractModeTimeout)
: m_userIdleService(userIdleService)
, m_attractModeTimeout(attractModeTimeout)
{
}
bool AttractModeTimer::IsComplete() const
{
return m_userIdleService.GetUserIdleTimeMs() > m_attractModeTimeout;
}
}
}
|
0cedccc7bf82da13f2b7bb2d805478906de246d9
|
73771669e543af12cdb9200abe9122e8c11e7d4c
|
/pollyMorphism/main.cpp
|
73436d56a1f0a6a385223059741eb55bc18066be
|
[] |
no_license
|
eaglebjkbv/cpp
|
8251166d68a85bb5b11e17fcfea362fb2115196d
|
ff2f4ad0edd272d192a96e0ac72a2d013d04185a
|
refs/heads/master
| 2023-03-16T03:20:03.919056
| 2023-03-14T17:52:50
| 2023-03-14T17:52:50
| 191,027,216
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,065
|
cpp
|
main.cpp
|
#include <iostream>
class Post
{
protected:
int postId;
std::string postReceiver;
std::string postSender;
public:
Post(int postId, std::string postReceiver, std::string postSender)
{
this->postId = postId;
this->postReceiver = postReceiver;
this->postSender = postSender;
}
virtual void send(){
std::cout<<"Post Sent to:"<< postReceiver<<std::endl;
}
};
class Cargo: public Post
{
private:
int weight;
public:
Cargo(int postId, std::string postReceiver, std::string postSender,int weight)
:Post(postId,postReceiver,postSender)
{
this->weight=weight;
}
void send(){
std::cout<<"Cargo Sent to:"<< postReceiver<<" Weight is:"<<weight<<std::endl;
}
};
void SendEveryThing(Post* p){
p->send();
}
int main()
{
Post p=Post(1,"Bulent","Ahmet");
p.send();
Cargo c =Cargo(2,"Serra","Burak",10);
c.send();
Post pp=Post(3,"Serap","Mevlüt");
SendEveryThing(&pp);
Cargo cc=Cargo(4,"Gülen","Filiz",30);
SendEveryThing(&cc);
}
|
2ab8b6c242d0e8effdd1b0cee6bdf137e52ba659
|
91d8ed17883f236eb09e7c122a02bad649fd2d99
|
/Tugas 5/bentukan lain no 9.cpp
|
93d7cadcc8623accfaebf32b8372a8a62a389572
|
[] |
no_license
|
TestCross03/MuhArifSetiaBudi_13020190051
|
b7c3da43a338c03ffc3ed980510c06bbf654edbc
|
57e0973aeeb217b1991c0696e3ca686815f5caaf
|
refs/heads/master
| 2021-07-25T13:54:44.481621
| 2021-03-17T11:00:59
| 2021-03-17T11:00:59
| 245,768,216
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 292
|
cpp
|
bentukan lain no 9.cpp
|
#include <iostream>
using namespace std;
struct orang{
char nama[30];
int umur;
};
void muncul (struct orang *st){
cout << "nama = " << st->nama << endl;
cout <<"umur = " << st->umur;
}
int main(){
struct orang pegawai = {"arif",15};
muncul(&pegawai);
}
|
06d9ed9561d7a48ccbca05edc5295332611fcd8f
|
4e29395020ce78f435e75e0b3f1e09b227f6f4d8
|
/ataraxia/ai-sdk/cpp/src/app/huanyuanka/infer.cpp
|
70e471bd901680a75486c51816f7364a8a17804c
|
[] |
no_license
|
luoyangustc/argus
|
8b332d94af331a2594f5b1715ef74a4dd98041ad
|
2ad0df5d7355c3b81484f6625b82530b38b248f3
|
refs/heads/master
| 2020-05-25T21:57:37.815370
| 2019-05-22T09:42:40
| 2019-05-22T09:42:40
| 188,005,059
| 5
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,158
|
cpp
|
infer.cpp
|
#include "common/infer.hpp"
#include <string>
#include <vector>
#include <opencv2/opencv.hpp>
#include "glog/logging.h"
#include "common/archiver.hpp"
#include "common/image.hpp"
#include "common/protobuf.hpp"
#include "helper.hpp"
#include "inference.hpp"
#include "platform_tensorrt.hpp"
#include "proto/inference.pb.h"
#include "tensord/tensord.hpp"
struct CustomParams {
int gpu_id = 0;
int model_num = 0;
std::string models_prototxt = "/workspace/serving/models.prototxt";
};
template <typename Archiver>
Archiver &operator&(Archiver &ar, CustomParams &p) { // NOLINT
ar.StartObject();
ar.Member("gpu_id") & p.gpu_id;
ar.Member("model_num") & p.model_num;
if (ar.HasMember("models_prototxt")) {
ar.Member("models_prototxt") & p.models_prototxt;
}
return ar.EndObject();
}
template <typename Archiver>
Archiver &operator&(Archiver &ar, tron::mix::ResponseMix &p) { // NOLINT
ar.StartObject();
ar.Member("result");
ar.StartObject();
ar.Member("normal") & p.normal;
ar.Member("march") & p.march;
ar.Member("text") & p.text;
ar.Member("face") & p.face;
ar.Member("bk") & p.bk;
ar.Member("pulp") & p.pulp;
int ni = p.boxes.size();
ar.Member("facenum") & ni;
std::size_t n = p.boxes.size();
std::size_t s4 = 4;
std::size_t s2 = 2;
std::size_t s128 = 128;
ar.Member("faces");
ar.StartArray(&n);
for (std::size_t i = 0; i < p.boxes.size(); i++) {
ar.StartObject();
ar.Member("pts");
int xmin = static_cast<int>(p.boxes[i].xmin),
ymin = static_cast<int>(p.boxes[i].ymin),
xmax = static_cast<int>(p.boxes[i].xmax),
ymax = static_cast<int>(p.boxes[i].ymax);
ar.StartArray(&s4);
ar.StartArray(&s2) & xmin &ymin;
ar.EndArray();
ar.StartArray(&s2) & xmax &ymin;
ar.EndArray();
ar.StartArray(&s2) & xmax &ymax;
ar.EndArray();
ar.StartArray(&s2) & xmin &ymax;
ar.EndArray();
ar.EndArray();
ar.Member("features");
ar.StartArray(&s128);
for (std::size_t j = 0; j < 128; j++) {
ar &p.features[i][j];
}
ar.EndArray();
ar.EndObject();
}
ar.EndArray();
ar.EndObject();
return ar.EndObject();
}
////////////////////////////////////////////////////////////////////////////////
class Config {
public:
int batch_size;
CustomParams params;
};
class Handle {
public:
Handle() = default;
Config config_;
std::shared_ptr<tron::mix::Inference> inference_;
std::vector<char> out_data_;
};
class Context {
public:
Context() = default;
Config config_;
std::shared_ptr<tensord::core::Engines> engines_;
std::vector<Handle *> handles_;
};
////////////////////////////////////////////////////////////////////////////////
thread_local char *_Error_;
const char *QTGetLastError() { return _Error_; }
int QTPredCreate(const void *in_data,
const int in_size,
PredictorContext *out) {
google::InitGoogleLogging("QT");
google::SetStderrLogging(google::INFO);
google::InstallFailureSignalHandler();
LOG(INFO) << "Starting createNet!";
auto ctx = new Context();
Config config;
inference::CreateParams create_params;
bool success = tron::read_proto_from_array(in_data, in_size, &create_params);
if (!success) {
LOG(ERROR) << "Parsing CreateParams Error! " << success;
return 1;
}
config.batch_size = create_params.batch_size();
{
JsonReader jReader(create_params.mutable_custom_params()->c_str());
jReader &config.params;
}
ctx->config_ = config;
{
tensord::core::RegisterPlatform(tron::mix::TensorRT::Create, "tensorrt");
tensord::proto::ModelConfig _config;
std::ifstream t(config.params.models_prototxt);
std::string prototxt((std::istreambuf_iterator<char>(t)),
std::istreambuf_iterator<char>());
auto ok = google::protobuf::TextFormat::ParseFromString(prototxt, &_config);
CHECK_EQ(ok, true) << "Parse model config";
tensord::core::LoadModel(&_config);
// for (int i = 0; i < _config.instance_size(); i++) {
// _config.mutable_instance(i)->set_batchsize(config.batch_size);
// }
ctx->engines_ = std::make_shared<tensord::core::Engines>();
ctx->engines_->Set(_config);
}
*out = ctx;
LOG(INFO) << "Finished createNet!";
return 0;
}
int QTPredHandle(PredictorContext ctx,
const void *, const int,
PredictorHandle *handle) {
LOG(INFO) << "handle begin...";
Context *c = reinterpret_cast<Context *>(ctx);
auto h = new Handle();
h->out_data_ = std::vector<char>(1024 * 1024 * 4);
h->config_ = c->config_;
auto inference_mix = std::make_shared<tron::mix::InferenceMix>();
inference_mix->Setup(c->engines_->Get("mix", 0),
{c->config_.batch_size, 3, 224, 224});
auto inference_fo = std::make_shared<tron::mix::InferenceFO>();
inference_fo->Setup(c->engines_->Get("fo", 0),
{c->config_.batch_size, 3, 48, 48});
auto inference_ff = std::make_shared<tron::mix::InferenceFF>();
inference_ff->Setup(c->engines_->Get("ff", 0),
{c->config_.batch_size, 3, 112, 112});
auto inference = std::make_shared<tron::mix::Inference>();
inference->mix_ = inference_mix;
inference->fo_ = inference_fo;
inference->ff_ = inference_ff;
h->inference_ = inference;
c->handles_.push_back(h);
*handle = h;
LOG(INFO) << "handle done.";
return 0;
}
int QTPredInference(PredictorHandle handle,
const void *in_data, const int in_size,
void **out_data, int *out_size) {
LOG(INFO) << "netInference() start.";
Handle *h = reinterpret_cast<Handle *>(handle);
inference::InferenceRequests requests_;
requests_.ParseFromArray(in_data, in_size);
inference::InferenceResponses responses_;
std::vector<cv::Mat> imgs_mat_;
std::vector<std::string> imgs_attribute_;
// normal processing
for (int n = 0; n < requests_.requests_size(); ++n) {
const auto &req_data = requests_.requests(n).data();
auto *res = responses_.add_responses();
res->set_code(0);
if (req_data.has_body() && !req_data.body().empty()) {
const auto &im_mat = tron::decode_image_buffer(req_data.body());
const std::string im_attr = req_data.attribute();
if (!im_mat.empty()) {
if (im_mat.rows <= 1 || im_mat.cols <= 1) { // image_size Error
res->set_code(tron::mix::tron_error_round(
tron::mix::tron_status_image_size_error));
res->set_message(tron::mix::get_status_message(res->code()));
continue;
} else {
imgs_mat_.push_back(im_mat);
imgs_attribute_.push_back(im_attr);
continue;
}
} else { // decode Error
res->set_code(
tron::mix::tron_error_round(tron::mix::tron_status_imdecode_error));
res->set_message(tron::mix::get_status_message(res->code()));
continue;
}
} else { // request_data_empty Error
res->set_code(tron::mix::tron_error_round(
tron::mix::tron_status_request_data_body_empty));
res->set_message(tron::mix::get_status_message(res->code()));
continue;
}
}
std::vector<tron::mix::ResponseMix> results;
h->inference_->Predict(imgs_mat_, &results);
// set result_json_str
int index = 0;
for (int n = 0; n < requests_.requests_size(); ++n) {
if (responses_.responses(n).code() == 0) {
responses_.mutable_responses(n)->set_code(tron::mix::tron_status_success);
responses_.mutable_responses(n)
->set_message(tron::mix::get_status_message(
tron::mix::tron_status_success));
JsonWriter writer;
writer &results[index++];
responses_.mutable_responses(n)->set_result(writer.GetString());
}
}
auto size = responses_.ByteSize();
CHECK_GE(h->out_data_.size(), size);
responses_.SerializeToArray(&h->out_data_[0], responses_.ByteSize());
*out_data = &h->out_data_[0];
*out_size = responses_.ByteSize();
LOG(INFO) << "inference() finished";
return 0;
}
int QTPredFree(PredictorContext ctx) {
Context *c = reinterpret_cast<Context *>(ctx);
delete c;
return 0;
}
|
35ef945be0ab59514194bcfe1381b1ce8a493c0a
|
2a5d4544cf877439f4d274738750e0bb607d1c72
|
/hackerrank/codeagon 15-16/makethemost.cpp
|
57db6f6877028e22c6a5acd89901752317e0b6c9
|
[] |
no_license
|
shivam215/code
|
65294836832a0eb76a2156a872b1803bb0b68075
|
d70751ca0add4a42a0b91ee8805eda140028452a
|
refs/heads/master
| 2021-01-11T08:32:55.557166
| 2017-09-13T16:00:41
| 2017-09-13T16:00:41
| 76,486,143
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,670
|
cpp
|
makethemost.cpp
|
#include <bits/stdc++.h>
#define inf 1000000000
#define mod 1000000007
#define scano(x) scanf("%d",&x)
#define scanll(x) scanf("%lld",&x)
#define scant(x,y) scanf("%d%d",&x,&y)
#define pb push_back
#define mp make_pair
#define ll long long
#define vi vector<int>
#define pii pair<int,int>
#define vpii vector< pii >
#define rep(i,a,b) for(int i=a;i<b;i++)
#define fe first
#define se second
using namespace std;
pii a[100005];
bool comp(pii c,pii d)
{
if(c.se!=d.se)return c.se<d.se;
return c.fe<d.fe;
}
int main()
{
int n,p;
cin>>n>>p;
for(int i=0;i<p;i++)
{
string s1,s2;
int inh=0,inm=0,outh=0,outm=0,in,out;
cin>>s1>>s2;
int j=0;
while(s1[j]!=':')
{
inh = inh*10 + s1[j]-'0';
j++;
}
j++;
while(j<s1.size())
{
inm = inm*10 + s1[j]-'0';
j++;
}
j=0;
while(s2[j]!=':')
{
outh = outh*10 + s2[j]-'0';
j++;
}
j++;
while(j<s2.size())
{
outm = outm*10 + s2[j]-'0';
j++;
}
if(inh<8)inh=inh+12;
if(outh<8)outh = outh+12;
in = (inh-8)*60+inm;
if(outh==8&&outm==0)outh=20;
out = (outh-8)*60+outm;
a[i].fe=in;a[i].se=out;
//cout<<in<<' '<<out<<endl;
}
sort(a,a+p,comp);
//rep(i,0,p)cout<<a[i].fe<<' '<<a[i].se<<endl;
int ans=0;
set< pii > s;
for(int i=0;i<p;i++)
{
if(s.size()==0)
{
s.insert(mp(a[i].se,i));
ans++;
}
else
{
set< pii >::iterator it;
it = s.lower_bound(mp(a[i].fe,-1));
//cout<<(*it).first<<' '<<(*it).se<<endl;
if(it==s.begin())
{
if((*it).fe==a[i].fe)
{
s.erase(it);
s.insert(mp(a[i].se,i));
ans++;
}
else
{
if(s.size()<n)
{
s.insert(mp(a[i].se,i));
ans++;
}
}
}
else
{
if(it!=s.end()&&(*it).fe==a[i].fe)
{
s.erase(it);
s.insert(mp(a[i].se,i));
ans++;
}
else
{
it--;
s.erase(it);
s.insert(mp(a[i].se,i));
ans++;
}
}
}
}
cout<<ans<<endl;
return 0;
}
|
3449e6539b1d480cb4d13e4794b2282d42d3c5d7
|
99c65edf3225337d5e6a4d3c1dfb7bb7cb76dcbb
|
/src/InverseKinematics/InverseKinematics.h
|
f4a06bd960739d51d653196e13bce2b8cbdc725e
|
[] |
no_license
|
GuyNoimark/Scorbot-Arduino-Code
|
0beb8e8b3ea35834b860bc7930261122d44e31d1
|
b41b402e16baa8f8400006572869058fe9d9d0fe
|
refs/heads/main
| 2023-04-29T01:57:18.205670
| 2021-05-10T13:23:18
| 2021-05-10T13:23:18
| 317,828,030
| 4
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 415
|
h
|
InverseKinematics.h
|
#ifndef kinematics
#define kinematics
#include <Arduino.h>
class InverseKinematics
{
private:
float armLength1 = 22.2;
float armLength2 = 22.2;
float gripperLength = 13.5;
void errorMessage(String message);
public:
float theta0;
float theta1;
bool possibleLocation;
String error = "No error";
InverseKinematics();
void calcAngles(float x, float y, float z, float gripperAngle);
};
#endif
|
02dbb108f3cc3b017f84b9ffc716128dd0014e0c
|
6680f8d317de48876d4176d443bfd580ec7a5aef
|
/Header/misTest/PackageImageRelMatcher.h
|
dcb901f3a3a2d1eb16299c46e3ab1e5e797f1329
|
[] |
no_license
|
AlirezaMojtabavi/misInteractiveSegmentation
|
1b51b0babb0c6f9601330fafc5c15ca560d6af31
|
4630a8c614f6421042636a2adc47ed6b5d960a2b
|
refs/heads/master
| 2020-12-10T11:09:19.345393
| 2020-03-04T11:34:26
| 2020-03-04T11:34:26
| 233,574,482
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 622
|
h
|
PackageImageRelMatcher.h
|
#pragma once
namespace parcast
{
class PackageImageRelMatcher
{
public:
PackageImageRelMatcher(const PackageImageRelationship& data)
: m_PackageImageRel(data)
{
}
bool operator() (const PackageImageRelationship& other)
{
return IsEqual(m_PackageImageRel, other);
}
static bool IsEqual(const PackageImageRelationship& a, const PackageImageRelationship& b)
{
return
a.PackageUid == b.PackageUid &&
a.ImageOpacity == b.ImageOpacity &&
a.ImageVisibility == b.ImageVisibility&&
a.ImageUid == b.ImageUid;
}
private:
const PackageImageRelationship& m_PackageImageRel;
};
}
|
16ce30c74417a069671a0e2ca4ad623230f91e85
|
ccd4d7da1ff39cdffe80b18e5a2ebf9b8d94f546
|
/Client/QColorPicker/QColorViewer.h
|
8b1dab865cc4b621a7fcaf30318617e04ae5b09d
|
[] |
no_license
|
lelou6666/celendel
|
3fcfff7e3249644d3698d0028c5a08c67ecc5ae3
|
ef556f60a5aa1c84bd196a5b372372db29b38814
|
refs/heads/master
| 2021-01-18T16:26:04.616353
| 2012-07-22T20:56:56
| 2012-07-22T20:56:56
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 568
|
h
|
QColorViewer.h
|
#ifndef DEF_COLORVIEWER
#define DEF_COLORVIEWER
#include <QWidget>
#include <QPainter>
#include <QPaintEvent>
class QColorViewer : public QWidget
{
Q_OBJECT
public:
QColorViewer(QWidget *parent = 0);
void setPen(const QPen &pen);
QPen pen() const;
void setColor(const QColor &color);
QColor color() const;
public slots:
void changeColor(const QColor &color);
protected:
void paintEvent(QPaintEvent *event);
private:
QPen actualPen;
QBrush actualBrush;
QColor actualColor;
};
#endif
|
a16dca336f74bbd16aaf3c19557c690df05d29e1
|
624dec6cd817ce5746d2aead0256ec258aa4f80c
|
/cugl/src/audio/CUMusicQueue.h
|
0816bb1eb978ddff3e57c8943884adbe91a11fde
|
[] |
no_license
|
kl4kennylee81/Canon
|
ffb890c52fd25a070305475a9d6514cb8357cfb0
|
002ff16a626cb453d74a889d44084c9100251ea3
|
refs/heads/master
| 2021-11-20T10:28:27.934126
| 2021-10-31T05:55:07
| 2021-10-31T18:50:18
| 83,085,221
| 0
| 0
| null | 2017-09-20T22:45:17
| 2017-02-24T21:43:14
|
C
|
UTF-8
|
C++
| false
| false
| 15,246
|
h
|
CUMusicQueue.h
|
//
// CUMusicQueue.h
// Cornell University Game Library (CUGL)
//
// This module provides support for playing streaming music from MP3, OGG, WAV
// or other files. This class provides a simple channel abstraction that
// hides the platform specific details. Background music is not meant to be
// accessed directly by the user. All interactions should go through the
// AudioEngine.
//
// This file is an internal header. It is not accessible by general users
// of the CUGL API.
//
// This class uses our standard shared-pointer architecture.
//
// 1. The constructor does not perform any initialization; it just sets all
// attributes to their defaults.
//
// 2. All initialization takes place via init methods, which can fail if an
// object is initialized more than once.
//
// 3. All allocation takes place via static constructors which return a shared
// pointer.
//
//
// CUGL zlib License:
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
//
// 2. Altered source versions must be plainly marked as such, and must not
// be misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source distribution.
//
// Author: Walker White
// Version: 12/10/16
//
#ifndef __CU_MUSIC_QUEUE_H__
#define __CU_MUSIC_QUEUE_H__
#include <cugl/audio/CUMusic.h>
#include <deque>
#include <vector>
namespace cugl {
// We use the impl namespace for platform-dependent data.
namespace impl {
/**
* Reference to an platform-specific music player.
*
* We present this as a struct, as it has more type information than a void
* pointer, and is equally safe across C++ and Objective-C boundaries. The
* exact representation of the struct is platform specific.
*/
struct AudioPlayer;
}
/**
* Struct to store playback information in the waiting queue.
*
* This data is independent of the asset. In order to cut down on the number
* of queues to track this data, we package it as a single struct.
*/
typedef struct {
/** The volume to play the music */
float volume;
/** The number of seconds to fade IN the music */
float fade;
/** Whether to loop the music */
bool loop;
} MusicSettings;
#pragma mark -
#pragma mark Music Queue
/**
* Sequential playback queue for streamin audio
*
* A music queue is similar to a sound channel in that it can only play one
* asset at a time. The difference is that music queues can support streaming
* data while sound channels need in-memory PCM (WAV) data.
*
* In general, there is usually only one music queue at a time, representing
* the application background music. The queue allows the user to queue up
* additional tracks ahead of time so that transition from one song to another
* is seamless.
*
* IMPORTANT: For best performance, it is absolutely crucial that all music
* have exactly the same format. The same file format, the same sampling rate,
* the same number of channels. Any change in format requires a reconfiguration
* of the audio engine, and this can cause gaps between songs.
* effects.
*/
class MusicQueue {
private:
/** A reference to the (platform-specific) music player */
impl::AudioPlayer* _player;
/** The music asset for the active music channel */
std::shared_ptr<Music> _music;
/** A copy of the music for garbage collection */
std::shared_ptr<Music> _backgd;
/** The playback settings for the active asset */
MusicSettings _settings;
/** Whether the player is actively playing */
bool _playing;
/** Whether the player is paused (but may still be active) */
bool _paused;
/** The queue for subsequent music loops */
std::deque<std::shared_ptr<Music>> _mqueue;
/** The playback settings for the subsequent music loops */
std::deque<MusicSettings> _squeue;
#pragma mark -
#pragma mark Constructor
public:
/**
* Creates a new MusicQueue
*
* This method simply initializes the default values of the attributes.
* It does not allocate any buffers for processing audio.
*
* NEVER USE A CONSTRUCTOR WITH NEW. If you want to allocate an object on
* the heap, use one of the static constructors instead.
*/
MusicQueue() : _player(nullptr) {}
/**
* Disposes of this playback queue, detaching it from the audio engine.
*/
~MusicQueue() { dispose(); }
/**
* Removes this playback queue from the audio engine.
*
* This method differs from the destructor in that the player can be
* reattached with a subsequent call to init().
*/
void dispose();
/**
* Initializes this playback queue for the audio engine.
*
* This method allocates the necessary buffers for stream processing.
* However, it does not attach this queue to the audio engine. That
* should be done externally.
*
* @return true if the queue was initialized successfully
*/
bool init();
#pragma mark -
#pragma mark Static Constructor
/**
* Returns a newly allocated playback queue for the audio engine.
*
* This method allocates the necessary buffers for stream processing.
* However, it does not attach this queue to the audio engine. That
* should be done externally.
*
* @return a newly allocated playback queue for the audio engine.
*/
static std::shared_ptr<MusicQueue> alloc() {
std::shared_ptr<MusicQueue> result = std::make_shared<MusicQueue>();
return (result->init() ? result : nullptr);
}
#pragma mark -
#pragma mark Asset Management
/**
* Adds the given music asset to the music queue
*
* Music is handled differently from sound effects. Music is streamed
* instead of being pre-loaded, so your music files can be much larger.
* The drawback is that you can only play one music asset at a time.
* However, it is possible to queue music assets for immediate playback
* once the active asset is finished.
*
* If the queue is empty and there is no active music, this method will
* play the music immediately. Otherwise, it will add the music to the
* queue, and it will play as soon as it is removed from the queue.
* When it begins playing, it will start at full volume unless you
* provide a number of seconds to fade in.
*
* Note that looping a song will cause it to block the queue indefinitely
* until you turn off looping for that asset {@see setLoop}. This can be
* desired behavior, as it gives you a way to control the speed of the
* queue processing.
*
* @param music The music asset to play
* @param volume The music volume
* @param loop Whether to loop the music continuously
* @param fade The number of seconds to fade in
*/
void enqueue(const std::shared_ptr<Music>& music, float volume=1.0f, bool loop=false, float fade=0.0f);
/**
* Returns the size of the music queue
*
* @return the size of the music queue
*/
size_t size() const { return _mqueue.size(); }
/**
* Returns the current playing asset for this music queue
*
* @return the current playing asset for this music queue
*/
const std::shared_ptr<Music> getCurrent() const { return _backgd; }
/**
* Returns the current playing asset for this music queue
*
* @return the current playing asset for this music queue
*/
std::shared_ptr<Music> getCurrent() { return _backgd; }
/**
* Returns the (weak) list of assets for the music queue
*
* @return the (weak) list of assets for the music queue
*/
const std::vector<const Music*> getQueue() const;
/**
* Advances ahead in the music queue.
*
* The value step is the number of songs to skip over. A value of 0 will
* simply skip over the active music to the next element of the queue. Each
* value above 0 will skip over one more element in the queue. If this
* skipping empties the queue, no music will play.
*
* @param steps number of elements to skip in the queue
*/
void advance(unsigned int steps=0);
/**
* Clears the music queue, but does not release any other resources.
*
* This method does not stop the current music asset from playing. It
* only clears pending music assets from the queue.
*/
void clear();
#pragma mark -
#pragma mark Playback Control
/**
* Plays the first element in the queue immediately.
*/
void play();
/**
* Pauses the current music asset.
*
* The asset is not marked for deletion and will pick up from where it
* stopped when the music is resumed. If the music is already paused, this
* method will fail.
*
* @return true if the music is successfully paused
*/
bool pause();
/**
* Resumes the current music asset.
*
* If the music was previously paused, this pick up from where it stopped.
* If the music is not paused, this method will fail.
*
* @return true if the music is successfully resumed
*/
bool resume();
/**
* Stops the current music asset and clears the entire queue.
*
* Before the music is stopped, this method gives the user an option to
* fade out the music. If the argument is 0, it will halt the music
* immediately. Otherwise it will fade to completion over the given number
* of seconds.
*
* @param fade The number of seconds to fade out
*/
void stop(float fade=0.0f);
#pragma mark -
#pragma mark Playback Attributes
/**
* Returns true if this queue is currently paused
*
* @return true if this queue is currently paused
*/
bool isPaused() const { return _paused && _playing; }
/**
* Returns true if this queue has been stopped
*
* @return true if this queue has been stopped
*/
bool isStopped() const { return !_playing; }
/**
* Returns the length of the asset being played, in seconds.
*
* This only returns the length of the asset at the head of the queue.
* All other music assets in the queue are ignored.
*
* This information is retrieved from the decoder. As the file is completely
* decoded at load time, the result of this method is reasonably accurate.
*
* @return the length of the asset being played, in seconds.
*/
float getDuration() const;
/**
* Returns the current position of the asset being played, in seconds.
*
* This only returns the position for the asset at the head of the queue.
* All other music assets in the queue are ignored.
*
* This information is not guaranteed to be accurate. Attempting to time
* the playback of streaming data (as opposed to a fully in-memory PCM
* buffer) is very difficult and not cross-platform. We have tried to be
* reasonably accurate, but from our tests we can only guarantee accuracy
* within a 10th of a second.
*
* @return the current position of the asset being played, in seconds.
*/
float getCurrentTime() const;
/**
* Sets the current posiiton of the asset being played, in seconds.
*
* If the sound is paused, this will do nothing until the player is resumed.
* Otherwise, this will stop and restart the sound at the new position.
*
* This only assigns the position for the asset at the head of the queue.
* All other music assets in the queue are ignored.
*
* This information is not guaranteed to be accurate. Attempting to time
* the playback of streaming data (as opposed to a fully in-memory PCM
* buffer) is very difficult and not cross-platform. We have tried to be
* reasonably accurate, but from our tests we can only guarantee accuracy
* within a 10th of a second.
*
* @param time the new position of the player in the audio source
* @param force whether to force the player to play, even if paused
*/
void setCurrentTime(float time, bool force=false);
/**
* Returns the volume (0 to 1) of the asset being played.
*
* This only returns the volume for the asset at the head of the queue.
* All other music assets in the queue are ignored.
*
* @return the volume (0 to 1) of the asset being played.
*/
float getVolume() const { return (_music == nullptr ? 0 : _settings.volume); }
/**
* Sets the volume (0 to 1) of the asset being played.
*
* This only sets the volume for the asset at the head of the queue.
* All other music assets in the queue are ignored.
*
* @param volume the volume (0 to 1) to play the asset.
*/
void setVolume(float volume);
/**
* Returns true if the current sound is in an indefinite loop.
*
* If the value is false, the music will stop at its natural loop point.
*
* This only returns the status for the asset at the head of the queue.
* All other music assets in the queue are ignored.
*
* @return true if the current sound is in an indefinite loop.
*/
bool getLoop() const { return (_music == nullptr ? false : _settings.loop); }
/**
* Sets whether the current sound should play in an indefinite loop.
*
* If loop is false, the music will stop at its natural loop point.
*
* This only assigns the status for the asset at the head of the queue.
* All other music assets in the queue are ignored. Of course, this means
* that the queue may become blocked if the current asset is set to loop
* indefinitely. This can be desired behavior, as it gives you a way to
* control the speed of the queue processing.
*
* @param loop whether the current sound should play in an indefinite loop
*/
void setLoop(bool loop);
};
}
#endif /* __CU_MUSIC_QUEUE_H__ */
|
d1bd09dd063f7b74d58b4f2ff5ce01cbd511bbf5
|
4749946f4decadaeb92e172d9ebea3f9914478a8
|
/cs124_prj03.cpp
|
51ddef3076f5c7bbe504b5dfbc3d5bfc077d56fb
|
[] |
no_license
|
dongchanlim/Cplusplus
|
a5f455802858d8b6af643594fa8307e1d77e8dec
|
739b1d32858345a72a4c6869489866d998d95c6d
|
refs/heads/master
| 2020-06-22T06:56:38.579823
| 2019-07-18T23:41:45
| 2019-07-18T23:41:45
| 197,664,907
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,739
|
cpp
|
cs124_prj03.cpp
|
/***********************************************************************
* Program:
* Project 03, Monthly Budget
* Sister Hansen, CS124
* Author:
* Dongchan Lim
* Summary:
* Displaying a personal monthly finance program to a user.
* Ask a user to input her/his monthly income, living expenses,
* taxes withheld, tithe offerings, and other expenses.
* Then show the report of user's monthly actual expenses
* and budgeted living expenses.
* Estimated: 0.1 hrs
* Actual: 0.1 hrs
* There was nothing complex or diffult to solve.
************************************************************************/
#include <iostream>
#include <iomanip>
using namespace std;
/***********************************************************************
* get user's monthly income
************************************************************************/
double getIncome()
{
cout << "\tYour monthly income: ";
double income;
cin >> income;
return income;
}
/***********************************************************************
* get user's budgeted living expenses
************************************************************************/
double getBudgetLiving()
{
cout << "\tYour budgeted living expenses: ";
double budgetedliving;
cin >> budgetedliving;
return budgetedliving;
}
/***********************************************************************
* get user's actual living expenses
************************************************************************/
double getActualLiving()
{
cout << "\tYour actual living expenses: ";
double actualliving;
cin >> actualliving;
return actualliving;
}
/***********************************************************************
* get user's acutal taxes withheld
************************************************************************/
double getActualTax()
{
cout << "\tYour actual taxes withheld: ";
double taxeswithheld;
cin >> taxeswithheld;
return taxeswithheld;
}
/***********************************************************************
* get user's actual tithe offering
************************************************************************/
double getActualTithing()
{
cout << "\tYour actual tithe offerings: ";
double titheoffering;
cin >> titheoffering;
return titheoffering;
}
/***********************************************************************
* get user's actual other expenses
************************************************************************/
double getActualOther()
{
cout << "\tYour actual other expenses: ";
double otherexpenses;
cin >> otherexpenses;
return otherexpenses;
}
/***********************************************************************
* set user's budgeted tax amount as 0
************************************************************************/
double computeTax(double income)
{
return 0;
}
/***********************************************************************
* set users' budgeted tithe amount as 1/10 of income
************************************************************************/
double computeTithing(double income)
{
return income * 0.1;
}
/***********************************************************************
* Takes the input gathered from the other modules
* and puts it on the screen in an easy to read format.
************************************************************************/
void display(double income, double budgetLiving, double actualTax,
double actualTithing, double actualLiving, double actualOther)
{
double budgetTax = computeTax(income);
double budgetTithing = computeTithing(income);
double budgetOther = income - budgetTax - budgetTithing - budgetLiving;
double actualDifference = income - actualTax
- actualTithing - actualLiving - actualOther;
double budgetDifference = 0;
cout << "\nThe following is a report on your monthly expenses" << endl;
cout << "\tItem Budget Actual" << endl;
cout << "\t=============== =============== ===============" << endl;
cout << "\tIncome " << "$" << setw(11) << income << " $"
<< setw(11) << income << endl;
cout << "\tTaxes " << "$" << setw(11) << budgetTax
<< " $" << setw(11) << actualTax << endl;
cout << "\tTithing " << "$" << setw(11) << budgetTithing
<< " $" << setw(11) << actualTithing << endl;
cout << "\tLiving " << "$" << setw(11) << budgetLiving
<< " $" << setw(11) << actualLiving << endl;
cout << "\tOther " << "$" << setw(11) << budgetOther
<< " $" << setw(11) << actualOther << endl;
cout << "\t=============== =============== ===============" << endl;
cout << "\tDifference " << "$" << setw(11) << budgetDifference
<< " $" << setw(11) << actualDifference << endl;
}
/**********************************************************************
* Prompts the user inputs (income, budget living, actual living expenses
* and display the result with table format.
***********************************************************************/
int main()
{
cout.setf(ios ::fixed);
cout.setf(ios ::showpoint);
cout.precision(2);
cout << "This program keeps track of your monthly budget" << endl;
cout << "Please enter the following:" << endl;
double income = getIncome();
double budgetLiving = getBudgetLiving();
double actualLiving = getActualLiving();
double actualTax = getActualTax();
double actualTithing = getActualTithing();
double actualOther = getActualOther();
display(income, budgetLiving, actualTax, actualTithing,
actualLiving, actualOther);
return 0;
}
|
a4da159aea123137665653e4fa4071452bb43b8b
|
95957325cc5d1376e9ad1af1899795b92ab9fa1a
|
/mscoree.dll/mscoree.dll.cpp
|
6d747f1f2b76dd77025472de7f6fbbd564e1bc66
|
[] |
no_license
|
SwenenzY/win-system32-dlls
|
c09964aababe77d1ae01cd0a431d6fc168f6ec89
|
fb8e3a6cdf379cdef16e2a922e3fbab79c313281
|
refs/heads/main
| 2023-09-05T07:49:10.820162
| 2021-11-09T07:30:18
| 2021-11-09T07:30:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 23,923
|
cpp
|
mscoree.dll.cpp
|
#include <windows.h>
#include <shlwapi.h>
extern "C" {
extern void *ptr_CLRCreateInstance;
void *ptr_CLRCreateInstance = NULL;
extern void *ptr_CallFunctionShim;
void *ptr_CallFunctionShim = NULL;
extern void *ptr_CloseCtrs;
void *ptr_CloseCtrs = NULL;
extern void *ptr_ClrCreateManagedInstance;
void *ptr_ClrCreateManagedInstance = NULL;
extern void *ptr_CoEEShutDownCOM;
void *ptr_CoEEShutDownCOM = NULL;
extern void *ptr_CoInitializeCor;
void *ptr_CoInitializeCor = NULL;
extern void *ptr_CoInitializeEE;
void *ptr_CoInitializeEE = NULL;
extern void *ptr_CoUninitializeCor;
void *ptr_CoUninitializeCor = NULL;
extern void *ptr_CoUninitializeEE;
void *ptr_CoUninitializeEE = NULL;
extern void *ptr_CollectCtrs;
void *ptr_CollectCtrs = NULL;
extern void *ptr_CorBindToCurrentRuntime;
void *ptr_CorBindToCurrentRuntime = NULL;
extern void *ptr_CorBindToRuntime;
void *ptr_CorBindToRuntime = NULL;
extern void *ptr_CorBindToRuntimeByCfg;
void *ptr_CorBindToRuntimeByCfg = NULL;
extern void *ptr_CorBindToRuntimeByPath;
void *ptr_CorBindToRuntimeByPath = NULL;
extern void *ptr_CorBindToRuntimeByPathEx;
void *ptr_CorBindToRuntimeByPathEx = NULL;
extern void *ptr_CorBindToRuntimeEx;
void *ptr_CorBindToRuntimeEx = NULL;
extern void *ptr_CorBindToRuntimeHost;
void *ptr_CorBindToRuntimeHost = NULL;
extern void *ptr_CorDllMainWorker;
void *ptr_CorDllMainWorker = NULL;
extern void *ptr_CorExitProcess;
void *ptr_CorExitProcess = NULL;
extern void *ptr_CorGetSvc;
void *ptr_CorGetSvc = NULL;
extern void *ptr_CorIsLatestSvc;
void *ptr_CorIsLatestSvc = NULL;
extern void *ptr_CorMarkThreadInThreadPool;
void *ptr_CorMarkThreadInThreadPool = NULL;
extern void *ptr_CorTickleSvc;
void *ptr_CorTickleSvc = NULL;
extern void *ptr_CreateConfigStream;
void *ptr_CreateConfigStream = NULL;
extern void *ptr_CreateDebuggingInterfaceFromVersion;
void *ptr_CreateDebuggingInterfaceFromVersion = NULL;
extern void *ptr_CreateInterface;
void *ptr_CreateInterface = NULL;
extern void *ptr_DllCanUnloadNow;
void *ptr_DllCanUnloadNow = NULL;
extern void *ptr_DllGetClassObject;
void *ptr_DllGetClassObject = NULL;
extern void *ptr_DllRegisterServer;
void *ptr_DllRegisterServer = NULL;
extern void *ptr_DllUnregisterServer;
void *ptr_DllUnregisterServer = NULL;
extern void *ptr_EEDllGetClassObjectFromClass;
void *ptr_EEDllGetClassObjectFromClass = NULL;
extern void *ptr_EEDllRegisterServer;
void *ptr_EEDllRegisterServer = NULL;
extern void *ptr_EEDllUnregisterServer;
void *ptr_EEDllUnregisterServer = NULL;
extern void *ptr_GetAssemblyMDImport;
void *ptr_GetAssemblyMDImport = NULL;
extern void *ptr_GetCLRMetaHost;
void *ptr_GetCLRMetaHost = NULL;
extern void *ptr_GetCORRequiredVersion;
void *ptr_GetCORRequiredVersion = NULL;
extern void *ptr_GetCORRootDirectory;
void *ptr_GetCORRootDirectory = NULL;
extern void *ptr_GetCORSystemDirectory;
void *ptr_GetCORSystemDirectory = NULL;
extern void *ptr_GetCORVersion;
void *ptr_GetCORVersion = NULL;
extern void *ptr_GetCompileInfo;
void *ptr_GetCompileInfo = NULL;
extern void *ptr_GetFileVersion;
void *ptr_GetFileVersion = NULL;
extern void *ptr_GetHashFromAssemblyFile;
void *ptr_GetHashFromAssemblyFile = NULL;
extern void *ptr_GetHashFromAssemblyFileW;
void *ptr_GetHashFromAssemblyFileW = NULL;
extern void *ptr_GetHashFromBlob;
void *ptr_GetHashFromBlob = NULL;
extern void *ptr_GetHashFromFile;
void *ptr_GetHashFromFile = NULL;
extern void *ptr_GetHashFromFileW;
void *ptr_GetHashFromFileW = NULL;
extern void *ptr_GetHashFromHandle;
void *ptr_GetHashFromHandle = NULL;
extern void *ptr_GetHostConfigurationFile;
void *ptr_GetHostConfigurationFile = NULL;
extern void *ptr_GetMetaDataInternalInterface;
void *ptr_GetMetaDataInternalInterface = NULL;
extern void *ptr_GetMetaDataInternalInterfaceFromPublic;
void *ptr_GetMetaDataInternalInterfaceFromPublic = NULL;
extern void *ptr_GetMetaDataPublicInterfaceFromInternal;
void *ptr_GetMetaDataPublicInterfaceFromInternal = NULL;
extern void *ptr_GetPermissionRequests;
void *ptr_GetPermissionRequests = NULL;
extern void *ptr_GetPrivateContextsPerfCounters;
void *ptr_GetPrivateContextsPerfCounters = NULL;
extern void *ptr_GetProcessExecutableHeap;
void *ptr_GetProcessExecutableHeap = NULL;
extern void *ptr_GetRealProcAddress;
void *ptr_GetRealProcAddress = NULL;
extern void *ptr_GetRequestedRuntimeInfo;
void *ptr_GetRequestedRuntimeInfo = NULL;
extern void *ptr_GetRequestedRuntimeVersion;
void *ptr_GetRequestedRuntimeVersion = NULL;
extern void *ptr_GetRequestedRuntimeVersionForCLSID;
void *ptr_GetRequestedRuntimeVersionForCLSID = NULL;
extern void *ptr_GetStartupFlags;
void *ptr_GetStartupFlags = NULL;
extern void *ptr_GetTargetForVTableEntry;
void *ptr_GetTargetForVTableEntry = NULL;
extern void *ptr_GetTokenForVTableEntry;
void *ptr_GetTokenForVTableEntry = NULL;
extern void *ptr_GetVersionFromProcess;
void *ptr_GetVersionFromProcess = NULL;
extern void *ptr_GetXMLElement;
void *ptr_GetXMLElement = NULL;
extern void *ptr_GetXMLElementAttribute;
void *ptr_GetXMLElementAttribute = NULL;
extern void *ptr_GetXMLObject;
void *ptr_GetXMLObject = NULL;
extern void *ptr_IEE;
void *ptr_IEE = NULL;
extern void *ptr_InitErrors;
void *ptr_InitErrors = NULL;
extern void *ptr_InitSSAutoEnterThread;
void *ptr_InitSSAutoEnterThread = NULL;
extern void *ptr_LoadLibraryShim;
void *ptr_LoadLibraryShim = NULL;
extern void *ptr_LoadLibraryWithPolicyShim;
void *ptr_LoadLibraryWithPolicyShim = NULL;
extern void *ptr_LoadStringRC;
void *ptr_LoadStringRC = NULL;
extern void *ptr_LoadStringRCEx;
void *ptr_LoadStringRCEx = NULL;
extern void *ptr_LockClrVersion;
void *ptr_LockClrVersion = NULL;
extern void *ptr_LogHelp_LogAssert;
void *ptr_LogHelp_LogAssert = NULL;
extern void *ptr_LogHelp_NoGuiOnAssert;
void *ptr_LogHelp_NoGuiOnAssert = NULL;
extern void *ptr_LogHelp_TerminateOnAssert;
void *ptr_LogHelp_TerminateOnAssert = NULL;
extern void *ptr_MetaDataGetDispenser;
void *ptr_MetaDataGetDispenser = NULL;
extern void *ptr_ND_CopyObjDst;
void *ptr_ND_CopyObjDst = NULL;
extern void *ptr_ND_CopyObjSrc;
void *ptr_ND_CopyObjSrc = NULL;
extern void *ptr_ND_RI2;
void *ptr_ND_RI2 = NULL;
extern void *ptr_ND_RI4;
void *ptr_ND_RI4 = NULL;
extern void *ptr_ND_RI8;
void *ptr_ND_RI8 = NULL;
extern void *ptr_ND_RU1;
void *ptr_ND_RU1 = NULL;
extern void *ptr_ND_WI2;
void *ptr_ND_WI2 = NULL;
extern void *ptr_ND_WI4;
void *ptr_ND_WI4 = NULL;
extern void *ptr_ND_WI8;
void *ptr_ND_WI8 = NULL;
extern void *ptr_ND_WU1;
void *ptr_ND_WU1 = NULL;
extern void *ptr_OpenCtrs;
void *ptr_OpenCtrs = NULL;
extern void *ptr_PostError;
void *ptr_PostError = NULL;
extern void *ptr_ReOpenMetaDataWithMemory;
void *ptr_ReOpenMetaDataWithMemory = NULL;
extern void *ptr_ReOpenMetaDataWithMemoryEx;
void *ptr_ReOpenMetaDataWithMemoryEx = NULL;
extern void *ptr_RunDll32ShimW;
void *ptr_RunDll32ShimW = NULL;
extern void *ptr_RuntimeOSHandle;
void *ptr_RuntimeOSHandle = NULL;
extern void *ptr_RuntimeOpenImage;
void *ptr_RuntimeOpenImage = NULL;
extern void *ptr_RuntimeReleaseHandle;
void *ptr_RuntimeReleaseHandle = NULL;
extern void *ptr_SetTargetForVTableEntry;
void *ptr_SetTargetForVTableEntry = NULL;
extern void *ptr_StrongNameCompareAssemblies;
void *ptr_StrongNameCompareAssemblies = NULL;
extern void *ptr_StrongNameErrorInfo;
void *ptr_StrongNameErrorInfo = NULL;
extern void *ptr_StrongNameFreeBuffer;
void *ptr_StrongNameFreeBuffer = NULL;
extern void *ptr_StrongNameGetBlob;
void *ptr_StrongNameGetBlob = NULL;
extern void *ptr_StrongNameGetBlobFromImage;
void *ptr_StrongNameGetBlobFromImage = NULL;
extern void *ptr_StrongNameGetPublicKey;
void *ptr_StrongNameGetPublicKey = NULL;
extern void *ptr_StrongNameHashSize;
void *ptr_StrongNameHashSize = NULL;
extern void *ptr_StrongNameKeyDelete;
void *ptr_StrongNameKeyDelete = NULL;
extern void *ptr_StrongNameKeyGen;
void *ptr_StrongNameKeyGen = NULL;
extern void *ptr_StrongNameKeyGenEx;
void *ptr_StrongNameKeyGenEx = NULL;
extern void *ptr_StrongNameKeyInstall;
void *ptr_StrongNameKeyInstall = NULL;
extern void *ptr_StrongNameSignatureGeneration;
void *ptr_StrongNameSignatureGeneration = NULL;
extern void *ptr_StrongNameSignatureGenerationEx;
void *ptr_StrongNameSignatureGenerationEx = NULL;
extern void *ptr_StrongNameSignatureSize;
void *ptr_StrongNameSignatureSize = NULL;
extern void *ptr_StrongNameSignatureVerification;
void *ptr_StrongNameSignatureVerification = NULL;
extern void *ptr_StrongNameSignatureVerificationEx;
void *ptr_StrongNameSignatureVerificationEx = NULL;
extern void *ptr_StrongNameSignatureVerificationFromImage;
void *ptr_StrongNameSignatureVerificationFromImage = NULL;
extern void *ptr_StrongNameTokenFromAssembly;
void *ptr_StrongNameTokenFromAssembly = NULL;
extern void *ptr_StrongNameTokenFromAssemblyEx;
void *ptr_StrongNameTokenFromAssemblyEx = NULL;
extern void *ptr_StrongNameTokenFromPublicKey;
void *ptr_StrongNameTokenFromPublicKey = NULL;
extern void *ptr_TranslateSecurityAttributes;
void *ptr_TranslateSecurityAttributes = NULL;
extern void *ptr_UpdateError;
void *ptr_UpdateError = NULL;
extern void *ptr__CorDllMain;
void *ptr__CorDllMain = NULL;
extern void *ptr__CorExeMain;
void *ptr__CorExeMain = NULL;
extern void *ptr__CorExeMain2;
void *ptr__CorExeMain2 = NULL;
extern void *ptr__CorImageUnloading;
void *ptr__CorImageUnloading = NULL;
extern void *ptr__CorValidateImage;
void *ptr__CorValidateImage = NULL;
}
static HMODULE hModule = NULL;
static void module_init()
{
if (hModule) return;
wchar_t sz_module_file[MAX_PATH];
GetSystemDirectoryW(sz_module_file, MAX_PATH);
wcscat_s(sz_module_file, L"\\mscoree.dll");
hModule = LoadLibraryW(sz_module_file);
if (!hModule) return;
#define __vartype(x) decltype(x)
ptr_CLRCreateInstance = (__vartype(ptr_CLRCreateInstance))GetProcAddress(hModule, "CLRCreateInstance");
ptr_CallFunctionShim = (__vartype(ptr_CallFunctionShim))GetProcAddress(hModule, "CallFunctionShim");
ptr_CloseCtrs = (__vartype(ptr_CloseCtrs))GetProcAddress(hModule, "CloseCtrs");
ptr_ClrCreateManagedInstance = (__vartype(ptr_ClrCreateManagedInstance))GetProcAddress(hModule, "ClrCreateManagedInstance");
ptr_CoEEShutDownCOM = (__vartype(ptr_CoEEShutDownCOM))GetProcAddress(hModule, "CoEEShutDownCOM");
ptr_CoInitializeCor = (__vartype(ptr_CoInitializeCor))GetProcAddress(hModule, "CoInitializeCor");
ptr_CoInitializeEE = (__vartype(ptr_CoInitializeEE))GetProcAddress(hModule, "CoInitializeEE");
ptr_CoUninitializeCor = (__vartype(ptr_CoUninitializeCor))GetProcAddress(hModule, "CoUninitializeCor");
ptr_CoUninitializeEE = (__vartype(ptr_CoUninitializeEE))GetProcAddress(hModule, "CoUninitializeEE");
ptr_CollectCtrs = (__vartype(ptr_CollectCtrs))GetProcAddress(hModule, "CollectCtrs");
ptr_CorBindToCurrentRuntime = (__vartype(ptr_CorBindToCurrentRuntime))GetProcAddress(hModule, "CorBindToCurrentRuntime");
ptr_CorBindToRuntime = (__vartype(ptr_CorBindToRuntime))GetProcAddress(hModule, "CorBindToRuntime");
ptr_CorBindToRuntimeByCfg = (__vartype(ptr_CorBindToRuntimeByCfg))GetProcAddress(hModule, "CorBindToRuntimeByCfg");
ptr_CorBindToRuntimeByPath = (__vartype(ptr_CorBindToRuntimeByPath))GetProcAddress(hModule, "CorBindToRuntimeByPath");
ptr_CorBindToRuntimeByPathEx = (__vartype(ptr_CorBindToRuntimeByPathEx))GetProcAddress(hModule, "CorBindToRuntimeByPathEx");
ptr_CorBindToRuntimeEx = (__vartype(ptr_CorBindToRuntimeEx))GetProcAddress(hModule, "CorBindToRuntimeEx");
ptr_CorBindToRuntimeHost = (__vartype(ptr_CorBindToRuntimeHost))GetProcAddress(hModule, "CorBindToRuntimeHost");
ptr_CorDllMainWorker = (__vartype(ptr_CorDllMainWorker))GetProcAddress(hModule, "CorDllMainWorker");
ptr_CorExitProcess = (__vartype(ptr_CorExitProcess))GetProcAddress(hModule, "CorExitProcess");
ptr_CorGetSvc = (__vartype(ptr_CorGetSvc))GetProcAddress(hModule, "CorGetSvc");
ptr_CorIsLatestSvc = (__vartype(ptr_CorIsLatestSvc))GetProcAddress(hModule, "CorIsLatestSvc");
ptr_CorMarkThreadInThreadPool = (__vartype(ptr_CorMarkThreadInThreadPool))GetProcAddress(hModule, "CorMarkThreadInThreadPool");
ptr_CorTickleSvc = (__vartype(ptr_CorTickleSvc))GetProcAddress(hModule, "CorTickleSvc");
ptr_CreateConfigStream = (__vartype(ptr_CreateConfigStream))GetProcAddress(hModule, "CreateConfigStream");
ptr_CreateDebuggingInterfaceFromVersion = (__vartype(ptr_CreateDebuggingInterfaceFromVersion))GetProcAddress(hModule, "CreateDebuggingInterfaceFromVersion");
ptr_CreateInterface = (__vartype(ptr_CreateInterface))GetProcAddress(hModule, "CreateInterface");
ptr_DllCanUnloadNow = (__vartype(ptr_DllCanUnloadNow))GetProcAddress(hModule, "DllCanUnloadNow");
ptr_DllGetClassObject = (__vartype(ptr_DllGetClassObject))GetProcAddress(hModule, "DllGetClassObject");
ptr_DllRegisterServer = (__vartype(ptr_DllRegisterServer))GetProcAddress(hModule, "DllRegisterServer");
ptr_DllUnregisterServer = (__vartype(ptr_DllUnregisterServer))GetProcAddress(hModule, "DllUnregisterServer");
ptr_EEDllGetClassObjectFromClass = (__vartype(ptr_EEDllGetClassObjectFromClass))GetProcAddress(hModule, "EEDllGetClassObjectFromClass");
ptr_EEDllRegisterServer = (__vartype(ptr_EEDllRegisterServer))GetProcAddress(hModule, "EEDllRegisterServer");
ptr_EEDllUnregisterServer = (__vartype(ptr_EEDllUnregisterServer))GetProcAddress(hModule, "EEDllUnregisterServer");
ptr_GetAssemblyMDImport = (__vartype(ptr_GetAssemblyMDImport))GetProcAddress(hModule, "GetAssemblyMDImport");
ptr_GetCLRMetaHost = (__vartype(ptr_GetCLRMetaHost))GetProcAddress(hModule, "GetCLRMetaHost");
ptr_GetCORRequiredVersion = (__vartype(ptr_GetCORRequiredVersion))GetProcAddress(hModule, "GetCORRequiredVersion");
ptr_GetCORRootDirectory = (__vartype(ptr_GetCORRootDirectory))GetProcAddress(hModule, "GetCORRootDirectory");
ptr_GetCORSystemDirectory = (__vartype(ptr_GetCORSystemDirectory))GetProcAddress(hModule, "GetCORSystemDirectory");
ptr_GetCORVersion = (__vartype(ptr_GetCORVersion))GetProcAddress(hModule, "GetCORVersion");
ptr_GetCompileInfo = (__vartype(ptr_GetCompileInfo))GetProcAddress(hModule, "GetCompileInfo");
ptr_GetFileVersion = (__vartype(ptr_GetFileVersion))GetProcAddress(hModule, "GetFileVersion");
ptr_GetHashFromAssemblyFile = (__vartype(ptr_GetHashFromAssemblyFile))GetProcAddress(hModule, "GetHashFromAssemblyFile");
ptr_GetHashFromAssemblyFileW = (__vartype(ptr_GetHashFromAssemblyFileW))GetProcAddress(hModule, "GetHashFromAssemblyFileW");
ptr_GetHashFromBlob = (__vartype(ptr_GetHashFromBlob))GetProcAddress(hModule, "GetHashFromBlob");
ptr_GetHashFromFile = (__vartype(ptr_GetHashFromFile))GetProcAddress(hModule, "GetHashFromFile");
ptr_GetHashFromFileW = (__vartype(ptr_GetHashFromFileW))GetProcAddress(hModule, "GetHashFromFileW");
ptr_GetHashFromHandle = (__vartype(ptr_GetHashFromHandle))GetProcAddress(hModule, "GetHashFromHandle");
ptr_GetHostConfigurationFile = (__vartype(ptr_GetHostConfigurationFile))GetProcAddress(hModule, "GetHostConfigurationFile");
ptr_GetMetaDataInternalInterface = (__vartype(ptr_GetMetaDataInternalInterface))GetProcAddress(hModule, "GetMetaDataInternalInterface");
ptr_GetMetaDataInternalInterfaceFromPublic = (__vartype(ptr_GetMetaDataInternalInterfaceFromPublic))GetProcAddress(hModule, "GetMetaDataInternalInterfaceFromPublic");
ptr_GetMetaDataPublicInterfaceFromInternal = (__vartype(ptr_GetMetaDataPublicInterfaceFromInternal))GetProcAddress(hModule, "GetMetaDataPublicInterfaceFromInternal");
ptr_GetPermissionRequests = (__vartype(ptr_GetPermissionRequests))GetProcAddress(hModule, "GetPermissionRequests");
ptr_GetPrivateContextsPerfCounters = (__vartype(ptr_GetPrivateContextsPerfCounters))GetProcAddress(hModule, "GetPrivateContextsPerfCounters");
ptr_GetProcessExecutableHeap = (__vartype(ptr_GetProcessExecutableHeap))GetProcAddress(hModule, "GetProcessExecutableHeap");
ptr_GetRealProcAddress = (__vartype(ptr_GetRealProcAddress))GetProcAddress(hModule, "GetRealProcAddress");
ptr_GetRequestedRuntimeInfo = (__vartype(ptr_GetRequestedRuntimeInfo))GetProcAddress(hModule, "GetRequestedRuntimeInfo");
ptr_GetRequestedRuntimeVersion = (__vartype(ptr_GetRequestedRuntimeVersion))GetProcAddress(hModule, "GetRequestedRuntimeVersion");
ptr_GetRequestedRuntimeVersionForCLSID = (__vartype(ptr_GetRequestedRuntimeVersionForCLSID))GetProcAddress(hModule, "GetRequestedRuntimeVersionForCLSID");
ptr_GetStartupFlags = (__vartype(ptr_GetStartupFlags))GetProcAddress(hModule, "GetStartupFlags");
ptr_GetTargetForVTableEntry = (__vartype(ptr_GetTargetForVTableEntry))GetProcAddress(hModule, "GetTargetForVTableEntry");
ptr_GetTokenForVTableEntry = (__vartype(ptr_GetTokenForVTableEntry))GetProcAddress(hModule, "GetTokenForVTableEntry");
ptr_GetVersionFromProcess = (__vartype(ptr_GetVersionFromProcess))GetProcAddress(hModule, "GetVersionFromProcess");
ptr_GetXMLElement = (__vartype(ptr_GetXMLElement))GetProcAddress(hModule, "GetXMLElement");
ptr_GetXMLElementAttribute = (__vartype(ptr_GetXMLElementAttribute))GetProcAddress(hModule, "GetXMLElementAttribute");
ptr_GetXMLObject = (__vartype(ptr_GetXMLObject))GetProcAddress(hModule, "GetXMLObject");
ptr_IEE = (__vartype(ptr_IEE))GetProcAddress(hModule, "IEE");
ptr_InitErrors = (__vartype(ptr_InitErrors))GetProcAddress(hModule, "InitErrors");
ptr_InitSSAutoEnterThread = (__vartype(ptr_InitSSAutoEnterThread))GetProcAddress(hModule, "InitSSAutoEnterThread");
ptr_LoadLibraryShim = (__vartype(ptr_LoadLibraryShim))GetProcAddress(hModule, "LoadLibraryShim");
ptr_LoadLibraryWithPolicyShim = (__vartype(ptr_LoadLibraryWithPolicyShim))GetProcAddress(hModule, "LoadLibraryWithPolicyShim");
ptr_LoadStringRC = (__vartype(ptr_LoadStringRC))GetProcAddress(hModule, "LoadStringRC");
ptr_LoadStringRCEx = (__vartype(ptr_LoadStringRCEx))GetProcAddress(hModule, "LoadStringRCEx");
ptr_LockClrVersion = (__vartype(ptr_LockClrVersion))GetProcAddress(hModule, "LockClrVersion");
ptr_LogHelp_LogAssert = (__vartype(ptr_LogHelp_LogAssert))GetProcAddress(hModule, "LogHelp_LogAssert");
ptr_LogHelp_NoGuiOnAssert = (__vartype(ptr_LogHelp_NoGuiOnAssert))GetProcAddress(hModule, "LogHelp_NoGuiOnAssert");
ptr_LogHelp_TerminateOnAssert = (__vartype(ptr_LogHelp_TerminateOnAssert))GetProcAddress(hModule, "LogHelp_TerminateOnAssert");
ptr_MetaDataGetDispenser = (__vartype(ptr_MetaDataGetDispenser))GetProcAddress(hModule, "MetaDataGetDispenser");
ptr_ND_CopyObjDst = (__vartype(ptr_ND_CopyObjDst))GetProcAddress(hModule, "ND_CopyObjDst");
ptr_ND_CopyObjSrc = (__vartype(ptr_ND_CopyObjSrc))GetProcAddress(hModule, "ND_CopyObjSrc");
ptr_ND_RI2 = (__vartype(ptr_ND_RI2))GetProcAddress(hModule, "ND_RI2");
ptr_ND_RI4 = (__vartype(ptr_ND_RI4))GetProcAddress(hModule, "ND_RI4");
ptr_ND_RI8 = (__vartype(ptr_ND_RI8))GetProcAddress(hModule, "ND_RI8");
ptr_ND_RU1 = (__vartype(ptr_ND_RU1))GetProcAddress(hModule, "ND_RU1");
ptr_ND_WI2 = (__vartype(ptr_ND_WI2))GetProcAddress(hModule, "ND_WI2");
ptr_ND_WI4 = (__vartype(ptr_ND_WI4))GetProcAddress(hModule, "ND_WI4");
ptr_ND_WI8 = (__vartype(ptr_ND_WI8))GetProcAddress(hModule, "ND_WI8");
ptr_ND_WU1 = (__vartype(ptr_ND_WU1))GetProcAddress(hModule, "ND_WU1");
ptr_OpenCtrs = (__vartype(ptr_OpenCtrs))GetProcAddress(hModule, "OpenCtrs");
ptr_PostError = (__vartype(ptr_PostError))GetProcAddress(hModule, "PostError");
ptr_ReOpenMetaDataWithMemory = (__vartype(ptr_ReOpenMetaDataWithMemory))GetProcAddress(hModule, "ReOpenMetaDataWithMemory");
ptr_ReOpenMetaDataWithMemoryEx = (__vartype(ptr_ReOpenMetaDataWithMemoryEx))GetProcAddress(hModule, "ReOpenMetaDataWithMemoryEx");
ptr_RunDll32ShimW = (__vartype(ptr_RunDll32ShimW))GetProcAddress(hModule, "RunDll32ShimW");
ptr_RuntimeOSHandle = (__vartype(ptr_RuntimeOSHandle))GetProcAddress(hModule, "RuntimeOSHandle");
ptr_RuntimeOpenImage = (__vartype(ptr_RuntimeOpenImage))GetProcAddress(hModule, "RuntimeOpenImage");
ptr_RuntimeReleaseHandle = (__vartype(ptr_RuntimeReleaseHandle))GetProcAddress(hModule, "RuntimeReleaseHandle");
ptr_SetTargetForVTableEntry = (__vartype(ptr_SetTargetForVTableEntry))GetProcAddress(hModule, "SetTargetForVTableEntry");
ptr_StrongNameCompareAssemblies = (__vartype(ptr_StrongNameCompareAssemblies))GetProcAddress(hModule, "StrongNameCompareAssemblies");
ptr_StrongNameErrorInfo = (__vartype(ptr_StrongNameErrorInfo))GetProcAddress(hModule, "StrongNameErrorInfo");
ptr_StrongNameFreeBuffer = (__vartype(ptr_StrongNameFreeBuffer))GetProcAddress(hModule, "StrongNameFreeBuffer");
ptr_StrongNameGetBlob = (__vartype(ptr_StrongNameGetBlob))GetProcAddress(hModule, "StrongNameGetBlob");
ptr_StrongNameGetBlobFromImage = (__vartype(ptr_StrongNameGetBlobFromImage))GetProcAddress(hModule, "StrongNameGetBlobFromImage");
ptr_StrongNameGetPublicKey = (__vartype(ptr_StrongNameGetPublicKey))GetProcAddress(hModule, "StrongNameGetPublicKey");
ptr_StrongNameHashSize = (__vartype(ptr_StrongNameHashSize))GetProcAddress(hModule, "StrongNameHashSize");
ptr_StrongNameKeyDelete = (__vartype(ptr_StrongNameKeyDelete))GetProcAddress(hModule, "StrongNameKeyDelete");
ptr_StrongNameKeyGen = (__vartype(ptr_StrongNameKeyGen))GetProcAddress(hModule, "StrongNameKeyGen");
ptr_StrongNameKeyGenEx = (__vartype(ptr_StrongNameKeyGenEx))GetProcAddress(hModule, "StrongNameKeyGenEx");
ptr_StrongNameKeyInstall = (__vartype(ptr_StrongNameKeyInstall))GetProcAddress(hModule, "StrongNameKeyInstall");
ptr_StrongNameSignatureGeneration = (__vartype(ptr_StrongNameSignatureGeneration))GetProcAddress(hModule, "StrongNameSignatureGeneration");
ptr_StrongNameSignatureGenerationEx = (__vartype(ptr_StrongNameSignatureGenerationEx))GetProcAddress(hModule, "StrongNameSignatureGenerationEx");
ptr_StrongNameSignatureSize = (__vartype(ptr_StrongNameSignatureSize))GetProcAddress(hModule, "StrongNameSignatureSize");
ptr_StrongNameSignatureVerification = (__vartype(ptr_StrongNameSignatureVerification))GetProcAddress(hModule, "StrongNameSignatureVerification");
ptr_StrongNameSignatureVerificationEx = (__vartype(ptr_StrongNameSignatureVerificationEx))GetProcAddress(hModule, "StrongNameSignatureVerificationEx");
ptr_StrongNameSignatureVerificationFromImage = (__vartype(ptr_StrongNameSignatureVerificationFromImage))GetProcAddress(hModule, "StrongNameSignatureVerificationFromImage");
ptr_StrongNameTokenFromAssembly = (__vartype(ptr_StrongNameTokenFromAssembly))GetProcAddress(hModule, "StrongNameTokenFromAssembly");
ptr_StrongNameTokenFromAssemblyEx = (__vartype(ptr_StrongNameTokenFromAssemblyEx))GetProcAddress(hModule, "StrongNameTokenFromAssemblyEx");
ptr_StrongNameTokenFromPublicKey = (__vartype(ptr_StrongNameTokenFromPublicKey))GetProcAddress(hModule, "StrongNameTokenFromPublicKey");
ptr_TranslateSecurityAttributes = (__vartype(ptr_TranslateSecurityAttributes))GetProcAddress(hModule, "TranslateSecurityAttributes");
ptr_UpdateError = (__vartype(ptr_UpdateError))GetProcAddress(hModule, "UpdateError");
ptr__CorDllMain = (__vartype(ptr__CorDllMain))GetProcAddress(hModule, "_CorDllMain");
ptr__CorExeMain = (__vartype(ptr__CorExeMain))GetProcAddress(hModule, "_CorExeMain");
ptr__CorExeMain2 = (__vartype(ptr__CorExeMain2))GetProcAddress(hModule, "_CorExeMain2");
ptr__CorImageUnloading = (__vartype(ptr__CorImageUnloading))GetProcAddress(hModule, "_CorImageUnloading");
ptr__CorValidateImage = (__vartype(ptr__CorValidateImage))GetProcAddress(hModule, "_CorValidateImage");
#undef __vartype
}
extern "C" BOOL __stdcall DllMain( HMODULE hModule, DWORD ul_reason_for_call,LPVOID lpReserved)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
{
module_init();
wchar_t tmp1[2048];
GetModuleFileNameW(NULL, tmp1, _countof(tmp1));
PathRemoveExtensionW(tmp1);
wcscat(tmp1, L".hook.dll");
LoadLibraryW(tmp1);
break;
}
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
|
bae9ddf93f61fd9ad845dec6ea220a23a7bf273a
|
5d3ee8d02dc363bce1602bda3dce9b5092956ce7
|
/MeetingCore/Core/AudioCapturer/AudioCapturer.cpp
|
00919e0e4430835c8655dde26e0899a01ee8d201
|
[] |
no_license
|
EMCJava/EMCMeeting
|
b8fbb4aa51404fc4a6f387c54d92b77d55a75b5a
|
8e8b41bbb155f999f6b89707c4ba11b41b69ce6b
|
refs/heads/master
| 2023-06-10T12:21:19.641472
| 2020-09-03T14:31:29
| 2020-09-03T14:31:29
| 270,252,972
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,471
|
cpp
|
AudioCapturer.cpp
|
//
// Created by samsa on 6/20/2020.
//
#include "AudioCapturer.hpp"
AudioCapturer::AudioCapturer(std::deque<Socket::Message> *stream_buffer, float record_length, float record_interval)
: m_audio_stream_ptr(stream_buffer), m_audio_chunk_size_sencond(record_length),
m_record_interval(record_interval) {
}
AudioCapturer::~AudioCapturer() {
if (m_audio_recorder_thread) {
m_thread_stop = true;
// if the thread is still running
if (m_audio_recorder_thread->joinable()) {
// wait till the thread stop
m_audio_recorder_thread->join();
}
m_audio_recorder_thread.reset();
}
}
void AudioCapturer::AudioRecord_() {
if (!sf::SoundBufferRecorder::isAvailable()) {
ToolBox::err() << "System does not support audio recording." << std::endl;
return;
}
std::string target_drive = m_audio_recorder_default_drivce;
//goto skip__;
// user didn't specify a drive
if (m_audio_recorder_default_drivce.empty()) {
// get all drivces that suppose to be available
const auto drive_list = sf::SoundRecorder::getAvailableDevices();
if (drive_list.empty()) {
ToolBox::err() << "No available devices to record." << std::endl;
return;
}
// we get the first device that available
target_drive = drive_list[0];
}
if(!m_recorder)
m_recorder = ToolBox::make_unique<sf::SoundBufferRecorder>();
// set the record drivce
if (!m_recorder->setDevice(target_drive)) {
ToolBox::err() << "drivce " << target_drive << " not available." << std::endl;
return;
}
//skip__:
while (!m_thread_stop) {
// previous sound buffer will be deleted when start
//m_recorder->start();
//std::this_thread::sleep_for(std::chrono::milliseconds(static_cast<int>(m_audio_chunk_size_sencond * 1000)));
//m_recorder->stop();
sf::SoundBuffer buffer;
buffer.loadFromFile("resource/summertime.ogg");
// gen message to send format
Socket::Message mes;
//MessagePackage::GenMessage(mes, m_recorder->getBuffer());
MessagePackage::GenMessage(mes, buffer);
// puch back to audio send queue
m_audio_stream_ptr->emplace_back(std::move(mes));
// wait to the specified interval
// they didn't support float second
std::this_thread::sleep_for(std::chrono::milliseconds(static_cast<int>(m_record_interval * 1000)));
}
}
void AudioCapturer::SetDrivce(std::string drivce) {
m_audio_recorder_default_drivce = std::move(drivce);
}
bool AudioCapturer::Start() {
// if there is a thread recording
if (m_audio_recorder_thread) {
// if thread is already stopped
if (!m_audio_recorder_thread->joinable()) {
CreateRecorderThread_();
return true;
}
return false;
} else {
CreateRecorderThread_();
return true;
}
}
void AudioCapturer::Stop() {
// if there is a thread recording
if (m_audio_recorder_thread) {
m_thread_stop = true;
// if the thread ended
if (!m_audio_recorder_thread->joinable()) {
m_audio_recorder_thread.reset();
}
}
}
void AudioCapturer::CreateRecorderThread_() {
m_audio_recorder_thread = ToolBox::make_unique<std::thread>(&AudioCapturer::AudioRecord_, this);
}
|
ea817dfff2c85475bca1a1ad945bc1cbd0f0c4d3
|
3d75079a7b6ae3cf886789340aac7c6a479b72e8
|
/src/corsika/LongFile.cxx
|
c0ef59559d6d66cd8b40c84103071d97acff616d
|
[
"BSD-2-Clause"
] |
permissive
|
afedynitch/corsika_reader
|
44244b141887c97ddf5d9b4ff5ca266c8dbd1ce9
|
984425bf2573667f1d36f7fcc218dca55283bac4
|
refs/heads/master
| 2022-04-09T20:20:25.158647
| 2020-03-16T02:57:12
| 2020-03-16T02:57:12
| 113,652,922
| 0
| 0
|
NOASSERTION
| 2020-03-16T02:57:13
| 2017-12-09T08:00:53
|
C++
|
UTF-8
|
C++
| false
| false
| 17,224
|
cxx
|
LongFile.cxx
|
/**
\file
Implementation of the Corsika shower reader
\author Lukas Nellen
\version $Id$
\date 29 Jan 2004
*/
#include <corsika/Constants.h>
#include <corsika/LongFile.h>
#include <corsika/IOException.h>
#include <fstream>
#include <sstream>
#include <string>
#include <cmath>
#include <cstdio>
#include <iostream>
#include <boost/tokenizer.hpp>
using namespace std;
using namespace corsika;
typedef boost::tokenizer<boost::char_separator<char> > mytok;
static void log(const std::string& mess)
{
std::cout << mess << std::endl;
}
static void log(const std::ostringstream& mess)
{
std::cout << mess.str() << std::endl;
}
#define INFO(mess) log(mess);
#define ERROR(mess) log(mess);
#define FATAL(mess) log(mess);
namespace
{
bool SplitLine(string l, vector<string>& vec, string s = " ")
{
boost::char_separator<char> sep(s.c_str());
mytok tok(l,sep);
vec.clear();
for (mytok::const_iterator titer=tok.begin();titer!=tok.end();++titer) {
vec.push_back(*titer);
}
return true;
}
string particleProfileStr = " LONGITUDINAL DISTRIBUTION IN";
string dEdX_ProfileStr = " LONGITUDINAL ENERGY DEPOSIT";
string GHFit_Str = " FIT OF THE HILLAS CURVE";
}
LongFile::LongFile(string filename, double zenith):
fFilename(filename),
fCosZenith(cos(zenith)),
fIsSlantDepthProfile(false),
event_count(0),
fDx(0.),
fNBinsParticles(0),
fNBinsEnergyDeposit(0),
fLongDataFile(new std::ifstream(fFilename.c_str()))
{
// check if file exists and is readable here
Scan();
}
LongProfile LongFile::GetProfile(size_t event)
{
if (event >= event_count)
{
ostringstream msg;
msg << "Trying to get event " << event << ", but file " << fFilename << " has only " << event_count << " events (starting at zero).";
throw IOException(msg.str());
}
return FetchProfile(event);
}
void LongFile::Scan()
{
// scan for number of bins and dX,
// also check if there are energy deposit profiles
//static const double g = 1;
//static const double cm = 1;
//static const double cm2 = cm*cm;
//static const double deg = 3.14159/180;
// Read CORSIKA profile if available
if (!fLongDataFile->is_open()) return;
string line;
while (getline(*fLongDataFile.get(), line) && (fPartProfiles.size()==0 || fdEdXProfiles.size()==0))
{
if (line.find(particleProfileStr) != string::npos)
{
fPartProfiles.push_back(fLongDataFile->tellg());
char s1[50], s2[50], s3[50], isVertOrSlant[50];
sscanf(line.c_str(), "%s %s %s %zu %s", s1, s2, s3, &fNBinsParticles, isVertOrSlant);
string testStr(isVertOrSlant);
if (testStr == "VERTICAL")
fIsSlantDepthProfile = false;
else if (testStr == "SLANT")
fIsSlantDepthProfile = true;
else {
ostringstream err;
err << "Corsika longitunal file \"" << fFilename << "\" is invalid:\n"
"line: \"" << line << "\" "
"contains invalid string at ^^^^^^^\n"
"which is neither VERTICAL nor SLANT !";
ERROR(err);
throw IOException(err.str());
}
}
if (line.find(dEdX_ProfileStr) != string::npos)
{
fdEdXProfiles.push_back(fLongDataFile->tellg());
char s1[50], s2[50], s3[50], s4[50], isVertOrSlant[50], s5 [50], s6 [50];
sscanf(line.c_str(),
"%s %s %s %s %zu %s %s %s %f",
s1, s2, s3, s4, &fNBinsEnergyDeposit, isVertOrSlant, s5, s6, &fDx);
string testStr(isVertOrSlant);
if (testStr == "VERTICAL")
{
fIsSlantDepthProfile = false;
fDx /= fCosZenith;
}
else if (testStr == "SLANT")
{
fIsSlantDepthProfile = true;
}
else
{
ostringstream err;
err << "Corsika longitunal file \"" << fFilename << "\" is invalid:\n"
"line: \"" << line << "\" "
"contains invalid string at ^^^^^^^\n"
" which is neither VERTICAL nor SLANT !";
ERROR(err);
throw IOException(err.str());
}
}
} // -- end scan file ---
while (getline(*fLongDataFile.get(), line))
{
if (line.find(particleProfileStr) != string::npos)
fPartProfiles.push_back(fLongDataFile->tellg());
if (line.find(dEdX_ProfileStr) != string::npos)
fdEdXProfiles.push_back(fLongDataFile->tellg());
}
event_count = (fPartProfiles.size()?fPartProfiles.size():fdEdXProfiles.size());
}
LongProfile LongFile::FetchProfile(size_t findShower)
{
bool aux_flag = false;
size_t i = 0;
size_t j = 0;
string line;
vector<double> auxDepth(fNBinsParticles);
vector<double> auxCharge(fNBinsParticles);
vector<double> auxMuons(fNBinsParticles);
vector<double> auxAntiMuons(fNBinsParticles);
vector<double> auxGammas(fNBinsParticles);
vector<double> auxElectrons(fNBinsParticles);
vector<double> auxPositrons(fNBinsParticles);
vector<double> auxHadrons(fNBinsParticles);
vector<double> auxNuclei(fNBinsParticles);
vector<double> auxCherenkov(fNBinsParticles);
vector<double> auxDepth_dE (fNBinsEnergyDeposit);
vector<double> auxDeltaEn (fNBinsEnergyDeposit);
GaisserHillasParameter gh;
double energyDepositSum = 0.;
// Read CORSIKA profile if available
if (!fLongDataFile->is_open())
{
ERROR("Reading failed for some reason.");
return LongProfile();
}
fLongDataFile->clear();
fLongDataFile->seekg(fPartProfiles[findShower]);
vector<string> tokens;
while (getline(*fLongDataFile.get(), line))
{
SplitLine(line, tokens);
if (line.find(particleProfileStr) != string::npos)
{
getline(*fLongDataFile.get(), line);
SplitLine(line, tokens);
}
if (line.find(dEdX_ProfileStr) != string::npos || aux_flag)
{
if (line.find(dEdX_ProfileStr) != string::npos)
{
getline(*fLongDataFile.get(), line);
SplitLine(line, tokens);
}
if (tokens.size() > 1 && tokens[0] == string("DEPTH") && tokens[1] == string("GAMMA"))
{
aux_flag = true;
getline(*fLongDataFile.get(), line);
SplitLine(line, tokens);
}
if (line.find(GHFit_Str) != string::npos) break;
if (aux_flag && j < fNBinsParticles)
{
float xdepth = 0.0;
float gamma = 0.0;
float emIoniz = 0.0;
float emCut = 0.0;
float muonIoniz = 0.0;
float muonCut = 0.0;
float hadronIoniz = 0.0;
float hadronCut = 0.0;
float neutrino = 0.0;
float sumEnergy = 0.0;
sscanf(line.c_str(), "%f %f %f %f %f %f %f %f %f %f",
&xdepth, &gamma, &emIoniz, &emCut, &muonIoniz, &muonCut,
&hadronIoniz, &hadronCut, &neutrino, &sumEnergy);
if (!fIsSlantDepthProfile)
xdepth /= fCosZenith;
// dEdX profile has slightly different depth-bins
auxDepth_dE[j] = xdepth;
//cout << j << " " << hadroncut << " " << muoncut
// << " " << neutrino << " " << sumenergy << endl;
// Subtracting neutrino energy
// and take fraction for muons and hadrons from
// Barbosa et al Astro. Part. Phys. 22, (2004) p. 159
static float muonFraction = 0.575;
static float hadronFraction = 0.261;
static float hadronGroundFraction = 0.390;
auxDeltaEn[j] = sumEnergy - neutrino -
muonFraction * muonCut -
hadronFraction * hadronCut;
if ( j+1 < fNBinsEnergyDeposit )
energyDepositSum += auxDeltaEn[j];
else
{
double groundEnergy = (1.-hadronGroundFraction)*hadronCut + hadronIoniz + muonIoniz + emIoniz+emCut + gamma;
energyDepositSum += groundEnergy;
}
auxDeltaEn[j] /= fDx;
++j;
}
}
if (line.find(dEdX_ProfileStr) == string::npos || (tokens[0] == "DEPTH" && tokens[1] == "GAMMAS" && i < fNBinsParticles))
{
if (aux_flag) continue;
float xdepth = 0.0;
float chargedparticles = 0.0;
float gammas, positrons, electrons, muplus, muminus, hadrons;
float nuclei, cerenkov;
sscanf(line.c_str(), "%f %f %f %f %f %f %f %f %f %f",
&xdepth, &gammas, &positrons, &electrons, &muplus, &muminus,
&hadrons, &chargedparticles, &nuclei, &cerenkov);
if (xdepth > 0)
{
//BRD 17/2/05 CORSIKA depths are vertical assuming a flat
//Earth. So apply cosTheta correction here.
// RU Wed Jun 13 14:46:44 CEST 2007
// if SLANT was used in CORSIKA, don't do the fCosZenith correction
if (!fIsSlantDepthProfile)
xdepth /= fCosZenith;
auxDepth[i] = xdepth;
auxCharge[i] = chargedparticles;
auxMuons[i] = muminus;
auxAntiMuons[i] = muminus;
auxGammas[i] = gammas;
auxElectrons[i] = electrons;
auxPositrons[i] = positrons;
auxHadrons[i] = hadrons;
auxNuclei[i] = nuclei;
auxCherenkov[i] = cerenkov;
++i;
}
}
}
float anmax;
float ax0;
float axmax;
float achi;
while (getline(*fLongDataFile.get(), line))
{
if (line.find(" PARAMETERS = ") != string::npos)
{
float aapar, abpar, acpar;
sscanf(line.c_str(), " PARAMETERS = %f %f %f %f %f %f", &anmax,
&ax0, &axmax, &aapar, &abpar, &acpar);
getline(*fLongDataFile.get(), line);
sscanf(line.c_str(), " CHI**2/DOF = %f", &achi);
const bool hasValidGHfit = (achi>0) && (achi*fNBinsParticles<1e15);
double A = aapar * (g/cm2);
double B = abpar;
double C = acpar / (g/cm2);
if (!fIsSlantDepthProfile)
{
A /= fCosZenith;
B /= fCosZenith;
C /= fCosZenith;
axmax /= fCosZenith;
}
// GaisserHillas6Parameter gh;
if (hasValidGHfit)
{
gh.SetXMax(axmax*(g/cm2), 0);
gh.SetNMax(anmax, 0);
gh.SetXZero(ax0*(g/cm2), 0);
gh.SetChiSquare(fNBinsParticles*achi, fNBinsParticles);
gh.SetA(A, 0.);
gh.SetB(B, 0.);
gh.SetC(C, 0.);
}
break;
}
}
LongProfile profile;
profile.fChargeProfile = auxCharge;
profile.fGammaProfile = auxGammas;
profile.fElectronProfile = auxElectrons;
profile.fPositronProfile = auxPositrons;
profile.fMuonProfile = auxMuons;
profile.fAntiMuonProfile = auxAntiMuons;
profile.fDepth = auxDepth;
profile.fHadronProfile = auxHadrons;
profile.fNucleiProfile = auxNuclei;
profile.fCherenkovProfile = auxCherenkov;
//profile.fdEdX = auxDeltaEn;
//profile.fDepth_dE = auxDepth_dE;
profile.fCalorimetricEnergy = energyDepositSum;
profile.fGaisserHillas = gh;
return profile;
}
void CorrectProfile(LongProfile& profile, double dX)
{
// This code is quarantined because is mostly dead code, very
// specific for other purposes, so maybe it should not be here at
// all.
//
// CORSIKA writes into the last bin of the dEdX profile not only
// the energy deposit in the atmosphere, but also the energy hitting
// the ground (observation level). For vertical event this can be
// remarkable, and should not be used for FD simulations !
//
// - Fix this by replacing the entries in the last bin by GH fitted
// extrapolations.
// - Add one more bin in depth (extrapolation) to make sure
// that also for a different atmospheric profile model the
// shower will hit the ground, and does not just disappear
// somewhere in the middle of the atmosphere !
vector<double> auxDepth = profile.fDepth;
vector<double> auxCharge = profile.fChargeProfile;
vector<double> auxMuons = profile.fMuonProfile;
vector<double> auxAntiMuons = profile.fAntiMuonProfile;
vector<double> auxGammas = profile.fGammaProfile;
vector<double> auxElectrons = profile.fElectronProfile;
vector<double> auxPositrons = profile.fPositronProfile;
vector<double> auxHadrons = profile.fHadronProfile;
vector<double> auxNuclei = profile.fNucleiProfile;
vector<double> auxCherenkov = profile.fCherenkovProfile;
vector<double> auxDepth_dE = profile.fDepth_dE;
vector<double> auxDeltaEn = profile.fdEdX;
size_t i = auxDepth.size();
size_t nBinsEnergyDeposit = auxDepth_dE.size();
//size_t nBinsParticles = auxDepth.size();
// go three bins back, since CORSIKA sometimes has a funny second-last bin
//const double normDepth_dedx = auxDepth_dE[nBinsEnergyDeposit-3];
const double normN_dedx = 1;
// const double normN_dedx =
// theShower.HasGHParameters() ?
// theShower.GetGHParameters().Eval(normDepth_dedx * g/cm2) : 1;
const double normdEdX = auxDeltaEn[i-3];
// const double normDepth_part = auxDepth[nBinsEnergyDeposit-1];
const double normN_part = 1.;
// const double normN_part =
// theShower.HasGHParameters() ?
// theShower.GetGHParameters().Eval(normDepth_part * g/cm2) : 1.;
const double normCharge = auxCharge[i-1];
const double normMuons = auxMuons[i-1];
const double normGammas = auxGammas[i-1];
const double normElectrons = auxElectrons[i-1];
const double lastBinDepth_dEdX = auxDepth_dE[profile.fDepth_dE.size()-1];
const double lastBinDepth_part = auxDepth[profile.fDepth.size()-1];
// recalculate last dedx bins
for (size_t iCorrect = 0; iCorrect < 2; ++iCorrect)
{
size_t binCorrect = nBinsEnergyDeposit - 2 + iCorrect;
//const double binDepth = auxDepth_dE[binCorrect];
auxDeltaEn[binCorrect] = normdEdX / normN_dedx;
// auxDeltaEn[binCorrect] = normdEdX / normN_dedx *
// (theShower.HasGHParameters() ?
// theShower.GetGHParameters().Eval(binDepth*g/cm2) : 1);
}
// prolongate profiles by some bins
for (size_t iBinAdd = 0; iBinAdd < 2; ++iBinAdd)
{
const double addDepth_dEdX = lastBinDepth_dEdX + dX * (iBinAdd+1);
const double addDepth_part = lastBinDepth_part + dX * (iBinAdd+1);
const double Nch_dedx = 1;
// const double Nch_dedx =
// theShower.HasGHParameters() ?
// theShower.GetGHParameters().Eval(addDepth_dEdX * g/cm2) : 1;
const double Nch_part = 1;
// const double Nch_part =
// theShower.HasGHParameters() ?
// theShower.GetGHParameters().Eval(addDepth_part * g/cm2) : 1;
const double adddEdX = normdEdX / normN_dedx * Nch_dedx;
auxDepth_dE.push_back(addDepth_dEdX);
auxDeltaEn.push_back(adddEdX);
const double fac = Nch_part / normN_part;
const double addCharge = normCharge * fac;
const double addMuons = normMuons * fac;
const double addGammas = normGammas * fac;
const double addElectrons = normElectrons * fac;
auxDepth.push_back(addDepth_part);
auxCharge.push_back(addCharge);
auxMuons.push_back(addMuons);
auxGammas.push_back(addGammas);
auxElectrons.push_back(addElectrons);
}
profile.fChargeProfile = auxCharge;
profile.fGammaProfile = auxGammas;
profile.fElectronProfile = auxElectrons;
profile.fPositronProfile = auxPositrons;
profile.fMuonProfile = auxMuons;
profile.fAntiMuonProfile = auxAntiMuons;
profile.fDepth = auxDepth;
profile.fHadronProfile = auxHadrons;
profile.fNucleiProfile = auxNuclei;
profile.fCherenkovProfile = auxCherenkov;
//profile.fdEdX = auxDeltaEn;
//profile.fDepth_dE = auxDepth_dE;
}
|
a5c7f19ec68f72438fb3dfe73f6defd017a66265
|
d7eef8405fbbdcc39bfa0406611ee73e61850336
|
/Lab7/Lab7/FilmInMemoryRepository.cpp
|
4561f043b8cda5f538ff3888d5d709a94b0cd5ee
|
[] |
no_license
|
Micu-Felix/OOP_LAB7
|
23cb832c03d70927fe1741cb32ab9f3dcdab014b
|
79d0ad7a2b7a497b13eacf4e8be8c8ec77ee5afb
|
refs/heads/master
| 2022-09-24T01:36:02.090951
| 2020-06-06T09:53:02
| 2020-06-06T09:53:02
| 269,473,747
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,678
|
cpp
|
FilmInMemoryRepository.cpp
|
#include "FilmRepository.h"
#include <algorithm>
#pragma once
class RepositoryInMemory : public FilmRepository {
private:
vector<Film> repository;
public:
RepositoryInMemory() : FilmRepository() {
repository = {};
};
int size() override { return repository.size(); };
bool delete_film(const string &titel, int jahr) override {
auto endv_med = std::remove_if(begin(repository), end(repository), [=](const Film &film) {
return ((film.gettitel() == titel) && (film.getjahr() == jahr));
});
if (endv_med != end(repository)) {
repository.erase(endv_med, end(repository));
return true;
} else
return false;
}
bool add_film(const Film &film) override {
auto it = find_if(repository.begin(), repository.end(), [=](const Film &obj) {
return (obj.gettitel() == film.gettitel() && obj.getjahr() == film.getjahr());
});
if (it != repository.end()) {
return false;
} else {
repository.push_back(film);
return true;
}
}
bool edit_film(const string &titel, int jahr, int anzLikes) override {
auto it = find_if(repository.begin(), repository.end(), [=](const Film &obj) {
return (obj.gettitel() == titel && obj.getjahr() == jahr);
});
if (it != repository.end()) {
int index = std::distance(repository.begin(), it);
repository[index].setlikes(anzLikes);
return true;
} else {
return false;
}
}
vector<Film> get_all() override {
return repository;
}
};
|
3296e878b1fe9e4cbf5bced36c1ca23002470492
|
3710cc500057549e63b854b864fee2eb2480555b
|
/code/7_Vector.cpp
|
08bccf08f87d002f16aa7497beeaf8b3a4fef143
|
[] |
no_license
|
hwdong-net/cplusplus17
|
151c9968816904c35a94dca4b784638487ba63f7
|
c573ec591ad4f6c2d47200dc292855ebc91557d9
|
refs/heads/master
| 2023-05-24T22:03:39.945044
| 2023-05-21T02:54:31
| 2023-05-21T02:54:31
| 200,647,731
| 95
| 32
| null | null | null | null |
GB18030
|
C++
| false
| false
| 4,915
|
cpp
|
7_Vector.cpp
|
#include <iostream>
#if 0
class IntArray {
int* data{ nullptr }; //指针变量指向动态分配的内存块
int size{ 0 }; //data指向的动态数组的大小
public:
IntArray(int s) :size(s) {
data = new int[s]; //分配一块动态内存,地址保存在data中
if (data) size = s;
std::cout << "构造了一个大小是" << s << "的IntArray对象\n";
}
~IntArray() {
std::cout << "析构函数\n";
if (data) delete[] data; //释放data指向的动态内存
}
void put(int i, int x) {
if (i >= 0 && i < size) data[i] = x;
}
int get(int i) {
if (i >= 0 && i < size) return data[i];
else return 0;
}
};
#include <vector>
int main(){
//int ages[5];//静态数组
std::vector<int> ages;
ages.push_back(3);
ages.push_back(45);
ages.size();
}
#endif
/*
struct student {
string name;
double score;
};
using ElemType = student; //假设数据元素类型ElemType是char类型
*/
using ElemType = char; //假设数据元素类型ElemType是char类型
class Vector {
ElemType* data{ nullptr }; //空间起始地址
int capacity{ 0 }, n{ 0 }; //空间容量和实际元素个数,初始化为0
public:
Vector(const int cap = 5) //创建容量是cap的一个线性表
:capacity{ cap }, data{ new ElemType[cap] } {}
bool insert(const int i, const ElemType& e); //在i处插入元素
bool erase(const int i); //删除i元素
bool push_back(const ElemType& e); //表的最后添加一个元素
bool pop_back(); //删除表的最后元素
//bool insert_front(const ElemType e);
//bool pop_front();
//bool find(const ElemType e);
bool get(const int i, ElemType& e)const; //读取i元素
bool set(const int i, const ElemType e);//修改i元素
int size() const { return n; } //查询表长
private:
bool add_capacity(); //扩充容量
};
bool Vector::add_capacity() {
ElemType* temp = new ElemType[2 * capacity]; //分配2倍大小的更大空间
if (!temp) return false; //申请内存失败
for (auto i = 0; i < n; i++) { //将原空间data数据拷贝到新空间temp
temp[i] = data[i];
}
delete[] data; //释放原来空间内存
data = temp; //data指向新的空间temp
capacity *= 2; //修改容量
return true;
}
//(a0,a1,..., e, ai,... an-1)
bool Vector::insert(const int i, const ElemType& e) {
if (i < 0 || i > n) return false; //插入位置合法吗?
if (n == capacity && !add_capacity()) //已满,增加容量
return false;
for (auto j = n; j > i; j--) //将n-1到i的元素都向后移动一个位置
data[j] = data[j - 1]; //j-1移到j位置上
data[i] = e;
n++; //不要忘记修改表长
return true;
}
bool Vector::erase(const int i) {
if (i < 0 || i >= n) return false; //位置i合法吗?
//i+1到n-1元素依次向前移动一个位置
for (auto j = i; j < n - 1; j++)
data[j] = data[j + 1]; //j+1移到j位置上
n--; // 不要忘了:表长变量减去1。
return false;
}
bool Vector::push_back(const ElemType& e) {
if (n == capacity && !add_capacity()) //空间满就扩容
return false;
data[n] = e;
n++;
//data[n++] = e; //e放入下标n位置,然后n++
return true;
}
bool Vector::pop_back() {
if (n == 0) return false; //空表
n--; //n减去1就相当于删除了表尾元素
return true;
}
bool Vector::get(const int i, ElemType& e)const {
if (i >= 0 && i < n) { //下标是否合法?
e = data[i]; return true;
}
return false;
}
//修改i元素的值
bool Vector::set(const int i, const ElemType e) {
if (i >= 0 && i < n) { //下标是否合法?
data[i] = e; return true;
}
return false;
}
#include <iostream>
void print(const Vector& v) { //输出线性表中的所有元素
ElemType ele;
//遍历每一个下标i:0,1,…,size()-1
for (auto i = 0; i != v.size(); i++) {
v.get(i, ele); //通过e返回下标i处的元素值
std::cout << ele << '\t';
}
std::cout << std::endl;
}
int main() {
Vector v(2); //创建容量是2的空线性表
v.push_back('a'); //线性表最后添加一个元素’a’
v.push_back('b'); //线性表最后添加一个元素’b’
v.push_back('c');
v.insert(1, 'd'); //下标1处插入一个元素’d’
print(v);
ElemType e;
v.get(1, e); //查询下标1处的元素值
std::cout << e << '\n';
v.set(1, 'f'); //修改下标1处的元素值为’f’
print(v);
v.erase(2); //删除下标2处的元素
print(v);
v.pop_back(); //删除最后一个元素
print(v);
}
|
429fb31dcafc4e9c95fbbb2f89c796604c30890f
|
1bd2698bde9265ab4741358c2b8e1bec1901e7f9
|
/Tonb0.1/AutLib/Continuum/Mesh/Entities/Element/Mesh_ElementAdaptor.hxx
|
4393dffe7224365616888dee52534de42fc251f9
|
[] |
no_license
|
amir5200fx/Tonb0.1
|
150f9843ce3ad02da2ef18f409a100964c08983a
|
7b17c6d2b3ddeca8e6b2900967b9599b0b1d61ed
|
refs/heads/master
| 2022-01-17T09:47:25.291502
| 2019-06-14T13:27:39
| 2019-06-14T13:27:39
| 169,406,796
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 880
|
hxx
|
Mesh_ElementAdaptor.hxx
|
#pragma once
#ifndef _Mesh_ElementAdaptor_Header
#define _Mesh_ElementAdaptor_Header
#include <Standard_TypeDef.hxx>
namespace AutLib
{
template<class ElementType, int NbCmpts>
class Mesh_ElementAdaptor{};
template<class ElementType>
class Mesh_ElementAdaptor<ElementType, 3>
{
/*Private Data*/
const ElementType* theElements_[3];
public:
const int nbCmpts = 3;
Mesh_ElementAdaptor()
{
for (int i = 0; i < nbCmpts; i++) theElements_[i] = 0;
}
const ElementType* Element(const Standard_Integer theIndex) const
{
return theElements_[theIndex];
}
const ElementType*& Element(const Standard_Integer theIndex)
{
return theElements_[theIndex];
}
void SetElement
(
const Standard_Integer theIndex,
const ElementType* theElement
)
{
theElements_[theIndex] = theElement;
}
};
}
#endif // !_Mesh_ElementAdaptor_Header
|
094a23f65024e5c75dfd50b0ff21a676bfba1f6a
|
02516a036b94802b652a28bcd2b8073e45918448
|
/src/pfInputForce.cpp
|
82ecae5029982c9c67a4f53b9b698c6bc472d06e
|
[] |
no_license
|
chaomy/pfPPmpiFix
|
a7b0b758cdcf50e706c70280c064347162602610
|
38563046e26a836c26eeb98a9fbd070e330c4351
|
refs/heads/master
| 2021-09-05T06:03:13.276245
| 2018-01-24T16:06:14
| 2018-01-24T16:06:14
| 118,788,525
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,467
|
cpp
|
pfInputForce.cpp
|
/*
* @Author: chaomy
* @Date: 2018-01-20 16:53:38
* @Last Modified by: chaomy
* @Last Modified time: 2018-01-23 19:26:41
*/
#include "pfHome.h"
using std::cerr;
using std::cout;
using std::endl;
using std::ifstream;
using std::vector;
void pfHome::readConfig() { /* read atomic force file */
configs.clear(); // clear
ifstream fid;
pfUtil pfu;
char tmp[MAXLEN];
fid.open(sparams["cnffile"].c_str());
if (!fid.is_open()) cerr << "error open" + sparams["cnffile"] << endl;
int cnt = 0;
string buff;
vector<string> segs(1, " ");
Config config;
while (getline(fid, buff)) {
segs.clear();
if (!config.atoms.empty()) config.atoms.clear();
pfu.split(buff, " ", segs);
if (!segs[0].compare("#N")) {
sscanf(buff.c_str(), "%s %d %s", tmp, &config.natoms, tmp);
} else if (!segs[0].compare("#X")) {
sscanf(buff.c_str(), "%s %lf %lf %lf", tmp, &config.bvx[0],
&config.bvx[1], &config.bvx[2]);
} else if (segs[0] == "#Y") {
sscanf(buff.c_str(), "%s %lf %lf %lf", tmp, &config.bvy[0],
&config.bvy[1], &config.bvy[2]);
} else if (segs[0] == "#Z") {
sscanf(buff.c_str(), "%s %lf %lf %lf", tmp, &config.bvz[0],
&config.bvz[1], &config.bvz[2]);
} else if (!segs[0].compare("#W")) {
sscanf(buff.c_str(), "%s %lf", tmp, &config.weigh);
} else if (!segs[0].compare("#E")) {
sscanf(buff.c_str(), "%s %lf", tmp, &config.engy);
} else if (!segs[0].compare("#F")) {
for (int i = 0; i < config.natoms; i++) {
getline(fid, buff);
pfAtom atom(i);
sscanf(buff.c_str(), "%s %lf %lf %lf %lf %lf %lf", tmp, &atom.pst[0],
&atom.pst[1], &atom.pst[2], &atom.frc[0], &atom.frc[1],
&atom.frc[2]);
atom.absfrc = sqrt(square33(atom.frc));
for (int ii : {0, 1, 2}) {
atom.fweigh[ii] = 1. / (fabs(atom.frc[ii]) + FRCEPS);
// atom.fweigh[ii] =
// 1e4 * exp(-dparams["bwidth"] * atom.frc[ii] * atom.frc[ii]);
// mfrc[ii] += fabs(atom.frc[ii]);
}
config.atoms.push_back(atom);
}
tln += config.natoms;
config.cfgid = cnt++;
configs.push_back(config);
} // #F
} // while
for (int ii : {0, 1, 2}) mfrc[ii] /= tln;
printf("%f %f %f\n", mfrc[0], mfrc[1], mfrc[2]);
fid.close();
cout << "finish reading " << configs.size() << " configs" << endl;
nconfs = configs.size();
}
|
2a0b889f4cd3f64fde6a432c3faf2b192caa353a
|
a2cd415fad7516c79844459d5d064896316baf18
|
/PanicAttackDetection.ino
|
b3b704b2a6812760184e160e8180883e162f0ed6
|
[] |
no_license
|
boktah/YSWearables
|
128f020f944cdc6d7b24dc80a2f3d50424ab2f30
|
25572de3ba49435e0e5818be43517913fd4ff3e2
|
refs/heads/master
| 2020-03-22T16:23:51.530261
| 2018-07-13T12:57:53
| 2018-07-13T12:57:53
| 140,324,166
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,976
|
ino
|
PanicAttackDetection.ino
|
// import required libraries
#define USE_ARDUINO_INTERRUPTS true
#include <PulseSensorPlayground.h>
#include <Adafruit_Si7021.h>
int i = 1; // used to control temp sensor print outputs
unsigned long time = 0; // used to reset marks on accel
// may be used to toggle on/off the alert for a particular sensor
bool accelAlert = true;
bool pulseAlert = true;
bool tempAlert = true;
bool humAlert = true;
// used to read serial input
String input;
// READ PINS
int axPin = A0; int ayPin = A1; int azPin = A2;
float zero_G = 512; float scale = 102.3; // accel
int pulsePin = A3; // pulse
// READ VALS
int pulseVal; int pulseThreshold = 550; int bpm; int bpmLimit = 90; // pulse
int ax, ay, az; float x,y,z; int motionLimit = 500; int avg; int marks = 0; int marksLimit = 6; // accel
float temperature; float humidity; int tempLimit = 39; int humLimit = 70; // temp+hum
// WRITE PINS
int vibePin = 6; // vibe board
int red = 10; int green = 8; int blue = 9; // rgb led
Adafruit_Si7021 tempSensor = Adafruit_Si7021();
PulseSensorPlayground pulseSensor;
void setup() {
// Serial.begin(115200); // Pulse sensor wanted 115200 - will have to test
Serial.begin(9600); // BT module runs at 9600
// configure pinmodes for each pin used
pinMode(pulsePin, INPUT);
pinMode(axPin, INPUT);
pinMode(ayPin, INPUT);
pinMode(azPin, INPUT);
pinMode(vibePin, OUTPUT);
pinMode(red, OUTPUT);
pinMode(green, OUTPUT);
pinMode(blue, OUTPUT);
}
void loop() {
if (Serial.available() > 0) {
input = Serial.read();
if (input.equals("accel")) {
accelAlert = !accelAlert;
}
else if (input.equals("pulse")) {
pulseAlert = !pulseAlert;
}
else if (input.equals("temp")) {
tempAlert = !tempAlert;
}
else if (input.equals("hum")) {
humAlert = !humAlert;
}
}
accel(); // accelerometer
// pulse(); // pulse sensor
// temp(); // temperature and humidity sensor
delay(500);
}
void accel() {
ax = analogRead(axPin); delay(1);
ay = analogRead(ayPin); delay(1);
az = analogRead(azPin);
x = ((float)x - zero_G) / scale;
y = ((float)y - zero_G) / scale;
z = ((float)z - zero_G) / scale;
avg = (ax / 3) + (ay / 3) + (az / 3); // might weigh certain axes differently in future
if (avg > motionLimit) { // every time motion is too much, it adds a mark
marks++;
if (marks == 1) { // on the first mark, it starts a timer
time = millis();
}
}
if ((millis() - time) > 30000 && marks > 0) { // if 30 seconds pass, reset marks to 0
marks = 0;
}
// if (marks > marksLimit) { // if marks reaches the limit, start breathing exercise
// if (accelAlert) {
// startExercise();
// }
// }
Serial.print(((float)x - zero_G) / scale);
Serial.print("\t");
Serial.print(((float)y - zero_G) / scale);
Serial.print("\t");
Serial.print(((float)z - zero_G) / scale);
Serial.print("\n");
// Serial.print("avg: "); Serial.print(avg);
// Serial.print(" marks: "); Serial.println(marks);
}
void pulse() {
pulseVal = analogRead(pulsePin);
Serial.print("BPM: "); Serial.println(pulseVal);
// if (pulseVal > bpmLimit) { // if BPM is too high, start exercise
// if (pulseAlert) {
// startExercise();
// }
// }
}
void temp() {
temperature = tempSensor.readTemperature();
humidity = tempSensor.readHumidity();
// if temp or humidity is too high, start exercise
// if (temperature > tempLimit) {
// if (tempAlert) {
// startExercise();
// }
// }
// if (humidity > humLimit) {
// if (humAlert) {
// startExercise();
// }
// }
if (i == 1) {
// control the outputs of the temperature sensor to only print once per 1000 ms
Serial.print("Humidity: ");
Serial.print(humidity, 2);
Serial.print("\tTemperature: ");
Serial.println(temperature, 2);
}
i++; if (i == 5) {
i = 1;
}
}
void controlVibe(bool val) { // turn vibe board on/off
val ? digitalWrite(vibePin, HIGH) : digitalWrite(vibePin, LOW);
}
void startExercise() { // gives a 3 second vibration before looping the exercise for 60 seconds
controlVibe(true);
delay(3000);
controlVibe(false);
for (int n = 0; n < 6; n++) { // n<6 means the cycle will run 6 times
breathExerciseCycle();
}
digitalWrite(red, HIGH); // off
digitalWrite(green, HIGH);
digitalWrite(blue, HIGH);
}
void breathExerciseCycle() { // one cycle is 10 seconds
digitalWrite(red, HIGH); // blue
digitalWrite(green, HIGH);
digitalWrite(blue, LOW);
delay(4000);
controlVibe(true);
digitalWrite(red, HIGH); // cyan
digitalWrite(green, LOW);
digitalWrite(blue, LOW);
delay(1000);
controlVibe(false);
digitalWrite(red, HIGH); // green
digitalWrite(green, LOW);
digitalWrite(blue, HIGH);
delay(4000);
controlVibe(true);
digitalWrite(red, HIGH); // cyan
digitalWrite(green, LOW);
digitalWrite(blue, LOW);
delay(1000);
controlVibe(false);
}
|
c2ab0fe83c91673e6380ea689ce353c2cd081aed
|
3c2c03ec18880e2b43f6326a4daec1f1b87abdd9
|
/mod_04/ex01/Character.hpp
|
f137851e4ff535774a95c430cf5194ecfa3c012d
|
[] |
no_license
|
aristotelis-bobas/cpp_modules
|
97da17c685d9e7344b9f73ad02b25d9c9afd2fb7
|
e815912dc55b5a26969750c341d3441486aa117e
|
refs/heads/master
| 2023-01-02T08:57:48.225945
| 2020-11-01T19:31:21
| 2020-11-01T19:31:21
| 297,717,685
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,641
|
hpp
|
Character.hpp
|
/* ************************************************************************** */
/* */
/* :::::::: */
/* Character.hpp :+: :+: */
/* +:+ */
/* By: abobas <abobas@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/06/18 22:15:45 by abobas #+# #+# */
/* Updated: 2020/06/21 14:51:43 by abobas ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef CHARACTER_HPP
#define CHARACTER_HPP
#include "Enemy.hpp"
#include "AWeapon.hpp"
#include <string>
#include <ostream>
class Character
{
private:
std::string name;
int AP;
bool equipped;
AWeapon *weapon;
public:
Character(std::string const &name);
Character(Character const &other);
Character& operator = (Character const &other);
void recoverAP();
void equip(AWeapon* weapon);
void attack(Enemy* enemy);
std::string getName() const;
std::string getWeapon() const;
bool getEquipped() const;
int getAP() const;
virtual ~Character();
};
std::ostream& operator << (std::ostream &out, Character const &src);
#endif
|
02e8ad2858892ce3b9d60cb9dcec92eadf2685a2
|
df0efbe363727771ea5ef8ae9fe87ad56b216383
|
/main.cpp
|
591e2e10d9678df29d4838744ef1f6f2e60047ce
|
[] |
no_license
|
Mopedonaut/PerfScopeEvaluation
|
caa75c6d325af317d447e03c738832405ef756ec
|
3ce438b606aa2955cf25832d8e96850ff16d7fed
|
refs/heads/master
| 2021-01-01T16:50:31.826667
| 2015-05-28T18:12:55
| 2015-05-28T18:12:55
| 35,549,581
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 828
|
cpp
|
main.cpp
|
/*
* main.cpp
*
* Created on: May 28, 2015
* Author: mark
*/
void unfrequentFunctionLevel6() {
// no op
}
void unfrequentFunctionLevel5(int level) {
while (level > 5) {
unfrequentFunctionLevel6();
--level;
}
}
void unfrequentFunctionLevel4(int level) {
if (level > 4) {
unfrequentFunctionLevel5(level);
}
}
void unfrequentFunctionLevel3(int level) {
if (level > 3) {
unfrequentFunctionLevel4(level);
}
}
void unfrequentFunctionLevel2(int level) {
if (level > 2) {
unfrequentFunctionLevel3(level);
}
}
void unfrequentFunctionLevel1(int level) {
if (level > 1) {
unfrequentFunctionLevel2(level);
}
}
void unusedFunction() {
}
void frequentFunction() {
// does nothing
}
int main() {
unfrequentFunctionLevel1(4);
for (int i = 0; i < 100; ++i) {
frequentFunction();
}
return 0;
}
|
a2cf4720c1121efbbe4c9ae0c6f5ceeefe68d99e
|
11f37c2af971187824419ed3cb751a252f6d8a19
|
/CODECHEF/numgame/main.cpp
|
ff341228eade069df6c983177bf913bbd09cc3ea
|
[] |
no_license
|
devos50/programmingchallenges
|
c1fd97062bf85d0999d91cbf51b30a56b628972e
|
004e64337b1c140023f520aef15781640e108842
|
refs/heads/master
| 2020-06-07T07:30:10.246738
| 2015-01-19T18:29:10
| 2015-01-19T18:29:10
| 29,485,114
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 226
|
cpp
|
main.cpp
|
#include <iostream>
using namespace std;
void solve()
{
int n; cin >> n;
if(n % 2 == 0) cout << "ALICE" << endl;
else cout << "BOB" << endl;
}
int main(int argc, char *argv[])
{
int t; cin >> t;
while(t--) solve();
}
|
c93b411d3b89e1fb19287bd49c0004f358788f59
|
2fda9e8e3cce71f0b11c72df92d1b931b57ba572
|
/src/rtFileCache.h
|
0ed5bcfe2ce9b91288579bdce086ed42e3ce076a
|
[
"Apache-2.0"
] |
permissive
|
mateusz-hobgarski-red/pxCore
|
519385eabd37e23818c37b73577d232356001a22
|
dddf99ed360c7fa4a98a40c92fc3d0ded864e841
|
refs/heads/master
| 2020-08-09T19:59:56.287360
| 2019-11-20T13:37:18
| 2019-11-20T13:37:18
| 214,161,586
| 1
| 0
|
NOASSERTION
| 2019-10-10T11:11:26
| 2019-10-10T11:11:23
| null |
UTF-8
|
C++
| false
| false
| 3,468
|
h
|
rtFileCache.h
|
/*
pxCore Copyright 2005-2018 John Robinson
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.
*/
// rtFileCache.h
#ifndef _RT_FILECACHE
#define _RT_FILECACHE
#include "rtRef.h"
#include "rtString.h"
#include "rtFile.h"
#include "rtLog.h"
#include "rtHttpCache.h"
#include "rtMutex.h"
#include <map>
// TODO elimate std::string from headers and impl
#include <string>
class rtFileCache
{
public:
/* set the maximum cache size. Default value is 20 MB */
rtError setMaxCacheSize(int64_t bytes);
/* returns the maximum cache size */
int64_t maxCacheSize();
/* returns the current cache size */
int64_t cacheSize();
/* sets the cache directory.Returns RT_OK on success and RT_ERROR on failure */
rtError setCacheDirectory(const char* directory);
/* returns the cache directory provisioned */
rtError cacheDirectory(rtString&);
/* removes the data from the cache for the url. Returns RT_OK on success and RT_ERROR on failure */
rtError removeData(const char* url);
/* add the header,image data corresponding to a url to file cache. Returns RT_OK on success and RT_ERROR on failure */
rtError addToCache(const rtHttpCacheData& data);
/* get the header,image data corresponding to a url from file cache. Returns RT_OK on success and RT_ERROR on failure */
rtError httpCacheData(const char* url, rtHttpCacheData& cacheData);
/* clear the complete cache */
void clearCache();
static rtFileCache* instance();
static void destroy();
private:
/* private functions */
rtFileCache();
~rtFileCache();
/* initialize the cache */
void initCache();
/* cleans the cache till the size is more than cache data size and return the new size */
int64_t cleanup();
/* set the file size and time associated with the file */
void setFileSizeAndTime(rtString& filename);
/* calculates and returns the hash value of the url */
rtString hashedFileName(const rtString& url);
/* write the cache data to a file. Returns true on success and false on failure */
bool writeFile(rtString& filename, const rtHttpCacheData& cacheData);
/* delete the file from cache */
bool deleteFile(rtString& filename);
/* read the file and populate the header data only */
bool readFileHeader(rtString& filename,rtHttpCacheData& cacheData);
/* returns the filename in absolute path format */
rtString absPath(rtString& filename);
/* populate the existing files in cache along with size in mFileSizeMap */
void populateExistingFiles();
/* erase the map data of the cached file */
void eraseData(rtString& filename);
/* member variables */
int64_t mMaxSize;
int64_t mCurrentSize;
rtString mDirectory;
std::hash<std::string> hashFn;
std::multimap<time_t,rtString> mFileTimeMap;
std::map<rtString,int64_t> mFileSizeMap;
rtMutex mCacheMutex;
static rtFileCache* mCache;
};
#endif
|
eff170698efdab49ba3fd23fcb0c727cd4303e1a
|
a99d6d5389e7d08ab26b1b79fef4c82d9d37f68e
|
/src/CardPile.cpp
|
a3f50981e64a36d16a9357ee9da93b971ae5dfa3
|
[] |
no_license
|
luijavi/Five-Card-Draw
|
5e9fa42f9395379e0d18bf9ff503aa0e163fe010
|
d38805c269c16cefb52d41ced912960bd331ec86
|
refs/heads/main
| 2023-07-17T02:40:01.188946
| 2021-09-07T00:23:02
| 2021-09-07T00:23:02
| 403,771,904
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,074
|
cpp
|
CardPile.cpp
|
#include <cassert>
#include <algorithm>
#include <random>
#include <chrono>
#include "CardPile.h"
CardPile::CardPile(std::size_t pile_size)
:
capacity(pile_size),
top(-1),
cards(nullptr)
{
cards = new Card[capacity];
}
CardPile::~CardPile()
{
delete[] cards;
cards = nullptr;
}
void CardPile::Push(Card card)
{
assert(!IsFull());
cards[++top] = card;
}
Card CardPile::Pop()
{
assert(!IsEmpty());
return cards[top--];
}
Card CardPile::Remove(std::size_t target_pos)
{
assert(target_pos >= 0 && target_pos < Size());
Card target_card = cards[target_pos];
// Move all of the cards left of target_pos over one space
if (!target_pos)
{
return Pop();
}
else
{
for (std::size_t i = target_pos; i > 0; --i)
{
cards[i] = cards[i - 1];
}
--top;
}
return target_card;
}
const Card CardPile::GetCard(std::size_t card_pos) const
{
assert(card_pos >= 0 && card_pos < Size());
return cards[card_pos];
}
void CardPile::Insert(const Card& card, std::size_t target_pos)
{
assert(target_pos >= 0);
assert(target_pos <= Size());
cards[target_pos] = card;
}
void CardPile::Shuffle()
{
auto seed = std::chrono::system_clock::now().time_since_epoch().count();
std::shuffle(cards, cards + Size(), std::default_random_engine(seed));
}
void CardPile::Sort()
{
std::sort(cards, cards + Size());
}
void CardPile::GroupByRank(Card::Rank rank)
{
// Count number of ranks that match argument
Card* temp = nullptr;
std::size_t rank_count = 0;
for (std::size_t i = 0; i < Size(); ++i)
{
if (cards[i].GetRank() == rank)
{
++rank_count;
}
}
temp = new Card[Size()];
for (std::size_t i = 0, j = rank_count; i < Size() && j < Size(); ++i)
{
if (cards[i].GetRank() == rank)
{
temp[i] = cards[i];
}
else
{
temp[j] = cards[i];
++j;
}
}
std::copy(temp, temp + (Size() - 1), cards);
delete[] temp;
temp = nullptr;
}
Card CardPile::SwapCard(Card card_in, std::size_t target_pos)
{
assert(target_pos >= 0);
assert(target_pos < Size());
Card c = cards[target_pos];
cards[target_pos] = card_in;
return c;
}
|
cc62ae7f299b9956a31b59114314b816dbbe1b13
|
485d20ffb43ddced64d6508ea770c874325ed2ad
|
/final/5-final02/src/ttRope.h
|
910ecd434e744159bf9fb2fba68694738c9a828f
|
[] |
no_license
|
firmread/aynir
|
16af463e26ad72e313814260b0accd1ff475df03
|
d625f1a8b6785daee49951521cc192dc14311678
|
refs/heads/master
| 2021-01-24T23:36:00.262194
| 2013-05-13T01:49:38
| 2013-05-13T01:49:38
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,057
|
h
|
ttRope.h
|
//
// ttRope.h
// final02
//
// Created by PengCheng on 5/4/13.
//
//
#ifndef __final02__ttRope__
#define __final02__ttRope__
#include "ofMain.h"
#include "ofxBox2d.h"
#include "ttChar.h"
enum _rope_condition{
R_NO_USE,
R_PUSH,
R_SWING,
R_DESTROY,
R_MINIGAME,
};
class ttRope{
public:
void setup(ofxBox2d &_world_B,ttChar &_A, ttChar &_B,ofPoint &_rope_start_B,ofPoint &hook_start_A,ofPoint &hook_end_A,ofPoint &_accFrc, int CharNum);
void update();
void draw_swing(ofPoint screen_B);
void draw_push();
void draw_minigame(ofPoint End);
ofxBox2d world_B;
ttChar* A, *B;
int charNum;
_rope_condition condition;
ofxBox2dJoint rope_joint;
ofxBox2dCircle rope_anchor;
float hook_pct;
bool bSwing_left,bSwing_right;
ofPoint *rope_start;
ofPoint *hook_end;
ofPoint *hook_start;
ofPoint *accFrc;
ofPoint preAccFrc;
};
#endif /* defined(__final02__ttRope__) */
|
5e3ed0f70e6d08771b8f8d300707fe896f493c43
|
cdfd953afa78d3c4cc4218b1d90e4dfb25e04ec0
|
/Vapor/include/renderer/SceneRenderer.h
|
88f2f6ec2251e89e7909658841df8587f6fff18f
|
[] |
no_license
|
jakubzika/Vapor
|
e73eecd832a5ac5386976fb24bd67321e28f8b7a
|
a0c9afb38babb5f110cbb5a6333b9980c329987b
|
refs/heads/main
| 2023-05-01T21:41:04.085033
| 2021-05-20T23:57:51
| 2021-05-20T23:57:51
| 351,738,587
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,220
|
h
|
SceneRenderer.h
|
/**
* \file SceneRenderer.h
* \author Jakub Zíka
* \date 2020/20/5
* \brief description
*
* Handles rendering scene data.
* Models do not render themselves. They pass their data from Scene graph traversal to the renderer.
* And renderer can sort the models accordingly for best performance.
*
*/
#pragma once
#include <vector>
#include <tuple>
#include "../Types.h"
#include "../Util.h"
#include "../engine/State.h"
#include "../assets/MeshAsset.h"
#include "../assets/MaterialAsset.h"
#include "../gl/LightsUBO.h"
#include "../scene/ModelEntity.h"
#include "../scene/LightEntity.h"
#include "../scene/Scene.h"
#include "../scene/SceneCamera.h"
#include "../scene/SceneObject.h"
#include "SceneRenderingInstance.h"
namespace vpr {
struct ModelData;
class SceneRenderer : public SceneRenderingInstance {
public:
SceneRenderer();
/**
* @brief Starts the render pass
*
*/
void render();
/**
* @brief Registers new model to be rendered
*
* @param mesh
* @param material
* @param data
*/
void addMesh(MeshAsset* mesh,MaterialAsset* material,ModelData* data);
/**
* @brief Set the Skybox object
*
* @param mesh
* @param material
* @param data
*/
void setSkybox(MeshAsset* mesh,MaterialAsset* material,ModelData* data);
/**
* @brief Registers new sun light
*
* @param light
*/
void addSunLight(SunLightData* light);
/**
* @brief Registers new point light
*
* @param light
*/
void addPointLight(PointLightData* light);
/**
* @brief Registers new spot light
*
* @param light
*/
void addSpotLight(SpotLightData* light);
/**
* @brief Registers item which makes it render specific id for it into the stencil buffer
*
* @param objectId
* @return unsigned char id in stencil buffer corresponding to the specified object
*/
unsigned char addSelectableItem(unsigned int objectId);
/**
* @brief Set the Camera object
*
* @param cameraData
*/
void setCamera(CameraData* cameraData);
/**
* @brief Clears all the rendering data
*
*/
void clearData();
/**
* @brief Is called before rendering data gather
*
*/
void beforeGather();
/**
* @brief Is called after rendering data gather
*
*/
void afterGather();
/**
* @brief Is called before rendering data update
*
*/
void beforeDataUpdate();
/**
* @brief Is called after rendering data update
*
*/
void afterDataUpdate();
/**
* @brief Retrieves value from stencil buffer
*
* @param x
* @param y
* @return unsigned char
*/
unsigned char getStencilBufferId(int x, int y);
/**
* @brief Retrieves value from stencil buffer and maps the stencil value into object id
*
* @param x
* @param y
* @return unsigned int
*/
unsigned int getStencilBufferObjectId(int x, int y);
/**
* @brief Retrieves object id from stencil buffer from center of the screen.
*
* @return unsigned int
*/
unsigned int getHoveredObject() {return hoveredObject;}
private:
void renderModels();
void renderSkybox();
void applyModelUniforms(MeshAsset*, MaterialAsset*, ModelData*);
void drawModel(MeshAsset*, MaterialAsset*, ModelData*);
/**
* @brief Not in use
*
*/
void applyGenericUniforms();
float time;
UniformData appliedUniformData;
UniformData uniformData;
MeshMaterialModelMap models;
CameraData* camera;
bool dirtyLightsData;
std::vector<SunLightData*> sunLights;
std::vector<PointLightData*> pointLights;
std::vector<SpotLightData*> spotLights;
std::tuple<MeshAsset*,MaterialAsset*,ModelData*> skybox;
LightsUBO lightsUBO;
bool captureStencil;
void updateHoveredObject();
unsigned int hoveredObject{0};
unsigned char nextStencilId;
std::map<unsigned char, unsigned int> stencilIdToSceneObject;
};
}
|
35030c7c0f59671b26b652977dd4a6811f970963
|
610a0449e3f8318f4cee5981524e79fa643d5045
|
/univ/sogang 2019/champion-e.cpp
|
425e20811c1421f5028ecbbb1591943aee96f6bd
|
[] |
no_license
|
Namnamseo/ps-archive
|
8f570339a0a7847ce08af4eb6342f41ec8a6a1e5
|
9f9b219731212dbef741198270b12913b329fc0f
|
refs/heads/main
| 2022-07-08T07:06:42.080035
| 2022-07-06T14:31:45
| 2022-07-06T14:31:45
| 134,520,321
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 701
|
cpp
|
champion-e.cpp
|
#include <iostream>
using namespace std;
using ll = unsigned long long;
ll mod;
ll modmul(ll a, ll b) {
ll r = 0;
while (b) {
if (b&1) { r += a; if (r >= mod) r -= mod; }
a <<= 1; if (a >= mod) a -= mod; b >>= 1;
}
return r;
}
ll ipow(ll b, ll e) {
ll ret = 1;
while (e) {
if (e&1) ret = modmul(ret, b);
b = modmul(b, b);
e >>= 1;
}
return ret;
}
char ans[11000]; int ai;
int main() { cin.tie(0)->sync_with_stdio(0);
int tc; cin >> tc;
for(;tc--;) {
ll a, i, n; cin >> a >> mod >> i >> n;
a %= mod;
ll t = modmul(a, ipow(10, i-1));
for (int j=0; j<n; ++j) {
ll q = 0;
t *= 10;
q = t/mod; t %= mod;
ans[ai++] = 48+q;
}
ans[ai++] = 10;
}
cout << ans;
return 0;
}
|
8c0f3ee470a4ba6e7c1428fd710d340f54286fa1
|
6abb92d99ff4218866eafab64390653addbf0d64
|
/AtCoder/othercontests/old/halfAndHalf2.cpp
|
62e03eecffbae77a33e5e6dba621a03a691b4879
|
[] |
no_license
|
Johannyjm/c-pro
|
38a7b81aff872b2246e5c63d6e49ef3dfb0789ae
|
770f2ac419b31bb0d47c4ee93c717c0c98c1d97d
|
refs/heads/main
| 2023-08-18T01:02:23.761499
| 2023-08-07T15:13:58
| 2023-08-07T15:13:58
| 217,938,272
| 0
| 0
| null | 2023-06-25T15:11:37
| 2019-10-28T00:51:09
|
C++
|
UTF-8
|
C++
| false
| false
| 517
|
cpp
|
halfAndHalf2.cpp
|
#include <bits/stdc++.h>
using namespace std;
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
int A, B, C, X, Y;
cin >> A >> B >> C >> X >> Y;
int res = 0;
if(A + B > C * 2){
if(X > Y){
if(X > C * 2) res = C * 2 * X;
else res = A * (X - Y) + C * 2 * Y;
}
else{
if(Y > C * 2) res = C * 2 * Y;
else res = B * (Y - X) + C * 2 * X;
}
}
else res = A * X + B * Y;
cout << res << endl;
}
|
0bb9bf5fb08331dd308f88e87f6283c58e62163a
|
fae437954b628d41ea2c7bd8a4c45f56eca6e6c1
|
/tst/EnergyPlus/unit/PackagedTerminalHeatPump.unit.cc
|
59ab2ded236834d208dca5af6a709804247fd241
|
[
"BSD-3-Clause",
"BSD-2-Clause"
] |
permissive
|
nrgsim/EnergyPlus
|
7d11c0de68db36401422194d37e97bfe9198d32f
|
3d73032a0480c45a963058e33473c85424cbba4a
|
refs/heads/develop
| 2020-06-25T04:43:21.150576
| 2017-06-13T15:44:22
| 2017-06-13T15:44:22
| 94,235,982
| 1
| 0
| null | 2017-06-13T16:51:18
| 2017-06-13T16:51:18
| null |
UTF-8
|
C++
| false
| false
| 38,932
|
cc
|
PackagedTerminalHeatPump.unit.cc
|
// EnergyPlus, Copyright (c) 1996-2017, The Board of Trustees of the University of Illinois and
// The Regents of the University of California, through Lawrence Berkeley National Laboratory
// (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights
// reserved.
//
// NOTICE: This Software was developed under funding from the U.S. Department of Energy and the
// U.S. Government consequently retains certain rights. As such, the U.S. Government has been
// granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable,
// worldwide license in the Software to reproduce, distribute copies to the public, prepare
// derivative works, and perform publicly and display publicly, and to permit others to do so.
//
// Redistribution and use in source and binary forms, with or without modification, are permitted
// provided that the following conditions are met:
//
// (1) Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
//
// (2) Redistributions in binary form must reproduce the above copyright notice, this list of
// conditions and the following disclaimer in the documentation and/or other materials
// provided with the distribution.
//
// (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory,
// the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be
// used to endorse or promote products derived from this software without specific prior
// written permission.
//
// (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in stand-alone form
// without changes from the version obtained under this License, or (ii) Licensee makes a
// reference solely to the software portion of its product, Licensee must refer to the
// software as "EnergyPlus version X" software, where "X" is the version number Licensee
// obtained under this License and may not use a different name for the software. Except as
// specifically required in this Section (4), Licensee shall not use in a company name, a
// product name, in advertising, publicity, or other promotional activities any name, trade
// name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly
// similar designation, without the U.S. Department of Energy's prior written consent.
//
// 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.
// EnergyPlus::VariableSpeedCoils Unit Tests
// Google Test Headers
#include <gtest/gtest.h>
#include "Fixtures/EnergyPlusFixture.hh"
#include <ObjexxFCL/Array1D.hh>
#include <EnergyPlus/DataEnvironment.hh>
#include <EnergyPlus/DataPlant.hh>
#include <EnergyPlus/DataSizing.hh>
#include <EnergyPlus/DataZoneEquipment.hh>
#include <EnergyPlus/Fans.hh>
#include <EnergyPlus/HeatBalanceManager.hh>
#include <EnergyPlus/OutputProcessor.hh>
#include <EnergyPlus/OutputReportPredefined.hh>
#include <EnergyPlus/PackagedTerminalHeatPump.hh>
#include <EnergyPlus/SimulationManager.hh>
#include <EnergyPlus/VariableSpeedCoils.hh>
using namespace EnergyPlus;
using namespace EnergyPlus::DataEnvironment;
using namespace EnergyPlus::DataPlant;
using namespace EnergyPlus::DataZoneEquipment;
using namespace EnergyPlus::Fans;
using namespace EnergyPlus::HeatBalanceManager;
using namespace EnergyPlus::PackagedTerminalHeatPump;
using namespace EnergyPlus::SimulationManager;
using namespace EnergyPlus::VariableSpeedCoils;
using namespace ObjexxFCL;
namespace EnergyPlus {
TEST_F( EnergyPlusFixture, PackagedTerminalHP_VSCoils_Sizing ) {
std::string const idf_objects = delimited_string({
" Zone, Space, 0.0, 0.0, 0.0, 0.0, 1, 1, 2.4, , autocalculate, , , Yes; ",
" ZoneHVAC:EquipmentConnections, Space, Space Eq, Space In Node, Space Out Node, Space Node, Space Ret Node; ",
" ZoneHVAC:EquipmentList, Space Eq, ZoneHVAC:WaterToAirHeatPump, Zone WSHP, 1, 1; ",
" Schedule:Compact, OnSched, Fraction, Through: 12/31, For: AllDays, Until: 24:00, 1.0; ",
" ScheduleTypeLimits, Fraction, 0.0, 1.0, CONTINUOUS; ",
" OutdoorAir:Node, PSZ-AC_1:5 OA Node;",
" OutdoorAir:Node, Lobby_ZN_1_FLR_2 WSHP OA Node;",
" Curve:Exponent, FanPowerCurve, 0.254542407, 0.837259009, 3, 0.458, 1, , , Dimensionless, Dimensionless; ",
" Curve:Quadratic, PLF Curve, 0.85, 0.15, 0, 0, 1, 0.0, 1.0, Dimensionless, Dimensionless; ",
" Curve:Cubic, CubicCurve, 1.0, 0.0, 0.0, 0.0, 0.76, 1.09, , , Dimensionless, Dimensionless; ",
" Curve:Biquadratic, BiquadraticCurve, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10, 25.6, 7.2, 48.9, , , Temperature, Temperature, Dimensionless; ",
" ZoneHVAC:WaterToAirHeatPump,",
" Zone WSHP, !- Name",
" OnSched, !- Availability Schedule Name",
" Space Out Node, !- Air Inlet Node Name",
" Space In Node, !- Air Outlet Node Name",
" , !- Outdoor Air Mixer Object Type",
" , !- Outdoor Air Mixer Name",
" Autosize, !- Supply Air Flow Rate During Cooling Operation {m3/s}",
" Autosize, !- Supply Air Flow Rate During Heating Operation {m3/s}",
" , !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s}",
" 0.0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s}",
" 0.0, !- Outdoor Air Flow Rate During Heating Operation {m3/s}",
" , !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s}",
" Fan:OnOff, !- Supply Air Fan Object Type",
" Lobby_ZN_1_FLR_2 WSHP Fan, !- Supply Air Fan Name",
" Coil:Heating:WaterToAirHeatPump:VariableSpeedEquationFit, !- Heating Coil Object Type",
" Lobby_ZN_1_FLR_2 WSHP Heating Mode, !- Heating Coil Name",
" Coil:Cooling:WaterToAirHeatPump:VariableSpeedEquationFit, !- Cooling Coil Object Type",
" Lobby_ZN_1_FLR_2 WSHP Cooling Mode, !- Cooling Coil Name",
" 2.5, !- Maximum Cycling Rate {cycles/hr}",
" 60.0, !- Heat Pump Time Constant {s}",
" 0.01, !- Fraction of On-Cycle Power Use",
" 60, !- Heat Pump Fan Delay Time {s}",
" Coil:Heating:Electric, !- Supplemental Heating Coil Object Type",
" Lobby_ZN_1_FLR_2 WSHP Supp Heating Coil, !- Supplemental Heating Coil Name",
" 50.0, !- Maximum Supply Air Temperature from Supplemental Heater {C}",
" 20.0, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}",
" Lobby_ZN_1_FLR_2 WSHP OA Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name",
" BlowThrough, !- Fan Placement",
" OnSched, !- Supply Air Fan Operating Mode Schedule Name",
" , !- Heat Pump Coil Water Flow Mode",
" ; !- Design Specification ZoneHVAC Sizing Object Name",
" Coil:Cooling:WaterToAirHeatPump:VariableSpeedEquationFit,",
" Lobby_ZN_1_FLR_2 WSHP Cooling Mode, !- Name",
" Lobby_ZN_1_FLR_2 WSHP Cooling Source Side Inlet Node, !- Water-to-Refrigerant HX Water Inlet Node Name",
" Lobby_ZN_1_FLR_2 WSHP Cooling Source Side Outlet Node, !- Water-to-Refrigerant HX Water Outlet Node Name",
" Lobby_ZN_1_FLR_2 WSHP Cooling Coil Air Inlet Node, !- Indoor Air Inlet Node Name",
" Lobby_ZN_1_FLR_2 WSHP Heating Coil Air Inlet Node, !- Indoor Air Outlet Node Name",
" 9, !- Number of Speeds {dimensionless}",
" 9, !- Nominal Speed Level {dimensionless}",
" Autosize, !- Gross Rated Total Cooling Capacity At Selected Nominal Speed Level {w}",
" Autosize, !- Rated Air Flow Rate At Selected Nominal Speed Level {m3/s}",
" Autosize, !- Rated Water Flow Rate At Selected Nominal Speed Level {m3/s}",
" 0.0, !- Nominal Time for Condensate to Begin Leaving the Coil {s}",
" 0.0, !- Initial Moisture Evaporation Rate Divided by Steady-State AC Latent Capacity {dimensionless}",
" 0, !- Flag for Using Hot Gas Reheat, 0 or 1 {dimensionless}",
" PLF Curve, !- Energy Part Load Fraction Curve Name",
" 4682.3964854, !- Speed 1 Reference Unit Gross Rated Total Cooling Capacity {w}",
" 0.97, !- Speed 1 Reference Unit Gross Rated Sensible Heat Ratio {dimensionless}",
" 8.031554863, !- Speed 1 Reference Unit Gross Rated Cooling COP {dimensionless}",
" 0.408706486, !- Speed 1 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 1 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 1 Total Cooling Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 1 Total Cooling Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 1 Total Cooling Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 1 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 1 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 1 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 1 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 1 Waste Heat Function of Temperature Curve Name",
" 5733.6424135, !- Speed 2 Reference Unit Gross Rated Total Cooling Capacity {w}",
" 0.96, !- Speed 2 Reference Unit Gross Rated Sensible Heat Ratio {dimensionless}",
" 8.132826118, !- Speed 2 Reference Unit Gross Rated Cooling COP {dimensionless}",
" 0.449293966, !- Speed 2 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 2 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 2 Total Cooling Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 2 Total Cooling Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 2 Total Cooling Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 2 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 2 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 2 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 2 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 2 Waste Heat Function of Temperature Curve Name",
" 6783.7160573, !- Speed 3 Reference Unit Gross Rated Total Cooling Capacity {w}",
" 0.95, !- Speed 3 Reference Unit Gross Rated Sensible Heat Ratio {dimensionless}",
" 8.133952107, !- Speed 3 Reference Unit Gross Rated Cooling COP {dimensionless}",
" 0.489881446, !- Speed 3 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 3 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 3 Total Cooling Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 3 Total Cooling Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 3 Total Cooling Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 3 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 3 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 3 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 3 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 3 Waste Heat Function of Temperature Curve Name",
" 7819.1361476, !- Speed 4 Reference Unit Gross Rated Total Cooling Capacity {w}",
" 0.91, !- Speed 4 Reference Unit Gross Rated Sensible Heat Ratio {dimensionless}",
" 8.077619987, !- Speed 4 Reference Unit Gross Rated Cooling COP {dimensionless}",
" 0.530468926, !- Speed 4 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 4 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 4 Total Cooling Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 4 Total Cooling Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 4 Total Cooling Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 4 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 4 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 4 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 4 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 4 Waste Heat Function of Temperature Curve Name",
" 8827.8867705, !- Speed 5 Reference Unit Gross Rated Total Cooling Capacity {w}",
" 0.871, !- Speed 5 Reference Unit Gross Rated Sensible Heat Ratio {dimensionless}",
" 7.974604129, !- Speed 5 Reference Unit Gross Rated Cooling COP {dimensionless}",
" 0.571056406, !- Speed 5 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 5 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 5 Total Cooling Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 5 Total Cooling Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 5 Total Cooling Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 5 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 5 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 5 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 5 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 5 Waste Heat Function of Temperature Curve Name",
" 10734.02101, !- Speed 6 Reference Unit Gross Rated Total Cooling Capacity {w}",
" 0.816, !- Speed 6 Reference Unit Gross Rated Sensible Heat Ratio {dimensionless}",
" 7.661685232, !- Speed 6 Reference Unit Gross Rated Cooling COP {dimensionless}",
" 0.652231367, !- Speed 6 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 6 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 6 Total Cooling Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 6 Total Cooling Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 6 Total Cooling Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 6 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 6 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 6 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 6 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve , !- Speed 6 Waste Heat Function of Temperature Curve Name",
" 12454.348191, !- Speed 7 Reference Unit Gross Rated Total Cooling Capacity {w}",
" 0.784, !- Speed 7 Reference Unit Gross Rated Sensible Heat Ratio {dimensionless}",
" 7.257778666, !- Speed 7 Reference Unit Gross Rated Cooling COP {dimensionless}",
" 0.732934379, !- Speed 7 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 7 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 7 Total Cooling Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 7 Total Cooling Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 7 Total Cooling Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 7 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 7 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 7 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 7 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 7 Waste Heat Function of Temperature Curve Name",
" 13963.37113, !- Speed 8 Reference Unit Gross Rated Total Cooling Capacity {w}",
" 0.766, !- Speed 8 Reference Unit Gross Rated Sensible Heat Ratio {dimensionless}",
" 6.804761759, !- Speed 8 Reference Unit Gross Rated Cooling COP {dimensionless}",
" 0.81410934, !- Speed 8 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 8 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 8 Total Cooling Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 8 Total Cooling Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 8 Total Cooling Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 8 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 8 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 8 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 8 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 8 Waste Heat Function of Temperature Curve Name",
" 16092.825525, !- Speed 9 Reference Unit Gross Rated Total Cooling Capacity {w}",
" 0.739, !- Speed 9 Reference Unit Gross Rated Sensible Heat Ratio {dimensionless}",
" 5.765971166, !- Speed 9 Reference Unit Gross Rated Cooling COP {dimensionless}",
" 0.891980668, !- Speed 9 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 9 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 9 Total Cooling Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 9 Total Cooling Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 9 Total Cooling Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 9 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 9 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 9 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 9 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve; !- Speed 9 Waste Heat Function of Temperature Curve Name",
" Coil:Heating:WaterToAirHeatPump:VariableSpeedEquationFit,",
" Lobby_ZN_1_FLR_2 WSHP Heating Mode, !- Name",
" Lobby_ZN_1_FLR_2 WSHP Heating Source Side Inlet Node, !- Water-to-Refrigerant HX Water Inlet Node Name",
" Lobby_ZN_1_FLR_2 WSHP Heating Source Side Outlet Node, !- Water-to-Refrigerant HX Water Outlet Node Name",
" Lobby_ZN_1_FLR_2 WSHP Heating Coil Air Inlet Node, !- Indoor Air Inlet Node Name",
" Lobby_ZN_1_FLR_2 WSHP SuppHeating Coil Air Inlet Node, !- Indoor Air Outlet Node Name",
" 9, !- Number of Speeds {dimensionless}",
" 9, !- Nominal Speed Level {dimensionless}",
" autosize, !- Rated Heating Capacity At Selected Nominal Speed Level {w}",
" autosize, !- Rated Air Flow Rate At Selected Nominal Speed Level {m3/s}",
" autosize, !- Rated Water Flow Rate At Selected Nominal Speed Level {m3/s}",
" PLF Curve, !- Energy Part Load Fraction Curve Name",
" 6437.5991236, !- Speed 1 Reference Unit Gross Rated Heating Capacity {w}",
" 9.965323721, !- Speed 1 Reference Unit Gross Rated Heating COP {dimensionless}",
" 0.408706486, !- Speed 1 Reference Unit Rated Air Flow {m3/s}",
" 0.0008201726 , !- Speed 1 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 1 Heating Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 1 Total Heating Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 1 Heating Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 1 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 1 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 1 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 1 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 1 Waste Heat Function of Temperature Curve Name",
" 7521.3759405, !- Speed 2 Reference Unit Gross Rated Heating Capacity {w}",
" 9.3549452, !- Speed 2 Reference Unit Gross Rated Heating COP {dimensionless}",
" 0.449293966, !- Speed 2 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 2 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 2 Heating Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 2 Total Heating Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 2 Heating Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 2 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 2 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 2 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 2 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 2 Waste Heat Function of Temperature Curve Name",
" 8601.0497624, !- Speed 3 Reference Unit Gross Rated Heating Capacity {w}",
" 8.857929724, !- Speed 3 Reference Unit Gross Rated Heating COP {dimensionless}",
" 0.489881446, !- Speed 3 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 3 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 3 Heating Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 3 Total Heating Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 3 Heating Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 3 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 3 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 3 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 3 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 3 Waste Heat Function of Temperature Curve Name",
" 9675.1552339, !- Speed 4 Reference Unit Gross Rated Heating Capacity {w}",
" 8.442543834, !- Speed 4 Reference Unit Gross Rated Heating COP {dimensionless}",
" 0.530468926, !- Speed 4 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 4 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 4 Heating Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 4 Total Heating Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 4 Heating Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 4 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 4 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 4 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 4 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 4 Waste Heat Function of Temperature Curve Name",
" 10743.692355, !- Speed 5 Reference Unit Gross Rated Heating Capacity {w}",
" 8.090129785, !- Speed 5 Reference Unit Gross Rated Heating COP {dimensionless}",
" 0.571056406, !- Speed 5 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 5 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 5 Heating Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 5 Total Heating Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 5 Heating Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 5 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 5 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 5 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 5 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 5 Waste Heat Function of Temperature Curve Name",
" 12861.716978, !- Speed 6 Reference Unit Gross Rated Heating Capacity {w}",
" 7.521471917, !- Speed 6 Reference Unit Gross Rated Heating COP {dimensionless}",
" 0.652231367, !- Speed 6 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 6 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 6 Heating Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 6 Total Heating Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 6 Heating Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 6 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 6 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 6 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 6 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 6 Waste Heat Function of Temperature Curve Name",
" 14951.606778, !- Speed 7 Reference Unit Gross Rated Heating Capacity {w}",
" 7.072661674, !- Speed 7 Reference Unit Gross Rated Heating COP {dimensionless}",
" 0.732934379, !- Speed 7 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 7 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 7 Heating Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 7 Total Heating Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 7 Heating Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 7 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 7 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 7 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 7 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 7 Waste Heat Function of Temperature Curve Name",
" 17011.8964, !- Speed 8 Reference Unit Gross Rated Heating Capacity {w}",
" 6.710807258, !- Speed 8 Reference Unit Gross Rated Heating COP {dimensionless}",
" 0.81410934, !- Speed 8 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 8 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 8 Heating Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 8 Total Heating Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 8 Heating Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 8 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 8 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 8 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0 , !- Speed 8 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve, !- Speed 8 Waste Heat Function of Temperature Curve Name",
" 20894.501936, !- Speed 9 Reference Unit Gross Rated Heating Capacity {w}",
" 5.89906887, !- Speed 9 Reference Unit Gross Rated Heating COP {dimensionless}",
" 0.891980668, !- Speed 9 Reference Unit Rated Air Flow Rate {m3/s}",
" 0.0008201726 , !- Speed 9 Reference Unit Rated Water Flow Rate {m3/s}",
" BiquadraticCurve, !- Speed 9 Heating Capacity Function of Temperature Curve Name",
" CubicCurve, !- Speed 9 Total Heating Capacity Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 9 Heating Capacity Function of Water Flow Fraction Curve Name",
" BiquadraticCurve, !- Speed 9 Energy Input Ratio Function of Temperature Curve Name",
" CubicCurve, !- Speed 9 Energy Input Ratio Function of Air Flow Fraction Curve Name",
" CubicCurve, !- Speed 9 Energy Input Ratio Function of Water Flow Fraction Curve Name",
" 0.0, !- Speed 9 Reference Unit Waste Heat Fraction of Input Power At Rated Conditions {dimensionless}",
" BiquadraticCurve; !- Speed 9 Waste Heat Function of Temperature Curve Name",
" Fan:OnOff,",
" Lobby_ZN_1_FLR_2 WSHP Fan, !- Name",
" OnSched, !- Availability Schedule Name",
" 0.7, !- Fan Total Efficiency",
" 113, !- Pressure Rise {Pa}",
" Autosize, !- Maximum Flow Rate {m3/s}",
" 0.9, !- Motor Efficiency",
" 1.0, !- Motor In Airstream Fraction",
" Space Out Node, !- Air Inlet Node Name",
" Lobby_ZN_1_FLR_2 WSHP Cooling Coil Air Inlet Node, !- Air Outlet Node Name",
" FanPowerCurve, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name",
" ,",
" WSHP;",
" Coil:Heating:Electric,",
" Lobby_ZN_1_FLR_2 WSHP Supp Heating Coil, !- Name",
" OnSched, !- Availability Schedule Name",
" 1.0, !- Gas Burner Efficiency",
" Autosize, !- Nominal Capacity {W}",
" Lobby_ZN_1_FLR_2 WSHP SuppHeating Coil Air Inlet Node, !- Air Inlet Node Name",
" Space In Node; !- Air Outlet Node Name",
});
ASSERT_FALSE( process_idf( idf_objects ) );
bool ErrorsFound( false );
GetZoneData( ErrorsFound );
GetZoneEquipmentData();
GetPTUnit();
TotNumLoops = 2;
PlantLoop.allocate( TotNumLoops );
for( int l = 1; l <= TotNumLoops; ++l ) {
auto & loop( PlantLoop( l ) );
loop.LoopSide.allocate( 2 );
auto & loopside( PlantLoop( l ).LoopSide( 1 ) );
loopside.TotalBranches = 1;
loopside.Branch.allocate( 1 );
auto & loopsidebranch( PlantLoop( l ).LoopSide( 1 ).Branch( 1 ) );
loopsidebranch.TotalComponents = 1;
loopsidebranch.Comp.allocate( 1 );
}
PlantLoop( 2 ).Name = "ChilledWaterLoop";
PlantLoop( 2 ).FluidName = "ChilledWater";
PlantLoop( 2 ).FluidIndex = 1;
PlantLoop( 2 ).FluidName = "WATER";
PlantLoop( 2 ).LoopSide( 1 ).Branch( 1 ).Comp( 1 ).Name = VarSpeedCoil( 2 ).Name;
PlantLoop( 2 ).LoopSide( 1 ).Branch( 1 ).Comp( 1 ).TypeOf_Num = VarSpeedCoil( 2 ).VSCoilTypeOfNum;
PlantLoop( 2 ).LoopSide( 1 ).Branch( 1 ).Comp( 1 ).NodeNumIn = VarSpeedCoil( 2 ).WaterInletNodeNum;
PlantLoop( 2 ).LoopSide( 1 ).Branch( 1 ).Comp( 1 ).NodeNumOut = VarSpeedCoil( 2 ).WaterOutletNodeNum;
PlantLoop( 1 ).Name = "HotWaterLoop";
PlantLoop( 1 ).FluidName = "HotWater";
PlantLoop( 1 ).FluidIndex = 1;
PlantLoop( 1 ).FluidName = "WATER";
PlantLoop( 1 ).LoopSide( 1 ).Branch( 1 ).Comp( 1 ).Name = VarSpeedCoil( 1 ).Name;
PlantLoop( 1 ).LoopSide( 1 ).Branch( 1 ).Comp( 1 ).TypeOf_Num = VarSpeedCoil( 1 ).VSCoilTypeOfNum;
PlantLoop( 1 ).LoopSide( 1 ).Branch( 1 ).Comp( 1 ).NodeNumIn = VarSpeedCoil( 1 ).WaterInletNodeNum;
PlantLoop( 1 ).LoopSide( 1 ).Branch( 1 ).Comp( 1 ).NodeNumOut = VarSpeedCoil( 1 ).WaterOutletNodeNum;
DataSizing::CurZoneEqNum = 1;
DataSizing::ZoneSizingRunDone = true;
DataSizing::FinalZoneSizing.allocate( 1 );
DataSizing::FinalZoneSizing( DataSizing::CurZoneEqNum ).DesCoolVolFlow = 1.0;
DataSizing::FinalZoneSizing( DataSizing::CurZoneEqNum ).DesCoolCoilInTemp = 24.0;
DataSizing::FinalZoneSizing( DataSizing::CurZoneEqNum ).DesCoolCoilInHumRat = 0.09;
DataSizing::FinalZoneSizing( DataSizing::CurZoneEqNum ).CoolDesTemp = 12.0;
DataSizing::FinalZoneSizing( DataSizing::CurZoneEqNum ).CoolDesHumRat = 0.05;
DataEnvironment::OutBaroPress = 101325;
OutputReportPredefined::SetPredefinedTables();
DataSizing::ZoneEqSizing.allocate( 1 );
DataSizing::ZoneEqSizing( DataSizing::CurZoneEqNum ).SizingMethod.allocate( 16 );
SizePTUnit( 1 );
// This VS coil is rather quirky. It sizes the capacity based on zone sizing air flow rate.
// Then uses that capacity to back calculate the air flow needed to keep the reference air flow per capacity ratio constant.
// For this reason, the parent object would size to an air flow that was different than the chile.
// identify coil
EXPECT_EQ ( VariableSpeedCoils::VarSpeedCoil( 1 ).Name, "LOBBY_ZN_1_FLR_2 WSHP COOLING MODE" );
// expect coil air flow to equal PTUnit cooling air flow
EXPECT_EQ( VariableSpeedCoils::VarSpeedCoil( 1 ).RatedAirVolFlowRate, PTUnit( 1 ).MaxCoolAirVolFlow );
EXPECT_EQ( VariableSpeedCoils::VarSpeedCoil( 1 ).MSRatedAirVolFlowRate( 9 ), PTUnit( 1 ).MaxCoolAirVolFlow );
// expect the ratio of air flow to capacity to equal to the reference air flow and capacity specified in coil input
Real64 refAirflowCapacityRatio = 0.891980668 / 16092.825525; // speed 9 reference cooling data
Real64 sizingAirflowCapacityRatio = VariableSpeedCoils::VarSpeedCoil( 1 ).MSRatedAirVolFlowRate( 9 ) / VariableSpeedCoils::VarSpeedCoil( 1 ).MSRatedTotCap( 9 );
EXPECT_EQ( refAirflowCapacityRatio, sizingAirflowCapacityRatio );
// this same ratio should also equal the internal flow per capacity variable used to back calculate operating air flow rate
EXPECT_EQ( sizingAirflowCapacityRatio, VariableSpeedCoils::VarSpeedCoil( 1 ).MSRatedAirVolFlowPerRatedTotCap( 9 ) );
// identify coil
EXPECT_EQ( VariableSpeedCoils::VarSpeedCoil( 2 ).Name, "LOBBY_ZN_1_FLR_2 WSHP HEATING MODE" );
// expect coil air flow to equal PTUnit heating air flow
EXPECT_EQ( VariableSpeedCoils::VarSpeedCoil( 2 ).RatedAirVolFlowRate, PTUnit( 1 ).MaxHeatAirVolFlow );
EXPECT_EQ( VariableSpeedCoils::VarSpeedCoil( 2 ).MSRatedAirVolFlowRate( 9 ), PTUnit( 1 ).MaxHeatAirVolFlow );
// expect the ratio of air flow to capacity to equal to the reference air flow and capacity specified in coil input
refAirflowCapacityRatio = 0.891980668 / 20894.501936; // speed 9 reference heating data
sizingAirflowCapacityRatio = VariableSpeedCoils::VarSpeedCoil( 2 ).MSRatedAirVolFlowRate( 9 ) / VariableSpeedCoils::VarSpeedCoil( 2 ).MSRatedTotCap( 9 );
EXPECT_EQ( refAirflowCapacityRatio, sizingAirflowCapacityRatio );
// this same ratio should also equal the internal flow per capacity variable used to back calculate operating air flow rate
EXPECT_EQ( sizingAirflowCapacityRatio, VariableSpeedCoils::VarSpeedCoil( 2 ).MSRatedAirVolFlowPerRatedTotCap( 9 ) );
SizeFan( 1 );
// the fan vol flow rate should equal the max of cooling and heating coil flow rates
EXPECT_EQ( Fan( 1 ).MaxAirFlowRate, max( VariableSpeedCoils::VarSpeedCoil( 1 ).RatedAirVolFlowRate, VariableSpeedCoils::VarSpeedCoil( 2 ).RatedAirVolFlowRate ) );
EXPECT_EQ( Fan( 1 ).MaxAirFlowRate, max( PTUnit( 1 ).MaxCoolAirVolFlow, PTUnit( 1 ).MaxHeatAirVolFlow ) );
}
}
|
8fa2a14130118fd5e625df1e3be38d1767b9016b
|
6b2a8dd202fdce77c971c412717e305e1caaac51
|
/solutions_1485488_0/C++/smn/B.cpp
|
8e04d1d73c9ee905625720e468c895a2302381ea
|
[] |
no_license
|
alexandraback/datacollection
|
0bc67a9ace00abbc843f4912562f3a064992e0e9
|
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
|
refs/heads/master
| 2021-01-24T18:27:24.417992
| 2017-05-23T09:23:38
| 2017-05-23T09:23:38
| 84,313,442
| 2
| 4
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,591
|
cpp
|
B.cpp
|
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <map>
#include <set>
#include <iostream>
#include <memory>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <sstream>
#include <stack>
#include <queue>
#include <cstring>
using namespace std;
typedef long long LL;
#define REP(i,e) for (int (i) = 0; (i) < (e); ++(i))
#define foreach(__my_iterator,__my_object) for (typeof((__my_object).begin()) __my_iterator = (__my_object).begin(); __my_iterator!= (__my_object).end(); __my_iterator++)
int N, M, H;
int ce[101][101];
int fl[101][101];
double dist[101][101];
double EPS = 0.00000001;
int dx[] = {1, -1, 0, 0};
int dy[] = {0, 0, -1, 1};
const double INF = (double)(1 << 30);
void solve(){
// cout << "debug" << endl;
priority_queue <pair <double, pair <int, int > > > q;
q.push(make_pair(0.0, make_pair(0, 0)));
while(! q.empty() ){
double time = -q.top().first;
int x = q.top().second.first; int y = q.top().second.second;
q.pop();
if(dist[y][x] < time + EPS) continue;
dist[y][x] = time;
int ceil = ce[y][x];
int flor = fl[y][x];
double curH = max(0.0, H - time * 10);
REP(i, 4){
int xx = x + dx[i]; int yy = y + dy[i];
if(xx < 0 || xx >= M) continue;
if(yy < 0 || yy >= N) continue;
int ceil2 = ce[yy][xx]; int flor2 = fl[yy][xx];
if(flor > ceil2 - 50) continue;
if(flor2 > ceil2 - 50) continue;
if(ceil -50 < flor2) continue;
double tt = time;
if(curH > ceil2-50) tt += (curH - (ceil2 - 50)) / 10.0;
// printf("tt=%lf height=%lf,flr=%d \n", tt, H - tt*10.0, flor);
if(tt < EPS){
q.push(make_pair ( -0.0, make_pair(xx, yy)));
}
else if(H - tt*10 < flor + 20){
q.push(make_pair ( - (tt+10), make_pair(xx, yy))) ;
}
else{
q.push(make_pair (-(tt+1), make_pair(xx, yy)));
// tt += (H - tt*10 - (flor2 + 20)) / 10.0;
// q.push(make_pair (-(tt+1), make_pair(xx, yy)));
}
}
}
printf("%lf\n", dist[N-1][M-1]);
}
int main(){
int T;
cin >> T;
REP(i, T){
cin >> H >> N >> M;
// cout << N << " " << M << endl;
REP(y, N) REP(x, M) cin >>ce[y][x];
REP(y, N) REP(x, M) cin >>fl[y][x];
REP(y, N) REP(x, M) dist[y][x] = INF;
printf("Case #%d: ", i+1);
solve();
}
return 0;
}
/*
"4
200 1 2
250 233
180 100
100 3 3
500 500 500
500 500 600
500 140 1000
10 10 10
10 10 490
10 10 10
100 3 3
500 100 500
100 100 500
500 500 500
10 10 10
10 10 10
10 10 10
100 2 2
1000 1000
1000 1000
100 900
900 100" | ./a.out
*/
|
fcccdb676dd920607fc0ad914d582468b095f3e9
|
4f116b78d77eb23fe3c54f292511c9d73cd78cd4
|
/libIlargia/include/isdl/SDLAssetManager.h
|
3fcfcd632ce9607aa492d7132f00dcdf406e50b0
|
[
"MIT"
] |
permissive
|
Rubentxu/Ilargia
|
99645571814183942de9ba62602aa6eade5e2215
|
e8367fff3402d43c02bb27ab7561f6075e64bedc
|
refs/heads/master
| 2016-08-12T13:34:47.010324
| 2016-04-08T10:46:53
| 2016-04-08T10:46:53
| 50,248,568
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,132
|
h
|
SDLAssetManager.h
|
#ifndef __SDLAssetManager__
#define __SDLAssetManager__
#include "core/Manager.h"
#include <SDL2pp/SDL2pp.hh>
namespace Ilargia {
class ILTexture: public AssetMap<SDL2pp::Texture>{
protected:
std::shared_ptr<SDL2pp::Renderer> _renderer;
public:
std::string baseDir;
ILTexture(std::shared_ptr<SDL2pp::Renderer> renderer) : _renderer(renderer){}
bool loadAsset(std::string fileName, std::string id);
};
class ILMusic: public AssetMap<SDL2pp::Music>{
public:
bool loadAsset(std::string fileName, std::string id);
};
class ILSoundFX: public AssetMap<SDL2pp::Chunk>{
public:
bool loadAsset(std::string fileName, std::string id);
};
class ILFont: public AssetMap<SDL2pp::Font>{
public:
bool loadAsset(std::string fileName, std::string id, int size);
};
class SDLAssetManager : public AssetManager<ILTexture, ILMusic, ILSoundFX, ILFont> {
public:
SDLAssetManager(std::shared_ptr<SDL2pp::Renderer> renderer) {
_renderer = renderer;
}
~SDLAssetManager();
};
}
#endif
|
be3e6c9d93d14bce778592c820380ab5a9b6dd4a
|
5a1f2a8fa38be9f7d66bf81c920cfa86aa7641ee
|
/Lib/src/CHANNEL.HPP
|
398e7449c102aa917e749b45ccce91cc09f7add1
|
[] |
no_license
|
gemcore/MIL-STD-161B
|
f5fb07aaff5597f986fe069efb8ec8414edc74c7
|
ebeabd7207c22a3327700db2369556daf5a53eef
|
refs/heads/master
| 2020-04-05T12:38:18.777236
| 2017-07-21T23:52:00
| 2017-07-21T23:52:00
| 95,200,068
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,229
|
hpp
|
CHANNEL.HPP
|
/* Data Channel definitions */
#ifndef CHANNELHPP
#define CHANNELHPP
#include <stdio.h> /* C Standard input/output i/f */
#include <stdlib.h> /* C Standard Library i/f */
#include "slist.hpp" /* C++ Toolkit singly linked list class */
//#define SERIAL
#ifdef SERIAL
#include "serial.hpp" /* Serial port I/O class */
#endif
//#define TIMING // Compile timing analysis
/* Constants */
#define MAX_BUFFERSIZE 8192 // max. data buffer size (ie. 8K bytes)
/* Standard Definitions */
#define uchar unsigned char
#define uint unsigned int
#define ulong unsigned long
/* Define data queue type */
struct any
{
char s[0];
};
typedef struct any* pany;
declare(gqueue,pany);
#if 0
struct panygqueue : slist {
int queue(pany a) { return slist::append(a); }
pany dqueue() { return(pany)slist::get(); }
panygqueue() {}
panygqueue(pany a) : slist((void *)a) {}
};
#endif
class channel
{
#ifdef SERIAL
serial *isp; // input serial pointer
serial *osp; // output serial pointer
#endif
FILE *ifp; // input file pointer
FILE *ofp; // output file pointer
int count,ecount,rcount; // counters
ulong bcount; // bit counter
ulong tmin,tmax,tacc; // statistical times
char buffer[MAX_BUFFERSIZE]; // data buffer
char source; // data source (1=queue,2=file,3=both)
gqueue(pany)q; // data queue
#if 0
panygqueue q;
#endif
pany qp; // data queue pointer
int qcount; // data queue count
char *cp;
public:
char *operator& ()
{ return buffer; }
char operator() (int i)
{ return buffer[i]; }
channel(char *,char *);
~channel();
uint getq_bit();
uint getf_bit();
int putq();
int putf();
int get(int);
void put(int=0);
int eob(char=0);
void fmt(char *);
void stats_start();
void stats_pause();
void stats_update();
void stats();
void flush();
void shift(uint=1);
friend class fax;
friend class rll;
friend class chan;
};
#endif
|
ccfa93c6e892f9b07738283dbb673efd95d6a1d7
|
8ca117ac2aab1980c1977bf4717f49cf5cecbbf7
|
/header/exceptions/NotEnoughSpaceException.hpp
|
a7cc0d1659c01a7bd4f3dcc46a3b2f462d1a700d
|
[] |
no_license
|
bendem/SchoolCars
|
06df70e0e670a7a9bbe5a17101b3b7056a46e116
|
5144065bef06246a82305499e47c7176b79f219b
|
refs/heads/master
| 2021-01-01T16:31:12.895666
| 2015-01-23T07:21:22
| 2015-01-23T07:21:22
| 27,227,914
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 306
|
hpp
|
NotEnoughSpaceException.hpp
|
#ifndef NOTENOUGHSPACEEXCEPTION_HPP
#define NOTENOUGHSPACEEXCEPTION_HPP
#include "exceptions/Exception.hpp"
class NotEnoughSpaceException : public Exception {
public:
NotEnoughSpaceException() : Exception("") {}
NotEnoughSpaceException(const String& message) : Exception(message) {}
};
#endif
|
3710c8ab1ba5bed7a8198be370f5e0b157e1fd4c
|
85e5e67b0ddb32701b6aad5c3d2a428c768bb41c
|
/Engine/DeadState.cpp
|
bc2d0a5496ea6e825abefaa2d1dc40a48a61e4b0
|
[] |
no_license
|
lim-james/Allure
|
a6ebca6b2ca1c70bc2108f8ae710c2a88117657d
|
6d837a49254d181babf546d829fc871e468d66db
|
refs/heads/master
| 2021-07-18T04:31:08.130059
| 2020-08-21T03:30:54
| 2020-08-21T03:30:54
| 205,639,206
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 857
|
cpp
|
DeadState.cpp
|
#include "DeadState.h"
#include "Physics.h"
#include "SphereCollider.h"
#include "SpriteAnimation.h"
#include "SpriteRender.h"
#include "EnemyLife.h"
void States::Dead::Enter(unsigned const & target, EntityManager * const entities) {
entities->GetComponent<SphereCollider>(target)->SetActive(false);
entities->GetComponent<SpriteAnimation>(target)->queued = "DEAD";
}
void States::Dead::Update(unsigned const & target, float const & dt, EntityManager * const entities) {
SpriteRender* const render = entities->GetComponent<SpriteRender>(target);
render->tint.a -= dt;
if (render->tint.a < 0.f) {
entities->GetComponent<EnemyLife>(target)->Kill();
}
}
void States::Dead::FixedUpdate(unsigned const & target, float const & dt, EntityManager * const entities) {}
void States::Dead::Exit(unsigned const & target, EntityManager * const entities) {}
|
92986e9a2832ed68bc4c2713a09a99a289e8b39c
|
be5295b393829f336ac86518ead28ee6353aa86a
|
/SCPM.cpp
|
e4e502a3c3f692b6901d92ea533c58b2836f7ee7
|
[] |
no_license
|
sserna1231/SCPM
|
b018dcfda1fedf9426b6bba85486ceba33cf92c8
|
5014244b9877e3eabfdee532459e8c79c20724ee
|
refs/heads/main
| 2023-06-08T07:06:43.366923
| 2021-06-21T18:14:28
| 2021-06-21T18:14:28
| 379,020,208
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 11,284
|
cpp
|
SCPM.cpp
|
#include "ampl/ampl.h"
#include <chrono>
#include <cstdio>
#include <forward_list>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <stack>
#include <string>
#include <tuple>
#include <unordered_map>
#include <vector>
using namespace std;
constexpr double TIME_LIMIT = 300; // Tiempo límite de cada ejecución (segundos)
struct Vertice {
vector<int> destinos;
bool visited;
unsigned int pos;
Vertice() : visited(false), pos(1) {}
~Vertice() {}
};
unordered_map<string, bool> connections(unordered_map<int, Vertice>& arcs, int vertice)
{
stack<int> nodos;
unordered_map<string, bool> conjunto;
nodos.push(vertice);
arcs[vertice].visited = true;
conjunto.emplace(to_string(vertice), true);
while (!nodos.empty()) {
int origen = nodos.top();
int destino = 0;
while (destino != -1) {
destino = -1;
if (!arcs[origen].visited) {
nodos.push(origen);
arcs[origen].visited = true;
conjunto.emplace(to_string(origen), true);
}
Vertice& v = arcs[origen]; //Instantiated only for readibility sake
for (unsigned i = 0; i < v.destinos.size(); ++i) {
unsigned indx = (v.pos - 1) % v.destinos.size();
if (!arcs.count(v.destinos[indx])) {
origen = v.destinos[indx];
++(v.pos);
break;
}
if (arcs[v.destinos[indx]].visited) {
++(v.pos);
continue;
}
else {
destino = v.destinos[indx];
origen = destino;
++(v.pos);
break;
}
}
}
if (!conjunto.count(to_string(origen)))
conjunto.emplace(to_string(origen), true);
nodos.pop();
}
return conjunto;
}
string ver2str(unordered_map<string, bool> nodos)
{
string conjunto("{");
while (!nodos.empty()) {
nodos.size() == 1 ? conjunto += nodos.begin()->first + "}" :
conjunto += nodos.begin()->first + ", ";
nodos.erase(nodos.begin());
}
return conjunto;
}
string extract_arcs(unordered_map<int, Vertice> arcos, unordered_map<string, bool> subTour) {
string conjunto("{");
for(auto it = subTour.begin(); it != subTour.end(); ++it) {
int indx = stoi(it->first);
int aux = -1;
for(auto it2 = arcos[indx].destinos.begin(); it2 != arcos[indx].destinos.end(); ++it2){
if( *it2 == aux ) continue;
char buff[20];
snprintf(buff, 20, "(%d,%d),", indx, *it2);
string pareja(buff);
conjunto += pareja;
aux = *it2;
}
}
conjunto.pop_back();
conjunto += "}";
return conjunto;
}
int getNumArcs(unordered_map<string, bool> subTour, unordered_map<int, Vertice> arcs) {
unsigned int numArcs = 0;
for (auto it = subTour.begin(); it != subTour.end(); ++it) {
unsigned int indx = stoi(it->first);
int destino = arcs[indx].destinos.front();
++numArcs;
for (auto it2 = arcs[indx].destinos.begin(); it2 != arcs[indx].destinos.end(); ++it2) {
if(*it2 == destino) continue;
destino = *it2;
++numArcs;
}
}
return numArcs;
}
//Subtour Constraints templates
string EAST_OUT(int numConstraint, string subtour_arcs, string nodeSet, int numArcs) {
char r[10000]; //Corresponde al número de caracteres de la plantilla de la restricción
/*snprintf(r, 1000, "s.t. r%d:sum{i in %s, j in Nodes: i<>j and not j in %s} x[i,j] >= 1;",
numConstraint, nodeSet.c_str(), nodeSet.c_str());*/
snprintf(r, 10000,
"s.t. r%d:sum{(i,j) in %s}w[i,j]-sum{i in %s,k in Nodes:i<>k and not k in %s}w[i,k]<=%d-1;",
numConstraint, subtour_arcs.c_str(), nodeSet.c_str(), nodeSet.c_str(), numArcs);
string constraint(r);
return constraint;
}
string EAST_IN(int numConstraint, string subtour_arcs, string nodeSet, int numArcs) {
char r[10000]; //Corresponde al número de caracteres de la plantilla de la restricción
/*snprintf(r, 1000, "s.t. r%d:sum{i in %s, j in Nodes: i<>j and not j in %s} x[i,j] >= 1;",
numConstraint, nodeSet.c_str(), nodeSet.c_str());*/
snprintf(r, 10000,
"s.t. r%d:sum{(i,j) in %s}w[i,j]-sum{k in Nodes, i in %s:i<>k and not k in %s}w[k,i]<=%d-1;",
numConstraint, subtour_arcs.c_str(), nodeSet.c_str(), nodeSet.c_str(), numArcs);
string constraint(r);
return constraint;
}
void saveStat( const string& instanceName, vector<float> stats ) {
ofstream log( "Resultados.txt", std::ios_base::app);
log << instanceName << ' ';
for ( auto it = stats.begin(); it != stats.end(); ++it )
log << setprecision(4) << *it << ' ';
log << "\n";
log.close();
}
int main(int argc, char** argv) {
if (argc < 2) {
cout << "ERROR: Archivo '.dat' de instancia no especificado\n";
cout << "Uso de comando: datparse [nombre_archivodat]\n";
return 1;
}
try {
ampl::AMPL ampl;
//Paths to files
string datPath = argv[1];
string instanceName;
unsigned pos = datPath.find_last_of("/\\");
if( pos == string::npos ) instanceName = argv[1];
else instanceName = datPath.substr(pos + 1);
datPath += "/SCPM.dat";
//PERMITIR FLEXIBILIDAD DE SELECCIÓN SOLVER_______________________
ampl.setOption("solver", "cplex");
ampl.setBoolOption("presolve", true);
ampl.setOption("cplex_options", "outlev 1 timelimit 5 return_mipgap 3"); //mipdisplay 2 timelimit 20
forward_list<float> weights;
weights.push_front(0.8);
weights.push_front(0.5);
weights.push_front(0.2);
for( auto weight = weights.begin(); weight != weights.end();){
ampl.read("SCPM.mod");
ampl.readData(datPath);
bool existSubtour = true;
int k = 1, iter = 0; // Used to enumerate the constraints without repeating
double time_exec;
// Variables needed to save the important data
float CTP, RAP, gap, obj, estado;
vector<float> stats;
// CHanging the value of parameter "Beta"
ampl::Parameter beta = ampl.getParameter("Beta");
float b = weights.front();
beta.set(b);
auto t1 = chrono::high_resolution_clock::now();
do{
// Solve
//ampl.solve();
ampl.getOutput("solve;");
// Save ampl status
ampl::DataFrame status = ampl.getData("solve_result_num");
ampl::DataFrame::iterator it_status = status.begin();
estado = float((*it_status)[0].dbl());
// Get the value of the variables and export it to c++ container
ampl::Variable x_ampl = ampl.getVariable("x");
ampl::DataFrame df_x = x_ampl.getValues();
int originNode;
unordered_map<int, Vertice> arcos;
for (ampl::DataFrame::iterator it = df_x.begin(); it != df_x.end(); ++it) {
int indx1 = int((*it)[0].dbl());
int indx2 = int((*it)[1].dbl());
int var_value = int((*it)[2].dbl());
if (indx1 == 0 && var_value != 0) {
//cout << "Nodo inicial: " << indx2 << endl;
originNode = indx2;
continue;
}
if (var_value != 0) {
if (arcos.count(indx1))
arcos[indx1].destinos.insert(arcos[indx1].destinos.end(), var_value, indx2);
else {
Vertice v;
v.destinos.insert(v.destinos.end(), var_value, indx2);
arcos.emplace(indx1, v);
}
//cout << indx1 << " -> " << indx2 << endl;
}
}
//Ruta inicial
connections(arcos, originNode);
forward_list<tuple<string, string, int>> constraints;
//Obtener subtoures
for (auto it = arcos.begin(); it != arcos.end(); ++it) {
if (!it->second.visited) {
unordered_map<string, bool> subTour = connections(arcos, it->first);
string subtour_arcos = extract_arcs(arcos, subTour);
string formattedSubtour = ver2str(subTour);
int numArcos = getNumArcs(subTour, arcos);
constraints.push_front(make_tuple(subtour_arcos, formattedSubtour, numArcos));
}
}
for (auto it = constraints.begin(); it != constraints.end(); ++it, ++k) {
string out = EAST_OUT(k, get<0>(*it), get<1>(*it), get<2>(*it));
ampl.eval(out);
}
auto t2 = chrono::high_resolution_clock::now();
auto duration = chrono::duration_cast<chrono::milliseconds>(t2 - t1).count() / 1000.0;
if (duration >= TIME_LIMIT) {
existSubtour = false;
time_exec = duration;
}
if (constraints.empty()) {
existSubtour = false;
time_exec = duration;
}
arcos.clear();
constraints.clear();
++iter;
} while (existSubtour);
// Obtain CTP indicator
ampl::DataFrame kpi = ampl.getData("sum{(i,j) in Arcs}C[j]*x[i,j] / NADIR_COST");
ampl::DataFrame::iterator it_kpi = kpi.begin();
CTP = float((*it_kpi)[0].dbl());
// Obtain RAP indicator
kpi = ampl.getData("sum{(i,j) in Arcs}R[j]*x[i,j] / NADIR_RISK");
it_kpi = kpi.begin();
RAP = float((*it_kpi)[0].dbl());
// Get objective entity by AMPL name
ampl::Objective Fo = ampl.getObjective("z");
// Save objective value and gap value
obj = Fo.value();
gap = Fo.getValues("relmipgap").getRowByIndex(0)[0].dbl();
// Save ampl status
stats.push_back(CTP);
stats.push_back(RAP);
stats.push_back(b);
stats.push_back(obj);
stats.push_back(gap);
stats.push_back(estado);
stats.push_back(k);
stats.push_back(iter);
stats.push_back(time_exec);
saveStat(instanceName, stats);
stats.clear();
weights.pop_front();
weight = weights.begin();
ampl.reset();
}
ampl.close();
return 0;
}
catch (const exception& e) {
cout << "Error: " << e.what() << "\n";
cin.get();
return 1;
}
}
|
b140884c8f86fa1d9f2775c39e6ab044519be617
|
425ce74ed3a506ba5fe336c4009c3cfa72676a16
|
/advancedlinewidget.cpp
|
8668018cb72fc10b228faf7cd019b1fc4413d20f
|
[] |
no_license
|
Argasio/marionettaPlus
|
36e335873477200136c4d1f0e013de5c9b6cbf2d
|
d5c63f7054f05d56a6880a4ea60997f9dae5dfcc
|
refs/heads/master
| 2023-07-10T06:29:40.944537
| 2021-08-25T14:49:25
| 2021-08-25T14:49:25
| 273,514,566
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,378
|
cpp
|
advancedlinewidget.cpp
|
#include "advancedlinewidget.h"
#include "ui_advancedlinewidget.h"
#include "myview.h"
#include "animation.h"
#include "stick.h"
#include "uiItems.h"
extern int W;
extern int H;
#define CS V->myAnimation->currentFrame->currentStickFigure->currentStick
#define CURRENTSTICKFIGURE V->myAnimation->currentFrame->currentStickFigure
#define CURRENTFRAME V->myAnimation->currentFrame
extern myView *V;
advancedLineWidget::advancedLineWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::advancedLineWidget)
{
ui->setupUi(this);
editLineThicknessSlider = ui->editLineThicknessSlider;
lineEditThicknessWidthSpinbox = ui->lineEditThicknessWidthSpinbox;
}
advancedLineWidget::~advancedLineWidget()
{
delete ui;
}
void advancedLineWidget::on_editLineThicknessSlider_valueChanged(int value)
{
if(CURRENTSTICKFIGURE != nullptr){
if(CS != nullptr){
editLineThicknessSlider->setRange(0,0.5*sqrt(pow(W,2)+pow(H,2)));
lineEditThicknessWidthSpinbox->setRange(0,0.5*sqrt(pow(W,2)+pow(H,2)));
lineEditThicknessWidthSpinbox->setValue(value);
CS->Pen.setWidth(value);
V->myPen.setWidth(value);
CS->refresh(1);
}
}
}
void advancedLineWidget::on_lineEditThicknessWidthSpinbox_editingFinished()
{
editLineThicknessSlider->setValue(lineEditThicknessWidthSpinbox->value());
}
|
37dd4db5821f6a8ed490027db08138239cf679e9
|
31e35cd05d563634b6ac8d528394aef228aee052
|
/005/sol005a1-2.cpp
|
a7fbecab7970af0b53c0f67e82b48466729f252e
|
[] |
no_license
|
makio93/typical90
|
cd2a5afb334fd2063a7fdd6c5fb5f6b9ecf260fa
|
8ef53984cb98fb42b5a3569d554e9348298d75cf
|
refs/heads/main
| 2023-06-23T05:23:09.283117
| 2021-07-10T23:41:16
| 2021-07-10T23:41:16
| 382,003,845
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,690
|
cpp
|
sol005a1-2.cpp
|
// 005a1-2 自力/小課題1まで/ACLなし
// 自力解法: 桁数と余りの値を状態として桁DP
// 黄diff
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()
const ll mod = (ll)(1e9) + 7;
struct mint {
ll x;
mint(ll x=0) : x((x%mod+mod)%mod) {}
mint operator-() const { return mint(-x); }
mint& operator+=(const mint a) {
if ((x += a.x) >= mod) x -= mod;
return *this;
}
mint& operator-=(const mint a) {
if ((x += mod-a.x) >= mod) x -= mod;
return *this;
}
mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this;}
mint operator+(const mint a) const { return mint(*this) += a;}
mint operator-(const mint a) const { return mint(*this) -= a;}
mint operator*(const mint a) const { return mint(*this) *= a;}
mint pow(ll t) const {
if (!t) return 1;
mint a = pow(t>>1);
a *= a;
if (t&1) a *= *this;
return a;
}
};
istream& operator>>(istream& is, mint& a) { return is >> a.x; }
ostream& operator<<(ostream& os, const mint& a) { return os << a.x; }
int main() {
ll n;
int b, k;
cin >> n >> b >> k;
vector<int> c(k);
rep(i, k) cin >> c[i];
vector<vector<mint>> dp(2, vector<mint>(b));
dp[0][0] = 1;
for (ll i=0; i<n; ++i) {
dp[1] = vector<mint>(b);
rep(j, b) {
int mval = j;
rep(j2, k) {
int mval2 = (mval * 10 + c[j2]) % b;
dp[1][mval2] += dp[0][j];
}
}
swap(dp[0], dp[1]);
}
cout << dp[0][0] << endl;
return 0;
}
|
54d382e53fa8c03cbef65d87f89c887bb466499e
|
181968b591aa12c3081dbb78806717cce0fad98e
|
/src/demos/FallingObjectsDemo.h
|
ff94bc6fc682491105b3cd68c5ef6dbe14370ab9
|
[
"MIT"
] |
permissive
|
Liudeke/CAE
|
d6d4c2dfbabe276a1e2acaa79038d8efcbe9d454
|
7eaa096e45fd32f55bd6de94c30dcf706c6f2093
|
refs/heads/master
| 2023-03-15T08:55:37.797303
| 2020-10-03T17:31:22
| 2020-10-03T17:36:05
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 809
|
h
|
FallingObjectsDemo.h
|
#ifndef FALLINGOBJECTSDEMO_H
#define FALLINGOBJECTSDEMO_H
#include <modules/demo_loader/Demo.h>
#include <data_structures/BoundingBox.h>
#include <scene/scene_graph/SGCore.h>
class ApplicationControl;
class FallingObjectsDemo : public Demo
{
public:
FallingObjectsDemo(ApplicationControl* ac, std::string name, bool rigid);
// Demo interface
public:
virtual std::string getName();
virtual void load();
virtual void unload();
private:
ApplicationControl* mAc;
std::string mName;
bool mRigid;
SGLeafNode* importAndScale(
SGChildrenNode* parent,
std::string path,
const std::array<float, 4>& color,
double targetWidth,
Eigen::Affine3d transform,
bool rigid);
};
#endif // FALLINGOBJECTSDEMO_H
|
b77c1729fb84322025774d0fd71cb41b9d2cb302
|
005018e7024d96212e943ccee9a26fef09380079
|
/exemplo2.cpp
|
53380f95a837271f2f6690bb9d123fa43daca2ed
|
[] |
no_license
|
mmarques-ssz/ADS-ED1-20210323
|
50edaa03bf791e5ecf236e9a8b360539d4ad6e83
|
cfe025c9ae23fc2e182b20f0a3b2b565932b96f1
|
refs/heads/main
| 2023-03-29T04:19:54.154076
| 2021-03-23T23:52:05
| 2021-03-23T23:52:05
| 350,890,139
| 0
| 0
| null | null | null | null |
ISO-8859-1
|
C++
| false
| false
| 1,116
|
cpp
|
exemplo2.cpp
|
#include <iostream>
#include <iomanip>
using namespace std;
int main(int argc, char** argv)
{
int i;
double d;
cout << "Digite valor int: ";
cin >> i;
cout << "Digite valor double: ";
cin >> d;
cout << "Valor int digitado: " << i << endl;
cout << "Valor double digitado: " << d << endl;
cout << endl;
// Formatação para largura (width)
cout << "Valor int digitado: " << setw(10) << i << endl;
cout << "Valor double digitado: " << setw(10) << d << endl;
cout << endl;
// Formatação da precisão
cout << "Valor double digitado: " << setw(10) << setprecision(2) << d << endl;
cout << "Valor double digitado: " << setw(10) << setprecision(3) << d << endl;
cout << "Valor double digitado: " << setw(10) << setprecision(4) << d << endl;
cout << endl;
// Formatação da precisão/fixa
cout << fixed;
cout << setprecision(3);
cout << "Valor double digitado: " << setw(10) << d << endl;
cout << "Valor double digitado: " << setw(8) << d << endl;
cout << "Valor double digitado: " << setw(6) << d << endl;
cout << endl;
return 0;
}
|
8a6898329c71e5f0432ba00de89f3e00562e7b9a
|
e56ea9b859957f5eba8ae929c669895a17951119
|
/shared/CamPath.cpp
|
0a5c78cbfca36b149938cdd7c28a4cf5c37274a7
|
[] |
no_license
|
nkoep/advancedfx
|
a3d9f0bde5a6de0466b11987df31594d8df53a5b
|
fcb2bbc748f00dd45d25b0bf794d383ade1abad1
|
refs/heads/master
| 2021-01-21T01:03:49.357727
| 2015-08-06T11:42:54
| 2015-08-06T11:42:54
| 40,301,809
| 0
| 0
| null | 2015-08-06T11:41:28
| 2015-08-06T11:41:28
| null |
UTF-8
|
C++
| false
| false
| 10,523
|
cpp
|
CamPath.cpp
|
#include "stdafx.h"
// Copyright (c) advancedfx.org
//
// Last changes:
// 2014-11-03 dominik.matrixstorm.com
//
// First changes:
// 2014-11-03 dominik.matrixstorm.com
#include "CamPath.h"
#include "rapidxml/rapidxml.hpp"
#include "rapidxml/rapidxml_print.hpp"
#include <iterator>
#include <stdio.h>
CamPathValue::CamPathValue()
: X(0.0), Y(0.0), Z(0.0), Pitch(0.0), Yaw(0.0), Roll(0.0), Fov(90.0)
{
}
CamPathValue::CamPathValue(double x, double y, double z, double pitch, double yaw, double roll, double fov)
: X(x), Y(y), Z(z), Pitch(pitch), Yaw(yaw), Roll(roll), Fov(fov)
{
}
CamPathIterator::CamPathIterator(COSPoints::const_iterator & it) : wrapped(it)
{
}
double CamPathIterator::GetTime()
{
return wrapped->first;
}
CamPathValue CamPathIterator::GetValue()
{
Quaternion Q = wrapped->second.R;
QEulerAngles angles = Q.ToQREulerAngles().ToQEulerAngles();
CamPathValue result(
wrapped->second.T.X,
wrapped->second.T.Y,
wrapped->second.T.Z,
angles.Pitch,
angles.Yaw,
angles.Roll,
wrapped->second.Fov
);
return result;
}
CamPathIterator& CamPathIterator::operator ++ ()
{
wrapped++;
return *this;
}
bool CamPathIterator::operator == (CamPathIterator const &it) const
{
return wrapped == it.wrapped;
}
bool CamPathIterator::operator != (CamPathIterator const &it) const
{
return !(*this == it);
}
CamPath::CamPath()
: m_OnChanged(0)
, m_Enabled(false)
{
Changed();
}
CamPath::CamPath(ICamPathChanged * onChanged)
: m_OnChanged(onChanged)
, m_Enabled(false)
{
Changed();
}
bool CamPath::DoEnable(bool enable)
{
m_Enabled = enable && 4 <= GetSize();
return m_Enabled;
}
bool CamPath::Enable(bool enable)
{
bool result = DoEnable(enable);
if(result != enable)
Changed();
return result;
}
bool CamPath::IsEnabled()
{
return m_Enabled;
}
void CamPath::Add(double time, CamPathValue value)
{
COSValue val;
val.R = Quaternion::FromQREulerAngles(QREulerAngles::FromQEulerAngles(QEulerAngles(
value.Pitch,
value.Yaw,
value.Roll
)));
val.T.X = value.X;
val.T.Y = value.Y;
val.T.Z = value.Z;
val.Fov = value.Fov;
Add(time, val);
Changed();
}
void CamPath::Add(double time, COSValue value)
{
m_Spline.Add(time, value);
Changed();
}
void CamPath::Changed()
{
if(m_OnChanged) m_OnChanged->CamPathChanged(this);
}
void CamPath::Remove(double time)
{
m_Spline.Remove(time);
m_Enabled = m_Enabled && 4 <= GetSize();
Changed();
}
void CamPath::Clear()
{
m_Spline.Clear();
m_Enabled = m_Enabled && 4 <= GetSize();
Changed();
}
size_t CamPath::GetSize()
{
return m_Spline.GetSize();
}
CamPathIterator CamPath::GetBegin()
{
return CamPathIterator(m_Spline.GetBegin());
}
CamPathIterator CamPath::GetEnd()
{
return CamPathIterator(m_Spline.GetEnd());
}
double CamPath::GetLowerBound()
{
return m_Spline.GetLowerBound();
}
double CamPath::GetUpperBound()
{
return m_Spline.GetUpperBound();
}
CamPathValue CamPath::Eval(double t)
{
COSValue val = m_Spline.Eval(t);
QEulerAngles angles = val.R.ToQREulerAngles().ToQEulerAngles();
return CamPathValue(
val.T.X,
val.T.Y,
val.T.Z,
angles.Pitch,
angles.Yaw,
angles.Roll,
val.Fov
);
}
void CamPath::OnChanged_set(ICamPathChanged * value)
{
m_OnChanged = value;
}
char * double2xml(rapidxml::xml_document<> & doc, double value)
{
char szTmp[196];
_snprintf_s(szTmp, _TRUNCATE,"%f", value);
return doc.allocate_string(szTmp);
}
bool CamPath::Save(wchar_t const * fileName)
{
rapidxml::xml_document<> doc;
rapidxml::xml_node<> * decl = doc.allocate_node(rapidxml::node_declaration);
decl->append_attribute(doc.allocate_attribute("version", "1.0"));
decl->append_attribute(doc.allocate_attribute("encoding", "utf-8"));
doc.append_node(decl);
rapidxml::xml_node<> * cam = doc.allocate_node(rapidxml::node_element, "campath");
doc.append_node(cam);
rapidxml::xml_node<> * pts = doc.allocate_node(rapidxml::node_element, "points");
cam->append_node(pts);
rapidxml::xml_node<> * cmt = doc.allocate_node(rapidxml::node_comment,0,
"Points are in Quake coordinates, meaning x=forward, y=left, z=up and rotation order is first rx, then ry and lastly rz.\n"
"Rotation direction follows the right-hand grip rule.\n"
"rx (roll), ry (pitch), rz(yaw) are the Euler angles in degrees.\n"
"qw, qx, qy, qz are the quaternion values.\n"
"When read it is sufficient that either rx, ry, rz OR qw, qx, qy, qz are present.\n"
"If both are pesent then qw, qx, qy, qz take precedence."
);
pts->append_node(cmt);
for(CamPathIterator it = GetBegin(); it != GetEnd(); ++it)
{
double time = it.GetTime();
CamPathValue val = it.GetValue();
rapidxml::xml_node<> * pt = doc.allocate_node(rapidxml::node_element, "p");
pt->append_attribute(doc.allocate_attribute("t", double2xml(doc,time)));
pt->append_attribute(doc.allocate_attribute("x", double2xml(doc,val.X)));
pt->append_attribute(doc.allocate_attribute("y", double2xml(doc,val.Y)));
pt->append_attribute(doc.allocate_attribute("z", double2xml(doc,val.Z)));
pt->append_attribute(doc.allocate_attribute("fov", double2xml(doc,val.Fov)));
pt->append_attribute(doc.allocate_attribute("rx", double2xml(doc,val.Roll)));
pt->append_attribute(doc.allocate_attribute("ry", double2xml(doc,val.Pitch)));
pt->append_attribute(doc.allocate_attribute("rz", double2xml(doc,val.Yaw)));
pt->append_attribute(doc.allocate_attribute("qw", double2xml(doc,it.wrapped->second.R.W)));
pt->append_attribute(doc.allocate_attribute("qx", double2xml(doc,it.wrapped->second.R.X)));
pt->append_attribute(doc.allocate_attribute("qy", double2xml(doc,it.wrapped->second.R.Y)));
pt->append_attribute(doc.allocate_attribute("qz", double2xml(doc,it.wrapped->second.R.Z)));
pts->append_node(pt);
}
std::string xmlString;
rapidxml::print(std::back_inserter(xmlString), doc);
FILE * pFile = 0;
_wfopen_s(&pFile, fileName, L"wb");
if(0 != pFile)
{
fputs(xmlString.c_str(), pFile);
fclose(pFile);
return true;
}
return false;
}
bool CamPath::Load(wchar_t const * fileName)
{
bool bOk = false;
FILE * pFile = 0;
_wfopen_s(&pFile, fileName, L"rb");
if(!pFile)
return false;
fseek(pFile, 0, SEEK_END);
size_t fileSize = ftell(pFile);
rewind(pFile);
char * pData = new char[fileSize+1];
pData[fileSize] = 0;
size_t readSize = fread(pData, sizeof(char), fileSize, pFile);
bOk = readSize == fileSize;
if(bOk)
{
try
{
do
{
rapidxml::xml_document<> doc;
doc.parse<0>(pData);
rapidxml::xml_node<> * cur_node = doc.first_node("campath");
if(!cur_node) break;
cur_node = cur_node->first_node("points");
if(!cur_node) break;
// Clear current Campath:
Clear();
for(cur_node = cur_node->first_node("p"); cur_node; cur_node = cur_node->next_sibling("p"))
{
rapidxml::xml_attribute<> * timeAttr = cur_node->first_attribute("t");
if(!timeAttr) continue;
rapidxml::xml_attribute<> * xA = cur_node->first_attribute("x");
rapidxml::xml_attribute<> * yA = cur_node->first_attribute("y");
rapidxml::xml_attribute<> * zA = cur_node->first_attribute("z");
rapidxml::xml_attribute<> * fovA = cur_node->first_attribute("fov");
rapidxml::xml_attribute<> * rxA = cur_node->first_attribute("rx");
rapidxml::xml_attribute<> * ryA = cur_node->first_attribute("ry");
rapidxml::xml_attribute<> * rzA = cur_node->first_attribute("rz");
rapidxml::xml_attribute<> * qwA = cur_node->first_attribute("qw");
rapidxml::xml_attribute<> * qxA = cur_node->first_attribute("qx");
rapidxml::xml_attribute<> * qyA = cur_node->first_attribute("qy");
rapidxml::xml_attribute<> * qzA = cur_node->first_attribute("qz");
double dT = atof(timeAttr->value());
double dX = xA ? atof(xA->value()) : 0.0;
double dY = yA ? atof(yA->value()) : 0.0;
double dZ = zA ? atof(zA->value()) : 0.0;
double dFov = fovA ? atof(fovA->value()) : 90.0;
if(qwA && qxA && qyA && qzA)
{
COSValue r;
r.T.X = dX;
r.T.Y = dY;
r.T.Z = dZ;
r.R.W = atof(qwA->value());
r.R.X = atof(qxA->value());
r.R.Y = atof(qyA->value());
r.R.Z = atof(qzA->value());
r.Fov = dFov;
// Add point:
Add(dT, r);
}
else
{
double dRXroll = rxA ? atof(rxA->value()) : 0.0;
double dRYpitch = ryA ? atof(ryA->value()) : 0.0;
double dRZyaw = rzA ? atof(rzA->value()) : 0.0;
// Add point:
Add(dT, CamPathValue(
dX, dY, dZ,
dRYpitch, dRZyaw, dRXroll,
dFov
));
}
}
}
while (false);
}
catch(rapidxml::parse_error &)
{
bOk=false;
}
}
delete pData;
fclose(pFile);
Changed();
return bOk;
}
void CamPath::SetStart(double t)
{
if(m_Spline.GetSize()<1) return;
CubicObjectSpline tempSline;
double deltaT = t -m_Spline.GetBegin()->first;
for(COSPoints::const_iterator it = m_Spline.GetBegin(); it != m_Spline.GetEnd(); ++it)
{
double curT = it->first;
COSValue curValue = it->second;
tempSline.Add(deltaT+curT, curValue);
}
CopyCOS(m_Spline, tempSline);
DoEnable(m_Enabled);
Changed();
}
void CamPath::SetDuration(double t)
{
if(m_Spline.GetSize()<2) return;
CubicObjectSpline tempSline;
CopyCOS(tempSline, m_Spline);
double oldDuration = GetDuration();
m_Spline.Clear();
double scale = oldDuration ? t / oldDuration : 0.0;
bool isFirst = true;
double firstT = 0;
for(COSPoints::const_iterator it = tempSline.GetBegin(); it != tempSline.GetEnd(); ++it)
{
double curT = it->first;
COSValue curValue = it->second;
if(isFirst)
{
m_Spline.Add(curT, curValue);
firstT = curT;
isFirst = false;
}
else
m_Spline.Add(firstT+scale*(curT-firstT), curValue);
}
DoEnable(m_Enabled);
Changed();
}
void CamPath::CopyCOS(CubicObjectSpline & dst, CubicObjectSpline & src)
{
dst.Clear();
for(COSPoints::const_iterator it = src.GetBegin(); it != src.GetEnd(); ++it)
{
dst.Add(it->first, it->second);
}
}
double CamPath::GetDuration()
{
if(m_Spline.GetSize()<2) return 0.0;
return (--m_Spline.GetEnd())->first - m_Spline.GetBegin()->first;
}
|
eb459a38aee56e30408b51c82b14e5e8cade8d50
|
c9dc5e843035b78e1795c533cad5c914b1992bce
|
/point_cloud_closure.h
|
2aa7d3a70e3f212ea93b917b938c65aaa86c3c46
|
[] |
no_license
|
zhanyifei/PointCloudProcess
|
3cef428b71b7d7a3fc2c4f2ecd483e8062d80b4a
|
9cf7b03968b8db7b13cbf4360bdf1957558c008e
|
refs/heads/master
| 2020-12-24T06:57:42.995739
| 2016-08-16T11:30:18
| 2016-08-16T11:30:18
| 64,204,533
| 0
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,209
|
h
|
point_cloud_closure.h
|
#pragma once
#include <boost/filesystem.hpp>
#include <Eigen/Eigen>
#include "macros.h"
#include "cloud_stamp_rot.h"
#include "params.h"
CLOUD_BLEND_DOUBLE_NAMESPACE_BEGIN
class PointCloudClosure
{
public:
PointCloudClosure(void);
~PointCloudClosure(void);
static int main(const closure_params ¶ms);
struct same_segment
{
uint64_t base_start_stamp;
uint64_t base_end_stamp;
uint64_t frame_start_stamp;
uint64_t frame_end_stamp;
};
private:
static double distance_sqr_rot(const Eigen::Matrix4d &rot1, const Eigen::Matrix4d &rot2);
static uint64_t minus_abs(uint64_t a, uint64_t b);
static void get_overlap_stamp(const std::vector<CloudStampRot> &rots, std::vector<same_segment> &overlap_segs);
static int get_index_from_rots(const std::vector<CloudStampRot> &rots, uint64_t stamp);
static bool do_lum_elch(std::vector<CloudStampRot> &rots, int start_index, int end_index, const Eigen::Matrix4d &loop_transform);
static bool do_loop_closure(std::vector<CloudStampRot> &ori_rots, const std::vector<CloudStampRot> &opt_rots);
static bool cleanup_pcd_in_dir(boost::filesystem::path dir);
};
CLOUD_BLEND_DOUBLE_NAMESPACE_END
|
bcf03c1a735d8a0d6fb262f1b614f96c8c4def7b
|
b1aff0dc98ba204e18e3a28cf806e22a69aabee9
|
/src/objetos3D.cpp
|
56351f2e8255f8b0ae317122abfd1080523c8827
|
[] |
no_license
|
flpduarte/cg-tank-wars-3d
|
827f697bb7e3aad09dac29f34ad9d701b2d81287
|
6c02e3c427a9eaa2f169560732a2d1df817d879c
|
refs/heads/master
| 2021-06-17T14:33:30.030928
| 2021-01-12T17:01:33
| 2021-01-12T17:01:33
| 134,923,377
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,049
|
cpp
|
objetos3D.cpp
|
/**
* objetos3D.hpp
*
* Tank Wars versão 3D
* Baseado no jogo Tank Wars, por Kenneth Morse
*
*
* Autores:
* Guilherme Felipe Reis Duarte RA: 120805
*
* Implementa as funções que desenham os objetos 3D na tela. Objetos incluem
* tanques, projéteis e explosões.
*
* Todos os objetos são desenhados na origem. As estruturas de dados que chamam
* as funções daqui posteriormente as transladam para a sua devida localização
* no mundo.
*/
#include <GL/glut.h>
#include <cmath>
#include <graphics/cor.h>
#include <auxiliar/auxiliares.hpp>
#include <constantes.hpp>
#include <objetos3D.hpp>
/* Constantes */
const int NPONTOS = 50; // para desenhar superfícies curvas
/* Constantes usados para desenhar objetos 3D */
const float COR_ESTEIRA[] = {0.3, 0.3, 0.3, 1};
const float SPECULAR_ESTEIRA[4] = {0.75, 0.75, 0.75, 1};// corBase specular da esteira
const float BRILHO_ESTEIRA = 48.0f; // constante usado com GL_SHININESS
const float SPECULAR_TANQUE[4] = {0.4, 0.4, 0.4, 1};
const float BRILHO_TANQUE = 32.0f;
/**
* Desenha um tanque individual. O
* O tanque ocupa um quadrado 1 x 1. Após desenhar o tanque, ajustar seu tamanho
* usando glScalef().
*
* Origem do tanque: centro do tanque, face inferior.
* Ele é posicionado no mundo posteriormente, por meio de translações e rotações.
*
* Assume que a matriz ativa é a MODELVIEW.
*
* - corBase: corBase "real" do jogador - já corrigido pelo número de homens
* - anguloCanhao: Ângulo
*
* Nota: o canhão não é desenhado por esta função. Deve ser desenhado posterior-
* mente, após o posicionamento do corpo do tanque no mundo.
*/
void desenhar_tanque(const GLfloat *cor)
{
// Desenha esteiras esquerda e direita
glPushMatrix();
glTranslatef(0, -3/8., 0);
desenhar_esteira_tanque(cor);
glTranslatef(0, 3/4., 0);
desenhar_esteira_tanque(cor);
glPopMatrix();
// Desenha corpo do tanque - inclusive semi-espera onde ficará o canhão
desenhar_corpo_tanque(cor);
}
/**
* Desenha esteira do tanque. Origem localiza-se no centro da esteira.
*/
void desenhar_esteira_tanque(const GLfloat *cor)
{
// propriedades de iluminação da esteira
glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE, COR_ESTEIRA);
glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, SPECULAR_ESTEIRA);
glMaterialf (GL_FRONT_AND_BACK, GL_SHININESS, BRILHO_ESTEIRA);
// face inferior
glBegin(GL_QUADS);
glNormal3f(0, 0, -1);
glVertex3f(-3/8., 1/8., 0);
glVertex3f( 3/8., 1/8., 0);
glVertex3f( 3/8., -1/8., 0);
glVertex3f(-3/8., -1/8., 0);
// Face superior
glNormal3f(0, 0, 1);
glVertex3f(-1/2., 1/8., 1/8.);
glVertex3f( 1/2., 1/8., 1/8.);
glVertex3f( 1/2., -1/8., 1/8.);
glVertex3f(-1/2., -1/8., 1/8.);
// Frente
glNormal3f(-1, 0, -1);
glVertex3f( 3/8., 1/8., 0);
glVertex3f( 1/2., 1/8., 1/8.);
glVertex3f( 1/2., -1/8., 1/8.);
glVertex3f( 3/8., -1/8., 0);
// Trás
glNormal3f(1, 0, -1);
glVertex3f(-1/2., 1/8., 1/8.);
glVertex3f(-3/8., 1/8., 0);
glVertex3f(-3/8., -1/8., 0);
glVertex3f(-1/2., -1/8., 1/8.);
glEnd();
// Desenhar rodas. Cores determinadas pela função desenhar_roda_tanque
glPushMatrix();
glTranslatef(0, 0, 1/16.);
desenhar_roda_tanque(cor); // Central
glTranslatef(-1/4., 0, 0);
desenhar_roda_tanque(cor); // traseira
glTranslatef(1/2., 0, 0);
desenhar_roda_tanque(cor); // dianteira
glPopMatrix();
// Desenhar "armadura" sobre a esteira. Possui a corBase do tanque
glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE, cor);
glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, SPECULAR_TANQUE);
glMaterialf (GL_FRONT_AND_BACK, GL_SHININESS, BRILHO_TANQUE);
// face esquerda
glBegin(GL_POLYGON);
glNormal3f(0, 1, 0);
glVertex3f(-1/2., 1/8., 1/8.);
glVertex3f( 1/2., 1/8., 1/8.);
glVertex3f( 3/8., 1/8., 1/4.);
glVertex3f(-3/8., 1/8., 1/4.);
glEnd();
// face direita
glBegin(GL_POLYGON);
glNormal3f(0, -1, 0);
glVertex3f(-1/2., -1/8., 1/8.);
glVertex3f( 1/2., -1/8., 1/8.);
glVertex3f( 3/8., -1/8., 1/4.);
glVertex3f(-3/8., -1/8., 1/4.);
glEnd();
// face noroeste
glBegin(GL_QUADS);
glNormal3f(-.125, 0, 1/8.);
glVertex3f(-1/2., -1/8., 1/8.);
glVertex3f(-1/2., 1/8., 1/8.);
glVertex3f(-3/8., 1/8., 1/4.);
glVertex3f(-3/8., -1/8., 1/4.);
// face norte
glNormal3f(0, 0, 1);
glVertex3f(-3/8., -1/8., 1/4.);
glVertex3f(-3/8., 1/8., 1/4.);
glVertex3f( 3/8., 1/8., 1/4.);
glVertex3f( 3/8., -1/8., 1/4.);
// face nordeste
glNormal3f(0.125, 0, 1/8.);
glVertex3f( 3/8., -1/8., 1/4.);
glVertex3f( 3/8., 1/8., 1/4.);
glVertex3f( 1/2., 1/8., 1/8.);
glVertex3f( 1/2., -1/8., 1/8.);
glEnd();
}
/**
* Desenha o corpo central do tanque. Origem é a mesma do próprio tanque.
*/
void desenhar_corpo_tanque(const GLfloat *cor)
{
// Ajusta corBase do tanque
glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE, cor);
glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, SPECULAR_TANQUE);
glMaterialf (GL_FRONT_AND_BACK, GL_SHININESS, BRILHO_TANQUE);
// Desenha face lateral esquerda
glBegin(GL_POLYGON);
glNormal3f(0, 1, 0);
glVertex3f(-1.0/4, 1/4., 0.75/4.);
glVertex3f(-1.5/4, 1/4., 0.5/4.);
glVertex3f(-1.5/4, 1/4., 0.4/4.);
glVertex3f(-1.25/4, 1/4., 0.1/4.);
glVertex3f( 1.25/4, 1/4., 0.1/4.);
glVertex3f( 1.5/4, 1/4., 0.4/4.);
glVertex3f( 1.5/4, 1/4., 0.5/4.);
glVertex3f( 1.0/4, 1/4., 0.75/4.);
glEnd();
// face lateral direita
glBegin(GL_POLYGON);
glNormal3f(0, -1, 0);
glVertex3f(-1.0/4, -1/4., 0.75/4.);
glVertex3f(-1.5/4, -1/4., 0.5/4.);
glVertex3f(-1.5/4, -1/4., 0.4/4.);
glVertex3f(-1.25/4, -1/4., 0.1/4.);
glVertex3f( 1.25/4, -1/4., 0.1/4.);
glVertex3f( 1.5/4, -1/4., 0.4/4.);
glVertex3f( 1.5/4, -1/4., 0.5/4.);
glVertex3f( 1.0/4, -1/4., 0.75/4.);
glEnd();
// faces superior, inferior, frontal e traseira
glBegin(GL_QUADS);
// Face oeste
glNormal3f(-1, 0, 0);
glVertex3f(-1.5/4, 1/4., 0.5/4.);
glVertex3f(-1.5/4, 1/4., 0.4/4.);
glVertex3f(-1.5/4, -1/4., 0.4/4.);
glVertex3f(-1.5/4, -1/4., 0.5/4.);
// Face Noroeste
glNormal3f( -0.25, 0, 0.5);
glVertex3f(-1.5/4, 1/4., 0.5/4.);
glVertex3f(-1.5/4, -1/4., 0.5/4.);
glVertex3f(-1.0/4, -1/4., 0.75/4.);
glVertex3f(-1.0/4, 1/4., 0.75/4.);
// Face Norte
glNormal3f(0, 0, 1);
glVertex3f(-1.0/4, -1/4., 0.75/4.);
glVertex3f(-1.0/4, 1/4., 0.75/4.);
glVertex3f( 1.0/4, 1/4., 0.75/4.);
glVertex3f( 1.0/4, -1/4., 0.75/4.);
// Face Nordeste
glNormal3f(0.25, 0, 0.5);
glVertex3f( 1.0/4, -1/4., 0.75/4.);
glVertex3f( 1.0/4, 1/4., 0.75/4.);
glVertex3f( 1.5/4, 1/4., 0.5/4.);
glVertex3f( 1.5/4, -1/4., 0.5/4.);
// Face leste
glNormal3f(1, 0, 0);
glVertex3f( 1.5/4, 1/4., 0.5/4.);
glVertex3f( 1.5/4, 1/4., 0.4/4.);
glVertex3f( 1.5/4, -1/4., 0.4/4.);
glVertex3f( 1.5/4, -1/4., 0.5/4.);
// Face Sudeste
glNormal3f( 0.3, 0, -0.25);
glVertex3f( 1.5/4, 1/4., 0.4/4.);
glVertex3f( 1.5/4, -1/4., 0.4/4.);
glVertex3f( 1.25/4, -1/4., 0.1/4.);
glVertex3f( 1.25/4, 1/4., 0.1/4.);
// Face Sudoeste
glNormal3f(-0.3, 0, -0.25);
glVertex3f(-1.5/4, -1/4., 0.4/4.);
glVertex3f(-1.25/4, -1/4., 0.1/4.);
glVertex3f(-1.25/4, 1/4., 0.1/4.);
glVertex3f(-1.5/4, 1/4., 0.4/4.);
// Face Sul
glNormal3f(0, 0, -1);
glVertex3f(-1.25/4, -1/4., 0.1/4.);
glVertex3f( 1.25/4, -1/4., 0.1/4.);
glVertex3f( 1.25/4, 1/4., 0.1/4.);
glVertex3f(-1.25/4, 1/4., 0.1/4.);
glEnd();
// desenha semi-esfera superior
glPushMatrix();
glTranslatef(0, 0, 0.75/4.);
desenhar_esfera(1./4, 0, PI/2);
glPopMatrix();
}
/**
* Desenha uma roda do tanque. Usar matrizes de translação para
* posicioná-la.
* Origem: centro da roda.
*/
void desenhar_roda_tanque(const GLfloat *cor)
{
// desenha "pneu"
glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE, COR_ESTEIRA);
glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, cor::PRETO); // sem brilho
// Face externa
desenhar_faixa_circular(1/16., 1/4.); // lado externo
// laterais do pneu
// lado esquerdo (positivo y)
glPushMatrix();
glTranslatef(0., 1/8., 0.);
desenhar_anel(1/20., 1/16.);
// lado direito (negativo y)
glTranslatef(0., -1/4., 0.);
glRotatef(180, 0, 0, 1); // gira 180° em torno de x
desenhar_anel(1/20., 1/16.);
glPopMatrix();
// desenha parede interna da roda na corBase do tanque
glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE, cor);
glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, SPECULAR_TANQUE);
glMaterialf (GL_FRONT_AND_BACK, GL_SHININESS, BRILHO_TANQUE);
glPushMatrix();
desenhar_faixa_circular(1/20., 1/4., -1); // lado interno
// Faces interiores da roda: sem reflexo specular
glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, cor::PRETO);
glTranslatef(0., 1/16., 0.);
desenhar_circulo(1/20.);
glTranslatef(0., -1/8., 0.);
glRotatef(180, 0, 0, 1); // gira 180° em torno de z
desenhar_circulo(1/20.);
glPopMatrix();
}
/**
* Desenha o canhão como um cilindro em torno do eixo X.
* Parte do pressuposto que o canhão é desenhado com as características do corpo
* do tanque, pois foi a última operação realizada.
* TODO: salvar diâmetro e comprimento do canhâo como uma constante.
*/
void desenhar_canhao()
{
glPushMatrix();
glRotated(90, 0, 0, 1);
glTranslated(0, -.75/2, 0);
desenhar_faixa_circular(RAIO_CANHAO, COMPR_CANHAO);
glPopMatrix();
}
/* --- Funções Básicas --- */
/**
* Desenha um círculo no plano xz.
* Vetor vetorNormal: (0, 1, 0).
*/
void desenhar_circulo(const GLfloat r)
{
glBegin(GL_POLYGON);
glNormal3f(0, 1, 0);
for (int i = 0; i < NPONTOS; i++)
{
double teta = i*2*PI/NPONTOS;
glVertex3f(r*cos(teta), 0, r*sin(teta));
}
glEnd();
}
/**
* Desenha uma faixa circular em torno do eixo y.
* Os vetores normais das faces é automaticamente determinado.
* r = raioProjetil da faixa.
* L = largura do faixa.
* sinal = sinal do vetor vetorNormal. -1 = inverte o vetor vetorNormal. Para uso em super-
* fícies internas.
*/
void desenhar_faixa_circular(const GLfloat r, const GLfloat L)
{
desenhar_faixa_circular(r, L, 1);
}
void desenhar_faixa_circular(const GLfloat r, const GLfloat L, int sinal)
{
if (sinal < 0) sinal = -1;
else sinal = 1;
glBegin(GL_QUAD_STRIP);
for (int i = 0; i <= NPONTOS; i++) // <= para fechar a circunferência.
{
double teta = i*2*PI/NPONTOS;
glNormal3f(sinal*cos(teta), 0, sinal*sin(teta)); // vetor vetorNormal alinhado com a direção radial
glVertex3f(r*cos(teta), -L/2, r*sin(teta));
glVertex3f(r*cos(teta), L/2, r*sin(teta));
}
glEnd();
}
/**
* Desenha um anel em torno do eixo y, com raioProjetil mínimo r e raioProjetil máximo R.
* Anel localiza-se no plano XZ.
* Vetor vetorNormal: (0, 1, 0) (direção positiva de y).
*/
void desenhar_anel(const GLfloat r, const GLfloat R)
{
glBegin(GL_QUAD_STRIP);
glNormal3f(0, 1, 0);
for (int i = 0; i <= NPONTOS; i++) // <= para fechar a circunferência.
{
double teta = 2*PI * i/NPONTOS;
glVertex3f(r*cos(teta), 0, r*sin(teta));
glVertex3f(R*cos(teta), 0, R*sin(teta));
}
glEnd();
}
/**
* Desenha uma esfera de raioProjetil r e centrada na origem.
* Entrada apenas r: desenha a esfera inteira.
* Entradas r, t0 e tf: Desenha latitudes [t0, tf].
*/
void desenhar_esfera(GLfloat r)
{
desenhar_esfera(r, -PI/2, PI/2);
}
void desenhar_esfera(GLfloat r, GLfloat t0, GLfloat tf)
{
// teta: latitude. Varia de -pi/2 a +pi/2.
// phi: longitude. Varia de 0 a +2pi.
const GLfloat deltaTeta = tf - t0;
const GLfloat deltaPhi = 2*PI - 0;
for (int i = 0; i < NPONTOS; i++)
{
glBegin(GL_TRIANGLE_STRIP);
float teta0 = t0 + deltaTeta * i/NPONTOS; // i
float teta1 = teta0 + deltaTeta/NPONTOS; // i + 1
for (int j = 0; j <= NPONTOS; j++)
{
float phi0 = deltaPhi * j/NPONTOS;
glNormal3f(aux::x_esfericas(r, teta0, phi0), aux::y_esfericas(r, teta0, phi0), aux::z_esfericas(r, teta0, phi0));
glVertex3f(aux::x_esfericas(r, teta0, phi0), aux::y_esfericas(r, teta0, phi0), aux::z_esfericas(r, teta0, phi0));
glNormal3f(aux::x_esfericas(r, teta1, phi0), aux::y_esfericas(r, teta1, phi0), aux::z_esfericas(r, teta1, phi0));
glVertex3f(aux::x_esfericas(r, teta1, phi0), aux::y_esfericas(r, teta1, phi0), aux::z_esfericas(r, teta1, phi0));
}
glEnd();
}
}
|
3cdcc0117a64c59029d19e3d34e413b934f421e5
|
65458ed8ca5423c5b0eabf6b88685259c7f80fda
|
/fraig/src/cir/cirMgr.h
|
9d8caf0755a0994a57b5b2d863d793bfbdb789e5
|
[] |
no_license
|
dexterkan/2016-Fall-DSnp
|
ffb9c214a017af6d55643e2efba4c5fdbd27b9b1
|
77d465f2149474962b7f1045873fb6f5870a92fc
|
refs/heads/master
| 2020-07-23T21:39:24.310790
| 2017-06-15T11:16:09
| 2017-06-15T11:16:09
| 94,360,242
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,249
|
h
|
cirMgr.h
|
/****************************************************************************
FileName [ cirMgr.h ]
PackageName [ cir ]
Synopsis [ Define circuit manager ]
Author [ Chung-Yang (Ric) Huang ]
Copyright [ Copyleft(c) 2008-present LaDs(III), GIEE, NTU, Taiwan ]
****************************************************************************/
#ifndef CIR_MGR_H
#define CIR_MGR_H
#include <vector>
#include <string>
#include <fstream>
#include <iostream>
#include "myHashMap.h"
#include "util.h"
#include "algorithm"
#include <map>
#include <list>
using namespace std;
// TODO: Feel free to define your own classes, variables, or functions.
#include "cirDef.h"
extern CirMgr *cirMgr;
enum fanint_type
{
F1_CONST0,
F1_CONST1,
F2_CONST0,
F2_CONST1,
Equal_NoneInv,
Equal_Inv,
F1_Inv,
F2_Inv,
None
};
class simNode
{
public:
simNode( unsigned int ID = 0 ): Id(ID) {}
~simNode() {;}
bool operator == (const simNode& s) const { return ( Id == s.Id ); }
simNode& operator = ( const simNode& s ) { Id = s.Id; return *(this); }
unsigned int operator () () const { return Id; }
private:
unsigned int Id ;
};
class CirMgr
{
public:
CirMgr( bool sweep = false , bool sim = false ): issweep(sweep) , isSimulation(sim){}
~CirMgr();
// Access functions
// return '0' if "gid" corresponds to an undefined gate.
CirGate* getGate(unsigned gid) const;
// Member functions about circuit construction
bool readCircuit(const string&);
// Member functions about circuit optimization
void sweep();
void optimize();
// Member functions about simulation
void randomSim();
void fileSim(ifstream&);
void setSimLog(ofstream *logFile) { _simLog = logFile; }
// Member functions about fraig
void strash();
void printFEC() const;
void fraig();
// Member functions about circuit reporting
void printSummary() const;
void printNetlist() const;
void printPIs() const;
void printPOs() const;
void printFloatGates() const;
void printFECPairs() ;
void writeAag(ostream&) const;
void writeGate(ostream&, CirGate*) const;
void setdfs( CirGate* c );
void mergeGate( CirGate* mergedGate , CirGate* mergingGate );
fanint_type fanintype( CirGate* c );
CirGate* gate( unsigned g ) { return GATE[g]; }
unsigned int GateSim( unsigned int Id , unsigned int N );
void Simulation( unsigned int patternNum );
void setwrite( CirGate *g , vector<unsigned int>* PIlist , vector<unsigned int>* AIGlist ) const;
bool getResult( unsigned int a , unsigned int b , SatSolver& s );
void merge( CirGate* merged , CirGate* merging );
void dofraig( SatSolver& solver );
private:
ofstream *_simLog;
unsigned int M;
unsigned int I;
unsigned int L;
unsigned int O;
unsigned int A;
unsigned int Real_AIG;
vector<CirGate*> GATE;
vector<CirGate*> PI;
vector<CirGate*> PO;
vector<CirGate*> DFS;
bool issweep;
bool isSimulation;
vector<unsigned int> PIsimValue;
// map< unsigned int , vector<unsigned int> > FECGroups;
Cache<simNode,unsigned int> myCache;
list< vector<unsigned int>* > FecGroups;
};
#endif // CIR_MGR_H
|
812e9f0f642b6ee30e0ceae212f14c108eee40cc
|
44e7730aa2215bc3259259411cce04e71961dc89
|
/src/disassembler.cpp
|
d6c917a843b9482f08f274b613b38ec90ae5c40d
|
[] |
no_license
|
chuckries/nes
|
7e77cce1e06a5e99016a5defe3ae42e0c5a98e57
|
e0eeee5495a16c91e2ffec371f5d6998fce5f3c8
|
refs/heads/master
| 2021-01-21T04:41:50.644199
| 2016-05-25T16:14:22
| 2016-05-25T16:14:22
| 52,247,018
| 3
| 1
| null | 2016-03-07T17:37:42
| 2016-02-22T04:27:17
|
C++
|
UTF-8
|
C++
| false
| false
| 489
|
cpp
|
disassembler.cpp
|
#include "stdafx.h"
#include "diassembler.h"
#include "decode.h"
#if defined(TRACE)
Disassembler::Disassembler(u16 PC, IMem* mem)
: _PC(PC)
, _mem(mem)
, _pInstr(nullptr)
{
}
Disassembler::~Disassembler()
{
}
void Disassembler::Disassemble(DisassembledInstruction& disassembledInstruction)
{
disassembledInstruction.Reset();
u8 op = LoadBBumpPC();
disassembledInstruction._bytes.push_back(op);
_pInstr = &disassembledInstruction;
DECODE(op)
}
#endif
|
61c1d1f01af4fdfeaaed21ba84590a1cf5f1ca06
|
6a9d8120fde2093a1f578f5835a42612c489772c
|
/c/fun/MAURA03.CPP
|
74aa5ec8b4d87eefc9eea3f12573ff2e877fe8fa
|
[] |
no_license
|
nileshkadam222/C-AND-CPP
|
53b1dc64b8c8ab7c880ad95b5be2cd8f5f92d458
|
468b18ad81aa23865b2744eb0c35e890bf96b6d8
|
refs/heads/master
| 2020-11-27T16:29:39.220664
| 2019-12-22T06:46:33
| 2019-12-22T06:46:33
| 229,528,475
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 287
|
cpp
|
MAURA03.CPP
|
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int a,b;
int power(int a,int b);
clrscr();
printf("enter the value of a,b=\n\n");
scanf("%d%d",&a,&b);
power(a,b);
getch();
}
int power(int a,int b)
{
int value;
value=pow(a,b);
printf("value=%d",value);
return(value);
}
|
8058aefebb32c4efe2d079977e9de8b59878ebd4
|
3fdecb9d46f759f70bb5b2d29da25bb63e27de93
|
/Longest_Common_Subsequence.cpp
|
ffdd9cc2767bd45ebafd259024b65090f772653a
|
[] |
no_license
|
abinashkg/Algorithm
|
f48b54aff5ef279617c36d8ac51d62fcba12f987
|
e8d61d82417fc6bd9f275327996a657d69c40e32
|
refs/heads/master
| 2020-12-24T11:45:56.451802
| 2016-11-06T19:56:48
| 2016-11-06T19:56:48
| 73,015,021
| 0
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,730
|
cpp
|
Longest_Common_Subsequence.cpp
|
#include<cstdio>
#include<iostream>
#include<cstring>
#include<cstdlib>
#define FOR(i, b, e) for(int i = b; i <= (int)(e); i++)
using namespace std;
char str1[25005],str2[25005];
int c[20005][20005],m,n;
int LCS()
{
m=strlen(str1);
n=strlen(str2);
for(int i=0;i<=m;i++)
for(int j=0;j<=n;j++)
{
if(i==0||j==0) c[i][j]=0;
else
{
if(str1[i-1]==str2[j-1])
c[i][j]=c[i-1][j-1]+1;
else
c[i][j]=max(c[i][j-1],c[i-1][j]);
}
}
return c[m][n];
}
void pLCS(int i,int j)
{
if (i==0 || j==0) return;
if (str1[i-1]==str2[j-1])
{
pLCS(i-1,j-1);
printf("%c",str1[i-1]);
}
else if (c[i][j]==c[i-1][j])
pLCS(i-1,j);
else
pLCS(i,j-1);
}
// Memory Saving LCS O(n)
int d[25005],temp[25005];
int LCSm()
{
m=strlen(str1);
n=strlen(str2);
for(int i=0;i<=m;i++){
for(int j=0;j<=n;j++)
{
if(i==0||j==0) temp[j]=0;
else
{
if(str1[i-1]==str2[j-1])
temp[j]=d[j-1]+1;
else
temp[j]=max(temp[j-1],d[j]);
}
}
for(int j=0;j<=n;j++)d[j]=temp[j];
}
return d[n];
}
int main()
{
//scanf("%s%s",str1,str2);
FOR(i,0,20000)str1[i]=(rand()%11+rand()%17+rand()%31+rand()%7)%26+'a';str1[25001]='\0';
FOR(i,0,20000)str2[i]=(rand()%29+rand()%19+rand()%13)%26+'a';str2[25001]='\0';
// printf("%s \n\n\n %s",str1,str2);
printf("%d ",LCS());
// printf("%d ",LCSm());
//pLCS(m,n);
return 0;
}
|
2b0da803f27b9b0d6d4afb10af391bae94263c27
|
a17f2f1a8df7036c2ea51c27f31acf3fb2443e0b
|
/thuoj/组合数问题.cpp
|
0979c300c0d1558ed68b3fe5d8bf5cab022394d6
|
[] |
no_license
|
xUhEngwAng/oj-problems
|
c6409bc6ba72765600b8a844b2b18bc9a4ff6f6b
|
0c21fad1ff689cbd4be9bd150d3b30c836bd3753
|
refs/heads/master
| 2022-11-04T01:59:08.502480
| 2022-10-18T03:34:41
| 2022-10-18T03:34:41
| 165,620,152
| 3
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,231
|
cpp
|
组合数问题.cpp
|
#include <cstdio>
#include <cstring>
#include <unordered_map>
using namespace std;
#define MIN(X, Y) ((X) < (Y)? (X): (Y))
int ans[10001][10001], pos;
int primes[65536], vis[65536];
unordered_map<int, int> curr;
void init(){
pos = 0;
memset(vis, 0, sizeof(vis));
for(int ix = 2; ix != 65536; ++ix){
if(!vis[ix]) primes[pos++] = ix;
for(int jx = 0; jx != pos && primes[jx]*ix < 65536; ++jx){
vis[ix * primes[jx]] = true;
if(ix % primes[jx] == 0) break;
}
}
}
void decomp(int n, bool flag){
int cnt;
for(int ix = 0; ix != pos; ++ix){
cnt = 0;
while(n % primes[ix] == 0) {cnt++; n = n / primes[ix];}
if(cnt)
if(flag) curr[primes[ix]] += cnt;
else curr[primes[ix]] -= cnt;
if(n == 1) break;
}
if(n != 1)
if(flag) curr[n] += 1;
else curr[n] -= 1;
}
int compute(int N, int M, int P){
ans[0][0] = 1 % P;
ans[0][1] = 0;
for(int ix = 1, jx; ix <= N; ++ix){
ans[ix][0] = 1 % P;
for(jx = 1; jx <= MIN(M, ix); ++jx)
ans[ix][jx] = (ans[ix-1][jx] + ans[ix-1][jx-1]) % P;
ans[ix][jx+1] = 0;
}
return ans[N][M];
}
void exgcd(int a, int b, long long &x, long long &y){
if(b == 0){
x = 1, y = 0;
return;
}
exgcd(b, a % b, x, y);
long long t = x;
x = y;
y = t - a / b * y;
}
long long inv(int n, int P){
long long x, y;
exgcd(n, P, x, y);
x = (x % P + P) % P;
return x;
}
int solve(int N, int M, int P){
long long curr = 1 % P;
for(int ix = 1; ix <= M; ++ix){
//printf("%d\n", curr);
curr = (((curr * (N - ix + 1)) % P) * inv(ix, P)) % P;
}
return curr;
}
int main(){
freopen("1.out", "w", stdout);
int T, N, M, P;
init();
scanf("%d", &T);
long long res;
while(T--){
scanf("%d %d %d", &N, &M, &P);
if(N <= 10000 && M <= 10000)
printf("%d\n", compute(N, M, P));
else
if((M << 1) > N)
printf("%d\n", solve(N, N - M, P));
else
printf("%d\n", solve(N, M, P));
/*curr.clear();
if((M << 1) > N) M = N - M;
for(int ix = 1; ix <= M; ++ix){
decomp(N - ix + 1, true);
decomp(ix, false);
//printf("ix = %d\n", ix);
}
//printf("tag");
res = 1;
for(auto it = curr.begin(); it != curr.end(); ++it){
for(int ix = 0; ix != it->second; ++ix)
res = (res * it->first) % P;
}
printf("%d\n", res);*/
}
return 0;
}
|
23172aaa256546fae7c3f178c8ff39d99d03f113
|
33706611c9d9ec351e295b1ad3f00cdcf69a632b
|
/pluralSight/structural-adoptorToDecorator/Adaptor/include/MovieApiAdapter2.h
|
c368fd99beefddc3c9a258a6f9fb5da50b8e19db
|
[] |
no_license
|
BhanuKiranChaluvadi/solid-design-principles
|
cde522dac30e1048b76b4db876240922c4696143
|
3e38ffbf8536b720f93f20e36cb69d227f10f1ad
|
refs/heads/master
| 2023-07-29T19:30:50.283438
| 2021-09-12T19:17:08
| 2021-09-12T19:17:08
| 244,964,471
| 4
| 0
| null | 2021-09-08T12:24:22
| 2020-03-04T17:38:55
|
C++
|
UTF-8
|
C++
| false
| false
| 304
|
h
|
MovieApiAdapter2.h
|
#pragma once
#include "MovieDbRepository.h"
#include "TheMovieDbApi.h"
class MovieApiAdapter2 : public MovieRepository, public TheMovieDbApi
{
public:
MovieApiAdapter2(std::string api_key) : TheMovieDbApi(api_key) {}
std::shared_ptr<MovieData> GetById(const std::string &movie_id) override;
};
|
4c477a5f24d26aa218c0b21abbff5c93fc78a328
|
2293d5d5ffddaa00b30403c87b377e9436ce92d4
|
/src/Resources.cpp
|
263a87de96bdb46896f79b58b874a8b4936ea941
|
[] |
no_license
|
Anders1232/IDJ-Tuto-Game
|
d926adad8ad5dc74e55c17af22e96aa573b87c6a
|
685e767e07d134dfbdc9b9b20ddb8aead75446c1
|
refs/heads/master
| 2021-01-19T12:47:57.660410
| 2017-04-12T11:53:30
| 2017-04-12T11:53:30
| 88,046,045
| 1
| 1
| null | 2017-04-12T11:50:47
| 2017-04-12T11:50:46
| null |
UTF-8
|
C++
| false
| false
| 813
|
cpp
|
Resources.cpp
|
#include "Resources.hpp"
std::unordered_map<std::string, SDL_Texture*> Resources::imageTable{};
SDL_Texture* Resources::GetImage (std::string file) {
auto it = imageTable.find (file);
if (it == imageTable.end()) {
SDL_Texture* texture = IMG_LoadTexture (Game::GetInstance ().GetRenderer (), file.c_str ());
if (texture == nullptr) {
fprintf (stderr, "[ERRO] Nao foi possivel carregar a imagem no caminho %s (Resources.cpp:Open()): %s\n", file.c_str (), SDL_GetError ());
}
imageTable.emplace(file, texture);
return texture;
} else {
return it->second;
}
}
void Resources::ClearImages () {
for (auto it = imageTable.begin (); it != imageTable.end (); ++it) {
SDL_DestroyTexture (it->second);
}
imageTable.clear();
}
|
533a31fbb22d849da04e82bf3622b4279fb52e91
|
9b33799bf704cc0dda493ee9323486ef1c01a955
|
/software/TestSketches/FlashWipe/PowerControl.cpp
|
2ac2baf4513e6a116da3611c1afc295afd8d8ca8
|
[] |
no_license
|
574737922/FOSSASAT-2
|
27895ab895eb00cacd96c52306d1ae95066ca97b
|
6594d0a38ecc4257e8626bf7099299c1301c8869
|
refs/heads/master
| 2022-07-19T00:22:39.816246
| 2020-05-25T10:49:29
| 2020-05-25T10:49:29
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 283
|
cpp
|
PowerControl.cpp
|
#include "PowerControl.h"
void PowerControl_Watchdog_Heartbeat(bool manageBattery) {
// toggle watchdog pin
digitalWrite(WATCHDOG_IN, !digitalRead(WATCHDOG_IN));
// manage battery (low power, heater, charging)
if(manageBattery) {
//PowerControl_Manage_Battery();
}
}
|
494ef6ac82a377d7265585e52e1a7cd9a3e97afa
|
5249bb39ed18a90666ea069f0a437ef8a28d449e
|
/include/footer.inc
|
8d97521e8d43568352da0f0fadede4933f8181fa
|
[] |
no_license
|
SergioPacheco/taxbr
|
0754e298104c6a5a9cfb4b89c90d079c9d9727ee
|
26e83b7bf4b757f4555134cb3e5ac7b2d985560a
|
refs/heads/master
| 2022-11-25T05:31:00.149525
| 2020-07-24T08:52:23
| 2020-07-24T08:52:23
| 282,108,166
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 173
|
inc
|
footer.inc
|
<!--
Copyright Notice:
This script was written by Sergio Pacheco, and is free for you to use.
Keep software free.
And please leave this copyright notice. Thanks.
-->
|
fda72f5073a9c2d8fff0d220291f2a44bdfedd45
|
9f8a069f7d337a022cae89e3e5b75d161c832e2d
|
/Heat_Transfer/BuoyantSimpleFOAM/buoyantCavity/900/p_rgh
|
6eca4bfff762401de9abc1c26b08126da8914fe9
|
[] |
no_license
|
Logan-Price/CFD
|
453f6df21f90fd91a834ce98bc0b3970406f148d
|
16e510ec882e65d5f7101e0aac91dbe8a035f65d
|
refs/heads/master
| 2023-04-06T04:17:49.899812
| 2021-04-19T01:22:14
| 2021-04-19T01:22:14
| 359,291,399
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 731,487
|
p_rgh
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "900";
object p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
78750
(
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
)
;
boundaryField
{
frontAndBack
{
type fixedFluxPressure;
gradient nonuniform List<scalar>
1050
(
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-0.0029567
-0.00296875
-0.00298394
-0.00299096
-0.00299375
-0.00299489
-0.00299263
-0.00299339
-0.00299042
-0.00298937
-0.00299132
-0.00299057
-0.00298656
-0.00296959
-0.0029596
-0.00285376
-0.0028633
-0.00287423
-0.00287545
-0.00287391
-0.00287098
-0.00286107
-0.00285265
-0.00284785
-0.00285437
-0.00286441
-0.00287083
-0.00287201
-0.00285811
-0.00284824
-0.00284407
-0.00284509
-0.00284196
-0.00283344
-0.00282718
-0.00281698
-0.0027997
-0.00278531
-0.00278198
-0.002793
-0.00281007
-0.00282685
-0.00283511
-0.00283529
-0.00283485
-0.00284337
-0.00284326
-0.00283345
-0.00282003
-0.00280956
-0.00279194
-0.00277296
-0.00276075
-0.00275979
-0.00276847
-0.00278614
-0.00281096
-0.00282546
-0.00283282
-0.00283382
-0.00284307
-0.00284286
-0.00282997
-0.0028156
-0.00280171
-0.00277889
-0.0027621
-0.00275325
-0.00275424
-0.00276032
-0.00277478
-0.00280416
-0.00282249
-0.00283213
-0.00283366
-0.00284243
-0.00284215
-0.0028273
-0.00281308
-0.0027968
-0.0027715
-0.00275781
-0.00275113
-0.00275324
-0.00275793
-0.0027687
-0.00279967
-0.00282063
-0.00283138
-0.00283327
-0.00284164
-0.00284125
-0.00282507
-0.00281103
-0.00279273
-0.00276657
-0.00275595
-0.00275049
-0.00275316
-0.0027571
-0.00276465
-0.00279585
-0.00281893
-0.00283071
-0.00283288
-0.0028407
-0.00284018
-0.00282317
-0.00280921
-0.0027891
-0.00276291
-0.00275501
-0.00275025
-0.00275321
-0.00275675
-0.00276169
-0.00279248
-0.00281734
-0.0028301
-0.00283246
-0.00283972
-0.00283899
-0.00282149
-0.00280753
-0.00278584
-0.0027601
-0.00275449
-0.00275012
-0.00275327
-0.00275661
-0.00275945
-0.00278949
-0.00281583
-0.00282953
-0.00283205
-0.00283853
-0.00283769
-0.00281997
-0.00280591
-0.00278289
-0.00275789
-0.00275418
-0.00275003
-0.00275334
-0.00275655
-0.0027577
-0.00278676
-0.00281431
-0.00282894
-0.00283166
-0.00283723
-0.00283637
-0.00281846
-0.00280431
-0.00278023
-0.00275611
-0.00275401
-0.00274997
-0.00275341
-0.0027565
-0.00275626
-0.00278421
-0.00281276
-0.00282837
-0.00283135
-0.00283592
-0.00283508
-0.00281677
-0.00280268
-0.00277783
-0.00275466
-0.00275388
-0.00274992
-0.00275344
-0.00275648
-0.00275502
-0.00278176
-0.00281113
-0.00282778
-0.00283098
-0.00283456
-0.00283372
-0.0028148
-0.00280099
-0.00277565
-0.00275344
-0.00275377
-0.00274988
-0.00275347
-0.00275644
-0.00275392
-0.00277939
-0.00280938
-0.00282718
-0.00283043
-0.00283318
-0.00283229
-0.00281258
-0.00279923
-0.00277366
-0.0027524
-0.00275366
-0.00274983
-0.00275347
-0.00275638
-0.00275292
-0.00277705
-0.00280749
-0.00282647
-0.00282978
-0.0028317
-0.00283071
-0.00281017
-0.0027974
-0.00277183
-0.00275148
-0.00275353
-0.00274978
-0.00275347
-0.00275628
-0.00275198
-0.00277472
-0.00280544
-0.00282559
-0.00282895
-0.00282996
-0.00282889
-0.00280756
-0.0027955
-0.00277013
-0.00275065
-0.00275335
-0.00274973
-0.00275343
-0.00275613
-0.00275111
-0.0027724
-0.00280321
-0.00282455
-0.00282796
-0.00282803
-0.00282682
-0.00280472
-0.00279354
-0.00276854
-0.00274989
-0.00275312
-0.00274967
-0.00275334
-0.00275593
-0.00275025
-0.00277008
-0.00280082
-0.00282329
-0.00282679
-0.00282593
-0.00282452
-0.00280163
-0.00279156
-0.00276706
-0.00274917
-0.00275284
-0.0027496
-0.00275321
-0.00275566
-0.00274944
-0.00276779
-0.00279831
-0.00282178
-0.0028254
-0.00282367
-0.00282198
-0.00279838
-0.0027896
-0.00276567
-0.00274847
-0.00275251
-0.0027495
-0.00275304
-0.00275535
-0.00274865
-0.00276554
-0.00279575
-0.00282001
-0.00282385
-0.00282133
-0.00281915
-0.00279508
-0.00278772
-0.00276435
-0.00274779
-0.00275214
-0.00274938
-0.00275285
-0.00275498
-0.00274789
-0.00276335
-0.00279307
-0.00281795
-0.00282213
-0.0028189
-0.00281582
-0.00279206
-0.00278594
-0.00276308
-0.00274711
-0.00275173
-0.00274922
-0.00275263
-0.00275458
-0.00274715
-0.0027612
-0.00279028
-0.00281556
-0.00282021
-0.00281642
-0.00281182
-0.00278964
-0.00278427
-0.00276182
-0.00274642
-0.00275129
-0.00274903
-0.0027524
-0.00275401
-0.00274644
-0.00275909
-0.00278735
-0.00281283
-0.00281808
-0.00281389
-0.00280782
-0.00278755
-0.00278264
-0.00276054
-0.00274571
-0.00275084
-0.00274879
-0.0027521
-0.00275304
-0.00274575
-0.002757
-0.00278425
-0.00280971
-0.00281572
-0.00281137
-0.0028039
-0.00278571
-0.00278099
-0.0027592
-0.00274498
-0.00275023
-0.00274853
-0.00275157
-0.00275157
-0.00274509
-0.00275493
-0.00278096
-0.00280621
-0.00281306
-0.00280882
-0.00280013
-0.0027842
-0.00277936
-0.00275779
-0.00274414
-0.00274926
-0.00274803
-0.00275075
-0.0027502
-0.0027441
-0.00275288
-0.00277757
-0.00280234
-0.00281012
-0.00280611
-0.00279655
-0.00278302
-0.00277773
-0.00275626
-0.00274299
-0.0027478
-0.00274708
-0.0027494
-0.00274873
-0.00274286
-0.00275082
-0.00277414
-0.00279814
-0.00280692
-0.00280302
-0.00279316
-0.00278217
-0.00277606
-0.00275452
-0.0027415
-0.00274569
-0.0027456
-0.00274743
-0.00274678
-0.00274124
-0.00274869
-0.00277077
-0.00279362
-0.00280347
-0.00279961
-0.00278998
-0.0027816
-0.00277431
-0.00275251
-0.00273961
-0.00274308
-0.00274325
-0.00274445
-0.00274438
-0.00273923
-0.00274645
-0.00276752
-0.00278879
-0.00279964
-0.00279595
-0.00278718
-0.00278118
-0.00277227
-0.00275006
-0.00273724
-0.002741
-0.00274042
-0.00274206
-0.00274139
-0.00273676
-0.00274402
-0.00276442
-0.00278391
-0.00279528
-0.00279209
-0.0027851
-0.00278059
-0.00276965
-0.00274702
-0.00273427
-0.00273796
-0.0027378
-0.002739
-0.00273771
-0.00273374
-0.00274129
-0.00276131
-0.00277928
-0.00278998
-0.00278832
-0.00278417
-0.00277924
-0.00276607
-0.0027432
-0.00273082
-0.00273413
-0.00273415
-0.00273503
-0.00273329
-0.00273028
-0.00273803
-0.00275798
-0.00277528
-0.0027842
-0.00278577
-0.00278325
-0.00277602
-0.00276053
-0.00273832
-0.00272659
-0.00272942
-0.00272958
-0.00273015
-0.00272847
-0.00272609
-0.00273396
-0.00275373
-0.0027718
-0.00277882
-0.00278421
-0.00277881
-0.00276808
-0.00275148
-0.00273194
-0.002722
-0.00272406
-0.00272428
-0.0027246
-0.00272315
-0.00272162
-0.00272871
-0.00274743
-0.00276623
-0.00277338
-0.00277461
-0.00276494
-0.00275189
-0.00273737
-0.00272386
-0.00271699
-0.00271818
-0.00271833
-0.0027185
-0.00271757
-0.00271675
-0.00272189
-0.00273626
-0.00275313
-0.00276148
-0.00274004
-0.0027321
-0.00272473
-0.00271889
-0.0027142
-0.00271175
-0.00271211
-0.00271215
-0.00271222
-0.00271192
-0.00271167
-0.00271352
-0.00271874
-0.00272635
-0.0027322
)
;
value nonuniform List<scalar>
1050
(
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
)
;
}
topAndBottom
{
type fixedFluxPressure;
gradient nonuniform List<scalar>
10500
(
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-2.3469e-13
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
)
;
value nonuniform List<scalar>
10500
(
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
)
;
}
hot
{
type fixedFluxPressure;
gradient nonuniform List<scalar>
2250
(
-1.73971
-4.82296
-7.16118
-8.43794
-9.54575
-10.5536
-11.9284
-13.1904
-14.263
-15.3921
-16.5073
-17.4436
-18.1782
-18.6767
-19.0267
-19.4637
-20.2593
-21.1246
-21.6378
-22.0476
-22.9084
-24.1313
-25.2594
-26.3735
-27.4236
-28.3573
-28.9626
-29.2897
-29.6116
-29.9967
-30.5643
-30.9871
-31.7126
-32.3114
-33.1752
-34.0267
-34.6151
-35.4448
-35.5616
-35.3569
-35.761
-36.181
-36.568
-37.2404
-38.0764
-38.1757
-38.9129
-40.1752
-41.0459
-41.5167
-42.5838
-43.8207
-44.5006
-44.2753
-43.3891
-43.0865
-43.5598
-44.2783
-44.8604
-45.4093
-45.5383
-46.0292
-46.8608
-48.8403
-50.6944
-51.4539
-52.0016
-51.5889
-51.836
-52.8943
-54.8888
-55.6695
-55.8576
-55.6548
-55.2597
-54.2544
-53.5836
-52.4754
-51.31
-51.9822
-53.4577
-56.1823
-58.5592
-61.0039
-65.1717
-69.2662
-70.6687
-71.2127
-72.0723
-72.9521
-73.6014
-72.9371
-69.5834
-68.1627
-69.1093
-73.8841
-75.2135
-75.3858
-72.9199
-69.698
-67.8802
-67.3196
-67.9273
-68.7902
-70.3128
-71.9537
-73.2
-74.7985
-75.7845
-76.4057
-76.6341
-77.1106
-77.6668
-78.156
-78.4833
-78.129
-76.7742
-74.9937
-73.6293
-72.6536
-72.7615
-73.3394
-73.5194
-73.9406
-74.8001
-76.1997
-77.1589
-82.033
-87.8734
-89.1586
-88.8852
-82.8944
-74.2215
-68.8327
-69.5041
-71.9562
-82.1871
-90.4422
-92.0829
-94.7778
-98.5734
-99.1299
-96.4857
-82.8789
-66.2542
-55.5518
-46.79
-35.0806
-72.9527
-127.584
-1.62689
-4.33332
-6.2787
-7.43002
-8.53196
-9.38987
-10.4142
-11.2482
-12.2012
-12.9491
-13.7646
-14.483
-15.264
-15.9964
-16.7591
-17.5021
-18.2887
-19.0984
-19.9419
-20.7893
-21.673
-22.5816
-23.4797
-24.3416
-25.1324
-25.9464
-26.6166
-27.2493
-27.8829
-28.5894
-29.293
-30.0108
-30.7306
-31.4245
-32.0871
-32.6792
-33.2287
-33.7269
-34.1913
-34.7548
-35.3517
-36.1644
-36.8552
-37.6951
-38.5769
-39.4106
-40.2839
-41.2513
-42.1901
-43.0659
-44.1341
-45.2478
-46.196
-46.9987
-47.6888
-48.3417
-48.9614
-49.5325
-50.1616
-50.7451
-51.0874
-51.6294
-52.2817
-53.1314
-54.043
-54.922
-55.7086
-55.8822
-56.2333
-57.0655
-57.9507
-58.7937
-59.5516
-59.9959
-60.0562
-59.3735
-58.6916
-58.9522
-58.4102
-57.5759
-58.1232
-59.1042
-60.0655
-61.8181
-64.0026
-65.7937
-68.0245
-69.3407
-70.1023
-71.6314
-73.0163
-73.7145
-73.9179
-73.7893
-74.505
-75.5925
-76.7962
-77.4102
-77.1197
-76.6819
-75.3676
-75.1003
-75.9039
-76.7865
-77.8323
-79.0618
-80.5978
-81.9538
-83.0325
-84.0477
-84.8416
-85.2404
-85.6064
-86.3458
-86.5747
-86.0771
-84.712
-83.424
-82.8921
-81.6939
-80.6482
-81.1563
-81.229
-80.2356
-80.8251
-82.6983
-87.941
-91.5242
-92.6206
-93.1139
-89.0444
-83.7643
-81.1837
-72.9343
-66.177
-66.6326
-69.1981
-77.5242
-84.5486
-86.4837
-85.7311
-85.6178
-77.7029
-72.2347
-56.716
-47.8993
-31.0952
-19.621
-39.3449
-94.5992
-1.44155
-3.859
-5.59785
-6.89078
-8.03578
-9.02337
-10.0159
-10.9472
-11.8921
-12.8044
-13.7001
-14.583
-15.4551
-16.323
-17.1936
-18.0592
-18.9152
-19.756
-20.5966
-21.4446
-22.285
-23.117
-23.9647
-24.8134
-25.674
-26.497
-27.3344
-28.1976
-29.0452
-29.8738
-30.7136
-31.5187
-32.3311
-33.092
-33.872
-34.5696
-35.269
-35.912
-36.505
-37.1033
-37.6596
-38.2643
-38.8398
-39.4705
-40.1231
-40.7566
-41.4575
-42.1224
-42.8658
-43.5505
-44.3461
-45.0813
-45.7968
-46.5161
-47.2071
-47.9439
-48.6707
-49.4129
-50.1083
-50.819
-51.5404
-52.2393
-52.9576
-53.6906
-54.4036
-55.1368
-55.8712
-56.5843
-57.3281
-58.1587
-58.929
-59.6446
-60.4481
-61.2759
-62.0007
-62.6897
-63.3334
-63.9768
-64.6705
-65.291
-65.8056
-66.5028
-67.2785
-68.0025
-68.6336
-69.4054
-70.2665
-71.0966
-71.9973
-73.0172
-74.0511
-74.8869
-75.7408
-76.7979
-77.9928
-78.9542
-79.7935
-80.5493
-81.2225
-82.0413
-82.8283
-83.4708
-84.1353
-84.7372
-85.1208
-85.4453
-85.7935
-86.1663
-86.4091
-86.7207
-87.0652
-87.3603
-87.65
-87.9371
-88.0209
-88.039
-88.023
-87.9885
-87.9388
-87.8828
-87.6612
-87.4147
-87.1354
-86.6544
-86.1873
-85.7313
-85.2212
-84.8808
-84.4239
-83.5387
-82.1322
-80.8722
-79.9225
-79.4422
-78.1255
-77.262
-76.4757
-76.4406
-75.7365
-75.948
-74.0684
-72.7754
-66.2672
-64.0132
-57.3183
-56.4081
-42.5766
-21.6344
-18.9254
-64.1919
-1.35645
-3.62282
-5.21255
-6.5697
-7.67353
-8.68314
-9.66332
-10.6003
-11.5389
-12.4447
-13.352
-14.247
-15.142
-16.0121
-16.8764
-17.713
-18.5332
-19.3249
-20.0962
-20.849
-21.5833
-22.3069
-23.021
-23.7336
-24.4352
-25.1644
-25.8901
-26.6244
-27.3384
-28.0819
-28.821
-29.5772
-30.3213
-31.0726
-31.8144
-32.5639
-33.2995
-34.0291
-34.7515
-35.46
-36.1557
-36.8367
-37.5098
-38.1444
-38.7916
-39.4149
-40.0343
-40.6768
-41.315
-41.9898
-42.6489
-43.392
-44.1087
-44.8568
-45.6276
-46.4212
-47.2084
-47.9993
-48.7882
-49.5729
-50.3521
-51.1198
-51.9047
-52.6887
-53.4814
-54.2874
-55.0904
-55.9009
-56.7326
-57.5501
-58.3635
-59.2011
-60.0274
-60.8019
-61.5631
-62.3091
-63.0057
-63.6919
-64.366
-64.9699
-65.5374
-66.273
-67.0097
-67.6935
-68.3945
-69.2015
-70.0587
-70.9459
-71.8737
-72.9045
-73.9281
-74.8857
-75.8767
-76.9502
-78.0182
-78.9831
-79.8264
-80.6356
-81.4157
-82.1338
-82.7848
-83.3933
-83.9617
-84.4872
-84.9169
-85.4007
-85.8554
-86.2576
-86.6335
-86.9784
-87.2817
-87.5277
-87.7412
-87.8858
-87.9672
-87.9669
-87.8877
-87.7254
-87.485
-87.147
-86.7239
-86.2212
-85.6298
-84.9396
-84.169
-83.4492
-82.6526
-81.8449
-80.876
-79.9456
-78.6605
-77.4195
-75.9546
-74.8287
-72.6965
-71.1022
-69.0399
-67.0509
-64.2772
-62.2385
-59.2056
-57.0911
-52.8221
-51.4224
-47.0114
-45.6587
-39.6253
-24.5018
-13.1532
-40.3074
-1.32139
-3.52599
-5.1271
-6.3785
-7.49294
-8.50184
-9.49005
-10.4102
-11.2978
-12.1587
-13.0246
-13.8966
-14.7723
-15.6198
-16.4427
-17.2386
-18.025
-18.7929
-19.5593
-20.3076
-21.0558
-21.7964
-22.5281
-23.2596
-23.9795
-24.6913
-25.397
-26.096
-26.8228
-27.543
-28.25
-28.9833
-29.7006
-30.4289
-31.1529
-31.8668
-32.5862
-33.2985
-33.9961
-34.6905
-35.3716
-36.0444
-36.7019
-37.3603
-38.0099
-38.672
-39.3189
-40.0068
-40.6792
-41.401
-42.1141
-42.8706
-43.6441
-44.4079
-45.2225
-46.0375
-46.8687
-47.6985
-48.5267
-49.3674
-50.2046
-51.0429
-51.8768
-52.7096
-53.5408
-54.3736
-55.2005
-56.0139
-56.8307
-57.6474
-58.4536
-59.2642
-60.0646
-60.8631
-61.6534
-62.4239
-63.1898
-63.9406
-64.6559
-65.3696
-66.1364
-66.7929
-67.4649
-68.2015
-68.9387
-69.711
-70.5275
-71.3866
-72.2628
-73.1459
-74.071
-75.0506
-76.0179
-76.9276
-77.8463
-78.7069
-79.5434
-80.3708
-81.1962
-82.0008
-82.7228
-83.4008
-84.0348
-84.6237
-85.1708
-85.6779
-86.1572
-86.601
-87.015
-87.3926
-87.7305
-88.0264
-88.2616
-88.4471
-88.5598
-88.5998
-88.5578
-88.4306
-88.2173
-87.9134
-87.5089
-87.0264
-86.4522
-85.8041
-85.0844
-84.3002
-83.4603
-82.5604
-81.6159
-80.6149
-79.5309
-78.3686
-77.0855
-75.6302
-74.0572
-72.2877
-70.3379
-68.1557
-65.9599
-63.6462
-61.0196
-58.4445
-54.895
-52.0896
-48.5845
-45.0914
-40.0742
-26.3855
-14.8634
-21.049
-1.32519
-3.55469
-5.11482
-6.38805
-7.51751
-8.52337
-9.48031
-10.3835
-11.2225
-12.034
-12.897
-13.7689
-14.5989
-15.3772
-16.1338
-16.8766
-17.6108
-18.326
-19.0301
-19.7323
-20.434
-21.1427
-21.856
-22.5575
-23.2703
-23.9734
-24.6933
-25.4081
-26.1105
-26.7911
-27.4931
-28.1645
-28.8599
-29.5476
-30.2258
-30.899
-31.5789
-32.2608
-32.9323
-33.6131
-34.2913
-34.9684
-35.6539
-36.3352
-37.0298
-37.7284
-38.4528
-39.1774
-39.9319
-40.7
-41.4889
-42.2966
-43.1245
-43.9382
-44.7671
-45.5927
-46.424
-47.2502
-48.0759
-48.9054
-49.7287
-50.5576
-51.3818
-52.2096
-53.0318
-53.8469
-54.6554
-55.4669
-56.2647
-57.0748
-57.8704
-58.6795
-59.4742
-60.2794
-61.0734
-61.8701
-62.6572
-63.4577
-64.2243
-65.0254
-65.8039
-66.5735
-67.3941
-68.2248
-69.0663
-69.9001
-70.7522
-71.6322
-72.5162
-73.408
-74.3045
-75.2314
-76.1471
-77.0422
-77.902
-78.7364
-79.5681
-80.3933
-81.2056
-81.9681
-82.6967
-83.394
-84.0549
-84.6844
-85.2783
-85.8373
-86.3529
-86.8302
-87.252
-87.6306
-87.944
-88.2039
-88.3945
-88.5191
-88.5619
-88.5339
-88.408
-88.2086
-87.8966
-87.5082
-87.0091
-86.4298
-85.7466
-84.9849
-84.1129
-83.1764
-82.1225
-81.0321
-79.8153
-78.5824
-77.2346
-75.8582
-74.4074
-72.8762
-71.2822
-69.5583
-67.8119
-65.8187
-63.8589
-61.4718
-59.3355
-56.3741
-53.9527
-50.6104
-48.2249
-45.5274
-41.3487
-32.0216
-19.0799
-10.8657
-1.2991
-3.44409
-4.87244
-6.11718
-7.18082
-8.137
-8.9944
-9.853
-10.657
-11.3451
-12.0523
-12.8584
-13.6604
-14.3201
-14.8703
-15.4507
-16.1229
-16.8449
-17.516
-18.1404
-18.7227
-19.3325
-19.9518
-20.6129
-21.2935
-21.9899
-22.6883
-23.3653
-24.0786
-24.7742
-25.4682
-26.1881
-26.8702
-27.5724
-28.2698
-28.9646
-29.6705
-30.3809
-31.1179
-31.8545
-32.5862
-33.335
-34.1165
-34.8679
-35.6784
-36.5031
-37.3264
-38.1811
-39.0521
-39.9443
-40.8473
-41.7616
-42.6707
-43.5858
-44.4961
-45.409
-46.3178
-47.2124
-48.1013
-48.9835
-49.8591
-50.7401
-51.6273
-52.492
-53.3377
-54.178
-55.0143
-55.8436
-56.6796
-57.5099
-58.3458
-59.1681
-59.9743
-60.7723
-61.5768
-62.3645
-63.1585
-63.9315
-64.7198
-65.4797
-66.2707
-67.0216
-67.8303
-68.5896
-69.3465
-70.1678
-70.9901
-71.8321
-72.6715
-73.5271
-74.4072
-75.2731
-76.1239
-76.9938
-77.8361
-78.6621
-79.4951
-80.3195
-81.1181
-81.8955
-82.6438
-83.3608
-84.0415
-84.6892
-85.2966
-85.8682
-86.3918
-86.877
-87.3036
-87.6818
-87.9876
-88.2323
-88.3926
-88.4843
-88.4865
-88.4171
-88.2633
-88.0364
-87.7338
-87.3625
-86.9195
-86.4126
-85.837
-85.2143
-84.5199
-83.7882
-82.9719
-82.1227
-81.156
-80.1727
-78.9973
-77.8149
-76.352
-74.8941
-73.0999
-71.4411
-69.3687
-67.5425
-65.2152
-63.1053
-60.544
-57.9357
-55.3011
-51.5836
-49.2708
-46.1882
-39.2978
-37.639
-24.9278
-12.346
-1.25105
-3.31484
-4.60511
-5.67504
-6.56092
-7.40562
-8.34981
-9.05809
-9.48505
-10.0603
-11.0471
-11.8295
-12.1418
-12.3966
-13.0325
-13.8974
-14.5137
-14.9743
-15.414
-16.0265
-16.6877
-17.2424
-17.864
-18.4246
-19.0205
-19.7103
-20.3391
-20.9565
-21.6766
-22.3694
-23.0952
-23.7352
-24.4758
-25.1549
-25.8483
-26.5947
-27.2804
-28.0265
-28.7846
-29.5458
-30.3661
-31.2209
-32.1185
-33.0371
-33.9903
-34.9768
-35.9803
-37.0049
-38.0356
-39.0645
-40.0927
-41.1095
-42.1121
-43.0972
-44.0649
-45.0107
-45.9508
-46.8836
-47.7899
-48.6699
-49.5375
-50.4053
-51.2661
-52.1029
-52.9318
-53.752
-54.5755
-55.3987
-56.2255
-57.0361
-57.8323
-58.6227
-59.4231
-60.2099
-61.0116
-61.7953
-62.6028
-63.3878
-64.2026
-65.0066
-65.8182
-66.6141
-67.4424
-68.265
-69.1164
-69.9755
-70.8296
-71.6992
-72.5837
-73.4731
-74.3681
-75.2669
-76.1623
-77.0512
-77.9356
-78.8174
-79.6927
-80.5574
-81.3988
-82.231
-83.0565
-83.8742
-84.6475
-85.3903
-86.0904
-86.7452
-87.3349
-87.8601
-88.2944
-88.6508
-88.9148
-89.102
-89.2085
-89.2559
-89.2285
-89.168
-89.0315
-88.8648
-88.6231
-88.3573
-88.0059
-87.6395
-87.1675
-86.6846
-86.0554
-85.4135
-84.5582
-83.6886
-82.5602
-81.4243
-80.015
-78.6181
-76.9528
-75.2987
-73.3789
-71.5328
-69.3625
-67.3452
-64.972
-62.6214
-60.1186
-57.3435
-54.7859
-50.6376
-48.2039
-45.4955
-38.6144
-36.9459
-26.3082
-12.506
-1.28758
-3.42408
-4.79382
-6.04862
-7.19781
-8.11851
-8.81616
-9.74799
-10.9086
-11.7566
-12.172
-12.6407
-13.4658
-14.4384
-15.2523
-15.8596
-16.4153
-17.0308
-17.7232
-18.4334
-19.1304
-19.8022
-20.4682
-21.1599
-21.876
-22.5942
-23.308
-24.0147
-24.7281
-25.4296
-26.1328
-26.8077
-27.4825
-28.1452
-28.8127
-29.4758
-30.149
-30.8275
-31.5254
-32.2324
-32.9492
-33.6633
-34.4424
-35.1898
-35.9771
-36.7988
-37.6096
-38.4648
-39.3061
-40.1758
-41.059
-41.9486
-42.8398
-43.7323
-44.6281
-45.5218
-46.4095
-47.2948
-48.1757
-49.0569
-49.9362
-50.8197
-51.6975
-52.5687
-53.4273
-54.2746
-55.1148
-55.955
-56.7857
-57.6264
-58.4644
-59.2908
-60.1086
-60.9243
-61.7315
-62.5233
-63.3131
-64.0842
-64.8652
-65.6158
-66.3912
-67.1566
-67.8948
-68.6996
-69.4479
-70.2373
-71.0356
-71.8716
-72.7049
-73.5573
-74.4055
-75.2451
-76.0893
-76.951
-77.7951
-78.6193
-79.4523
-80.273
-81.0739
-81.8713
-82.632
-83.3673
-84.0722
-84.7541
-85.4023
-86.0276
-86.6141
-87.1749
-87.6837
-88.1505
-88.5384
-88.8744
-89.097
-89.2619
-89.2991
-89.2791
-89.1473
-88.9689
-88.6991
-88.3948
-88.0001
-87.5819
-87.0617
-86.5119
-85.8293
-85.1375
-84.2638
-83.4061
-82.3219
-81.2769
-79.9835
-78.7209
-77.1756
-75.6875
-73.8476
-72.1784
-70.0263
-68.186
-65.7511
-63.6744
-60.9401
-58.4699
-55.6384
-51.7586
-49.3399
-46.996
-38.9838
-36.3007
-25.5038
-12.7635
-1.31815
-3.5325
-5.06522
-6.31794
-7.47324
-8.52762
-9.41647
-10.2981
-11.3387
-12.2626
-12.9445
-13.596
-14.4155
-15.2914
-16.1035
-16.8234
-17.5258
-18.2243
-18.9522
-19.6759
-20.407
-21.1261
-21.8475
-22.5514
-23.2467
-23.9493
-24.6336
-25.3351
-26.0185
-26.7
-27.3878
-28.0612
-28.7458
-29.4252
-30.1018
-30.77
-31.4381
-32.1199
-32.7897
-33.4762
-34.1624
-34.8617
-35.5673
-36.2777
-36.9995
-37.7333
-38.4827
-39.2382
-40.0145
-40.8018
-41.6045
-42.4247
-43.2578
-44.0741
-44.9022
-45.7281
-46.5559
-47.3801
-48.2093
-49.035
-49.8661
-50.6897
-51.5115
-52.3396
-53.1548
-53.9512
-54.7471
-55.5415
-56.33
-57.119
-57.9034
-58.6904
-59.4738
-60.2602
-61.0405
-61.8343
-62.5985
-63.3878
-64.168
-64.9388
-65.7234
-66.5362
-67.3193
-68.1427
-68.9797
-69.8021
-70.6561
-71.5175
-72.3871
-73.2691
-74.1662
-75.0767
-75.9803
-76.8675
-77.7355
-78.5719
-79.3953
-80.2244
-81.0415
-81.8128
-82.5536
-83.2529
-83.9149
-84.5304
-85.1035
-85.6322
-86.1153
-86.5468
-86.9317
-87.258
-87.5419
-87.7593
-87.9312
-88.0274
-88.0774
-88.0405
-87.9411
-87.7478
-87.4691
-87.0975
-86.6217
-86.0537
-85.351
-84.5758
-83.6415
-82.6526
-81.4835
-80.296
-78.8928
-77.5236
-75.9713
-74.4454
-72.8313
-71.2211
-69.5932
-67.9242
-66.2321
-64.4992
-62.6516
-60.6779
-58.5953
-56.0554
-53.8455
-50.5811
-48.682
-45.8861
-41.5343
-36.3885
-21.6912
-11.5526
-1.32016
-3.48298
-5.05801
-6.3225
-7.43813
-8.44923
-9.44657
-10.3277
-11.1772
-12.0679
-12.9777
-13.8074
-14.5878
-15.353
-16.1367
-16.9163
-17.6889
-18.4431
-19.1932
-19.9343
-20.6721
-21.4066
-22.1429
-22.8745
-23.6084
-24.3242
-25.0527
-25.7642
-26.483
-27.212
-27.935
-28.6667
-29.3931
-30.1217
-30.8529
-31.5695
-32.2846
-32.9974
-33.7051
-34.4105
-35.1143
-35.8063
-36.5004
-37.1922
-37.8805
-38.5767
-39.2677
-39.9764
-40.6901
-41.4165
-42.1549
-42.9043
-43.6708
-44.4449
-45.2374
-46.038
-46.844
-47.682
-48.5052
-49.3446
-50.1796
-51.0264
-51.8866
-52.7505
-53.6133
-54.4816
-55.3422
-56.2185
-57.0775
-57.9552
-58.814
-59.6638
-60.4993
-61.3411
-62.1694
-62.939
-63.7099
-64.4136
-65.1052
-65.8154
-66.4361
-67.068
-67.7478
-68.4548
-69.2167
-69.9053
-70.6713
-71.4629
-72.2804
-73.1087
-74.0254
-74.8914
-75.7858
-76.6869
-77.5887
-78.477
-79.3092
-80.1366
-80.9617
-81.7709
-82.5189
-83.23
-83.8998
-84.5307
-85.1131
-85.6653
-86.1654
-86.6393
-87.066
-87.4682
-87.8212
-88.1437
-88.4138
-88.6315
-88.7969
-88.8852
-88.92
-88.8598
-88.7419
-88.5182
-88.2114
-87.8173
-87.2723
-86.6367
-85.8959
-85.0445
-84.0089
-82.9045
-81.6487
-80.2385
-78.8209
-77.3669
-75.8688
-74.3472
-72.8217
-71.2071
-69.6164
-67.7215
-65.9352
-63.5135
-61.4284
-58.4196
-56.03
-52.7021
-50.5596
-47.573
-43.8094
-33.0069
-19.4956
-10.5176
-1.34929
-3.58136
-5.13001
-6.42669
-7.54844
-8.54254
-9.54758
-10.4741
-11.4229
-12.3019
-13.2075
-14.0591
-14.926
-15.7404
-16.5617
-17.3432
-18.1299
-18.8902
-19.6599
-20.411
-21.1691
-21.9113
-22.6501
-23.3773
-24.0979
-24.82
-25.532
-26.2436
-26.9672
-27.6766
-28.3963
-29.1293
-29.8549
-30.5813
-31.3138
-32.033
-32.7625
-33.4683
-34.1955
-34.8988
-35.6132
-36.3138
-37.0186
-37.7131
-38.4076
-39.0965
-39.7966
-40.4916
-41.1989
-41.9114
-42.637
-43.3652
-44.1094
-44.8608
-45.6189
-46.4014
-47.1561
-47.9613
-48.7572
-49.5544
-50.3969
-51.2069
-52.0254
-52.8284
-53.6169
-54.395
-55.1656
-55.9281
-56.6855
-57.4927
-58.3225
-59.1566
-59.954
-60.7152
-61.4288
-62.1402
-62.8846
-63.5041
-64.0985
-64.7759
-65.4105
-66.0522
-66.6989
-67.3857
-68.0531
-68.8574
-69.6992
-70.5677
-71.5282
-72.4648
-73.4231
-74.3745
-75.3076
-76.2738
-77.2486
-78.2153
-79.107
-79.9426
-80.7628
-81.5735
-82.3246
-83.0214
-83.6569
-84.23
-84.7526
-85.2684
-85.6829
-86.073
-86.4478
-86.7452
-87.0471
-87.2867
-87.4661
-87.592
-87.6437
-87.6502
-87.6006
-87.497
-87.3607
-87.1254
-86.7967
-86.3361
-85.6976
-84.8369
-83.9178
-82.8576
-81.5038
-80.1644
-78.9615
-78.0791
-77.0303
-75.9545
-74.7542
-73.9031
-72.3576
-71.2197
-69.3265
-67.8442
-65.2956
-63.2453
-60.0151
-57.9667
-54.1659
-52.2224
-48.8025
-46.1952
-41.4029
-27.3399
-13.9938
-18.1308
-1.44192
-3.73633
-5.346
-6.67038
-7.86077
-8.84089
-9.84574
-10.7516
-11.6954
-12.5841
-13.5076
-14.3732
-15.2624
-16.1194
-17.004
-17.8465
-18.6962
-19.543
-20.407
-21.264
-22.1098
-22.9674
-23.8227
-24.6676
-25.5118
-26.3378
-27.1809
-27.9959
-28.8007
-29.5623
-30.3277
-31.072
-31.7864
-32.4904
-33.1694
-33.8269
-34.4968
-35.1486
-35.8105
-36.435
-37.0313
-37.6824
-38.3481
-38.9814
-39.6381
-40.2898
-40.9365
-41.5786
-42.2658
-42.9675
-43.6361
-44.2957
-44.9637
-45.6434
-46.3606
-47.0786
-47.8016
-48.5323
-49.3191
-50.0535
-50.8546
-51.7088
-52.5323
-53.3121
-54.1417
-55.0144
-55.8585
-56.7584
-57.6548
-58.6275
-59.5716
-60.606
-61.5135
-62.3527
-63.0963
-63.8177
-64.6478
-65.2528
-65.7738
-66.4961
-67.271
-67.7847
-68.165
-68.7488
-69.3212
-70.0064
-70.6648
-71.2119
-71.9732
-72.6005
-73.3315
-74.0504
-74.8629
-75.7412
-76.6784
-77.7233
-78.8531
-79.9063
-80.9545
-81.8927
-82.7216
-83.5159
-84.2212
-84.8694
-85.4192
-85.9322
-86.3867
-86.6707
-86.9831
-87.2108
-87.4456
-87.5828
-87.656
-87.7789
-87.7833
-87.704
-87.6777
-87.6007
-87.3447
-87.2326
-86.9151
-86.3917
-86.0052
-85.03
-84.6767
-84.6251
-84.2232
-84.2405
-84.3484
-84.9863
-85.5099
-85.7682
-85.3014
-84.3185
-82.6882
-81.5153
-79.2275
-77.5603
-74.2916
-71.8456
-67.4717
-65.322
-60.1655
-59.5735
-54.5852
-53.0807
-48.923
-30.7875
-14.6216
-39.5861
-1.56067
-4.18067
-6.08866
-7.24186
-8.42899
-9.20803
-10.1314
-10.9582
-11.928
-12.8184
-13.8108
-14.7367
-15.7639
-16.726
-17.7233
-18.6603
-19.6568
-20.576
-21.5519
-22.5017
-23.4859
-24.3606
-25.2028
-25.9838
-26.7671
-27.484
-28.076
-28.622
-29.1995
-29.8003
-30.3194
-30.719
-31.0993
-31.6225
-32.1267
-32.6338
-33.0767
-33.5472
-34.1514
-34.7885
-35.4393
-36.03
-36.5745
-37.2777
-37.9479
-38.6626
-39.3661
-40.066
-40.7348
-41.5242
-42.3962
-43.2139
-43.936
-44.7481
-45.6068
-46.5392
-47.4793
-48.3364
-49.2325
-50.3268
-51.2822
-52.3642
-53.2156
-53.9841
-54.3537
-54.8876
-55.5697
-56.0323
-56.3353
-57.075
-57.8257
-58.4882
-59.1892
-58.9345
-57.3687
-56.8356
-56.293
-55.1418
-55.0659
-55.592
-56.3657
-57.5954
-58.931
-59.7617
-60.8713
-62.7115
-63.9655
-64.4572
-64.8317
-65.7587
-67.028
-67.8168
-68.63
-70.16
-71.4925
-72.5426
-73.4595
-74.302
-75.1371
-75.949
-76.6611
-77.2953
-78.0617
-78.9206
-79.8732
-81.0335
-82.6672
-84.5171
-86.0111
-87.6835
-89.9733
-91.8701
-92.8397
-93.6099
-93.4432
-92.7927
-91.2352
-89.5887
-89.3261
-88.8303
-87.77
-88.1097
-84.888
-79.7205
-79.7718
-78.1928
-72.3221
-72.5808
-75.6152
-83.2754
-88.3259
-90.418
-91.1012
-90.6442
-87.2624
-85.0275
-81.3353
-80.3286
-76.9562
-75.5871
-70.6676
-68.5082
-62.3635
-59.7556
-54.7915
-49.6569
-42.1888
-29.5133
-26.1747
-70.86
-1.79339
-4.97426
-7.52953
-9.31572
-10.559
-11.1473
-11.8083
-12.3872
-13.2292
-14.0507
-14.6864
-15.3381
-16.3411
-17.0398
-17.5031
-18.1591
-19.1222
-19.8694
-20.6029
-21.7778
-22.9316
-23.9456
-24.5461
-25.2676
-26.1876
-27.0469
-27.5241
-27.9699
-28.8651
-29.8338
-30.1905
-30.3353
-30.9905
-31.904
-32.337
-32.0457
-32.2707
-33.2355
-34.1314
-34.5529
-33.9114
-34.3564
-35.433
-36.4044
-36.9598
-37.3718
-37.8193
-37.4518
-37.8997
-39.0854
-40.1259
-40.7278
-40.6969
-40.8232
-41.6905
-42.6319
-43.2464
-43.4135
-44.1795
-45.4035
-46.4279
-47.1484
-47.6294
-47.5579
-47.0147
-47.397
-48.2619
-49.1771
-49.8119
-50.5338
-52.0388
-54.7523
-55.5211
-55.778
-54.084
-52.5884
-51.7566
-52.1867
-53.312
-56.0342
-59.3828
-61.7934
-62.5519
-63.287
-64.4254
-67.1634
-69.2664
-70.2494
-70.9826
-71.0974
-70.9339
-71.3778
-72.1008
-72.6026
-73.0434
-72.9964
-72.7566
-72.5218
-72.1591
-71.7683
-71.527
-71.163
-70.6935
-70.781
-71.0055
-71.0403
-71.7059
-72.6234
-74.1796
-75.3467
-76.6556
-78.4264
-79.1642
-79.4518
-79.1671
-78.4005
-77.0163
-76.7086
-77.4601
-78.1166
-78.724
-78.7728
-76.6114
-74.3614
-68.5807
-65.9831
-67.6184
-70.5779
-77.6709
-91.2291
-99.7474
-101.872
-105.965
-107.374
-107.257
-105.479
-104.46
-103.847
-98.2939
-92.0596
-84.9798
-80.4043
-77.1872
-71.1627
-69.753
-62.6071
-61.8006
-48.569
-44.4897
-95.0282
)
;
value nonuniform List<scalar>
2250
(
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
100836
)
;
}
cold
{
type fixedFluxPressure;
gradient nonuniform List<scalar>
2250
(
0.123678
0.182208
0.3317
0.6017
0.791756
0.976841
1.12654
1.31424
1.67411
1.98714
2.40594
2.92966
3.49984
3.9204
4.22371
4.38624
4.6365
4.91579
5.11158
5.20962
5.16092
5.06414
5.09283
5.20629
5.42227
5.89396
6.38954
6.91929
7.40461
7.75162
8.20021
8.49245
8.69919
8.82118
9.0554
9.34563
9.82684
10.5595
11.5652
12.6395
13.2007
13.5414
13.4589
13.3995
13.687
13.8717
13.8358
14.0848
14.3889
14.7923
15.3227
16.1058
16.9806
18.0842
18.9994
19.6991
20.1673
20.6623
21.2333
21.7729
22.3064
22.78
23.2018
23.6953
24.1986
24.7821
25.4497
26.0209
26.605
27.0529
27.5101
28.0214
28.5961
29.239
29.912
30.6595
31.5237
32.3018
32.9294
33.4122
33.6033
33.6609
33.6465
33.6098
33.6731
33.8898
34.2504
34.7501
35.3237
35.9524
36.6664
37.4497
38.1348
38.6163
38.9778
39.3227
40.0856
41.0788
42.2417
43.1539
43.7355
44.1139
44.2097
44.1151
44.3432
44.8143
46.119
47.9065
49.36
50.3718
51.5581
53.4354
55.8444
58.9057
61.847
64.3538
67.3143
70.7641
72.891
74.1566
75.2031
75.8029
77.0401
80.1404
84.441
88.3864
91.795
93.8456
95.4014
97.3981
101.349
108.408
116.107
122.154
127.078
131.147
137.757
149.205
162.514
173.639
177.35
181.735
193.994
221.127
252.033
291.592
343.627
412.616
478.719
521.902
0.113675
0.164036
0.192308
0.314548
0.471688
0.604328
0.795428
1.04548
1.31223
1.58108
1.93402
2.32231
2.75467
3.18815
3.59098
3.88812
4.13256
4.3802
4.6649
4.90739
4.98899
5.08172
5.32338
5.80661
6.30867
6.68465
7.29926
8.04199
8.62218
9.06356
9.44821
9.76089
10.0365
10.298
10.6111
11.0684
11.7183
12.3853
13.0532
13.7972
14.2642
14.5992
14.8508
15.0911
15.1846
15.4642
15.8064
16.2588
16.6698
17.2041
17.8964
18.4805
19.1468
19.7516
20.2626
20.761
21.153
21.5451
21.979
22.3569
22.7618
23.1757
23.5891
24.0211
24.4658
24.9442
25.4526
25.9588
26.4793
26.9918
27.4891
28.0016
28.5143
29.0487
29.5845
30.1458
30.7082
31.3189
31.8684
32.3656
32.8237
33.2189
33.5661
33.8704
34.1699
34.4747
34.75
35.0417
35.3475
35.6668
36.0285
36.423
36.8671
37.3164
37.7568
38.2981
38.8694
39.5258
40.2669
41.1282
41.9032
42.6124
43.2983
43.9899
44.7276
45.5327
46.4251
47.4333
48.6634
50.0371
51.5572
53.0982
54.7287
56.3981
58.0872
59.7828
61.4885
63.3319
65.023
66.8178
68.8284
70.912
73.1861
75.8184
78.1526
80.4207
82.7383
84.8201
87.1062
89.8278
93.0052
96.6762
101.352
105.516
108.903
112.659
115.956
120.71
125.926
132.627
138.972
149.069
159.261
177.467
198.953
238.075
281.965
346.367
415.456
473.893
0.0776018
0.093043
0.124221
0.304602
0.550939
0.737615
0.964578
1.14954
1.39501
1.61388
1.91375
2.24715
2.61586
3.00754
3.39555
3.73295
4.04288
4.37385
4.72457
5.06326
5.40433
5.72043
6.02795
6.37755
6.73273
7.09778
7.5177
7.9361
8.40787
8.89443
9.4045
9.92912
10.4395
10.9407
11.4121
11.8517
12.2653
12.6735
13.1151
13.6044
14.1066
14.5785
15.0973
15.6148
16.0881
16.5697
17.0426
17.5056
17.975
18.4256
18.8806
19.3658
19.8694
20.4011
20.9401
21.4671
22.0331
22.4836
23.0055
23.4766
23.9332
24.4004
24.8265
25.2663
25.6912
26.1139
26.5326
26.9544
27.3564
27.7562
28.1525
28.5571
28.9673
29.3869
29.8087
30.2392
30.6545
31.0753
31.4884
31.8911
32.2618
32.6083
32.9531
33.3058
33.6665
34.0494
34.4681
34.9087
35.3772
35.8815
36.4176
36.9853
37.5719
38.1822
38.8053
39.448
40.1547
40.9888
41.7744
42.6314
43.4997
44.4143
45.3794
46.4188
47.5169
48.7208
49.9956
51.4103
52.9247
54.487
56.1658
57.8737
59.6558
61.472
63.3184
65.1882
67.1068
69.0962
71.1478
73.3774
75.6351
78.0893
80.5565
83.1482
85.8836
88.6618
91.6505
94.7171
98.0009
101.432
104.969
108.588
112.367
116.189
120.309
124.64
128.73
132.93
137.153
141.932
148.4
157.562
169.433
187.077
206.143
235.383
260.946
302.267
352.515
414.159
0.0448608
0.0486566
0.12535
0.302641
0.543053
0.719173
0.925294
1.10609
1.32603
1.53871
1.79044
2.04074
2.33091
2.62048
2.94231
3.25718
3.58661
3.91034
4.25602
4.60203
4.96426
5.33474
5.7418
6.16571
6.60192
7.05219
7.52318
8.00551
8.49889
8.99528
9.4948
9.99672
10.5029
11.0097
11.5229
12.0439
12.5716
13.1081
13.6469
14.1841
14.7118
15.2208
15.713
16.1995
16.6623
17.1108
17.5717
18.0111
18.4653
18.9057
19.3535
19.7999
20.2435
20.6892
21.1302
21.5725
22.0068
22.4396
22.8741
23.2983
23.7241
24.1432
24.5529
24.9608
25.3664
25.7643
26.1621
26.5559
26.95
27.3417
27.7342
28.1339
28.5367
28.9499
29.3693
29.7997
30.2366
30.6736
31.1327
31.577
32.0282
32.486
32.9348
33.382
33.8298
34.2669
34.7233
35.1824
35.6361
36.1124
36.5957
37.0985
37.6242
38.1731
38.7471
39.3523
39.9903
40.6623
41.4431
42.2545
43.1302
44.0637
45.0674
46.1351
47.2863
48.4989
49.7832
51.1383
52.5582
54.0512
55.5851
57.1911
58.8317
60.5258
62.2805
64.0888
65.9506
67.8897
69.9677
72.0673
74.3019
76.6054
79.0576
81.645
84.2136
86.8138
89.595
92.4805
95.3699
98.4905
101.738
105.166
108.877
112.773
116.886
121.491
126.934
133.563
141.624
150.549
156.971
163.099
173.863
191.432
206.865
223.879
239.693
281.823
333.235
387.1
0.0219314
0.050379
0.160278
0.355983
0.565557
0.734938
0.932393
1.11521
1.34498
1.5598
1.81479
2.06281
2.34132
2.62168
2.9254
3.23485
3.56413
3.9038
4.26309
4.63512
5.02523
5.42786
5.84519
6.27387
6.71553
7.16907
7.63389
8.10912
8.59313
9.08658
9.58722
10.0956
10.6093
11.1276
11.6503
12.173
12.6988
13.2203
13.7424
14.2587
14.7719
15.2779
15.7771
16.2674
16.7505
17.2253
17.6931
18.157
18.6148
19.0694
19.5227
19.9751
20.4286
20.8826
21.3365
21.7907
22.2426
22.6931
23.1379
23.5826
24.0188
24.455
24.8813
25.3051
25.7263
26.1398
26.5553
26.9619
27.3666
27.7651
28.1637
28.557
28.9541
29.3503
29.7484
30.147
30.5471
30.9475
31.3434
31.7527
32.1583
32.5647
32.9765
33.3904
33.8151
34.247
34.693
35.1537
35.6342
36.1265
36.6403
37.173
37.7278
38.3059
38.9113
39.5426
40.1987
40.8889
41.6254
42.4113
43.2602
44.1562
45.1195
46.1352
47.218
48.3789
49.6303
50.9308
52.3184
53.7765
55.2851
56.9007
58.5564
60.2925
62.0975
63.9793
65.9282
67.9652
70.0728
72.2225
74.4715
76.8256
79.31
81.8094
84.2759
86.902
89.7477
92.542
95.4065
98.3526
101.464
104.792
108.229
112.005
116.669
121.962
127.589
132.869
137.632
143.42
150.947
161.173
175.063
190.868
203.529
217.398
237.373
282.735
334.251
376.712
0.0116074
0.060235
0.170977
0.345134
0.497859
0.672558
0.84466
1.04218
1.25253
1.48008
1.71728
1.97228
2.23662
2.51733
2.80898
3.11739
3.43828
3.77531
4.1268
4.49345
4.8745
5.27107
5.68303
6.10973
6.55065
7.00489
7.47117
7.95032
8.4388
8.93915
9.44566
9.96234
10.4831
11.0105
11.5409
12.0735
12.6084
13.1419
13.6758
14.2052
14.7309
15.2492
15.7608
16.263
16.7562
17.2386
17.714
18.1788
18.6362
19.0867
19.5327
19.9719
20.4099
20.8416
21.2735
21.6996
22.126
22.5472
22.9685
23.3856
23.8021
24.215
24.626
25.0328
25.4411
25.8395
26.2429
26.6396
27.039
27.4339
27.8323
28.231
28.6342
29.0382
29.4479
29.8605
30.2791
30.7002
31.1262
31.5542
31.9858
32.4198
32.8563
33.2986
33.7439
34.1932
34.6447
35.102
35.565
36.0389
36.5234
37.019
37.5301
38.0605
38.6141
39.1968
39.8105
40.4519
41.1311
41.8703
42.674
43.5358
44.4771
45.4788
46.5206
47.6417
48.8287
50.1077
51.4394
52.8327
54.3047
55.8488
57.4381
59.101
60.8175
62.585
64.4127
66.2602
68.0921
69.9885
71.975
74.052
76.1443
78.2374
80.4192
82.9342
85.6633
88.5933
91.7782
95.7127
100.039
104.883
109.684
114.894
119.661
123.815
127.31
131.133
135.559
141.886
148.733
159.596
175.076
191.357
205.208
221.805
248.233
284.825
341.03
372.325
0.0130879
0.0812987
0.214674
0.339051
0.455548
0.649811
0.854676
1.07623
1.30641
1.54882
1.79809
2.06187
2.33465
2.62278
2.92191
3.2357
3.56148
3.90233
4.25668
4.62549
5.00839
5.40487
5.81602
6.24089
6.68083
7.13496
7.60319
8.08477
8.57776
9.082
9.59472
10.1154
10.6411
11.1708
11.7013
12.2331
12.761
13.2871
13.8076
14.3242
14.8344
15.3386
15.8358
16.3256
16.8079
17.2824
17.7492
18.2097
18.6635
19.1132
19.5596
20.0036
20.445
20.886
21.3255
21.7644
22.2023
22.6396
23.0747
23.5088
23.9399
24.3697
24.7967
25.2215
25.6427
26.0649
26.4792
26.8951
27.3043
27.7127
28.117
28.5207
28.9199
29.3203
29.7193
30.1174
30.517
30.9155
31.3114
31.7099
32.1125
32.5144
32.9184
33.3234
33.7312
34.1424
34.5567
34.976
35.3999
35.8301
36.2677
36.7142
37.1719
37.644
38.1341
38.6474
39.1909
39.7721
40.4023
41.086
41.8029
42.5671
43.4276
44.3539
45.3184
46.3258
47.3167
48.368
49.5049
50.6699
51.8655
53.091
54.3496
55.6541
57.0125
58.4545
59.9719
61.5608
63.3126
65.2354
67.2844
69.384
71.6118
73.9877
76.4417
79.1701
82.0837
85.3962
89.0418
93.251
97.659
102.396
107.623
113.898
120.31
126.17
129.07
130.425
134.518
141.309
149.073
158.925
170.19
183.317
197.625
216.676
243.389
278.175
332.462
380.747
0.0144809
0.0901206
0.217411
0.323337
0.469246
0.672277
0.884536
1.09892
1.33831
1.57391
1.82936
2.08874
2.3679
2.65396
2.95482
3.26399
3.58992
3.92643
4.27782
4.64047
5.01666
5.40677
5.80877
6.22723
6.65685
7.10227
7.56137
8.03462
8.5211
9.02232
9.53498
10.0584
10.591
11.1264
11.6695
12.2066
12.7476
13.2794
13.8095
14.3299
14.8441
15.3493
15.8465
16.3353
16.8152
17.2866
17.749
18.2037
18.6517
19.0925
19.529
19.9605
20.3892
20.8144
21.2378
21.659
22.0791
22.497
22.9142
23.3289
23.7427
24.1543
24.5656
24.9739
25.3804
25.7876
26.1896
26.5946
26.9961
27.3984
27.7999
28.2012
28.6046
29.0094
29.4152
29.8223
30.2314
30.6421
31.054
31.467
31.8797
32.2914
32.7005
33.106
33.5042
33.8988
34.2844
34.6582
35.0215
35.3736
35.7146
36.0459
36.3686
36.6866
37.0044
37.3209
37.6448
37.976
38.3153
38.6625
39.016
39.3697
39.7177
40.0775
40.4501
40.8344
41.2941
41.8921
42.609
43.3638
44.1562
44.9842
45.7988
46.6035
47.4109
48.1923
48.9895
49.8769
50.8345
51.865
52.973
54.2414
55.5619
57.0152
58.8843
61.2789
64.1697
67.5597
71.3273
75.956
81.3678
87.0112
93.3059
99.7867
105.625
110.942
115.618
120.408
125.813
132.994
140.373
147.795
156.135
167.869
182.762
201.817
229.093
267.934
328.953
377.883
0.0138322
0.0848299
0.218614
0.334987
0.453821
0.647064
0.850336
1.06978
1.29826
1.53839
1.78771
2.04958
2.32183
2.60778
2.90662
3.22018
3.54687
3.88758
4.24223
4.61104
4.99461
5.39257
5.80542
6.23288
6.67605
7.13335
7.60568
8.09023
8.58724
9.09339
9.60901
10.1298
10.6561
11.1834
11.7122
12.2386
12.7626
13.2819
13.7977
14.3072
14.8133
15.3121
15.8067
16.294
16.7764
17.2515
17.7199
18.1815
18.6372
19.0869
19.5325
19.9741
20.4132
20.8498
21.2852
21.719
22.1525
22.5851
23.0175
23.4493
23.8806
24.3112
24.7415
25.1715
25.6008
26.0274
26.4568
26.8771
27.3003
27.7155
28.1302
28.5386
28.9443
29.3473
29.747
30.1472
30.5373
30.9338
31.3246
31.7189
32.1111
32.502
32.8967
33.2951
33.6945
34.0951
34.4973
34.9016
35.3077
35.7156
36.1266
36.5408
36.9613
37.3913
37.8358
38.2995
38.7868
39.3033
39.8507
40.4343
41.0548
41.7138
42.4084
43.1425
43.9187
44.7396
45.6008
46.4974
47.4235
48.3767
49.3446
50.5154
51.8656
53.0697
54.3141
55.9201
57.4509
58.9049
60.489
62.0718
63.7306
65.6483
67.7616
70.141
72.7584
75.7191
79.0249
82.6879
86.4886
90.3417
94.2004
98.3294
102.603
106.904
111.268
115.341
119.604
124.758
130.176
136.302
143.194
151.576
160.685
172.153
186.775
207.595
235.727
275.409
337.505
389.871
0.011314
0.0646344
0.177412
0.352303
0.50411
0.679192
0.849906
1.04905
1.25883
1.48946
1.72805
1.98653
2.25261
2.53661
2.8304
3.1405
3.46381
3.80176
4.15514
4.52192
4.90527
5.3021
5.71539
6.14157
6.58283
7.03618
7.50316
7.9806
8.46976
8.96771
9.4746
9.9879
10.5071
11.0295
11.555
12.0807
12.6079
13.1329
13.6579
14.1792
14.6977
15.2115
15.7199
16.2216
16.7152
17.2003
17.6767
18.1435
18.6013
19.0513
19.4951
19.9324
20.365
20.7928
21.218
21.6387
22.0576
22.4732
22.8872
23.298
23.7074
24.1138
24.5202
24.9254
25.3269
25.7317
26.1339
26.5368
26.9392
27.3404
27.7419
28.1435
28.5455
28.9516
29.3588
29.7687
30.1802
30.594
31.0131
31.4412
31.8744
32.3159
32.762
33.2119
33.6683
34.1299
34.5957
35.0643
35.5383
36.0133
36.496
36.9844
37.4842
37.9957
38.5275
39.0836
39.6708
40.2955
40.9652
41.6796
42.4482
43.2702
44.1446
45.0912
46.0953
47.1532
48.2866
49.5037
50.7738
52.1688
53.6315
55.177
56.7844
58.4548
60.2514
62.17
64.0328
65.9949
68.0737
70.2342
72.4867
74.8341
77.2561
79.839
82.5296
85.3483
88.4033
91.787
95.399
99.3644
103.422
107.678
111.759
115.774
119.538
122.649
125.756
130.316
136.051
142.901
151.177
163.999
177.964
190.475
202.633
220.744
250.98
287.056
347.678
393.938
0.0184017
0.0534281
0.168269
0.363711
0.568566
0.72989
0.923485
1.10442
1.32844
1.54435
1.79558
2.04451
2.32142
2.60122
2.90564
3.21636
3.5495
3.89066
4.25188
4.62395
5.01548
5.41789
5.83928
6.27213
6.72184
7.18189
7.65561
8.13736
8.62881
9.12655
9.63073
10.1382
10.6491
11.1601
11.6731
12.1845
12.6964
13.205
13.7134
14.2189
14.7231
15.2234
15.7199
16.211
16.6956
17.1727
17.6419
18.104
18.5578
19.0066
19.4496
19.8911
20.3289
20.7655
21.2007
21.6361
22.0715
22.5074
22.9439
23.3828
23.8243
24.2696
24.7201
25.1726
25.6314
26.0909
26.5496
27.0125
27.4621
27.9118
28.3484
28.7779
29.1937
29.6
29.9876
30.3825
30.7714
31.1641
31.5417
31.9172
32.2952
32.6871
33.074
33.4732
33.8946
34.3219
34.7626
35.2228
35.694
36.1848
36.6856
37.2083
37.7503
38.317
38.9039
39.5223
40.1791
40.8745
41.6125
42.3956
43.2331
44.1354
45.097
46.124
47.2159
48.3971
49.6424
50.9741
52.3762
53.8896
55.4359
57.0726
58.8107
60.6181
62.4789
64.4152
66.421
68.4933
70.6258
72.8425
75.1255
77.4969
79.9545
82.5417
85.337
88.266
91.421
94.8296
98.2986
101.83
105.49
109.21
112.787
116.26
119.398
122.727
126.831
132.85
140.596
150.078
161.278
175.011
187.092
198.639
210.039
227.782
256.108
297.423
352.455
386.273
0.0387814
0.0470297
0.137262
0.318545
0.557043
0.738991
0.938873
1.12373
1.34563
1.55451
1.80346
2.04023
2.31708
2.58633
2.89512
3.19809
3.53334
3.86205
4.21611
4.56728
4.9491
5.33758
5.74866
6.16679
6.61089
7.05857
7.52567
7.99595
8.4806
8.97228
9.47122
9.97422
10.4859
10.9987
11.5143
12.0319
12.5501
13.0693
13.5877
14.1063
14.6203
15.1307
15.6346
16.1317
16.6197
17.0988
17.5662
18.0242
18.4695
18.9079
19.3369
19.7574
20.1751
20.5862
20.9974
21.4016
21.8032
22.2005
22.5941
22.9869
23.3782
23.7755
24.18
24.5952
25.0089
25.4271
25.8569
26.2857
26.7189
27.1496
27.5757
28.0029
28.4304
28.8584
29.2922
29.7249
30.1407
30.5637
31.0171
31.4673
31.9455
32.4171
32.9125
33.4078
33.9166
34.4256
34.9416
35.4609
35.9742
36.498
37.0121
37.5455
38.057
38.5975
39.1543
39.7426
40.3649
41.0402
41.756
42.5371
43.39
44.2891
45.2573
46.3041
47.413
48.6103
49.8779
51.2355
52.6554
54.1546
55.7171
57.3649
59.0732
60.8638
62.7122
64.6117
66.5652
68.544
70.5718
72.6207
74.7286
76.8686
79.0999
81.4172
83.8539
86.4909
89.2614
92.3243
95.6656
98.9592
102.086
105.465
108.765
112.499
116.463
121.217
126.637
133.337
141.723
152.42
164.765
175.457
184.04
193.407
203.761
223.488
245.712
293.872
349.964
388.789
0.0703247
0.0775005
0.11137
0.283854
0.532108
0.747706
0.990894
1.20133
1.46808
1.68639
1.96378
2.19975
2.4996
2.78346
3.13972
3.48627
3.86834
4.20783
4.56179
4.89614
5.23836
5.61435
6.00674
6.39899
6.82985
7.27553
7.72727
8.18116
8.63956
9.10495
9.56719
10.0315
10.5026
10.9737
11.4501
11.925
12.4034
12.8778
13.3555
13.836
14.3206
14.7964
15.2752
15.7471
16.2176
16.6808
17.142
17.5972
18.0452
18.4883
18.9249
19.3636
19.7952
20.2211
20.6423
21.0634
21.4939
21.9247
22.3613
22.81
23.277
23.7645
24.2905
24.8426
25.4734
26.0228
26.6218
27.184
27.7331
28.2832
28.7969
29.309
29.7929
30.2685
30.6996
31.1206
31.4894
31.863
32.1031
32.3975
32.6458
32.9191
33.2134
33.5355
33.8758
34.2522
34.6451
35.1247
35.6012
36.135
36.6871
37.2698
37.9038
38.5825
39.3128
40.1225
40.9743
41.8873
42.8425
43.8337
44.8829
45.9679
47.128
48.3405
49.6144
50.9674
52.4071
53.9127
55.5568
57.2618
59.1226
61.0035
63.0055
65.0469
67.1723
69.3158
71.4924
73.635
75.8519
78.0822
80.2768
82.5414
84.7705
87.0052
89.2492
91.6969
94.2312
96.8874
99.9247
103.546
107.025
110.366
113.63
116.797
120.267
123.959
127.955
133.064
139.017
147.057
155.606
165.978
176.661
190.277
202.955
222.741
244.284
289.216
357.486
404.25
0.110663
0.157602
0.146056
0.306577
0.535628
0.812773
1.1001
1.33387
1.59572
1.79086
2.02944
2.26342
2.63647
2.99624
3.41271
3.79237
4.14083
4.39551
4.56167
4.66317
4.89377
5.2848
5.53787
5.76981
6.13932
6.62101
7.00878
7.3984
7.93342
8.48103
8.97211
9.51474
10.1169
10.6244
11.1284
11.6201
12.068
12.4887
12.8943
13.2929
13.6801
14.0764
14.4834
14.8918
15.2983
15.7092
16.1094
16.4973
16.878
17.2508
17.6006
17.9362
18.246
18.5435
18.7901
19.0051
19.2273
19.4648
19.7136
19.9452
20.2386
20.5698
20.9858
21.456
21.9576
22.5336
23.1931
23.8569
24.5594
25.2836
26.0592
26.8131
27.5387
28.3051
28.9834
29.6397
30.1103
30.5906
31.0397
31.4925
31.9524
32.3803
32.7724
33.131
33.4648
33.7884
34.0898
34.3969
34.6686
34.8929
35.1527
35.3677
35.6213
35.8536
36.2153
36.645
37.271
37.9964
38.6877
39.6715
40.6432
41.5751
42.6228
43.5971
44.4919
45.5051
46.5637
47.6711
48.8325
50.0115
51.3851
52.7591
54.3758
56.0775
57.9495
59.9926
62.1645
64.4007
66.6046
68.8258
71.2117
73.6588
76.4953
79.411
82.4843
84.8751
87.0248
89.185
91.1708
94.0912
98.7756
102.961
107.418
112.285
117.37
122.484
127.526
133.924
140.193
147.885
153.991
163.757
172.73
187.325
202.111
229.653
264.989
327.099
413.186
471.307
0.149409
0.253717
0.224826
0.456566
0.670823
1.05131
1.37465
1.73347
1.98388
2.20262
2.35532
2.56034
2.86832
3.40535
4.08974
4.6484
4.99316
5.18574
4.98382
4.8932
5.09323
5.32473
5.61929
5.87232
6.08407
6.36614
6.73024
7.03003
7.37935
7.81726
8.24131
8.69387
9.22178
9.71371
10.2128
10.7152
11.18
11.6444
12.1177
12.5417
12.9546
13.357
13.7128
14.0569
14.4101
14.7497
15.0954
15.4362
15.7677
16.0898
16.4374
16.8127
17.1974
17.5907
17.9978
18.4737
19.0139
19.5706
20.1497
20.7716
21.503
22.3642
23.3242
24.3576
25.4074
26.4065
27.157
27.6306
28.0825
28.6448
29.2233
29.7111
30.4416
31.2072
31.8626
32.3519
32.3771
32.2308
31.8333
31.3431
31.0378
30.8854
30.934
31.0855
31.3112
31.6285
32.055
32.5506
33.0505
33.6331
34.3621
35.0701
36.0343
37.2208
37.9791
38.45
38.7244
38.6592
38.9949
39.5426
40.7091
42.2462
43.8203
45.0631
45.8328
46.5861
47.4484
48.5733
50.0858
52.1042
54.0005
55.6975
57.3414
59.6138
63.0885
67.3202
71.4414
74.3431
76.35
77.9061
79.0938
81.5762
85.3479
89.8467
93.519
95.5505
96.4737
94.8868
92.0233
91.76
95.0341
102.05
112.031
124.657
135.526
142.387
147.578
154.166
163.455
171.809
179.109
187.76
200.824
217.378
235.823
268.782
321.029
390.304
471.086
511.329
)
;
value nonuniform List<scalar>
2250
(
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
100837
)
;
}
}
// ************************************************************************* //
|
|
09af6682842451baecf39bf7cf0924c565df9271
|
d21c3427800f8dd1fcbf34cd2768a65fdcae3a27
|
/code/cytosim/src/math/matrixbase.h
|
974426046f340d9a9992cad05e4bd589fde1bc64
|
[] |
no_license
|
manulera/LeraRamirez2019
|
b4e5637b76b988e3ae32177e7e894f85f9b6e109
|
bc42559d500d6e3270d1e8ab0e033a9e980b5e48
|
refs/heads/master
| 2023-02-12T22:56:05.410164
| 2021-01-13T10:10:24
| 2021-01-13T10:10:24
| 329,267,089
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,492
|
h
|
matrixbase.h
|
// Cytosim was created by Francois Nedelec. Copyright 2007-2017 EMBL.
#ifndef MATRIX_BASE
#define MATRIX_BASE
#include "real.h"
#include "smath.h"
#include "assert_macro.h"
#include <iostream>
#include <iomanip>
class Random;
/// Fortran-style matrices of small dimensions: 1, 2 and 3
/**
Square matrices of small dimensions that can be used to represent
transformations over the Vector space.
The matrice's elements are stored in a one dimensional array in column major order.
*/
template < unsigned SZ >
class MatrixBase
{
public:
/// the array of value, column-major
real val[SZ*SZ];
public:
/// The default creator does not initialize
MatrixBase() {}
/// The default destructor does nothing
virtual ~MatrixBase() {}
/// Copy-creator from a C-style array
MatrixBase(real v[SZ][SZ])
{
for ( unsigned i=0; i<SZ; ++i )
for ( unsigned j=0; j<SZ; ++j )
val[i + SZ * j] = v[i][j];
}
/// Copy-creator from a Fortran-style array
MatrixBase(real v[SZ*SZ])
{
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
val[ii] = v[ii];
}
/// set all components to zero
void makeZero()
{
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
val[ii] = 0;
}
/// set to Diagonal matrix with 'x' on diagonal
void makeDiagonal(real x)
{
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
val[ii] = 0;
for ( unsigned ii = 0; ii < SZ*SZ; ii += SZ+1 )
val[ii] = x;
}
/// set to Identity (ones on the diagonal, zero elsewhere)
void makeOne()
{
makeDiagonal(1.0);
}
/// conversion to a modifiable real array
real* data()
{
return val;
}
/// access to modifiable elements of the matrix by (line, column)
real& operator()(const unsigned ii, const unsigned jj)
{
return val[ii + SZ * jj];
}
/// access to modifiable elements of the matrix by (line, column)
real const& operator()(const unsigned ii, const unsigned jj) const
{
return val[ii + SZ * jj];
}
/// access to modifiable elements by index in the array
real& operator[](const unsigned ii)
{
return val[ii];
}
/// constant reference to element in array
const real& operator[](const unsigned ii) const
{
return val[ii];
}
#if ( 0 )
/// extract column vector at index `jj`
void getColumn(const unsigned jj, real vec[SZ]) const
{
const real * v = val + jj * SZ;
for ( unsigned ii = 0; ii < SZ; ++ii )
vec[ii] = v[ii];
}
/// set column vector at index `jj`
void setColumn(const unsigned jj, const real vec[SZ])
{
real * v = val + jj * SZ;
for ( unsigned ii = 0; ii < SZ; ++ii )
v[ii] = vec[ii];
}
/// extract line vector at index `ii`
void getLine(const unsigned ii, real vec[SZ]) const
{
const real * v = val + ii;
for ( unsigned jj = 0; jj < SZ; ++jj )
vec[jj] = v[SZ*jj];
}
/// set line vector at index `ii`
void setLine(const unsigned ii, const real vec[SZ])
{
real * v = val + ii;
for ( unsigned jj = 0; jj < SZ; ++jj )
v[SZ*jj] = vec[jj];
}
#endif
/// return the transposed matrix
MatrixBase transposed() const
{
MatrixBase res;
for ( unsigned ii = 0; ii < SZ; ++ii )
for ( unsigned jj = 0; jj < SZ; ++jj )
res.val[ii + SZ*jj] = val[jj + SZ*ii];
return res;
}
/// transpose this matrix
void transpose()
{
real x;
for ( unsigned ii = 0; ii < SZ; ++ii )
for ( unsigned jj = 0; jj < ii; ++jj )
{
x = val[ii + SZ*jj];
val[ii + SZ*jj] = val[jj + SZ*ii];
val[jj + SZ*ii] = x;
}
}
/// maximum of all fabs(element)
real maxNorm() const
{
real res = 0;
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
{
if ( fabs( val[ii] ) > res )
res = fabs( val[ii] );
}
return res;
}
/// formatted output
void write(std::ostream & os) const
{
os.precision(4);
for ( unsigned ii = 0; ii < SZ; ++ii )
{
for ( unsigned jj = 0; jj < SZ; ++jj )
os << " " << std::setw(10) << val[ii+SZ*jj];
os << std::endl;
}
}
/// calculate a distance to the subspace of rotations = maxNorm( M'*M - Id )
real maxDeviationFromRotation() const
{
MatrixBase mm = transposed() * (*this);
for ( unsigned ii = 0; ii < SZ; ++ii )
mm( ii, ii ) -= 1.0;
return mm.maxNorm();
}
/// returns the matrix multiplied by a real scalar
friend MatrixBase operator * (const MatrixBase & a, const real b)
{
MatrixBase res;
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
res.val[ii] = a.val[ii] * b;
return res;
}
/// opposition: change sign in all coordinates
MatrixBase operator - () const
{
MatrixBase res;
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
res.val[ii] = -val[ii];
return res;
}
/// returns the matrix multiplied by the real scalar a
friend MatrixBase operator * (const real a, const MatrixBase & b)
{
MatrixBase res;
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
res.val[ii] = a * b.val[ii];
return res;
}
/// multiply the matrix by the real scalar a
void operator *= (const real a)
{
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
val[ii] *= a;
}
/// divide the matrix by the real scalar a
void operator /= (const real a)
{
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
val[ii] /= a;
}
/// add matrix m
void operator += (const MatrixBase m)
{
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
val[ii] += m.val[ii];
}
/// subtract matrix m
void operator -= (const MatrixBase m)
{
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
val[ii] -= m.val[ii];
}
/// add two matrices and return the result
friend MatrixBase operator + (const MatrixBase & a, const MatrixBase & b)
{
MatrixBase res;
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
res.val[ii] = a.val[ii] + b.val[ii];
return res;
}
/// substract two matrices and return the result
friend MatrixBase operator - (const MatrixBase & a, const MatrixBase & b)
{
MatrixBase res;
for ( unsigned ii = 0; ii < SZ*SZ; ++ii )
res.val[ii] = a.val[ii] - b.val[ii];
return res;
}
/// multiply two matrices and return the result
friend MatrixBase operator * (const MatrixBase & a, const MatrixBase & b)
{
MatrixBase res;
for ( unsigned ii = 0; ii < SZ; ++ii )
for ( unsigned jj = 0; jj < SZ; ++jj )
{
real x = a.val[ii] * b.val[SZ*jj];
for ( unsigned kk = 1; kk < SZ; ++kk )
x += a.val[ii+SZ*kk] * b.val[kk+SZ*jj];
res.val[ii+SZ*jj] = x;
}
return res;
}
/// Vector multiplication: out <- M * in
void vecMul(const real* in, real* out) const
{
for ( unsigned ii = 0; ii < SZ; ++ii )
{
real x = val[ii] * in[0];
for ( unsigned jj = 1; jj < SZ; ++jj )
x += val[ii + SZ*jj] * in[jj];
out[ii] = x;
}
}
/// Vector multiplication: vec <- M * vec
void vecMul(real* vec) const
{
real copy[SZ];
for ( unsigned ii = 0; ii < SZ; ++ii )
copy[ii] = vec[ii];
vecMul(copy, vec);
}
//------------------------------- STATIC ----------------------------------------
/// return identity matrix (ones on the diagonal, zero elsewhere)
static MatrixBase one()
{
MatrixBase res;
res.makeDiagonal(1.0);
return res;
}
/// return zero matrix
static MatrixBase zero()
{
MatrixBase res;
res.makeZero();
return res;
}
/// build the rotation matrix `M = 2 V * V' - 1`
/**
This sets a rotation of determinant +1, under which 'V' is invariant
The plane orthogonal to 'V' is rotated by PI.
*/
static MatrixBase householder(const real V[])
{
MatrixBase res;
for ( unsigned ii = 0; ii < SZ; ++ii )
for ( unsigned jj = 0; jj < SZ; ++jj )
res.val[ii+SZ*jj] = 2.0 * V[ii] * V[jj] - ( ii == jj );
return res;
}
/// build the projection matrix `M = 1 - V (x) V`
/**
This sets a projection on the plane perpendicular to 'V'.
*/
static MatrixBase projection(const real V[])
{
MatrixBase res;
for ( unsigned ii = 0; ii < SZ; ++ii )
for ( unsigned jj = 0; jj < SZ; ++jj )
res.val[ii+SZ*jj] = 1.0 - V[ii] * V[jj];
return res;
}
};
/// output
template < unsigned SZ >
inline std::ostream& operator << (std::ostream& os, const MatrixBase<SZ>& mat)
{
mat.write(os);
return os;
}
#endif
|
6dbfcf598b1b86cd1fb812ef49aa2c526d784013
|
f6602796607fdbe2286dad795090aad7e4e89312
|
/dragonpoop_alpha/dragonpoop/core/dpmutex/dpmutex_writelock.cpp
|
5eef5b9c9b1aa04f015b60e015f69375457d64fb
|
[] |
no_license
|
rvaughn4/dragonpoop_alpha
|
a38ffde088a35d7c43a0e96480fd99ac2e2794a9
|
5a516c21749a63c951cb19c75f6325b9af484d4e
|
refs/heads/master
| 2020-04-05T22:51:38.273761
| 2016-01-20T09:54:11
| 2016-01-20T09:54:11
| 39,721,963
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 347
|
cpp
|
dpmutex_writelock.cpp
|
#include "dpmutex_writelock.h"
namespace dragonpoop
{
//ctor
dpmutex_writelock::dpmutex_writelock( dpmutex *m ) : dpmutex_lock( m )
{
}
//dtor
dpmutex_writelock::~dpmutex_writelock( void )
{
}
//returns true if write lock
bool dpmutex_writelock::isWriteLock( void )
{
return 1;
}
};
|
d2a350507533fe8e5e927663c68ea18ae30c7ac8
|
f3a69d6bc8a63fcce3dda89533ed4b70546b6a20
|
/main.cpp
|
8daff0ebfac44d74ad9d4c4a06d5cfbfa9a9f7af
|
[] |
no_license
|
tianhe712/2SecKeyServer
|
9c66b4fa328f86eed19b2c05c85d557c9de9d6ff
|
d7352ca6d22404345e3bb2847e95aa82e8272f74
|
refs/heads/master
| 2020-06-19T19:06:39.264470
| 2019-07-14T14:14:51
| 2019-07-14T14:14:51
| 196,837,079
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 794
|
cpp
|
main.cpp
|
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstring>
#include "ServerOperation.h"
using namespace std;
//密钥协商服务端
int main() {
ServerInfo info;
//1. 从配置文件中读取服务端配置信息
memset(&info, 0, sizeof(info));
strcpy(info.serverId, "1111");
strcpy(info.dbUser, "SECMNG");
strcpy(info.dbPasswd, "SECMNG");
strcpy(info.dbSid, "orcl");
info.sPort = 10086;
info.maxNode = 20;
info.shmKey = 0x55;
//2. 构造密钥协商服务端对象
ServerOperation serverOperation(&info);
//3. 启动密钥协商服务端
serverOperation.startWork();
//4. xxxx
cout << "hello server" << endl;
system("pause");
std::cout << "Hello, 服务器开始World!" << std::endl;
return 0;
}
|
b609cc83aae13f60068919710798568d06cd5b4b
|
67d46d972d59e715f67de1b69ee2f6ca802d478d
|
/AliceLibrary/source/UI/UI.cpp
|
f5fe43e217484faef4f93c51c7e5f148fa8fcd76
|
[] |
no_license
|
kaosu7201/AliceGame
|
b8212d74c9d61cc3cd57c2bc4b50b90f3c437957
|
fcc05f4860645836e5554644b3b1eb772d0879fa
|
refs/heads/master
| 2022-02-23T12:25:56.030451
| 2019-07-19T08:54:22
| 2019-07-19T08:54:22
| 197,704,336
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 554
|
cpp
|
UI.cpp
|
#include "UI.h"
UserInterface::UserInterface()
{
}
UserInterface::~UserInterface()
{
}
UICampus::UICampus()
{
}
UICampus::~UICampus()
{
}
void UICampus::Start()
{
ApplicationBase *appBase = ApplicationBase::GetInstance();
Setpivot(0, 0);
RECT rect;
rect.left = 0;
rect.top = 0;
rect.right = appBase->DispSizeW();
rect.bottom = appBase->DispSizeH();
SetCampusRect(rect);
}
void UICampus::UpDate()
{
Draw();
}
void UICampus::Draw()
{
for (auto itr = UIList.begin(), end_ = UIList.end(); itr != end_; itr++) {
(*itr)->Draw();
}
}
|
d23447eedc85b6a895e1788fbaded0d4bf8b8a30
|
83999abe709487485ba1fb69c65392752b15c9fb
|
/strings.cpp
|
80aec7069db0b44f3a4ba340d5bbdaed91bce4a9
|
[] |
no_license
|
Nirbhay007/gfg-problems
|
90aacbd05683761eb2581a09a345dded89366d6b
|
24d3ccee73f824c4e12314c5a3d4172fb0ae86aa
|
refs/heads/main
| 2023-06-16T07:11:27.101017
| 2021-07-06T10:07:22
| 2021-07-06T10:07:22
| 378,103,497
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,015
|
cpp
|
strings.cpp
|
#include <bits/stdc++.h>
using namespace std;
//program to count each character in the order they come
void count(string s)
{
int letter[26] = {0};
for (int i = 0; i < s.length(); i++)
{
letter[s[i] - 'a']++;
}
for (int i = 0; i < 26; i++)
{
if (letter[i] > 0)
{
cout << char(i + 'a') << " " << letter[i] << " ";
}
}
}
int main()
{
count("geeksforgeeks");
//using strcmp
char str1[] = "aa";
char str2[] = "abc";
int res = strcmp(str1, str2);
if (res == 0)
{
cout << "same" << endl;
}
else if (res > 0)
{
cout << "Greater" << endl;
}
else
{
cout << "smaller";
}
//using strcpy to copy strings after undeclared initialization of any string
char str[13];
strcpy(str, "nirbhaysingh");
cout << str << endl;
cout << strlen(str) << endl;
string s1 = "abcd";
string s2 = "xyz";
if (s1 > s2)
{
cout << "Greater" << endl;
}
else if (s1 == s2)
{
cout << "equal" << endl;
}
else
{
cout << "smaller" << endl;
}
for (auto x : s1)
{
cout << x << endl;
}
}
|
5864178b8ebc4c92c2850e04d7da6e718f0d23af
|
7f7ab1c74123a6d356b3f0b39e6185cd056e409a
|
/Innokentiy.ino
|
5abc0576c345f1eba2b4fa8e878fc53c02925a07
|
[] |
no_license
|
Andreyyes/Innokentiy
|
8abeecf6c7017b0ba03cc4797c0229ec03b78f10
|
14e6a928a8e57895add5c9ed8b0cdbed899ad866
|
refs/heads/master
| 2020-03-19T00:41:35.103555
| 2018-05-31T08:56:36
| 2018-05-31T08:56:36
| 135,496,856
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,783
|
ino
|
Innokentiy.ino
|
#include <Adafruit_NeoPixel.h>
#include <SBUS.h>
#include <Servo.h>
#include <Wire.h>
#include "core.h"
#include "constants.h"
//#include <Thread.h>
Servo servoTiltClav;
Servo servoTorisonClav;
Servo servoManipulator;
Servo servoSensor;
int servo[4] = {SERV_MID_MANI, SERV_MID_DAT, SERV_MID_TILT, SERV_MID_TORISON};
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(9, 22, NEO_GRB + NEO_KHZ800);
SBUS sbus(Serial3);
int flagTypeControl;
//масивы которые будут передаваться по телеметрии
byte REG_ArrayCD[16] = {0x1, 0xCD, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
byte REG_ArrayAB[16] = {0x1, 0xAB, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
//пины мотора манипулятора
int pwmLpin[2] = {2, 3};
int inPin[2] = {24, A11};//26
//пины моторов
int inApin[2] = {7, 4};
int inBpin[2] = {8, 9};
int pwmpin[2] = {5, 6};
//пины дольномеров
uint8_t usRangePin[3][2] = {{40, 38}, {A14, A15}, {A12, A13}};
uint8_t ikRangePin[3] = {A8, A9, A10};
//Пин управления поливом
uint8_t waterPin = 50;
int cnt = 0;
byte flagSensorLine;
/*=================================ИНИЦИАЛИЗАЦИЯ=========================================*/
void setup()
{
pixels.begin();
colorWipe(pixels.Color(255, 0, 0));
pixels.show();
Wire.begin(0x04);
Wire.onRequest(requestEvent);
sbus.begin();
//Serial.begin(115200);
coreSetup();
registerHandleSerialKeyValue(&handleSerialKeyValue);
registerHandleSerialCmd(&handleSerialCmd);
pinMode(waterPin, OUTPUT);//Пин полива
digitalWrite(waterPin, LOW);
for (int i = 0; i < 3; i++) {
pinMode(usRangePin[i][0], OUTPUT);//trig
pinMode(usRangePin[i][1], INPUT);//echo
}
for (int i = 0; i < 2; i++) {
pinMode(pwmLpin[i], OUTPUT);
pinMode(inPin[i], OUTPUT);
digitalWrite(inPin[i], LOW);
}
for (int i = 0; i < 2; i++) {
pinMode(inApin[i], OUTPUT);
pinMode(inBpin[i], OUTPUT);
pinMode(pwmpin[i], OUTPUT);
}
for (int i = 0; i < 2; i++)
{
digitalWrite(inApin[i], LOW);
digitalWrite(inBpin[i], LOW);
}
for (int i = 0; i < 3; i++)
{
pinMode(ikRangePin[i], INPUT);
}
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 2; j++)
{
pinMode(usRangePin[i][j], INPUT);
}
}
//servoTiltClav.attach(16);
//servoTorisonClav.attach(17);
//servoManipulator.attach(18);
//servoSensor.attach(19);
servoTiltClav.attach(28);
servoTorisonClav.attach(32);
servoManipulator.attach(34);
servoSensor.attach(36);
servoTiltClav.writeMicroseconds(SERV_MID_TILT);
servoTorisonClav.writeMicroseconds(1300);
servoManipulator.writeMicroseconds(SERV_MID_MANI);
//servoSensor.writeMicroseconds(SERV_MID_DAT);
servoSensor.writeMicroseconds(1943);
colorWipe(pixels.Color(0, 255, 0));
pixels.show();
}
bool flagSBUS = false;
ISR(TIMER2_COMPA_vect)
{
flagSBUS = true;
}
int camCount = 0;
#define SCAN_STOP 0
#define SCAN_WORK 1
uint16_t scanMicroseconds = SERV_MID_MANI;
uint16_t scanState = SCAN_STOP;
void handleSerialKeyValue(String key, String value) {
if ((key == "angle")&&(scanState == SCAN_WORK)) {
int16_t angle = value.toInt();
angle = constrain(angle, -90, 155);
uint16_t microseconds = map(angle, -90, 155, 550, 2400);
Serial.print("Microseconds: ");
Serial.println(microseconds);
servoManipulator.writeMicroseconds(microseconds);
}
}
void handleSerialCmd(String cmd) {
}
/*=================================ГЛАВНЫЙ ЦИКЛ=========================================*/
void loop()
{
coreLoop();
telemPutIntAB(YAW,flagSensorLine);
if (flagSBUS) {
flagSBUS = false;
sbus.process();
}
int left = digitalRead(41);
int bLeft = digitalRead(43);
int mid = digitalRead(45);
int bRight = digitalRead(47);
int right = digitalRead(49);
telemPutBitsCD(LATI, left, bLeft, mid, bRight, right, 0);
switchCam();
int kleshnyaSzatie = printSBUSStatus(SV_C);
if (abs(kleshnyaSzatie) > 260) kleshnyaSzatie = 0;
motorLGo(0, kleshnyaSzatie * (-1));
//управление манипулятором и остановка моторов
if (printSBUSStatus(SV_F) > 0) {
motorOff(0);
motorOff(1);
setServo270(servoTorisonClav, printSBUSStatus(RSH)* (-1), 3, SERV_MAX_TORISON, SERV_MIN_TORISON);
setServo270(servoTiltClav, printSBUSStatus(LSW), 2, SERV_MAX_TILT, SERV_MIN_TILT);
if (printSBUSStatus(SV_B) < 0) {
if (scanState == SCAN_STOP) {
Serial1.print("?startscan\n");
scanState = SCAN_WORK;
}
} else {
if (scanState == SCAN_WORK) {
Serial1.print("?stopscan\n");
scanState = SCAN_STOP;
}
setServo270(servoManipulator, printSBUSStatus(RSW), 0, SERV_MAX_MANI, SERV_MIN_MANI);
}
motorLGo(1, printSBUSStatus(LSH));//наклон маниаулятора
if (printSBUSStatus(SV_A) < 0) {
digitalWrite(waterPin, HIGH);
} else {
digitalWrite(waterPin, LOW);
}
return;
} else {
flagTypeControl = setFlagTypeControl();
}
if (flagTypeControl == MOD_MOVE) {
routeMove();
setServo270(servoTorisonClav, printSBUSStatus(LSH)* (-1), 2, SERV_MAX_TILT, SERV_MIN_TILT);
//setServo270(servoManipulator, printSBUSStatus(LSW), 0, SERV_MAX_MANI, SERV_MIN_MANI);
return;
}
if (flagTypeControl == MOD_TANK) {
motorGo(0, printSBUSStatus(LSH));
motorGo(1, printSBUSStatus(RSH));
return;
}
if ((flagTypeControl == MOD_RIGHT) || (flagTypeControl == MOD_LEFT)) {
rangeRan(100, printSBUSStatus(SV_A) > 0, printSBUSStatus(SV_B) > 0);//тип датчика и какая сторона
return;
}
if ((flagTypeControl == MOD_TOP) || (flagTypeControl == MOD_DOWN)) {
line(100);
//setServo270(servoSensor, flagTypeControl == 60, 1, SERV_MAX_DAT, SERV_MIN_DAT);
if (flagTypeControl == MOD_TOP) {
servoSensor.writeMicroseconds(SERV_MAX_DAT);
flagSensorLine = 100;
} else {
servoSensor.writeMicroseconds(SERV_MIN_DAT);
flagSensorLine = 200;
}
return;
}
}
/*=================================ТЕЛЕМЕТРИЯ=========================================*/
//телеметрия LATI и LONG
void telemPutBitsCD(byte regNum, byte b0, byte b1, byte b2, byte b3, byte b4, byte b5) {
long rez = b0 * 1000000 + b1 * 100000 + b2 * 10000 + b3 * 1000 + b4 * 100 + b5 * 10;
telemPutLongCD(regNum, rez);
}
void telemPutLongCD(byte regNum, long value) {
REG_ArrayCD[regNum] = value >> 24;
REG_ArrayCD[regNum + 1] = value >> 16;
REG_ArrayCD[regNum + 2] = value >> 8;
REG_ArrayCD[regNum + 3] = value;
}
void telemPutIntAB (int regNum, int value) {
REG_ArrayAB[regNum] = value >> 8;
REG_ArrayAB[regNum + 1] = value;
}
void telemPutIntCD (int regNum, int value) {
REG_ArrayCD[regNum] = value >> 8;
REG_ArrayCD[regNum + 1] = value;
}
//установить значение телеметрии
void telemPutGPS(byte value) {
REG_ArrayAB[GPS] = value;
REG_ArrayCD[GPS] = value;
}
//прерывание передача телеметрии
bool flagArray = false;
void requestEvent()
{
if (flagArray) {
for (int i = 0; i < 16; i++) {
Wire.write(REG_ArrayAB[i]);
}
} else {
for (int i = 0; i < 16; i++) {
Wire.write(REG_ArrayCD[i]);
}
}
flagArray = !flagArray;
}
/*====================================SBUS===========================================*/
//принятие сигнала с пульта от -255 до 255
float printSBUSStatus(int n)
{
float z = sbus.getChannel(n);
z = (z - 999.5) / 2.73;
return z;
}
/*====================================СЕРВО===========================================*/
void setServo270(Servo s, int n, int num, int servMax, int servMin) {
cnt++;
if (cnt > 40) {
cnt = 0;
if ((n < 15) && (n > -15)) {
n = 0;
} else {
servo[num] = servo[num] + prSpeed(n) / 3;
if (servo[num] > servMax) {
servo[num] = servMax;
} else if (servo[num] < servMin) {
servo[num] = servMin;
}
s.writeMicroseconds(servo[num]);
}
}
}
/*====================================ДАТЧИКИ===========================================*/
//определение дистанции n-ого ультрозвукового дальномера
int range(int n) {
//int duration, cm;
digitalWrite(usRangePin[n][0], LOW);
delayMicroseconds(2);
digitalWrite(usRangePin[n][0], HIGH);
delayMicroseconds(10);
digitalWrite(usRangePin[n][0], LOW);
return round(pulseIn(usRangePin[n][1], HIGH) / 58);
}
int ikRange(int n) {
int z = analogRead(ikRangePin[n]);
return z;//65*pow(z*0.0048828125, -1.10);
}
/*====================================МОТОРЫ===========================================*/
//функция установки скорости мотороа motor - номер мотора, pwm - скорость (отрицательная в обратную сторону)
void motorGo(int motor, int pwm)
{
if (pwm == 0) {
motorOff(motor);
return;
}
if (pwm < 0) {
digitalWrite(inApin[motor], HIGH);
digitalWrite(inBpin[motor], LOW);
} else {
digitalWrite(inApin[motor], LOW);
digitalWrite(inBpin[motor], HIGH);
}
analogWrite(pwmpin[motor], abs(prSpeed(pwm)));
if (motor == 0) {telemPutIntAB(SPEED, pwm);} else
{telemPutIntCD(RISE, pwm);}
}
//функция остановки мотороа true - плавное false - резкое
void motorOff(int motor)
{
boolean f;
if (printSBUSStatus(SV_B) > 0) {
f = HIGH;
} else {
f = LOW;
}
digitalWrite(inApin[motor], f);
digitalWrite(inBpin[motor], f);
analogWrite(pwmpin[motor], 0);
}
//движение мотора на манипуляторе
void motorLGo(int motor, int pwm)
{
if (abs(pwm) > 100) {
if (pwm > 0) {
digitalWrite(inPin[motor], HIGH);
} else {
digitalWrite(inPin[motor], LOW);
}
} else {
pwm = 0;
};
analogWrite(pwmLpin[motor], abs(pwm));
}
/*====================================АВТОМАТИКА===========================================*/
//движение на определённой дистанции true - ультразуковый false - инфакрасные
int d;
boolean sFlag;
void rangeRan(byte sp, boolean typeR, int dist) {
int left;
int right;
int mid;
if (/*typeR*/false) {
left = range(1);
right = range(2);
mid = range(0);
} else {
left = ikRange(1);
right = ikRange(0);
mid = ikRange(2);
right = (900 - right);
mid = (900 - mid);
left = (900 - left);
}
telemPutIntAB(ROLL, left);
telemPutIntAB(PITC, mid);
telemPutIntAB(DIST, right);
telemPutIntAB(ALT, d);
if (dist) {
motorOff(1);
motorOff(0);
if (left > right) {
d = right;
sFlag = true;
telemPutLongCD(LONG, 110);
//telemPutBitsCD(LONG, 0,0,0,0,1,1);
} else {
d = left;
sFlag = false;
telemPutLongCD(LONG, 1100000);
//telemPutBitsCD(LONG, 1,1,0,0,0,0);
}
return;
}
int coeff = 1;
int e = (d - right);
if (sFlag) {
if (e > 0) {
motorGo(0, sp);
motorGo(1, sp + abs(e) * coeff);
} else {
motorGo(0, sp + abs(e) * coeff);
motorGo(1, sp);
}
} else {
if (e < 0) {
motorGo(0, sp);
motorGo(1, sp + abs(e) * coeff);
} else {
motorGo(0, sp + abs(e) * coeff);
motorGo(1, sp);
}
}
}
//функция движения по линии
void line(byte sp) {
int right = digitalRead(41);
int bRight = digitalRead(43);
int mid = digitalRead(45);
int bLeft = digitalRead(47);
int left = digitalRead(49);
telemPutBitsCD(LATI, left, bLeft, mid, bRight, right, 0);
if (left == right) {
motorGo(0,120);
motorGo(1,100);
return;
}else
if (left == mid){
motorGo(1,255);
motorGo(0,-255);
} else {
motorGo(1,-255);
motorGo(0,255);
}
}
/*====================================УПРАВЛЕНИЕ_ПУЛЬТ===========================================*/
//функция управления движением с одного стика
void routeMove() {
int f = printSBUSStatus(RSH);
int d = printSBUSStatus(RSW);
int ml = f;
int mr = f;
if (d >= 0) {
ml = ml - d;
mr = mr + d;
} else {
d = abs(d);
mr = mr - d;
ml = ml + d;
}
if (mr > 255) {
mr = 255;
}
if (ml > 255) {
ml = 255;
}
motorGo(0, ml);
motorGo(1, mr);
}
/*====================================КАМЕРА===========================================*/
void switchCam() {
int stat = printSBUSStatus(SV_G);
//if (stat != camStatus) {
byte camPin[2] = {0, 0};
if (stat < 30 && stat > -30) {
camPin[0] = 1;
} else {
if (stat > 0) {
camPin[1] = 1;
}
}
digitalWrite(53, camPin[0]);
digitalWrite(51, camPin[1]);
}
/*=======================================СВЕТОДИОДЫ========================================*/
void colorWipe(uint32_t c) {
for (uint16_t i = 0; i < pixels.numPixels(); i++) {
pixels.setPixelColor(i, c);
pixels.show();
}
}
/*=======================================ОБЩИЕ========================================*/
float prSpeed(float n) {
float z = sbus.getChannel(SV_BR);
z = (abs((z - 306))) / 1388;
return round(z * n);
}
int setFlagTypeControl() {
int type = printSBUSStatus(SV_A);
if ( type < -204) {
return MOD_TOP;
}
if (type >= -204 && type < -100) {
return MOD_MOVE;
}
if (type >= -100 && type < 0) {
return MOD_RIGHT;
}
if (type >= 0 && type < 100) {
return MOD_DOWN;
}
if (type >= 100 && type < 204) {
return MOD_TANK;
}
if (type >= 204) {
return MOD_LEFT;
}
}
|
5ba81f126610a135d8f8b0012e0daaf22e028814
|
c5d4ea4ee10be688c02b26f27b33247b5c0b7dcf
|
/sources/Utilities/file_save_dispatcher.cpp
|
666c889ce22b69e6bda3e5c865821cde2b4c2709
|
[] |
no_license
|
shotaYNU/GraphLibrary
|
cbac9ee6b4f6b3931b48593d51cd75f28b666a74
|
047122e8559430c62f60ed8e9cce5c8569d0aa08
|
refs/heads/panel
| 2020-06-13T16:56:37.544108
| 2017-02-12T11:55:41
| 2017-02-12T11:55:41
| 75,709,753
| 0
| 0
| null | 2017-02-12T11:55:42
| 2016-12-06T08:15:06
|
C++
|
UTF-8
|
C++
| false
| false
| 543
|
cpp
|
file_save_dispatcher.cpp
|
#include "file_save_dispatcher.hpp"
FileSaveDispatcher::FileSaveDispatcher()
{
saveDirectoryPath = "";
commonName = "";
currentSaveNums = 0;
}
FileSaveDispatcher::~FileSaveDispatcher()
{
}
void FileSaveDispatcher::save(string _data)
{
ofstream outfile(saveDirectoryPath + "/" + commonName + to_string(currentSaveNums++) + ".json");
outfile << _data;
outfile.close();
}
void FileSaveDispatcher::save(string _filePath, string _data)
{
ofstream outfile(_filePath);
outfile << _data;
outfile.close();
}
|
1d6ef02d09529672b17909b0fd1b6b258f4ef869
|
b7860e4ce7e9de3c2fa4682392683a39ea3766db
|
/First idea/articleediteur.cpp
|
d1e21f3d7b6614cc175cfb110bfa95a2363f407a
|
[] |
no_license
|
AlexandreMazgaj/Note_Taking_software_using_Qt
|
3e1f8dc99253d03adb258de68c62777fc4ec6d75
|
351de1d5398f09c5fab8700d07fb40a810e60093
|
refs/heads/master
| 2021-01-19T13:41:47.010942
| 2018-02-13T21:58:36
| 2018-02-13T21:58:36
| 88,101,605
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,812
|
cpp
|
articleediteur.cpp
|
#include "articleediteur.h"
#include <QMessageBox>
#include <QObject>
ArticleEditeur::ArticleEditeur(Article& a, QWidget* parent):
QWidget(parent),
article(&a),
id(new QLineEdit(this)),
titre(new QLineEdit(this)),
text(new QTextEdit(this)),
save(new QPushButton("Sauvegarder", this)),
idl(new QLabel("Identificateur", this)),
titrel(new QLabel("Titre", this)),
textl(new QLabel("Text", this)),
cid(new QHBoxLayout),
ctitre(new QHBoxLayout),
ctext(new QHBoxLayout),
couche(new QVBoxLayout)
{
cid->addWidget(idl);
cid->addWidget(id);
ctitre->addWidget(titrel);
ctitre->addWidget(titre);
ctext->addWidget(textl);
ctext->addWidget(text);
couche->addLayout(cid);
couche->addLayout(ctitre);
couche->addLayout(ctext);
couche->addWidget(save);
id->setReadOnly(true);
id->setText(a.getId());
titre->setText(a.getTitle());
text->setText(a.getText());
// Initialement, le bouton de sauvegarde est désactivé
save->setEnabled(false);
setLayout(couche);
QObject::connect(save, SIGNAL(clicked()), this, SLOT(saveArticle()));
QObject::connect(titre, SIGNAL(textEdited(QString)), this, SLOT(activerSave()));
QObject::connect(text, SIGNAL(textChanged()), this, SLOT(activerSave()));
}
void ArticleEditeur::saveArticle(){
// Maj de l'objet article
article->setTitle(titre->text());
article->setText(text->toPlainText());
// Sauvegarde dans le fichier XML
NotesManager::getManager().save();
// Affichage d'une popup d'information
QMessageBox::information(this, "Sauvegarde", "Votre article a bien été sauvegardé");
// Le bouton de sauvegarde est grisé
save->setEnabled(false);
}
void ArticleEditeur::activerSave(){
save->setEnabled(true);
}
|
7465ae5bf37c77ae8839685caa5e3b456a6a9beb
|
4f6b88956b5bc3caaa6d9d7a72e0605495b61e7f
|
/teekkarinSekoiluSeikkailut/UI/handlers/Lautaset.cpp
|
45a0e18370cf7376a6826c0494c4d8fdaf57df4b
|
[] |
no_license
|
Temez1/ohj3-projekti
|
0d39a3c2ad4e44ab92f86c84ddee3867673167f0
|
d0ad2f02f85b511cbbe32ea2441e64daef4f2834
|
refs/heads/master
| 2023-02-09T17:17:35.943653
| 2020-11-25T12:07:05
| 2020-11-25T12:07:05
| 326,271,462
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,379
|
cpp
|
Lautaset.cpp
|
#include "Lautaset.h"
#include <QDebug>
Lautaset::Lautaset(int lautasetPadding, QWidget *parent):
QWidget(parent),
PADDING_(lautasetPadding)
{
}
void Lautaset::init(int lautanenAmount, Player *player)
{
LAUTANEN_AMOUNT_ = lautanenAmount;
for (int i = 0; i < lautanenAmount; ++i) {
auto lautanen = new Lautanen(this);
lautanen->move(QPoint(i*(lautanen->width()+PADDING_),0));
lautaset_.append(lautanen);
}
connect(player, &Player::playerOrderedFood, this, &Lautaset::playerOrderedFood);
connect(player, &Player::playerDeliveredFood, this, &Lautaset::playerDeliveredFood);
player_ = player;
setGeometry(childrenRect());
}
void Lautaset::playerOrderedFood(Food *food)
{
auto indexOfFood = player_->getFoods().length() - 1;
auto lautanen = lautaset_.at(indexOfFood);
lautanen->addFood();
connect(food, &Food::foodStateChanged, lautanen, &Lautanen::updateLautanenState);
}
void Lautaset::playerDeliveredFood(Food *food)
{
auto firstLautanen = lautaset_.takeFirst();
delete firstLautanen;
for (auto &lautanen: lautaset_){
lautanen->move(lautanen->pos()-QPoint(lautanen->width()+PADDING_,0));
}
auto lautanen = new Lautanen(this);
lautanen->move(QPoint((LAUTANEN_AMOUNT_ - 1)*(lautanen->width()+PADDING_),0));
lautaset_.append(lautanen);
lautanen->show();
}
|
7452e905ccc354afa1eebee086cbc6c22f773767
|
4b7f47a3323310d2bdd8585f5124f6dffcedf40c
|
/F405_Main/Application/DSP/Reverb/Reverb.cpp
|
96bb8b137546b4f5da51daa5848387cfb61e5b03
|
[
"MIT"
] |
permissive
|
cracked-machine/DSPGuitarPedalF405
|
a270b8063a916e8c457c1bef74d357e787cd36a6
|
f8937a43fe054b455ed671d093122ecb774fa08d
|
refs/heads/main
| 2023-06-21T08:49:38.129590
| 2021-07-26T09:36:30
| 2021-07-26T09:36:30
| 357,000,574
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,799
|
cpp
|
Reverb.cpp
|
/*
* Reverb.cpp
*
* Created on: Apr 20, 2021
* Author: chris
*/
#include <Reverb.hpp>
BasicReverb::BasicReverb()
{
// Create the reverb buffers. Should only be done once at system startup
combfilter1 = new(std::nothrow) IIRCombFilter(3460*2, 0.805, 1.0f);
combfilter2 = new(std::nothrow) IIRCombFilter(2988*2, 0.827, 1.0f);
combfilter3 = new(std::nothrow) IIRCombFilter(3882*2, 0.783, 1.0f);
//combfilter4 = new(std::nothrow) IIRCombFilter(4312*2, 0.764, 1.0f);
allpass1 = new(std::nothrow) UniCombFilter( 480 * 2, 0.7, 0.5f);
allpass2 = new(std::nothrow) UniCombFilter( 161 * 2, 0.7, 0.5f);
allpass3 = new(std::nothrow) UniCombFilter( 46 * 2, 0.7, 0.5f);
/* combfilter1 = new(std::nothrow) StaticIIRCombFilter1();
combfilter2 = new(std::nothrow) StaticIIRCombFilter2();
combfilter3 = new(std::nothrow) StaticIIRCombFilter3();
//combfilter4 = new(std::nothrow) StaticIIRCombFilter4();
allpass1 = new(std::nothrow) StaticUniCombFilter1();
allpass2 = new(std::nothrow) StaticUniCombFilter2();
allpass3 = new(std::nothrow) StaticUniCombFilter3();
*/
}
BasicReverb::~BasicReverb()
{
}
void BasicReverb::zeroAllBuffers()
{
if(combfilter1 != nullptr)
combfilter1->zeroBuffer();
if(combfilter2 != nullptr)
combfilter2->zeroBuffer();
if(combfilter3 != nullptr)
combfilter3->zeroBuffer();
if(combfilter4 != nullptr)
combfilter4->zeroBuffer();
if(allpass1 != nullptr)
allpass1->zeroBuffer();
if(allpass2 != nullptr)
allpass2->zeroBuffer();
if(allpass3 != nullptr)
allpass3->zeroBuffer();
}
void BasicReverb::setWet(uint32_t pParam)
{
float tmp = (float)pParam;
wet = tmp / 100;
}
float BasicReverb::processSample(float pInput)
{
float combs = 0.0f;
float output = 0;
if(combfilter1) {
combs++;
output += combfilter1->processSample(pInput);
}
if(combfilter2) {
combs++;
output += combfilter2->processSample(pInput);
}
if(combfilter3) {
combs++;
output += combfilter3->processSample(pInput);
}
/* if(combfilter4) {
combs++;
output += combfilter4->processSample(pInput);
}*/
output = output / combs;
output = allpass1->processSample(output);
output = allpass2->processSample(output);
output = allpass3->processSample(output);
return output;
}
#ifndef ENABLE_REVERB_BYPASS
void BasicReverb::process_half_u16_single( AudioBlockU16< STEREO_DOUBLE_CH_SIZE_U16 > *pRxBufSingle,
AudioBlockU16< STEREO_DOUBLE_CH_SIZE_U16 > *pTxBufSingle)
{
if(pRxBufSingle != nullptr || pTxBufSingle != nullptr)
{
int lSample = (int) ( (*pRxBufSingle)[0] << 16 | (*pRxBufSingle)[1] );
int rSample = (int) ( (*pRxBufSingle)[2] << 16 | (*pRxBufSingle)[3] );
float sum = (float) (lSample + rSample);
sum = (1.0f - wet ) * sum + wet * processSample(sum);
lSample = (int) sum;
rSample = lSample;
//restore to buffer
(*pTxBufSingle)[0] = (lSample >> 16) & 0xFFFF;
(*pTxBufSingle)[1] = lSample & 0xFFFF;
(*pTxBufSingle)[2] = (rSample >> 16) & 0xFFFF;
(*pTxBufSingle)[3] = rSample & 0xFFFF;
}
}
void BasicReverb::process_full_u16_single( AudioBlockU16< STEREO_DOUBLE_CH_SIZE_U16 > *pRxBufSingle,
AudioBlockU16< STEREO_DOUBLE_CH_SIZE_U16 > *pTxBufSingle)
{
if(pRxBufSingle != nullptr || pTxBufSingle != nullptr)
{
int lSample = (int) ( (*pRxBufSingle)[4] << 16 | (*pRxBufSingle)[5] );
int rSample = (int) ( (*pRxBufSingle)[6] << 16 | (*pRxBufSingle)[7] );
float sum = (float) (lSample + rSample);
sum = (1.0f - wet) * sum + wet * this->processSample(sum);
lSample = (int) sum;
rSample = lSample;
//restore to buffer
(*pRxBufSingle)[4] = (lSample >> 16) & 0xFFFF;
(*pRxBufSingle)[5] = lSample & 0xFFFF;
(*pRxBufSingle)[6] = (rSample >> 16) & 0xFFFF;
(*pRxBufSingle)[7] = rSample & 0xFFFF;
}
}
#endif
|
8da3408f239c9a2a5ce3662ff3a9a17055fc7f90
|
55fb5383a3a8648d0329b1f5694ccefe72303757
|
/GKp/AbstractGameObject.cpp
|
b5cac6e7c74487a8ff06998ea7b3ec9660fa3129
|
[] |
no_license
|
benq95/SimpleGameEngine
|
c4f2527066b93f7cf1a29212589445e4354d85fd
|
73ab6a5385dd2a864170c43e602a824944a22008
|
refs/heads/master
| 2021-06-28T13:07:54.907244
| 2017-09-15T21:40:32
| 2017-09-15T21:40:32
| 103,693,372
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 147
|
cpp
|
AbstractGameObject.cpp
|
#include "stdafx.h"
#include "AbstractGameObject.h"
AbstractGameObject::AbstractGameObject()
{
}
AbstractGameObject::~AbstractGameObject()
{
}
|
805c4d7555b3a3e745cb05551617726762007b18
|
628ff7ae915be87ac91f0c4ef92ee66b0cf5c58b
|
/1197050014_Andi Malia Fadilah Bahari_MODUL3_contoh 1.cpp
|
0082269a40f77af72a573d2f01fea1e9a37c4ff8
|
[] |
no_license
|
andimaliaAMFB/Algoritma-dan-Pemrograman
|
9af48d21fc701defd184cd7b072e725d62bed2cd
|
d149b81c933c1035fb6e28ca2e0967214be5d571
|
refs/heads/main
| 2023-02-26T00:57:07.807776
| 2021-01-30T07:09:03
| 2021-01-30T07:09:03
| 334,350,874
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 159
|
cpp
|
1197050014_Andi Malia Fadilah Bahari_MODUL3_contoh 1.cpp
|
/*MODUL 3
Contoh 1*/
#include<stdio.h>
main()
{
int i;
for(i=1;i<=10;i++)
printf("%d. Halo, Selamat belajar, Aku yakin Aku pasti bisa...\n",i);
}
|
264d47be0337632c703089d11146421a88fd4890
|
24df79b5d1b72963c345b2ae75712a1a3c1dbbc6
|
/Classes/System/novel.h
|
6d5961b3bbcf48cbbe924ff053edb720f22a8f39
|
[] |
no_license
|
ugonight/rifujin2
|
d7a65128d937e4d0e0f8cd0442d05af3f8e20eb9
|
6deba35a6fefceea77c18e255fe33364431aea12
|
refs/heads/master
| 2021-01-19T19:26:47.282959
| 2020-03-31T13:06:33
| 2020-03-31T13:06:33
| 88,414,600
| 0
| 0
| null | null | null | null |
SHIFT_JIS
|
C++
| false
| false
| 4,041
|
h
|
novel.h
|
#pragma once
#pragma execution_character_set("utf-8")
#include "cocos2d.h"
#define MAX_BRANCH 20
// 無理っぽいので既読スキップ封印
#define USE_ALREADY false
// SetStringでメモリリークしてるんじゃね疑惑
#define USE_SETSTRING false
class Novel : public cocos2d::Layer {
private:
enum ImagePos {
IMG_NONE,
IMG_BG,
IMG_CENTER,
IMG_LEFT,
IMG_RIGHT
};
struct Task {
int num;
virtual void update(Novel* parent) {};
};
struct ITask : public Task {
ImagePos imgPos;
std::string imgName;
//画像更新
void update(Novel* parent);
};
struct CTask : public Task {
cocos2d::Color3B color;
//色更新
void update(Novel* parent);
};
struct FTask : public Task {
cocos2d::CallFunc* func;
//イベント実行
void update(Novel* parent);
~FTask();
// 早送りを止めるか
bool stopFast;
};
struct STask : public Task {
int branchTo[4];
std::string branchStr[4];
//選択肢実行
void update(Novel* parent);
};
struct JTask : public Task {
int branch, novelNum;
//文章ジャンプ
void update(Novel* parent);
};
struct PTask : public Task {
cocos2d::FiniteTimeAction* func;
// イベント実行(文章を止める)
void update(Novel* parent);
~PTask();
};
int mNovelNum[MAX_BRANCH], mNovelSetNum[MAX_BRANCH], mCount, mCharNum, mBranch;
int mTouchTime; bool mHideMsg, mFast;
int mImageNum[4]; //Bg,CharaC,CharaL,CharaR
bool mEndFlag;
bool mSwitch; //選択肢モード
STask* mCurrentSTask; //選択モード中のタスク
bool mLogOnly;
std::vector<std::string> mSentense[MAX_BRANCH]; //0がメイン、1〜分岐
std::vector<std::string> mName[MAX_BRANCH];
std::vector<std::shared_ptr<Task>> mTask[MAX_BRANCH];
int mTaskNum[MAX_BRANCH];
cocos2d::ValueVector mLog;
int mLogScrollX, mLogScrollY;
cocos2d::CallFunc* mEndFunc; // ノベル終了後イベント
#if USE_ALREADY
static int mSerialNum[MAX_BRANCH]; // チャプターごとの全体で連番になってる文番号
int mDefSerialNum[MAX_BRANCH]; // Novel生成時の連番
cocos2d::ValueMap mAlreadyMap;
#endif
void func();
bool touchEvent(cocos2d::Touch* touch, cocos2d::Event* event);
void readTalk();
//バックログ
bool logEvent(cocos2d::Touch* touch, cocos2d::Event* event);
void end();
bool endCheck();
void setDelayAnime();
void stopDelayAnime();
void pauseDelayAnime();
void resumeDelayAnime();
#if !USE_SETSTRING
void initLabel(std::string text = "", std::string name = "");
#endif
#if USE_ALREADY
void writeAlready();
void readAlready();
#endif
public:
virtual ~Novel();
virtual bool init();
virtual void update(float delta);
//終了フラグ
bool getEndFlag();
//文追加 (mNovelSetNumを返す)
int addSentence(int branch, std::string name, std::string s);
//背景設定
void setBg(int branch, std::string s);
//キャラクター・センター
void setCharaC(int branch, std::string s);
//キャラクター・レフト
void setCharaL(int branch, std::string s);
//キャラクター・ライト
void setCharaR(int branch, std::string s);
//タスクの終わり
void setEndTask(int branch);
void setEndTask(int branch, cocos2d::CallFunc* endfunc);
//文字色変更
void setFontColor(int branch, cocos2d::Color3B c);
//イベントタスク追加
void addEvent(int branch, cocos2d::CallFunc* func, bool stopFast = false);
//ポーズイベントタスク追加(画像を動かしたりするときはNovelのものは使わない)
void addPauseEvent(int branch, cocos2d::FiniteTimeAction* func);
//選択肢モード追加
void addSwitchEvent(int branch, int br1, std::string st1 = "", int br2 = -1, std::string st2 = "", int br3 = -1, std::string st3 = "", int br4 = -1, std::string st4 = "");
//ジャンプタスク追加
void setJump(int branch, int branchTo, int novelNum);
//ログだけ表示するモード
void setLogOnly();
#if USE_ALREADY
// 連番を初期化(チャプター開始時)
void initSerialNum();
#endif
CREATE_FUNC(Novel);
};
|
2a93c70a9f6c5bd6d09cfba90064e374372b0e82
|
e4be62d127ecb6180b018dc8ba5ad2e4182f59a3
|
/homework_day3/test.cpp
|
61cc2c7e2cdd7e8665c6dc302b8eb8ab945693d6
|
[] |
no_license
|
lixuhui123/c-plus-homework3
|
4e2f1bfcdbbaaaa1d43e5ce94d06f7c0a0ed13d9
|
1636aae78ac234325c8cd657f979ce99e2aabadc
|
refs/heads/master
| 2020-07-17T08:05:47.994117
| 2019-10-07T15:35:40
| 2019-10-07T15:35:40
| 205,979,917
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 2,804
|
cpp
|
test.cpp
|
/* 1、声明一个扑克牌类,拥有方法:传入花色和点数生成扑克牌、打印扑克牌。
2、声明一个玩家类,每人拥有18张扑克牌。拥有方法:增加手牌(摸牌)、展示手牌,其中展示手牌要求降序排序展示。
完成程序:
1、随机生成18张扑克牌,当做一个玩家的手牌。
2、用184张不同的扑克牌构成牌堆,发给3个玩家。 */
#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <windows.h>
using namespace std;
enum {
SPADES,
HEARTS,
CLUBS,
DIAMONDS,
JOKER
};
//全局变量g_ 局部静态变量s_ 成员变量m_
class Poker {
int m_type;
int m_point;
public:
/*Poker() :
m_type('a'),
m_point(2)
{
}*/
/*Poker(char type, int point) :
m_type(type),
m_point(point)
{
}*/
void makePoker(int type, int point)
{
m_type = type;
m_point = point;
if (m_type == JOKER&&(m_point==1||m_point==2))
{
m_point += 13;
}
}
void outputPoker( )
{
const char *type[5] = { "黑桃", "红桃", "梅花", "方片", "" };
const char *point[16] = { "", "A", "2", "3", "4", "18", "6", "7", "8", "9", "10", "J", "Q", "K", "小王", "大王" };
printf("%s%s ", type[m_type], point[m_point]);
}
bool compelePoker(Poker tmp)
{
return m_point < tmp.m_point || (m_point == tmp.m_point&&m_type > tmp.m_type);
}
bool isright()
{
if (m_type== JOKER&&(m_point==14||m_point==15))
{
return true;
}
if ((unsigned int)m_point > 13 || (unsigned int)m_type > 3)
{
return false;
}
else
return true;
}
};
class ployer
{
Poker m_Handpoker[18];
int m_Size;
public:
ployer()
{
m_Size = 0;
}
void addpoker(Poker newPoker)
{
int i = 0;
for (i=m_Size;i>0&&m_Handpoker[i-1].compelePoker(newPoker);--i)
{
m_Handpoker[i] = m_Handpoker[i - 1];
}
m_Handpoker[i] = newPoker;
m_Size++;
}
void showcards()
{
int i = 0;
for (i=0;i<m_Size;++i)
{
m_Handpoker[i].outputPoker();
}
putchar('\n');
}
};
int randnum(Poker * heap)
{
int tmp = rand() % 54;
while (1)
{
if (heap[tmp].isright())
{
return tmp;
}
else
{
tmp++;
if (tmp==54)
{
tmp = 0;
}
}
}
}
int main()
{
Poker heap[54];
ployer p1;
ployer p2;
ployer p3;
int j = 0;
int pushcard;
for (auto &i:heap)
{
i.makePoker(j / 13, j % 13 + 1);
++j;
}
srand(time(0));
for (int i=0;i<18;++i)
{
pushcard = randnum(heap);
p1.addpoker(heap[pushcard]);
heap[pushcard].makePoker(-1, -1);
pushcard = randnum(heap);
p2.addpoker(heap[pushcard]);
heap[pushcard].makePoker(-1, -1);
pushcard = randnum(heap);
p3.addpoker(heap[pushcard]);
heap[pushcard].makePoker(-1, -1);
}
p1.showcards();
p2.showcards();
p3.showcards();
system("pause");
return 0;
}
|
f1d81af9b99bbf198886c9fb0b783b696b91ebb0
|
5d83739af703fb400857cecc69aadaf02e07f8d1
|
/Archive2/b0/325ddb1d0396ee/main.cpp
|
1f000c3999b2734677cae7fba95716c926ff2d6e
|
[] |
no_license
|
WhiZTiM/coliru
|
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
|
2c72c048846c082f943e6c7f9fa8d94aee76979f
|
refs/heads/master
| 2021-01-01T05:10:33.812560
| 2015-08-24T19:09:22
| 2015-08-24T19:09:22
| 56,789,706
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,114
|
cpp
|
main.cpp
|
#include <type_traits>
#include <cassert>
template<bool... Bools>
struct any_of : public std::false_type
{
};
template<bool... Bools>
struct any_of<true, Bools...> : public std::true_type
{
};
template<bool... Bools>
struct any_of<false, Bools...> : public any_of<Bools...>
{
};
template<typename, typename = class default_tag>
struct list_mixin;
template<typename Type, typename Tag>
struct list_mixin
{
Type * prev;
Type * next;
};
template<typename Type, typename... Tags>
struct list_mixins : list_mixin<Type, Tags>...
{
template<typename Tag, typename std::enable_if<any_of<std::is_same<Tag, Tags>::value...>::value, int>::type = 0>
list_mixin<Type, Tag> & get_list()
{
return *static_cast<list_mixin<Type, Tag> *>(this);
}
};
struct thread : list_mixins<thread, class all, class same_state>
{
};
int main()
{
thread t;
t.get_list<all>().next = nullptr;
t.get_list<same_state>().next = &t;
assert(t.get_list<all>().next == nullptr);
assert(t.get_list<same_state>().next == &t);
t.get_list<class some_type>(); // doesn't compile
}
|
c396e6553aa6f9865ebb77bb526850bfd89a1bce
|
51f31cc36dae754f77b560c5aec206d016ee374e
|
/PocketMoneyCalculator/PocketMoneyCalculator.cpp
|
1640b8788c685852e06f402cf22ae123596cf5f5
|
[] |
no_license
|
DehSheepie/Pocket-Money-Calculator
|
b94579d0957ae52e1ac93a7238d57f1de0cc4973
|
d81e84e085d6df614370d05135b1a99e1332a7e5
|
refs/heads/main
| 2023-01-12T06:50:45.495841
| 2020-11-13T00:27:01
| 2020-11-13T00:27:01
| 309,187,782
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,760
|
cpp
|
PocketMoneyCalculator.cpp
|
#include <iostream> // std::cout, std::endl
#include <fstream> // std::fstream
#include <string> // std::getline
#include <iomanip> // std::setw
std::string filename = "money.dat";
bool CheckStringValid(std::string s)
{
if (s == "")
{
std::cout << "Please enter a value." << std::endl;
return false;
}
try {
std::stod(s);
}
catch (std::invalid_argument)
{
std::cout << "Invalid input." << std::endl;
return false;
}
catch (std::out_of_range)
{
std::cout << "Invalid out of valid range." << std::endl;
return false;
}
return true;
}
bool CheckStringIsInt(std::string s)
{
if (s == "")
{
std::cout << "Please enter a value." << std::endl;
return false;
}
try
{
std::stoi(s);
return true;
}
catch(std::invalid_argument)
{
std::cout << "Input invalid." << std::endl;
}
catch (std::out_of_range)
{
std::cout << "Input out of valid range." << std::endl;
}
}
void ShowBalance()
{
std::ifstream file;
file.open(filename);
// Check For Error
if (file.fail())
{
std::cerr << "File not found" << std::endl;
exit(1);
}
std::string balance;
std::getline(file, balance);
file.close();
if (CheckStringValid(balance))
{
std::cout << "------ Balance ------" << std::endl;
std::cout << "------ " << std::left << std::setw(8) << balance << "------" << std::endl;
}
else
{
std::cout << "value in the file in not valid" << std::endl;
}
}
void OverwriteFile(double value)
{
std::ofstream file;
file.open(filename, std::ofstream::trunc); // trunc for overwritting the contents of the file
if (!file.is_open())
{
std::cout << "File could not be overwritten" << std::endl;
return;
}
// Add the value to the file
file << std::fixed << std::setprecision(2) << value;
file.close();
}
void AddToBalance(double addition)
{
std::ifstream file;
file.open(filename);
// Check For Error
if (file.fail())
{
std::cerr << "File not found" << std::endl;
exit(1);
}
std::string balance;
std::getline(file, balance);
double value;
file.close();
if (CheckStringValid(balance))
{
value = std::stod(balance);
value += addition;
OverwriteFile(value);
}
else
{
std::cout << "Balance value invalid" << std::endl;
}
}
void RemoveFromBalance(double subtraction)
{
std::ifstream file;
file.open(filename);
// Check For Error
if (file.fail())
{
std::cerr << "File not found" << std::endl;
exit(1);
}
std::string balance;
std::getline(file, balance);
double value;
file.close();
if (CheckStringValid(balance))
{
value = std::stod(balance);
value -= subtraction;
if (value < 0)
{
value = 0;
}
OverwriteFile(value);
}
else
{
std::cout << "Balance value invalid" << std::endl;
}
}
double GetValueFromUser()
{
std::string str;
std::cout << "Enter the ammount" << std::endl;
std::cin >> str;
if (CheckStringValid(str))
{
return std::stod(str);
}
else
{
std::cout << "Please enter a valid value" << std::endl;
return double(0);
}
}
int GetMenuOptionFromUser()
{
std::string str;
std::cout << "Enter your option: ";
std::cin >> str;
if (CheckStringIsInt(str))
{
return std::stoi(str);
}
else
{
GetMenuOptionFromUser();
}
}
int main()
{
// Functionality to implement for MVP:
// Read/write balance to external file --done--
// Check Balance
// Deposit
// Remove
// Show menu
int running = true;
while (running)
{
ShowBalance();
std::cout << "Please select an option:" << std::endl;
std::cout << "[1] Add to account" << std::endl;
std::cout << "[2] Remove from account" << std::endl;
int option = GetMenuOptionFromUser();
switch (option)
{
case 0:
break;
case 1:
AddToBalance(GetValueFromUser());
break;
case 2:
RemoveFromBalance(GetValueFromUser());
}
}
return 0;
}
|
e86644c337f601e936e9388dce79026b92f0b30c
|
b67044ae73272f81819304a9736d49c9727e868f
|
/OriginalPlan/.svn/pristine/79/79db2d94799f45222b653be86db8719bfa0174a8.svn-base
|
17b06abb6202ad1a3c3b20b564154c546314d04c
|
[] |
no_license
|
bagua0301/red_slg
|
5b16ab66354c552ab2066fc95effaca2a9a56535
|
50c48cbdfeb4ba373d2f9040c9b4c9e609e3b9cb
|
refs/heads/master
| 2023-06-17T21:39:15.730529
| 2020-05-23T10:29:07
| 2020-05-23T10:29:07
| null | 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 3,772
|
79db2d94799f45222b653be86db8719bfa0174a8.svn-base
|
#include "core/debug.h"
#include "script_engine.h"
#include "role.h"
#include "mod_bag.h"
#include "role_manager.h"
#include "announcement_tbl.h"
#include "announcement.h"
#include "map_server.h"
#include "map_server_instance.h"
#include "map_server_data.h"
#include "script_bind_func.h"
// 得到所有玩家
typedef std::vector<CRole*> TRoleList;
static void GetRoleCallFunc(CRoleBase*& role, void* arg)
{
TRoleList* roles = (TRoleList*)arg;
roles->push_back((CRole*)role);
}
std::vector<CRole*> CMServerHelper::LuaGetAllRole()
{
TRoleList roles;
DRoleManager.traverseReady(GetRoleCallFunc, &roles);
DRoleManager.traverseEnter(GetRoleCallFunc, &roles);
DRoleManager.traverseLogout(GetRoleCallFunc, &roles);
return roles;
}
// 得到玩家
CRole* CMServerHelper::LuaGetRole(TRoleUID_t roleUID)
{
return DRoleManager.findByRoleUID(roleUID);
}
lua_tinker::s_object CMServerHelper::LuaGetSpRole(TRoleUID_t roleUID)
{
CRole* pRole = DRoleManager.findByRoleUID(roleUID);
if(NULL == pRole)
{
return lua_tinker::s_object();
}
return pRole->getScriptObject();
}
// 向玩家发送消息
void CMServerHelper::LuaChat(CRole* pRole, std::string msg)
{
pRole->sendChat(msg);
}
// 世界消息广播
void CMServerHelper::LuaWorldChatBroad(std::string name, std::string title, uint8 vipLv, std::string msg)
{
MCWorldChatMsg msgRet;
msgRet.setRetCode(EGameRetCode::RC_SUCCESS);
msgRet.fromPlayer = name;
msgRet.fromPlayerTitle = title;
msgRet.fromPlayerVipLv = vipLv;
msgRet.msg = msg;
DRoleManager.broadcastToAllEnterQue(msgRet);
}
// 系统走马灯
void CMServerHelper::LuaSystemChatBroad(std::string name, uint8 type, sint32 count)
{
MCScreenAnnounce msgRet;
msgRet.setRetCode(EGameRetCode::RC_SUCCESS);
msgRet.name = name;
msgRet.type = type;
msgRet.count = count;
DRoleManager.broadcastToAllEnterQue(msgRet);
}
// 得到玩家管理器
CRoleManager* CMServerHelper::LuaGetRoleMgr()
{
return CRoleManager::GetPtrInstance();
}
// 得到服务器数据
CMapServerData* CMServerHelper::LuaGetServerData()
{
return CMapServerData::GetPtrInstance();
}
// 得到地图主服务
CMapServer* CMServerHelper::LuaGetMapServer()
{
return DMapServer;
}
// 通过玩家名字得到玩家
CRole* CMServerHelper::LuaGetRoleByName(const std::string roleName)
{
std::vector<CRole*> roles = LuaGetAllRole();
for(sint32 i = 0; i < (sint32)roles.size(); ++i)
{
if(NULL != roles[i]){
if(roles[i]->getRoleNameStr() == roleName){
return roles[i];
}
}
}
return NULL;
}
// 踢掉玩家
void CMServerHelper::LuaKickRole(const std::string roleName)
{
CRole* pRole = LuaGetRoleByName(roleName);
if(NULL != pRole)
{
pRole->kick(true, 1, "GM kick role!");
}
}
// 得到公告事件类型
sint32 CMServerHelper::LuaGetAnnouncementEventType(TAnnouncementID_t id)
{
CAnnouncementTbl* pRow = DAnnouncementTblMgr.find(id);
if(NULL != pRow)
{
return pRow->eventType;
}
return 0;
}
sint8 CMServerHelper::LuaGetAnnouncementSysType(TAnnouncementID_t id)
{
CAnnouncementTbl* pRow = DAnnouncementTblMgr.find(id);
if(NULL != pRow)
{
return pRow->systemType;
}
return 0;
}
// 发送公告
void CMServerHelper::LuaAllAnnouncement(std::string msg, sint32 lastTime, sint32 interval)
{
MWAnnoucement announcement;
announcement.msg = msg;
announcement.lastTime = lastTime;
announcement.interval = interval;
BroadCastToWorld(announcement, SYSTEM_ROLE_UID, true);
}
uint64 CMServerHelper::LuaToNum64(std::string str)
{
uint64 num = 0;
GXMISC::gxFromString(str, num);
return num;
}
uint32 CMServerHelper::LuaCrc32(std::string value)
{
return GXMISC::StrCRC32(value.c_str());
}
string CMServerHelper::Md5String(std::string value)
{
return ToMD5String(value);
}
bool BindFunc(CScriptEngineCommon::TScriptState* pState)
{
return true;
}
|
|
ba6079458e8389f0bb607a8d4268bb2c7356090d
|
1e60d6046b033dd08e5be58e4027c4daf8ab6075
|
/Assignment.cpp
|
8faa0681729beda69a535631837e30624c4436b8
|
[] |
no_license
|
aafshinfard/prevSV
|
da82fe915b480a20aeba88252254a6069c522f2e
|
62da38e445eac3097bf3e274df6eff67fb9ec8e8
|
refs/heads/master
| 2022-05-19T05:32:36.529029
| 2018-01-14T13:08:30
| 2018-01-14T13:08:30
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 171,024
|
cpp
|
Assignment.cpp
|
///*
// * finalModule.cpp
// *
// * Created on: Mar 27, 2015
// * Author: amin
// */
//#include "Assignment.h"
//Assignment::Assignment(iRead* reads, vector<interval>* iDepth, vector<gene>* genes, vector<iReadNext>* readsNext, int V, int myNumberOfThread, int partLength, string firstOutputName, int shift, int readLength, int characterPerRow, int d, string genomeName, string indexAddress, int numGap, string outputDir) {
// this->iDepth = iDepth;
// this->reads = reads;
// this->genes = genes;
// this->readsNext = readsNext;
// this->firstOutputName = firstOutputName;
// this->shift = shift;
// this->characterPerRow = characterPerRow;
// this->outputDir = outputDir;
// long long index;
// long long number;
// long long failNumber = 0;
// long long current = 0,currentFast = 0,fastLineCounter = 0;
// long long currentNumber,currentFastNumber;
// long long readCounter = 0;
// long long length;
// vector<string> splitted;
// bool isNew= true;
// bool null = false;
// int V_L = 0;
// int row;
// int threadCounter = 0;
// int blockCounter = 0;
// char sign = '@';
// std::string tempString, sequencePrime, qualityPrime, Header, mainHeader;
// std::string seq, line, quality;
// std::string fastLine;
// std::string token;
// std::string command, concatenate, directory;
// std::string sortedFinalReadsAddress = outputDir+"sortedReads.fq";
// std::string semiSortedFinalReadsAddress = outputDir+"semiSortedReads.fq";
// std::string firstReadsName = outputDir+this->firstOutputName+"_reads_d="+this->NumToStr(this->shift)+".fq";
// std::string ReadsName = outputDir+"reformed_Reads.fq";
// std::string outputName = outputDir+"StatisticResult.txt";
// std::string AlignedAddress = outputDir+"Aligned.sam";
// std::string ReOrderedAlignedAddress = outputDir+"Aligned_reordered.sam";
// std::string failReads = outputDir+"Assign_Rem_Reads.fq";
// fastQAddress = outputDir+"fastQAddress.fq";
// this->genomeName = genomeName;
// this->indexAddress = indexAddress;
// this->numberOfThreads = 2;
// this->myNumberOfThread = myNumberOfThread;
// this->readLength = readLength;
// this->partLength = partLength;
// this->d = d;
// this->consecutiveThreshold = 0.3;
// this->error = numGap;
// this->myDepth = 10;
// IndelShift = 0.1;
// errorInIndex = 2000;
// GAPPEN = -8;
// MISPEN = -6;
// MATCH = 2;
// this->V = V;
// K_factor=0.5;
// L_MAX = 2000;
// L_bowtie = 20;
// N_bowtie = 1;
// step = 2;
// aligner = 1;
// //cout << "parameters" << endl;
// //system(("mkdir " + directory + " 2>/dev/null").c_str());
// //chdir(directory.c_str());
// readFasta(genomeName, multiFasta);
// //cout << "Rehearse the fasta file and sort it" << endl;
// std::ifstream firstReads;
// std::ofstream OfinalReads(semiSortedFinalReadsAddress.c_str());
// std::ofstream Passed_reads((outputDir + "Assign_Rem_Reads.fq").c_str());
// std::ofstream fastQfile(fastQAddress.c_str());
// std::ofstream output(outputName.c_str());
// myDepth++;
// option = 40;
// // In constant length mode the -L parameter stands for the constant read length
// // In pacbio mode the -L parameter stands for L_MAX
// // Defining the files for sam and fastQ
// filledAll=0;
// //COMPLETED
// // Seperation of the Header considering the constant length Mode
// if(Pacbio){
// std::ifstream Reads(firstReadsName.c_str());
// std::ofstream O_Reads(ReadsName.c_str());
// readCounter=0;
// while(getline(Reads,token)){
// if(counter % 4 ==0){
// Header = token;
// }
// if(counter % 4 ==1){
// seq = token;
// }
// if(counter % 4 ==3){
// readCounter++;
// O_Reads << "@r" << readCounter << "_" << counter << "_" << seq.length() << "_" << Header << endl;
// O_Reads << seq << endl;
// O_Reads << "+" << endl;
// O_Reads << token << endl;
// }
// counter++;
// }
// readCounter=0;
// O_Reads.close();
// firstReads.open(ReadsName.c_str());
// }
// else{
// //firstReads.open(firstReadsName.c_str());
// std::ifstream Reads(firstReadsName.c_str());
// std::ofstream O_Reads(ReadsName.c_str());
// readCounter=0;
// while(getline(Reads,token)){
// if(counter % 4 ==0){
// Header = token;
// }
// if(counter % 4 ==1){
// seq = token;
// }
// if(counter % 4 ==3){
// readCounter++;
// O_Reads << Header << "_" << seq.length() << endl;
// O_Reads << seq << endl;
// O_Reads << "+" << endl;
// O_Reads << token << endl;
// }
// counter++;
// }
// readCounter=0;
// O_Reads.close();
// firstReads.open(ReadsName.c_str());
// }
// counter=0;
// if(!firstReads.is_open()){
// cerr << "the first read is not open" << endl;
// }
// if(!fastQfile.is_open()){
// cerr << "fastQfile is not open" << endl;
// }
// while (getline(firstReads,token)){
// if (counter % 4 == 0) {
// Header = token;
// //for constant length mode
// Split_Header(splitted, Header, mainHeader, index, number, V_L, row, false, false, true, Pacbio,false);
// //update the numberOfTables to calculate the indexMaker
// numberOfTables = checkNumOfTables(partLength,V_L);
// }
// if (counter % 4 == 1) {
// seq = token;
// tempString = L_MAX_Gate(L_MAX,V_L,seq);
// if(tempString.size()!=V_L){
// reform_Header(splitted,Header,index,number,L_MAX, true,Pacbio,false,true,0);
// numberOfTables = checkNumOfTables(partLength,L_MAX);
// }
// null = false;
// size_t N = std::count(seq.begin(), seq.end(), 'N');
// size_t n = std::count(seq.begin(), seq.end(), 'n');
// if(n+N > 0.15*seq.length()){
// null = true;
// failNumber++;
// }
// }
// if (counter % 4 == 3) {
// if(!null){
// reform_Header(splitted,Header,index,number,V_L,true,Pacbio, true,false,0);
// OfinalReads << "@r" << Header <<"\t" << seq << "\t" << token << endl;
// filledAll++;
// }
// }
// counter++;
// }
// system_sort(semiSortedFinalReadsAddress, sortedFinalReadsAddress);
// system_remove(semiSortedFinalReadsAddress);
// std::ifstream finalReads(sortedFinalReadsAddress.c_str());
// //cout << "First adjustment of input is done" << endl;
// //cout << "All of the reads:" << "\t" <<filledAll << endl;
// while (getline(finalReads,token)){
// Split_Token(splitted, token, Header, seq, quality);
// Split_Header(splitted, Header,mainHeader, index, number, V_L, row, true, false, true, Pacbio, false);
// numberOfTables = checkNumOfTables(partLength,V_L);
// if(numberOfTables>1){
// for (int i=0;i<numberOfTables;i++){
// sequencePrime = seq.substr(i * (partLength-d),
// partLength);
// qualityPrime = quality.substr(i * (partLength-d),
// partLength);
// reform_Header(splitted,Header,index,number,V_L,true,Pacbio, true,false,i);
// fastQfile <<"@r" << Header << endl;
// fastQfile << sequencePrime << endl;
// fastQfile << "+"<<endl;
// fastQfile << qualityPrime << endl;
// }
// }
// else{
// fastQfile <<"@r" << Header << endl;
// fastQfile << sequencePrime << endl;
// fastQfile << "+"<<endl;
// fastQfile << qualityPrime << endl;
// }
// }
// /*indel_stat.resize(NOISE_THREADS);
// for (int i = 0; i<indel_stat.size() ; i++)
// ifstr2 >> indel_stat[i];
// for (int i=0;i<NOISE_THREADS;i++)
// cout << indel_stat[i] << endl;
// frag = (long long)floor(GENE_LEN/NOISE_THREADS);*/
// //cout << "Arrangement of the reads is ended up" << endl;
// //cout << "Creating the fragments in fastQ order to be aligned" << endl;
// //cout << "Reads with Not Desired Qualification " << failNumber << endl;
// finalReads.clear();
// finalReads.seekg(0, ios::beg);
// fastQfile.close();
// // Reading the file contains noise of the reads
// // splitting the fastqfile into smaller files for threads
// // contain the read index and its sequence
// length = Calculate(filledAll, numberOfThreads);
// if(length==0)
// numberOfThreads=1;
// errorCollector.resize(numberOfThreads);
// threadVectors.resize(numberOfThreads);
// threadReads.resize(numberOfThreads);
// myOSams = new ofstream[numberOfThreads];
// myOFasts = new ofstream[numberOfThreads];
// O_Strings = new ofstream[numberOfThreads];
// myFasts = new ifstream[numberOfThreads];
// mySams = new ifstream[numberOfThreads];
// for (int thread = 0; thread < numberOfThreads; thread++) {
// ostringstream filename,fastname,finalStrName;
// filename << outputDir + "sam"<< thread + 1 << ".txt";
// fastname << outputDir + "fast"<< thread + 1<< ".txt";
// finalStrName << outputDir + "strings" << thread + 1 << ".txt";
// myOSams[thread].open(filename.str().c_str());
// myOFasts[thread].open(fastname.str().c_str());
// O_Strings[thread].open(finalStrName.str().c_str());
// }
// // Creating thread fastQ files
// //cout << "Assigning every Thread its quota...." << endl;
// if(length!=0)
// while (getline(finalReads,token) && blockCounter<numberOfThreads){
// if((readCounter==length) && blockCounter!=(numberOfThreads-1)){
// blockCounter++;
// readCounter=0;
// }
// //Saving all of the properties of the read
// Split_Token(splitted, token, Header, seq, quality);
// Split_Header(splitted, Header, mainHeader, index, number, V_L, row, true, false, true, Pacbio, false);
// if(!myOFasts[blockCounter].is_open())
// cerr << "is not open" << endl;
// else{
// myOFasts[blockCounter] << "@r" << Header << "\t" << seq << "\t" << quality << endl;
// readCounter++;
// }
// }
// else{
// //blockCounter=0;
// while (getline(finalReads,token)){
// //Saving all of the properties of the read
// Split_Token(splitted, token, Header, seq, quality);
// Split_Header(splitted, Header, mainHeader, index, number, V_L, row, true, false, true, Pacbio, false);
// if(!myOFasts[0].is_open())
// cerr << "is not open" << endl;
// else{
// myOFasts[0] << "@r" << Header << "\t" << seq << "\t" << quality << endl;
// readCounter++;
// }
// }
// }
// for (int thread = 0; thread < numberOfThreads; thread++) {
// ostringstream filename,fastname;
// filename << outputDir + "sam"<< thread + 1 << ".txt";
// fastname << outputDir + "fast"<< thread + 1<< ".txt";
// mySams[thread].open(filename.str().c_str());
// myFasts[thread].open(fastname.str().c_str());
// }
// //cout << "Ready for Aligning" << endl;
// align_Command(aligner, indexAddress, fastQAddress, V, myDepth, numberOfThreads, AlignedAddress, option, minScore,N_bowtie, L_bowtie);
// std::ifstream Aligned(AlignedAddress.c_str());
// if(!Aligned.is_open()){
// cerr << "can not open your sam file"<< endl;
// }
// command = "";
// command.append("LC_COLLATE=C sort -k 1 ");
// command.append(AlignedAddress.c_str());
// command.append(" > ");
// command.append(ReOrderedAlignedAddress.c_str());
// system(command.c_str());
// std::ifstream Aligned_reordered(ReOrderedAlignedAddress.c_str());
// readCounter=0;
// getline(myFasts[threadCounter],fastLine);
// Split_Token(splitted, fastLine, Header, seq, quality);
// Split_Header(splitted, Header,mainHeader, currentFast, currentFastNumber,V_L, row, false, false, true, Pacbio, false);
// ++fastLineCounter;
// readCounter++;
// while(getline(Aligned_reordered,line)){
// if ((int)line[0]!=(int)sign){
// Split_Token(splitted,line,Header,seq,quality);
// Split_Header(splitted, Header, mainHeader, current, currentNumber, V_L, row, false, true, true, Pacbio, false);
// // the current read has splitted
// // Detecting if the current line is new in sight of read Counting...
// isNew=true;
// if(currentFastNumber==currentNumber){
// isNew=false;
// myOSams[threadCounter] << line << endl;
// }
// // this condition is occured for all threads except the latest one
// while(isNew){
// if(readCounter==length && threadCounter!=(numberOfThreads-1)){
// threadCounter++;
// readCounter=0;
// fastLineCounter=0;
// getline(myFasts[threadCounter],fastLine);
// Split_Token(splitted, fastLine, Header, seq, quality);
// Split_Header(splitted, Header, mainHeader, currentFast, currentFastNumber,V_L, row, false, false, true, Pacbio,false);
// ++fastLineCounter;
// readCounter++;
// }
// else{
// getline(myFasts[threadCounter],fastLine);
// Split_Token(splitted, fastLine, Header, seq, quality);
// Split_Header(splitted, Header,mainHeader, currentFast, currentFastNumber,V_L,row, false, false, true, Pacbio, false);
// ++fastLineCounter;
// readCounter++;
// }
// if(currentNumber==currentFastNumber){
// isNew=false;
// myOSams[threadCounter] << line << endl;
// }
// }
// }
// }
// for (int thread = 0; thread < numberOfThreads; thread++) {
// myOSams[thread].close();
// myOFasts[thread].close();
// }
// //cout << "All the reads have to be processed " << filledAll << endl;
// if(length==0){
// Threads = new std::thread[numberOfThreads];
// //Threads[numberOfThreads-1]=std::thread(&Assignment::Analysis, this,numberOfThreads,filledAll);
// Analysis(0,(int)filledAll);
// //cout << "the only thread has been created" << endl;
// }
// else{
// Threads = new std::thread[numberOfThreads];
// for (int threads = 0; threads < numberOfThreads; threads++) {
// if (threads!=numberOfThreads-1){
// Threads[threads]=std::thread(&Assignment::Analysis, this,threads,length);
// //Analysis(threads,length);
// //cout << threads <<"\t"<<length<< endl;
// }
// else{
// Threads[threads]=std::thread(&Assignment::Analysis, this,threads,filledAll-(numberOfThreads-1)*length);
// //Analysis(threads, filledAll-(numberOfThreads-1)*length);
// //cout << threads<<"\t"<< filledAll-(numberOfThreads-1)*length<< endl;
// }
// }
// }
// //cout << "threads are created" << endl;
// for (int T=0;T<numberOfThreads;T++){
// Threads[T].join();
// //cout << "THREAD "<<T <<" HAS ENDED"<< endl;
// }
// bool trueFlag=false;
// int histo_filtering_error=0;
// int histo_processed=0;
// //int filter_Processed=0;
// //int filtering_error=0;
// allReads = threadVectors[0];
// concatenate.append("cat ");
// for(int i=1;i<numberOfThreads;i++){
// allReads.insert(allReads.end(), threadVectors[i].begin(), threadVectors[i].end());
// }
// for(int i=0;i<numberOfThreads;i++){
// ostringstream name;
// name << outputDir + "strings" << i+1 << ".txt ";
// O_Strings[i].close();
// concatenate.append(name.str().c_str());
// {
// vector<Read>().swap(threadVectors[i]);
// }
// }
// concatenate.append(("> " + outputDir + "finalStrings.txt"));
// system(concatenate.c_str());
// std::ifstream finalStrings((outputDir + "finalStrings.txt").c_str());
// if(!finalStrings.is_open())
// cerr << "is not open" << endl;
// finalReads.clear();
// finalReads.seekg(0, ios::beg);
// sampleRead.readName=0;
// sampleRead.index=0;
// sampleRead.V_Length=0;
// sampleRead.Passed=false;
// while (getline(finalReads,token)){
// Split_Token(splitted, token, Header, seq, quality);
// Split_Header(splitted, Header, mainHeader, index, number, V_L, row, true, false, true, Pacbio, false);
// sampleRead.index = number;
// sampleRead.readName = index;
// sampleRead.V_Length = V_L;
// tinyReads.push_back(sampleRead);
// }
// for(int i=0;i<allReads.size();i++){
// if(!allReads[i].Histo){
// histo_processed++;
// for(int k=0;k<tinyReads.size();k++){
// if((tinyReads[k].index==allReads[i].index)&&(tinyReads[k].readName==allReads[i].readName)){
// allReads[i].Checked=true;
// tinyReads[k].Passed=true;
// }
// }
// for(int j=0;j<allReads[i].scores.size();j++){
// if(allReads[i].flags[j]==3){
// trueFlag = true;
// }
// }
// if(!trueFlag)
// histo_filtering_error++;
// }
// }
// littleStruct tempStruct;
// vector<littleStruct> tempArray;
// vector<littleStruct> tempArray2;
// vector<littleStruct> chosenArray;
// //Saving all of the properties of the read
// int additionalScore=0;
// int k=0;
// string Line;
// while(getline(finalStrings, Line)){
// if(allReads[k].Checked){
// splitted = split(Line, "\t");
// seq = splitted[splitted.size()-2];
// quality = splitted[splitted.size()-1];
// for(int j=0;j<allReads[k].flags.size();j++){
// if(allReads[k].flags[j]!=-1){
// //additionalScore=0;
// additionalScore = (int)(MATCH*(seq.length())+(MISPEN+MATCH)*(allReads[k].print_M[j])+(GAPPEN+MATCH)*(allReads[k].print_I[j]));
// output << allReads[k].mainHeader << "\t";
// output << allReads[k].flags[j] << "\t";
// output << allReads[k].references[j] << "\t";
// output << allReads[k].loc[j] << "\t";
// output << "255 \t";
// output << splitted[2*j+1] << "\t";
// output << "* \t 0 \t 0 \t";
// output << seq << "\t";
// output << quality << "\t";
// output << "XA:i:" << additionalScore << "\t";
// output << splitted[2*j] << "\t";
// output << "NM:i:" <<allReads[k].print_M[j] << "\t";
// output << endl;
// }
// }
// }
// k++;
// }
// {
// vector<Read>().swap(allReads);
// }
// for(int i=0;i<numberOfThreads;i++){
// {
// std::string remove="";
// std::string remove2="";
// std::string remove3="";
// remove.append("rm ");
// remove2.append("rm ");
// remove3.append("rm ");
// {
// ostringstream filename;
// ostringstream filename2;
// ostringstream filename3;
// filename << outputDir + "sam" << NumToStr(i+1) << ".txt";
// filename2 << outputDir + "fast" << NumToStr(i+1) << ".txt";
// filename3 << outputDir + "strings" << NumToStr(i+1) << ".txt";
// remove.append(filename.str().c_str());
// remove2.append(filename2.str().c_str());
// remove3.append(filename3.str().c_str());
// }
// system(remove.c_str());
// system(remove2.c_str());
// system(remove3.c_str());
// }
// }
// long failCounter=0;
// finalReads.clear();
// finalReads.seekg(0, ios::beg);
// long tinyCounter=0;
// while (getline(finalReads,token)){
// Split_Token(splitted, token, Header, seq, quality);
// Split_Header(splitted, Header,mainHeader, index, number, V_L, row, true, false, true, Pacbio, false);
// if(!tinyReads[tinyCounter].Passed){
// if(step==3 && Pacbio){
// Passed_reads << mainHeader << endl;
// Passed_reads << seq << endl;
// Passed_reads << "+" << endl;
// Passed_reads << quality << endl;
// }else if(step==3 && !Pacbio){
// Passed_reads << "@r" << index << "_" << number << "_" << V_L << endl;
// Passed_reads << seq << endl;
// Passed_reads << "+" << endl;
// Passed_reads << quality << endl;
// }else if(step==2){
// Passed_reads << mainHeader << "4 \t * \t 0 \t 0 \t * \t * \t 0 \t 0 \t" << seq << "\t" << quality << "XA:i:0" << endl;
// }
// failCounter++;
// }
// tinyCounter++;
// }
// {
// vector<Tiny_Read>().swap(tinyReads);
// }
// if(step==2){
// system(("cat "+ outputDir +"Assign_Rem_Reads.fq >> " + outputName).c_str());
// }
// //cout << "End of Concatenation" << endl;
// long finalError = 0;
// for(int i=0;i<numberOfThreads;i++){
// finalError = finalError + errorCollector[i];
// }
// system_remove(sortedFinalReadsAddress);
// system_remove(ReadsName);
// system_remove(failReads);
// system_remove(outputName);
// system_remove(AlignedAddress);
// system_remove(ReOrderedAlignedAddress);
// system_remove(fastQAddress);
// system_remove(outputDir + "finalStrings.txt");
// system_remove(outputDir + "headerFile.txt");
// //cout << "All failures for passing to the Rem_reads file and Bowtie2: " << failCounter << endl;
// //cout << "Error Among All The Processed Reads before histo-filtering: " << finalError << endl;
// //cout << "All reads processed in filtering " << filter_Processed << endl;
// //cout << "Error among the processed reads in filtering" << filtering_error << endl;
//}
//Assignment::~Assignment() {
//}
//void Assignment::Analysis(int thread, int length) {
// /*void* returnValue;
// int thread,length;
// int numberOfTables;
// struct thread_data *args;
// args = (struct thread_data *)arguments;
// thread = args->thread_num;
// length = args->length;
// numberOfTables = args->numberOfTables;*/
// myFasts[thread].clear();
// myFasts[thread].seekg(0, ios::beg);
// string line, fastLine, currentSeq, currentHeader, currentQuality, samHeader, currentMainHeader, samMainHeader;
// string tempStr, localStr;
// bool isNew;
// bool trueFlag=false;
// bool hasRemained=false;
// long long fastLineCounter=0, currentFast=0,readCounter=0, current=0;
// long long currentFastNumber, currentNumber,lastNumber=0;
// int row=0,currentLength,samLength, currentNumOfTables;
// int fake_Row,right=0;
// int seqSize;
// int localCalling=0;
// vector <long long> faileds;
// vector <Path> localPaths;
// vector <Path> chosenArray, orderedchosenarray,filteredChosenArray;//=================================
// vector <Path> tempArray;
// vector <string> final_empty_Cigars;
// vector <string> final_Cigars;
// vector <long long> truePath;
// vector <string> splitted;
// vector <string> samSplitted;
// vector <string> samVector;
// vector < vector<long long> > myTables;
// vector < vector<string> > mySeq;
// vector < vector<string> > myRef;
// vector < vector<int> > myFlags;
// vector<string> Refs;
// vector<double> scores;
// vector<double> Path_M;
// vector<double> Path_I;
// vector<double> Print_M;
// vector<double> Print_I;
// vector<int> scoreFlags;
// vector<int> Flags;
// vector<int> seqSizes;
// vector<long long> positions;
// vector<long> emptyIntervals;
// vector<int> mergeParts;
// vector<bool> quantArray;
// double totalScore=0;
// int total_M=0, total_I=0;
// int remain_Score=0, remain_I=0, remain_M=0;
// int M_cigar=0,I_cigar=0;
// double NScore;
// double N_Path_M;
// double N_Path_I;
// myTables.resize(2*checkNumOfTables(partLength, L_MAX));
// mySeq.resize(checkNumOfTables(partLength, L_MAX));
// myRef.resize(checkNumOfTables(partLength, L_MAX));
// myFlags.resize(checkNumOfTables(partLength, L_MAX));
// errorCollector[thread]=0;
// // All we need has prepared
// // while loop for identifying the reads and acquisition of their tables
// // /*******************************************************************
// getline(myFasts[thread],fastLine);
// Split_Token(splitted, fastLine, currentHeader, currentSeq, currentQuality);
// Split_Header(splitted,currentHeader, currentMainHeader,currentFast, currentFastNumber, currentLength,fake_Row, false, false, true, Pacbio, false);
// fastLineCounter++;
// readCounter++;
// currentNumOfTables = checkNumOfTables(partLength, currentLength);
// truePath.resize(currentNumOfTables);
// for (int k=0;k<currentNumOfTables;k++){
// myTables[2*k+1].push_back(currentFast+k*(partLength-d));
// }
// // /*******************************************************************
// while(getline(mySams[thread],line)){
// {
// vector<string>().swap(samSplitted);
// vector<string>().swap(samVector);
// }
// samVector = split(line, "\t");
// samHeader = samVector[0];
// Split_Header(samSplitted, samHeader, samMainHeader, current, currentNumber,samLength,row,false,true, false, Pacbio, true);
// current = current + row*(partLength-d);
// isNew=true;
// if(currentNumber==currentFastNumber){
// isNew=false;
// lastNumber = currentNumber;
// }
// if(!isNew){
// // Saving the read properties
// Save_Properties(samVector,myFlags, mySeq, myTables, myRef, row, BOWTIE1);
// }
// // /*****************************************************************************
// if(isNew){
// // /*****************************************************************************
// // start analysis of the tables
// for(int l=0;l<currentNumOfTables;l++){
// if(myTables[2*l+1].size()==(myDepth+1)){
// //vector<long long>().swap(myTables[2*l+1]);
// vector<long long>(myTables[2*l+1].begin(), myTables[2*l+1].begin()+1).swap(myTables[2*l+1]);//========================
// vector<long long>().swap(myTables[2*l]);
// vector<string>().swap(mySeq[l]);
// vector<int>().swap(myFlags[l]);
// vector<string>().swap(myRef[l]);
// }
// }
// for(int j=0;j<currentNumOfTables;j++){
// if(myTables[2*j+1].size()!=1){
// int size=(int)myTables[2*j+1].size()-1;
// for(int k=0;k<myTables[2*j].size();k++){
// myTables[2*j][k]=(exp(-0.5*(size-1)))*myTables[2*j][k];
// }
// }
// }
// {
// vector<Path>().swap(tempArray);
// vector<Path>().swap(chosenArray);
// vector<Path>().swap(filteredChosenArray);
// vector<Path>().swap(orderedchosenarray);
// }
// gen_Paths(currentNumOfTables,currentLength,myTables, myFlags, myRef, mySeq, truePath, localPaths,faileds);
// if(!localPaths.empty()){
// Filters(localPaths,tempArray, chosenArray);
// // Finding paths with chosen scores is done
// //Writing on output file
// // Completing the sequence of current Read by LocalAligner class//
// {
// vector<string>().swap(final_Cigars);
// vector<string>().swap(final_empty_Cigars);
// }
// trueFlag=false;
// right=0;
// for (int completing=0;completing<chosenArray.size();completing++){
// emptyIntervals.clear();
// quantArray.resize(currentLength);
// if(chosenArray[completing].clearance()){
// //tempScore = chosenArray[completing].getScore();
// if(chosenArray[completing].hasMore(1)){
// filteredChosenArray.push_back(chosenArray[completing]);
// totalScore = 0;
// localCalling=0;
// seqSize=0;
// total_I=0;
// total_M=0;
// M_cigar=0;
// I_cigar=0;
// remain_I=0;
// remain_M=0;
// remain_Score=0;
// localStr.clear();
// // this path must be reported
// int tempFlag = chosenArray[completing].getFlag();
// for(int j=0;j<currentLength;j++){
// quantArray[j]=false;
// }
// merge_Method(mergeParts,currentNumOfTables,completing, chosenArray, quantArray, final_Cigars,M_cigar,I_cigar);
// emptyInterval_Detector(quantArray, &emptyIntervals, currentFast, currentLength);
// if(emptyIntervals.size()%2==0){
// hasRemained=false;
// }
// else{
// hasRemained=true;
// }
// //**********************************************************
// if(!emptyIntervals.empty()){
// fill_The_Gaps(chosenArray, completing, emptyIntervals,currentSeq, IndelShift, tempFlag, totalScore, seqSize, localCalling,hasRemained, final_empty_Cigars,total_M, total_I);
// chosenArray[completing].setTotalCigar(finalString(final_Cigars,final_empty_Cigars,chosenArray[completing].getIndices()[0]));
// }
// else{
// chosenArray[completing].setTotalCigar(final_Cigars[0]);
// }
// int additionflag = 0;
// for (int chosenarrayelement = 0;chosenarrayelement<orderedchosenarray.size();chosenarrayelement++){
// if (orderedchosenarray[chosenarrayelement].getBirthRow() > chosenArray[completing].getBirthRow()){
// orderedchosenarray.insert(orderedchosenarray.begin()+chosenarrayelement, chosenArray[completing]);
// additionflag = 1;
// break;
// }
// }
// if (additionflag == 0){
// orderedchosenarray.push_back(chosenArray[completing]);
// }
// //**********************************************************
// if(!emptyIntervals.empty() && local_Flag){
// fill_The_Gaps(chosenArray, completing, emptyIntervals,currentSeq, IndelShift, tempFlag, totalScore, seqSize, localCalling,hasRemained, final_empty_Cigars,total_M, total_I);
// NScore = totalScore/seqSize;
// N_Path_I = total_I;
// N_Path_M = total_M;
// if(seqSize > (int)(0.1*currentLength)){
// right++;
// if(chosenArray[completing].isTruePath()){
// trueFlag =true;
// }
// tempStr = L_MAX_Gate(L_MAX,(int)currentSeq.length(),currentSeq);
// if(tempStr.size()!=currentSeq.length()){
// remain_Local(currentLength, chosenArray[completing],remain_M, remain_I, remain_Score,localStr, currentSeq);
// }
// scores.push_back(NScore);
// Path_I.push_back(N_Path_I);
// Path_M.push_back(N_Path_M);
// Print_M.push_back(M_cigar+total_M+remain_M);
// Print_I.push_back(I_cigar+total_I+remain_I);
// seqSizes.push_back(seqSize);
// scoreFlags.push_back(chosenArray[completing].isTruePath());
// positions.push_back(chosenArray[completing].getMain());
// Flags.push_back(chosenArray[completing].getFlag());
// Refs.push_back(chosenArray[completing].getRef());
// O_Strings[thread] << finalString(final_Cigars,final_empty_Cigars,chosenArray[completing].getIndices()[0])+localStr << "\t";
// O_Strings[thread] << mD2Cigar(finalString(final_Cigars,final_empty_Cigars,chosenArray[completing].getIndices()[0])+localStr) << "\t";
// }
// }
// else{
// right++;
// if(chosenArray[completing].isTruePath()){
// trueFlag =true;
// }
// tempStr = L_MAX_Gate(L_MAX,(int)currentSeq.length(),currentSeq);
// if(tempStr.size()!=currentSeq.length() && local_Flag){
// remain_Local(currentLength, chosenArray[completing],remain_M, remain_I, remain_Score,localStr, currentSeq);
// }
// scores.push_back((double)chosenArray[completing].getScore());
// Print_M.push_back(M_cigar+remain_M);
// Print_I.push_back(I_cigar+remain_I);
// scoreFlags.push_back((int)(chosenArray[completing].isTruePath()+2));
// positions.push_back(chosenArray[completing].getMain());
// Flags.push_back(chosenArray[completing].getFlag());
// Refs.push_back(chosenArray[completing].getRef());
// /*if(true){
// if(final_empty_Cigars.size()>18)
// out << "@#$%" << endl;
// for(int j=0;j<quantArray.size();j++){
// out << quantArray[j];
// }
// out << endl;
// out << "remain " << hasRemained << "\t" << emptyIntervals.size() << endl;
// out << final_Cigars.size() << "\t" << final_empty_Cigars.size() << "\t" << currentNumOfTables << endl;
// for(int i=0;i<currentNumOfTables;i++){
// out << chosenArray[completing].getIndices()[i] << "\t";
// }
// }
// out << endl;*/
// O_Strings[thread] << finalString(final_Cigars,final_empty_Cigars,chosenArray[completing].getIndices()[0])+localStr << "\t";
// O_Strings[thread] << mD2Cigar(finalString(final_Cigars,final_empty_Cigars,chosenArray[completing].getIndices()[0])+localStr) << "\t";
// }
// {
// vector<bool>().swap(quantArray);
// vector<long>().swap(emptyIntervals);
// vector<string>().swap(final_Cigars);
// vector<string>().swap(final_empty_Cigars);
// }
// }
// }
// }
// for (int chosenarrayelement = 0;chosenarrayelement<orderedchosenarray.size();chosenarrayelement++){
// for (int chosenarrayelement1 = chosenarrayelement+1;chosenarrayelement1<orderedchosenarray.size();chosenarrayelement1++){
// if (orderedchosenarray[chosenarrayelement].getLastRow() < orderedchosenarray[chosenarrayelement1].getBirthRow()){
// if (forward_Detection(orderedchosenarray[chosenarrayelement].getFlag()) == forward_Detection(orderedchosenarray[chosenarrayelement1].getFlag())){
// if (forward_Detection(orderedchosenarray[chosenarrayelement].getFlag())){
// if((orderedchosenarray[chosenarrayelement1].getBirth()-orderedchosenarray[chosenarrayelement].getLastIndex()<10000) && (orderedchosenarray[chosenarrayelement1].getBirth()-orderedchosenarray[chosenarrayelement].getLastIndex()>0)){
// Join2pathes(orderedchosenarray[chosenarrayelement],orderedchosenarray[chosenarrayelement1]);
// orderedchosenarray.erase(orderedchosenarray.begin()+chosenarrayelement1);
// chosenarrayelement--;
// break;
// }
// }
// if (reverse_Detection(orderedchosenarray[chosenarrayelement].getFlag())){
// if((orderedchosenarray[chosenarrayelement].getLastIndex()-orderedchosenarray[chosenarrayelement1].getBirth()<10000) && (orderedchosenarray[chosenarrayelement].getLastIndex()-orderedchosenarray[chosenarrayelement1].getBirth()>0)){
// Join2pathes(orderedchosenarray[chosenarrayelement],orderedchosenarray[chosenarrayelement1]);
// orderedchosenarray.erase(orderedchosenarray.begin()+chosenarrayelement1);
// chosenarrayelement--;
// break;
// }
// }
// }
// }
// }
// }
// /*for (int chosenarrayelement = 0; chosenarrayelement < orderedchosenarray.size(); chosenarrayelement++) {
// cout << lastNumber << "\t" << orderedchosenarray[chosenarrayelement].getBirth() << "\t";
// for (int cosenArray = 0; cosenArray < orderedchosenarray[chosenarrayelement].getIndices().size(); cosenArray++) {
// cout << orderedchosenarray[chosenarrayelement].getIndices().at(cosenArray) << "\t";
// }
// cout << "\n";
// }*/
// if (orderedchosenarray.size() == 1) {
// if (orderedchosenarray[0].getSpliced()) {
// if (this->reads[lastNumber-1].flag == -1) {
// if (forward_Detection(orderedchosenarray[0].getFlag()) == true) {
// this->reads[lastNumber-1].flag = 5;
// } else {
// this->reads[lastNumber-1].flag = 21;
// }
// this->reads[lastNumber-1].cigar = orderedchosenarray[0].getTotalCigar();
// this->reads[lastNumber-1].firstFragment = orderedchosenarray[0].getBirthRow();
// this->reads[lastNumber-1].lastFragment = orderedchosenarray[0].getLastRow();
// this->reads[lastNumber-1].firstPosition = orderedchosenarray[0].getBirth();
// this->reads[lastNumber-1].lastPosition = orderedchosenarray[0].getLastIndex();
// } else {
// this->readsNext->push_back(iReadNext());
// if (forward_Detection(orderedchosenarray[0].getFlag()) == true) {
// this->readsNext->back().flag = 5;
// } else {
// this->readsNext->back().flag = 21;
// }
// this->readsNext->back().cigar = orderedchosenarray[0].getTotalCigar();
// this->readsNext->back().firstFragment = orderedchosenarray[0].getBirthRow();
// this->readsNext->back().lastFragment = orderedchosenarray[0].getLastRow();
// this->readsNext->back().firstPosition = orderedchosenarray[0].getBirth();
// this->readsNext->back().lastPosition = orderedchosenarray[0].getLastIndex();
// this->readsNext->back().previousIndex = lastNumber;
// }
// if (reverse_Detection(orderedchosenarray[0].getFlag())) {
// bool firstNonZero = false;
// long long startOfExon = 0;
// int startOfExonFrag = 0;
// long long endOfExon = 0;
// int endOfExonFrag = 0;
// for (int partition = 0; partition < orderedchosenarray[0].getIndices().size(); partition++) {
// if (orderedchosenarray[0].getIndices()[partition]>0 && firstNonZero == false) {
// endOfExon = orderedchosenarray[0].getIndices()[partition] + partLength;
// endOfExonFrag = partition;
// firstNonZero = true;
// }
// else if(orderedchosenarray[0].getIndices()[partition]>0 && abs(endOfExon-partLength- (partition-endOfExonFrag)*(partLength-d) - orderedchosenarray[0].getIndices()[partition]) <= ((partition-startOfExonFrag)*error)) {
// startOfExon = orderedchosenarray[0].getIndices()[partition];
// startOfExonFrag = partition;
// if (partition == orderedchosenarray[0].getIndices().size()-1) {
// this->addIntervalToDepth(startOfExon, endOfExon);
// }
// }
// else if (orderedchosenarray[0].getIndices()[partition]>0){
// this->addIntervalToDepth(startOfExon, endOfExon);
// endOfExon = orderedchosenarray[0].getIndices()[partition] + partLength;
// endOfExonFrag = partition;
// }
// }
// } else {
// bool firstNonZero = false;
// long long startOfExon = 0;
// int startOfExonFrag = 0;
// long long endOfExon = 0;
// for (int partition = 0; partition < orderedchosenarray[0].getIndices().size(); partition++) {
// if (orderedchosenarray[0].getIndices()[partition] > 0 && firstNonZero == false) {
// startOfExon = orderedchosenarray[0].getIndices()[partition];
// startOfExonFrag = partition;
// firstNonZero = true;
// }
// else if(orderedchosenarray[0].getIndices()[partition] > 0 && abs(orderedchosenarray[0].getIndices()[partition] - (partition-startOfExonFrag)*(partLength-d) -startOfExon) <= ((partition-startOfExonFrag)*error)) {
// endOfExon = orderedchosenarray[0].getIndices()[partition] + partLength;
// //endOfExonFrag = partition;
// if (partition == orderedchosenarray[0].getIndices().size()-1) {
// this->addIntervalToDepth(startOfExon, endOfExon);
// }
// }
// else if (orderedchosenarray[0].getIndices()[partition] > 0){
// this->addIntervalToDepth(startOfExon, endOfExon);
// startOfExon = orderedchosenarray[0].getIndices()[partition];
// startOfExonFrag = partition;
// }
// }
// }
// //add to spliced database
// //update depth
// }
// else{
// if (this->reads[lastNumber-1].flag == -1) {
// if (forward_Detection(orderedchosenarray[0].getFlag()) == true) {
// this->reads[lastNumber-1].flag = 4;
// } else {
// this->reads[lastNumber-1].flag = 20;
// }
// this->reads[lastNumber-1].firstFragment = orderedchosenarray[0].getBirthRow();
// this->reads[lastNumber-1].lastFragment = orderedchosenarray[0].getLastRow();
// this->reads[lastNumber-1].firstPosition = orderedchosenarray[0].getBirth();
// this->reads[lastNumber-1].lastPosition = orderedchosenarray[0].getLastIndex();
// updateDepth(this->reads[lastNumber-1].firstPosition, this->reads[lastNumber-1].lastPosition, forward_Detection(orderedchosenarray[0].getFlag()), partLength);
// } else {
// this->readsNext->push_back(iReadNext());
// if (forward_Detection(orderedchosenarray[0].getFlag()) == true) {
// this->readsNext->back().flag = 4;
// } else {
// this->readsNext->back().flag = 20;
// }
// this->readsNext->back().firstFragment = orderedchosenarray[0].getBirthRow();
// this->readsNext->back().lastFragment = orderedchosenarray[0].getLastRow();
// this->readsNext->back().firstPosition = orderedchosenarray[0].getBirth();
// this->readsNext->back().lastPosition = orderedchosenarray[0].getLastIndex();
// this->readsNext->back().previousIndex = lastNumber;
// updateDepth(this->readsNext->back().firstPosition, this->readsNext->back().lastPosition, forward_Detection(orderedchosenarray[0].getFlag()), partLength);
// }
// //add to unspliced database
// //update depth
// }
// }
// else{
// for (int element = 0; element < orderedchosenarray.size(); element++) {
// gene tempGene = gene();
// tempGene.inRead.push_back(splicedRead());
// tempGene.inRead.back().index = lastNumber;
// tempGene.inRead.back().cigar = orderedchosenarray[element].getTotalCigar();
// if (reverse_Detection(orderedchosenarray[element].getFlag())) {
// tempGene.start = orderedchosenarray.at(element).getLastIndex();
// tempGene.end = orderedchosenarray.at(element).getBirth();
// if (orderedchosenarray[element].getSpliced()) {
// bool firstNonZero = false;
// long long startOfExon = 0;
// int startOfExonFrag = 0;
// long long endOfExon = 0;
// int endOfExonFrag = 0;
// for (int partition = 0; partition < orderedchosenarray[element].getIndices().size(); partition++) {
// if (orderedchosenarray[element].getIndices()[partition]>0 && firstNonZero == false) {
// endOfExon = orderedchosenarray[element].getIndices()[partition] + partLength;
// endOfExonFrag = partition;
// firstNonZero = true;
// }
// else if(orderedchosenarray[element].getIndices()[partition]>0 && abs(endOfExon-partLength- (partition-endOfExonFrag)*(partLength-d) - orderedchosenarray[element].getIndices()[partition]) <= ((partition-startOfExonFrag)*error)) {
// startOfExon = orderedchosenarray[element].getIndices()[partition];
// startOfExonFrag = partition;
// if (partition == orderedchosenarray[element].getIndices().size()-1) {
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = startOfExon;
// tempGene.inExon.back().end = endOfExon;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = endOfExonFrag;
// tempGene.inRead.back().fragments.back().lastFragment = startOfExonFrag;
// tempGene.inRead.back().fragments.back().firstPosition = endOfExon - partLength;
// tempGene.inRead.back().fragments.back().lastPosition = startOfExon;
// }
// }
// else if (orderedchosenarray[element].getIndices()[partition]>0){
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = startOfExon;
// tempGene.inExon.back().end = endOfExon;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = endOfExonFrag;
// tempGene.inRead.back().fragments.back().lastFragment = startOfExonFrag;
// tempGene.inRead.back().fragments.back().firstPosition = endOfExon - partLength;
// tempGene.inRead.back().fragments.back().lastPosition = startOfExon;
// endOfExon = orderedchosenarray[element].getIndices()[partition] + partLength;
// endOfExonFrag = partition;
// }
// }
// }
// else{
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = orderedchosenarray.at(element).getLastIndex();
// tempGene.inExon.back().end = orderedchosenarray.at(element).getBirth() + partLength;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = orderedchosenarray.at(element).getBirthRow();
// tempGene.inRead.back().fragments.back().lastFragment = orderedchosenarray.at(element).getLastRow();
// tempGene.inRead.back().fragments.back().firstPosition = orderedchosenarray.at(element).getBirth();
// tempGene.inRead.back().fragments.back().lastPosition = orderedchosenarray.at(element).getLastIndex();
// }
// } else {
// tempGene.start = orderedchosenarray.at(element).getBirth();
// tempGene.end = orderedchosenarray.at(element).getLastIndex();
// if (orderedchosenarray[element].getSpliced()) {
// bool firstNonZero = false;
// long long startOfExon = 0;
// int startOfExonFrag = 0;
// long long endOfExon = 0;
// int endOfExonFrag = 0;
// for (int partition = 0; partition < orderedchosenarray[element].getIndices().size(); partition++) {
// if (orderedchosenarray[element].getIndices()[partition] > 0 && firstNonZero == false) {
// startOfExon = orderedchosenarray[element].getIndices()[partition];
// startOfExonFrag = partition;
// firstNonZero = true;
// }
// else if(orderedchosenarray[element].getIndices()[partition] > 0 && abs(orderedchosenarray[element].getIndices()[partition] - (partition-startOfExonFrag)*(partLength-d) -startOfExon) <= ((partition-startOfExonFrag)*error)) {
// endOfExon = orderedchosenarray[element].getIndices()[partition] + partLength;
// endOfExonFrag = partition;
// if (partition == orderedchosenarray[element].getIndices().size()-1) {
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = startOfExon;
// tempGene.inExon.back().end = endOfExon;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = startOfExonFrag;
// tempGene.inRead.back().fragments.back().lastFragment = endOfExonFrag;
// tempGene.inRead.back().fragments.back().firstPosition = startOfExon;
// tempGene.inRead.back().fragments.back().lastPosition = endOfExon - partLength;
// }
// }
// else if (orderedchosenarray[element].getIndices()[partition] > 0){
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = startOfExon;
// tempGene.inExon.back().end = endOfExon;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = startOfExonFrag;
// tempGene.inRead.back().fragments.back().lastFragment = endOfExonFrag;
// tempGene.inRead.back().fragments.back().firstPosition = startOfExon;
// tempGene.inRead.back().fragments.back().lastPosition = endOfExon - partLength;
// startOfExon = orderedchosenarray[element].getIndices()[partition];
// startOfExonFrag = partition;
// }
// }
// }
// else{
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = orderedchosenarray.at(element).getBirth();
// tempGene.inExon.back().end = orderedchosenarray.at(element).getLastIndex() + partLength;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = orderedchosenarray.at(element).getBirthRow();
// tempGene.inRead.back().fragments.back().lastFragment = orderedchosenarray.at(element).getLastRow();
// tempGene.inRead.back().fragments.back().firstPosition = orderedchosenarray.at(element).getBirth();
// tempGene.inRead.back().fragments.back().lastPosition = orderedchosenarray.at(element).getLastIndex();
// }
// }
// tempGene.isForward = forward_Detection(orderedchosenarray[element].getFlag());
// bool isCompatibale = false;
// for (int counterOnInExon = 0; counterOnInExon < tempGene.inExon.size() && !isCompatibale; counterOnInExon++) {
// long long startOnInExon = tempGene.inExon.at(counterOnInExon).start;
// long long endOnInExon = tempGene.inExon.at(counterOnInExon).end;
// for (long long counterOnRealExon = 0; counterOnRealExon < this->iDepth->size(); counterOnRealExon++) {
// if ((this->iDepth->at(counterOnRealExon).start < startOnInExon &&
// startOnInExon < this->iDepth->at(counterOnRealExon).end) ||
// (this->iDepth->at(counterOnRealExon).start < endOnInExon &&
// endOnInExon < this->iDepth->at(counterOnRealExon).end)) {
// isCompatibale = true;
// break;
// }
// }
// }
// if (isCompatibale && !(tempGene.start == tempGene.end && tempGene.start == 0)) {
// //add to spliced database and update depth
// for (int counterOnGeneTempForCigar = 0; counterOnGeneTempForCigar < tempGene.inRead.size(); counterOnGeneTempForCigar++) {
// long long index = tempGene.inRead.at(counterOnGeneTempForCigar).index-1;
// /*string cigarForSplice = "";
// int lengthOfMatch = 0;
// int fragmentAlignedBefore = 0;
// long long firstPositionBefore = 0;
// for (int counterFragsOnInRead = 0; counterFragsOnInRead < tempGene.inRead.at(counterOnGeneTempForCigar).fragments.size(); counterFragsOnInRead++) {
// long long firstPosition = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(counterFragsOnInRead).firstPosition;
// int firstFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(counterFragsOnInRead).firstFragment;
// int lastFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(counterFragsOnInRead).lastFragment;
// if (counterFragsOnInRead == 0) {
// lengthOfMatch = (lastFragment-firstFragment+1)*partLength-(lastFragment-firstFragment)*d;
// cigarForSplice += this->convertNumToStr(lengthOfMatch) + "M";
// fragmentAlignedBefore = firstFragment;
// } else {
// cigarForSplice += this->convertNumToStr(firstPosition-firstPositionBefore-lengthOfMatch) + "N";
// cigarForSplice += this->convertNumToStr((firstFragment-fragmentAlignedBefore)*(partLength-d)) + "R";
// fragmentAlignedBefore = firstFragment;
// lengthOfMatch = (lastFragment-firstFragment+1)*partLength-(lastFragment-firstFragment)*d;
// cigarForSplice += this->convertNumToStr(lengthOfMatch) + "M";
// }
// firstPositionBefore = firstPosition;
// }*/
// long size = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.size();
// if (this->reads[index].flag == -1) {
// this->reads[index].cigar = tempGene.inRead.at(counterOnGeneTempForCigar).cigar;
// this->reads[index].firstPosition = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(0).firstPosition;
// this->reads[index].lastPosition = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(size-1).lastPosition;
// this->reads[index].firstFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(0).firstFragment;
// this->reads[index].lastFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(size-1).lastFragment;
// if (tempGene.inRead.at(counterOnGeneTempForCigar).fragments.size() > 1) {
// if (tempGene.isForward) {
// this->reads[index].flag = 7;
// } else {
// this->reads[index].flag = 23;
// }
// }
// else{
// if (tempGene.isForward) {
// this->reads[index].flag = 6;
// } else {
// this->reads[index].flag = 22;
// }
// }
// } else {
// this->readsNext->push_back(iReadNext());
// this->readsNext->back().cigar = tempGene.inRead.at(counterOnGeneTempForCigar).cigar;
// this->readsNext->back().firstPosition = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(0).firstPosition;
// this->readsNext->back().lastPosition = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(size-1).lastPosition;
// this->readsNext->back().firstFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(0).firstFragment;
// this->readsNext->back().lastFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(size-1).lastFragment;
// if (tempGene.inRead.at(counterOnGeneTempForCigar).fragments.size() > 1) {
// if (tempGene.isForward) {
// this->readsNext->back().flag = 7;
// } else {
// this->readsNext->back().flag = 23;
// }
// }
// else{
// if (tempGene.isForward) {
// this->readsNext->back().flag = 6;
// } else {
// this->readsNext->back().flag = 22;
// }
// }
// this->readsNext->back().previousIndex = lastNumber;
// }
// for (int counterOnExonsGenesForAddingToDepth = 0; counterOnExonsGenesForAddingToDepth < tempGene.inExon.size(); counterOnExonsGenesForAddingToDepth++) {
// this->addIntervalToDepth(tempGene.inExon.at(counterOnExonsGenesForAddingToDepth).start, tempGene.inExon.at(counterOnExonsGenesForAddingToDepth).end);
// }
// }
// }
// else if (!(tempGene.start == tempGene.end && tempGene.start == 0)){
// AddToJenes(tempGene);
// }
// }
// }
// if(right!=0){
// {
// vector<double>().swap(threadReads[thread].scores);
// vector<double>().swap(threadReads[thread].T_I_vector);
// vector<double>().swap(threadReads[thread].T_M_vector);
// vector<int>().swap(threadReads[thread].print_M);
// vector<int>().swap(threadReads[thread].print_I);
// vector<int>().swap(threadReads[thread].flags);
// vector<int>().swap(threadReads[thread].directions);
// vector<int>().swap(threadReads[thread].seqSizes); vector<long long>().swap(threadReads[thread].loc);
// vector<string>().swap(threadReads[thread].references);
// }
// threadReads[thread].readName=currentFast;
// threadReads[thread].index = currentFastNumber;
// threadReads[thread].mainHeader = currentMainHeader;
// threadReads[thread].Histo = false;
// threadReads[thread].Checked = false;
// O_Strings[thread] << currentSeq << "\t" << currentQuality << "\t" << endl;
// if(!trueFlag)
// errorCollector[thread]++;
// for(int j=0;j<scores.size();j++){
// threadReads[thread].scores.push_back(scores[j]);
// threadReads[thread].flags.push_back(scoreFlags[j]);
// if(!Path_I.empty()){
// threadReads[thread].T_I_vector.push_back(Path_I[j]);
// threadReads[thread].T_M_vector.push_back(Path_M[j]);
// threadReads[thread].seqSizes.push_back(seqSizes[j]);
// }
// threadReads[thread].print_I.push_back(Print_I[j]);
// threadReads[thread].print_M.push_back(Print_M[j]);
// threadReads[thread].loc.push_back(positions[j]);
// threadReads[thread].references.push_back(Refs[j]);
// threadReads[thread].directions.push_back(Flags[j]);
// if(scoreFlags[j]==1 || scoreFlags[j]==0)
// threadReads[thread].Histo=true;
// }
// if(!threadReads[thread].scores.empty()){
// threadVectors[thread].push_back(threadReads[thread]);
// }
// scores.clear();
// Path_I.clear();
// Path_M.clear();
// Print_M.clear();
// Print_I.clear();
// scoreFlags.clear();
// seqSizes.clear();
// positions.clear();
// Refs.clear();
// Flags.clear();
// }
// }
// // after analysis the new read we should clear all the vectors
// for(int i=0;i<currentNumOfTables;i++){
// vector<string>().swap(mySeq[i]);
// vector<int>().swap(myFlags[i]);
// vector<string>().swap(myRef[i]);
// vector<long long>().swap(myTables[2*i]);
// vector<long long>().swap(myTables[2*i+1]);
// }
// {
// vector<Path>().swap(localPaths);
// }
// }
// // /*****************************************************************************
// while(isNew){
// if(readCounter==length){
// return;
// }
// else{
// getline(myFasts[thread],fastLine);
// Split_Token(splitted, fastLine, currentHeader, currentSeq, currentQuality);
// Split_Header(splitted,currentHeader, currentMainHeader,currentFast, currentFastNumber, currentLength,fake_Row, false, false, true, Pacbio, false);
// fastLineCounter++;
// readCounter++;
// currentNumOfTables = checkNumOfTables(partLength, currentLength);
// truePath.resize(currentNumOfTables);
// for (int k=0;k<currentNumOfTables;k++){
// myTables[2*k+1].push_back(currentFast+k*(partLength-d));
// }
// }
// if(currentNumber==currentFastNumber){
// isNew=false;
// lastNumber = currentNumber;
// }
// if(!isNew){
// // Saving the read properties for the first time
// Save_Properties(samVector,myFlags, mySeq, myTables, myRef, row, BOWTIE1);
// }
// }
// }
// for(int l=0;l<currentNumOfTables;l++){
// if(myTables[2*l+1].size()==(myDepth+1)){
// vector<long long>().swap(myTables[2*l+1]);
// vector<long long>().swap(myTables[2*l]);
// vector<string>().swap(mySeq[l]);
// vector<int>().swap(myFlags[l]);
// vector<string>().swap(myRef[l]);
// }
// }
// for(int j=0;j<currentNumOfTables;j++){
// if(myTables[2*j+1].size()!=1){
// int size=(int)myTables[2*j+1].size()-1;
// for(int k=0;k<myTables[2*j].size();k++){
// myTables[2*j][k]=(exp(-0.5*(size-1)))*myTables[2*j][k];
// }
// }
// }
// {
// vector<Path>().swap(tempArray);
// vector<Path>().swap(chosenArray);
// }
// gen_Paths(currentNumOfTables,currentLength,myTables, myFlags, myRef, mySeq, truePath, localPaths,faileds);
// // /*************************************
// // /************************************
// if(!localPaths.empty()){
// Filters(localPaths,tempArray, chosenArray);
// // Finding paths with chosen scores is done
// //Writing on output file
// // Completing the sequence of current Read by LocalAligner class//
// {
// vector<string>().swap(final_Cigars);
// vector<string>().swap(final_empty_Cigars);
// }
// trueFlag=false;
// right=0;
// for (int completing=0;completing<chosenArray.size();completing++){
// emptyIntervals.clear();
// quantArray.resize(currentLength);
// if(chosenArray[completing].clearance()){
// //tempScore = chosenArray[completing].getScore();
// if(chosenArray[completing].hasMore(1)){
// filteredChosenArray.push_back(chosenArray[completing]);
// totalScore = 0;
// localCalling=0;
// seqSize=0;
// total_I=0;
// total_M=0;
// M_cigar=0;
// I_cigar=0;
// remain_I=0;
// remain_M=0;
// remain_Score=0;
// localStr.clear();
// // this path must be reported
// int tempFlag = chosenArray[completing].getFlag();
// for(int j=0;j<currentLength;j++){
// quantArray[j]=false;
// }
// merge_Method(mergeParts,currentNumOfTables,completing, chosenArray, quantArray, final_Cigars,M_cigar,I_cigar);
// emptyInterval_Detector(quantArray, &emptyIntervals, currentFast, currentLength);
// if(emptyIntervals.size()%2==0){
// hasRemained=false;
// }
// else{
// hasRemained=true;
// }
// //**********************************************************
// if(final_Cigars.size() > 1){
// fill_The_Gaps(chosenArray, completing, emptyIntervals,currentSeq, IndelShift, tempFlag, totalScore, seqSize, localCalling,hasRemained, final_empty_Cigars,total_M, total_I);
// chosenArray[completing].setTotalCigar(finalString(final_Cigars,final_empty_Cigars,chosenArray[completing].getIndices()[0]));
// }
// else{
// chosenArray[completing].setTotalCigar(final_Cigars[0]);
// }
// int additionflag = 0;
// for (int chosenarrayelement = 0;chosenarrayelement<orderedchosenarray.size();chosenarrayelement++){
// if (orderedchosenarray[chosenarrayelement].getBirthRow() > chosenArray[completing].getBirthRow()){
// orderedchosenarray.insert(orderedchosenarray.begin()+chosenarrayelement, chosenArray[completing]);
// additionflag = 1;
// break;
// }
// }
// if (additionflag == 0){
// orderedchosenarray.push_back(chosenArray[completing]);
// }
// //**********************************************************
// if(!emptyIntervals.empty() && local_Flag){
// fill_The_Gaps(chosenArray, completing, emptyIntervals,currentSeq, IndelShift, tempFlag, totalScore, seqSize, localCalling,hasRemained, final_empty_Cigars,total_M, total_I);
// NScore = totalScore/seqSize;
// N_Path_I = total_I;
// N_Path_M = total_M;
// if(seqSize > (int)(0.1*currentLength)){
// right++;
// if(chosenArray[completing].isTruePath()){
// trueFlag =true;
// }
// tempStr = L_MAX_Gate(L_MAX,(int)currentSeq.length(),currentSeq);
// if(tempStr.size()!=currentSeq.length()){
// remain_Local(currentLength, chosenArray[completing],remain_M, remain_I, remain_Score,localStr, currentSeq);
// }
// scores.push_back(NScore);
// Path_I.push_back(N_Path_I);
// Path_M.push_back(N_Path_M);
// Print_M.push_back(M_cigar+total_M+remain_M);
// Print_I.push_back(I_cigar+total_I+remain_I);
// seqSizes.push_back(seqSize);
// scoreFlags.push_back(chosenArray[completing].isTruePath());
// positions.push_back(chosenArray[completing].getMain());
// Flags.push_back(chosenArray[completing].getFlag());
// Refs.push_back(chosenArray[completing].getRef());
// O_Strings[thread] << finalString(final_Cigars,final_empty_Cigars,chosenArray[completing].getIndices()[0])+localStr << "\t";
// O_Strings[thread] << mD2Cigar(finalString(final_Cigars,final_empty_Cigars,chosenArray[completing].getIndices()[0])+localStr) << "\t";
// }
// }
// else{
// right++;
// if(chosenArray[completing].isTruePath()){
// trueFlag =true;
// }
// tempStr = L_MAX_Gate(L_MAX,(int)currentSeq.length(),currentSeq);
// if(tempStr.size()!=currentSeq.length() && local_Flag){
// remain_Local(currentLength, chosenArray[completing],remain_M, remain_I, remain_Score,localStr, currentSeq);
// }
// scores.push_back((double)chosenArray[completing].getScore());
// Print_M.push_back(M_cigar+remain_M);
// Print_I.push_back(I_cigar+remain_I);
// scoreFlags.push_back((int)(chosenArray[completing].isTruePath()+2));
// positions.push_back(chosenArray[completing].getMain());
// Flags.push_back(chosenArray[completing].getFlag());
// Refs.push_back(chosenArray[completing].getRef());
// O_Strings[thread] << finalString(final_Cigars,final_empty_Cigars,chosenArray[completing].getIndices()[0])+localStr << "\t";
// O_Strings[thread] << mD2Cigar(finalString(final_Cigars,final_empty_Cigars,chosenArray[completing].getIndices()[0])+localStr) << "\t";
// }
// {
// vector<bool>().swap(quantArray);
// vector<long>().swap(emptyIntervals);
// vector<string>().swap(final_Cigars);
// vector<string>().swap(final_empty_Cigars);
// }
// }
// }
// }
// for (int chosenarrayelement = 0;chosenarrayelement<orderedchosenarray.size();chosenarrayelement++){
// for (int chosenarrayelement1 = chosenarrayelement+1;chosenarrayelement1<orderedchosenarray.size();chosenarrayelement1++){
// if (orderedchosenarray[chosenarrayelement].getLastRow() < orderedchosenarray[chosenarrayelement1].getBirthRow()){
// if (forward_Detection(orderedchosenarray[chosenarrayelement].getFlag()) == forward_Detection(orderedchosenarray[chosenarrayelement1].getFlag())){
// if (forward_Detection(orderedchosenarray[chosenarrayelement].getFlag())){
// if((orderedchosenarray[chosenarrayelement1].getBirth()-orderedchosenarray[chosenarrayelement].getLastIndex()<10000) && (orderedchosenarray[chosenarrayelement1].getBirth()-orderedchosenarray[chosenarrayelement].getLastIndex()>0)){
// Join2pathes(orderedchosenarray[chosenarrayelement],orderedchosenarray[chosenarrayelement1]);
// orderedchosenarray.erase(orderedchosenarray.begin()+chosenarrayelement1);
// chosenarrayelement--;
// break;
// }
// }
// if (reverse_Detection(orderedchosenarray[chosenarrayelement].getFlag())){
// if((orderedchosenarray[chosenarrayelement].getLastIndex()-orderedchosenarray[chosenarrayelement1].getBirth()<10000) && (orderedchosenarray[chosenarrayelement].getLastIndex()-orderedchosenarray[chosenarrayelement1].getBirth()>0)){
// Join2pathes(orderedchosenarray[chosenarrayelement],orderedchosenarray[chosenarrayelement1]);
// orderedchosenarray.erase(orderedchosenarray.begin()+chosenarrayelement1);
// chosenarrayelement--;
// break;
// }
// }
// }
// }
// }
// }
// /*for (int chosenarrayelement = 0; chosenarrayelement < orderedchosenarray.size(); chosenarrayelement++) {
// cout << lastNumber << "\t" << orderedchosenarray[chosenarrayelement].getBirth() << "\t";
// for (int cosenArray = 0; cosenArray < orderedchosenarray[chosenarrayelement].getIndices().size(); cosenArray++) {
// cout << orderedchosenarray[chosenarrayelement].getIndices().at(cosenArray) << "\t";
// }
// cout << "\n";
// }*/
// if (orderedchosenarray.size() == 1) {
// if (orderedchosenarray[0].getSpliced()) {
// if (this->reads[lastNumber-1].flag == -1) {
// if (forward_Detection(orderedchosenarray[0].getFlag()) == true) {
// this->reads[lastNumber-1].flag = 5;
// } else {
// this->reads[lastNumber-1].flag = 21;
// }
// this->reads[lastNumber-1].cigar = orderedchosenarray[0].getTotalCigar();
// this->reads[lastNumber-1].firstFragment = orderedchosenarray[0].getBirthRow();
// this->reads[lastNumber-1].lastFragment = orderedchosenarray[0].getLastRow();
// this->reads[lastNumber-1].firstPosition = orderedchosenarray[0].getBirth();
// this->reads[lastNumber-1].lastPosition = orderedchosenarray[0].getLastIndex();
// } else {
// this->readsNext->push_back(iReadNext());
// if (forward_Detection(orderedchosenarray[0].getFlag()) == true) {
// this->readsNext->back().flag = 5;
// } else {
// this->readsNext->back().flag = 21;
// }
// this->readsNext->back().cigar = orderedchosenarray[0].getTotalCigar();
// this->readsNext->back().firstFragment = orderedchosenarray[0].getBirthRow();
// this->readsNext->back().lastFragment = orderedchosenarray[0].getLastRow();
// this->readsNext->back().firstPosition = orderedchosenarray[0].getBirth();
// this->readsNext->back().lastPosition = orderedchosenarray[0].getLastIndex();
// this->readsNext->back().previousIndex = lastNumber;
// }
// if (reverse_Detection(orderedchosenarray[0].getFlag())) {
// bool firstNonZero = false;
// long long startOfExon = 0;
// int startOfExonFrag = 0;
// long long endOfExon = 0;
// int endOfExonFrag = 0;
// for (int partition = 0; partition < orderedchosenarray[0].getIndices().size(); partition++) {
// if (orderedchosenarray[0].getIndices()[partition]>0 && firstNonZero == false) {
// endOfExon = orderedchosenarray[0].getIndices()[partition] + partLength;
// endOfExonFrag = partition;
// firstNonZero = true;
// }
// else if(orderedchosenarray[0].getIndices()[partition]>0 && abs(endOfExon-partLength- (partition-endOfExonFrag)*(partLength-d) - orderedchosenarray[0].getIndices()[partition]) <= ((partition-startOfExonFrag)*error)) {
// startOfExon = orderedchosenarray[0].getIndices()[partition];
// startOfExonFrag = partition;
// if (partition == orderedchosenarray[0].getIndices().size()-1) {
// this->addIntervalToDepth(startOfExon, endOfExon);
// }
// }
// else if (orderedchosenarray[0].getIndices()[partition]>0){
// this->addIntervalToDepth(startOfExon, endOfExon);
// endOfExon = orderedchosenarray[0].getIndices()[partition] + partLength;
// endOfExonFrag = partition;
// }
// }
// } else {
// bool firstNonZero = false;
// long long startOfExon = 0;
// int startOfExonFrag = 0;
// long long endOfExon = 0;
// for (int partition = 0; partition < orderedchosenarray[0].getIndices().size(); partition++) {
// if (orderedchosenarray[0].getIndices()[partition] > 0 && firstNonZero == false) {
// startOfExon = orderedchosenarray[0].getIndices()[partition];
// startOfExonFrag = partition;
// firstNonZero = true;
// }
// else if(orderedchosenarray[0].getIndices()[partition] > 0 && abs(orderedchosenarray[0].getIndices()[partition] - (partition-startOfExonFrag)*(partLength-d) -startOfExon) <= ((partition-startOfExonFrag)*error)) {
// endOfExon = orderedchosenarray[0].getIndices()[partition] + partLength;
// //endOfExonFrag = partition;
// if (partition == orderedchosenarray[0].getIndices().size()-1) {
// this->addIntervalToDepth(startOfExon, endOfExon);
// }
// }
// else if (orderedchosenarray[0].getIndices()[partition] > 0){
// this->addIntervalToDepth(startOfExon, endOfExon);
// startOfExon = orderedchosenarray[0].getIndices()[partition];
// startOfExonFrag = partition;
// }
// }
// }
// //add to spliced database
// //update depth
// }
// else{
// if (this->reads[lastNumber-1].flag == -1) {
// if (forward_Detection(orderedchosenarray[0].getFlag()) == true) {
// this->reads[lastNumber-1].flag = 4;
// } else {
// this->reads[lastNumber-1].flag = 20;
// }
// this->reads[lastNumber-1].firstFragment = orderedchosenarray[0].getBirthRow();
// this->reads[lastNumber-1].lastFragment = orderedchosenarray[0].getLastRow();
// this->reads[lastNumber-1].firstPosition = orderedchosenarray[0].getBirth();
// this->reads[lastNumber-1].lastPosition = orderedchosenarray[0].getLastIndex();
// updateDepth(this->reads[lastNumber-1].firstPosition, this->reads[lastNumber-1].lastPosition, forward_Detection(orderedchosenarray[0].getFlag()), partLength);
// } else {
// this->readsNext->push_back(iReadNext());
// if (forward_Detection(orderedchosenarray[0].getFlag()) == true) {
// this->readsNext->back().flag = 4;
// } else {
// this->readsNext->back().flag = 20;
// }
// this->readsNext->back().firstFragment = orderedchosenarray[0].getBirthRow();
// this->readsNext->back().lastFragment = orderedchosenarray[0].getLastRow();
// this->readsNext->back().firstPosition = orderedchosenarray[0].getBirth();
// this->readsNext->back().lastPosition = orderedchosenarray[0].getLastIndex();
// this->readsNext->back().previousIndex = lastNumber;
// updateDepth(this->readsNext->back().firstPosition, this->readsNext->back().lastPosition, forward_Detection(orderedchosenarray[0].getFlag()), partLength);
// }
// //add to unspliced database
// //update depth
// }
// }
// else{
// for (int element = 0; element < orderedchosenarray.size(); element++) {
// gene tempGene = gene();
// tempGene.inRead.push_back(splicedRead());
// tempGene.inRead.back().index = lastNumber;
// tempGene.inRead.back().cigar = orderedchosenarray[element].getTotalCigar();
// if (reverse_Detection(orderedchosenarray[element].getFlag())) {
// tempGene.start = orderedchosenarray.at(element).getLastIndex();
// tempGene.end = orderedchosenarray.at(element).getBirth();
// if (orderedchosenarray[element].getSpliced()) {
// bool firstNonZero = false;
// long long startOfExon = 0;
// int startOfExonFrag = 0;
// long long endOfExon = 0;
// int endOfExonFrag = 0;
// for (int partition = 0; partition < orderedchosenarray[element].getIndices().size(); partition++) {
// if (orderedchosenarray[element].getIndices()[partition]>0 && firstNonZero == false) {
// endOfExon = orderedchosenarray[element].getIndices()[partition] + partLength;
// endOfExonFrag = partition;
// firstNonZero = true;
// }
// else if(orderedchosenarray[element].getIndices()[partition]>0 && abs(endOfExon-partLength- (partition-endOfExonFrag)*(partLength-d) - orderedchosenarray[element].getIndices()[partition]) <= ((partition-startOfExonFrag)*error)) {
// startOfExon = orderedchosenarray[element].getIndices()[partition];
// startOfExonFrag = partition;
// if (partition == orderedchosenarray[element].getIndices().size()-1) {
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = startOfExon;
// tempGene.inExon.back().end = endOfExon;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = endOfExonFrag;
// tempGene.inRead.back().fragments.back().lastFragment = startOfExonFrag;
// tempGene.inRead.back().fragments.back().firstPosition = endOfExon - partLength;
// tempGene.inRead.back().fragments.back().lastPosition = startOfExon;
// }
// }
// else if (orderedchosenarray[element].getIndices()[partition]>0){
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = startOfExon;
// tempGene.inExon.back().end = endOfExon;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = endOfExonFrag;
// tempGene.inRead.back().fragments.back().lastFragment = startOfExonFrag;
// tempGene.inRead.back().fragments.back().firstPosition = endOfExon - partLength;
// tempGene.inRead.back().fragments.back().lastPosition = startOfExon;
// endOfExon = orderedchosenarray[element].getIndices()[partition] + partLength;
// endOfExonFrag = partition;
// }
// }
// }
// else{
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = orderedchosenarray.at(element).getLastIndex();
// tempGene.inExon.back().end = orderedchosenarray.at(element).getBirth() + partLength;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = orderedchosenarray.at(element).getBirthRow();
// tempGene.inRead.back().fragments.back().lastFragment = orderedchosenarray.at(element).getLastRow();
// tempGene.inRead.back().fragments.back().firstPosition = orderedchosenarray.at(element).getBirth();
// tempGene.inRead.back().fragments.back().lastPosition = orderedchosenarray.at(element).getLastIndex();
// }
// } else {
// tempGene.start = orderedchosenarray.at(element).getBirth();
// tempGene.end = orderedchosenarray.at(element).getLastIndex();
// if (orderedchosenarray[element].getSpliced()) {
// bool firstNonZero = false;
// long long startOfExon = 0;
// int startOfExonFrag = 0;
// long long endOfExon = 0;
// int endOfExonFrag = 0;
// for (int partition = 0; partition < orderedchosenarray[element].getIndices().size(); partition++) {
// if (orderedchosenarray[element].getIndices()[partition] > 0 && firstNonZero == false) {
// startOfExon = orderedchosenarray[element].getIndices()[partition];
// startOfExonFrag = partition;
// firstNonZero = true;
// }
// else if(orderedchosenarray[element].getIndices()[partition] > 0 && abs(orderedchosenarray[element].getIndices()[partition] - (partition-startOfExonFrag)*(partLength-d) -startOfExon) <= ((partition-startOfExonFrag)*error)) {
// endOfExon = orderedchosenarray[element].getIndices()[partition] + partLength;
// endOfExonFrag = partition;
// if (partition == orderedchosenarray[element].getIndices().size()-1) {
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = startOfExon;
// tempGene.inExon.back().end = endOfExon;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = startOfExonFrag;
// tempGene.inRead.back().fragments.back().lastFragment = endOfExonFrag;
// tempGene.inRead.back().fragments.back().firstPosition = startOfExon;
// tempGene.inRead.back().fragments.back().lastPosition = endOfExon - partLength;
// }
// }
// else if (orderedchosenarray[element].getIndices()[partition] > 0){
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = startOfExon;
// tempGene.inExon.back().end = endOfExon;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = startOfExonFrag;
// tempGene.inRead.back().fragments.back().lastFragment = endOfExonFrag;
// tempGene.inRead.back().fragments.back().firstPosition = startOfExon;
// tempGene.inRead.back().fragments.back().lastPosition = endOfExon - partLength;
// startOfExon = orderedchosenarray[element].getIndices()[partition];
// startOfExonFrag = partition;
// }
// }
// }
// else{
// tempGene.inExon.push_back(interval());
// tempGene.inExon.back().start = orderedchosenarray.at(element).getBirth();
// tempGene.inExon.back().end = orderedchosenarray.at(element).getLastIndex() + partLength;
// tempGene.inRead.back().fragments.push_back(splicedFrag());
// tempGene.inRead.back().fragments.back().firstFragment = orderedchosenarray.at(element).getBirthRow();
// tempGene.inRead.back().fragments.back().lastFragment = orderedchosenarray.at(element).getLastRow();
// tempGene.inRead.back().fragments.back().firstPosition = orderedchosenarray.at(element).getBirth();
// tempGene.inRead.back().fragments.back().lastPosition = orderedchosenarray.at(element).getLastIndex();
// }
// }
// tempGene.isForward = forward_Detection(orderedchosenarray[element].getFlag());
// bool isCompatibale = false;
// for (int counterOnInExon = 0; counterOnInExon < tempGene.inExon.size() && !isCompatibale; counterOnInExon++) {
// long long startOnInExon = tempGene.inExon.at(counterOnInExon).start;
// long long endOnInExon = tempGene.inExon.at(counterOnInExon).end;
// for (long long counterOnRealExon = 0; counterOnRealExon < this->iDepth->size(); counterOnRealExon++) {
// if ((this->iDepth->at(counterOnRealExon).start < startOnInExon &&
// startOnInExon < this->iDepth->at(counterOnRealExon).end) ||
// (this->iDepth->at(counterOnRealExon).start < endOnInExon &&
// endOnInExon < this->iDepth->at(counterOnRealExon).end)) {
// isCompatibale = true;
// break;
// }
// }
// }
// if (isCompatibale && !(tempGene.start == tempGene.end && tempGene.start == 0)) {
// //add to spliced database and update depth
// for (int counterOnGeneTempForCigar = 0; counterOnGeneTempForCigar < tempGene.inRead.size(); counterOnGeneTempForCigar++) {
// long long index = tempGene.inRead.at(counterOnGeneTempForCigar).index-1;
// /*string cigarForSplice = "";
// int lengthOfMatch = 0;
// int fragmentAlignedBefore = 0;
// long long firstPositionBefore = 0;
// for (int counterFragsOnInRead = 0; counterFragsOnInRead < tempGene.inRead.at(counterOnGeneTempForCigar).fragments.size(); counterFragsOnInRead++) {
// long long firstPosition = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(counterFragsOnInRead).firstPosition;
// int firstFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(counterFragsOnInRead).firstFragment;
// int lastFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(counterFragsOnInRead).lastFragment;
// if (counterFragsOnInRead == 0) {
// lengthOfMatch = (lastFragment-firstFragment+1)*partLength-(lastFragment-firstFragment)*d;
// cigarForSplice += this->convertNumToStr(lengthOfMatch) + "M";
// fragmentAlignedBefore = firstFragment;
// } else {
// cigarForSplice += this->convertNumToStr(firstPosition-firstPositionBefore-lengthOfMatch) + "N";
// cigarForSplice += this->convertNumToStr((firstFragment-fragmentAlignedBefore)*(partLength-d)) + "R";
// fragmentAlignedBefore = firstFragment;
// lengthOfMatch = (lastFragment-firstFragment+1)*partLength-(lastFragment-firstFragment)*d;
// cigarForSplice += this->convertNumToStr(lengthOfMatch) + "M";
// }
// firstPositionBefore = firstPosition;
// }*/
// long size = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.size();
// if (this->reads[index].flag == -1) {
// this->reads[index].cigar = tempGene.inRead.at(counterOnGeneTempForCigar).cigar;
// this->reads[index].firstPosition = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(0).firstPosition;
// this->reads[index].lastPosition = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(size-1).lastPosition;
// this->reads[index].firstFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(0).firstFragment;
// this->reads[index].lastFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(size-1).lastFragment;
// if (tempGene.inRead.at(counterOnGeneTempForCigar).fragments.size() > 1) {
// if (tempGene.isForward) {
// this->reads[index].flag = 7;
// } else {
// this->reads[index].flag = 23;
// }
// }
// else{
// if (tempGene.isForward) {
// this->reads[index].flag = 6;
// } else {
// this->reads[index].flag = 22;
// }
// }
// } else {
// this->readsNext->push_back(iReadNext());
// this->readsNext->back().cigar = tempGene.inRead.at(counterOnGeneTempForCigar).cigar;
// this->readsNext->back().firstPosition = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(0).firstPosition;
// this->readsNext->back().lastPosition = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(size-1).lastPosition;
// this->readsNext->back().firstFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(0).firstFragment;
// this->readsNext->back().lastFragment = tempGene.inRead.at(counterOnGeneTempForCigar).fragments.at(size-1).lastFragment;
// if (tempGene.inRead.at(counterOnGeneTempForCigar).fragments.size() > 1) {
// if (tempGene.isForward) {
// this->readsNext->back().flag = 7;
// } else {
// this->readsNext->back().flag = 23;
// }
// }
// else{
// if (tempGene.isForward) {
// this->readsNext->back().flag = 6;
// } else {
// this->readsNext->back().flag = 22;
// }
// }
// this->readsNext->back().previousIndex = lastNumber;
// }
// for (int counterOnExonsGenesForAddingToDepth = 0; counterOnExonsGenesForAddingToDepth < tempGene.inExon.size(); counterOnExonsGenesForAddingToDepth++) {
// this->addIntervalToDepth(tempGene.inExon.at(counterOnExonsGenesForAddingToDepth).start, tempGene.inExon.at(counterOnExonsGenesForAddingToDepth).end);
// }
// }
// }
// else if (!(tempGene.start == tempGene.end && tempGene.start == 0)){
// AddToJenes(tempGene);
// }
// }
// }
// if(right!=0){
// {
// vector<double>().swap(threadReads[thread].scores);
// vector<double>().swap(threadReads[thread].T_I_vector);
// vector<double>().swap(threadReads[thread].T_M_vector);
// vector<int>().swap(threadReads[thread].print_M);
// vector<int>().swap(threadReads[thread].print_I);
// vector<int>().swap(threadReads[thread].flags);
// vector<int>().swap(threadReads[thread].directions);
// vector<int>().swap(threadReads[thread].seqSizes); vector<long long>().swap(threadReads[thread].loc);
// vector<string>().swap(threadReads[thread].references);
// }
// threadReads[thread].readName=currentFast;
// threadReads[thread].index = currentFastNumber;
// threadReads[thread].mainHeader = currentMainHeader;
// threadReads[thread].Histo = false;
// threadReads[thread].Checked = false;
// O_Strings[thread] << currentSeq << "\t" << currentQuality << "\t" << endl;
// if(!trueFlag)
// errorCollector[thread]++;
// for(int j=0;j<scores.size();j++){
// threadReads[thread].scores.push_back(scores[j]);
// threadReads[thread].flags.push_back(scoreFlags[j]);
// if(!Path_I.empty()){
// threadReads[thread].seqSizes.push_back(seqSizes[j]);
// threadReads[thread].T_I_vector.push_back(Path_I[j]);
// threadReads[thread].T_M_vector.push_back(Path_M[j]);
// }
// threadReads[thread].print_I.push_back(Print_I[j]);
// threadReads[thread].print_M.push_back(Print_M[j]);
// threadReads[thread].loc.push_back(positions[j]);
// threadReads[thread].references.push_back(Refs[j]);
// threadReads[thread].directions.push_back(Flags[j]);
// if(scoreFlags[j]==1 || scoreFlags[j]==0)
// threadReads[thread].Histo=true;
// }
// if(!threadReads[thread].scores.empty()){
// threadVectors[thread].push_back(threadReads[thread]);
// }
// scores.clear();
// Path_I.clear();
// Path_M.clear();
// Print_M.clear();
// Print_I.clear();
// scoreFlags.clear();
// seqSizes.clear();
// positions.clear();
// Refs.clear();
// Flags.clear();
// }
// }
// // after analysis the new read we should clear all the vectors
// for(int i=0;i<currentNumOfTables;i++){
// vector<string>().swap(mySeq[i]);
// vector<int>().swap(myFlags[i]);
// vector<string>().swap(myRef[i]);
// vector<long long>().swap(myTables[2*i]);
// vector<long long>().swap(myTables[2*i+1]);
// }
// {
// vector<Path>().swap(localPaths);
// }
//}
//void Assignment::Join2pathes(Path &path1,Path &path2){
// if (path2.isTruePath()){
// path1.setTruePath();
// }
// for(int i=0;i<path1.getTable().size();i++){
// if (path2.getTable()[i]!=-1){
// path1.setTable(i,path2.getTable()[i]);
// }
// }
// for(int i=0;i<path1.getIndices().size();i++){
// if (path2.getIndices()[i]!=0){
// path1.setIndexTable(i,path2.getIndices()[i]);
// }
// }
// for (int i=0; i<path1.getCigars().size(); i++) {
// if (path2.getCigars()[i].size()>0){
// path1.addToCigars(path2.getCigars()[i], i);
// }
// }
// //***********************************************
// if (forward_Detection(path1.getFlag())) {
// long distanceInGenome = path2.getBirth() - path1.getLastIndex();
// int distanceInRead = (partLength-d)*(path2.getBirthRow() - path1.getLastRow());
// path1.setTotalCigar(path1.getTotalCigar()+"N"+convertNumToStr(distanceInGenome)+"N"+convertNumToStr(distanceInRead)+"R"+path2.getTotalCigar());
// }
// else{
// long distanceInGenome = path1.getLastIndex() - path2.getBirth();
// int distanceInRead = (partLength-d)*(path2.getBirthRow() - path1.getLastRow());
// path1.setTotalCigar(path1.getTotalCigar()+"N"+convertNumToStr(distanceInGenome)+"N"+convertNumToStr(distanceInRead)+"R"+path2.getTotalCigar());
// }
// //***********************************************
// path1.addScore(path2.getScore());
// path1.joining();
//}
//string Assignment::Glue_cigars(string first, string second) {
// string collect;
// string cut_first, cut_second;
// if(isdigit(first[first.length()-1]) && isdigit(second[0])){
// string first_digits;
// string second_digits;
// int i,j;
// for( i=(int)first.length()-1;i>=0;i--){
// if(isdigit(first[i])){
// first_digits += first[i];
// }
// else{
// break;
// }
// }
// for( j=0;j<second.length();j++){
// if(isdigit(second[j])){
// second_digits += second[j];
// }
// else{
// break;
// }
// }
// cut_first = first.substr(0,i+1);
// cut_second = second.substr(j);
// collect = cut_first + NumToStr(atoi(first_digits.c_str())+atoi(second_digits.c_str()));
// collect += cut_second;
// }
// else{
// collect = first+second;
// }
// return collect;
//}
//long long Assignment::Calculate(long long filledAll, int numberOfThreads) {
// long long step;
// step = floor(filledAll / numberOfThreads);
// return step;
//}
//int Assignment::checkNumOfTables(int partLength, int V_L) {
// int numOfTables;
// if(V_L < partLength){
// numOfTables=1;
// return numOfTables;
// }
// else{
// numOfTables=(int)(floor((V_L-partLength)/(partLength-d)))+1;
// return numOfTables;
// }
//}
//int Assignment::flagDetection(long long ReportedFlag) {
// int flag=0;
// if (ReportedFlag==4){
// // this flag means the read is not aligned
// flag=4;
// }
// else if (ReportedFlag==0){
// // this flag means the read is forward
// flag = 0;
// }
// else if(ReportedFlag%256==0){
// // this flag means this read is aligned forwardly
// // and has more than one option for alignment
// flag = 0;
// }
// else if(ReportedFlag==16){
// // this flag means the read is reversed
// flag = 16;
// }
// else if((ReportedFlag-256)!=0){
// // this flag means this read is reversed
// // and has more than one option for alignment
// flag = 16;
// }
// return flag;
//}
//int Assignment::numeralCounter(int number) {
// return floor(log10(number))+1;
//}
//void Assignment::emptyInterval_Detector(vector<bool> &quantArray, vector<long> *emptyIntervals, long long current, int currentLength) {
// bool flag=false,flag1=false;//**********************************************************
// for(int i=0;i<currentLength;i++){
// if(quantArray[i]){
// if(flag){
// emptyIntervals->push_back(i-1);
// }
// flag = false;
// flag1 = true;//**********************************************************
// }
// else{
// if(!flag && flag1){//**********************************************************
// flag = true;
// emptyIntervals->push_back(i);
// }
// }
// }
//}
//bool Assignment::histo_Permission() {
// long counter=0;
// for(int i=0;i<allReads.size();i++){
// for(int j=0;j<allReads[i].scores.size();j++){
// if(allReads[i].flags[j]==1 || allReads[i].flags[j]==0)
// counter++;
// }
// }
// if(counter>=100){
// return true;
// }
// else{
// return false;
// }
//}
//double Assignment::findInitMax() {
// bool flag=false;
// double max = 0.0;
// for(int i=0;i<allReads.size();i++){
// for(int j=0;j<allReads[i].scores.size();j++){
// if(allReads[i].flags[j]==0 || allReads[i].flags[j]==1){
// max = allReads[i].scores[j];
// flag=true;
// break;
// }
// }
// if(flag)
// break;
// }
// return max;
//}
//string Assignment::indexMaker(int index) {
// int numberOfDigits;
// int numberOfIndexDigits;
// std::ostringstream str;
// if(index==0){
// for(int i=0;i<numeralCounter(numberOfTables);i++){
// str << "0";
// }
// }
// else{
// numberOfDigits = numeralCounter(numberOfTables);
// numberOfIndexDigits = numeralCounter(index);
// for(int i=0;i<(numberOfDigits-numberOfIndexDigits);i++){
// str << "0";
// }
// str << index;
// }
// return str.str();
//}
//string Assignment::complement(char character) {
// string rev;
// if(character == 'A'){
// rev="T";
// }
// if(character == 'C'){
// rev="G";
// }
// if(character=='G'){
// rev="C";
// }
// if(character=='T'){
// rev="A";
// }
// if(character=='a'){
// rev="t";
// }
// if(character=='c'){
// rev="g";
// }
// if(character=='g'){
// rev="c";
// }
// if(character=='t'){
// rev="a";
// }
// if(character=='N' || character=='n'){
// rev="N";
// }
// return rev;
//}
//std::string Assignment::accessGenome(long long index, int flag, long long length, long long refPos) {
// struct stat sb;
// off_t len;
// char *p;
// int fd;
// ifstream ifstr(genomeName.c_str());
// string firstLine;
// getline(ifstr, firstLine);
// ifstr.close();
// index += refPos+(index/characterPerRow);
// fd = open(genomeName.c_str(), O_RDONLY);
// if (fd == -1)
// perror ("open");
// if (fstat (fd, &sb) == -1)
// perror ("fstat");
// p = (char *)mmap (0, sb.st_size, PROT_READ, MAP_SHARED, fd, 0);
// if (close (fd) == -1)
// perror ("close");
// string temp = "";
// //index--;
// if(forward_Detection(flag)){
// for (len = index; temp.size() < length; ){
// if (p[len] != '\n')
// temp += p[len];
// ++len;
// }
// }
// else if(reverse_Detection(flag)){
// for (len = (index+length); temp.size() < (length); ){
// temp += complement(p[len]);
// --len;
// }
// }
// if (munmap (p, sb.st_size) == -1)
// perror ("munmap");
// return temp;
//}
//bool myComparison(Path first, Path second) {
// return first.getScore() < second.getScore();
//}
//bool vectorComparison(Read_Vector first ,Read_Vector second) {
// return first.size < second.size;
//}
//bool littleSort(littleStruct first, littleStruct second) {
// return first.score < second.score;
//}
//string Assignment::finalString(vector<string> &final_Cigars, vector<string> &final_empty_Cigars, long long first_Part){
// string outStr;
// int empty_pointer=0, filled_pointer=0;
// bool readFilled=false, readEmpty=false;
// if(local_Flag){
// if(first_Part==0){
// outStr = final_empty_Cigars[empty_pointer];
// empty_pointer++;
// readFilled=true;
// }
// else{
// outStr = final_Cigars[filled_pointer];
// filled_pointer++;
// readEmpty=true;
// }
// while(empty_pointer<final_empty_Cigars.size() || filled_pointer<final_Cigars.size()){
// if(readFilled){
// if(final_Cigars.empty() || filled_pointer==(final_Cigars.size())){
// readEmpty=true;
// readFilled=false;
// }
// else{
// outStr = Glue_cigars(outStr,final_Cigars[filled_pointer]);
// readFilled=false;
// readEmpty=true;
// filled_pointer++;
// }
// }
// if(readEmpty){
// if(final_empty_Cigars.empty() || empty_pointer==(final_empty_Cigars.size())){
// readEmpty=false;
// readFilled=true;
// }
// else{
// outStr = Glue_cigars(outStr,final_empty_Cigars[empty_pointer]);
// readEmpty=false;
// readFilled=true;
// empty_pointer++;
// }
// }
// }
// return outStr;
// }
// else{
// for(int i=0;i<final_Cigars.size();i++){
// outStr = Glue_cigars(outStr,final_Cigars[i]);
// }
// return outStr;
// }
//}
//string Assignment::L_MAX_Gate(int L_max, int currentLength, string seq) {
// if(currentLength<=L_max){
// return seq;
// }
// else{
// string temp=seq.substr(0,L_max);
// return temp;
// }
//}
//int Assignment::get_mD_Length(string mD, int &M_cigar, int &I_cigar) {
// bool misMatch=false,indel=false,match=false;
// int temp=0;
// string str;
// for(int i=0;i<mD.length();i++){
// if(isalpha(mD[i])){
// if(indel){
// temp++;
// I_cigar++;
// continue;
// }
// else{
// if(match){
// int matchNumber = atoi(str.c_str());
// temp+=matchNumber;
// str.clear();
// match=false;
// }
// misMatch=true;
// M_cigar++;
// temp++;
// continue;
// }
// }
// else if(!isalnum(mD[i])){
// indel=true;
// if(match){
// int matchNumber = atoi(str.c_str());
// temp+=matchNumber;
// str.clear();
// match=false;
// }
// else if(misMatch){
// misMatch=false;
// }
// continue;
// }
// else{
// if(misMatch){
// misMatch=false;
// }
// else if(indel){
// indel=false;
// }
// match=true;
// str+=mD[i];
// continue;
// }
// }
// if(match){
// int matchNumber = atoi(str.c_str());
// temp+=matchNumber;
// str.clear();
// }
// return temp;
//}
//void Assignment::Save_Properties(vector<string> &samVector,vector< vector<int> > &myFlags,vector< vector<string> > &mySeq ,vector< vector<long long> > &myTables,vector< vector<string> > &myRef,int row, int mode) {
// string scoreFlag,cigarFlag, currentCigar, currentRef, tempString;
// int tempFlag, currentScore=0;
// long long currentAlign=0;
// bool NullFlag=false;
// cigarFlag = "MD:Z:";
// if(mode==BOWTIE2)
// scoreFlag = "AS:i:";
// else if(mode==BOWTIE1)
// scoreFlag = "NM:i:";
// for (int i=0;i<samVector.size();i++) {
// if(i==1){
// //Reading the flag of the Read
// // flags 0 and 256 mean reverse alignment
// // flags 16 and 272 mean forward alignment
// // flag 4 means non-aligned read
// // other flags will be added
// if(myFlags[row].size() < (myDepth)){
// tempString = samVector[i];
// tempFlag = flagDetection(atoll(tempString.c_str()));
// if(tempFlag==4){
// NullFlag = true;
// currentAlign=0;
// currentCigar="null";
// currentScore=0;
// }
// }
// }
// if(!NullFlag){
// if(i==3){
// //Saving the position of the Aligned Read
// if(myTables[2*row+1].size()<(myDepth+1)){
// tempString = samVector[i];
// currentAlign = 0;
// if (tempString != "*" && tempString != "0") {
// currentAlign = atoll(tempString.c_str());
// }
// }
// }
// if(i==2){
// //Saving the reference
// if(myRef[row].size()<(myDepth)){
// tempString = samVector[i];
// if (tempString != "*" && tempString != "0") {
// currentRef = tempString.c_str();
// }
// }
// }
// if(samVector[i].find(scoreFlag)!=std::string::npos){
// //Saving the Score of the Read
// if(myTables[2*row].size()<(myDepth)){
// tempString = samVector[i];
// currentScore = 0;
// if(tempString !="*" && tempString != "0"){
// tempString = tempString.substr(scoreFlag.length());
// currentScore = atoi(tempString.c_str());
// if(mode==BOWTIE1)
// currentScore = MATCH*partLength - (MATCH-MISPEN)*currentScore;
// }
// }
// }
// if(samVector[i].find(cigarFlag)!=std::string::npos){
// //Saving cigar string if it exists
// if(mySeq[row].size()<(myDepth)){
// tempString = samVector[i];
// tempString = tempString.substr(cigarFlag.length());
// currentCigar = tempString;
// }
// }
// }
// }
// if(!NullFlag){
// if(myTables[2*row+1].size()<(myDepth+1)){
// myFlags[row].push_back(tempFlag);
// myTables[2*row+1].push_back(currentAlign);
// myTables[2*row].push_back(currentScore);
// mySeq[row].push_back(currentCigar);
// myRef[row].push_back(currentRef);
// }
// }
// return;
//}
//void Assignment::gen_Paths(int currentNumOfTables, int currentLength, vector< vector <long long> > &myTables, vector< vector <int> > &myFlags, vector< vector<string> > &myRef, vector <vector <string> > &mySeq, vector<long long> &truePath, vector<Path> &localPaths, vector <long long> &faileds) {
// vector <Path> minorLocalPaths;
// Path currentPath;
// for (int j = 0; j < currentNumOfTables; j++){
// long long counter = 0;
// //Initializing all paths by creating Path objects in first row
// if (!myTables[0].empty() && j == 0 && myTables[1][counter+1]!=0 && myTables[1][counter+1]!=-1){
// truePath[0] = myTables[1][counter];
// while ((counter+1)<myTables[1].size() && myTables[1][counter + 1] != 0 && myTables[1][counter+1]!=-1){
// localPaths.push_back(Path(0,myTables[1][counter + 1], currentNumOfTables,myFlags[0][counter],partLength, d, myRef[0][counter], currentLength));
// localPaths[localPaths.size()-1].setTable(0, 0);
// localPaths[localPaths.size()-1].addScore(myTables[0][counter]);
// localPaths[localPaths.size()-1].setIndexTable(0,myTables[1][counter + 1]);
// localPaths[localPaths.size()-1].addToCigars(mySeq[0][counter],0);
// long long pos_dam1=localPaths[localPaths.size()-1].getBirth();
// if(reverse_Detection(localPaths[localPaths.size()-1].getFlag())){
// pos_dam1=pos_dam1-currentLength;
// }
// if (std::abs(truePath[0]-pos_dam1) <= errorInIndex) {
// localPaths[localPaths.size()-1].setTruePath();
// }
// counter++;
// }
// }
// else if((j==0 && myTables[0].empty()) || (j==0 && myTables[1][counter+1]==0)||(j==0 && myTables[1][counter+1]==-1)){
// // make no new paths
// continue;
// }
// else if(j!=0){
// if(j!=currentNumOfTables-1 &&(myTables[2*j].empty() || myTables[2*j+1][counter+1]==0 || myTables[2*j+1][counter+1]==-1)){
// // make no new paths in next lines
// continue;
// }
// else if(!myTables[2*j].empty() && myTables[2*j+1][counter+1]!=0 && myTables[2*j+1][counter+1]!=-1){
// truePath[j] = myTables[2 * j + 1][0];
// while (myTables[2 * j + 1][counter + 1] != -1 && myTables[2 * j + 1][counter + 1] != 0 && (counter+1)<myTables[2*j+1].size()) {
// int flag = 0;
// for (int p = 0; p < localPaths.size(); p++) {
// long long equivalent = 0;
// int PathFlag = 0;
// int PartFlag = 0;
// string PartRef, PathRef;
// currentPath = localPaths[p];
// PathFlag = currentPath.getFlag();
// PathRef = currentPath.getRef();
// PartFlag = myFlags[j][counter];
// PartRef = myRef[j][counter];
// if(forward_Detection(PathFlag)){
// // this means the read is aligned forwardly
// equivalent = currentPath.getBirth() + (j-currentPath.getBirthRow())*(partLength-d);
// }
// else if(reverse_Detection(PathFlag)){
// // this means the read is aligned reservely
// equivalent = currentPath.getBirth()-(j - currentPath.getBirthRow())*(partLength-d);
// }
// if ((std::abs(myTables[2*j+1][counter+1]-equivalent)<=(j*error))&&(PartFlag==PathFlag)&&(PartRef==PathRef)) {
// localPaths[p].addScore(myTables[2 * j][counter]);
// localPaths[p].setTable(j, j);
// localPaths[p].setIndexTable(j,myTables[2 * j + 1][counter + 1]);
// localPaths[p].addToCigars(mySeq[j][counter],j);
// flag = 1;
// }
// }
// if (flag == 0) {
// minorLocalPaths.push_back(Path(j,myTables[2 * j + 1][counter + 1], currentNumOfTables,myFlags[j][counter],partLength, d,myRef[j][counter], currentLength));
// minorLocalPaths[minorLocalPaths.size()-1].setTable(j, j);
// minorLocalPaths[minorLocalPaths.size()-1].addScore(myTables[2*j][counter]);
// minorLocalPaths[minorLocalPaths.size()-1].setIndexTable(j,myTables[2 * j + 1][counter + 1]);
// minorLocalPaths[minorLocalPaths.size()-1].addToCigars(mySeq[j][counter],j);
// long long pos_dam=minorLocalPaths[minorLocalPaths.size()-1].getBirth();
// if(reverse_Detection(minorLocalPaths[minorLocalPaths.size()-1].getFlag())){
// pos_dam=pos_dam-currentLength+(j*(partLength-d));
// }
// if (std::abs(truePath[j]-pos_dam)<=errorInIndex) {
// minorLocalPaths[minorLocalPaths.size()-1].setTruePath();
// }
// }
// counter++;
// }
// // copying the minor array into global array of Paths
// if (!minorLocalPaths.empty()) {
// localPaths.insert(localPaths.end(), minorLocalPaths.begin(), minorLocalPaths.end());
// {
// vector<Path>().swap(minorLocalPaths);
// }
// }
// }
// else if(j==currentNumOfTables-1 && localPaths.size()==0){
// // do sth for failed indices;
// faileds.push_back(myTables[1][counter]);
// for(int i=0;i<currentNumOfTables;i++){
// vector<long long>().swap(myTables[2*i]);
// vector<long long>().swap(myTables[2*i+1]);
// vector<string>().swap(myRef[i]);
// vector<string>().swap(mySeq[i]);
// vector<int>().swap(myFlags[i]);
// }
// vector<Path>().swap(localPaths);
// continue;
// }
// }
// }
// return;
//}
//void Assignment::Filters(vector<Path> &localPaths, vector<Path> &tempArray, vector<Path> &chosenArray) {
// std::sort(localPaths.begin(), localPaths.end(), myComparison);
// //Choosing the scores
// for (int score = (int)localPaths.size()-1;score!=-1; score--) {
// //testing << "before filtering: " << localPaths[score].getMain() << " score: " << localPaths[score].getScore() << endl;
// // Filtering the scores by basicThreshold
// if(localPaths[localPaths.size()-1].getScore()<0){
// //if(localPaths[score].getScore() >= 2*(localPaths[localPaths.size() - 1].getScore())){
// tempArray.push_back(localPaths[score]);
// //}
// }
// else{
// //if (localPaths[score].getScore() >= (localPaths[localPaths.size() - 1].getScore() / 2)) {
// tempArray.push_back(localPaths[score]);
// //}
// }
// if (localPaths[score].getScore() == 0) {
// break;
// }
// }
// // Filtering by computation of differences and consecutive threshold
// for (int t = 0; t < tempArray.size(); t++) {
// if ((t + 1) == tempArray.size()) {
// chosenArray.push_back(tempArray[t]);
// break;
// }
// chosenArray.push_back(tempArray[t]);
// /*double proportion = abs((double)((double)(tempArray[t].getScore() - tempArray[t + 1].getScore()))
// / (double) (tempArray[t + 1].getScore()));
// if (proportion > consecutiveThreshold) {
// break;
// }*/
// }
// return;
//}
//void Assignment::merge_Method(vector<int> &mergeParts, int currentNumOfTables, int completing, vector<Path> &chosenArray,vector<bool> &quantArray, vector<string> &final_Cigars, int &M_cigar, int &I_cigar) {
// //forward
// {
// vector<int>().swap(mergeParts);
// }
// long long current_Start=0;
// long long current_End=0;
// long long pointer_Start=0;
// long long pointer_End=0;
// long long startIndexB=0;
// bool terminate=false;
// bool save=false;
// bool first=true;
// int savePart = 0;
// int tempFlag = chosenArray[completing].getFlag();
// for(int part=0;part<currentNumOfTables;part++){
// if(chosenArray[completing].getIndices()[part]!=0 && !terminate){
// startIndexB=part*(partLength-d);
// if(save){
// mergeParts.push_back(savePart);
// save=false;
// savePart=0;
// }
// current_Start = chosenArray[completing].getIndices()[part];
// int fake1, fake2;
// if(forward_Detection(tempFlag)){
// current_End = current_Start + get_mD_Length(chosenArray[completing].getCigars()[part], fake1, fake2)-1;
// }
// else if(reverse_Detection(tempFlag)){
// current_End = current_Start - get_mD_Length(chosenArray[completing].getCigars()[part], fake1, fake2)-1;
// }
// if((current_Start<=pointer_End && current_Start>=pointer_Start && forward_Detection(tempFlag)) || first || (current_Start>=pointer_End && current_Start<=pointer_Start && reverse_Detection(tempFlag))){
// if(first){
// first=false;
// }
// pointer_End=current_End;
// pointer_Start=current_Start;
// mergeParts.push_back(part);
// if(part==currentNumOfTables-1){
// terminate=true;
// }
// }
// else{
// terminate=true;
// pointer_Start=current_Start;
// pointer_End=current_End;
// savePart=part;
// save=true;
// }
// for(int i=0;i<partLength;i++){
// quantArray[startIndexB+i]=true;
// }
// }
// else if(chosenArray[completing].getIndices()[part]==0 && !terminate){
// if(part==currentNumOfTables-1){
// terminate=true;
// }
// else{
// if(save){
// mergeParts.push_back(savePart);
// save=false;
// savePart=0;
// }
// continue;
// }
// }
// if(terminate){
// std::string mergeStr,mergeMD;
// if(mergeParts.size()==1){
// get_mD_Length(chosenArray[completing].getCigars()[mergeParts[0]], M_cigar,I_cigar);
// final_Cigars.push_back(chosenArray[completing].getCigars()[mergeParts[0]]);
// }
// if(mergeParts.size()>1){
// std::string temp;
// long long first, second;
// for(int i=0;i<mergeParts.size()-1;i++){
// temp=mD2String(chosenArray[completing].getCigars()[mergeParts[i]]);
// first = chosenArray[completing].getIndices()[mergeParts[i]];
// second = chosenArray[completing].getIndices()[mergeParts[i+1]];
// mergeStr+=slice(0,(int)abs(second-first),temp);
// }
// int size = (int) mergeParts.size();
// temp=mD2String(chosenArray[completing].getCigars()[mergeParts[size-1]]);
// mergeMD = string2mD(mergeStr);
// mergeMD = Glue_cigars(mergeMD,chosenArray[completing].getCigars()[mergeParts[size-1]]);
// get_mD_Length(mergeMD,M_cigar,I_cigar);
// final_Cigars.push_back(mergeMD);
// }
// if(part==currentNumOfTables-1 && save){
// get_mD_Length(chosenArray[completing].getCigars()[savePart],M_cigar, I_cigar);
// final_Cigars.push_back(chosenArray[completing].getCigars()[savePart]);
// }
// terminate=false;
// {
// vector<int>().swap(mergeParts);
// }
// }
// }
// return;
//}
//void Assignment::fill_The_Gaps(vector<Path> &chosenArray, int &completing, vector<long> &emptyIntervals, string ¤tSeq, double &IndelShift, int &tempFlag, double &totalScore, int &seqSize, int &localCalling, bool &hasRemained, vector<string> &final_empty_Cigars, int &Total_M, int &Total_I) {
// long long startIndexA , startIndexB = 0, startIndexA_end, startIndexB_end = 0, refPos;
// string seQA,seQB;
// string seqConstantB="";
// LocalAligner *local = NULL;
// for(int j=0;j<emptyIntervals.size()-1;){
// refPos = multiFasta[chosenArray[completing].getRef()];
// if(forward_Detection(tempFlag)){
// startIndexA = chosenArray[completing].getMain()+emptyIntervals[j]-1;
// startIndexA_end = chosenArray[completing].getMain()+emptyIntervals[j+1]-1;
// startIndexB = emptyIntervals[j];
// startIndexB_end = emptyIntervals[j+1];
// seQB = currentSeq.substr(startIndexB,startIndexB_end - startIndexB);
// seqConstantB.clear();
// for(int i=0;i<(int)(IndelShift*(abs(startIndexB_end - startIndexB)));i++){
// seqConstantB += "A";
// }
// seQB += seqConstantB;
// seQA = accessGenome(startIndexA-(int)(IndelShift*(abs(startIndexB_end - startIndexB))),tempFlag,startIndexA_end-startIndexA+2*(int)(IndelShift*(abs(startIndexB_end - startIndexB))), refPos);
// }
// else if(reverse_Detection(tempFlag)){
// startIndexA = chosenArray[completing].getMain()-emptyIntervals[j]-1;
// startIndexA_end = chosenArray[completing].getMain()-emptyIntervals[j+1]-1;
// startIndexB = emptyIntervals[j];
// startIndexB_end = emptyIntervals[j+1];
// seQB = currentSeq.substr(startIndexB,(abs(startIndexB_end - startIndexB)));
// seqConstantB.clear();
// for(int i=0;i<(int)(IndelShift*(abs(startIndexB_end - startIndexB)));i++){
// seqConstantB += "A";
// }
// seQB += seqConstantB;
// seQA = accessGenome(startIndexA_end-(int)(IndelShift*(abs(startIndexB_end - startIndexB))),tempFlag,abs(startIndexA_end-startIndexA)+2*(int)(IndelShift*(abs(startIndexB_end - startIndexB))), refPos);
// }
// local = new LocalAligner(seQB,seQA,GAPPEN,MISPEN,MATCH,(int)(IndelShift*(abs(startIndexB_end - startIndexB))),(int)(K_factor*(abs(startIndexB_end - startIndexB))));
// local->process();
// local->backtrack();
// local->produceCigar();
// totalScore = totalScore+local->mScore;
// Total_M+=local->totalMismatch;
// Total_I+=local->totalGap;
// seqSize+=seQB.size()-(int)(IndelShift*(abs(startIndexB_end - startIndexB)));
// final_empty_Cigars.push_back(local->cigar);
// //delete local;
// localCalling++;
// j+=2;
// }//**********************************************************avalo akhar nabas por she.
// /*if(hasRemained){
// refPos = multiFasta[chosenArray[completing].getRef()];
// if(forward_Detection(tempFlag)){
// startIndexA = chosenArray[completing].getMain()+emptyIntervals[emptyIntervals.size()-1]-1;
// startIndexB = emptyIntervals[emptyIntervals.size()-1];
// seQB = currentSeq.substr(startIndexB);
// seqConstantB.clear();
// for(int i=0;i<(int)(IndelShift*(seQB.length()));i++){
// seqConstantB += "A";
// }
// seQB += seqConstantB;
// seQA = accessGenome(startIndexA-(int)(IndelShift*(seQB.length())), tempFlag,seQB.size()+(int)(IndelShift*(seQB.length())), refPos);
// }
// else if(reverse_Detection(tempFlag)){
// startIndexA = chosenArray[completing].getMain()-emptyIntervals[emptyIntervals.size()-1]-1;
// startIndexB = emptyIntervals[emptyIntervals.size()-1];
// seQB = currentSeq.substr(startIndexB);
// seqConstantB.clear();
// for(int i=0;i<(int)(IndelShift*(seQB.length()));i++){
// seqConstantB += "A";
// }
// seQB += seqConstantB;
// seQA = accessGenome(startIndexA-seQB.size(),tempFlag,seQB.size()+(int)(IndelShift*(seQB.length())),refPos);
// }
// local = new LocalAligner(seQB,seQA,GAPPEN,MISPEN,MATCH,(int)(IndelShift*(seQB.length())),(int)(K_factor*(seQB.length())));
// local->process();
// local->backtrack();
// local->produceCigar();
// totalScore = totalScore + local->mScore;
// Total_M+=local->totalMismatch;
// Total_I+=local->totalGap;
// seqSize+=seQB.size()-(int)(IndelShift*currentSeq.substr(startIndexB).size());
// final_empty_Cigars.push_back(local->cigar);
// delete local;
// localCalling++;
// }*/
// return;
//}
//bool Assignment::forward_Detection(int tempFlag) {
// if(tempFlag==0 || tempFlag==256)
// return true;
// else{
// return false;
// }
//}
//bool Assignment::reverse_Detection(int tempFlag) {
// if(tempFlag==16 || tempFlag==272){
// return true;
// }
// else{
// return false;
// }
//}
//void Assignment::remain_Local(int V_L, Path ¤tPath, int &remain_M, int &remain_I, int &remain_Score, string &localStr, string seq) {
// LocalAligner *local = NULL;
// string read_Seq, path_Seq, seqConstant;
// long long startPos_Read, startPos_Path;
// startPos_Read = (checkNumOfTables(partLength,V_L)-1)*(partLength-d)+partLength;
// read_Seq = seq.substr(startPos_Read);
// startPos_Path = startPos_Read+currentPath.getMain();
// seqConstant.clear();
// for(int i=0;i<(int)(IndelShift*(read_Seq.length()));i++){
// seqConstant += "A";
// }
// read_Seq += seqConstant;
// path_Seq = accessGenome(startPos_Path-(int)(IndelShift*(read_Seq.length())), currentPath.getFlag(),read_Seq.size()+(int)(IndelShift*(read_Seq.length())), multiFasta[currentPath.getRef()]);
// local = new LocalAligner(read_Seq,path_Seq,GAPPEN,MISPEN,MATCH,(int)(IndelShift*(read_Seq.length())),(int)(K_factor*read_Seq.length()));
// local->process();
// local->backtrack();
// local->produceCigar();
// remain_M=local->totalMismatch;
// remain_I=local->totalGap;
// remain_Score=local->mScore;
// localStr=local->cigar;
// //delete local;
// return;
//}
//long long Assignment::NextChar(std::string fileData, long long pos,string str) {
// long long position;
// position = pos;
// while (fileData.substr(position,1) != str) {
// position++;
// }
// return position;
//}
//vector<string> Assignment::split(const string & str, const string & delimiters) {
// vector<string> v;
// string::size_type start = 0;
// string::size_type pos = str.find_first_of(delimiters, start);
// while (pos != string::npos) {
// if (pos != start) { // ignore empty tokens
// const string temp = str.substr(start, pos - start);
// v.push_back(temp);
// }
// start = pos + 1;
// pos = str.find_first_of(delimiters, start);
// }
// if (start < str.length()) { // ignore trailing delimiter
// const string temp = str.substr(start, str.length() - start);
// v.push_back(temp);
// } // add what's left of the string
// return v;
//}
//std::string Assignment::NumToStr(long long number) {
// std::string str;
// std::ostringstream ss;
// ss << number;
// return ss.str();
//}
//string Assignment::mD2String(string mD) {
// bool misMatch=false,indel=false,match=false;
// string str;
// string temp;
// for(int i=0;i<mD.length();i++){
// if(isalpha(mD[i])){
// if(indel){
// temp+="^";
// temp+=mD[i];
// continue;
// }
// else{
// if(match){
// int matchNumber = atoi(temp.c_str());
// temp.clear();
// for(int i=0;i<matchNumber;i++){
// str+='X';
// }
// match=false;
// }
// misMatch=true;
// temp+=mD[i];
// continue;
// }
// }
// else if(!isalnum(mD[i])){
// indel=true;
// if(match){
// int matchNumber = atoi(temp.c_str());
// for(int i=0;i<matchNumber;i++){
// str+='X';
// }
// match=false;
// }
// else if(misMatch){
// str+=temp;
// misMatch=false;
// }
// temp.clear();
// continue;
// }
// else{
// if(misMatch){
// str+=temp;
// misMatch=false;
// temp.clear();
// }
// else if(indel){
// str+=temp;
// indel=false;
// temp.clear();
// }
// match=true;
// temp+=mD[i];
// continue;
// }
// }
// if(match){
// int matchNumber = atoi(temp.c_str());
// for(int i=0;i<matchNumber;i++){
// str+='X';
// }
// }
// else if(misMatch){
// str+=temp;
// }
// else if(indel){
// str+=temp;
// }
// return str;
//}
//string Assignment::slice(int begin, int length,string str){
// int counter=0;
// int i=0;
// bool indel=false, misOrMatch=false;
// string outString;
// //find the right place to begin
// while(counter<begin){
// if(!isalnum(str[i])){
// i=i+2;
// counter++;
// continue;
// }
// else if(isalpha(str[i])){
// i++;
// counter++;
// continue;
// }
// }
// // collect all the character including indels
// counter=0;
// while(counter<length){
// if(!isalnum(str[i])){
// if(!indel && !misOrMatch){
// indel=true;
// outString+="^";
// outString+=str[i+1];
// counter++;
// }
// else if(indel){
// outString+=str[i+1];
// counter++;
// }
// else if(misOrMatch){
// indel=true;
// outString+="^";
// outString+=str[i+1];
// counter++;
// }
// i=i+2;
// continue;
// }
// else{
// misOrMatch=true;
// if(indel)
// indel=false;
// outString+=str[i];
// i++;
// counter++;
// continue;
// }
// }
// return outString;
//}
//string Assignment::string2mD(string str) {
// string outString;
// int i=0, counter=0;
// bool match=false;
// bool indel=false;
// char sign='X';
// while(i<str.length()){
// if((int)str[i]==(int)(sign)){
// if(indel){
// indel=false;
// }
// if(!match)
// match=true;
// counter++;
// }
// else{
// if(match){
// outString+=NumToStr(counter);
// match=false;
// counter=0;
// }
// if(!indel && !isalnum(str[i])){
// indel=true;
// outString+=str[i];
// }
// if(indel && isalpha(str[i]))
// outString+=str[i];
// if(!match && !indel)
// outString+=str[i];
// }
// i++;
// }
// if(match){
// outString+=NumToStr(counter);
// }
// return outString;
//}
//string Assignment::mD2Cigar(string mD){
// bool misMatch=false,indel=false,match=false;
// int I_Counter=0, M_Counter=0;
// string str;
// string outStr="";
// for(int i=0;i<mD.length();i++){
// if(isalpha(mD[i])){
// if(indel){
// I_Counter++;
// continue;
// }
// else{
// if(match){
// int matchNumber = atoi(str.c_str());
// M_Counter+=matchNumber;
// match=false;
// str.clear();
// }
// misMatch=true;
// continue;
// }
// }
// else if(!isalnum(mD[i])){
// indel=true;
// if(match){
// int matchNumber = atoi(str.c_str());
// M_Counter+=matchNumber;
// match=false;
// str.clear();
// }
// else if(misMatch){
// misMatch=false;
// }
// outStr+=NumToStr(M_Counter) + "M";
// M_Counter=0;
// continue;
// }
// else{
// if(misMatch){
// misMatch=false;
// }
// else if(indel){
// indel=false;
// outStr+=NumToStr(I_Counter)+"I";
// I_Counter=0;
// }
// match=true;
// str+=mD[i];
// continue;
// }
// }
// if(match){
// int matchNumber = atoi(str.c_str());
// M_Counter+=matchNumber;
// outStr+=NumToStr(M_Counter)+"M";
// str.clear();
// }
// return outStr;
//}
//void Assignment::readFasta(string filename,std::map<string ,long long> &multiFasta) {
// ifstream infile(filename.c_str());
// string line, header;
// long long faSize = 0, genomeSize = 0;
// map <string,long long> multiFA;
// ofstream headerFile(outputDir+"headerFile.txt");
// headerFile << "@HD\tVN:1.0\tSO:unsorted\n";
// while(getline(infile, line))
// {
// faSize += line.size()+1;
// if (line[0]=='>'){
// multiFA[line.substr(1)] = faSize;
// if (genomeSize){
// headerFile << "@SQ\tSN:" << header << "\tLN:" << genomeSize << endl;
// genomeSize = 0;
// header = line.substr(1);
// }
// else
// header = line.substr(1);
// }
// else
// genomeSize += line.size();
// }
// headerFile << "@SQ\tSN:" << header << "\tLN:" << genomeSize << endl;
// infile.close();
// headerFile.close();
// multiFasta = multiFA;
// return;
//}
//void Assignment::Split_Header(vector<string> &splitted, string &Header,string &mainHeader, long long &index, long long &number, int &V_L, int &row, bool drop_Fragment, bool samFile, bool clear_splitted, bool pacbio, bool saveRow) {
// std::size_t pos;
// if(samFile){
// pos = Header.find("r") + 1;
// }
// else{
// pos = Header.find("@") + 2;
// }
// {
// vector<string>().swap(splitted);
// }
// Header=Header.substr(pos);
// splitted = split(Header,"_");
// index = atoll(splitted[0].c_str());
// number = atoll(splitted[1].c_str());
// V_L = atoi(splitted[2].c_str());
// if(pacbio){
// main_Header(Header,mainHeader);
// }
// if(drop_Fragment && !pacbio){
// Header = Header.substr(0,Header.length()-splitted[3].length()-1);
// }
// else if(drop_Fragment && pacbio){
// ostringstream tempHeader;
// tempHeader << index << "_" << number << "_" << V_L << "_" << mainHeader;
// Header = tempHeader.str();
// }
// if(saveRow){
// row = atoi(splitted[3].c_str());
// }
// if(clear_splitted){
// vector<string>().swap(splitted);
// }
// if(!pacbio){
// mainHeader = Header;
// }
// return;
//}
//void Assignment::main_Header(string &Header, string &mainHeader) {
// mainHeader = Header.substr(Header.find("@"));
// return;
//}
//void Assignment::reform_Header(vector<string> &splitted, string &Header, long long &index, long long &number, int new_V_L, bool clear_splitted, bool pacbio, bool buildIndex, bool newLength, int i) {
// string mainHeader;
// ostringstream tempHeader;
// {
// vector<string>().swap(splitted);
// }
// splitted = split(Header,"_");
// index = atoll(splitted[0].c_str());
// number = atoll(splitted[1].c_str());
// if(pacbio){
// main_Header(Header, mainHeader);
// }
// if(newLength){
// tempHeader << index << "_" << number << "_" << new_V_L;
// if(pacbio){
// tempHeader << "_" << mainHeader;
// }
// Header = tempHeader.str();
// }
// if(buildIndex){
// tempHeader << index << "_" << number << "_" << splitted[2] << "_" << indexMaker(i);
// if(pacbio){
// tempHeader << "_" << mainHeader;
// }
// Header = tempHeader.str();
// }
// if(clear_splitted){
// vector<string>().swap(splitted);
// }
// return;
//}
//void Assignment::align_Command(int mode,string indexAddress, string fastQAddress, int V, int depth, int numberOfThreads, string AlignedAddress, int option, int minScore, int N_bowtie, int L_bowtie) {
// string command = "";
// if(mode==BOWTIE1){
// command.append(string(BOWTIE));
// command.append(" -S ");
// command.append(indexAddress.c_str());
// command.append(" ");
// command.append(fastQAddress.c_str());
// command.append(" -v ");
// command.append(NumToStr(V));
// command.append(" -a -m ");
// command.append(NumToStr(depth - 1));
// command.append(" -t --mm -p ");
// command.append(NumToStr(numberOfThreads));
// command.append(" -so ");
// command.append(" > ");
// command.append(AlignedAddress.c_str());
// command.append(" 2>> "+outputDir+"log-bowtie.txt");
// system(command.c_str());
// }
// else if(mode==BOWTIE2){
// command.append("bowtie2");
// if(option!=0){
// command.append(" -k ");
// command.append(NumToStr(option));
// }
// else{
// command.append(" -a ");
// }
// command.append(" -t --threads ");
// command.append(NumToStr(numberOfThreads));
// command.append(" --local --reorder ");
// // command.append(NumToStr(minScore));
// command.append(" -N " + NumToStr(N_bowtie) + " -L " + NumToStr(L_bowtie) + " -x ");
// command.append(indexAddress.c_str());
// command.append(" -U ");
// command.append(fastQAddress.c_str());
// command.append(" -S ");
// command.append(AlignedAddress.c_str());
// system(command.c_str());
// }
// return;
//}
//void Assignment::Split_Token(vector<string> &splitted,string &token, string &Header, string &seq, string &quality) {
// {
// vector<string>().swap(splitted);
// }
// splitted = split(token,"\t");
// Header = splitted[0];
// // This is just for the "@r" sign in most headers
// seq = splitted[1];
// quality = splitted[2];
// {
// vector<string>().swap(splitted);
// }
// return;
//}
//void Assignment::system_sort(string semiSortedFinalReadsAddress, string sortedFinalReadsAddress) {
// string command = "";
// command.append("LC_COLLATE=C sort -k 1 ");
// command.append(semiSortedFinalReadsAddress.c_str());
// command.append(" > ");
// command.append(sortedFinalReadsAddress.c_str());
// system(command.c_str());
// return;
//}
//void Assignment::system_remove(string fileName){
// string command="rm " + fileName;
// system(command.c_str());
// return;
//}
//string Assignment::currentPath(){
// char path[FILENAME_MAX];
// getcwd(path, sizeof(path));
// string currentPath(path);
// return currentPath;
//}
//tuple<bool, long long, long long, long long> Assignment::calculateIntronOrExonAndDistance(long long position) {
// bool isInExon = false;
// long long index = 0;
// long long fromRight = 0;
// long long fromLeft = 0;
// long long i;
// for (i = 1; i < this->iDepth->size(); i++) {
// if (this->iDepth->at(i).start <= position && position <= this->iDepth->at(i).end) {
// isInExon = true;
// index = i;
// fromLeft = abs(position - this->iDepth->at(i).start);
// fromRight = abs(position - this->iDepth->at(i).end);
// return make_tuple(isInExon, index, fromLeft, fromRight);
// } else if (position < this->iDepth->at(i).start && this->iDepth->at(i-1).end < position) {
// isInExon = false;
// index = i;
// fromLeft = abs(position - this->iDepth->at(i-1).end);
// fromRight = abs(position - this->iDepth->at(i).start);
// return make_tuple(isInExon, index, fromLeft, fromRight);
// }
// }
// if (position < this->iDepth->at(0).start) {
// isInExon = false;
// index = 0;
// fromLeft = 0;
// fromRight = abs(position - this->iDepth->at(0).start);
// return make_tuple(isInExon, index, fromLeft, fromRight);
// } else if (this->iDepth->at(0).start <= position && position <= this->iDepth->at(0).end) {
// isInExon = true;
// index = 0;
// fromLeft = abs(position - this->iDepth->at(0).start);;
// fromRight = abs(position - this->iDepth->at(0).end);
// return make_tuple(isInExon, index, fromLeft, fromRight);
// } else if (this->iDepth->at(this->iDepth->size()-1).end < position) {
// isInExon = false;
// index = this->iDepth->size();
// fromLeft = abs(position - this->iDepth->at(this->iDepth->size()-1).end);
// fromRight = 0;
// return make_tuple(isInExon, index, fromLeft, fromRight);
// }
// return make_tuple(isInExon, index, fromLeft, fromRight);
//}
//void Assignment::addIntervalToDepth(long long a, long long b, long long insert_index) {
// this->iDepth->insert(this->iDepth->begin()+insert_index, interval());
// this->iDepth->at(insert_index).start = a;
// this->iDepth->at(insert_index).end = b;
// return;
//}
//void Assignment::addIntervalToDepth(long long a, long long b) {
// if (this->iDepth->size() == 0) {
// this->iDepth->push_back(interval());
// this->iDepth->at(0).start = a;
// this->iDepth->at(0).end = b;
// return;
// }
// for (long long i = 0; i < this->iDepth->size(); i++) {
// if (this->iDepth->at(i).start <= a && this->iDepth->at(i).end >= b) {
// return;
// }
// if (this->iDepth->at(i).start > b || this->iDepth->at(i).end < a) {
// continue;
// } else {
// long long tempA = this->iDepth->at(i).start;
// long long tempB = this->iDepth->at(i).end;
// this->iDepth->erase(this->iDepth->begin()+i);
// this->addIntervalToDepth(min(tempA, a), max(tempB, b));
// return;
// }
// }
// long long insert_index = 0;
// while (insert_index < this->iDepth->size() && this->iDepth->at(insert_index).start < b) {
// insert_index++;
// }
// this->iDepth->insert(this->iDepth->begin()+insert_index, interval());
// this->iDepth->at(insert_index).start = a;
// this->iDepth->at(insert_index).end = b;
// return;
//}
//void Assignment::updateDepth(long long firstPosition, long long lastPosition, bool isForward, int partLen) {
// bool isInExon;
// long long indexNumber;
// long long fromRight;
// long long fromLeft;
// tie(isInExon,indexNumber,fromLeft,fromRight) = this->calculateIntronOrExonAndDistance(firstPosition);
// if (isInExon) {
// if (isForward) {
// if (lastPosition + partLen > this->iDepth->at(indexNumber).end) {
// this->iDepth->at(indexNumber).end = lastPosition + partLen;
// this->concatExons(indexNumber);
// }
// } else {
// if (this->iDepth->at(indexNumber).start > lastPosition) {
// this->iDepth->at(indexNumber).start = lastPosition;
// this->concatExons(indexNumber);
// }
// }
// } else {
// if (isForward) {
// tie(isInExon,indexNumber,fromLeft,fromRight) = this->calculateIntronOrExonAndDistance(lastPosition+partLen);
// if (isInExon) {
// this->iDepth->at(indexNumber).start = firstPosition;
// this->concatExons(indexNumber);
// } else {
// this->addIntervalToDepth(firstPosition, lastPosition+partLen, indexNumber);
// }
// } else {
// tie(isInExon,indexNumber,fromLeft,fromRight) = this->calculateIntronOrExonAndDistance(lastPosition);
// if (isInExon) {
// this->iDepth->at(indexNumber).end = firstPosition + partLen;
// this->concatExons(indexNumber);
// } else {
// this->addIntervalToDepth(lastPosition, firstPosition+partLen, indexNumber);
// }
// }
// }
//}
//void Assignment::concatExons(long long index) {
// vector<interval>::iterator current = this->iDepth->begin()+index;
// vector<interval>::iterator next = current + 1;
// vector<interval>::iterator previous = current - 1;
// if (current->end >= next->start) {
// long long end = max(current->end, next->end);
// current->end = end;
// this->iDepth->erase(next);
// }
// if (current->start <= previous->end) {
// long long start = min(current->start, previous->start);
// current->start = start;
// this->iDepth->erase(previous);
// }
// return;
//}
//string Assignment::convertNumToStr(long long number) {
// ostringstream ostr;
// ostr<<number;
// return ostr.str();
//}
//void Assignment::runForOnGenes() {
// for (long long i = 0; i < genes->size(); i++) {
// bool goToNextGene = false;
// for (int j = 0; j < genes->at(i).inExon.size() && !goToNextGene; j++) {
// for (long long k = 0; k < iDepth->size() && !goToNextGene; k++) {
// long long start = iDepth->at(k).start;
// long long end = iDepth->at(k).end;
// long long compare = genes->at(i).inExon.at(j).start;
// if (start < compare && compare < end) {
// goToNextGene = true;
// for (int p = 0; p < genes->at(i).inExon.size(); p++) {
// addIntervalToDepth(genes->at(i).inExon.at(p).start, genes->at(i).inExon.at(p).end);
// }
// for (int p = 0; p < genes->at(i).inRead.size(); p++) {
// long long index = genes->at(i).inRead.at(p).index-1;
// long size = genes->at(i).inRead.at(p).fragments.size();
// this->reads[index].firstPosition = genes->at(i).inRead.at(p).fragments.at(0).firstPosition;
// this->reads[index].lastPosition = genes->at(i).inRead.at(p).fragments.at(size-1).lastPosition;
// this->reads[index].firstFragment = genes->at(i).inRead.at(p).fragments.at(0).firstFragment;
// this->reads[index].lastFragment = genes->at(i).inRead.at(p).fragments.at(size-1).lastFragment;
// this->reads[index].cigar = genes->at(i).inRead.at(p).cigar;
// }
// } else {
// compare = genes->at(i).inExon.at(j).end;
// if (start < compare && compare < end) {
// goToNextGene = true;
// for (int p = 0; p < genes->at(i).inExon.size(); p++) {
// addIntervalToDepth(genes->at(i).inExon.at(p).start, genes->at(i).inExon.at(p).end);
// }
// for (int p = 0; p < genes->at(i).inRead.size(); p++) {
// long long index = genes->at(i).inRead.at(p).index-1;
// long size = genes->at(i).inRead.at(p).fragments.size();
// this->reads[index].firstPosition = genes->at(i).inRead.at(p).fragments.at(0).firstPosition;
// this->reads[index].lastPosition = genes->at(i).inRead.at(p).fragments.at(size-1).lastPosition;
// this->reads[index].firstFragment = genes->at(i).inRead.at(p).fragments.at(0).firstFragment;
// this->reads[index].lastFragment = genes->at(i).inRead.at(p).fragments.at(size-1).lastFragment;
// this->reads[index].cigar = genes->at(i).inRead.at(p).cigar;
// }
// }
// }
// }
// }
// }
// return;
//}
//void Assignment::createNewRead(int d, string outputNeme) {
// string name = outputDir+this->firstOutputName+"_reads_d="+this->NumToStr(this->shift)+".fq";
// if (d == 0) {
// name = outputDir+this->firstOutputName+"_reads_d=0.fq";
// }
// ifstream ifstr(name.c_str());
// name = outputDir+outputNeme+"_reads_d="+this->convertNumToStr(d)+".fq";
// ofstream ofstr(name.c_str());
// string line;
// string test;
// string segment;
// long long lineCounter = 0;
// while (getline(ifstr, line)) {
// if (lineCounter % 4 == 0) {
// stringstream test(line);
// getline(test, segment, '_');
// getline(test, segment, '_');
// if (this->reads[stoll(segment.c_str())-1].flag == -1) {
// ofstr<<line<<"\n";
// }
// } else if (lineCounter % 4 == 1) {
// if (this->reads[stoll(segment.c_str())-1].flag == -1) {
// line = line.substr(d);
// ofstr<<line<<"\n";
// }
// } else if (lineCounter % 4 == 3) {
// if (this->reads[stoll(segment.c_str())-1].flag == -1) {
// line = line.substr(d);
// ofstr<<"+\n"<<line<<"\n";
// }
// }
// ++lineCounter;
// }
// ifstr.close();
// ofstr.close();
// return;
//}
//void Assignment::AddToJenes(gene &tempGene){
// for (int geneIterator = 0; geneIterator < genes->size(); geneIterator++) {
// for (int trueExonIterator = 0; trueExonIterator < genes->at(geneIterator).inExon.size(); trueExonIterator++) {
// for (int tempExonIteraor = 0; tempExonIteraor < tempGene.inExon.size(); tempExonIteraor++) {
// if ((genes->at(geneIterator).isForward == tempGene.isForward) && ((tempGene.start <= genes->at(geneIterator).end && tempGene.start >= genes->at(geneIterator).start) || (tempGene.end <= genes->at(geneIterator).end && tempGene.end >= genes->at(geneIterator).start))) {
// if ((tempGene.inExon[tempExonIteraor].start <= genes->at(geneIterator).inExon[trueExonIterator].end &&tempGene.inExon[tempExonIteraor].start >= genes->at(geneIterator).inExon[trueExonIterator].start) || (tempGene.inExon[tempExonIteraor].end <= genes->at(geneIterator).inExon[trueExonIterator].end &&tempGene.inExon[tempExonIteraor].end >= genes->at(geneIterator).inExon[trueExonIterator].start) ) {
// genes->at(geneIterator).start = min(genes->at(geneIterator).start, tempGene.start);
// genes->at(geneIterator).end = max(genes->at(geneIterator).end, tempGene.end);
// for (int readIterator = 0; readIterator < tempGene.inRead.size(); readIterator++) {
// genes->at(geneIterator).inRead.push_back(tempGene.inRead[readIterator]);
// }
// //join to exonVector
// for (int mergeIterator = 0; mergeIterator < tempGene.inExon.size(); mergeIterator++) {
// this->mergeExonsInGenesAndTempGene(tempGene.inExon[mergeIterator].start, tempGene.inExon[mergeIterator].end, geneIterator);
// }
// return;
// }
// }
// else if (tempGene.end <= genes->at(geneIterator).start){
// //add temgene to this position of vector
// genes->insert(genes->begin()+geneIterator, tempGene);
// return;
// }
// }
// }
// }
// this->genes->push_back(tempGene);
// return;
//}
//void Assignment::mergeExonsInGenesAndTempGene(long long a, long long b, long long index) {
// for (int i = 0; i < genes->at(index).inExon.size(); i++) {
// if (genes->at(index).inExon.at(i).start <= a && genes->at(index).inExon.at(i).end >= b) {
// return;
// }
// if (genes->at(index).inExon.at(i).start > b || genes->at(index).inExon.at(i).end < a) {
// continue;
// } else {
// long long tempA = genes->at(index).inExon.at(i).start;
// long long tempB = genes->at(index).inExon.at(i).end;
// genes->at(index).inExon.erase(genes->at(index).inExon.begin()+i);
// this->mergeExonsInGenesAndTempGene(min(tempA, a), max(tempB, b), index);
// return;
// }
// }
// long long insert_index = 0;
// while (insert_index < genes->at(index).inExon.size() && genes->at(index).inExon.at(insert_index).start < b) {
// insert_index++;
// }
// genes->at(index).inExon.insert(genes->at(index).inExon.begin()+insert_index, interval());
// genes->at(index).inExon.at(insert_index).start = a;
// genes->at(index).inExon.at(insert_index).end = b;
// return;
//}
|
4958785e176b22da6889b138d2c8ce87c0e123c5
|
8b670fed6f65ebc8510d209153257d142c159ce4
|
/Day-13_RemoveKDigits.cpp
|
ab6f78a2f4ea4fbfc989b1a122e073e5847cee53
|
[] |
no_license
|
MadhurendraTripathy/LeetCode_May_2020_30_Day_Challenge
|
e89f65220fe11299726fc130ab259154a69a9908
|
8bd613965a23063e5d11afa1b8c8fc4f594b598c
|
refs/heads/master
| 2022-11-09T08:35:56.493476
| 2020-06-17T17:46:59
| 2020-06-17T17:46:59
| 260,434,104
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,000
|
cpp
|
Day-13_RemoveKDigits.cpp
|
class Solution {
public:
string removeKdigits(string num, int k) {
int n = num.length();
if(n==k)return "0";
stack<char> st;
for(char c : num){
while(k>0 && !st.empty() && int(st.top())>int(c)){
st.pop();
k--;
}
st.push(c);
}
if(k){
while(k--){
st.pop();
}
}
stack<char> st1;
while(!st.empty()){
st1.push(st.top());
st.pop();
}
while(st1.top()=='0'&&st1.size()!=1){
st1.pop();
}
num="";
while(!st1.empty()){
num.push_back(st1.top());
st1.pop();
}
return num;
}
};
int main(){
FAST_IO;
string n = "1432219";
Solution s;
cout<<s.removeKdigits(n, 3)<<"\n";
return 0;
}
|
02a693d242608f3205e1d4baa5fc8e9e2fbb314a
|
b45734f5796d8909d61a975de21b7ce2cd63e53f
|
/SE_Expert/SE_문자열교집합.cpp
|
7a789ddbbab5b7ed3fba8d8360eb9ffdcf19d67c
|
[] |
no_license
|
EuiSeong-Moon/Algorithm
|
0b6f95e1ec4ea164c7e5c5c4dd4ca015a3ce474e
|
2a6f2867f24bb672b80d3038c8bd5e5bfdfd140e
|
refs/heads/master
| 2022-09-13T08:25:35.495115
| 2022-08-30T14:51:47
| 2022-08-30T14:51:47
| 107,673,760
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 529
|
cpp
|
SE_문자열교집합.cpp
|
#include <iostream>
#include <string>
#include <vector>
#include <unordered_set>
using namespace std;
int main(void)
{
string a, b;
int test = 0,count=0;
cin >> test;
for (int i = 0; i < test; i++)
{
count = 0;
unordered_set<string> s;
//hash_set<string>::iterator k;
int m, n;
cin >> m >> n;
for (int i = 0; i < m; i++)
{
cin >> a;
s.insert(a);
}
for (int i = 0; i < n; i++)
{
cin >> b;
if (s.find(b) != s.end())
count++;
}
cout <<"#"<< i + 1 << " " << count<<endl;
}
return 0;
}
|
ae18d322f0a0acf9bc91ec6c3bec1281d293b2fc
|
6229b84c47856cc48ff6307448e10b9ac12bde45
|
/Contest/NEERC/2008-2009 Southern/pC.cpp
|
33dcd3d730ec4efa7ae9329038c59756b50e22a6
|
[] |
no_license
|
ltf0501/NoName
|
d7498adfbc3b37ebc4408ee9480b2746e250784b
|
ee2f9d303892cbb3a1d47c89dda47f86dd41a986
|
refs/heads/master
| 2021-06-29T23:02:15.509131
| 2020-11-06T06:48:13
| 2020-11-06T06:48:13
| 187,497,633
| 4
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,545
|
cpp
|
pC.cpp
|
#include <utility>
#include <stdio.h>
#include <algorithm>
#include <vector>
using namespace std;
#define PB push_back
#define F first
#define S second
const int N=3e5+10;
int a[N<<2],f[N<<2];
void init(int n,int l,int r){
a[n]=f[n]=0;
if(r>l){
int mid=(l+r)>>1;
init(n*2+1,l,mid);
init(n*2+2,mid+1,r);
}
return ;
}
void fix(int n,int l,int r,int L,int R,int x){
if(L<=l&&r<=R){
a[n]+=x;
f[n]+=x;
}
else if(!(l>R||L>r)){
int mid=(l+r)>>1;
if(f[n]!=0){
a[n*2+1]+=f[n];
a[n*2+2]+=f[n];
f[n*2+1]+=f[n];
f[n*2+2]+=f[n];
f[n]=0;
}
fix(n*2+1,l,mid,L,R,x);
fix(n*2+2,mid+1,r,L,R,x);
}
return ;
}
int query(int n,int l,int r,int pos){
if(l==r)return a[n];
else{
int mid=(l+r)>>1;
if(f[n]!=0){
a[n*2+1]+=f[n];
a[n*2+2]+=f[n];
f[n*2+1]+=f[n];
f[n*2+2]+=f[n];
f[n]=0;
}
if(pos<=mid)return query(n*2+1,l,mid,pos);
else return query(n*2+2,mid+1,r,pos);
}
}
int main(){
int n,k;
long long int l,r,w,tl,tr;
vector<long long int> x,y;
vector<int>ans;
vector<pair<pair<long long int,long long int>,long long int>>v;
vector<pair<pair<int,int>,pair<int,int>>>q;
scanf("%d%d",&n,&k);
for(int i=1;i<=n;i++){
scanf("%d%d%d",&tl,&tr,&w);
l=tl+tr;
r=tl-tr;
v.PB({{l,r},w});
x.PB(l);
x.PB(l+w);
x.PB(l-w);
y.PB(r);
y.PB(r-w);
y.PB(r+w);
}
sort(x.begin(),x.end());
sort(y.begin(),y.end());
x.resize(unique(x.begin(),x.end())-x.begin());
y.resize(unique(y.begin(),y.end())-y.begin());
for(int i=0;i<n;i++){
q.PB({{lower_bound(x.begin(),x.end(),v[i].F.F-v[i].S)-x.begin(),-1},{lower_bound(y.begin(),y.end(),v[i].F.S-v[i].S)-y.begin(),lower_bound(y.begin(),y.end(),v[i].F.S+v[i].S)-y.begin()}});
q.PB({{lower_bound(x.begin(),x.end(),v[i].F.F+v[i].S)-x.begin(),1},q.back().S});
q.PB({{lower_bound(x.begin(),x.end(),v[i].F.F)-x.begin(),0},{lower_bound(y.begin(),y.end(),v[i].F.S)-y.begin(),i+1}});
//v[i].F={lower_bound(x.begin(),x.end(),v[i].F.F)-x.begin(),lower_bound(y.begin(),y.end(),v[i].F.S)-y.begin()};
}
sort(q.begin(),q.end());
init(0,0,y.size());
for(int i=0;i<q.size();i++){
//printf("q[%d]=((%d,%d),(%d,%d))\n",i,q[i].F.F,q[i].F.S,q[i].S.F,q[i].S.S);
if(q[i].F.S==0){
if(query(0,0,y.size(),q[i].S.F)>=k+1)ans.PB(q[i].S.S);
//printf("%d %d\n",q[i].S.S,query(0,0,y.size(),q[i].S.F));
}
else{
fix(0,0,y.size(),q[i].S.F,q[i].S.S,-q[i].F.S);
}
}
sort(ans.begin(),ans.end());
if(ans.empty())printf("0\n");
else{
printf("%d\n%d",(int)ans.size(),ans[0]);
for(int i=1;i<ans.size();i++)printf(" %d",ans[i]);
printf("\n");
}
}
|
ef5eb7b8e5e45a7f521c21293487dfba094b391a
|
1adb72922febf3bfc73751780cbcc2ebafd4a2c8
|
/DayNhauHocCPlusPlusSource/Mang2C.cpp
|
58dd7c35da35e4ff834ae6cfac7d0c15c5c37c68
|
[] |
no_license
|
nguyenhoangvannha/01_Study_CPlusPlus
|
6c7fe737ef3d6a744282add856fe88d490542490
|
51a8f642403aef0fe34ccd2e250ece1f7dfd93c3
|
refs/heads/master
| 2021-01-19T23:53:12.831504
| 2017-04-22T05:46:02
| 2017-04-22T05:46:02
| 88,943,184
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 259
|
cpp
|
Mang2C.cpp
|
#include "iostream"
#include "string"
using namespace std;
void main()
{
int A[3][3] = { {1,2,3},{4,5,6},{7,8,9} };
int B[3][3] = { 0 };
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
cout << B[i][j];
cout << endl;
}
system("pause");
}
|
cc2652536be7f9065d8737b2bdb493ed2d672d8d
|
969a11fafff2fb44e2be8b397de2599e01a719e1
|
/experiments/hashes/src/main.cpp
|
bd76c60348f83066b9483c4f7c251abca192e1f6
|
[] |
no_license
|
jeweg/jaws
|
6b2ff55a3d1acd3261f25027cb079b1fa2087b58
|
33cb7595777d0fc30d46593e9a79ad785ab68e0d
|
refs/heads/master
| 2022-12-11T01:45:07.788484
| 2020-09-11T14:09:18
| 2020-09-11T14:09:18
| 213,950,809
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,011
|
cpp
|
main.cpp
|
#include "jaws/jaws.hpp"
#include "celero\Celero.h"
#include "xxhash/xxhash.hpp"
#include "xxhash/xxhash_cx.h"
#include <utility> // std::hash
#include <string>
#include <unordered_map>
// Here I'm experimenting with xxHash.
jaws::LoggerPtr logger;
#if 0
using namespace std::literals::string_literals;
auto foo(int count)
{
std::vector<std::size_t> result;
for (int i = 0; i < count; ++i) {
result.push_back(xxh::xxhash<64>("small"s));
result.push_back(xxh::xxhash<64>("a little longer string blablabla"s));
result.push_back(xxh::xxhash<64>(
"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore "
"et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea "
"rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum "
"dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod temp"s));
}
return result;
}
auto bar(int count)
{
std::vector<std::size_t> result;
auto hasher = std::hash<std::string>{};
for (int i = 0; i < count; ++i) {
result.push_back(hasher("small"));
result.push_back(hasher("a little longer string blablabla"));
result.push_back(
hasher("Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut "
"labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo "
"dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit "
"amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod temp"));
}
return result;
}
BASELINE(xxHash, Baseline10, 10, 100)
{
foo(10);
}
BENCHMARK(xxHash, Baseline1000, 10, 100)
{
foo(10000);
}
BASELINE(msvc, Baseline10, 10, 100)
{
bar(10);
}
BENCHMARK(msvc, Baseline1000, 10, 100)
{
bar(10000);
}
CELERO_MAIN;
#else
constexpr auto get_hash()
{
return xxhash::xxh64("hello", 5, 0);
}
class ConstString
{
public:
ConstString(jaws::string_view sv, std::size_t hash_value) : _hash_value(hash_value)
{
// possibly also make a copy of the string for
// debugging.
if (true) { _str = sv; }
}
std::string _str;
std::size_t _hash_value;
};
namespace std {
template<> struct hash<ConstString>
{
std::size_t operator()(const ConstString& cs) const noexcept
{
return cs._hash_value;
}
};
} // namespace std
# define JAWS_CONST_STR(arg) ConstString(arg, xxhash::xxh64(arg, sizeof(arg), 0))
int main(int argc, char** argv)
{
logger = jaws::GetLoggerPtr(jaws::Category::General);
logger->info("Hello, World!");
std::unordered_map<ConstString, int> foo;
foo[JAWS_CONST_STR("hello")] = 3;
foo[JAWS_CONST_STR("hello")] = 2;
// logger->info("{}", hv);
}
#endif
|
353dea1ce42fd6870b79f7db406e75e833d12d2a
|
63a36f50b8bd2ab48d8b6adff4cce712cc7d69d9
|
/collisiondetection-backup/collisiondetection/trianglecollisiondetection.cpp
|
f1a0cae14ce450fda8f66e20e9d3d601dd072c64
|
[] |
no_license
|
7zhang/learn-story
|
ec21d58ce754ae837e48a55cd2adaeee36ac3200
|
820602e17e7c6fc430d192b3023a37c261b73b0a
|
refs/heads/master
| 2021-01-16T19:31:17.683901
| 2013-06-01T11:54:50
| 2013-06-01T11:54:50
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,896
|
cpp
|
trianglecollisiondetection.cpp
|
#include "trianglecollisiondetection.h"
bool trianglecollisiondetection(triangle &t1, triangle &t2, long &n1, long &n2)
{
vector3d diff11;
vector3d diff21;
vector3d diff31;
vectorminus(t1.vertex1, t2.vertex1, diff11);
vectorminus(t1.vertex2, t2.vertex1, diff21);
vectorminus(t1.vertex3, t2.vertex1, diff31);
float dot1, dot2, dot3;
vectordot(diff11, t2.normalvector, dot1);
vectordot(diff21, t2.normalvector, dot2);
vectordot(diff31, t2.normalvector, dot3);
if((dot1 > 0 && dot2 > 0 && dot3 > 0) || (dot1 < 0 && dot2 < 0 && dot3 < 0))
{
n1++;
return false;
}
/* else if(iszero(dot1) && iszero(dot2) && iszero(dot3))
{
return trianglecollisiondetection2d(t1, t2);
}
*/
vectorminus(t2.vertex1, t1.vertex1, diff11);
vectorminus(t2.vertex2, t1.vertex1, diff21);
vectorminus(t2.vertex3, t1.vertex1, diff31);
float dot4, dot5, dot6;
vectordot(diff11, t1.normalvector, dot4);
vectordot(diff21, t1.normalvector, dot5);
vectordot(diff31, t1.normalvector, dot6);
if((dot4 > 0 && dot5 > 0 && dot6 > 0) || (dot4 < 0 && dot5 < 0 && dot6 < 0))
{
n2++;
return false;
}
return true;
}
/*
vector3d cross = vectorcross(t1.normalvector, t2.normalvector);
vector3d p;
float s1 = vectordot(t1.vertex1, t1.normalvector);
float s2 = vectordot(t2.vertex1, t2.normalvector);
if(!iszero(cross.z))
{
p.x = (t2.normalvector.y * s1 - t1.normalvector.y * s2)/cross.z;
p.y = (t1.normalvector.x * s2 - t2.normalvector.x * s1)/cross.z;
p.z = 0;
}
else if(!iszero(cross.y))
{
p.x = (t1.normalvector.z * s2 - t2.normalvector.z * s1)/cross.y;
p.y = 0;
p.z = (t2.normalvector.x * s1 - t1.normalvector.x * s2)/cross.y;
}
else
{
p.x = 0;
p.y = (t2.normalvector.z * s1 - t1.normalvector.z * s2)/cross.z;
p.z = (t1.normalvector.y * s2 - t2.normalvector.y * s1)/cross.z;
}
if((dot1 < 0 && dot2 > 0 && dot3 > 0) || (dot1 > 0 && dot2 < 0 && dot3 < 0))
{
*/
|
8302e5b6c745155c2aa090e8dac2caed2812f1c0
|
e993c53e4e1a52acc8279129c67feb0d3a1b9cbc
|
/catkin_ws/src/o2as_phoxi_camera/src/main.cpp
|
df869636e64f306a919517ae9b8d25311605d277
|
[
"MIT"
] |
permissive
|
DevwratJoshi/ur-o2as
|
134ec87d371a7d9f9b64cbeb4030b23cf114812d
|
265249c27908a79a301014168394db0c0dc2204c
|
refs/heads/master
| 2021-01-03T16:03:57.344339
| 2020-02-17T03:58:39
| 2020-02-17T03:58:39
| 240,143,319
| 0
| 0
|
MIT
| 2020-02-13T00:21:52
| 2020-02-13T00:21:51
| null |
UTF-8
|
C++
| false
| false
| 29,641
|
cpp
|
main.cpp
|
/*!
* \file main.cpp
*/
#include <string>
#include <array>
#include <limits>
#include <mutex>
#include <ros/ros.h>
#include <ros/package.h>
#include <std_srvs/Trigger.h>
#include <sensor_msgs/PointCloud2.h>
#include <sensor_msgs/point_cloud2_iterator.h>
#include <sensor_msgs/Image.h>
#include <sensor_msgs/image_encodings.h>
#include <sensor_msgs/CameraInfo.h>
#include <dynamic_reconfigure/server.h>
#include <PhoXi.h>
#include <o2as_phoxi_camera/o2as_phoxi_cameraConfig.h>
#include <o2as_phoxi_camera/PhoXiSize.h>
#include <o2as_phoxi_camera/SetString.h>
#include <o2as_phoxi_camera/GetString.h>
#include <o2as_phoxi_camera/GetStringList.h>
#include <o2as_phoxi_camera/GetInt.h>
#include <o2as_phoxi_camera/GetFrame.h>
#include <o2as_phoxi_camera/DumpFrame.h>
#include <o2as_phoxi_camera/GetSupportedCapturingModes.h>
#include <opencv2/opencv.hpp>
#include <yaml-cpp/yaml.h>
namespace o2as_phoxi_camera
{
static std::ostream&
operator <<(std::ostream& out, const o2as_phoxi_cameraConfig& config)
{
out << "resolution:\t\t" << config.resolution
<< "\nscan multiplier:\t" << config.scan_multiplier
<< "\nshutter multiplier:\t" << config.shutter_multiplier
<< "\ntrigger mode:\t\t" << config.trigger_mode
<< "\ntimeout:\t\t" << config.timeout
<< "\nconfidence:\t\t" << config.confidence
<< "\nsend point cloud:\t" << config.send_point_cloud
<< "\nsend normal map:\t" << config.send_normal_map
<< "\nsend depth map:\t\t" << config.send_depth_map
<< "\nsend confidence map:\t" << config.send_confidence_map
<< "\nsend texture:\t\t" << config.send_texture
<< "\npoint_format:\t\t" << config.point_format
<< "\nintensity_scale:\t" << config.intensity_scale;
}
/************************************************************************
* class Camera *
************************************************************************/
class Camera
{
private:
using cloud_t = sensor_msgs::PointCloud2;
using image_t = sensor_msgs::Image;
using cinfo_t = sensor_msgs::CameraInfo;
enum
{
XYZ = 0, XYZRGB = 1, XYZI = 2
};
public:
Camera() ;
~Camera() ;
void run() ;
private:
void reconf_callback(o2as_phoxi_cameraConfig& config,
uint32_t level) ;
bool get_device_list(GetStringList::Request& req,
GetStringList::Response& res) ;
bool is_acquiring(std_srvs::Trigger::Request& req,
std_srvs::Trigger::Response& res) ;
bool start_acquisition(std_srvs::Trigger::Request& req,
std_srvs::Trigger::Response& res) ;
bool stop_acquisition(std_srvs::Trigger::Request& req,
std_srvs::Trigger::Response& res) ;
bool trigger_frame(GetInt::Request& req,
GetInt::Response& res) ;
bool get_frame(GetFrameRequest& req, GetFrameResponse& res) ;
bool save_frame(SetString::Request& req,
SetString::Response& res) ;
bool flush_buffer(std_srvs::Trigger::Request& req,
std_srvs::Trigger::Response& res) ;
bool get_supported_capturing_modes(
GetSupportedCapturingModes::Request& req,
GetSupportedCapturingModes::Response& res) ;
bool get_hardware_identification(GetString::Request& req,
GetString::Response& res) ;
template <class T>
static bool save_image(const std::string& filename,
const pho::api::Mat2D<T>& phoxi_image,
float scale) ;
template <class T>
void get_cloud(const pho::api::PointCloud32f& phoxi_cloud,
const pho::api::Mat2D<T>& phoxi_texture,
const ros::Publisher& publisher,
const ros::Time& stamp,
const float distanceScale,
const float intensityScale,
cloud_t& cloud, bool publish) const ;
template <class T>
static void get_image(const pho::api::Mat2D<T>& phoxi_image,
const ros::Publisher& publisher,
const ros::Time& stamp,
const std::string& encoding,
typename T::ElementChannelType scale,
image_t& image,
bool publish) ;
void get_frame_msgs(GetFrameResponse& res,
bool publish) const ;
void publish_camera_info() const ;
void flush_buffer_internal() ;
private:
ros::NodeHandle _nh;
mutable std::mutex _mutex;
const pho::api::PhoXiFactory _factory;
pho::api::PPhoXi _device;
pho::api::PFrame _frame;
int _frameId; // unique id of _frame
std::string _frameName; // frame id used by tf
std::array<double, 9> _K;
int _pointFormat;
float _intensityScale;
const dynamic_reconfigure::Server<o2as_phoxi_cameraConfig> _reconf_server;
const ros::ServiceServer _get_device_list_server;
const ros::ServiceServer _is_acquiring_server;
const ros::ServiceServer _start_acquisition_server;
const ros::ServiceServer _stop_acquisition_server;
const ros::ServiceServer _trigger_frame_server;
const ros::ServiceServer _get_frame_server;
const ros::ServiceServer _save_frame_server;
const ros::ServiceServer _flush_buffer_server;
const ros::ServiceServer _get_hardware_identification_server;
const ros::ServiceServer _get_supported_capturing_modes_server;
const ros::Publisher _cloud_publisher;
const ros::Publisher _normal_map_publisher;
const ros::Publisher _depth_map_publisher;
const ros::Publisher _confidence_map_publisher;
const ros::Publisher _texture_publisher;
const ros::Publisher _camera_info_publisher;
};
Camera::Camera()
:_nh("~"),
_factory(),
_device(nullptr),
_frame(nullptr),
_frameId(-1),
_frameName("map"),
_K({2215.13350577, 0.0 , 1030.47471121 ,
0.0 , 2215.13350577 , 756.735726174,
0.0 , 0.0 , 1.0 }),
_pointFormat(0),
_intensityScale(255.0/4095.0),
_reconf_server(_nh),
_get_device_list_server(
_nh.advertiseService("get_device_list", &get_device_list, this)),
_is_acquiring_server(
_nh.advertiseService("is_acquiring", &is_acquiring, this)),
_start_acquisition_server(
_nh.advertiseService("start_acquisition", &start_acquisition, this)),
_stop_acquisition_server(
_nh.advertiseService("stop_acquisition", &stop_acquisition, this)),
_trigger_frame_server(
_nh.advertiseService("trigger_frame", &trigger_frame, this)),
_get_frame_server(
_nh.advertiseService("get_frame", &get_frame, this)),
_save_frame_server(
_nh.advertiseService("save_frame", &save_frame, this)),
_flush_buffer_server(
_nh.advertiseService("flush_buffer", &flush_buffer, this)),
_get_hardware_identification_server(
_nh.advertiseService("get_hardware_identification",
&get_hardware_identification, this)),
_get_supported_capturing_modes_server(
_nh.advertiseService("get_supported_capturing_modes",
&get_supported_capturing_modes, this)),
_cloud_publisher( _nh.advertise<cloud_t>("pointcloud", 1)),
_normal_map_publisher( _nh.advertise<image_t>("normal_map", 1)),
_depth_map_publisher( _nh.advertise<image_t>("depth_map", 1)),
_confidence_map_publisher(_nh.advertise<image_t>("confidence_map", 1)),
_texture_publisher( _nh.advertise<image_t>("texture", 1)),
_camera_info_publisher( _nh.advertise<cinfo_t>("camera_info", 1))
{
// Search for a device with specified ID.
std::string id;
_nh.param<std::string>("id", id,
"InstalledExamples-PhoXi-example(File3DCamera)");
for (size_t pos; (pos = id.find('\"')) != std::string::npos; )
id.erase(pos, 1);
if (!_factory.isPhoXiControlRunning())
{
ROS_ERROR_STREAM("PhoXiControll is not running.");
throw std::runtime_error("");
}
for (const auto& devinfo : _factory.GetDeviceList())
if (devinfo.HWIdentification == id)
{
_device = _factory.Create(devinfo);
break;
}
if (!_device)
{
ROS_ERROR_STREAM("Failed to find camera[" << id << "].");
throw std::runtime_error("");
}
// Connect to the device.
if (!_device->Connect())
{
ROS_ERROR_STREAM("Failed to open camera[" << id << "].");
throw std::runtime_error("");
}
// Stop acquisition.
_device->StopAcquisition();
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") Initializing configuration.");
// Set parameter values according to the current device state.
auto modes = _device->SupportedCapturingModes.GetValue();
int idx = 0;
for (int i = 0; i < modes.size(); ++i)
if (modes[i] == _device->CapturingMode)
{
idx = i;
break;
}
ros::param::set("resolution", idx + 1);
ros::param::set("scan_multiplier",
_device->CapturingSettings->ScanMultiplier);
ros::param::set("shutter_multiplier",
_device->CapturingSettings->ShutterMultiplier);
ros::param::set("trigger_mode",
pho::api::PhoXiTriggerMode::Value(
_device->TriggerMode.GetValue()));
ros::param::set("timeout",
int(_device->Timeout.GetValue()));
ros::param::set("confidence",
_device->ProcessingSettings->Confidence);
ros::param::set("send_point_cloud",
_device->OutputSettings->SendPointCloud);
ros::param::set("send_normal_map",
_device->OutputSettings->SendNormalMap);
ros::param::set("send_depth_map",
_device->OutputSettings->SendDepthMap);
ros::param::set("send_confidence_map",
_device->OutputSettings->SendConfidenceMap);
ros::param::set("send_texture",
_device->OutputSettings->SendTexture);
ros::param::set("intensity_scale",
_intensityScale);
_reconf_server.setCallback(boost::bind(&reconf_callback, this, _1, _2));
// Read camera intrinsic parameters.
const std::string
intrinsic_filename = ros::package::getPath("o2as_phoxi_camera")
+ "/config/"
+ _device->HardwareIdentification.GetValue()
+ ".yaml";
try
{
YAML::Node intrinsic = YAML::LoadFile(intrinsic_filename);
const auto K = intrinsic["K"].as<std::vector<double> >();
std::copy_n(K.cbegin(), _K.size(), _K.begin());
}
catch (const std::exception& err)
{
ROS_WARN_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") failed to open " << intrinsic_filename);
}
// Set frame name.
_nh.param<std::string>("frame", _frameName, "map");
// Start acquisition.
flush_buffer_internal();
_device->StartAcquisition();
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") o2as_phoxi_camera is active.");
}
Camera::~Camera()
{
if (_device && _device->isConnected())
{
_device->StopAcquisition();
_device->Disconnect();
}
}
void
Camera::run()
{
ros::Rate looprate(10);
while (ros::ok())
{
using namespace pho::api;
if (_device->TriggerMode == PhoXiTriggerMode::Freerun &&
_device->isAcquiring())
{
std::lock_guard<std::mutex> lock(_mutex);
if ((_frame = _device->GetFrame(PhoXiTimeout::ZeroTimeout)) &&
_frame->Successful)
{
GetFrameResponse res;
get_frame_msgs(res, true);
}
}
publish_camera_info();
ros::spinOnce();
looprate.sleep();
}
}
void
Camera::reconf_callback(o2as_phoxi_cameraConfig& config, uint32_t level)
{
//std::cerr << config << std::endl;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") callback called. level = "
<< level);
if (level & (1 << 4))
{
const auto acq = _device->isAcquiring();
if (acq)
_device->StopAcquisition();
const auto modes = _device->SupportedCapturingModes.GetValue();
if (config.resolution < modes.size())
_device->CapturingMode = modes[config.resolution];
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") set resolution to "
<< _device->CapturingMode.GetValue().Resolution.Width
<< 'x'
<< _device->CapturingMode.GetValue().Resolution.Height);
flush_buffer_internal();
if (acq)
_device->StartAcquisition();
}
if (level & (1 << 5))
{
_device->CapturingSettings->ScanMultiplier
= config.scan_multiplier;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") set scan multiplier to "
<< _device->CapturingSettings->ScanMultiplier);
}
if (level & (1 << 6))
{
_device->CapturingSettings->ShutterMultiplier
= config.shutter_multiplier;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") set shutter multiplier to "
<< _device->CapturingSettings->ShutterMultiplier);
}
if (level & (1 << 7))
{
const auto acq = _device->isAcquiring();
if (acq)
_device->StopAcquisition();
_device->TriggerMode = config.trigger_mode;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") set trigger mode to "
<< _device->TriggerMode.GetValue());
flush_buffer_internal();
if (acq)
_device->StartAcquisition();
}
if (level & (1 << 8))
{
_device->Timeout = config.timeout;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") set timeout to "
<< _device->Timeout.GetValue());
}
if (level & (1 << 9))
{
_device->ProcessingSettings->Confidence = config.confidence;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") set confidence to "
<< _device->ProcessingSettings->Confidence);
}
if (level & (1 << 10))
{
_device->OutputSettings->SendPointCloud = config.send_point_cloud;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") "
<< (_device->OutputSettings->SendPointCloud ?
"enabled" : "disabled")
<< " publishing point cloud");
}
if (level & (1 << 11))
{
_device->OutputSettings->SendNormalMap = config.send_normal_map;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") "
<< (_device->OutputSettings->SendNormalMap ?
"enabled" : "disabled")
<< " publishing normal map");
}
if (level & (1 << 12))
{
_device->OutputSettings->SendDepthMap = config.send_depth_map;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") "
<< (_device->OutputSettings->SendDepthMap ?
"enabled" : "disabled")
<< " publishing depth map");
}
if (level & (1 << 13))
{
_device->OutputSettings->SendConfidenceMap
= config.send_confidence_map;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") "
<< (_device->OutputSettings->SendConfidenceMap ?
"enabled" : "disabled")
<< " publishing confidence map");
}
if (level & (1 << 14))
{
_device->OutputSettings->SendTexture = config.send_texture;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") "
<< (_device->OutputSettings->SendTexture ?
"enabled" : "disabled")
<< " publishing texture map");
}
if (level & (1 << 15))
{
_pointFormat = config.point_format;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") set point format to "
<< _pointFormat);
}
if (level & (1 << 16))
{
_intensityScale = config.intensity_scale;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") set intensity scale to "
<< _intensityScale);
}
}
bool
Camera::get_device_list(GetStringList::Request& req,
GetStringList::Response& res)
{
_factory.StartConsoleOutput("Admin-On");
const auto devinfos = _factory.GetDeviceList();
res.len = devinfos.size();
for (const auto& devinfo : devinfos)
res.out.push_back(devinfo.HWIdentification);
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") get_device_list: succeded.");
return true;
}
bool
Camera::is_acquiring(std_srvs::Trigger::Request& req,
std_srvs::Trigger::Response& res)
{
res.success = _device->isAcquiring();
res.message = (res.success ? "yes" : "no");
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") is_acquiring: "
<< res.message);
return true;
}
bool
Camera::start_acquisition(std_srvs::Trigger::Request& req,
std_srvs::Trigger::Response& res)
{
if (_device->isAcquiring())
{
res.success = true;
res.message = "already in aquisition.";
}
else
{
// Flush buffer to avoid publishing data during past acquisition.
flush_buffer_internal(); // MUST!!!
res.success = _device->StartAcquisition();
res.message = (res.success ? "scceeded." : "failed.");
}
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") start_acquisition: "
<< res.message);
ros::Duration(1.0).sleep();
return true;
}
bool
Camera::stop_acquisition(std_srvs::Trigger::Request& req,
std_srvs::Trigger::Response& res)
{
if (_device->isAcquiring())
{
res.success = _device->StopAcquisition();
res.message = (res.success ? "succeeded." : "failed.");
}
else
{
res.success = true;
res.message = "already not in aquisition.";
}
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") stop_acquisition: "
<< res.message);
return true;
}
bool
Camera::trigger_frame(GetInt::Request& req, GetInt::Response& res)
{
//flush_buffer_internal();
for (int n = 0; n < 10; ++n)
{
// Wait until the device be ready for accepting trigger command.
// (1st arg.)
// The call is blocked until the device finishing grab. (2nd arg.)
res.out = _frameId = _device->TriggerFrame(true, true);
switch (_frameId)
{
case -1:
ROS_WARN_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") trigger_frame: not accepted.");
break;
case -2:
ROS_ERROR_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") trigger_frame: device is not running.");
return true;
case -3:
ROS_ERROR_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") trigger_frame: communication error.");
return true;
case -4:
ROS_ERROR_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") trigger_frame: WaitForGrabbingEnd is not supported.");
return true;
default:
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") trigger_frame: succeeded. [frame #"
<< _frameId
<< ']');
return true;
}
}
return true;
}
bool
Camera::get_frame(GetFrameRequest& req, GetFrameResponse& res)
{
using namespace pho::api;
std::lock_guard<std::mutex> lock(_mutex);
if (_frameId < 0)
{
res.success = false;
ROS_WARN_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") get_frame: failed. [not triggered yet]");
return true;
}
while ((_frame = _device->GetFrame(PhoXiTimeout::ZeroTimeout)) != nullptr)
if (_frame->Successful && _frame->Info.FrameIndex == _frameId)
{
get_frame_msgs(res, req.publish);
res.success = true;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") get_frame: succeeded. [frame #"
<< _frameId
<< ']');
_frameId = -1;
return true;
}
res.success = false;
ROS_ERROR_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") get_frame: failed. [not found frame #"
<< _frameId
<< ']');
_frameId = -1;
return true;
}
bool
Camera::save_frame(SetString::Request& req, SetString::Response& res)
{
std::lock_guard<std::mutex> lock(_mutex);
if (_frame == nullptr || !_frame->Successful)
{
res.success = false;
ROS_ERROR_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") save_frame: failed. [no frame data]");
}
else if (!_frame->SaveAsPly(req.in + ".ply"))
{
res.success = false;
ROS_ERROR_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") save_frame: failed to save PLY to "
<< req.in + ".ply");
}
else
{
res.success = true;
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") save_frame: succeeded to save PLY to "
<< req.in + ".ply");
}
return true;
}
bool
Camera::flush_buffer(std_srvs::Trigger::Request& req,
std_srvs::Trigger::Response& res)
{
flush_buffer_internal();
res.success = true;
res.message = "succeeded.";
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") flush_buffer: "
<< res.message);
return true;
}
bool
Camera::get_supported_capturing_modes(
GetSupportedCapturingModes::Request& req,
GetSupportedCapturingModes::Response& res)
{
const auto modes = _device->SupportedCapturingModes.GetValue();
for (const auto& mode : modes)
{
o2as_phoxi_camera::PhoXiSize size;
size.Width = mode.Resolution.Width;
size.Height = mode.Resolution.Height;
res.supported_capturing_modes.push_back(size);
}
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") get_supported_capturing_moddes: succeeded.");
return true;
}
bool
Camera::get_hardware_identification(GetString::Request& req,
GetString::Response& res)
{
res.out = _device->HardwareIdentification;
return true;
}
template <class T> void
Camera::get_cloud(const pho::api::PointCloud32f& phoxi_cloud,
const pho::api::Mat2D<T>& phoxi_texture,
const ros::Publisher& publisher,
const ros::Time& stamp,
const float distanceScale,
const float intensityScale,
cloud_t& cloud, bool publish) const
{
using namespace sensor_msgs;
if (phoxi_cloud.Empty())
return;
// Convert pho::api::PointCloud32f to sensor_msgs::PointCloud2
cloud.is_bigendian = false;
cloud.is_dense = false;
PointCloud2Modifier modifier(cloud);
#if 0
if (_pointFormat == XYZ)
modifier.setPointCloud2Fields(3,
"x", 1, PointField::FLOAT32,
"y", 1, PointField::FLOAT32,
"z", 1, PointField::FLOAT32);
else
modifier.setPointCloud2Fields(4,
"x", 1, PointField::FLOAT32,
"y", 1, PointField::FLOAT32,
"z", 1, PointField::FLOAT32,
"rgb", 1, PointField::FLOAT32);
#else
if (_pointFormat == XYZ)
modifier.setPointCloud2FieldsByString(1, "xyz");
else
modifier.setPointCloud2FieldsByString(2, "xyz", "rgb");
#endif
modifier.resize(phoxi_cloud.Size.Height * phoxi_cloud.Size.Width);
cloud.header.stamp = stamp;
cloud.header.frame_id = _frameName;
cloud.height = phoxi_cloud.Size.Height;
cloud.width = phoxi_cloud.Size.Width;
cloud.row_step = cloud.width * cloud.point_step;
for (int v = 0; v < cloud.height; ++v)
{
PointCloud2Iterator<float> xyz(cloud, "x");
xyz += cloud.width * v;
for (int u = 0; u < cloud.width; ++u)
{
const auto& p = phoxi_cloud.At(v, u);
if (float(p.z) == 0.0f)
{
xyz[0] = xyz[1] = xyz[2]
= std::numeric_limits<float>::quiet_NaN();
}
else
{
xyz[0] = p.x * distanceScale;
xyz[1] = p.y * distanceScale;
xyz[2] = p.z * distanceScale;
}
++xyz;
}
if (_pointFormat == XYZRGB)
{
PointCloud2Iterator<uint8_t> rgb(cloud, "rgb");
rgb += cloud.width * v;
for (int u = 0; u < cloud.width; ++u)
{
const auto val = phoxi_texture.At(v, u) * intensityScale;
rgb[0] = rgb[1] = rgb[2] = (val > 255 ? 255 : val);
++rgb;
}
}
else if (_pointFormat == XYZI)
{
PointCloud2Iterator<float> rgb(cloud, "rgb");
rgb += cloud.width * v;
for (int u = 0; u < cloud.width; ++u)
{
*rgb = phoxi_texture.At(v, u) * intensityScale;
++rgb;
}
}
}
if (publish)
publisher.publish(cloud);
}
template <class T> void
Camera::get_image(const pho::api::Mat2D<T>& phoxi_image,
const ros::Publisher& publisher,
const ros::Time& stamp,
const std::string& encoding,
typename T::ElementChannelType scale,
image_t& image,
bool publish)
{
using namespace sensor_msgs;
using element_ptr = const typename T::ElementChannelType*;
if (phoxi_image.Empty())
return;
image.header.stamp = stamp;
image.header.frame_id = "camera";
image.encoding = encoding;
image.is_bigendian = 0;
image.height = phoxi_image.Size.Height;
image.width = phoxi_image.Size.Width;
image.step = image.width
* image_encodings::numChannels(image.encoding)
* (image_encodings::bitDepth(image.encoding)/8);
image.data.resize(image.step * image.height);
const auto p = reinterpret_cast<element_ptr>(phoxi_image[0]);
const auto q = reinterpret_cast<element_ptr>(
phoxi_image[phoxi_image.Size.Height]);
if (image.encoding == image_encodings::MONO8)
std::transform(p, q,
reinterpret_cast<uint8_t*>(image.data.data()),
[scale](const auto& x)->uint8_t
{ auto y = scale * x; return y > 255 ? 255 : y; });
else if (image.encoding == image_encodings::MONO16)
std::transform(p, q,
reinterpret_cast<uint16_t*>(image.data.data()),
[scale](const auto& x)->uint16_t
{ return scale * x; });
else if (image.encoding.substr(0, 4) == "32FC")
std::transform(p, q,
reinterpret_cast<float*>(image.data.data()),
[scale](const auto& x)->float
{ return scale * x; });
else if (image.encoding.substr(0, 4) == "64FC")
std::transform(p, q,
reinterpret_cast<double*>(image.data.data()),
[scale](const auto& x)->double
{ return scale * x; });
else
{
ROS_ERROR_STREAM("Unsupported image type!");
throw std::logic_error("");
}
if (publish)
publisher.publish(image);
}
void
Camera::get_frame_msgs(GetFrameResponse& res, bool publish) const
{
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue() << ") "
<< "PointCloud: "
<< _frame->PointCloud.Size.Width << 'x'
<< _frame->PointCloud.Size.Height
<< " [frame #" << _frame->Info.FrameIndex << ']');
// Common setting.
constexpr float distanceScale = 0.001;
const auto timeNow = ros::Time::now();
// Get point cloud.
get_cloud(_frame->PointCloud, _frame->Texture, _cloud_publisher,
timeNow, distanceScale, _intensityScale, res.cloud, publish);
// Get normal_map, depth_map, confidence_map and texture.
get_image(_frame->NormalMap, _normal_map_publisher, timeNow,
sensor_msgs::image_encodings::TYPE_32FC3,
1, res.normal_map, publish);
get_image(_frame->DepthMap, _depth_map_publisher, timeNow,
sensor_msgs::image_encodings::TYPE_32FC1,
distanceScale, res.depth_map, publish);
get_image(_frame->ConfidenceMap, _confidence_map_publisher, timeNow,
sensor_msgs::image_encodings::TYPE_32FC1,
1, res.confidence_map, publish);
get_image(_frame->Texture, _texture_publisher, timeNow,
sensor_msgs::image_encodings::MONO8,
_intensityScale, res.texture, publish);
}
void
Camera::publish_camera_info() const
{
cinfo_t cinfo;
// Set header.
cinfo.header.stamp = ros::Time::now();
cinfo.header.frame_id = "camera";
// Set height and width.
const auto mode = _device->CapturingMode.GetValue();
cinfo.height = mode.Resolution.Height;
cinfo.width = mode.Resolution.Width;
// Set distortion and intrinsic parameters.
cinfo.distortion_model = "plumb_bob";
#if 0
const auto& calib = _device->CalibrationSettings.GetValue();
const auto& d = calib.DistortionCoefficients;
const auto& K = calib.CameraMatrix;
cinfo.D.resize(d.size());
std::copy(std::begin(d), std::end(d), std::begin(cinfo.D));
std::copy(K[0], K[3], std::begin(cinfo.K));
#else
std::fill(std::begin(cinfo.D), std::end(cinfo.D), 0.0); // No distortion.
std::copy(std::begin(_K), std::end(_K), std::begin(cinfo.K));
#endif
// Set cinfo.R to be an identity matrix.
std::fill(std::begin(cinfo.R), std::end(cinfo.R), 0.0);
cinfo.R[0] = cinfo.R[4] = cinfo.R[8] = 1.0;
// Set 3x4 camera matrix.
for (int i = 0; i < 3; ++i)
for (int j = 0; j < 3; ++j)
cinfo.P[4*i + j] = cinfo.K[3*i + j];
cinfo.P[3] = cinfo.P[7] = cinfo.P[11] = 0.0;
// No binning
cinfo.binning_x = cinfo.binning_y = 0;
// ROI is same as entire image.
cinfo.roi.width = cinfo.roi.height = 0;
_camera_info_publisher.publish(cinfo);
}
void
Camera::flush_buffer_internal()
{
using namespace pho::api;
for (PFrame frame;
(frame = _device->GetFrame(PhoXiTimeout::ZeroTimeout)) != nullptr; )
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<< ") flushing buffer... [frame #"
<< frame->Info.FrameIndex << ']');
ROS_INFO_STREAM('('
<< _device->HardwareIdentification.GetValue()
<<") finished flushing buffer!");
_frameId = -1;
}
} // namespace o2as_phoxi_camera
/************************************************************************
* global functions *
************************************************************************/
int main(int argc, char** argv)
{
ros::init(argc, argv, "o2as_phoxi_camera");
ros::console::set_logger_level(ROSCONSOLE_DEFAULT_NAME,
ros::console::levels::Debug);
try
{
o2as_phoxi_camera::Camera camera;
camera.run();
}
catch (const std::exception& err)
{
std::cerr << err.what() << std::endl;
return 1;
}
return 0;
}
|
e60ee96ad22dcda3cabbaecc1271a9ca06742d5d
|
f8073b6efaa1aa31d7bc75f774f2db86d2be395e
|
/CS1C Class Project/database.cpp
|
69e94327ba74784d41bd8894f3e4f2ad75ea7528
|
[] |
no_license
|
matt-c-clark/Bulk-Club
|
c2ff57fba5cccdf509990b5beb22edd4c338dfcf
|
5fb30b64ebd8c6897181519bcfcba6c904bc4566
|
refs/heads/master
| 2016-09-06T18:27:19.299554
| 2014-05-15T17:04:16
| 2014-05-15T17:04:16
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,458
|
cpp
|
database.cpp
|
/**************************************************************************
* AUTHOR : Matt Clark & Nate Bailey
* Class Project: Bulk Club
* CLASS : CS1C
* SECTION : TTh: 8:30AM - 9:50AM
* Due Date : 5/15/2014
*************************************************************************/
#include <string>
#include "database.h"
using namespace std;
database::database()
{
}//end constructor
void database::addMember(member& input)
{
memberByIDMap.insert(pair<int, member>(input.getID(), input));
memberByNameMap.insert(pair<string, member>(input.getName(), input));
}//end addMember function
void database::removeMember(int memberID)
{
//check if member exists
if (memberByIDMap.count(memberID) == 0)
{
string error = "There is no member #";
string temp;
ostringstream convert;
convert << memberID;
temp = convert.str();
error += temp + "\n";
convert.str("");
throw RuntimeException(error);
}
string memberName = memberByIDMap[memberID].getName();
pair <multimap<int,purchase>::iterator,
multimap<int,purchase>::iterator> ret;
//erase all purchases related to member
ret = purchaseByIDMap.equal_range(memberID);
purchaseByIDMap.erase(ret.first, ret.second);
for (multimap<date,purchase>::iterator it = purchaseByDateMap.begin();
it != purchaseByDateMap.end(); it++)
{
if (it->second.getMember()->getID() == memberID)
{
purchaseByDateMap.erase(it);
}
}
//erase member
memberByIDMap.erase(memberID);
memberByNameMap.erase(memberName);
}//end removeMember function
void database::removeMember(string memberName)
{
//check if member exists
if (memberByNameMap.count(memberName) == 0)
{
string error = "There is no member named " + memberName + "\n";
throw RuntimeException(error);
}
int memberID = memberByNameMap[memberName].getID();
pair <multimap<int,purchase>::iterator,
multimap<int,purchase>::iterator> ret;
//erase all purchases related to member
ret = purchaseByIDMap.equal_range(memberID);
purchaseByIDMap.erase(ret.first, ret.second);
for (multimap<date,purchase>::iterator it = purchaseByDateMap.begin();
it != purchaseByDateMap.end(); it++)
{
if (it->second.getMember()->getID() == memberID)
{
purchaseByDateMap.erase(it);
}
}
//erase member
memberByIDMap.erase(memberID);
memberByNameMap.erase(memberName);
}//end removeMember function
member& database::findMember(int memberID)
{
return memberByIDMap[memberID];
}//end findMember function
member& database::findMember(string memberName)
{
return memberByNameMap[memberName];
}//end findMember function
int database::checkMember(int memberID)
{
return memberByIDMap.count(memberID);
}//end checkMember function
int database::checkMember(string memberName)
{
return memberByNameMap.count(memberName);
}//end checkMember function
int database::checkItem(string itemName)
{
return itemQuantityMap.count(itemName);
}//end checkItem function
void database::addPurchase(purchase& input)
{
float amtSpent;
float rebate;
//insert new purchase
purchaseByDateMap.insert(pair<date, purchase>(input.getDate(), input));
purchaseByIDMap.insert(pair<int, purchase>(input.getMember()->getID(),
input));
//update member amount spent
amtSpent = memberByNameMap[input.getMember()->getName()].getAmtSpent();
memberByNameMap[input.getMember()->getName()].setAmtSpent(amtSpent +
input.getUnitPrice());
memberByIDMap[input.getMember()->getID()].setAmtSpent(amtSpent +
input.getUnitPrice());
//update member rebate
rebate = memberByNameMap[input.getMember()->getName()].getRebate();
memberByNameMap[input.getMember()->getName()].setRebate(rebate +
(input.getUnitPrice() * 0.05));
memberByIDMap[input.getMember()->getID()].setRebate(rebate +
(input.getUnitPrice() * 0.05));
//update item quantity information
if (itemQuantityMap.count(input.getItemName()) == 0)
{
itemQuantityMap.insert(pair<string, int>(input.getItemName(),
input.getQuantity()));
}
else
{
itemQuantityMap[input.getItemName()] += input.getQuantity();
}
//update item sales information
if(itemSalesMap.count(input.getItemName()) == 0)
{
itemSalesMap.insert(pair<string, float>(input.getItemName(),
input.getUnitPrice()));
}
else
{
itemSalesMap[input.getItemName()] += input.getUnitPrice();
}
}//end addPurchase function
int database::getItemQuantity(string itemName)
{
return itemQuantityMap.find(itemName)->second;
}//end getItemQuantity function
float database::getItemSales(string itemName)
{
return itemSalesMap.find(itemName)->second;
}//end getItemSales function
map<int, member>::iterator database::memberIDMapBegin()
{
return memberByIDMap.begin();
}//end memberIDMapBegin function
map<int, member>::iterator database::memberIDMapEnd()
{
return memberByIDMap.end();
}//end memberIDMapEnd function
map<string, member>::iterator database::memberNameMapBegin()
{
return memberByNameMap.begin();
}//end memberNameMapBegin function
map<string, member>::iterator database::memberNameMapEnd()
{
return memberByNameMap.end();
}//end memberNameMapEnd function
map<string, int>::iterator database::quantityItemMapBegin()
{
return itemQuantityMap.begin();
}//end quantityItemMapBegin function
map<string, int>::iterator database::quantityItemMapEnd()
{
return itemQuantityMap.end();
}//end quantityItemMapEnd function
multimap<int, purchase>::iterator database::purchaseByIDBegin()
{
return purchaseByIDMap.begin();
}//end purchaseByIDBegin function
multimap<int, purchase>::iterator database::purchaseByIDEnd()
{
return purchaseByIDMap.end();
}//end purchaseByIDEnd function
pair <multimap<date, purchase>::iterator,
multimap<date, purchase>::iterator> database::getPurchases
(date& input)
{
return purchaseByDateMap.equal_range(input);
}//end getPurchases function
pair <multimap<int, purchase>::iterator,
multimap<int, purchase>::iterator> database::getPurchases
(int input)
{
return purchaseByIDMap.equal_range(input);
}//end getPurchases function
|
482846ebaadc1b526f2d999883b7ce9c189909cf
|
b82d26342fed6f0b6877cebf91f524c7a47a592d
|
/Hmwk/Assignment_2/Gaddis_9thEd_Chap3_Prob10_Temp/Assignment 2 Problem 4/main.cpp
|
22871403b0c82b77617d37537e3993d33077fe9d
|
[] |
no_license
|
ac2731952/CanoAlan_CIS5_46732
|
19140a82de69c67205e982daf4e3e3fcb597115b
|
627ad6af7acbb55eaa3f2b1fdebbbcfc9c3b5fb6
|
refs/heads/master
| 2022-11-25T21:20:38.823177
| 2020-08-02T07:05:03
| 2020-08-02T07:05:03
| 274,961,261
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 984
|
cpp
|
main.cpp
|
/*
* File: main.cpp
* Author: Alan Cano
* Created on July 2, 2020, 3:48 PM
* Purpose: Temperature
*/
//System Libraries
#include <iostream> //Input/Output Library
#include <iomanip>
using namespace std;
//User Libraries
//Global Constants, no Global Variables are allowed
//Math/Physics/Conversions/Higher Dimensions - i.e. PI, e, etc...
//Function Prototypes
//Execution Begins Here!
int main(int argc, char** argv) {
//Set the random number seed
//Declare Variables
//Initialize or input i.e. set variable values
float iTemp, fTemp; //input farenheit, output celsius
//Map inputs -> outputs
cin >> iTemp;
fTemp = (5.0 / 9.0) * (iTemp - 32);
//Display the outputs
cout << "Temperature Converter" << endl;
cout << "Input Degrees Fahrenheit" << endl;
cout << setprecision(1) << fixed;
cout << iTemp << " Degrees Fahrenheit = "<< fTemp << " Degrees Centigrade";
//Exit stage right or left!
return 0;
}
|
6ce73a5b1c572e59f6602c99b6de8aa06a12bba2
|
571d541b705ab17ce7c605331923749445032cb1
|
/examples/DemoLinearLed/DemoLinearLed.ino
|
8c4c23909e0d3dfc3773de83745fcfef7bfa21d5
|
[
"MIT"
] |
permissive
|
koettbulle/LinearLed
|
86fa92ee849f9dd75d63edddd8d94d3fd152b031
|
3f474351b2a3c409d965b7cb8877696d770261a1
|
refs/heads/master
| 2021-09-18T19:22:44.627817
| 2017-01-15T17:21:42
| 2017-01-15T17:21:42
| 79,044,107
| 0
| 0
|
MIT
| 2018-07-18T11:52:41
| 2017-01-15T16:23:11
|
C++
|
UTF-8
|
C++
| false
| false
| 1,629
|
ino
|
DemoLinearLed.ino
|
/*
Name: DemoLinearLed.ino
Author: Mattias Alnervik
Editor: http://www.visualmicro.com
*/
#include "LinearLedLib.h"
byte serIn;
int brightness = 0;
linearLed myLed(13); //Built in LED, without support for 10 bit mode
linearLed myOtherLed(9); //Pin with support for 10 bit mode.
void setup() {
Serial.begin(115200); //Starts serial communication
myOtherLed.use10bitMode(); //Sets pin 9 to use 10 bit resolution
}
void loop() {
if (Serial.available()) {
serIn = Serial.read(); //Read available data sent to the Arduino
if (serIn == 43) { //If a plus-sign, +, is received
brightness++; //Increase the brightness one step
brightness = constrain(brightness, 0, 100); //Limits brightness to be a value between 0 and 100
myLed.setLedVal(brightness); //Sets the new brightness value to the LEDs
myOtherLed.setLedVal(brightness);
Serial.println("Brightness of LED: " + brightness); //Prints the brightness to the console
Serial.println("Actual PWM value of myLed: " + myLed.getCurrRealVal()); //The real PWM value
Serial.println("Actual PWM value of myOtherLed: " + myOtherLed.getCurrRealVal());
}
else if (serIn == 45) { //If a minus-sign, -, is received
brightness--; //Decrease the brightness one step
brightness = constrain(brightness, 0, 100);
myLed.setLedVal(brightness);
myOtherLed.setLedVal(brightness);
Serial.println("Brightness of LED: " + brightness);
Serial.println("Actual PWM value of myLed: " + myLed.getCurrRealVal());
Serial.println("Actual PWM value of myOtherLed: " + myOtherLed.getCurrRealVal());
}
}
}
|
4b33893ba3dadae0748b133bcd756dbc05766b64
|
8d769392c7e600364afaadd689d147b5fad73fa7
|
/src/coroutine/co2/buffer/buffer.h
|
ae9fa6b12d7c61207d7747d04caaea7875eeba5e
|
[] |
no_license
|
P79N6A/dp
|
15452e97eb5fbadc64eae97824dbc664fffc8a21
|
678f69424a876f7f3e2f9567cffe7fb44582f28f
|
refs/heads/master
| 2021-06-09T16:41:47.654789
| 2016-12-30T10:00:26
| 2016-12-30T10:00:26
| 198,253,216
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,163
|
h
|
buffer.h
|
/*
* buffer.h
* Created on: 2016-12-13
*/
#ifndef CO2_BUFFER_BUFFER_H_
#define CO2_BUFFER_BUFFER_H_
#include <string>
namespace co2 {
namespace buffer {
struct buffer_ {
struct buffer_ *next;
char *buf;
int beg; /* cyclic queue */
int end;
int size;
};
struct buffer_block_ {
struct buffer_block_ *next;
};
class Pool {
public:
Pool(int buff_size = 8192, int batch_size = 100);
~Pool(void);
int Alloc(void);
int Destroy(void);
struct buffer_ *GetBuffer(void);
void Release(buffer_ *buf);
void Dump(void);
int GetBuffCount(void) { return total_count_; }
int GetAvailBuffCount(void) { return avail_count_; }
int GetBuffSize(void) { return buff_size_; }
int GetBatchSize(void) { return batch_size_; }
private:
buffer_block_ *block_;
buffer_ *head_;
int total_count_;
int avail_count_;
int buff_size_;
int batch_size_;
};
/* chained buffer, used by TCP connection */
class Buffer {
public:
enum LINE_MODE {
kLF,
kCR,
kLFCR,
};
/* max default to be 1MB */
Buffer(Pool *pool, int max_size = 1024 * 1024);
~Buffer();
void SetLineMode(LINE_MODE lm) { ln_mode_ = lm; }
/* Buffer API
* return 0 if successful and data will be stored in obuf. */
int ReadBytes(int fd, char *obuf, int bytes);
int ReadBytes(int fd, std::string &obuf, int bytes);
/* read line from buffer and store into obuf */
int ReadLine(int fd, std::string &obuf);
/* append bytes to buffer, pipelining. */
int WriteBytes(const char *buf, int bytes);
/* flush buffer's content to network */
int Flush(int fd);
/* Debug method, dump the internal state of a buffer object. */
void Dump(void);
private:
/* Find the line mark. */
int GetLinePos(int &pos);
private:
Pool *pool_;
buffer_ *head_;
buffer_ *tail_;
int size_; /* how many bytes */
int max_size_;
LINE_MODE ln_mode_;
};
} // namespace buffer
} // namespace co2
#endif /* CO2_BUFFER_BUFFER_H_ */
|
e8a623093118127e34035fba097d0601daffb416
|
95efaa256914926ac30acbb1a8c89c320c19bf40
|
/HeGui/HSpecCalibrateHandler.h
|
7373e880d85ad4fb3d403c52a298dfd5b172c1cf
|
[] |
no_license
|
mabo0001/QtCode
|
bc2d80446a160d97b4034fa1c068324ba939cb20
|
9038f05da33c870c1e9808791f03467dcc19a4ab
|
refs/heads/master
| 2022-08-26T13:36:14.021944
| 2019-07-15T01:12:51
| 2019-07-15T01:12:51
| 266,298,758
| 1
| 0
| null | 2020-05-23T08:54:08
| 2020-05-23T08:54:07
| null |
UTF-8
|
C++
| false
| false
| 910
|
h
|
HSpecCalibrateHandler.h
|
/***************************************************************************************************
** 2019-04-25 HSpecCalibrateHandler 光谱定标处理者类。
***************************************************************************************************/
#ifndef HSPECCALIBRATEHANDLER_H
#define HSPECCALIBRATEHANDLER_H
#include "HAbstractGuiHandler.h"
HE_GUI_BEGIN_NAMESPACE
class HSpecCalibrateHandlerPrivate;
class HSpecCalibrateHandler : public HAbstractGuiHandler
{
Q_OBJECT
Q_DECLARE_PRIVATE(HSpecCalibrateHandler)
public:
explicit HSpecCalibrateHandler(QObject *parent = nullptr);
~HSpecCalibrateHandler() override;
public:
void initialize(QVariantMap param) override;
QString typeName() override;
public:
void execute(QObject *sender = nullptr, QVariantMap param = QVariantMap()) override;
};
HE_GUI_END_NAMESPACE
#endif // HSPECCALIBRATEHANDLER_H
|
6cf90e4bc9ecaa3a64cd227d6dd9b3aa1c3e17eb
|
d4c005c3bbf8159ff07d3c039ae84df06a4132b9
|
/tools/serializable.hpp
|
375b4842b6b9db38559e044cd1bdc18e74d12eb9
|
[] |
no_license
|
JusticeHamster/RayTracingDemo
|
28035921c6f0aa2734e6205511a69b13d67e9234
|
4e48ec10360ac69daf8c04bacc9df1a2687a6f53
|
refs/heads/master
| 2020-05-01T09:00:39.716238
| 2019-06-20T13:18:15
| 2019-06-20T13:18:15
| 177,390,173
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 926
|
hpp
|
serializable.hpp
|
#ifndef SERIALIZABLE_HPP
#define SERIALIZABLE_HPP
#include "glm/glm.hpp"
#include <vector>
#include <string>
using buffer_value_type = unsigned char;
using buffer = std::vector<buffer_value_type>;
class serializable
{
protected:
virtual buffer _serialize() const = 0;
public:
bool need_serialize = true;
virtual ~serializable();
buffer serialize() const;
virtual void deserialize(buffer &buf) = 0;
static buffer serialize(const buffer_value_type *value, int length);
static buffer serialize(const glm::vec3 &v);
static buffer serialize(const glm::mat4 &m);
static buffer serialize(const std::string &s);
static void deserialize(buffer &buf, buffer_value_type *value, int length);
static void deserialize(buffer &buf, glm::vec3 &v);
static void deserialize(buffer &buf, glm::mat4 &m);
static void deserialize(buffer &buf, std::string &s);
};
#endif // SERIALIZABLE_HPP
|
b78fa4d89d5bd5f7543984023c04b8a5452d1893
|
e311ed0128cb849ce1d73d08c8535d3f504142be
|
/Orbitersdk/Simpit/Simpit/HookObserver.h
|
398ce138a962c32b4deb5b59f964829c8f262d45
|
[
"MIT"
] |
permissive
|
MarcLT/simpit-controller
|
e31808ede3155648e1e36d6dce2397cf2c232eec
|
ff42117334f74ebebdd470aaaa0fab462bb13e56
|
refs/heads/master
| 2020-12-25T12:57:24.038309
| 2014-02-08T20:27:37
| 2014-02-08T20:27:37
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 479
|
h
|
HookObserver.h
|
//Copyright (c) 2013 Christopher Johnstone(meson800)
//The MIT License - See ../../../LICENSE for more info
#ifndef HOOK_OBSERVER
#define HOOK_OBSERVER
#include "PanelClickRecorderOutput.h"
class PanelClickRecorderOutput;
extern class HookObserver
{
public:
HookObserver() {}
void h_handlePanelMouseEvent(int id, int ev, int mx, int my);
void setUpReciever(PanelClickRecorderOutput * _callbackClass);
private:
PanelClickRecorderOutput * callbackClass;
} observer;
#endif
|
e84e028e6162913eaa32aa46f4333a6456ceda28
|
e68f66423c08de1cbbca882feba3c77229a82ae7
|
/QuaRouAfrica10/ProbB/ProbB.cpp
|
4090bfe8d796f91897cd53aad08d78256db8d24b
|
[] |
no_license
|
Anmol2307/GoogleCodeJam
|
b61fac1aa8f56a035d0315c40e52486aff9bfa80
|
5b76a96525a4edc3a8bbee971a222409f21161ff
|
refs/heads/master
| 2020-05-18T17:03:23.694695
| 2015-01-11T07:20:56
| 2015-01-11T07:20:56
| 24,712,505
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 718
|
cpp
|
ProbB.cpp
|
#include <bits/stdc++.h>
using namespace std;
inline void inp(int &n ) {//fast input function
n=0;
int ch=getchar(),sign=1;
while( ch < '0' || ch > '9' ){if(ch=='-')sign=-1; ch=getchar();}
while( ch >= '0' && ch <= '9' )
n=(n<<3)+(n<<1)+ ch-'0', ch=getchar();
n=n*sign;
}
int main () {
int t, k = 1;
inp(t);
vector <string> vec;
while (t--) {
vec.clear();
string line;
getline(cin,line);
stringstream S(line);
string str;
while (S >> str) {
vec.push_back(str);
}
reverse(vec.begin(), vec.end());
printf("Case #%d: ",k);
for (int i = 0; i < vec.size(); i++) {
printf("%s ",vec[i].c_str());
}
printf("\n");
k++;
}
}
|
6bb9d1d7a5e09cafe965708c60eabcbccf61ce1d
|
12a009b1cb865dcef1b8c25d319d91883f1e8050
|
/JNP5/virus_genealogy.h
|
42003f9884edaa999572077387ddfcc41706df28
|
[] |
no_license
|
Tommalla/JNP2013
|
ed803ec27e4a3630ebd7a42801ee903bb95c7ec0
|
d8175bd79691c5848e417c7f6b2ff8832664fded
|
refs/heads/master
| 2021-01-22T02:34:00.403483
| 2014-09-07T14:34:23
| 2014-09-07T14:34:23
| 13,450,656
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,129
|
h
|
virus_genealogy.h
|
#ifndef VIRUS_GENEALOGY_H
#define VIRUS_GENEALOGY_H
#include <exception>
#include <map>
#include <set>
#include <memory>
#include <vector>
#include <cstdio>
//using std::exception;
using std::map;
using std::set;
using std::shared_ptr;
using std::weak_ptr;
using std::vector;
class VirusAlreadyCreated : public std::exception {
public:
virtual const char* what() const noexcept
{
return "VirusAlreadyCreated";
}
};
class VirusNotFound : public std::exception {
public:
virtual const char* what() const noexcept
{
return "VirusNotFound";
}
};
class TriedToRemoveStemVirus : public std::exception {
public:
virtual const char* what() const noexcept
{
return "TriedToRemoveStemVirus";
}
};
template<class Virus>
class VirusGenealogy {
private:
VirusGenealogy(VirusGenealogy<Virus> const &other) = delete;
VirusGenealogy& operator=(VirusGenealogy<Virus> const &other) = delete;
class Node {
public:
typedef weak_ptr<Node> WeakPtr;
typedef shared_ptr<Node> SharedPtr;
typedef set<WeakPtr, std::owner_less<WeakPtr>> ParentSet;
typedef set<SharedPtr> ChildrenSet;
Node(typename Virus::id_type const &id, VirusGenealogy *c) : vir{id}, id{id}, container{c} {} //for stem
Node(typename Virus::id_type const &id, VirusGenealogy *c, WeakPtr const &parent) : vir{id}, id{id}, container{c} {
parents.insert(parent);
}
Node(typename Virus::id_type const &id, VirusGenealogy *c, ParentSet &parent_set) : vir{id},
id{id}, container{c}, parents{std::move(parent_set)} {}
Virus vir;
const typename Virus::id_type id;
VirusGenealogy *container;
ChildrenSet children;
ParentSet parents;
};
typename Virus::id_type stem_id; //cannot be const as there is no way of initializing it (Exception Safety)
typedef map<typename Virus::id_type, typename Node::WeakPtr> Graph;
Graph nodes;
typename Node::SharedPtr stem;
typename Graph::const_iterator get_iterator(typename Virus::id_type const &id) const {
auto iter = nodes.find(id);
if(iter != nodes.end() && iter->second.expired())
iter = nodes.end();
if(iter == nodes.end())
throw VirusNotFound();
return iter;
}
public:
//constructor
VirusGenealogy(typename Virus::id_type const &stem_id) {
this->stem_id = stem_id;
stem = typename Node::SharedPtr(new Node(stem_id, this));
nodes.emplace(stem_id, typename Node::WeakPtr(stem));
}
//getters
typename Virus::id_type get_stem_id() const noexcept {
return stem_id;
}
std::vector<typename Virus::id_type> get_children(typename Virus::id_type const &id) const {
auto iter = get_iterator(id);
vector<typename Virus::id_type> res;
for (auto const &ptr: iter->second.lock()->children)
res.push_back(ptr->id);
return res;
}
std::vector<typename Virus::id_type> get_parents(typename Virus::id_type const &id) const {
auto iter = get_iterator(id);
vector<typename Virus::id_type> res;
for (auto const &ptr: iter->second.lock()->parents)
if (!ptr.expired())
res.push_back(ptr.lock()->id);
return res;
}
void create(typename Virus::id_type const &id, typename Virus::id_type const &parent_id) {
if (exists(id))
throw VirusAlreadyCreated();
auto iter = get_iterator(parent_id);
typename Node::SharedPtr sp;
sp = typename Node::SharedPtr( new Node(id, this, iter->second ));
nodes.emplace(id, typename Node::WeakPtr(sp));
iter->second.lock()->children.insert(sp);
}
void create(typename Virus::id_type const &id, std::vector<typename Virus::id_type> const &parent_ids) {
if(parent_ids.size() == 0)
throw VirusNotFound();
if (exists(id))
throw VirusAlreadyCreated();
typename Node::SharedPtr sp;
typename Node::ParentSet parent_set;
for(auto ptr = parent_ids.begin(); ptr != parent_ids.end(); ptr++)
parent_set.insert(typename Node::WeakPtr( get_iterator( *ptr )->second ));
sp = typename Node::SharedPtr( new Node(id, this, parent_set) );
nodes.emplace(id, typename Node::WeakPtr(sp));
for(auto ptr = sp->parents.begin(); ptr != sp->parents.end(); ptr++)
ptr->lock()->children.insert(typename Node::SharedPtr(sp));
}
bool exists(typename Virus::id_type const &id) {
typename Graph::const_iterator k = nodes.end();
k = nodes.find(id);
if (k != nodes.end() && k->second.expired()) { nodes.erase(k); k = nodes.end(); }
return k != nodes.end();
}
void connect(typename Virus::id_type const &child_id, typename Virus::id_type const &parent_id) {
auto parent = get_iterator(parent_id), child = get_iterator(child_id);
parent->second.lock()->children.insert( typename Node::SharedPtr( child->second ) );
child->second.lock()->parents.insert( typename Node::WeakPtr( parent->second ) );
}
void remove(typename Virus::id_type const &id) {
auto iter = get_iterator(id);
if (iter->first == stem_id)
throw TriedToRemoveStemVirus();
typename Node::SharedPtr sp(iter->second);
for(auto ptr = iter->second.lock()->parents.begin(); ptr != iter->second.lock()->parents.end(); ptr++)
(*ptr).lock()->children.erase( sp );
}
Virus& operator[](typename Virus::id_type const &id) const {
return get_iterator(id)->second.lock()->vir;
}
};
#endif
|
d2f8b7d4f226d54b5c4b46dce1af629501f1ac95
|
4e67c062d9edce8f5dccc122774150bc1ea5ade0
|
/content.json
|
ae7d88c6357553e91f4e11d41bfb3034a3a213cb
|
[] |
no_license
|
sukioosuke/sukioosuke.github.io
|
5756dcf013c0fc0fed0649acb8239d274dc75088
|
4152ef43732862ee74f643b750dd48ec09830482
|
refs/heads/master
| 2020-04-16T12:58:18.918931
| 2019-07-26T11:04:58
| 2019-07-26T11:04:58
| 93,045,175
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 31,274
|
json
|
content.json
|
{"meta":{"title":"Suki's Blog","subtitle":null,"description":null,"author":"Suki","url":"https://sukioosuke.github.io"},"posts":[{"title":"样本量大小的确定","slug":"statistics-sample-size","date":"2019-07-25T06:33:40.000Z","updated":"2019-07-26T11:03:41.711Z","comments":true,"path":"2019/07/25/statistics-sample-size/","link":"","permalink":"https://sukioosuke.github.io/2019/07/25/statistics-sample-size/","excerpt":"","text":"估计总体均值时样本量的确定总体均值的置信区间是由样本均值$\\bar x$和估计误差两部分组成的。在重复抽样或者无线总体抽样条件下,估计误差为$z_{\\alpha/2}\\frac\\sigma{\\sqrt n}$。$z_{\\alpha/2}$的值和样本量n共同确定了估计误差的大小。一旦确定了置信水平,临界值$z_{\\alpha/2}$就已经确定了。对于给定的临界值$z_{\\alpha/2}$和总体标准差$\\sigma$,就可以确定任一希望的估计误差所需要的样本量。令E代表所希望达到的估计误差,即:$$ E=z_{\\alpha/2}\\frac\\sigma{\\sqrt n} $$由此可得出样本量n为:$$ n=\\frac{(z_{\\alpha/2})^2\\sigma^2}{E^2} $$在实际应用中,如果$\\sigma$的值不知道,可以用类似样本的标准差来代替;也可以用实验调查的办法,选择一个初始样本,以该样本的样本标准差作为$\\sigma$的估计值。 估计总体比例时样本量的确定与上述估计总体均值时样本量的确定方法类似,在重复抽样或无限总体抽样条件下,估计总体比利置信区间的估计误差为$z_{\\alpha/2}\\sqrt{\\frac{\\pi(1-\\pi)}n}$。$z_{\\alpha/2}$的值、总体比例$\\pi$和样本量n共同决定了误差大小。一旦确定了置信水平,临界值$z_{\\alpha/2}$就已经确定了。由于总体比例的值是固定的,所以估计误差由样本量来确定,样本量越大,估计误差就越小,估计精度就越高。因此,对于给定的临界值$z_{\\alpha/2},就可以确定任一希望的估计误差所需要的样本量。令E代表所希望达到的估计误差,即:$$ E=z_{\\alpha/2}\\sqrt{\\frac{\\pi(1-\\pi)}n} $$由此可得出样本量n为:$$ n=\\frac{(z_{\\alpha/2})^2\\pi(1-\\pi)}}{E^2} $$在实际应用中,如果$\\pi$值不知道,可以使用类似的样本比例来代替;也可以用实验调查的办法,选择一个初始样本,使用该样本的比例作为$\\pi$的估计值。当$\\pi$值不知道时,通常取使$\\pi(1-\\pi)$最大的0.5。 总结不同置信区间下的临界值 置信区间α 临界值$z_{\\alpha /2}$ 80% 1.282 85% 1.440 90% 1.645 95% 1.960 99% 2.576 99.5% 2.807 99.9% 3.291 一个总体参数的区间估计 参数 点估计量(值) 标准误差 $(1-\\alpha)%$的置信区间 假定条件 μ总体均值 $\\bar{x}$ $\\frac{\\sigma}{\\sqrt{n}}$ $\\bar{x}\\pm z_{\\alpha /2}\\frac{\\sigma}{\\sqrt{n}}$ (1)$\\sigma$已知(2)大样本($n\\ge 30$) μ总体均值 $\\bar{x}$ $\\frac{\\sigma}{\\sqrt{n}}$ $\\bar{x}\\pm z_{\\alpha /2}\\frac{s}{\\sqrt{n}}$ (1)$\\sigma$未知(2)大样本($n\\ge 30$) μ总体均值 $\\bar{x}$ $\\frac{\\sigma}{\\sqrt{n}}$ $\\bar{x}\\pm t_{\\alpha /2}\\frac{s}{\\sqrt{n}}$ (1)正态分布(2)$\\sigma$未知(3)小样本(n<30) π总体比例 p $\\sqrt{\\frac{\\pi(1-\\pi)}{n}}$ $p\\pm z_{\\alpha /2}\\sqrt{\\frac{p(1-p)}{n}}$ (1)二项总体(2)大样本($np \\ge 5,n(1-p) \\ge 5$) $\\sigma^2$总体方差 $s^2$ (不要求) $\\frac{(n-1)s^2}{\\mathcal{X}{\\alpha /2}^{2}}\\le\\sigma^2\\le\\frac{(n-1)s^2}{\\mathcal{X}{1-\\alpha /2}^{2}}$ 正态总体 两个总体参数的区间估计 参数 点估计量(值) 标准误差 $(1-\\alpha)%$的置信区间 假定条件 $\\mu_1-\\mu_2$两个总体均值之差 $\\bar{x_1}-\\bar{x_2}$ $\\sqrt{\\frac{\\sigma_1^2}{n_1}+\\frac{\\sigma_2^2}{n_2}}$ $(\\bar{x_1}-\\bar{x_2})\\pm z_{\\alpha /2}\\sqrt{\\frac{\\sigma_1^2}{n_1}+\\frac{\\sigma_2^2}{n_2}}$ (1)独立大样本($n_1\\ge 30,n_2\\ge 30$)(2)$\\sigma_1,\\sigma_2$已知 $\\mu_1-\\mu_2$两个总体均值之差 $\\bar{x_1}-\\bar{x_2}$ $\\sqrt{\\frac{\\sigma_1^2}{n_1}+\\frac{\\sigma_2^2}{n_2}}$ $(\\bar{x_1}-\\bar{x_2})\\pm z_{\\alpha /2}\\sqrt{\\frac{s_1^2}{n_1}+\\frac{s_2^2}{n_2}}$ (1)独立大样本($n_1\\ge 30,n_2\\ge 30$)(2)$\\sigma_1,\\sigma_2$未知 $\\mu_1-\\mu_2$两个总体均值之差 $\\bar{x_1}-\\bar{x_2}$ $\\sqrt{\\frac{\\sigma_1^2}{n_1}+\\frac{\\sigma_2^2}{n_2}}$ $(\\bar{x_1}-\\bar{x_2})\\pm t_{\\alpha /2}(n_1+n_2-2)\\sqrt{s_p^2(\\frac{1}{n_1}+\\frac{1}{n_2})}$ (1)两个正态整体(2)独立小样本($n_1<30,n_2<30$)(3)$\\sigma_1,\\sigma_2$未知但相等 $\\mu_1-\\mu_2$两个总体均值之差 $\\bar{x_1}-\\bar{x_2}$ $\\sqrt{\\frac{\\sigma_1^2}{n_1}+\\frac{\\sigma_2^2}{n_2}}$ $(\\bar{x_1}-\\bar{x_2})\\pm t_{\\alpha /2}(v)\\sqrt{\\frac{\\sigma_1^2}{n_1}+\\frac{\\sigma_2^2}{n_2}}$ (1)两个正态整体(2)独立小样本($n_1<30,n_2<30$)(3)$\\sigma_1,\\sigma_2$未知且不相等 $\\mu_d=\\mu_1-\\mu_2$两个总体均值之差 $\\bar{d}$ $\\frac{\\sigma_d}{\\sqrt n}$ $\\bar{d}\\pm z_{\\alpha /2}\\frac{\\sigma_d}{\\sqrt n}$ 匹配大样本($n_1\\ge 30,n_2\\ge 30$) $\\pi_1-\\pi_2$两个总体比例之差 $p_1-p_2$ $\\sqrt{\\frac{\\pi_1(1-\\pi_1)}{n_1}+\\frac{\\pi_2(1-\\pi_2)}{n_2}}$ $(p_1-p_2)\\pm z_{\\alpha /2}\\sqrt{\\frac{p_1(1-p_1)}{n_1}+\\frac{p_2(1-p_2)}{n_2}}$ (1)两个二项总体(2)大样本($n_1 p_1\\ge 5,n1(1-p_1)\\ge 5,n_2 p_2\\ge 5,n_2(1-p_2)\\ge 5$) $\\sigma_1^2/\\sigma_2^2$两个总体方差比 $s_1^2/s_2^2$ (不要求) $\\frac{s_1^2/s_2^2}{F_{\\alpha/2}}\\le\\frac{\\sigma_1^2}{\\sigma_2^2}\\le\\frac{s_1^2/s_2^2}{F_{1-\\alpha/2}$ 两个正态总体","raw":null,"content":null,"categories":[{"name":"统计学","slug":"统计学","permalink":"https://sukioosuke.github.io/categories/统计学/"}],"tags":[{"name":"统计学","slug":"统计学","permalink":"https://sukioosuke.github.io/tags/统计学/"},{"name":"样本","slug":"样本","permalink":"https://sukioosuke.github.io/tags/样本/"}]},{"title":"numpy的简单使用和入门","slug":"python-numpy","date":"2019-07-22T07:16:11.000Z","updated":"2019-07-25T06:32:39.577Z","comments":true,"path":"2019/07/22/python-numpy/","link":"","permalink":"https://sukioosuke.github.io/2019/07/22/python-numpy/","excerpt":"","text":"numpy中数组的建立123import numpy as nparray = np.array([5,7,3,4], dtype=np.int32) 在建立数组时,dtype可以选择int、int32、float、float32等 numpy还可以创建矩阵,同样也是通过array来创建的。同时在创建时可以创建全0、全1、全空数组 123456789101112131415161718192021222324252627282930matrix = np.array([[1, 3, 5],[2, 4, 6]])print(matrix)\"\"\"[[ 1 3 5] [ 2 4 6]]\"\"\"matrix = np.zeros((3,4))\"\"\"array([[ 0., 0., 0., 0.], [ 0., 0., 0., 0.], [ 0., 0., 0., 0.]])\"\"\"matrix = np.ones((3,4),dtype = np.int)\"\"\"array([[1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1]])\"\"\"a = np.empty((3,4))\"\"\"array([[ 0.00000000e+000, 4.94065646e-324, 9.88131292e-324, 1.48219694e-323], [ 1.97626258e-323, 2.47032823e-323, 2.96439388e-323, 3.45845952e-323], [ 3.95252517e-323, 4.44659081e-323, 4.94065646e-323, 5.43472210e-323]])\"\"\" 在构建全空数组时,可以看到数组元素均为接近于0的极小数。 可以通过arrange、linspace和random可以创建连续数组、线段型数组和随机数组: 12345678910111213141516171819array = np.arange(10,20,2) # 10-19 的数据,2步长\"\"\"array([10, 12, 14, 16, 18])\"\"\"array = np.linspace(1,10,20) # 开始端1,结束端10,且分割成20个数据,生成线段\"\"\"array([ 1. , 1.47368421, 1.94736842, 2.42105263, 2.89473684, 3.36842105, 3.84210526, 4.31578947, 4.78947368, 5.26315789, 5.73684211, 6.21052632, 6.68421053, 7.15789474, 7.63157895, 8.10526316, 8.57894737, 9.05263158, 9.52631579, 10. ])\"\"\"array = np.random.random((2,4))\"\"\"array([[ 0.94692159, 0.20821798, 0.35339414, 0.2805278 ], [ 0.04836775, 0.04023552, 0.44091941, 0.21665268]])\"\"\" 通过reshape可以改变矩阵的行列数 1234567a = np.arange(12).reshape((3,4)) # 3行4列,0到11\"\"\"array([[ 0, 1, 2, 3], [ 4, 5, 6, 7], [ 8, 9, 10, 11]])\"\"\" 矩阵中的运算numpy构建出的矩阵可以直接使用通用运算符计算加减乘除等,需要注意的是: 矩阵元素平方使用的是**来表示 矩阵乘法a×b为np.dot(a, b),或者a.dot(b) 矩阵平均值和中位数的函数为mean()和median() 矩阵累加值可以使用cumsum()来计算 矩阵累差值可以使用diff()来计算 nonezero()函数:将所有非零元素的行与列坐标分割开,重构成两个分别关于行和列的矩阵。 sort()函数可以对矩阵中每行元排序 矩阵的转置可以使用transpose()或者T函数实现,在转置时,应注意单纯的array是无法转置的(如:[1,1,1]),需将其行向量才能转置 flatten()函数可以实现矩阵的扁平化 12345678910111213141516A = np.array([1,1,1])print(A.T)\"[1,1,1]\"print(A[np.newaxis,:])\"\"\"[[1 1 1]]\"\"\"print(A[:,np.newaxis])\"\"\"[[1][1][1]]\"\"\" numpy可以对索引进行一系列的运算argmin()、argmax()分别对应着求矩阵中最小元素和最大元素的索引。在Python的 list 中,我们可以利用:对一定范围内的元素进行切片操作,在Numpy中我们依然可以使用类似的方法。如:A[1, 1:3] clip(Array,Array_min,Array_max)函数可以使矩阵转换为在[min, max]范围内的矩阵,若矩阵中有大于max或小于min的元素值,则对应转换为max或min。 矩阵的合并与分割合并:横向合并np.vstack(),纵向合并np.hstack()np.concatenate()支持多个矩阵的合并,并且可以使用axis参数指定合并的维度 分割:","raw":null,"content":null,"categories":[{"name":"python","slug":"python","permalink":"https://sukioosuke.github.io/categories/python/"}],"tags":[{"name":"python","slug":"python","permalink":"https://sukioosuke.github.io/tags/python/"},{"name":"机器学习","slug":"机器学习","permalink":"https://sukioosuke.github.io/tags/机器学习/"},{"name":"numpy","slug":"numpy","permalink":"https://sukioosuke.github.io/tags/numpy/"}]},{"title":"模型泛化能力","slug":"statistics-generalization-abaility","date":"2019-07-20T10:48:17.000Z","updated":"2019-07-22T07:15:50.523Z","comments":true,"path":"2019/07/20/statistics-generalization-abaility/","link":"","permalink":"https://sukioosuke.github.io/2019/07/20/statistics-generalization-abaility/","excerpt":"","text":"","raw":null,"content":null,"categories":[{"name":"统计学","slug":"统计学","permalink":"https://sukioosuke.github.io/categories/统计学/"}],"tags":[{"name":"统计学","slug":"统计学","permalink":"https://sukioosuke.github.io/tags/统计学/"},{"name":"模型","slug":"模型","permalink":"https://sukioosuke.github.io/tags/模型/"}]},{"title":"模型选择","slug":"statistics-model-choose","date":"2019-07-18T16:04:24.000Z","updated":"2019-07-22T07:15:50.527Z","comments":true,"path":"2019/07/19/statistics-model-choose/","link":"","permalink":"https://sukioosuke.github.io/2019/07/19/statistics-model-choose/","excerpt":"","text":"模型选择有两种常用方法:正则化和交叉验证 正则化正则化是结构风险最小化策略的实现。在经验风险上加一个正则项或者罚项,一般是模型复杂度的单调递增函数,模型越复杂,则正则化项的值就越大。正则化一般具有如下形式:$$ \\min_{f\\in\\mathcal{F}} \\frac{1}{N}\\sum_{i=1}^{N}L(y_i,f(x_i))+\\lambda J(f) $$其中,第1项是经验风险,第2项是正则化项。$\\lambda \\ge 0$为调节两者比重的系数。 正则化符合奥卡姆剃刀原理,在所有可选择的模型中,能够很好的解释已知数据并且简单的才是最好的模型。 例1,L2正则化项回归问题中,损失函数是平方损失,正则化项可以是参数向量的$L_2$范数$$ L(w)=\\frac{1}{N}\\sum_{i=1}^N(f(x_i;w)-y_i)^2+\\frac{\\lambda}{2}{\\lVert w\\rVert}^2 $$这里$\\lVert w \\rVert$表示参数向量w的$L_2$范数,即$$ {\\lVert x \\rVert}{2}=\\sqrt{\\sum{i=1}^{N}{x_i^2}} $$当回归模型中的多项式项数很多时,$L_2$范数的值会收到$w_i$的影响,其中i越小,其对应的权重越重要,即经过正则化学习,高次项前的系数会变得很小,最后的曲线类似一条直线,这就是让模型变成了一个简单的模型。(具体推导可详见*[6]一文搞懂深度学习正则化的L2范数*) 正则化让模型根据训练数据中常见的模式来学习相对简单的模型,无正则化的模型用大参数学习大噪声。 L2正则化通过权重衰减,保证了模型的简单,提高了泛化能力。 例2,L0、L1正则化项当使用L0、L1正则化项时,对模型的影响是让模型的影响因子变得稀疏,进行特征自动选择。 L0正则化 L0范数指的是向量中非零元素的个数,L0正则化就是限制非零元素的个数在一定的范围,这很明显会带来稀疏。一般而言,用L0范数实现稀疏是一个NP-hard问题,因此人们一般使用L1正则化来对模型进行稀疏约束。 L1正则化L1范数是计算向量中每个元素绝对值的和,可以看出,L1范数让w向0靠近,从而对于小权重能很快的减小,对大权重减小较慢,从而使模型的权重集中在高重要度的特征上。使得最终权重w变得稀疏。$$ {\\lVert x\\rVert}1 = \\sum{i=1}^N |x_i| $$ 交叉验证另一种常用的模型选择方法是交叉验证。在数据集充沛的前提下,将数据集简单的分为三部分,分别为训练集、验证集和测试集。训练集用来训练模型,验证集用于模型的选择,而测试集用于最终对学习方法的评估。但往往在实际应用中数据并不充足,为了选择好的模型,反复的使用数据,把给定的数据进行切分,将切分的数据集组合为训练集和测试集,在此基础上反复进行训练测试以及模型选择,这就是交叉验证。 简单交叉验证 随机的将已给数据分成两部分,一部分作为训练集,一部分作为测试集 用训练集在各种条件下(如不同的参数个数等)训练模型,从而得到不同的模型 在测试集上评价各个模型的测试误差,选取测试误差最小的模型 S折交叉验证S折交叉验证是目前应用最多的方法。 随机将已给数据切分为S个互不相交的大小相同的子集 利用S-1个子集的数据训练模型,利用余下的子集测试模型 对该过程可能的S种选择重复进行,最后选出S次评价中平均测试误差最小的模型 留一交叉验证留一交叉验证是S折交叉验证的特殊情况,这里S=N,N是给定数据集的数据个数。 参考文献:[1] 从高斯消元法到矩阵乘法 https://www.matongxue.com/madocs/755.html[2] 如何理解矩阵乘法? https://www.matongxue.com/madocs/555.html[3] 如何理解相似矩阵? https://www.matongxue.com/madocs/491.html[4] 如何理解矩阵特征值? https://www.zhihu.com/question/21874816[5] L0、L1、L2范数在机器学习中的应用 https://www.jianshu.com/p/4bad38fe07e6[6] 一文搞懂深度学习正则化的L2范数 https://blog.csdn.net/u010725283/article/details/79212762[7] 阵与伴随矩阵的关系 https://wenku.baidu.com/view/85d3506f77c66137ee06eff9aef8941ea76e4bd1.html","raw":null,"content":null,"categories":[{"name":"统计学","slug":"统计学","permalink":"https://sukioosuke.github.io/categories/统计学/"}],"tags":[{"name":"统计学","slug":"统计学","permalink":"https://sukioosuke.github.io/tags/统计学/"},{"name":"模型","slug":"模型","permalink":"https://sukioosuke.github.io/tags/模型/"},{"name":"模型选择","slug":"模型选择","permalink":"https://sukioosuke.github.io/tags/模型选择/"}]},{"title":"oj-cpp-bits","slug":"oj-cpp-bits","date":"2019-07-08T03:20:54.000Z","updated":"2019-07-08T03:33:38.888Z","comments":true,"path":"2019/07/08/oj-cpp-bits/","link":"","permalink":"https://sukioosuke.github.io/2019/07/08/oj-cpp-bits/","excerpt":"","text":"在OJ中经常能看到C++使用头文件<bits/stdc++.h>,但是在本地使用简易编译器时,经常会报找不到该文件。这个文件是属于MinGW中的一个,如果安装了MinGW的直接在文件夹里面找到bits这个文件夹(注意里面一定要包含stdc++.h,有可能有两个bits文件夹),把里面内容复制粘贴到vs的头文件库(一般是在安装目录)里面。如果没有安装MinGW,在自己vs的includ目录里新建一个bits文件夹,里面新建一个名叫stdc++.h的头文件(ubuntu一般是在user/include下面),里面写你常用的头文件,这里我搬运一下stdc++.h源文件: 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117// C++ includes used for precompiling -*- C++ -*-// Copyright (C) 2003-2015 Free Software Foundation, Inc.//// This file is part of the GNU ISO C++ Library. This library is free// software; you can redistribute it and/or modify it under the// terms of the GNU General Public License as published by the// Free Software Foundation; either version 3, or (at your option)// any later version.// This library 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.// Under Section 7 of GPL version 3, you are granted additional// permissions described in the GCC Runtime Library Exception, version// 3.1, as published by the Free Software Foundation.// You should have received a copy of the GNU General Public License and// a copy of the GCC Runtime Library Exception along with this program;// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see// <http://www.gnu.org/licenses/>./** @file stdc++.h * This is an implementation file for a precompiled header. */// 17.4.1.2 Headers// C#ifndef _GLIBCXX_NO_ASSERT#include <cassert>#endif#include <cctype>#include <cerrno>#include <cfloat>#include <ciso646>#include <climits>#include <clocale>#include <cmath>#include <csetjmp>#include <csignal>#include <cstdarg>#include <cstddef>#include <cstdio>#include <cstdlib>#include <cstring>#include <ctime>#if __cplusplus >= 201103L#include <ccomplex>#include <cfenv>#include <cinttypes>#include <cstdalign>#include <cstdbool>#include <cstdint>#include <ctgmath>#include <cwchar>#include <cwctype>#endif// C++#include <algorithm>#include <bitset>#include <complex>#include <deque>#include <exception>#include <fstream>#include <functional>#include <iomanip>#include <ios>#include <iosfwd>#include <iostream>#include <istream>#include <iterator>#include <limits>#include <list>#include <locale>#include <map>#include <memory>#include <new>#include <numeric>#include <ostream>#include <queue>#include <set>#include <sstream>#include <stack>#include <stdexcept>#include <streambuf>#include <string>#include <typeinfo>#include <utility>#include <valarray>#include <vector>#if __cplusplus >= 201103L#include <array>#include <atomic>#include <chrono>#include <condition_variable>#include <forward_list>#include <future>#include <initializer_list>#include <mutex>#include <random>#include <ratio>#include <regex>#include <scoped_allocator>#include <system_error>#include <thread>#include <tuple>#include <typeindex>#include <type_traits>#include <unordered_map>#include <unordered_set>#endif","raw":null,"content":null,"categories":[{"name":"OJ","slug":"OJ","permalink":"https://sukioosuke.github.io/categories/OJ/"}],"tags":[{"name":"C++","slug":"C","permalink":"https://sukioosuke.github.io/tags/C/"},{"name":"OJ","slug":"OJ","permalink":"https://sukioosuke.github.io/tags/OJ/"}]},{"title":"统计学概论","slug":"statistics-introduction","date":"2019-07-04T13:56:25.000Z","updated":"2019-07-22T07:15:50.527Z","comments":true,"path":"2019/07/04/statistics-introduction/","link":"","permalink":"https://sukioosuke.github.io/2019/07/04/statistics-introduction/","excerpt":"","text":"统计学习是关于计算机基于数据构建概率统计模型并用模型对数据进行预测与分析的一门学科。统计学习方法是由模型、策略和算法构成的。 $$ 方法 = 模型 + 策略 + 算法 $$ 模型1.非概率模型在非概率模型中,假设空间F是由一个参数向量决定的函数族。X、Y分别代表输入空间和输出空间,θ为参数空间。$$ \\mathcal{F}={f|Y=f_\\theta(X),\\theta\\in\\mathrm{R}^n} $$ 2.概率模型在概率模型中,假设空间F是由一个参数向量决定的条件概率分布族。X、Y分别代表输入空间和输出空间,θ为参数空间。$$ \\mathcal{F}={P|P_\\theta(Y|X),\\theta\\in\\mathrm{R}^n} $$ 策略1.损失函数和风险函数常用的损失函数(代价函数)有以下几种: 0-1损失函数(0-1 loss function)$$ L(Y,f(X))=\\begin{cases}1, Y\\not=f(X) \\0, Y=f(X) \\\\end{cases}$$ 平方损失函数(quadratic loss function)$$ L(Y,f(X))=(Y-f(X))^2 $$ 绝对损失函数(absolute loss function)$$ L(Y,f(X))=|Y-f(X)| $$ 对数损失函数(logarithmic loss function)(对数似然损失函数)$$ L(Y,P(Y|X))=-logP(Y|X) $$ 损失函数的期望即风险函数,模型f(X)关于联合分布P(X,Y)的平均意义下的损失。$$ R_{exp}(f)=E_P[L(Y,f(X))]=\\int_{\\mathcal{X}\\times\\mathcal{Y}}L(y,f(x))P(x,y)dxdy $$学习的目标就是选择期望风险最小的模型,但P(X,Y)是未知的,故$R_{exp}(f)$不能直接计算。从而对训练数据集计算经验损失$R_{emp}(f)$:$$ R_{emp}(f)=\\frac{1}{N}\\sum_{i=1}^{N}L(y_i,f(x_i)) $$在N趋于无穷是,$R_{emp}(f)$趋近于$R_{exp}(f)$。但是实验中训练样本数有限,所以要对经验风险进行一定的矫正,在矫正总有两个基本策略:①经验风险最小化和②结构风险最小化。 2.经验风险最小化和结构风险最小化1)经验风险最小化(ERM)经验风险最小化的策略认为,经验风险最小的模型就是最优的模型。根据这一策略,可转化为求解最优化问题:$$ \\min_{f\\in\\mathcal{F}} \\frac{1}{N}\\sum_{i=1}^{N}L(y_i,f(x_i)) $$但是当样本容量很小时,经验风险最小化学习就可能会出现过拟合现象。 2)结构风险最小化(SRM)结构风险最小化等价于正则化,有效的防止了过拟合。结构风险在经验风险上加上表示模型复杂度的正则化项或者罚项。结构风险的定义为:$$ R_{srm}(f)=\\frac{1}{N}\\sum_{i=1}^{N}L(y_i,f(x_i))+\\lambda J(f) $$J(f)表示模型的复杂度,$/lamda$是系数,用于权衡经验风险和模型复杂度。即求最优模型,就是求解最优化问题$\\min_{f\\in\\mathcal{F}} R_{srm}F$ 算法算法是指学习模型的具体计算方法。统计学习的问题是最优化问题,统计学习算法也就是求解最优化问题的算法。要找到全局最优解,并且求解过程要高效。","raw":null,"content":null,"categories":[{"name":"统计学","slug":"统计学","permalink":"https://sukioosuke.github.io/categories/统计学/"}],"tags":[{"name":"统计学","slug":"统计学","permalink":"https://sukioosuke.github.io/tags/统计学/"},{"name":"损失函数","slug":"损失函数","permalink":"https://sukioosuke.github.io/tags/损失函数/"},{"name":"代价函数","slug":"代价函数","permalink":"https://sukioosuke.github.io/tags/代价函数/"}]},{"title":"python中的yield关键字","slug":"python-yield","date":"2019-07-02T08:47:06.000Z","updated":"2019-07-18T10:48:48.208Z","comments":true,"path":"2019/07/02/python-yield/","link":"","permalink":"https://sukioosuke.github.io/2019/07/02/python-yield/","excerpt":"","text":"今天在看别人的代码时遇到了yield关键字,当时学python的时候学的并不扎实,现在做个总结 yield example一个网上经常列举的yield的例子: 12345def node._get_child_candidates(self, distance, min_dist, max_dist): if self._leftchild and distance - max_dist < self._median: yield self._leftchild if self._rightchild and distance + max_dist >= self._median: yield self._rightchild 下面是具体调用时的执行 12345678result, candidates = list(), [self]while candidates: node = candidates.pop() distance = node._get_dist(obj) if distance <= max_dist and distance >= min_dist: result.extend(node._values) candidates.extend(node._get_child_candidates(distance, min_dist, max_dist))return result 调用_get_child_candidates时,返回了一个child的合集(list),yield是如何生成这个对象的呢? 先来看一下可迭代对象当你建立了一个列表,你可以逐项地读取这个列表,这叫做一个可迭代对象: 123456>>> mylist = [1, 2, 3]>>> for i in mylist :... print(i)123 mylist是一个可迭代的对象。当你使用一个列表生成式来建立一个列表的时候,同样生成了一个可迭代的对象: 123456>>> mylist = [x for x in range(3)]>>> for i in mylist :... print(i)012 可以通过for循环读取的对象就是一个迭代器,其元素在遍历访问时均存储在了内存中,如果要大量访问数据的话,迭代器的方式是很占用资源的 生成器生成器是可以迭代的对象,但是你只需读取一次,它可以在调用时实时生成数据,而不是将数据都存放在内存中。 123456>>> mygenerator = (x for x in range(3))>>> for i in mygenerator :... print(i)012 虽然只是把(换成了[,但是对于生成器而言,只能迭代一次,而且也从迭代器变成了生成器。 回到yield关键字yield关键字在调用后会返回一个类似于mygenerator的生成器,类似于返回生成器的return关键字。 12345678910111213>>> def createGenerator() :... mylist = range(3)... for i in mylist :... yield i*i...>>> mygenerator = createGenerator() # create a generator>>> print(mygenerator) # mygenerator is an object!<generator object createGenerator at 0xb7555c34>>>> for i in mygenerator:... print(i)014 在执行for i in mygenerator时,到达yield关键字时,返回yield后的值作为第一次迭代的返回值. 然后,每次执行这个函数都会继续返回定义的迭代值,直到没有可以返回的。带有yield的函数不仅仅只用于for循环中,而且可用于某个函数的参数,只要这个函数的参数允许迭代参数。比如array.extend函数,它的原型是array.extend(iterable)。 此处应注意的是,生成器的方法虽然可以调用多次,获取多个迭代结果,但生成器只会实例化一次,既实例化后的生成器可以通过变量等来控制生成器的生成与穷尽。可参考如下代码: 1234567891011121314151617181920212223242526272829303132333435>>> class Bank(): # let's create a bank, building ATMs... crisis = False... def create_atm(self) :... while not self.crisis :... yield \"$100\">>> hsbc = Bank() # when everything's ok the ATM gives you as much as you want>>> corner_street_atm = hsbc.create_atm()>>> print(corner_street_atm.__next__()())$100>>> print(corner_street_atm.__next__()())$100>>> print([corner_street_atm.__next__()() for cash in range(5)])['$100', '$100', '$100', '$100', '$100']>>> hsbc.crisis = True # crisis is coming, no more money!>>> print(corner_street_atm.__next__()())<type 'exceptions.StopIteration'>>>> wall_street_atm = hsbc.create_atm() # it's even true for new ATMs>>> print(wall_street_atm.__next__()())<type 'exceptions.StopIteration'>>>> hsbc.crisis = False # trouble is, even post-crisis the ATM remains empty>>> print(corner_street_atm.__next__()())<type 'exceptions.StopIteration'>>>> brand_new_atm = hsbc.create_atm() # build a new one to get back in business>>> for cash in brand_new_atm :... print cash$100$100$100$100$100$100$100$100$100... 迭代器的操作生成器只能实例化一次,这就为我们的复用造成一些麻烦,如果需要两个一模一样但是相互独立的生成器怎么办呢?itertools提供了很多特殊的迭代方法,包括复制一个迭代器,串联迭代器,把嵌套的列表分组等等等,这个类从一定程度上解决了生成器的复用问题。如果想要动态变化生成器的内容呢?生成器本身除去next方法外,还有一个send(msg)的方法,send(msg)与next()的区别在于send可以传递参数给yield表达式,这时传递的参数会作为yield表达式的值,而yield的参数是返回给调用者的值。比如函数中有一个yield赋值,a = yield 5,第一次迭代到这里会返回5,a还没有赋值。第二次迭代时,使用.send(10),那么,就是强行修改yield 5表达式的值为10,本来是5的,而现在a=10。可以认为,next()等同于send(None)。 此处应注意的是,第一次调用时必须先next()或send(None),否则会报错,因为这时候没有上一个yield值。 关于迭代器的内部原理迭代是一个实现可迭代对象(实现的是__iter__()方法)和迭代器(实现的是__next__()方法)的过程。可迭代对象是你可以从其获取到一个迭代器的任一对象。迭代器是那些允许你迭代可迭代对象的对象。 参考文献:https://pyzh.readthedocs.io/en/latest/the-python-yield-keyword-explained.html#yield","raw":null,"content":null,"categories":[{"name":"python","slug":"python","permalink":"https://sukioosuke.github.io/categories/python/"}],"tags":[{"name":"python","slug":"python","permalink":"https://sukioosuke.github.io/tags/python/"}]},{"title":"Hello World!","slug":"Hello-World","date":"2019-06-25T09:39:24.000Z","updated":"2019-07-18T10:48:48.208Z","comments":true,"path":"2019/06/25/Hello-World/","link":"","permalink":"https://sukioosuke.github.io/2019/06/25/Hello-World/","excerpt":"","text":"之前一直想找个工具记录一下自己的所学所想,开始在csdn做简单的记录,后来改版后每次写的时候都要花费不少功夫要写,就慢慢放弃了。这次在git用hexo自建blog,可以避免这个问题,也可以让自己坚持下去。blog主要用于: 整理知识,学习笔记 发布日记,杂文,所见所想 整理技术文稿(代码) 别人的赏识都是过眼云烟,只有自己的提高进步才是真金白银! p.s. 在线md编写工具 LaTex符号","raw":null,"content":null,"categories":[{"name":"随笔","slug":"随笔","permalink":"https://sukioosuke.github.io/categories/随笔/"}],"tags":[{"name":"随笔","slug":"随笔","permalink":"https://sukioosuke.github.io/tags/随笔/"}]}]}
|
b9794e622fa4f98d9f6b771c44a1df3ba0185dd0
|
f7fb699e3ba3704ee2d09743816f01bf7b3d356c
|
/examples/example.cc
|
1ab70b0719456f83ce9838c56d92afcd8db80712
|
[] |
no_license
|
leque/esexpr
|
00ff64e45eeff0f8c49d946f27eeff55bc82d110
|
063ca0c30447d1c3524e10c2bb743398b1626d26
|
refs/heads/master
| 2021-01-01T05:25:12.980363
| 2016-04-30T16:40:26
| 2016-05-05T09:38:37
| 58,123,462
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,849
|
cc
|
example.cc
|
#include <cstdint>
#include <cstring>
#include <iostream>
#include <limits>
#include <stdexcept>
#include <string>
#include <pegtl.hh>
#include <pegtl/file_parser.hh>
#include <esexpr.hh>
using namespace std;
enum number_type {
integer_type, float_type
};
struct esexpr_number {
esexpr_number(int_least32_t n) : type(integer_type) {
v.integer_value = n;
}
esexpr_number(double n) : type(float_type) {
v.float_value = n;
}
number_type type;
union {
int_least64_t integer_value;
double float_value;
} v;
};
static int
digit_to_number(const char c, const int base) {
int res = -1;
if ('0' <= c && c <= '9') {
res = c - '0';
} else if ('a' <= c && c <= 'f') {
res = 10 + c - 'a';
} else if ('A' <= c && c <= 'F') {
res = 10 + c - 'A';
}
return res < base ? res : -1;
}
static esexpr_number
string_to_number(const string &s, const int base, size_t pos) {
esexpr_number res(0);
const size_t end = s.length();
bool positive = true;
if (pos < end) {
switch (s[pos]) {
case '+':
positive = true;
++pos;
break;
case '-':
positive = false;
++pos;
break;
default:
break;
}
}
while (pos < end) {
int d = digit_to_number(s[pos], base);
if (d < 0)
break;
switch (res.type) {
case integer_type:
res.v.integer_value *= base;
res.v.integer_value += d;
if (res.v.integer_value
> (positive ? esexpr::int_max : -esexpr::int_min)) {
res.v.float_value = res.v.integer_value;
res.type = float_type;
}
break;
case float_type:
res.v.float_value *= base;
res.v.float_value += d;
break;
}
++pos;
}
const int sign = positive ? 1 : -1;
switch (res.type) {
case integer_type:
res.v.integer_value *= sign;
break;
case float_type:
res.v.float_value *= sign;
break;
}
if (pos < end && s[pos] == '.')
++pos;
if (pos != end) {
throw invalid_argument("cannot parse as number: " + s);
}
return res;
}
static void
print_int(const string &s, size_t pos, const int radix) {
esexpr_number num = string_to_number(s, radix, pos);
string typ = num.type == integer_type ? "INTEGER" : "FLOAT";
cout << typ << ": " << s
<< " (" << (num.type == integer_type
? num.v.integer_value
: num.v.float_value)
<< ")" << endl;
}
const int tabstop = 2;
static void
do_indent(int amount) {
for (int i = 0; i < amount; ++i) {
cout << ' ';
}
}
template<typename Rule>
struct print_actions : pegtl::nothing< Rule > {};
template<> struct print_actions<esexpr::comment> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
cout << "COMMENT: " << in.string();
}
};
template<> struct print_actions<esexpr::quote> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
cout << "QUOTE" << endl;
}
};
template<> struct print_actions<esexpr::label_def> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
cout << "LABEL-DEF: " << in.string() << endl;
}
};
template<> struct print_actions<esexpr::label_ref> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
cout << "LABEL-REF: " << in.string() << endl;
}
};
template<> struct print_actions<esexpr::list::begin> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
cout << "LIST:" << endl;
indent += tabstop;
}
};
template<> struct print_actions<esexpr::list::end> {
static void apply(const pegtl::input &in, int &indent) {
indent -= tabstop;
}
};
template<> struct print_actions<esexpr::vector::begin> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
cout << "VECTOR:" << endl;
indent += tabstop;
}
};
template<> struct print_actions<esexpr::vector::end> {
static void apply(const pegtl::input &in, int &indent) {
indent -= tabstop;
}
};
template<> struct print_actions<esexpr::string> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
cout << "STRING: " << in.string() << endl;
}
};
template<> struct print_actions<esexpr::character> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
cout << "CHARACTER: " << in.string() << endl;
}
};
template<> struct print_actions<esexpr::float_> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
cout << "FLOAT: " << in.string()
<< " (" << stod(in.string()) << ")"
<< endl;
}
};
template<> struct print_actions<esexpr::integer2> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
print_int(in.string(), 2, 2);
}
};
template<> struct print_actions<esexpr::integer16> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
print_int(in.string(), 2, 16);
}
};
template<> struct print_actions<esexpr::integer10> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
print_int(in.string(), 0, 10);
}
};
template<> struct print_actions<esexpr::symbol> {
static void apply(const pegtl::input &in, int &indent) {
do_indent(indent);
cout << "SYMBOL: " << in.string() << endl;
}
};
int
main(int argc, char **argv)
{
cout.precision(numeric_limits<double>::max_digits10);
if (argc == 3 && strcmp(argv[1], "-f") == 0) {
pegtl::file_parser p(argv[2]);
p.parse<esexpr::sexprs, print_actions>(0);
} else if (argc == 2) {
pegtl::data_parser p(argv[1], argv[0]);
p.parse<esexpr::sexpr, print_actions>(0);
} else {
cerr << "usage: " << argv[0] << " file-to-parse" << endl;
return 1;
}
return 0;
}
|
086323fc11bd29ece958dd975ab140b1e989219e
|
00d122af11e7fd13e285266a1c57c5e72a02ca69
|
/Layer.cpp
|
37b0deb1fbbd8c8ef3afed5e9d08ac713ca9818c
|
[] |
no_license
|
Gincral/3DBouncingBallGames
|
ff4dbc76568eeac2feaeecbea25b2581e3681d66
|
e462018d6d07bc1fc8a8a83afe63caa78fc0e40c
|
refs/heads/master
| 2020-04-16T00:26:48.407322
| 2019-01-10T22:19:55
| 2019-01-10T22:19:55
| 165,138,679
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,678
|
cpp
|
Layer.cpp
|
#include "Layer.hpp"
//extern Camera myCamera;
//extern Light myLight;
Layer::Layer() {
radius = 0.4;
height = 0.1;
S = 1.5;
x = 0.0;
y = 0.0;
angle = 0.0;
angle_stepsize = 0.001;
}
void Layer::draw(GLfloat DEGREE, GLfloat anBegin, GLfloat anEnd, GLint R, GLint G, GLint B, GLfloat H) {
DEGREE = DEGREE /360 *2*PI;
anBegin = anBegin /360 *2*PI ;
anEnd = anEnd /360 *2*PI + DEGREE;
GLfloat x1 = 0.0, x2 = 0.0;
GLfloat y1 = 0.0, y2 = 0.0;
/** Draw the tube */
glColor3ub(R - 40, G - 40, B - 40);
glBegin(GL_LINES);
angle = anBegin + DEGREE;
x1 = radius * cos(angle) * S;
y1 = radius * sin(angle) * S;
while (angle < anEnd) {
x = radius * cos(angle) * S;
y = radius * sin(angle) * S;
glVertex3f(x, y, height + H);
glVertex3f(x, y, 0.0 + H);
angle += angle_stepsize;
}
x2 = radius * cos(angle) * S;
y2 = radius * sin(angle) * S;
glEnd();
glColor3ub(R - 50, G - 50, B - 50);
glBegin(GL_POLYGON);
glVertex3f(x1 / 2, y1 / 2, 0 + H);
glVertex3f(x1 / 2, y1 / 2, height + H);
glVertex3f(x1, y1, height + H);
glVertex3f(x1, y1, 0 + H);
glEnd();
glColor3ub(R - 50, G - 50, B - 50);
glBegin(GL_POLYGON);
glVertex3f(x2, y2, 0 + H);
glVertex3f(x2, y2, height + H);
glVertex3f(x2 / 2, y2 / 2, height + H);
glVertex3f(x2 / 2, y2 / 2, 0 + H);
glEnd();
/** Draw the circle on top of cylinder */
glColor3ub(R, G, B);
glBegin(GL_LINES);
angle = anBegin + DEGREE;
while (angle < anEnd) {
x = radius * cos(angle) * S;
y = radius * sin(angle) * S;
glVertex3f(x / 2, y / 2, height + H);
glVertex3f(x, y, height + H);
angle = angle + angle_stepsize;
}
glEnd();
}
|
8daf6df3caa85954186787fc770931f95874734f
|
a4d01c52c14e7f5046508fdd3c4a916db7b91e8a
|
/loopPrac.cpp
|
e536e555c5aa7f47547b1a863a41f9946aff6740
|
[] |
no_license
|
karthikarun172/C_Practice
|
74a3504ec5ccc95e4287dc78cacd7a7a4f98b586
|
c6d38f2df21ce3c2ab7bc9e8d19901e4738baf95
|
refs/heads/master
| 2022-12-15T11:43:40.655917
| 2020-09-16T02:43:38
| 2020-09-16T02:43:38
| 289,156,246
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,050
|
cpp
|
loopPrac.cpp
|
#include <iostream>
#include <string>
#include <cmath>
#include <vector>
#include <algorithm>
using namespace std;
int sumOfNumbers(int y)
{
int x, sum = 0;
for (x = 1; x < y + 1; x++)
{
cout << x << " ";
sum = sum + x;
}
return sum;
}
void PrimeNumber(int x)
{
int count = 0;
for (int i = 1; i <= x; i++)
{
if (x % i == 0)
{
count++;
}
}
if (count == 2)
{
cout << "the number is prime" << endl;
}
else
{
cout << "the number is not prime" << endl;
}
}
int factorial(int x)
{
int fac = 1;
for (int i = 1; i <= x; i++)
{
fac *= i;
}
return fac;
}
int GCD(int x, int y)
{
if (x % y == 0)
{
return y;
}
else
{
return GCD(y, x % y);
}
}
int GCDinLoop(int x, int y)
{
int ans = 0;
for (int i = 1; i <= x && i <= y; i++)
{
if (x % i == 0 && y % i == 0)
{
ans = i;
}
}
return ans;
}
int main()
{
}
|
5b5ad80e710a4d8ca857e3dbf6fe307588bff786
|
8f50c262f89d3dc4f15f2f67eb76e686b8f808f5
|
/Trigger/TrigEvent/TrigNavigation/src/test.cxx
|
0a9ff7272bb981924d96a78e694b27c1fd583897
|
[
"Apache-2.0"
] |
permissive
|
strigazi/athena
|
2d099e6aab4a94ab8b636ae681736da4e13ac5c9
|
354f92551294f7be678aebcd7b9d67d2c4448176
|
refs/heads/master
| 2022-12-09T02:05:30.632208
| 2020-09-03T14:03:18
| 2020-09-03T14:03:18
| 292,587,480
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 469
|
cxx
|
test.cxx
|
/*
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/
/*
*/
/**
* @file TrigNavigation/src/test.cxx
* @author scott snyder <snyder@bnl.gov>
* @date Nov, 2018
* @brief Unit test helper.
*/
#include "TrigNavigation/TestTypesB.h"
// Make sure this library includes typeinfo information for TestBContainer.
// Otherwise, we can get ubsan warnings from the unit tests.
void trigNavigationTestRefs()
{
TrigNavTest::TestBContainer cont;
}
|
9a73beac11c13de21dda608c8ef74d084703a392
|
b118951228f0a12e93ac7faa638be454ec72f868
|
/codeforces/A/801A-Vicious Keyboard.cpp
|
d2c9739800f232f08c41f2c4ff0625e1178b320e
|
[] |
no_license
|
hpotter97762/CP
|
372ef86ae34a1bb79d87df3192764eb716aae281
|
ccc97a6eb13fba067012edc02aebf7e0fffb0005
|
refs/heads/master
| 2020-03-27T03:54:28.637113
| 2019-09-23T11:53:11
| 2019-09-23T11:53:11
| 145,897,937
| 0
| 0
| null | 2019-09-23T11:53:55
| 2018-08-23T19:26:10
|
C++
|
UTF-8
|
C++
| false
| false
| 506
|
cpp
|
801A-Vicious Keyboard.cpp
|
#include<iostream>
#include<string>
using namespace std;
int main(){
std::ios::sync_with_stdio(false);
cin.tie(NULL);
string s;
cin>>s;
int count=0,flag=0;
for(int i=0;i<s.size()-1;i++){
if(s[i]=='V'&&s[i+1]=='K')
count++,++i;
else if(s[i+1]=='V'&&s[i+2]=='K'&&i+2<s.size()){
count++,i+=2;
}
else if(s[i]!='K'||s[i+1]!='V')
flag=1,++i;
}
if(flag==1)
count++;
cout<<count<<'\n';
return 0;
}
|
6ff3f7e0393358e3340fc486a73f35e6219f2c25
|
f6c47adf5c567e7dcf0925d4b9404a92d39cc7da
|
/js/src/JsScriptNodeObjectInitialiser.cpp
|
5a44889a4075f0c5fb7dbf6b642ce4e47670e450
|
[] |
no_license
|
watsonjiang/pth_test
|
386ba652218fad84824894d3d93cfca0d3f6d923
|
5ab8b916e87ab5a9c1e716d41d65aa7a907d004b
|
refs/heads/master
| 2021-01-23T13:22:48.455467
| 2016-12-24T11:29:36
| 2016-12-24T11:29:36
| 15,836,012
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,852
|
cpp
|
JsScriptNodeObjectInitialiser.cpp
|
#include "JsScriptNodeObjectInitialiser.h"
#include "JsScriptObjectArray.h"
#include "JsScriptReferenceError.h"
#include "JsScriptScanner.h"
#include "JsScriptTypeError.h"
#include "JsScriptUserDefinedException.h"
using namespace Js;
ScriptNodeObjectInitialiser::ScriptNodeObjectInitialiser(
const ScriptString* theFile,
int theLine,
bool theIsLeftHandSideExpression)
: ScriptNode(theFile, theLine, theIsLeftHandSideExpression)
{
// Empty
}
// ----------------------------------------------------------------------------
ScriptNodeObjectInitialiser::~ScriptNodeObjectInitialiser()
{
for (ObjectInitialiserMap::iterator iter = objectInitialiserMapM.begin();
iter != objectInitialiserMapM.end();
iter++)
{
delete (*iter).second;
}
objectInitialiserMapM.clear();
}
// ----------------------------------------------------------------------------
void
ScriptNodeObjectInitialiser::addElement(
const std::string& thePropertyName,
ScriptNode* theAssignmentExpression)
{
objectInitialiserMapM.insert(
ObjectInitialiserMap::value_type(thePropertyName,
theAssignmentExpression));
}
// ----------------------------------------------------------------------------
ScriptValue
ScriptNodeObjectInitialiser::execute(
ScriptExecutionContext* theContext)
{
theContext->countNodeExecution(this);
try
{
ScriptObjectPtr object = new ScriptObject(ScriptObject::ObjectE);
for (ObjectInitialiserMap::iterator iter = objectInitialiserMapM.begin();
iter != objectInitialiserMapM.end();
iter++)
{
ScriptValue result = (*iter).second->execute(theContext).getValue();
object->putPropertyNoCheck((*iter).first, result);
}
return ScriptValue(object);
}
catch (ScriptReferenceError& e)
{
if (e.getLine() == 0)
{
e.setLineAndFile(getLine(), getFile());
}
throw e;
}
catch (ScriptTypeError& e)
{
if (e.getLine() == 0)
{
e.setLineAndFile(getLine(), getFile());
}
throw e;
}
catch (ScriptUserDefinedException& e)
{
if (e.getLine() == 0)
{
e.setLineAndFile(getLine(), getFile());
}
throw e;
}
ScriptValue result;
return result;
}
// ----------------------------------------------------------------------------
ScriptNode::Type
ScriptNodeObjectInitialiser::getType() const
{
return ScriptNode::ObjectInitialiserE;
}
// ----------------------------------------------------------------------------
void
ScriptNodeObjectInitialiser::print(
std::string& theOutputString,
const std::string& theLinePrefix,
size_t theMaxFilenameLength) const
{
if (theLinePrefix.empty() == true)
{
printFileAndLine(theOutputString, theMaxFilenameLength);
}
theOutputString += "Object Initialiser\n";
ObjectInitialiserMap::const_iterator next;
for (ObjectInitialiserMap::const_iterator iter = objectInitialiserMapM.begin();
iter != objectInitialiserMapM.end();
iter = next)
{
(*iter).second->printFileAndLine(theOutputString,
theMaxFilenameLength);
theOutputString += theLinePrefix + " +-";
theOutputString += (*iter).first;
theOutputString += ": ";
next = iter;
next++;
if (next != objectInitialiserMapM.end())
{
(*iter).second->print(theOutputString,
theLinePrefix + " | ",
theMaxFilenameLength);
}
else
{
(*iter).second->print(theOutputString,
theLinePrefix + " ",
theMaxFilenameLength);
break;
}
}
}
|
82e0c061905bfd58b99a043ef5fdcd6634d456d0
|
77e87925f6ae46fc10834345e88ba4f44e93a6bf
|
/simulation/g4simulation/g4jets/Jetv1.h
|
84163dc00db7e2f8f62db5103f50a8cbe85ac0cf
|
[] |
no_license
|
MQChen211/coresoftware
|
3ac496b68d65624fc655acc885dd1f6687bfaf35
|
0d5bab754cb68a3c858c4a3b6dcd13d9f1634128
|
refs/heads/master
| 2020-06-27T09:33:45.508795
| 2019-07-31T17:15:28
| 2019-07-31T17:15:28
| 199,913,527
| 1
| 0
| null | 2019-07-31T19:02:48
| 2019-07-31T19:02:48
| null |
UTF-8
|
C++
| false
| false
| 3,222
|
h
|
Jetv1.h
|
/*!
* \file Jetv1.h
* \brief Versionize the Jet object that make by Mike McCumber
* \author Jin Huang <jhuang@bnl.gov>
* \version $Revision: $
* \date $Date: $
*/
#ifndef G4JET_JETV1_H
#define G4JET_JETV1_H
#include "Jet.h"
#include <cstddef> // for size_t
#include <iostream>
#include <map>
#include <utility> // for pair, make_pair
/*!
* \brief Jetv1
*/
class Jetv1 : public Jet
{
public:
Jetv1();
virtual ~Jetv1() {}
// PHObject virtual overloads
void identify(std::ostream& os = std::cout) const;
void Reset();
int isValid() const;
Jet* Clone() const;
// jet info
unsigned int get_id() const { return _id; }
void set_id(unsigned int id) { _id = id; }
float get_px() const { return _mom[0]; }
void set_px(float px) { _mom[0] = px; }
float get_py() const { return _mom[1]; }
void set_py(float py) { _mom[1] = py; }
float get_pz() const { return _mom[2]; }
void set_pz(float pz) { _mom[2] = pz; }
float get_e() const { return _e; }
void set_e(float e) { _e = e; }
float get_p() const;
float get_pt() const;
float get_et() const;
float get_eta() const;
float get_phi() const;
float get_mass() const;
float get_mass2() const;
// extended jet info
bool has_property(Jet::PROPERTY prop_id) const;
float get_property(Jet::PROPERTY prop_id) const;
void set_property(Jet::PROPERTY prop_id, float value);
void print_property(std::ostream& os) const;
//
// clustered component methods (multimap interface based)
// source type id --> unique id within that storage
//
bool empty_comp() const { return _comp_ids.empty(); }
size_t size_comp() const { return _comp_ids.size(); }
size_t count_comp(SRC source) const { return _comp_ids.count(source); }
void clear_comp() { _comp_ids.clear(); }
void insert_comp(SRC source, unsigned int compid) { _comp_ids.insert(std::make_pair(source, compid)); }
size_t erase_comp(SRC source) { return _comp_ids.erase(source); }
void erase_comp(Iter iter)
{
_comp_ids.erase(iter);
return;
}
void erase_comp(Iter first, Iter last)
{
_comp_ids.erase(first, last);
return;
}
ConstIter begin_comp() const { return _comp_ids.begin(); }
ConstIter lower_bound_comp(SRC source) const { return _comp_ids.lower_bound(source); }
ConstIter upper_bound_comp(SRC source) const { return _comp_ids.upper_bound(source); }
ConstIter find(SRC source) const { return _comp_ids.find(source); }
ConstIter end_comp() const { return _comp_ids.end(); }
Iter begin_comp() { return _comp_ids.begin(); }
Iter lower_bound_comp(SRC source) { return _comp_ids.lower_bound(source); }
Iter upper_bound_comp(SRC source) { return _comp_ids.upper_bound(source); }
Iter find(SRC source) { return _comp_ids.find(source); }
Iter end_comp() { return _comp_ids.end(); }
private:
/// unique identifier within container
unsigned int _id;
/// jet momentum vector (px,py,pz)
float _mom[3];
/// jet energy
float _e;
/// source id -> component id
typ_comp_ids _comp_ids;
typedef std::map<Jet::PROPERTY, float> typ_property_map;
/// map that contains extra properties
typ_property_map _property_map;
ClassDef(Jetv1, 1);
};
#endif // G4JET_JETV1_H
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.